@tryfinch/finch-api 6.31.0 → 7.0.0

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 (902) hide show
  1. package/CHANGELOG.md +312 -0
  2. package/README.md +129 -68
  3. package/api-promise.d.mts +2 -0
  4. package/api-promise.d.mts.map +1 -0
  5. package/api-promise.d.ts +2 -0
  6. package/api-promise.d.ts.map +1 -0
  7. package/api-promise.js +6 -0
  8. package/api-promise.js.map +1 -0
  9. package/api-promise.mjs +2 -0
  10. package/api-promise.mjs.map +1 -0
  11. package/bin/cli +53 -0
  12. package/bin/migration-config.json +6 -0
  13. package/client.d.mts +258 -0
  14. package/client.d.mts.map +1 -0
  15. package/client.d.ts +258 -0
  16. package/client.d.ts.map +1 -0
  17. package/client.js +553 -0
  18. package/client.js.map +1 -0
  19. package/client.mjs +549 -0
  20. package/client.mjs.map +1 -0
  21. package/core/api-promise.d.mts +46 -0
  22. package/core/api-promise.d.mts.map +1 -0
  23. package/core/api-promise.d.ts +46 -0
  24. package/core/api-promise.d.ts.map +1 -0
  25. package/core/api-promise.js +74 -0
  26. package/core/api-promise.js.map +1 -0
  27. package/core/api-promise.mjs +70 -0
  28. package/core/api-promise.mjs.map +1 -0
  29. package/core/error.d.mts +46 -0
  30. package/core/error.d.mts.map +1 -0
  31. package/core/error.d.ts +46 -0
  32. package/core/error.d.ts.map +1 -0
  33. package/core/error.js +113 -0
  34. package/core/error.js.map +1 -0
  35. package/core/error.mjs +97 -0
  36. package/core/error.mjs.map +1 -0
  37. package/core/pagination.d.mts +105 -0
  38. package/core/pagination.d.mts.map +1 -0
  39. package/core/pagination.d.ts +105 -0
  40. package/core/pagination.d.ts.map +1 -0
  41. package/core/pagination.js +163 -0
  42. package/core/pagination.js.map +1 -0
  43. package/core/pagination.mjs +154 -0
  44. package/core/pagination.mjs.map +1 -0
  45. package/core/resource.d.mts +6 -0
  46. package/core/resource.d.mts.map +1 -0
  47. package/core/resource.d.ts +6 -0
  48. package/core/resource.d.ts.map +1 -0
  49. package/core/resource.js +11 -0
  50. package/core/resource.js.map +1 -0
  51. package/core/resource.mjs +7 -0
  52. package/core/resource.mjs.map +1 -0
  53. package/core/uploads.d.mts +3 -0
  54. package/core/uploads.d.mts.map +1 -0
  55. package/core/uploads.d.ts +3 -0
  56. package/core/uploads.d.ts.map +1 -0
  57. package/core/uploads.js +6 -0
  58. package/core/uploads.js.map +1 -0
  59. package/core/uploads.mjs +2 -0
  60. package/core/uploads.mjs.map +1 -0
  61. package/error.d.mts +2 -0
  62. package/error.d.mts.map +1 -0
  63. package/error.d.ts +1 -46
  64. package/error.d.ts.map +1 -1
  65. package/error.js +3 -110
  66. package/error.js.map +1 -1
  67. package/error.mjs +1 -96
  68. package/error.mjs.map +1 -1
  69. package/index.d.mts +7 -197
  70. package/index.d.mts.map +1 -0
  71. package/index.d.ts +6 -196
  72. package/index.d.ts.map +1 -1
  73. package/index.js +14 -235
  74. package/index.js.map +1 -1
  75. package/index.mjs +6 -208
  76. package/index.mjs.map +1 -1
  77. package/internal/builtin-types.d.mts +73 -0
  78. package/internal/builtin-types.d.mts.map +1 -0
  79. package/internal/builtin-types.d.ts +73 -0
  80. package/internal/builtin-types.d.ts.map +1 -0
  81. package/internal/builtin-types.js +4 -0
  82. package/internal/builtin-types.js.map +1 -0
  83. package/internal/builtin-types.mjs +3 -0
  84. package/internal/builtin-types.mjs.map +1 -0
  85. package/internal/detect-platform.d.mts +15 -0
  86. package/internal/detect-platform.d.mts.map +1 -0
  87. package/internal/detect-platform.d.ts +15 -0
  88. package/internal/detect-platform.d.ts.map +1 -0
  89. package/internal/detect-platform.js +162 -0
  90. package/internal/detect-platform.js.map +1 -0
  91. package/internal/detect-platform.mjs +157 -0
  92. package/internal/detect-platform.mjs.map +1 -0
  93. package/internal/errors.d.mts +3 -0
  94. package/internal/errors.d.mts.map +1 -0
  95. package/internal/errors.d.ts +3 -0
  96. package/internal/errors.d.ts.map +1 -0
  97. package/internal/errors.js +41 -0
  98. package/internal/errors.js.map +1 -0
  99. package/internal/errors.mjs +36 -0
  100. package/internal/errors.mjs.map +1 -0
  101. package/internal/headers.d.mts +26 -0
  102. package/internal/headers.d.mts.map +1 -0
  103. package/internal/headers.d.ts +26 -0
  104. package/internal/headers.d.ts.map +1 -0
  105. package/internal/headers.js +120 -0
  106. package/internal/headers.js.map +1 -0
  107. package/internal/headers.mjs +112 -0
  108. package/internal/headers.mjs.map +1 -0
  109. package/internal/parse.d.mts +12 -0
  110. package/internal/parse.d.mts.map +1 -0
  111. package/internal/parse.d.ts +12 -0
  112. package/internal/parse.d.ts.map +1 -0
  113. package/internal/parse.js +35 -0
  114. package/internal/parse.js.map +1 -0
  115. package/internal/parse.mjs +32 -0
  116. package/internal/parse.mjs.map +1 -0
  117. package/internal/qs/formats.d.mts +7 -0
  118. package/internal/qs/formats.d.mts.map +1 -0
  119. package/internal/qs/formats.d.ts +1 -0
  120. package/internal/qs/formats.d.ts.map +1 -1
  121. package/internal/qs/formats.js +4 -2
  122. package/internal/qs/formats.js.map +1 -1
  123. package/internal/qs/formats.mjs +2 -1
  124. package/internal/qs/formats.mjs.map +1 -1
  125. package/internal/qs/index.d.mts +10 -0
  126. package/internal/qs/index.d.mts.map +1 -0
  127. package/internal/qs/index.d.ts.map +1 -1
  128. package/internal/qs/stringify.d.mts +3 -0
  129. package/internal/qs/stringify.d.mts.map +1 -0
  130. package/internal/qs/stringify.d.ts.map +1 -1
  131. package/internal/qs/stringify.js +16 -19
  132. package/internal/qs/stringify.js.map +1 -1
  133. package/internal/qs/stringify.mjs +17 -19
  134. package/internal/qs/stringify.mjs.map +1 -1
  135. package/internal/qs/types.d.mts +57 -0
  136. package/internal/qs/types.d.mts.map +1 -0
  137. package/internal/qs/utils.d.mts +15 -0
  138. package/internal/qs/utils.d.mts.map +1 -0
  139. package/internal/qs/utils.d.ts +1 -0
  140. package/internal/qs/utils.d.ts.map +1 -1
  141. package/internal/qs/utils.js +22 -21
  142. package/internal/qs/utils.js.map +1 -1
  143. package/internal/qs/utils.mjs +12 -12
  144. package/internal/qs/utils.mjs.map +1 -1
  145. package/internal/request-options.d.mts +75 -0
  146. package/internal/request-options.d.mts.map +1 -0
  147. package/internal/request-options.d.ts +75 -0
  148. package/internal/request-options.d.ts.map +1 -0
  149. package/internal/request-options.js +14 -0
  150. package/internal/request-options.js.map +1 -0
  151. package/internal/request-options.mjs +10 -0
  152. package/internal/request-options.mjs.map +1 -0
  153. package/internal/shim-types.d.mts +17 -0
  154. package/internal/shim-types.d.mts.map +1 -0
  155. package/internal/shim-types.d.ts +17 -0
  156. package/internal/shim-types.d.ts.map +1 -0
  157. package/internal/shim-types.js +4 -0
  158. package/internal/shim-types.js.map +1 -0
  159. package/internal/shim-types.mjs +3 -0
  160. package/internal/shim-types.mjs.map +1 -0
  161. package/internal/shims.d.mts +20 -0
  162. package/internal/shims.d.mts.map +1 -0
  163. package/internal/shims.d.ts +20 -0
  164. package/internal/shims.d.ts.map +1 -0
  165. package/internal/shims.js +92 -0
  166. package/internal/shims.js.map +1 -0
  167. package/internal/shims.mjs +85 -0
  168. package/internal/shims.mjs.map +1 -0
  169. package/internal/to-file.d.mts +45 -0
  170. package/internal/to-file.d.mts.map +1 -0
  171. package/internal/to-file.d.ts +45 -0
  172. package/internal/to-file.d.ts.map +1 -0
  173. package/internal/to-file.js +91 -0
  174. package/internal/to-file.js.map +1 -0
  175. package/internal/to-file.mjs +88 -0
  176. package/internal/to-file.mjs.map +1 -0
  177. package/internal/tslib.js +81 -0
  178. package/internal/tslib.mjs +17 -0
  179. package/internal/types.d.mts +69 -0
  180. package/internal/types.d.mts.map +1 -0
  181. package/internal/types.d.ts +69 -0
  182. package/internal/types.d.ts.map +1 -0
  183. package/internal/types.js +4 -0
  184. package/internal/types.js.map +1 -0
  185. package/internal/types.mjs +3 -0
  186. package/internal/types.mjs.map +1 -0
  187. package/internal/uploads.d.mts +42 -0
  188. package/internal/uploads.d.mts.map +1 -0
  189. package/internal/uploads.d.ts +42 -0
  190. package/internal/uploads.d.ts.map +1 -0
  191. package/internal/uploads.js +141 -0
  192. package/internal/uploads.js.map +1 -0
  193. package/internal/uploads.mjs +131 -0
  194. package/internal/uploads.mjs.map +1 -0
  195. package/internal/utils/base64.d.mts +3 -0
  196. package/internal/utils/base64.d.mts.map +1 -0
  197. package/internal/utils/base64.d.ts +3 -0
  198. package/internal/utils/base64.d.ts.map +1 -0
  199. package/internal/utils/base64.js +38 -0
  200. package/internal/utils/base64.js.map +1 -0
  201. package/internal/utils/base64.mjs +33 -0
  202. package/internal/utils/base64.mjs.map +1 -0
  203. package/internal/utils/bytes.d.mts +4 -0
  204. package/internal/utils/bytes.d.mts.map +1 -0
  205. package/internal/utils/bytes.d.ts +4 -0
  206. package/internal/utils/bytes.d.ts.map +1 -0
  207. package/internal/utils/bytes.js +31 -0
  208. package/internal/utils/bytes.js.map +1 -0
  209. package/internal/utils/bytes.mjs +26 -0
  210. package/internal/utils/bytes.mjs.map +1 -0
  211. package/internal/utils/env.d.mts +9 -0
  212. package/internal/utils/env.d.mts.map +1 -0
  213. package/internal/utils/env.d.ts +9 -0
  214. package/internal/utils/env.d.ts.map +1 -0
  215. package/internal/utils/env.js +22 -0
  216. package/internal/utils/env.js.map +1 -0
  217. package/internal/utils/env.mjs +18 -0
  218. package/internal/utils/env.mjs.map +1 -0
  219. package/internal/utils/log.d.mts +37 -0
  220. package/internal/utils/log.d.mts.map +1 -0
  221. package/internal/utils/log.d.ts +37 -0
  222. package/internal/utils/log.d.ts.map +1 -0
  223. package/internal/utils/log.js +85 -0
  224. package/internal/utils/log.js.map +1 -0
  225. package/internal/utils/log.mjs +79 -0
  226. package/internal/utils/log.mjs.map +1 -0
  227. package/internal/utils/path.d.mts +15 -0
  228. package/internal/utils/path.d.mts.map +1 -0
  229. package/internal/utils/path.d.ts +15 -0
  230. package/internal/utils/path.d.ts.map +1 -0
  231. package/internal/utils/path.js +79 -0
  232. package/internal/utils/path.js.map +1 -0
  233. package/internal/utils/path.mjs +74 -0
  234. package/internal/utils/path.mjs.map +1 -0
  235. package/internal/utils/sleep.d.mts +2 -0
  236. package/internal/utils/sleep.d.mts.map +1 -0
  237. package/internal/utils/sleep.d.ts +2 -0
  238. package/internal/utils/sleep.d.ts.map +1 -0
  239. package/internal/utils/sleep.js +7 -0
  240. package/internal/utils/sleep.js.map +1 -0
  241. package/internal/utils/sleep.mjs +3 -0
  242. package/internal/utils/sleep.mjs.map +1 -0
  243. package/internal/utils/uuid.d.mts +5 -0
  244. package/internal/utils/uuid.d.mts.map +1 -0
  245. package/internal/utils/uuid.d.ts +5 -0
  246. package/internal/utils/uuid.d.ts.map +1 -0
  247. package/internal/utils/uuid.js +19 -0
  248. package/internal/utils/uuid.js.map +1 -0
  249. package/internal/utils/uuid.mjs +15 -0
  250. package/internal/utils/uuid.mjs.map +1 -0
  251. package/internal/utils/values.d.mts +18 -0
  252. package/internal/utils/values.d.mts.map +1 -0
  253. package/internal/utils/values.d.ts +18 -0
  254. package/internal/utils/values.d.ts.map +1 -0
  255. package/internal/utils/values.js +112 -0
  256. package/internal/utils/values.js.map +1 -0
  257. package/internal/utils/values.mjs +94 -0
  258. package/internal/utils/values.mjs.map +1 -0
  259. package/internal/utils.d.mts +7 -0
  260. package/internal/utils.d.mts.map +1 -0
  261. package/internal/utils.d.ts +7 -0
  262. package/internal/utils.d.ts.map +1 -0
  263. package/internal/utils.js +11 -0
  264. package/internal/utils.js.map +1 -0
  265. package/internal/utils.mjs +8 -0
  266. package/internal/utils.mjs.map +1 -0
  267. package/package.json +116 -67
  268. package/pagination.d.mts +2 -0
  269. package/pagination.d.mts.map +1 -0
  270. package/pagination.d.ts +1 -79
  271. package/pagination.d.ts.map +1 -1
  272. package/pagination.js +3 -123
  273. package/pagination.js.map +1 -1
  274. package/pagination.mjs +1 -118
  275. package/pagination.mjs.map +1 -1
  276. package/resource.d.mts +2 -0
  277. package/resource.d.mts.map +1 -0
  278. package/resource.d.ts +1 -5
  279. package/resource.d.ts.map +1 -1
  280. package/resource.js +3 -8
  281. package/resource.js.map +1 -1
  282. package/resource.mjs +1 -6
  283. package/resource.mjs.map +1 -1
  284. package/resources/access-tokens.d.mts +83 -0
  285. package/resources/access-tokens.d.mts.map +1 -0
  286. package/resources/access-tokens.d.ts +42 -33
  287. package/resources/access-tokens.d.ts.map +1 -1
  288. package/resources/access-tokens.js +2 -10
  289. package/resources/access-tokens.js.map +1 -1
  290. package/resources/access-tokens.mjs +2 -10
  291. package/resources/access-tokens.mjs.map +1 -1
  292. package/resources/account.d.mts +149 -0
  293. package/resources/account.d.mts.map +1 -0
  294. package/resources/account.d.ts +73 -49
  295. package/resources/account.d.ts.map +1 -1
  296. package/resources/account.js +1 -1
  297. package/resources/account.js.map +1 -1
  298. package/resources/account.mjs +1 -1
  299. package/resources/account.mjs.map +1 -1
  300. package/resources/connect/connect.d.mts +10 -0
  301. package/resources/connect/connect.d.mts.map +1 -0
  302. package/resources/connect/connect.d.ts +1 -1
  303. package/resources/connect/connect.d.ts.map +1 -1
  304. package/resources/connect/connect.js +3 -25
  305. package/resources/connect/connect.js.map +1 -1
  306. package/resources/connect/connect.mjs +1 -1
  307. package/resources/connect/index.d.mts +3 -0
  308. package/resources/connect/index.d.mts.map +1 -0
  309. package/resources/connect/index.d.ts.map +1 -1
  310. package/resources/connect/sessions.d.mts +110 -0
  311. package/resources/connect/sessions.d.mts.map +1 -0
  312. package/resources/connect/sessions.d.ts +44 -10
  313. package/resources/connect/sessions.d.ts.map +1 -1
  314. package/resources/connect/sessions.js +1 -1
  315. package/resources/connect/sessions.js.map +1 -1
  316. package/resources/connect/sessions.mjs +1 -1
  317. package/resources/connect/sessions.mjs.map +1 -1
  318. package/resources/connect.d.mts +2 -0
  319. package/resources/connect.d.mts.map +1 -0
  320. package/resources/connect.d.ts.map +1 -1
  321. package/resources/connect.js +2 -15
  322. package/resources/connect.js.map +1 -1
  323. package/resources/hris/benefits/benefits.d.mts +298 -0
  324. package/resources/hris/benefits/benefits.d.mts.map +1 -0
  325. package/resources/hris/benefits/benefits.d.ts +103 -115
  326. package/resources/hris/benefits/benefits.d.ts.map +1 -1
  327. package/resources/hris/benefits/benefits.js +45 -54
  328. package/resources/hris/benefits/benefits.js.map +1 -1
  329. package/resources/hris/benefits/benefits.mjs +43 -28
  330. package/resources/hris/benefits/benefits.mjs.map +1 -1
  331. package/resources/hris/benefits/index.d.mts +3 -0
  332. package/resources/hris/benefits/index.d.mts.map +1 -0
  333. package/resources/hris/benefits/index.d.ts +2 -2
  334. package/resources/hris/benefits/index.d.ts.map +1 -1
  335. package/resources/hris/benefits/index.js +1 -4
  336. package/resources/hris/benefits/index.js.map +1 -1
  337. package/resources/hris/benefits/index.mjs +2 -2
  338. package/resources/hris/benefits/index.mjs.map +1 -1
  339. package/resources/hris/benefits/individuals.d.mts +288 -0
  340. package/resources/hris/benefits/individuals.d.mts.map +1 -0
  341. package/resources/hris/benefits/individuals.d.ts +145 -27
  342. package/resources/hris/benefits/individuals.d.ts.map +1 -1
  343. package/resources/hris/benefits/individuals.js +61 -26
  344. package/resources/hris/benefits/individuals.js.map +1 -1
  345. package/resources/hris/benefits/individuals.mjs +60 -24
  346. package/resources/hris/benefits/individuals.mjs.map +1 -1
  347. package/resources/hris/benefits.d.mts +2 -0
  348. package/resources/hris/benefits.d.mts.map +1 -0
  349. package/resources/hris/benefits.d.ts.map +1 -1
  350. package/resources/hris/benefits.js +2 -15
  351. package/resources/hris/benefits.js.map +1 -1
  352. package/resources/hris/company/company.d.mts +124 -0
  353. package/resources/hris/company/company.d.mts.map +1 -0
  354. package/resources/hris/company/company.d.ts +12 -5
  355. package/resources/hris/company/company.d.ts.map +1 -1
  356. package/resources/hris/company/company.js +5 -28
  357. package/resources/hris/company/company.js.map +1 -1
  358. package/resources/hris/company/company.mjs +4 -5
  359. package/resources/hris/company/company.mjs.map +1 -1
  360. package/resources/hris/company/index.d.mts +3 -0
  361. package/resources/hris/company/index.d.mts.map +1 -0
  362. package/resources/hris/company/index.d.ts +2 -2
  363. package/resources/hris/company/index.d.ts.map +1 -1
  364. package/resources/hris/company/index.js +1 -2
  365. package/resources/hris/company/index.js.map +1 -1
  366. package/resources/hris/company/index.mjs +1 -1
  367. package/resources/hris/company/index.mjs.map +1 -1
  368. package/resources/hris/company/pay-statement-item/index.d.mts +3 -0
  369. package/resources/hris/company/pay-statement-item/index.d.mts.map +1 -0
  370. package/resources/hris/company/pay-statement-item/index.d.ts +2 -2
  371. package/resources/hris/company/pay-statement-item/index.d.ts.map +1 -1
  372. package/resources/hris/company/pay-statement-item/index.js +1 -3
  373. package/resources/hris/company/pay-statement-item/index.js.map +1 -1
  374. package/resources/hris/company/pay-statement-item/index.mjs +2 -2
  375. package/resources/hris/company/pay-statement-item/index.mjs.map +1 -1
  376. package/resources/hris/company/pay-statement-item/pay-statement-item.d.mts +99 -0
  377. package/resources/hris/company/pay-statement-item/pay-statement-item.d.mts.map +1 -0
  378. package/resources/hris/company/pay-statement-item/pay-statement-item.d.ts +22 -18
  379. package/resources/hris/company/pay-statement-item/pay-statement-item.d.ts.map +1 -1
  380. package/resources/hris/company/pay-statement-item/pay-statement-item.js +19 -40
  381. package/resources/hris/company/pay-statement-item/pay-statement-item.js.map +1 -1
  382. package/resources/hris/company/pay-statement-item/pay-statement-item.mjs +17 -15
  383. package/resources/hris/company/pay-statement-item/pay-statement-item.mjs.map +1 -1
  384. package/resources/hris/company/pay-statement-item/rules.d.mts +398 -0
  385. package/resources/hris/company/pay-statement-item/rules.d.mts.map +1 -0
  386. package/resources/hris/company/pay-statement-item/rules.d.ts +56 -21
  387. package/resources/hris/company/pay-statement-item/rules.d.ts.map +1 -1
  388. package/resources/hris/company/pay-statement-item/rules.js +55 -22
  389. package/resources/hris/company/pay-statement-item/rules.js.map +1 -1
  390. package/resources/hris/company/pay-statement-item/rules.mjs +54 -20
  391. package/resources/hris/company/pay-statement-item/rules.mjs.map +1 -1
  392. package/resources/hris/company/pay-statement-item.d.mts +2 -0
  393. package/resources/hris/company/pay-statement-item.d.mts.map +1 -0
  394. package/resources/hris/company/pay-statement-item.d.ts.map +1 -1
  395. package/resources/hris/company/pay-statement-item.js +2 -15
  396. package/resources/hris/company/pay-statement-item.js.map +1 -1
  397. package/resources/hris/company.d.mts +2 -0
  398. package/resources/hris/company.d.mts.map +1 -0
  399. package/resources/hris/company.d.ts.map +1 -1
  400. package/resources/hris/company.js +2 -15
  401. package/resources/hris/company.js.map +1 -1
  402. package/resources/hris/directory.d.mts +87 -0
  403. package/resources/hris/directory.d.mts.map +1 -0
  404. package/resources/hris/directory.d.ts +13 -9
  405. package/resources/hris/directory.d.ts.map +1 -1
  406. package/resources/hris/directory.js +17 -7
  407. package/resources/hris/directory.js.map +1 -1
  408. package/resources/hris/directory.mjs +17 -7
  409. package/resources/hris/directory.mjs.map +1 -1
  410. package/resources/hris/documents.d.mts +198 -0
  411. package/resources/hris/documents.d.mts.map +1 -0
  412. package/resources/hris/documents.d.ts +40 -30
  413. package/resources/hris/documents.d.ts.map +1 -1
  414. package/resources/hris/documents.js +13 -7
  415. package/resources/hris/documents.js.map +1 -1
  416. package/resources/hris/documents.mjs +13 -7
  417. package/resources/hris/documents.mjs.map +1 -1
  418. package/resources/hris/employments.d.mts +175 -0
  419. package/resources/hris/employments.d.mts.map +1 -0
  420. package/resources/hris/employments.d.ts +23 -20
  421. package/resources/hris/employments.d.ts.map +1 -1
  422. package/resources/hris/employments.js +7 -9
  423. package/resources/hris/employments.js.map +1 -1
  424. package/resources/hris/employments.mjs +6 -7
  425. package/resources/hris/employments.mjs.map +1 -1
  426. package/resources/hris/hris.d.mts +98 -0
  427. package/resources/hris/hris.d.mts.map +1 -0
  428. package/resources/hris/hris.d.ts +14 -14
  429. package/resources/hris/hris.d.ts.map +1 -1
  430. package/resources/hris/hris.js +10 -38
  431. package/resources/hris/hris.js.map +1 -1
  432. package/resources/hris/hris.mjs +6 -12
  433. package/resources/hris/hris.mjs.map +1 -1
  434. package/resources/hris/index.d.mts +10 -0
  435. package/resources/hris/index.d.mts.map +1 -0
  436. package/resources/hris/index.d.ts +7 -7
  437. package/resources/hris/index.d.ts.map +1 -1
  438. package/resources/hris/index.js +1 -7
  439. package/resources/hris/index.js.map +1 -1
  440. package/resources/hris/index.mjs +5 -5
  441. package/resources/hris/index.mjs.map +1 -1
  442. package/resources/hris/individuals.d.mts +116 -0
  443. package/resources/hris/individuals.d.mts.map +1 -0
  444. package/resources/hris/individuals.d.ts +16 -8
  445. package/resources/hris/individuals.d.ts.map +1 -1
  446. package/resources/hris/individuals.js +18 -13
  447. package/resources/hris/individuals.js.map +1 -1
  448. package/resources/hris/individuals.mjs +17 -11
  449. package/resources/hris/individuals.mjs.map +1 -1
  450. package/resources/hris/pay-statements.d.mts +268 -0
  451. package/resources/hris/pay-statements.d.mts.map +1 -0
  452. package/resources/hris/pay-statements.d.ts +113 -100
  453. package/resources/hris/pay-statements.d.ts.map +1 -1
  454. package/resources/hris/pay-statements.js +7 -9
  455. package/resources/hris/pay-statements.js.map +1 -1
  456. package/resources/hris/pay-statements.mjs +6 -7
  457. package/resources/hris/pay-statements.mjs.map +1 -1
  458. package/resources/hris/payments.d.mts +80 -0
  459. package/resources/hris/payments.d.mts.map +1 -0
  460. package/resources/hris/payments.d.ts +24 -21
  461. package/resources/hris/payments.d.ts.map +1 -1
  462. package/resources/hris/payments.js +4 -8
  463. package/resources/hris/payments.js.map +1 -1
  464. package/resources/hris/payments.mjs +3 -6
  465. package/resources/hris/payments.mjs.map +1 -1
  466. package/resources/hris.d.mts +2 -0
  467. package/resources/hris.d.mts.map +1 -0
  468. package/resources/hris.d.ts.map +1 -1
  469. package/resources/hris.js +2 -15
  470. package/resources/hris.js.map +1 -1
  471. package/resources/index.d.mts +12 -0
  472. package/resources/index.d.mts.map +1 -0
  473. package/resources/index.d.ts +1 -1
  474. package/resources/index.d.ts.map +1 -1
  475. package/resources/index.js +3 -17
  476. package/resources/index.js.map +1 -1
  477. package/resources/index.mjs +1 -1
  478. package/resources/index.mjs.map +1 -1
  479. package/resources/jobs/automated.d.mts +174 -0
  480. package/resources/jobs/automated.d.mts.map +1 -0
  481. package/resources/jobs/automated.d.ts +15 -11
  482. package/resources/jobs/automated.d.ts.map +1 -1
  483. package/resources/jobs/automated.js +9 -7
  484. package/resources/jobs/automated.js.map +1 -1
  485. package/resources/jobs/automated.mjs +9 -7
  486. package/resources/jobs/automated.mjs.map +1 -1
  487. package/resources/jobs/index.d.mts +4 -0
  488. package/resources/jobs/index.d.mts.map +1 -0
  489. package/resources/jobs/index.d.ts.map +1 -1
  490. package/resources/jobs/jobs.d.mts +14 -0
  491. package/resources/jobs/jobs.d.mts.map +1 -0
  492. package/resources/jobs/jobs.d.ts +1 -1
  493. package/resources/jobs/jobs.d.ts.map +1 -1
  494. package/resources/jobs/jobs.js +4 -26
  495. package/resources/jobs/jobs.js.map +1 -1
  496. package/resources/jobs/jobs.mjs +1 -1
  497. package/resources/jobs/manual.d.mts +22 -0
  498. package/resources/jobs/manual.d.mts.map +1 -0
  499. package/resources/jobs/manual.d.ts +4 -3
  500. package/resources/jobs/manual.d.ts.map +1 -1
  501. package/resources/jobs/manual.js +4 -3
  502. package/resources/jobs/manual.js.map +1 -1
  503. package/resources/jobs/manual.mjs +4 -3
  504. package/resources/jobs/manual.mjs.map +1 -1
  505. package/resources/jobs.d.mts +2 -0
  506. package/resources/jobs.d.mts.map +1 -0
  507. package/resources/jobs.d.ts.map +1 -1
  508. package/resources/jobs.js +2 -15
  509. package/resources/jobs.js.map +1 -1
  510. package/resources/payroll/index.d.mts +3 -0
  511. package/resources/payroll/index.d.mts.map +1 -0
  512. package/resources/payroll/index.d.ts +1 -1
  513. package/resources/payroll/index.d.ts.map +1 -1
  514. package/resources/payroll/index.js +1 -2
  515. package/resources/payroll/index.js.map +1 -1
  516. package/resources/payroll/index.mjs +1 -1
  517. package/resources/payroll/index.mjs.map +1 -1
  518. package/resources/payroll/pay-groups.d.mts +62 -0
  519. package/resources/payroll/pay-groups.d.mts.map +1 -0
  520. package/resources/payroll/pay-groups.d.ts +22 -13
  521. package/resources/payroll/pay-groups.d.ts.map +1 -1
  522. package/resources/payroll/pay-groups.js +10 -14
  523. package/resources/payroll/pay-groups.js.map +1 -1
  524. package/resources/payroll/pay-groups.mjs +9 -12
  525. package/resources/payroll/pay-groups.mjs.map +1 -1
  526. package/resources/payroll/payroll.d.mts +10 -0
  527. package/resources/payroll/payroll.d.mts.map +1 -0
  528. package/resources/payroll/payroll.d.ts +3 -3
  529. package/resources/payroll/payroll.d.ts.map +1 -1
  530. package/resources/payroll/payroll.js +3 -26
  531. package/resources/payroll/payroll.js.map +1 -1
  532. package/resources/payroll/payroll.mjs +2 -3
  533. package/resources/payroll/payroll.mjs.map +1 -1
  534. package/resources/payroll.d.mts +2 -0
  535. package/resources/payroll.d.mts.map +1 -0
  536. package/resources/payroll.d.ts.map +1 -1
  537. package/resources/payroll.js +2 -15
  538. package/resources/payroll.js.map +1 -1
  539. package/resources/providers.d.mts +142 -0
  540. package/resources/providers.d.mts.map +1 -0
  541. package/resources/providers.d.ts +90 -258
  542. package/resources/providers.d.ts.map +1 -1
  543. package/resources/providers.js +4 -8
  544. package/resources/providers.js.map +1 -1
  545. package/resources/providers.mjs +3 -6
  546. package/resources/providers.mjs.map +1 -1
  547. package/resources/request-forwarding.d.mts +109 -0
  548. package/resources/request-forwarding.d.mts.map +1 -0
  549. package/resources/request-forwarding.d.ts +48 -49
  550. package/resources/request-forwarding.d.ts.map +1 -1
  551. package/resources/request-forwarding.js +3 -13
  552. package/resources/request-forwarding.js.map +1 -1
  553. package/resources/request-forwarding.mjs +3 -13
  554. package/resources/request-forwarding.mjs.map +1 -1
  555. package/resources/sandbox/company.d.mts +219 -0
  556. package/resources/sandbox/company.d.mts.map +1 -0
  557. package/resources/sandbox/company.d.ts +4 -3
  558. package/resources/sandbox/company.d.ts.map +1 -1
  559. package/resources/sandbox/company.js +1 -1
  560. package/resources/sandbox/company.js.map +1 -1
  561. package/resources/sandbox/company.mjs +1 -1
  562. package/resources/sandbox/company.mjs.map +1 -1
  563. package/resources/sandbox/connections/accounts.d.mts +97 -0
  564. package/resources/sandbox/connections/accounts.d.mts.map +1 -0
  565. package/resources/sandbox/connections/accounts.d.ts +5 -5
  566. package/resources/sandbox/connections/accounts.d.ts.map +1 -1
  567. package/resources/sandbox/connections/accounts.js +13 -5
  568. package/resources/sandbox/connections/accounts.js.map +1 -1
  569. package/resources/sandbox/connections/accounts.mjs +13 -5
  570. package/resources/sandbox/connections/accounts.mjs.map +1 -1
  571. package/resources/sandbox/connections/connections.d.mts +62 -0
  572. package/resources/sandbox/connections/connections.d.mts.map +1 -0
  573. package/resources/sandbox/connections/connections.d.ts +4 -3
  574. package/resources/sandbox/connections/connections.d.ts.map +1 -1
  575. package/resources/sandbox/connections/connections.js +3 -25
  576. package/resources/sandbox/connections/connections.js.map +1 -1
  577. package/resources/sandbox/connections/connections.mjs +1 -1
  578. package/resources/sandbox/connections/connections.mjs.map +1 -1
  579. package/resources/sandbox/connections/index.d.mts +3 -0
  580. package/resources/sandbox/connections/index.d.mts.map +1 -0
  581. package/resources/sandbox/connections/index.d.ts.map +1 -1
  582. package/resources/sandbox/connections.d.mts +2 -0
  583. package/resources/sandbox/connections.d.mts.map +1 -0
  584. package/resources/sandbox/connections.d.ts.map +1 -1
  585. package/resources/sandbox/connections.js +2 -15
  586. package/resources/sandbox/connections.js.map +1 -1
  587. package/resources/sandbox/directory.d.mts +174 -0
  588. package/resources/sandbox/directory.d.mts.map +1 -0
  589. package/resources/sandbox/directory.d.ts +12 -8
  590. package/resources/sandbox/directory.d.ts.map +1 -1
  591. package/resources/sandbox/directory.js +12 -7
  592. package/resources/sandbox/directory.js.map +1 -1
  593. package/resources/sandbox/directory.mjs +12 -7
  594. package/resources/sandbox/directory.mjs.map +1 -1
  595. package/resources/sandbox/employment.d.mts +235 -0
  596. package/resources/sandbox/employment.d.mts.map +1 -0
  597. package/resources/sandbox/employment.d.ts +4 -4
  598. package/resources/sandbox/employment.d.ts.map +1 -1
  599. package/resources/sandbox/employment.js +14 -7
  600. package/resources/sandbox/employment.js.map +1 -1
  601. package/resources/sandbox/employment.mjs +14 -7
  602. package/resources/sandbox/employment.mjs.map +1 -1
  603. package/resources/sandbox/index.d.mts +9 -0
  604. package/resources/sandbox/index.d.mts.map +1 -0
  605. package/resources/sandbox/index.d.ts.map +1 -1
  606. package/resources/sandbox/individual.d.mts +131 -0
  607. package/resources/sandbox/individual.d.mts.map +1 -0
  608. package/resources/sandbox/individual.d.ts +4 -4
  609. package/resources/sandbox/individual.d.ts.map +1 -1
  610. package/resources/sandbox/individual.js +14 -7
  611. package/resources/sandbox/individual.js.map +1 -1
  612. package/resources/sandbox/individual.mjs +14 -7
  613. package/resources/sandbox/individual.mjs.map +1 -1
  614. package/resources/sandbox/jobs/configuration.d.mts +41 -0
  615. package/resources/sandbox/jobs/configuration.d.mts.map +1 -0
  616. package/resources/sandbox/jobs/configuration.d.ts +5 -4
  617. package/resources/sandbox/jobs/configuration.d.ts.map +1 -1
  618. package/resources/sandbox/jobs/configuration.js +1 -1
  619. package/resources/sandbox/jobs/configuration.js.map +1 -1
  620. package/resources/sandbox/jobs/configuration.mjs +1 -1
  621. package/resources/sandbox/jobs/configuration.mjs.map +1 -1
  622. package/resources/sandbox/jobs/index.d.mts +3 -0
  623. package/resources/sandbox/jobs/index.d.mts.map +1 -0
  624. package/resources/sandbox/jobs/index.d.ts.map +1 -1
  625. package/resources/sandbox/jobs/jobs.d.mts +48 -0
  626. package/resources/sandbox/jobs/jobs.d.mts.map +1 -0
  627. package/resources/sandbox/jobs/jobs.d.ts +4 -3
  628. package/resources/sandbox/jobs/jobs.d.ts.map +1 -1
  629. package/resources/sandbox/jobs/jobs.js +3 -25
  630. package/resources/sandbox/jobs/jobs.js.map +1 -1
  631. package/resources/sandbox/jobs/jobs.mjs +1 -1
  632. package/resources/sandbox/jobs/jobs.mjs.map +1 -1
  633. package/resources/sandbox/jobs.d.mts +2 -0
  634. package/resources/sandbox/jobs.d.mts.map +1 -0
  635. package/resources/sandbox/jobs.d.ts.map +1 -1
  636. package/resources/sandbox/jobs.js +2 -15
  637. package/resources/sandbox/jobs.js.map +1 -1
  638. package/resources/sandbox/payment.d.mts +81 -0
  639. package/resources/sandbox/payment.d.mts.map +1 -0
  640. package/resources/sandbox/payment.d.ts +34 -188
  641. package/resources/sandbox/payment.d.ts.map +1 -1
  642. package/resources/sandbox/payment.js +9 -5
  643. package/resources/sandbox/payment.js.map +1 -1
  644. package/resources/sandbox/payment.mjs +9 -5
  645. package/resources/sandbox/payment.mjs.map +1 -1
  646. package/resources/sandbox/sandbox.d.mts +34 -0
  647. package/resources/sandbox/sandbox.d.mts.map +1 -0
  648. package/resources/sandbox/sandbox.d.ts +1 -1
  649. package/resources/sandbox/sandbox.d.ts.map +1 -1
  650. package/resources/sandbox/sandbox.js +9 -31
  651. package/resources/sandbox/sandbox.js.map +1 -1
  652. package/resources/sandbox/sandbox.mjs +1 -1
  653. package/resources/sandbox.d.mts +2 -0
  654. package/resources/sandbox.d.mts.map +1 -0
  655. package/resources/sandbox.d.ts.map +1 -1
  656. package/resources/sandbox.js +2 -15
  657. package/resources/sandbox.js.map +1 -1
  658. package/resources/shared.d.mts +64 -0
  659. package/resources/shared.d.mts.map +1 -0
  660. package/resources/top-level.d.mts +2 -0
  661. package/resources/top-level.d.mts.map +1 -0
  662. package/resources/webhooks.d.mts +396 -0
  663. package/resources/webhooks.d.mts.map +1 -0
  664. package/resources/webhooks.d.ts +5 -3
  665. package/resources/webhooks.d.ts.map +1 -1
  666. package/resources/webhooks.js +9 -8
  667. package/resources/webhooks.js.map +1 -1
  668. package/resources/webhooks.mjs +3 -2
  669. package/resources/webhooks.mjs.map +1 -1
  670. package/resources.d.mts +2 -0
  671. package/resources.d.mts.map +1 -0
  672. package/resources.d.ts.map +1 -1
  673. package/resources.js +2 -15
  674. package/resources.js.map +1 -1
  675. package/src/api-promise.ts +2 -0
  676. package/src/client.ts +967 -0
  677. package/src/core/README.md +3 -0
  678. package/src/core/api-promise.ts +92 -0
  679. package/src/core/error.ts +130 -0
  680. package/src/core/pagination.ts +292 -0
  681. package/src/core/resource.ts +11 -0
  682. package/src/core/uploads.ts +2 -0
  683. package/src/error.ts +2 -130
  684. package/src/index.ts +6 -432
  685. package/src/internal/README.md +3 -0
  686. package/src/internal/builtin-types.ts +93 -0
  687. package/src/internal/detect-platform.ts +196 -0
  688. package/src/internal/errors.ts +33 -0
  689. package/src/internal/headers.ts +144 -0
  690. package/src/internal/parse.ts +50 -0
  691. package/src/internal/qs/formats.ts +3 -2
  692. package/src/internal/qs/index.ts +3 -3
  693. package/src/internal/qs/stringify.ts +18 -21
  694. package/src/internal/qs/utils.ts +16 -16
  695. package/src/internal/request-options.ts +91 -0
  696. package/src/internal/shim-types.ts +26 -0
  697. package/src/internal/shims.ts +107 -0
  698. package/src/internal/to-file.ts +154 -0
  699. package/src/internal/types.ts +95 -0
  700. package/src/internal/uploads.ts +187 -0
  701. package/src/internal/utils/base64.ts +40 -0
  702. package/src/internal/utils/bytes.ts +32 -0
  703. package/src/internal/utils/env.ts +18 -0
  704. package/src/internal/utils/log.ts +126 -0
  705. package/src/internal/utils/path.ts +88 -0
  706. package/src/internal/utils/sleep.ts +3 -0
  707. package/src/internal/utils/uuid.ts +17 -0
  708. package/src/internal/utils/values.ts +105 -0
  709. package/src/internal/utils.ts +8 -0
  710. package/src/pagination.ts +2 -221
  711. package/src/resource.ts +2 -11
  712. package/src/resources/access-tokens.ts +46 -39
  713. package/src/resources/account.ts +86 -57
  714. package/src/resources/connect/connect.ts +3 -3
  715. package/src/resources/connect/index.ts +2 -2
  716. package/src/resources/connect/sessions.ts +52 -18
  717. package/src/resources/connect.ts +1 -1
  718. package/src/resources/hris/benefits/benefits.ts +163 -173
  719. package/src/resources/hris/benefits/index.ts +9 -6
  720. package/src/resources/hris/benefits/individuals.ts +202 -79
  721. package/src/resources/hris/benefits.ts +1 -1
  722. package/src/resources/hris/company/company.ts +20 -10
  723. package/src/resources/hris/company/index.ts +3 -3
  724. package/src/resources/hris/company/pay-statement-item/index.ts +6 -4
  725. package/src/resources/hris/company/pay-statement-item/pay-statement-item.ts +34 -37
  726. package/src/resources/hris/company/pay-statement-item/rules.ts +85 -43
  727. package/src/resources/hris/company/pay-statement-item.ts +1 -1
  728. package/src/resources/hris/company.ts +1 -1
  729. package/src/resources/hris/directory.ts +22 -18
  730. package/src/resources/hris/documents.ts +51 -38
  731. package/src/resources/hris/employments.ts +33 -28
  732. package/src/resources/hris/hris.ts +41 -35
  733. package/src/resources/hris/index.ts +19 -15
  734. package/src/resources/hris/individuals.ts +23 -21
  735. package/src/resources/hris/pay-statements.ts +130 -116
  736. package/src/resources/hris/payments.ts +32 -32
  737. package/src/resources/hris.ts +1 -1
  738. package/src/resources/index.ts +16 -11
  739. package/src/resources/jobs/automated.ts +20 -22
  740. package/src/resources/jobs/index.ts +3 -3
  741. package/src/resources/jobs/jobs.ts +5 -5
  742. package/src/resources/jobs/manual.ts +6 -4
  743. package/src/resources/jobs.ts +1 -1
  744. package/src/resources/payroll/index.ts +4 -3
  745. package/src/resources/payroll/pay-groups.ts +43 -37
  746. package/src/resources/payroll/payroll.ts +6 -5
  747. package/src/resources/payroll.ts +1 -1
  748. package/src/resources/providers.ts +91 -397
  749. package/src/resources/request-forwarding.ts +38 -51
  750. package/src/resources/sandbox/company.ts +5 -4
  751. package/src/resources/sandbox/connections/accounts.ts +8 -13
  752. package/src/resources/sandbox/connections/connections.ts +6 -8
  753. package/src/resources/sandbox/connections/index.ts +2 -2
  754. package/src/resources/sandbox/connections.ts +1 -1
  755. package/src/resources/sandbox/directory.ts +17 -20
  756. package/src/resources/sandbox/employment.ts +10 -18
  757. package/src/resources/sandbox/index.ts +8 -8
  758. package/src/resources/sandbox/individual.ts +10 -18
  759. package/src/resources/sandbox/jobs/configuration.ts +5 -7
  760. package/src/resources/sandbox/jobs/index.ts +2 -2
  761. package/src/resources/sandbox/jobs/jobs.ts +6 -5
  762. package/src/resources/sandbox/jobs.ts +1 -1
  763. package/src/resources/sandbox/payment.ts +82 -220
  764. package/src/resources/sandbox/sandbox.ts +15 -15
  765. package/src/resources/sandbox.ts +1 -1
  766. package/src/resources/webhooks.ts +7 -5
  767. package/src/resources.ts +1 -1
  768. package/src/tsconfig.json +2 -2
  769. package/src/uploads.ts +2 -255
  770. package/src/version.ts +1 -1
  771. package/uploads.d.mts +2 -0
  772. package/uploads.d.mts.map +1 -0
  773. package/uploads.d.ts +1 -74
  774. package/uploads.d.ts.map +1 -1
  775. package/uploads.js +3 -168
  776. package/uploads.js.map +1 -1
  777. package/uploads.mjs +1 -157
  778. package/uploads.mjs.map +1 -1
  779. package/version.d.mts +2 -0
  780. package/version.d.mts.map +1 -0
  781. package/version.d.ts +1 -1
  782. package/version.d.ts.map +1 -1
  783. package/version.js +1 -1
  784. package/version.js.map +1 -1
  785. package/version.mjs +1 -1
  786. package/version.mjs.map +1 -1
  787. package/_shims/MultipartBody.d.ts +0 -9
  788. package/_shims/MultipartBody.d.ts.map +0 -1
  789. package/_shims/MultipartBody.js +0 -16
  790. package/_shims/MultipartBody.js.map +0 -1
  791. package/_shims/MultipartBody.mjs +0 -12
  792. package/_shims/MultipartBody.mjs.map +0 -1
  793. package/_shims/README.md +0 -46
  794. package/_shims/auto/runtime-bun.d.ts +0 -5
  795. package/_shims/auto/runtime-bun.d.ts.map +0 -1
  796. package/_shims/auto/runtime-bun.js +0 -21
  797. package/_shims/auto/runtime-bun.js.map +0 -1
  798. package/_shims/auto/runtime-bun.mjs +0 -2
  799. package/_shims/auto/runtime-bun.mjs.map +0 -1
  800. package/_shims/auto/runtime-node.d.ts +0 -5
  801. package/_shims/auto/runtime-node.d.ts.map +0 -1
  802. package/_shims/auto/runtime-node.js +0 -21
  803. package/_shims/auto/runtime-node.js.map +0 -1
  804. package/_shims/auto/runtime-node.mjs +0 -2
  805. package/_shims/auto/runtime-node.mjs.map +0 -1
  806. package/_shims/auto/runtime.d.ts +0 -5
  807. package/_shims/auto/runtime.d.ts.map +0 -1
  808. package/_shims/auto/runtime.js +0 -21
  809. package/_shims/auto/runtime.js.map +0 -1
  810. package/_shims/auto/runtime.mjs +0 -2
  811. package/_shims/auto/runtime.mjs.map +0 -1
  812. package/_shims/auto/types-node.d.ts +0 -5
  813. package/_shims/auto/types-node.d.ts.map +0 -1
  814. package/_shims/auto/types-node.js +0 -21
  815. package/_shims/auto/types-node.js.map +0 -1
  816. package/_shims/auto/types-node.mjs +0 -2
  817. package/_shims/auto/types-node.mjs.map +0 -1
  818. package/_shims/auto/types.d.ts +0 -101
  819. package/_shims/auto/types.js +0 -3
  820. package/_shims/auto/types.mjs +0 -3
  821. package/_shims/bun-runtime.d.ts +0 -6
  822. package/_shims/bun-runtime.d.ts.map +0 -1
  823. package/_shims/bun-runtime.js +0 -14
  824. package/_shims/bun-runtime.js.map +0 -1
  825. package/_shims/bun-runtime.mjs +0 -10
  826. package/_shims/bun-runtime.mjs.map +0 -1
  827. package/_shims/index.d.ts +0 -83
  828. package/_shims/index.js +0 -17
  829. package/_shims/index.mjs +0 -11
  830. package/_shims/manual-types.d.ts +0 -12
  831. package/_shims/manual-types.js +0 -3
  832. package/_shims/manual-types.mjs +0 -3
  833. package/_shims/node-runtime.d.ts +0 -3
  834. package/_shims/node-runtime.d.ts.map +0 -1
  835. package/_shims/node-runtime.js +0 -89
  836. package/_shims/node-runtime.js.map +0 -1
  837. package/_shims/node-runtime.mjs +0 -56
  838. package/_shims/node-runtime.mjs.map +0 -1
  839. package/_shims/node-types.d.ts +0 -42
  840. package/_shims/node-types.js +0 -3
  841. package/_shims/node-types.mjs +0 -3
  842. package/_shims/registry.d.ts +0 -37
  843. package/_shims/registry.d.ts.map +0 -1
  844. package/_shims/registry.js +0 -41
  845. package/_shims/registry.js.map +0 -1
  846. package/_shims/registry.mjs +0 -37
  847. package/_shims/registry.mjs.map +0 -1
  848. package/_shims/web-runtime.d.ts +0 -5
  849. package/_shims/web-runtime.d.ts.map +0 -1
  850. package/_shims/web-runtime.js +0 -78
  851. package/_shims/web-runtime.js.map +0 -1
  852. package/_shims/web-runtime.mjs +0 -71
  853. package/_shims/web-runtime.mjs.map +0 -1
  854. package/_shims/web-types.d.ts +0 -83
  855. package/_shims/web-types.js +0 -3
  856. package/_shims/web-types.mjs +0 -3
  857. package/core.d.ts +0 -253
  858. package/core.d.ts.map +0 -1
  859. package/core.js +0 -932
  860. package/core.js.map +0 -1
  861. package/core.mjs +0 -899
  862. package/core.mjs.map +0 -1
  863. package/shims/node.d.ts +0 -30
  864. package/shims/node.d.ts.map +0 -1
  865. package/shims/node.js +0 -31
  866. package/shims/node.js.map +0 -1
  867. package/shims/node.mjs +0 -5
  868. package/shims/node.mjs.map +0 -1
  869. package/shims/web.d.ts +0 -26
  870. package/shims/web.d.ts.map +0 -1
  871. package/shims/web.js +0 -31
  872. package/shims/web.js.map +0 -1
  873. package/shims/web.mjs +0 -5
  874. package/shims/web.mjs.map +0 -1
  875. package/src/_shims/MultipartBody.ts +0 -9
  876. package/src/_shims/README.md +0 -46
  877. package/src/_shims/auto/runtime-bun.ts +0 -4
  878. package/src/_shims/auto/runtime-node.ts +0 -4
  879. package/src/_shims/auto/runtime.ts +0 -4
  880. package/src/_shims/auto/types-node.ts +0 -4
  881. package/src/_shims/auto/types.d.ts +0 -101
  882. package/src/_shims/auto/types.js +0 -3
  883. package/src/_shims/auto/types.mjs +0 -3
  884. package/src/_shims/bun-runtime.ts +0 -14
  885. package/src/_shims/index.d.ts +0 -83
  886. package/src/_shims/index.js +0 -17
  887. package/src/_shims/index.mjs +0 -11
  888. package/src/_shims/manual-types.d.ts +0 -12
  889. package/src/_shims/manual-types.js +0 -3
  890. package/src/_shims/manual-types.mjs +0 -3
  891. package/src/_shims/node-runtime.ts +0 -81
  892. package/src/_shims/node-types.d.ts +0 -42
  893. package/src/_shims/node-types.js +0 -3
  894. package/src/_shims/node-types.mjs +0 -3
  895. package/src/_shims/registry.ts +0 -67
  896. package/src/_shims/web-runtime.ts +0 -103
  897. package/src/_shims/web-types.d.ts +0 -83
  898. package/src/_shims/web-types.js +0 -3
  899. package/src/_shims/web-types.mjs +0 -3
  900. package/src/core.ts +0 -1248
  901. package/src/shims/node.ts +0 -50
  902. package/src/shims/web.ts +0 -50
@@ -1,32 +1,16 @@
1
- import { APIResource } from "../../resource.js";
2
- import * as Core from "../../core.js";
3
- import * as HRISAPI from "../hris/hris.js";
4
- import * as BenefitsAPI from "../hris/benefits/benefits.js";
1
+ import { APIResource } from "../../core/resource.js";
2
+ import { APIPromise } from "../../core/api-promise.js";
3
+ import { RequestOptions } from "../../internal/request-options.js";
5
4
  export declare class Payment extends APIResource {
6
5
  /**
7
6
  * Add a new sandbox payment
8
7
  *
9
8
  * @example
10
9
  * ```ts
11
- * const payment = await client.sandbox.payment.create({
12
- * pay_statements: [
13
- * {
14
- * individual_id: 'b2338cfb-472f-4f72-9faa-e028c083144a',
15
- * employee_deductions: [
16
- * {
17
- * name: '401k test',
18
- * type: '401k',
19
- * amount: 2000,
20
- * currency: 'usd',
21
- * },
22
- * ],
23
- * },
24
- * ],
25
- * });
10
+ * const payment = await client.sandbox.payment.create();
26
11
  * ```
27
12
  */
28
- create(body?: PaymentCreateParams, options?: Core.RequestOptions): Core.APIPromise<PaymentCreateResponse>;
29
- create(options?: Core.RequestOptions): Core.APIPromise<PaymentCreateResponse>;
13
+ create(body?: PaymentCreateParams | null | undefined, options?: RequestOptions): APIPromise<PaymentCreateResponse>;
30
14
  }
31
15
  export interface PaymentCreateResponse {
32
16
  /**
@@ -40,192 +24,54 @@ export interface PaymentCreateResponse {
40
24
  }
41
25
  export interface PaymentCreateParams {
42
26
  end_date?: string;
27
+ /**
28
+ * Array of pay statements to include in the payment.
29
+ */
43
30
  pay_statements?: Array<PaymentCreateParams.PayStatement>;
44
31
  start_date?: string;
45
32
  }
46
33
  export declare namespace PaymentCreateParams {
47
34
  interface PayStatement {
48
- /**
49
- * The array of earnings objects associated with this pay statement
50
- */
51
- earnings?: Array<PayStatement.Earning | null> | null;
52
- /**
53
- * The array of deductions objects associated with this pay statement.
54
- */
55
- employee_deductions?: Array<PayStatement.EmployeeDeduction | null> | null;
56
- employer_contributions?: Array<PayStatement.EmployerContribution | null> | null;
57
- gross_pay?: HRISAPI.Money | null;
58
- /**
59
- * A stable Finch `id` (UUID v4) for an individual in the company
60
- */
61
- individual_id?: string;
62
- net_pay?: HRISAPI.Money | null;
63
- /**
64
- * The payment method.
65
- */
35
+ individual_id: string;
36
+ earnings?: Array<PayStatement.Earning>;
37
+ employee_deductions?: Array<PayStatement.EmployeeDeduction>;
38
+ employer_contributions?: Array<PayStatement.EmployerContribution>;
39
+ gross_pay?: number;
40
+ net_pay?: number;
66
41
  payment_method?: 'check' | 'direct_deposit' | 'other' | null;
67
- /**
68
- * The array of taxes objects associated with this pay statement.
69
- */
70
- taxes?: Array<PayStatement.Tax | null> | null;
71
- /**
72
- * The number of hours worked for this pay period
73
- */
74
- total_hours?: number | null;
75
- /**
76
- * The type of the payment associated with the pay statement.
77
- */
78
- type?: 'regular_payroll' | 'off_cycle_payroll' | 'one_time_payment' | null;
42
+ taxes?: Array<PayStatement.Tax>;
43
+ total_hours?: number;
44
+ type?: 'off_cycle_payroll' | 'one_time_payment' | 'regular_payroll' | null;
79
45
  }
80
46
  namespace PayStatement {
81
47
  interface Earning {
82
- /**
83
- * The earnings amount in cents.
84
- */
85
- amount?: number | null;
86
- attributes?: Earning.Attributes | null;
87
- /**
88
- * The earnings currency code.
89
- */
90
- currency?: string | null;
91
- /**
92
- * The number of hours associated with this earning. (For salaried employees, this
93
- * could be hours per pay period, `0` or `null`, depending on the provider).
94
- */
95
- hours?: number | null;
96
- /**
97
- * The exact name of the deduction from the pay statement.
98
- */
99
- name?: string | null;
100
- /**
101
- * The type of earning.
102
- */
103
- type?: 'salary' | 'wage' | 'reimbursement' | 'overtime' | 'severance' | 'double_overtime' | 'pto' | 'sick' | 'bonus' | 'commission' | 'tips' | '1099' | 'other' | null;
104
- }
105
- namespace Earning {
106
- interface Attributes {
107
- metadata?: Attributes.Metadata;
108
- }
109
- namespace Attributes {
110
- interface Metadata {
111
- /**
112
- * The metadata to be attached to the entity by existing rules. It is a key-value
113
- * pairs where the values can be of any type (string, number, boolean, object,
114
- * array, etc.).
115
- */
116
- metadata?: Record<string, unknown>;
117
- }
118
- }
48
+ amount?: number;
49
+ hours?: number;
50
+ name?: string;
51
+ type?: 'bonus' | 'commission' | 'double_overtime' | 'other' | 'overtime' | 'pto' | 'reimbursement' | 'salary' | 'severance' | 'sick' | 'tips' | 'wage' | '1099';
119
52
  }
120
53
  interface EmployeeDeduction {
54
+ amount?: number;
121
55
  /**
122
- * The deduction amount in cents.
123
- */
124
- amount?: number | null;
125
- attributes?: EmployeeDeduction.Attributes | null;
126
- /**
127
- * The deduction currency.
128
- */
129
- currency?: string | null;
130
- /**
131
- * The deduction name from the pay statement.
132
- */
133
- name?: string | null;
134
- /**
135
- * Boolean indicating if the deduction is pre-tax.
136
- */
137
- pre_tax?: boolean | null;
138
- /**
139
- * Type of benefit.
56
+ * The deduction name. Required when type is specified.
140
57
  */
141
- type?: BenefitsAPI.BenefitType | null;
142
- }
143
- namespace EmployeeDeduction {
144
- interface Attributes {
145
- metadata?: Attributes.Metadata;
146
- }
147
- namespace Attributes {
148
- interface Metadata {
149
- /**
150
- * The metadata to be attached to the entity by existing rules. It is a key-value
151
- * pairs where the values can be of any type (string, number, boolean, object,
152
- * array, etc.).
153
- */
154
- metadata?: Record<string, unknown>;
155
- }
156
- }
58
+ name?: string;
59
+ pre_tax?: boolean;
60
+ type?: '457' | '401k' | '401k_roth' | '401k_loan' | '403b' | '403b_roth' | '457_roth' | 'commuter' | 'custom_post_tax' | 'custom_pre_tax' | 'fsa_dependent_care' | 'fsa_medical' | 'hsa_post' | 'hsa_pre' | 's125_dental' | 's125_medical' | 's125_vision' | 'simple' | 'simple_ira';
157
61
  }
158
62
  interface EmployerContribution {
63
+ amount?: number;
159
64
  /**
160
- * The contribution amount in cents.
161
- */
162
- amount?: number | null;
163
- attributes?: EmployerContribution.Attributes | null;
164
- /**
165
- * The contribution currency.
166
- */
167
- currency?: string | null;
168
- /**
169
- * The contribution name from the pay statement.
170
- */
171
- name?: string | null;
172
- /**
173
- * Type of benefit.
65
+ * The contribution name. Required when type is specified.
174
66
  */
175
- type?: BenefitsAPI.BenefitType | null;
176
- }
177
- namespace EmployerContribution {
178
- interface Attributes {
179
- metadata?: Attributes.Metadata;
180
- }
181
- namespace Attributes {
182
- interface Metadata {
183
- /**
184
- * The metadata to be attached to the entity by existing rules. It is a key-value
185
- * pairs where the values can be of any type (string, number, boolean, object,
186
- * array, etc.).
187
- */
188
- metadata?: Record<string, unknown>;
189
- }
190
- }
67
+ name?: string;
68
+ type?: '457' | '401k' | '401k_roth' | '401k_loan' | '403b' | '403b_roth' | '457_roth' | 'commuter' | 'custom_post_tax' | 'custom_pre_tax' | 'fsa_dependent_care' | 'fsa_medical' | 'hsa_post' | 'hsa_pre' | 's125_dental' | 's125_medical' | 's125_vision' | 'simple' | 'simple_ira';
191
69
  }
192
70
  interface Tax {
193
- /**
194
- * The tax amount in cents.
195
- */
196
- amount?: number | null;
197
- attributes?: Tax.Attributes | null;
198
- /**
199
- * The currency code.
200
- */
201
- currency?: string | null;
202
- /**
203
- * `true` if the amount is paid by the employers.
204
- */
205
- employer?: boolean | null;
206
- /**
207
- * The exact name of tax from the pay statement.
208
- */
209
- name?: string | null;
210
- /**
211
- * The type of taxes.
212
- */
213
- type?: 'state' | 'federal' | 'local' | 'fica' | null;
214
- }
215
- namespace Tax {
216
- interface Attributes {
217
- metadata?: Attributes.Metadata;
218
- }
219
- namespace Attributes {
220
- interface Metadata {
221
- /**
222
- * The metadata to be attached to the entity by existing rules. It is a key-value
223
- * pairs where the values can be of any type (string, number, boolean, object,
224
- * array, etc.).
225
- */
226
- metadata?: Record<string, unknown>;
227
- }
228
- }
71
+ amount?: number;
72
+ employer?: boolean;
73
+ name?: string;
74
+ type?: 'federal' | 'fica' | 'local' | 'state';
229
75
  }
230
76
  }
231
77
  }
@@ -1 +1 @@
1
- {"version":3,"file":"payment.d.ts","sourceRoot":"","sources":["../../src/resources/sandbox/payment.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"payment.d.ts","sourceRoot":"","sources":["../../src/resources/sandbox/payment.ts"],"names":[],"mappings":"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"}
@@ -2,13 +2,17 @@
2
2
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.Payment = void 0;
5
- const resource_1 = require("../../resource.js");
6
- const core_1 = require("../../core.js");
5
+ const resource_1 = require("../../core/resource.js");
7
6
  class Payment extends resource_1.APIResource {
7
+ /**
8
+ * Add a new sandbox payment
9
+ *
10
+ * @example
11
+ * ```ts
12
+ * const payment = await client.sandbox.payment.create();
13
+ * ```
14
+ */
8
15
  create(body = {}, options) {
9
- if ((0, core_1.isRequestOptions)(body)) {
10
- return this.create({}, body);
11
- }
12
16
  return this._client.post('/sandbox/payment', { body, ...options });
13
17
  }
14
18
  }
@@ -1 +1 @@
1
- {"version":3,"file":"payment.js","sourceRoot":"","sources":["../../src/resources/sandbox/payment.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAC7C,wCAA8C;AAK9C,MAAa,OAAQ,SAAQ,sBAAW;IAyBtC,MAAM,CACJ,OAAkD,EAAE,EACpD,OAA6B;QAE7B,IAAI,IAAA,uBAAgB,EAAC,IAAI,CAAC,EAAE;YAC1B,OAAO,IAAI,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC;SAC9B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,kBAAkB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACrE,CAAC;CACF;AAlCD,0BAkCC"}
1
+ {"version":3,"file":"payment.js","sourceRoot":"","sources":["../../src/resources/sandbox/payment.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,qDAAkD;AAIlD,MAAa,OAAQ,SAAQ,sBAAW;IACtC;;;;;;;OAOG;IACH,MAAM,CACJ,OAA+C,EAAE,EACjD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,kBAAkB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACrE,CAAC;CACF;AAfD,0BAeC"}
@@ -1,11 +1,15 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
- import { APIResource } from "../../resource.mjs";
3
- import { isRequestOptions } from "../../core.mjs";
2
+ import { APIResource } from "../../core/resource.mjs";
4
3
  export class Payment extends APIResource {
4
+ /**
5
+ * Add a new sandbox payment
6
+ *
7
+ * @example
8
+ * ```ts
9
+ * const payment = await client.sandbox.payment.create();
10
+ * ```
11
+ */
5
12
  create(body = {}, options) {
6
- if (isRequestOptions(body)) {
7
- return this.create({}, body);
8
- }
9
13
  return this._client.post('/sandbox/payment', { body, ...options });
10
14
  }
11
15
  }
@@ -1 +1 @@
1
- {"version":3,"file":"payment.mjs","sourceRoot":"","sources":["../../src/resources/sandbox/payment.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OACf,EAAE,gBAAgB,EAAE;AAK3B,MAAM,OAAO,OAAQ,SAAQ,WAAW;IAyBtC,MAAM,CACJ,OAAkD,EAAE,EACpD,OAA6B;QAE7B,IAAI,gBAAgB,CAAC,IAAI,CAAC,EAAE;YAC1B,OAAO,IAAI,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC;SAC9B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,kBAAkB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACrE,CAAC;CACF"}
1
+ {"version":3,"file":"payment.mjs","sourceRoot":"","sources":["../../src/resources/sandbox/payment.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAItB,MAAM,OAAO,OAAQ,SAAQ,WAAW;IACtC;;;;;;;OAOG;IACH,MAAM,CACJ,OAA+C,EAAE,EACjD,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,kBAAkB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACrE,CAAC;CACF"}
@@ -0,0 +1,34 @@
1
+ import { APIResource } from "../../core/resource.mjs";
2
+ import * as CompanyAPI from "./company.mjs";
3
+ import { Company, CompanyUpdateParams, CompanyUpdateResponse } from "./company.mjs";
4
+ import * as DirectoryAPI from "./directory.mjs";
5
+ import { Directory, DirectoryCreateParams, DirectoryCreateResponse } from "./directory.mjs";
6
+ import * as EmploymentAPI from "./employment.mjs";
7
+ import { Employment, EmploymentUpdateParams, EmploymentUpdateResponse } from "./employment.mjs";
8
+ import * as IndividualAPI from "./individual.mjs";
9
+ import { Individual, IndividualUpdateParams, IndividualUpdateResponse } from "./individual.mjs";
10
+ import * as PaymentAPI from "./payment.mjs";
11
+ import { Payment, PaymentCreateParams, PaymentCreateResponse } from "./payment.mjs";
12
+ import * as ConnectionsAPI from "./connections/connections.mjs";
13
+ import { ConnectionCreateParams, ConnectionCreateResponse, Connections } from "./connections/connections.mjs";
14
+ import * as JobsAPI from "./jobs/jobs.mjs";
15
+ import { JobCreateParams, JobCreateResponse, Jobs } from "./jobs/jobs.mjs";
16
+ export declare class Sandbox extends APIResource {
17
+ connections: ConnectionsAPI.Connections;
18
+ company: CompanyAPI.Company;
19
+ directory: DirectoryAPI.Directory;
20
+ individual: IndividualAPI.Individual;
21
+ employment: EmploymentAPI.Employment;
22
+ payment: PaymentAPI.Payment;
23
+ jobs: JobsAPI.Jobs;
24
+ }
25
+ export declare namespace Sandbox {
26
+ export { Connections as Connections, type ConnectionCreateResponse as ConnectionCreateResponse, type ConnectionCreateParams as ConnectionCreateParams, };
27
+ export { Company as Company, type CompanyUpdateResponse as CompanyUpdateResponse, type CompanyUpdateParams as CompanyUpdateParams, };
28
+ export { Directory as Directory, type DirectoryCreateResponse as DirectoryCreateResponse, type DirectoryCreateParams as DirectoryCreateParams, };
29
+ export { Individual as Individual, type IndividualUpdateResponse as IndividualUpdateResponse, type IndividualUpdateParams as IndividualUpdateParams, };
30
+ export { Employment as Employment, type EmploymentUpdateResponse as EmploymentUpdateResponse, type EmploymentUpdateParams as EmploymentUpdateParams, };
31
+ export { Payment as Payment, type PaymentCreateResponse as PaymentCreateResponse, type PaymentCreateParams as PaymentCreateParams, };
32
+ export { Jobs as Jobs, type JobCreateResponse as JobCreateResponse, type JobCreateParams as JobCreateParams, };
33
+ }
34
+ //# sourceMappingURL=sandbox.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sandbox.d.mts","sourceRoot":"","sources":["../../src/resources/sandbox/sandbox.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,UAAU;OACf,EAAE,OAAO,EAAE,mBAAmB,EAAE,qBAAqB,EAAE;OACvD,KAAK,YAAY;OACjB,EAAE,SAAS,EAAE,qBAAqB,EAAE,uBAAuB,EAAE;OAC7D,KAAK,aAAa;OAClB,EAAE,UAAU,EAAE,sBAAsB,EAAE,wBAAwB,EAAE;OAChE,KAAK,aAAa;OAClB,EAAE,UAAU,EAAE,sBAAsB,EAAE,wBAAwB,EAAE;OAChE,KAAK,UAAU;OACf,EAAE,OAAO,EAAE,mBAAmB,EAAE,qBAAqB,EAAE;OACvD,KAAK,cAAc;OACnB,EAAE,sBAAsB,EAAE,wBAAwB,EAAE,WAAW,EAAE;OACjE,KAAK,OAAO;OACZ,EAAE,eAAe,EAAE,iBAAiB,EAAE,IAAI,EAAE;AAEnD,qBAAa,OAAQ,SAAQ,WAAW;IACtC,WAAW,EAAE,cAAc,CAAC,WAAW,CAAgD;IACvF,OAAO,EAAE,UAAU,CAAC,OAAO,CAAwC;IACnE,SAAS,EAAE,YAAY,CAAC,SAAS,CAA4C;IAC7E,UAAU,EAAE,aAAa,CAAC,UAAU,CAA8C;IAClF,UAAU,EAAE,aAAa,CAAC,UAAU,CAA8C;IAClF,OAAO,EAAE,UAAU,CAAC,OAAO,CAAwC;IACnE,IAAI,EAAE,OAAO,CAAC,IAAI,CAAkC;CACrD;AAUD,MAAM,CAAC,OAAO,WAAW,OAAO,CAAC;IAC/B,OAAO,EACL,WAAW,IAAI,WAAW,EAC1B,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,sBAAsB,IAAI,sBAAsB,GACtD,CAAC;IAEF,OAAO,EACL,OAAO,IAAI,OAAO,EAClB,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,mBAAmB,IAAI,mBAAmB,GAChD,CAAC;IAEF,OAAO,EACL,SAAS,IAAI,SAAS,EACtB,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,qBAAqB,IAAI,qBAAqB,GACpD,CAAC;IAEF,OAAO,EACL,UAAU,IAAI,UAAU,EACxB,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,sBAAsB,IAAI,sBAAsB,GACtD,CAAC;IAEF,OAAO,EACL,UAAU,IAAI,UAAU,EACxB,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,sBAAsB,IAAI,sBAAsB,GACtD,CAAC;IAEF,OAAO,EACL,OAAO,IAAI,OAAO,EAClB,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,mBAAmB,IAAI,mBAAmB,GAChD,CAAC;IAEF,OAAO,EACL,IAAI,IAAI,IAAI,EACZ,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,eAAe,IAAI,eAAe,GACxC,CAAC;CACH"}
@@ -1,4 +1,4 @@
1
- import { APIResource } from "../../resource.js";
1
+ import { APIResource } from "../../core/resource.js";
2
2
  import * as CompanyAPI from "./company.js";
3
3
  import { Company, CompanyUpdateParams, CompanyUpdateResponse } from "./company.js";
4
4
  import * as DirectoryAPI from "./directory.js";
@@ -1 +1 @@
1
- {"version":3,"file":"sandbox.d.ts","sourceRoot":"","sources":["../../src/resources/sandbox/sandbox.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,UAAU,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,OAAO,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,MAAM,WAAW,CAAC;AAChF,OAAO,KAAK,YAAY,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,SAAS,EAAE,qBAAqB,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AACxF,OAAO,KAAK,aAAa,MAAM,cAAc,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,sBAAsB,EAAE,wBAAwB,EAAE,MAAM,cAAc,CAAC;AAC5F,OAAO,KAAK,aAAa,MAAM,cAAc,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,sBAAsB,EAAE,wBAAwB,EAAE,MAAM,cAAc,CAAC;AAC5F,OAAO,KAAK,UAAU,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,OAAO,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,MAAM,WAAW,CAAC;AAChF,OAAO,KAAK,cAAc,MAAM,2BAA2B,CAAC;AAC5D,OAAO,EAAE,sBAAsB,EAAE,wBAAwB,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAC1G,OAAO,KAAK,OAAO,MAAM,aAAa,CAAC;AACvC,OAAO,EAAE,eAAe,EAAE,iBAAiB,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AAEvE,qBAAa,OAAQ,SAAQ,WAAW;IACtC,WAAW,EAAE,cAAc,CAAC,WAAW,CAAgD;IACvF,OAAO,EAAE,UAAU,CAAC,OAAO,CAAwC;IACnE,SAAS,EAAE,YAAY,CAAC,SAAS,CAA4C;IAC7E,UAAU,EAAE,aAAa,CAAC,UAAU,CAA8C;IAClF,UAAU,EAAE,aAAa,CAAC,UAAU,CAA8C;IAClF,OAAO,EAAE,UAAU,CAAC,OAAO,CAAwC;IACnE,IAAI,EAAE,OAAO,CAAC,IAAI,CAAkC;CACrD;AAUD,MAAM,CAAC,OAAO,WAAW,OAAO,CAAC;IAC/B,OAAO,EACL,WAAW,IAAI,WAAW,EAC1B,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,sBAAsB,IAAI,sBAAsB,GACtD,CAAC;IAEF,OAAO,EACL,OAAO,IAAI,OAAO,EAClB,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,mBAAmB,IAAI,mBAAmB,GAChD,CAAC;IAEF,OAAO,EACL,SAAS,IAAI,SAAS,EACtB,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,qBAAqB,IAAI,qBAAqB,GACpD,CAAC;IAEF,OAAO,EACL,UAAU,IAAI,UAAU,EACxB,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,sBAAsB,IAAI,sBAAsB,GACtD,CAAC;IAEF,OAAO,EACL,UAAU,IAAI,UAAU,EACxB,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,sBAAsB,IAAI,sBAAsB,GACtD,CAAC;IAEF,OAAO,EACL,OAAO,IAAI,OAAO,EAClB,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,mBAAmB,IAAI,mBAAmB,GAChD,CAAC;IAEF,OAAO,EACL,IAAI,IAAI,IAAI,EACZ,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,eAAe,IAAI,eAAe,GACxC,CAAC;CACH"}
1
+ {"version":3,"file":"sandbox.d.ts","sourceRoot":"","sources":["../../src/resources/sandbox/sandbox.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,UAAU;OACf,EAAE,OAAO,EAAE,mBAAmB,EAAE,qBAAqB,EAAE;OACvD,KAAK,YAAY;OACjB,EAAE,SAAS,EAAE,qBAAqB,EAAE,uBAAuB,EAAE;OAC7D,KAAK,aAAa;OAClB,EAAE,UAAU,EAAE,sBAAsB,EAAE,wBAAwB,EAAE;OAChE,KAAK,aAAa;OAClB,EAAE,UAAU,EAAE,sBAAsB,EAAE,wBAAwB,EAAE;OAChE,KAAK,UAAU;OACf,EAAE,OAAO,EAAE,mBAAmB,EAAE,qBAAqB,EAAE;OACvD,KAAK,cAAc;OACnB,EAAE,sBAAsB,EAAE,wBAAwB,EAAE,WAAW,EAAE;OACjE,KAAK,OAAO;OACZ,EAAE,eAAe,EAAE,iBAAiB,EAAE,IAAI,EAAE;AAEnD,qBAAa,OAAQ,SAAQ,WAAW;IACtC,WAAW,EAAE,cAAc,CAAC,WAAW,CAAgD;IACvF,OAAO,EAAE,UAAU,CAAC,OAAO,CAAwC;IACnE,SAAS,EAAE,YAAY,CAAC,SAAS,CAA4C;IAC7E,UAAU,EAAE,aAAa,CAAC,UAAU,CAA8C;IAClF,UAAU,EAAE,aAAa,CAAC,UAAU,CAA8C;IAClF,OAAO,EAAE,UAAU,CAAC,OAAO,CAAwC;IACnE,IAAI,EAAE,OAAO,CAAC,IAAI,CAAkC;CACrD;AAUD,MAAM,CAAC,OAAO,WAAW,OAAO,CAAC;IAC/B,OAAO,EACL,WAAW,IAAI,WAAW,EAC1B,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,sBAAsB,IAAI,sBAAsB,GACtD,CAAC;IAEF,OAAO,EACL,OAAO,IAAI,OAAO,EAClB,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,mBAAmB,IAAI,mBAAmB,GAChD,CAAC;IAEF,OAAO,EACL,SAAS,IAAI,SAAS,EACtB,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,qBAAqB,IAAI,qBAAqB,GACpD,CAAC;IAEF,OAAO,EACL,UAAU,IAAI,UAAU,EACxB,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,sBAAsB,IAAI,sBAAsB,GACtD,CAAC;IAEF,OAAO,EACL,UAAU,IAAI,UAAU,EACxB,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,sBAAsB,IAAI,sBAAsB,GACtD,CAAC;IAEF,OAAO,EACL,OAAO,IAAI,OAAO,EAClB,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,mBAAmB,IAAI,mBAAmB,GAChD,CAAC;IAEF,OAAO,EACL,IAAI,IAAI,IAAI,EACZ,KAAK,iBAAiB,IAAI,iBAAiB,EAC3C,KAAK,eAAe,IAAI,eAAe,GACxC,CAAC;CACH"}
@@ -1,44 +1,22 @@
1
1
  "use strict";
2
2
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
- if (k2 === undefined) k2 = k;
5
- var desc = Object.getOwnPropertyDescriptor(m, k);
6
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
- desc = { enumerable: true, get: function() { return m[k]; } };
8
- }
9
- Object.defineProperty(o, k2, desc);
10
- }) : (function(o, m, k, k2) {
11
- if (k2 === undefined) k2 = k;
12
- o[k2] = m[k];
13
- }));
14
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
- Object.defineProperty(o, "default", { enumerable: true, value: v });
16
- }) : function(o, v) {
17
- o["default"] = v;
18
- });
19
- var __importStar = (this && this.__importStar) || function (mod) {
20
- if (mod && mod.__esModule) return mod;
21
- var result = {};
22
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
23
- __setModuleDefault(result, mod);
24
- return result;
25
- };
26
3
  Object.defineProperty(exports, "__esModule", { value: true });
27
4
  exports.Sandbox = void 0;
28
- const resource_1 = require("../../resource.js");
29
- const CompanyAPI = __importStar(require("./company.js"));
5
+ const tslib_1 = require("../../internal/tslib.js");
6
+ const resource_1 = require("../../core/resource.js");
7
+ const CompanyAPI = tslib_1.__importStar(require("./company.js"));
30
8
  const company_1 = require("./company.js");
31
- const DirectoryAPI = __importStar(require("./directory.js"));
9
+ const DirectoryAPI = tslib_1.__importStar(require("./directory.js"));
32
10
  const directory_1 = require("./directory.js");
33
- const EmploymentAPI = __importStar(require("./employment.js"));
11
+ const EmploymentAPI = tslib_1.__importStar(require("./employment.js"));
34
12
  const employment_1 = require("./employment.js");
35
- const IndividualAPI = __importStar(require("./individual.js"));
13
+ const IndividualAPI = tslib_1.__importStar(require("./individual.js"));
36
14
  const individual_1 = require("./individual.js");
37
- const PaymentAPI = __importStar(require("./payment.js"));
15
+ const PaymentAPI = tslib_1.__importStar(require("./payment.js"));
38
16
  const payment_1 = require("./payment.js");
39
- const ConnectionsAPI = __importStar(require("./connections/connections.js"));
17
+ const ConnectionsAPI = tslib_1.__importStar(require("./connections/connections.js"));
40
18
  const connections_1 = require("./connections/connections.js");
41
- const JobsAPI = __importStar(require("./jobs/jobs.js"));
19
+ const JobsAPI = tslib_1.__importStar(require("./jobs/jobs.js"));
42
20
  const jobs_1 = require("./jobs/jobs.js");
43
21
  class Sandbox extends resource_1.APIResource {
44
22
  constructor() {
@@ -1 +1 @@
1
- {"version":3,"file":"sandbox.js","sourceRoot":"","sources":["../../src/resources/sandbox/sandbox.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEtF,gDAA6C;AAC7C,yDAAwC;AACxC,0CAAgF;AAChF,6DAA4C;AAC5C,8CAAwF;AACxF,+DAA8C;AAC9C,gDAA4F;AAC5F,+DAA8C;AAC9C,gDAA4F;AAC5F,yDAAwC;AACxC,0CAAgF;AAChF,6EAA4D;AAC5D,8DAA0G;AAC1G,wDAAuC;AACvC,yCAAuE;AAEvE,MAAa,OAAQ,SAAQ,sBAAW;IAAxC;;QACE,gBAAW,GAA+B,IAAI,cAAc,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACvF,YAAO,GAAuB,IAAI,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACnE,cAAS,GAA2B,IAAI,YAAY,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC7E,eAAU,GAA6B,IAAI,aAAa,CAAC,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAClF,eAAU,GAA6B,IAAI,aAAa,CAAC,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAClF,YAAO,GAAuB,IAAI,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACnE,SAAI,GAAiB,IAAI,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IACtD,CAAC;CAAA;AARD,0BAQC;AAED,OAAO,CAAC,WAAW,GAAG,yBAAW,CAAC;AAClC,OAAO,CAAC,OAAO,GAAG,iBAAO,CAAC;AAC1B,OAAO,CAAC,SAAS,GAAG,qBAAS,CAAC;AAC9B,OAAO,CAAC,UAAU,GAAG,uBAAU,CAAC;AAChC,OAAO,CAAC,UAAU,GAAG,uBAAU,CAAC;AAChC,OAAO,CAAC,OAAO,GAAG,iBAAO,CAAC;AAC1B,OAAO,CAAC,IAAI,GAAG,WAAI,CAAC"}
1
+ {"version":3,"file":"sandbox.js","sourceRoot":"","sources":["../../src/resources/sandbox/sandbox.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,qDAAkD;AAClD,iEAAwC;AACxC,0CAAgF;AAChF,qEAA4C;AAC5C,8CAAwF;AACxF,uEAA8C;AAC9C,gDAA4F;AAC5F,uEAA8C;AAC9C,gDAA4F;AAC5F,iEAAwC;AACxC,0CAAgF;AAChF,qFAA4D;AAC5D,8DAA0G;AAC1G,gEAAuC;AACvC,yCAAuE;AAEvE,MAAa,OAAQ,SAAQ,sBAAW;IAAxC;;QACE,gBAAW,GAA+B,IAAI,cAAc,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACvF,YAAO,GAAuB,IAAI,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACnE,cAAS,GAA2B,IAAI,YAAY,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC7E,eAAU,GAA6B,IAAI,aAAa,CAAC,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAClF,eAAU,GAA6B,IAAI,aAAa,CAAC,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAClF,YAAO,GAAuB,IAAI,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACnE,SAAI,GAAiB,IAAI,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IACtD,CAAC;CAAA;AARD,0BAQC;AAED,OAAO,CAAC,WAAW,GAAG,yBAAW,CAAC;AAClC,OAAO,CAAC,OAAO,GAAG,iBAAO,CAAC;AAC1B,OAAO,CAAC,SAAS,GAAG,qBAAS,CAAC;AAC9B,OAAO,CAAC,UAAU,GAAG,uBAAU,CAAC;AAChC,OAAO,CAAC,UAAU,GAAG,uBAAU,CAAC;AAChC,OAAO,CAAC,OAAO,GAAG,iBAAO,CAAC;AAC1B,OAAO,CAAC,IAAI,GAAG,WAAI,CAAC"}
@@ -1,5 +1,5 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
- import { APIResource } from "../../resource.mjs";
2
+ import { APIResource } from "../../core/resource.mjs";
3
3
  import * as CompanyAPI from "./company.mjs";
4
4
  import { Company } from "./company.mjs";
5
5
  import * as DirectoryAPI from "./directory.mjs";
@@ -0,0 +1,2 @@
1
+ export * from "./sandbox/index.mjs";
2
+ //# sourceMappingURL=sandbox.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sandbox.d.mts","sourceRoot":"","sources":["../src/resources/sandbox.ts"],"names":[],"mappings":""}
@@ -1 +1 @@
1
- {"version":3,"file":"sandbox.d.ts","sourceRoot":"","sources":["../src/resources/sandbox.ts"],"names":[],"mappings":"AAEA,cAAc,iBAAiB,CAAC"}
1
+ {"version":3,"file":"sandbox.d.ts","sourceRoot":"","sources":["../src/resources/sandbox.ts"],"names":[],"mappings":""}
@@ -1,19 +1,6 @@
1
1
  "use strict";
2
2
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
- if (k2 === undefined) k2 = k;
5
- var desc = Object.getOwnPropertyDescriptor(m, k);
6
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
- desc = { enumerable: true, get: function() { return m[k]; } };
8
- }
9
- Object.defineProperty(o, k2, desc);
10
- }) : (function(o, m, k, k2) {
11
- if (k2 === undefined) k2 = k;
12
- o[k2] = m[k];
13
- }));
14
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
16
- };
17
3
  Object.defineProperty(exports, "__esModule", { value: true });
18
- __exportStar(require("./sandbox/index.js"), exports);
4
+ const tslib_1 = require("../internal/tslib.js");
5
+ tslib_1.__exportStar(require("./sandbox/index.js"), exports);
19
6
  //# sourceMappingURL=sandbox.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"sandbox.js","sourceRoot":"","sources":["../src/resources/sandbox.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;;;;;;;;;;;;;AAEtF,qDAAgC"}
1
+ {"version":3,"file":"sandbox.js","sourceRoot":"","sources":["../src/resources/sandbox.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,6DAAgC"}
@@ -0,0 +1,64 @@
1
+ export type ConnectionStatusType = 'pending' | 'processing' | 'connected' | 'error_no_account_setup' | 'error_permissions' | 'reauth';
2
+ /**
3
+ * - `supported`: This operation is supported by both the provider and Finch
4
+ * - `not_supported_by_finch`: This operation is not supported by Finch but
5
+ * supported by the provider
6
+ * - `not_supported_by_provider`: This operation is not supported by the provider,
7
+ * so Finch cannot support
8
+ * - `client_access_only`: This behavior is supported by the provider, but only
9
+ * available to the client and not to Finch
10
+ */
11
+ export type OperationSupport = 'supported' | 'not_supported_by_finch' | 'not_supported_by_provider' | 'client_access_only';
12
+ export interface OperationSupportMatrix {
13
+ /**
14
+ * - `supported`: This operation is supported by both the provider and Finch
15
+ * - `not_supported_by_finch`: This operation is not supported by Finch but
16
+ * supported by the provider
17
+ * - `not_supported_by_provider`: This operation is not supported by the provider,
18
+ * so Finch cannot support
19
+ * - `client_access_only`: This behavior is supported by the provider, but only
20
+ * available to the client and not to Finch
21
+ */
22
+ create?: OperationSupport;
23
+ /**
24
+ * - `supported`: This operation is supported by both the provider and Finch
25
+ * - `not_supported_by_finch`: This operation is not supported by Finch but
26
+ * supported by the provider
27
+ * - `not_supported_by_provider`: This operation is not supported by the provider,
28
+ * so Finch cannot support
29
+ * - `client_access_only`: This behavior is supported by the provider, but only
30
+ * available to the client and not to Finch
31
+ */
32
+ delete?: OperationSupport;
33
+ /**
34
+ * - `supported`: This operation is supported by both the provider and Finch
35
+ * - `not_supported_by_finch`: This operation is not supported by Finch but
36
+ * supported by the provider
37
+ * - `not_supported_by_provider`: This operation is not supported by the provider,
38
+ * so Finch cannot support
39
+ * - `client_access_only`: This behavior is supported by the provider, but only
40
+ * available to the client and not to Finch
41
+ */
42
+ read?: OperationSupport;
43
+ /**
44
+ * - `supported`: This operation is supported by both the provider and Finch
45
+ * - `not_supported_by_finch`: This operation is not supported by Finch but
46
+ * supported by the provider
47
+ * - `not_supported_by_provider`: This operation is not supported by the provider,
48
+ * so Finch cannot support
49
+ * - `client_access_only`: This behavior is supported by the provider, but only
50
+ * available to the client and not to Finch
51
+ */
52
+ update?: OperationSupport;
53
+ }
54
+ export interface Paging {
55
+ /**
56
+ * The current start index of the returned list of elements
57
+ */
58
+ offset: number;
59
+ /**
60
+ * The total number of elements for the entire query (not just the given page)
61
+ */
62
+ count?: number;
63
+ }
64
+ //# sourceMappingURL=shared.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"shared.d.mts","sourceRoot":"","sources":["../src/resources/shared.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,oBAAoB,GAC5B,SAAS,GACT,YAAY,GACZ,WAAW,GACX,wBAAwB,GACxB,mBAAmB,GACnB,QAAQ,CAAC;AAEb;;;;;;;;GAQG;AACH,MAAM,MAAM,gBAAgB,GACxB,WAAW,GACX,wBAAwB,GACxB,2BAA2B,GAC3B,oBAAoB,CAAC;AAEzB,MAAM,WAAW,sBAAsB;IACrC;;;;;;;;OAQG;IACH,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAE1B;;;;;;;;OAQG;IACH,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAE1B;;;;;;;;OAQG;IACH,IAAI,CAAC,EAAE,gBAAgB,CAAC;IAExB;;;;;;;;OAQG;IACH,MAAM,CAAC,EAAE,gBAAgB,CAAC;CAC3B;AAED,MAAM,WAAW,MAAM;IACrB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=top-level.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"top-level.d.mts","sourceRoot":"","sources":["../src/resources/top-level.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC"}