@rippling/rippling-sdk 0.2.0-alpha.82 → 0.2.0-alpha.83

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 (351) hide show
  1. package/client.d.mts +4 -4
  2. package/client.d.mts.map +1 -1
  3. package/client.d.ts +4 -4
  4. package/client.d.ts.map +1 -1
  5. package/client.js.map +1 -1
  6. package/client.mjs.map +1 -1
  7. package/core/platform/custom-objects/category.d.mts +125 -0
  8. package/core/platform/custom-objects/category.d.mts.map +1 -0
  9. package/core/platform/custom-objects/category.d.ts +125 -0
  10. package/core/platform/custom-objects/category.d.ts.map +1 -0
  11. package/core/platform/custom-objects/category.js +188 -0
  12. package/core/platform/custom-objects/category.js.map +1 -0
  13. package/core/platform/custom-objects/category.mjs +178 -0
  14. package/core/platform/custom-objects/category.mjs.map +1 -0
  15. package/core/platform/custom-objects/definition.d.mts +147 -0
  16. package/core/platform/custom-objects/definition.d.mts.map +1 -0
  17. package/core/platform/custom-objects/definition.d.ts +147 -0
  18. package/core/platform/custom-objects/definition.d.ts.map +1 -0
  19. package/core/platform/custom-objects/definition.js +200 -0
  20. package/core/platform/custom-objects/definition.js.map +1 -0
  21. package/core/platform/custom-objects/definition.mjs +190 -0
  22. package/core/platform/custom-objects/definition.mjs.map +1 -0
  23. package/core/platform/custom-objects/fields.d.mts +302 -0
  24. package/core/platform/custom-objects/fields.d.mts.map +1 -0
  25. package/core/platform/custom-objects/fields.d.ts +302 -0
  26. package/core/platform/custom-objects/fields.d.ts.map +1 -0
  27. package/core/platform/custom-objects/fields.js +369 -0
  28. package/core/platform/custom-objects/fields.js.map +1 -0
  29. package/core/platform/custom-objects/fields.mjs +347 -0
  30. package/core/platform/custom-objects/fields.mjs.map +1 -0
  31. package/core/platform/custom-objects/function-runtime.d.mts +42 -0
  32. package/core/platform/custom-objects/function-runtime.d.mts.map +1 -0
  33. package/core/platform/custom-objects/function-runtime.d.ts +42 -0
  34. package/core/platform/custom-objects/function-runtime.d.ts.map +1 -0
  35. package/core/platform/custom-objects/function-runtime.js +38 -0
  36. package/core/platform/custom-objects/function-runtime.js.map +1 -0
  37. package/core/platform/custom-objects/function-runtime.mjs +35 -0
  38. package/core/platform/custom-objects/function-runtime.mjs.map +1 -0
  39. package/core/platform/custom-objects/lifecycle.d.mts +83 -0
  40. package/core/platform/custom-objects/lifecycle.d.mts.map +1 -0
  41. package/core/platform/custom-objects/lifecycle.d.ts +83 -0
  42. package/core/platform/custom-objects/lifecycle.d.ts.map +1 -0
  43. package/core/platform/custom-objects/lifecycle.js +372 -0
  44. package/core/platform/custom-objects/lifecycle.js.map +1 -0
  45. package/core/platform/custom-objects/lifecycle.mjs +367 -0
  46. package/core/platform/custom-objects/lifecycle.mjs.map +1 -0
  47. package/core/platform/custom-objects/manager.d.mts +354 -0
  48. package/core/platform/custom-objects/manager.d.mts.map +1 -0
  49. package/core/platform/custom-objects/manager.d.ts +354 -0
  50. package/core/platform/custom-objects/manager.d.ts.map +1 -0
  51. package/core/platform/custom-objects/manager.js +646 -0
  52. package/core/platform/custom-objects/manager.js.map +1 -0
  53. package/core/platform/custom-objects/manager.mjs +637 -0
  54. package/core/platform/custom-objects/manager.mjs.map +1 -0
  55. package/core/platform/custom-objects/provisioning.d.mts +138 -0
  56. package/core/platform/custom-objects/provisioning.d.mts.map +1 -0
  57. package/core/platform/custom-objects/provisioning.d.ts +138 -0
  58. package/core/platform/custom-objects/provisioning.d.ts.map +1 -0
  59. package/core/platform/custom-objects/provisioning.js +455 -0
  60. package/core/platform/custom-objects/provisioning.js.map +1 -0
  61. package/core/platform/custom-objects/provisioning.mjs +447 -0
  62. package/core/platform/custom-objects/provisioning.mjs.map +1 -0
  63. package/core/platform/custom-objects/rql.d.mts +122 -0
  64. package/core/platform/custom-objects/rql.d.mts.map +1 -0
  65. package/core/platform/custom-objects/rql.d.ts +122 -0
  66. package/core/platform/custom-objects/rql.d.ts.map +1 -0
  67. package/core/platform/custom-objects/rql.js +225 -0
  68. package/core/platform/custom-objects/rql.js.map +1 -0
  69. package/core/platform/custom-objects/rql.mjs +222 -0
  70. package/core/platform/custom-objects/rql.mjs.map +1 -0
  71. package/core/platform/custom-objects/schema-manager.d.mts +203 -0
  72. package/core/platform/custom-objects/schema-manager.d.mts.map +1 -0
  73. package/core/platform/custom-objects/schema-manager.d.ts +203 -0
  74. package/core/platform/custom-objects/schema-manager.d.ts.map +1 -0
  75. package/core/platform/custom-objects/schema-manager.js +256 -0
  76. package/core/platform/custom-objects/schema-manager.js.map +1 -0
  77. package/core/platform/custom-objects/schema-manager.mjs +249 -0
  78. package/core/platform/custom-objects/schema-manager.mjs.map +1 -0
  79. package/core/platform/custom-objects/typed-rql.d.mts +157 -0
  80. package/core/platform/custom-objects/typed-rql.d.mts.map +1 -0
  81. package/core/platform/custom-objects/typed-rql.d.ts +157 -0
  82. package/core/platform/custom-objects/typed-rql.d.ts.map +1 -0
  83. package/core/platform/custom-objects/typed-rql.js +583 -0
  84. package/core/platform/custom-objects/typed-rql.js.map +1 -0
  85. package/core/platform/custom-objects/typed-rql.mjs +580 -0
  86. package/core/platform/custom-objects/typed-rql.mjs.map +1 -0
  87. package/core/platform/custom-objects/types.d.mts +549 -0
  88. package/core/platform/custom-objects/types.d.mts.map +1 -0
  89. package/core/platform/custom-objects/types.d.ts +549 -0
  90. package/core/platform/custom-objects/types.d.ts.map +1 -0
  91. package/core/platform/custom-objects/types.js +20 -0
  92. package/core/platform/custom-objects/types.js.map +1 -0
  93. package/core/platform/custom-objects/types.mjs +17 -0
  94. package/core/platform/custom-objects/types.mjs.map +1 -0
  95. package/core/platform/custom-objects/validation.d.mts +97 -0
  96. package/core/platform/custom-objects/validation.d.mts.map +1 -0
  97. package/core/platform/custom-objects/validation.d.ts +97 -0
  98. package/core/platform/custom-objects/validation.d.ts.map +1 -0
  99. package/core/platform/custom-objects/validation.js +477 -0
  100. package/core/platform/custom-objects/validation.js.map +1 -0
  101. package/core/platform/custom-objects/validation.mjs +465 -0
  102. package/core/platform/custom-objects/validation.mjs.map +1 -0
  103. package/core/platform/custom-objects.d.mts +67 -0
  104. package/core/platform/custom-objects.d.mts.map +1 -0
  105. package/core/platform/custom-objects.d.ts +67 -0
  106. package/core/platform/custom-objects.d.ts.map +1 -0
  107. package/core/platform/custom-objects.js +118 -0
  108. package/core/platform/custom-objects.js.map +1 -0
  109. package/core/platform/custom-objects.mjs +45 -0
  110. package/core/platform/custom-objects.mjs.map +1 -0
  111. package/core/platform/manifest/custom-objects/action.d.mts +58 -0
  112. package/core/platform/manifest/custom-objects/action.d.mts.map +1 -0
  113. package/core/platform/manifest/custom-objects/action.d.ts +58 -0
  114. package/core/platform/manifest/custom-objects/action.d.ts.map +1 -0
  115. package/core/platform/manifest/custom-objects/action.js +44 -0
  116. package/core/platform/manifest/custom-objects/action.js.map +1 -0
  117. package/core/platform/manifest/custom-objects/action.mjs +40 -0
  118. package/core/platform/manifest/custom-objects/action.mjs.map +1 -0
  119. package/core/platform/manifest/custom-objects/conditions.d.mts +240 -0
  120. package/core/platform/manifest/custom-objects/conditions.d.mts.map +1 -0
  121. package/core/platform/manifest/custom-objects/conditions.d.ts +240 -0
  122. package/core/platform/manifest/custom-objects/conditions.d.ts.map +1 -0
  123. package/core/platform/manifest/custom-objects/conditions.js +326 -0
  124. package/core/platform/manifest/custom-objects/conditions.js.map +1 -0
  125. package/core/platform/manifest/custom-objects/conditions.mjs +321 -0
  126. package/core/platform/manifest/custom-objects/conditions.mjs.map +1 -0
  127. package/core/platform/manifest/custom-objects/existing.d.mts +87 -0
  128. package/core/platform/manifest/custom-objects/existing.d.mts.map +1 -0
  129. package/core/platform/manifest/custom-objects/existing.d.ts +87 -0
  130. package/core/platform/manifest/custom-objects/existing.d.ts.map +1 -0
  131. package/core/platform/manifest/custom-objects/existing.js +113 -0
  132. package/core/platform/manifest/custom-objects/existing.js.map +1 -0
  133. package/core/platform/manifest/custom-objects/existing.mjs +109 -0
  134. package/core/platform/manifest/custom-objects/existing.mjs.map +1 -0
  135. package/core/platform/manifest/custom-objects/field-resolution.d.mts +48 -0
  136. package/core/platform/manifest/custom-objects/field-resolution.d.mts.map +1 -0
  137. package/core/platform/manifest/custom-objects/field-resolution.d.ts +48 -0
  138. package/core/platform/manifest/custom-objects/field-resolution.d.ts.map +1 -0
  139. package/core/platform/manifest/custom-objects/field-resolution.js +61 -0
  140. package/core/platform/manifest/custom-objects/field-resolution.js.map +1 -0
  141. package/core/platform/manifest/custom-objects/field-resolution.mjs +58 -0
  142. package/core/platform/manifest/custom-objects/field-resolution.mjs.map +1 -0
  143. package/core/platform/manifest/custom-objects/function-file.d.mts +87 -0
  144. package/core/platform/manifest/custom-objects/function-file.d.mts.map +1 -0
  145. package/core/platform/manifest/custom-objects/function-file.d.ts +87 -0
  146. package/core/platform/manifest/custom-objects/function-file.d.ts.map +1 -0
  147. package/core/platform/manifest/custom-objects/function-file.js +76 -0
  148. package/core/platform/manifest/custom-objects/function-file.js.map +1 -0
  149. package/core/platform/manifest/custom-objects/function-file.mjs +69 -0
  150. package/core/platform/manifest/custom-objects/function-file.mjs.map +1 -0
  151. package/core/platform/manifest/custom-objects/list-view.d.mts +65 -0
  152. package/core/platform/manifest/custom-objects/list-view.d.mts.map +1 -0
  153. package/core/platform/manifest/custom-objects/list-view.d.ts +65 -0
  154. package/core/platform/manifest/custom-objects/list-view.d.ts.map +1 -0
  155. package/core/platform/manifest/custom-objects/list-view.js +33 -0
  156. package/core/platform/manifest/custom-objects/list-view.js.map +1 -0
  157. package/core/platform/manifest/custom-objects/list-view.mjs +30 -0
  158. package/core/platform/manifest/custom-objects/list-view.mjs.map +1 -0
  159. package/core/platform/manifest/custom-objects/object-list-page.d.mts +43 -0
  160. package/core/platform/manifest/custom-objects/object-list-page.d.mts.map +1 -0
  161. package/core/platform/manifest/custom-objects/object-list-page.d.ts +43 -0
  162. package/core/platform/manifest/custom-objects/object-list-page.d.ts.map +1 -0
  163. package/core/platform/manifest/custom-objects/object-list-page.js +54 -0
  164. package/core/platform/manifest/custom-objects/object-list-page.js.map +1 -0
  165. package/core/platform/manifest/custom-objects/object-list-page.mjs +50 -0
  166. package/core/platform/manifest/custom-objects/object-list-page.mjs.map +1 -0
  167. package/core/platform/manifest/custom-objects/page-layout.d.mts +142 -0
  168. package/core/platform/manifest/custom-objects/page-layout.d.mts.map +1 -0
  169. package/core/platform/manifest/custom-objects/page-layout.d.ts +142 -0
  170. package/core/platform/manifest/custom-objects/page-layout.d.ts.map +1 -0
  171. package/core/platform/manifest/custom-objects/page-layout.js +184 -0
  172. package/core/platform/manifest/custom-objects/page-layout.js.map +1 -0
  173. package/core/platform/manifest/custom-objects/page-layout.mjs +180 -0
  174. package/core/platform/manifest/custom-objects/page-layout.mjs.map +1 -0
  175. package/core/platform/manifest/custom-objects/register.d.mts +87 -0
  176. package/core/platform/manifest/custom-objects/register.d.mts.map +1 -0
  177. package/core/platform/manifest/custom-objects/register.d.ts +87 -0
  178. package/core/platform/manifest/custom-objects/register.d.ts.map +1 -0
  179. package/core/platform/manifest/custom-objects/register.js +395 -0
  180. package/core/platform/manifest/custom-objects/register.js.map +1 -0
  181. package/core/platform/manifest/custom-objects/register.mjs +391 -0
  182. package/core/platform/manifest/custom-objects/register.mjs.map +1 -0
  183. package/core/platform/manifest/custom-objects/rule.d.mts +113 -0
  184. package/core/platform/manifest/custom-objects/rule.d.mts.map +1 -0
  185. package/core/platform/manifest/custom-objects/rule.d.ts +113 -0
  186. package/core/platform/manifest/custom-objects/rule.d.ts.map +1 -0
  187. package/core/platform/manifest/custom-objects/rule.js +49 -0
  188. package/core/platform/manifest/custom-objects/rule.js.map +1 -0
  189. package/core/platform/manifest/custom-objects/rule.mjs +45 -0
  190. package/core/platform/manifest/custom-objects/rule.mjs.map +1 -0
  191. package/core/platform/manifest/custom-objects/sdui-page.d.mts +214 -0
  192. package/core/platform/manifest/custom-objects/sdui-page.d.mts.map +1 -0
  193. package/core/platform/manifest/custom-objects/sdui-page.d.ts +214 -0
  194. package/core/platform/manifest/custom-objects/sdui-page.d.ts.map +1 -0
  195. package/core/platform/manifest/custom-objects/sdui-page.js +194 -0
  196. package/core/platform/manifest/custom-objects/sdui-page.js.map +1 -0
  197. package/core/platform/manifest/custom-objects/sdui-page.mjs +182 -0
  198. package/core/platform/manifest/custom-objects/sdui-page.mjs.map +1 -0
  199. package/core/platform/manifest/custom-objects/typed-condition.d.mts +28 -0
  200. package/core/platform/manifest/custom-objects/typed-condition.d.mts.map +1 -0
  201. package/core/platform/manifest/custom-objects/typed-condition.d.ts +28 -0
  202. package/core/platform/manifest/custom-objects/typed-condition.d.ts.map +1 -0
  203. package/core/platform/manifest/custom-objects/typed-condition.js +434 -0
  204. package/core/platform/manifest/custom-objects/typed-condition.js.map +1 -0
  205. package/core/platform/manifest/custom-objects/typed-condition.mjs +431 -0
  206. package/core/platform/manifest/custom-objects/typed-condition.mjs.map +1 -0
  207. package/core/platform/manifest/custom-objects/types.d.mts +29 -0
  208. package/core/platform/manifest/custom-objects/types.d.mts.map +1 -0
  209. package/core/platform/manifest/custom-objects/types.d.ts +29 -0
  210. package/core/platform/manifest/custom-objects/types.d.ts.map +1 -0
  211. package/core/platform/manifest/custom-objects/types.js +3 -0
  212. package/core/platform/manifest/custom-objects/types.js.map +1 -0
  213. package/core/platform/manifest/custom-objects/types.mjs +2 -0
  214. package/core/platform/manifest/custom-objects/types.mjs.map +1 -0
  215. package/core/platform/manifest/custom-objects/validation.d.mts +44 -0
  216. package/core/platform/manifest/custom-objects/validation.d.mts.map +1 -0
  217. package/core/platform/manifest/custom-objects/validation.d.ts +44 -0
  218. package/core/platform/manifest/custom-objects/validation.d.ts.map +1 -0
  219. package/core/platform/manifest/custom-objects/validation.js +30 -0
  220. package/core/platform/manifest/custom-objects/validation.js.map +1 -0
  221. package/core/platform/manifest/custom-objects/validation.mjs +27 -0
  222. package/core/platform/manifest/custom-objects/validation.mjs.map +1 -0
  223. package/core/platform/manifest/custom-objects/workflow.d.mts +47 -0
  224. package/core/platform/manifest/custom-objects/workflow.d.mts.map +1 -0
  225. package/core/platform/manifest/custom-objects/workflow.d.ts +47 -0
  226. package/core/platform/manifest/custom-objects/workflow.d.ts.map +1 -0
  227. package/core/platform/manifest/custom-objects/workflow.js +38 -0
  228. package/core/platform/manifest/custom-objects/workflow.js.map +1 -0
  229. package/core/platform/manifest/custom-objects/workflow.mjs +34 -0
  230. package/core/platform/manifest/custom-objects/workflow.mjs.map +1 -0
  231. package/core/platform/manifest/custom-objects.d.mts +85 -0
  232. package/core/platform/manifest/custom-objects.d.mts.map +1 -0
  233. package/core/platform/manifest/custom-objects.d.ts +85 -0
  234. package/core/platform/manifest/custom-objects.d.ts.map +1 -0
  235. package/core/platform/manifest/custom-objects.js +84 -0
  236. package/core/platform/manifest/custom-objects.js.map +1 -0
  237. package/core/platform/manifest/custom-objects.mjs +55 -0
  238. package/core/platform/manifest/custom-objects.mjs.map +1 -0
  239. package/examples/manifest/custom-object-creation-workflow/custom-object-creation-workflow.ts +26 -44
  240. package/examples/manifest/custom-object-creation-workflow/functions/intake-request-created.ts +20 -0
  241. package/examples/manifest/custom-object-creation-workflow/schema.ts +29 -0
  242. package/examples/manifest/dental-practice-management/dental-practice-management.ts +142 -470
  243. package/examples/manifest/dental-practice-management/functions/chair-schedule.ts +13 -23
  244. package/examples/manifest/dental-practice-management/functions/complete-visit.ts +32 -55
  245. package/examples/manifest/dental-practice-management/functions/operatory-list.ts +13 -23
  246. package/examples/manifest/dental-practice-management/functions/patient-list.ts +13 -23
  247. package/examples/manifest/dental-practice-management/functions/treatment-plan-list.ts +13 -23
  248. package/examples/manifest/dental-practice-management/schema.ts +298 -0
  249. package/examples/manifest/existing-manifest-mutations/existing-manifest-mutations.ts +68 -23
  250. package/examples/manifest/field-service-dispatch/field-service-dispatch.ts +102 -375
  251. package/examples/manifest/field-service-dispatch/schema.ts +248 -0
  252. package/examples/manifest/grant-program-management/grant-program-management.ts +125 -419
  253. package/examples/manifest/grant-program-management/schema.ts +269 -0
  254. package/examples/manifest/gym-membership-management/functions/check-in-desk.ts +13 -23
  255. package/examples/manifest/gym-membership-management/functions/member-list.ts +13 -23
  256. package/examples/manifest/gym-membership-management/functions/today-schedule.ts +13 -23
  257. package/examples/manifest/gym-membership-management/functions/trainer-list.ts +13 -23
  258. package/examples/manifest/gym-membership-management/gym-membership-management.ts +92 -442
  259. package/examples/manifest/gym-membership-management/schema.ts +266 -0
  260. package/examples/manifest/procurement-approval-hub/functions/route-purchase-request.ts +20 -0
  261. package/examples/manifest/procurement-approval-hub/procurement-approval-hub.ts +122 -408
  262. package/examples/manifest/procurement-approval-hub/schema.ts +256 -0
  263. package/examples/manifest/simple-todo-app/functions/mark-done.ts +16 -12
  264. package/examples/manifest/simple-todo-app/functions/todo-list.ts +13 -23
  265. package/examples/manifest/simple-todo-app/schema.ts +60 -0
  266. package/examples/manifest/simple-todo-app/simple-todo-app.ts +40 -109
  267. package/examples/manifest/todo-app-without-object-list-view/functions/todo-page.ts +166 -193
  268. package/examples/manifest/todo-app-without-object-list-view/schema.ts +28 -0
  269. package/examples/manifest/todo-app-without-object-list-view/todo-app-without-object-list-view.ts +24 -47
  270. package/package.json +7 -13
  271. package/resources/custom-objects/custom-objects.d.mts +7 -0
  272. package/resources/custom-objects/custom-objects.d.mts.map +1 -1
  273. package/resources/custom-objects/custom-objects.d.ts +7 -0
  274. package/resources/custom-objects/custom-objects.d.ts.map +1 -1
  275. package/resources/custom-objects/custom-objects.js.map +1 -1
  276. package/resources/custom-objects/custom-objects.mjs.map +1 -1
  277. package/resources/custom-objects/fields.d.mts +170 -15
  278. package/resources/custom-objects/fields.d.mts.map +1 -1
  279. package/resources/custom-objects/fields.d.ts +170 -15
  280. package/resources/custom-objects/fields.d.ts.map +1 -1
  281. package/resources/index.d.mts +2 -2
  282. package/resources/index.d.mts.map +1 -1
  283. package/resources/index.d.ts +2 -2
  284. package/resources/index.d.ts.map +1 -1
  285. package/resources/index.js.map +1 -1
  286. package/resources/index.mjs.map +1 -1
  287. package/resources/leave-program-evaluations.d.mts +510 -3
  288. package/resources/leave-program-evaluations.d.mts.map +1 -1
  289. package/resources/leave-program-evaluations.d.ts +510 -3
  290. package/resources/leave-program-evaluations.d.ts.map +1 -1
  291. package/resources/levels.d.mts +64 -2
  292. package/resources/levels.d.mts.map +1 -1
  293. package/resources/levels.d.ts +64 -2
  294. package/resources/levels.d.ts.map +1 -1
  295. package/resources/levels.js +22 -0
  296. package/resources/levels.js.map +1 -1
  297. package/resources/levels.mjs +22 -0
  298. package/resources/levels.mjs.map +1 -1
  299. package/resources/tracks.d.mts +45 -1
  300. package/resources/tracks.d.mts.map +1 -1
  301. package/resources/tracks.d.ts +45 -1
  302. package/resources/tracks.d.ts.map +1 -1
  303. package/resources/tracks.js +22 -0
  304. package/resources/tracks.js.map +1 -1
  305. package/resources/tracks.mjs +22 -0
  306. package/resources/tracks.mjs.map +1 -1
  307. package/src/client.ts +8 -0
  308. package/src/core/platform/README.md +20 -0
  309. package/src/core/platform/custom-objects/category.ts +294 -0
  310. package/src/core/platform/custom-objects/definition.ts +373 -0
  311. package/src/core/platform/custom-objects/fields.ts +653 -0
  312. package/src/core/platform/custom-objects/function-runtime.ts +76 -0
  313. package/src/core/platform/custom-objects/lifecycle.ts +557 -0
  314. package/src/core/platform/custom-objects/manager.ts +959 -0
  315. package/src/core/platform/custom-objects/provisioning.ts +672 -0
  316. package/src/core/platform/custom-objects/rql.ts +375 -0
  317. package/src/core/platform/custom-objects/schema-manager.ts +351 -0
  318. package/src/core/platform/custom-objects/typed-rql.ts +1273 -0
  319. package/src/core/platform/custom-objects/types.ts +753 -0
  320. package/src/core/platform/custom-objects/validation.ts +573 -0
  321. package/src/core/platform/custom-objects.ts +269 -0
  322. package/src/core/platform/manifest/README.md +26 -0
  323. package/src/core/platform/manifest/custom-objects/action.ts +87 -0
  324. package/src/core/platform/manifest/custom-objects/conditions.ts +762 -0
  325. package/src/core/platform/manifest/custom-objects/existing.ts +221 -0
  326. package/src/core/platform/manifest/custom-objects/field-resolution.ts +116 -0
  327. package/src/core/platform/manifest/custom-objects/function-file.ts +149 -0
  328. package/src/core/platform/manifest/custom-objects/list-view.ts +95 -0
  329. package/src/core/platform/manifest/custom-objects/object-list-page.ts +87 -0
  330. package/src/core/platform/manifest/custom-objects/page-layout.ts +380 -0
  331. package/src/core/platform/manifest/custom-objects/register.ts +555 -0
  332. package/src/core/platform/manifest/custom-objects/rule.ts +192 -0
  333. package/src/core/platform/manifest/custom-objects/sdui-page.ts +515 -0
  334. package/src/core/platform/manifest/custom-objects/typed-condition.ts +617 -0
  335. package/src/core/platform/manifest/custom-objects/types.ts +92 -0
  336. package/src/core/platform/manifest/custom-objects/validation.ts +70 -0
  337. package/src/core/platform/manifest/custom-objects/workflow.ts +71 -0
  338. package/src/core/platform/manifest/custom-objects.ts +203 -0
  339. package/src/pebble-sdui-web-custom-apps-shim.d.ts +3 -0
  340. package/src/resources/custom-objects/custom-objects.ts +8 -0
  341. package/src/resources/custom-objects/fields.ts +239 -14
  342. package/src/resources/index.ts +4 -0
  343. package/src/resources/leave-program-evaluations.ts +610 -3
  344. package/src/resources/levels.ts +93 -1
  345. package/src/resources/tracks.ts +70 -0
  346. package/src/tsconfig.json +1 -1
  347. package/src/version.ts +1 -1
  348. package/version.d.mts +1 -1
  349. package/version.d.ts +1 -1
  350. package/version.js +1 -1
  351. package/version.mjs +1 -1
@@ -12,9 +12,11 @@ export declare class LeaveProgramEvaluations extends APIResource {
12
12
  }
13
13
  export interface LeaveProgramEvaluationCreateResponse {
14
14
  /**
15
- * Combined leave plan derived from all non-ineligible program results.
15
+ * Combined leave plan derived from all non-ineligible program results. Join
16
+ * program_results by program_code for eligibility, pay rates, and gaps;
17
+ * program_contributions carry placement windows only.
16
18
  */
17
- leave_plan: unknown;
19
+ leave_plan: LeaveProgramEvaluationCreateResponse.LeavePlan;
18
20
  /**
19
21
  * Structured evidence gaps reported by evaluated eligibility rules.
20
22
  */
@@ -22,9 +24,261 @@ export interface LeaveProgramEvaluationCreateResponse {
22
24
  /**
23
25
  * Per-program rule outputs in evaluation order.
24
26
  */
25
- program_results: Array<unknown>;
27
+ program_results: Array<LeaveProgramEvaluationCreateResponse.ProgramResult>;
26
28
  }
27
29
  export declare namespace LeaveProgramEvaluationCreateResponse {
30
+ /**
31
+ * Combined leave plan derived from all non-ineligible program results. Join
32
+ * program_results by program_code for eligibility, pay rates, and gaps;
33
+ * program_contributions carry placement windows only.
34
+ */
35
+ interface LeavePlan {
36
+ /**
37
+ * Flattened balance adjustment directives from payable program results.
38
+ */
39
+ balance_adjustments: Array<LeavePlan.BalanceAdjustment>;
40
+ /**
41
+ * Requested leave start date used for this plan.
42
+ */
43
+ claim_start_date: string;
44
+ /**
45
+ * Contiguous spans where the same program set overlaps.
46
+ */
47
+ coverage_segments: Array<LeavePlan.CoverageSegment>;
48
+ /**
49
+ * Flattened payroll earning directives from payable program results.
50
+ */
51
+ earnings: Array<LeavePlan.Earning>;
52
+ /**
53
+ * Estimated per-paycheck amounts when claim_end_date and pay schedule are known.
54
+ */
55
+ pay_periods: Array<LeavePlan.PayPeriod>;
56
+ /**
57
+ * Per-program placement windows on the claim.
58
+ */
59
+ program_contributions: Array<LeavePlan.ProgramContribution>;
60
+ /**
61
+ * Requested leave end date used for this plan, if provided.
62
+ */
63
+ claim_end_date?: string;
64
+ /**
65
+ * Merged bookable leave request directive, if any.
66
+ */
67
+ leave_request?: LeavePlan.LeaveRequest;
68
+ }
69
+ namespace LeavePlan {
70
+ interface BalanceAdjustment {
71
+ /**
72
+ * Adjustment amount serialized as a decimal string.
73
+ */
74
+ amount: string;
75
+ /**
76
+ * Leave type to adjust if applying the evaluation.
77
+ */
78
+ leave_type: string;
79
+ /**
80
+ * Unit for the adjustment amount, such as WEEKS, DAYS, or HOURS.
81
+ */
82
+ unit: string;
83
+ /**
84
+ * Accrual type to use when applying the adjustment.
85
+ */
86
+ accrual_type?: string;
87
+ }
88
+ interface CoverageSegment {
89
+ /**
90
+ * Programs active over this segment.
91
+ */
92
+ program_codes: Array<string>;
93
+ /**
94
+ * Segment start date.
95
+ */
96
+ start_date: string;
97
+ /**
98
+ * Segment end date, if known.
99
+ */
100
+ end_date?: string;
101
+ }
102
+ interface Earning {
103
+ /**
104
+ * Earning amount serialized as a decimal string.
105
+ */
106
+ amount: string;
107
+ /**
108
+ * Earning type to use if booking a payroll earning from the evaluation.
109
+ */
110
+ earning_type: string;
111
+ /**
112
+ * ISO 4217 currency code for the earning amount.
113
+ */
114
+ currency?: string;
115
+ /**
116
+ * Number of benefit weeks represented by this earning, serialized as a decimal
117
+ * string.
118
+ */
119
+ weeks?: string;
120
+ }
121
+ interface PayPeriod {
122
+ /**
123
+ * Estimated program-level pay slices in this pay period.
124
+ */
125
+ contributions: Array<PayPeriod.Contribution>;
126
+ /**
127
+ * Estimated pay period end date.
128
+ */
129
+ period_end: string;
130
+ /**
131
+ * Estimated pay period start date.
132
+ */
133
+ period_start: string;
134
+ /**
135
+ * Total estimated carrier-paid amount in this pay period.
136
+ */
137
+ carrier_total?: PayPeriod.CarrierTotal;
138
+ /**
139
+ * Total estimated employer-paid amount in this pay period.
140
+ */
141
+ employer_total?: PayPeriod.EmployerTotal;
142
+ /**
143
+ * Total estimated government-paid amount in this pay period.
144
+ */
145
+ government_total?: PayPeriod.GovernmentTotal;
146
+ /**
147
+ * Total estimated amount in this pay period.
148
+ */
149
+ total?: PayPeriod.Total;
150
+ }
151
+ namespace PayPeriod {
152
+ interface Contribution {
153
+ /**
154
+ * Estimated amount for this program slice.
155
+ */
156
+ amount: Contribution.Amount;
157
+ /**
158
+ * Who pays the employee for this program slice.
159
+ */
160
+ pay_source: 'GOVERNMENT' | 'CARRIER' | 'EMPLOYER';
161
+ /**
162
+ * Program contributing pay in this pay period.
163
+ */
164
+ program_code: string;
165
+ }
166
+ namespace Contribution {
167
+ /**
168
+ * Estimated amount for this program slice.
169
+ */
170
+ interface Amount {
171
+ /**
172
+ * Decimal monetary amount serialized as a string.
173
+ */
174
+ amount: string;
175
+ /**
176
+ * ISO 4217 currency code for the amount.
177
+ */
178
+ currency: string;
179
+ }
180
+ }
181
+ /**
182
+ * Total estimated carrier-paid amount in this pay period.
183
+ */
184
+ interface CarrierTotal {
185
+ /**
186
+ * Decimal monetary amount serialized as a string.
187
+ */
188
+ amount: string;
189
+ /**
190
+ * ISO 4217 currency code for the amount.
191
+ */
192
+ currency: string;
193
+ }
194
+ /**
195
+ * Total estimated employer-paid amount in this pay period.
196
+ */
197
+ interface EmployerTotal {
198
+ /**
199
+ * Decimal monetary amount serialized as a string.
200
+ */
201
+ amount: string;
202
+ /**
203
+ * ISO 4217 currency code for the amount.
204
+ */
205
+ currency: string;
206
+ }
207
+ /**
208
+ * Total estimated government-paid amount in this pay period.
209
+ */
210
+ interface GovernmentTotal {
211
+ /**
212
+ * Decimal monetary amount serialized as a string.
213
+ */
214
+ amount: string;
215
+ /**
216
+ * ISO 4217 currency code for the amount.
217
+ */
218
+ currency: string;
219
+ }
220
+ /**
221
+ * Total estimated amount in this pay period.
222
+ */
223
+ interface Total {
224
+ /**
225
+ * Decimal monetary amount serialized as a string.
226
+ */
227
+ amount: string;
228
+ /**
229
+ * ISO 4217 currency code for the amount.
230
+ */
231
+ currency: string;
232
+ }
233
+ }
234
+ interface ProgramContribution {
235
+ /**
236
+ * Whether this program has an estimated pay rate.
237
+ */
238
+ pay_status: 'NOT_APPLICABLE' | 'ESTIMATED';
239
+ /**
240
+ * Leave program code active on this claim window.
241
+ */
242
+ program_code: string;
243
+ /**
244
+ * Program placement start date.
245
+ */
246
+ start_date: string;
247
+ /**
248
+ * Program placement end date, if known.
249
+ */
250
+ end_date?: string;
251
+ /**
252
+ * Leave type associated with this program placement.
253
+ */
254
+ leave_type?: string;
255
+ /**
256
+ * Human-readable leave type label.
257
+ */
258
+ leave_type_label?: string;
259
+ }
260
+ /**
261
+ * Merged bookable leave request directive, if any.
262
+ */
263
+ interface LeaveRequest {
264
+ /**
265
+ * Leave type to use if booking a leave request from the evaluation.
266
+ */
267
+ leave_type: string;
268
+ /**
269
+ * Recommended leave request start date.
270
+ */
271
+ start_date: string;
272
+ /**
273
+ * Recommended leave request end date, if known.
274
+ */
275
+ end_date?: string;
276
+ /**
277
+ * Optional leave request status to use when booking.
278
+ */
279
+ status?: string;
280
+ }
281
+ }
28
282
  interface MissingEvidence {
29
283
  /**
30
284
  * Expected answer type for this evidence key.
@@ -43,6 +297,252 @@ export declare namespace LeaveProgramEvaluationCreateResponse {
43
297
  */
44
298
  program_codes: Array<string>;
45
299
  }
300
+ interface ProgramResult {
301
+ /**
302
+ * Derived eligibility status for this program.
303
+ */
304
+ eligibility: 'eligible' | 'ineligible' | 'partially_eligible';
305
+ /**
306
+ * UNKNOWN evidence keys to fix before eligibility can be fully resolved.
307
+ */
308
+ gaps: Array<string>;
309
+ /**
310
+ * Whether the result is eligible and not blocked by payment-blocking requirements.
311
+ */
312
+ is_payable: boolean;
313
+ /**
314
+ * Leave program code evaluated by the rules engine.
315
+ */
316
+ program_code: string;
317
+ /**
318
+ * Eligibility and assumption validations run for this program.
319
+ */
320
+ program_validations: Array<ProgramResult.ProgramValidation>;
321
+ /**
322
+ * Legacy explanatory components for this program.
323
+ */
324
+ components?: Array<ProgramResult.Component>;
325
+ /**
326
+ * Bookable directives emitted by this program.
327
+ */
328
+ directives?: ProgramResult.Directives;
329
+ /**
330
+ * Time entitlement for this program, if any.
331
+ */
332
+ entitlement?: ProgramResult.Entitlement;
333
+ /**
334
+ * Job-protection details for this program, if any.
335
+ */
336
+ job_protection?: ProgramResult.JobProtection;
337
+ /**
338
+ * Estimated wage-replacement rate for this program, if any.
339
+ */
340
+ pay_rate?: ProgramResult.PayRate;
341
+ /**
342
+ * Who pays the employee for this program's wage-replacement slice.
343
+ */
344
+ pay_source?: 'GOVERNMENT' | 'CARRIER' | 'EMPLOYER';
345
+ /**
346
+ * Human-readable pay summary for this program.
347
+ */
348
+ pay_summary?: string;
349
+ /**
350
+ * Outstanding artifacts or actions for this program.
351
+ */
352
+ program_requirements?: Array<ProgramResult.ProgramRequirement>;
353
+ }
354
+ namespace ProgramResult {
355
+ interface ProgramValidation {
356
+ /**
357
+ * Human-readable validation message.
358
+ */
359
+ message: string;
360
+ /**
361
+ * Validation outcome.
362
+ */
363
+ outcome: 'PASSED' | 'FAILED' | 'UNKNOWN' | 'ASSUMED';
364
+ /**
365
+ * Machine-readable validation function that produced this outcome.
366
+ */
367
+ validation_func: string;
368
+ /**
369
+ * Evidence key or field path inspected by the validation.
370
+ */
371
+ data_source?: string;
372
+ /**
373
+ * Observed value at evaluation time, if available.
374
+ */
375
+ value?: string;
376
+ }
377
+ interface Component {
378
+ /**
379
+ * Category of explanatory result component.
380
+ */
381
+ kind: 'ELIGIBILITY' | 'PAY' | 'TIME' | 'OTHER';
382
+ /**
383
+ * Human-readable summary for this component.
384
+ */
385
+ summary: string;
386
+ /**
387
+ * Additional component-specific data.
388
+ */
389
+ data?: unknown;
390
+ /**
391
+ * Optional machine-readable subtype for the component.
392
+ */
393
+ subkind?: string;
394
+ }
395
+ /**
396
+ * Bookable directives emitted by this program.
397
+ */
398
+ interface Directives {
399
+ /**
400
+ * Balance adjustment directives emitted by payable program results.
401
+ */
402
+ balance_adjustments?: Array<Directives.BalanceAdjustment>;
403
+ /**
404
+ * Payroll earning directives emitted by payable program results.
405
+ */
406
+ earnings?: Array<Directives.Earning>;
407
+ /**
408
+ * Leave request directive emitted by payable program results.
409
+ */
410
+ leave_request?: Directives.LeaveRequest;
411
+ }
412
+ namespace Directives {
413
+ interface BalanceAdjustment {
414
+ /**
415
+ * Adjustment amount serialized as a decimal string.
416
+ */
417
+ amount: string;
418
+ /**
419
+ * Leave type to adjust if applying the evaluation.
420
+ */
421
+ leave_type: string;
422
+ /**
423
+ * Unit for the adjustment amount, such as WEEKS, DAYS, or HOURS.
424
+ */
425
+ unit: string;
426
+ /**
427
+ * Accrual type to use when applying the adjustment.
428
+ */
429
+ accrual_type?: string;
430
+ }
431
+ interface Earning {
432
+ /**
433
+ * Earning amount serialized as a decimal string.
434
+ */
435
+ amount: string;
436
+ /**
437
+ * Earning type to use if booking a payroll earning from the evaluation.
438
+ */
439
+ earning_type: string;
440
+ /**
441
+ * ISO 4217 currency code for the earning amount.
442
+ */
443
+ currency?: string;
444
+ /**
445
+ * Number of benefit weeks represented by this earning, serialized as a decimal
446
+ * string.
447
+ */
448
+ weeks?: string;
449
+ }
450
+ /**
451
+ * Leave request directive emitted by payable program results.
452
+ */
453
+ interface LeaveRequest {
454
+ /**
455
+ * Leave type to use if booking a leave request from the evaluation.
456
+ */
457
+ leave_type: string;
458
+ /**
459
+ * Recommended leave request start date.
460
+ */
461
+ start_date: string;
462
+ /**
463
+ * Recommended leave request end date, if known.
464
+ */
465
+ end_date?: string;
466
+ /**
467
+ * Optional leave request status to use when booking.
468
+ */
469
+ status?: string;
470
+ }
471
+ }
472
+ /**
473
+ * Time entitlement for this program, if any.
474
+ */
475
+ interface Entitlement {
476
+ /**
477
+ * Entitlement amount serialized as a decimal string.
478
+ */
479
+ amount: string;
480
+ /**
481
+ * Leave type associated with the entitlement.
482
+ */
483
+ leave_type: string;
484
+ /**
485
+ * Unit for the entitlement amount, such as WEEKS, DAYS, or HOURS.
486
+ */
487
+ unit: string;
488
+ }
489
+ /**
490
+ * Job-protection details for this program, if any.
491
+ */
492
+ interface JobProtection {
493
+ /**
494
+ * Job-restoration right provided by the program.
495
+ */
496
+ restoration: string;
497
+ /**
498
+ * Whether the program continues group health coverage.
499
+ */
500
+ continues_group_health?: boolean;
501
+ }
502
+ /**
503
+ * Estimated wage-replacement rate for this program, if any.
504
+ */
505
+ interface PayRate {
506
+ /**
507
+ * Wage-replacement phases for the program.
508
+ */
509
+ phases: Array<PayRate.Phase>;
510
+ }
511
+ namespace PayRate {
512
+ interface Phase {
513
+ /**
514
+ * Pay amount for this phase serialized as a decimal string.
515
+ */
516
+ amount: string;
517
+ /**
518
+ * ISO 4217 currency code for this pay phase.
519
+ */
520
+ currency?: string;
521
+ /**
522
+ * Number of days this phase lasts. Null means the phase runs to the window end.
523
+ */
524
+ duration_days?: number;
525
+ /**
526
+ * Pay-rate unit for this phase, such as DAILY, WEEKLY, or BIWEEKLY.
527
+ */
528
+ unit?: string;
529
+ }
530
+ }
531
+ interface ProgramRequirement {
532
+ /**
533
+ * Machine-readable requirement key.
534
+ */
535
+ key: string;
536
+ /**
537
+ * Human-readable requirement summary.
538
+ */
539
+ summary: string;
540
+ /**
541
+ * Whether this requirement blocks payment until resolved.
542
+ */
543
+ blocks_payment?: boolean;
544
+ }
545
+ }
46
546
  }
47
547
  export interface LeaveProgramEvaluationCreateParams {
48
548
  /**
@@ -61,6 +561,11 @@ export interface LeaveProgramEvaluationCreateParams {
61
561
  * Optional date the child entered the family for bonding leave programs.
62
562
  */
63
563
  child_entered_family_date?: string;
564
+ /**
565
+ * Optional requested leave end date. When set, leave_plan.pay_periods includes
566
+ * estimated per-paycheck amounts for programs that publish pay rates.
567
+ */
568
+ claim_end_date?: string;
64
569
  /**
65
570
  * Demo/test-company only evidence overrides for exercising eligibility scenarios
66
571
  * when the role's real data would not qualify.
@@ -68,6 +573,8 @@ export interface LeaveProgramEvaluationCreateParams {
68
573
  evidence_override?: unknown;
69
574
  /**
70
575
  * Optional parental leave relationship type for parental leave programs.
576
+ * Deprecated for most bonding evaluations, but still accepted for backwards
577
+ * compatibility with 2024-08-01 SDK callers.
71
578
  */
72
579
  parental_leave_type?: 'birthing_parent' | 'non_birthing_parent' | 'adoption_parent' | 'supporting_person' | 'foster_parent';
73
580
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"leave-program-evaluations.d.ts","sourceRoot":"","sources":["../src/resources/leave-program-evaluations.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,4BAAyB;AAC/C,OAAO,EAAE,UAAU,EAAE,+BAA4B;AACjD,OAAO,EAAE,cAAc,EAAE,uCAAoC;AAE7D;;GAEG;AACH,qBAAa,uBAAwB,SAAQ,WAAW;IACtD;;OAEG;IACH,MAAM,CACJ,IAAI,EAAE,kCAAkC,EACxC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,oCAAoC,CAAC;CAGpD;AAED,MAAM,WAAW,oCAAoC;IACnD;;OAEG;IACH,UAAU,EAAE,OAAO,CAAC;IAEpB;;OAEG;IACH,gBAAgB,EAAE,KAAK,CAAC,oCAAoC,CAAC,eAAe,CAAC,CAAC;IAE9E;;OAEG;IACH,eAAe,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;CACjC;AAED,yBAAiB,oCAAoC,CAAC;IACpD,UAAiB,eAAe;QAC9B;;WAEG;QACH,WAAW,EAAE,MAAM,CAAC;QAEpB;;WAEG;QACH,GAAG,EAAE,MAAM,CAAC;QAEZ;;WAEG;QACH,KAAK,EAAE,MAAM,CAAC;QAEd;;WAEG;QACH,aAAa,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;KAC9B;CACF;AAED,MAAM,WAAW,kCAAkC;IACjD;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;IAEzB;;OAEG;IACH,YAAY,EACR,SAAS,GACT,sBAAsB,GACtB,yBAAyB,GACzB,SAAS,GACT,UAAU,GACV,OAAO,CAAC;IAEZ;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,yBAAyB,CAAC,EAAE,MAAM,CAAC;IAEnC;;;OAGG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAE5B;;OAEG;IACH,mBAAmB,CAAC,EAChB,iBAAiB,GACjB,qBAAqB,GACrB,iBAAiB,GACjB,mBAAmB,GACnB,eAAe,CAAC;IAEpB;;;OAGG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAE9B;;;OAGG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACjC;AAED,MAAM,CAAC,OAAO,WAAW,uBAAuB,CAAC;IAC/C,OAAO,EACL,KAAK,oCAAoC,IAAI,oCAAoC,EACjF,KAAK,kCAAkC,IAAI,kCAAkC,GAC9E,CAAC;CACH"}
1
+ {"version":3,"file":"leave-program-evaluations.d.ts","sourceRoot":"","sources":["../src/resources/leave-program-evaluations.ts"],"names":[],"mappings":"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"}
@@ -16,10 +16,22 @@ export declare class Levels extends APIResource {
16
16
  * - Sortable fields: `id`, `created_at`, `updated_at`
17
17
  */
18
18
  list(query?: LevelListParams | null | undefined, options?: RequestOptions): PagePromise<LevelsPageCursorURL, Level>;
19
+ /**
20
+ * Create a new level
21
+ */
22
+ create(body: LevelCreateParams, options?: RequestOptions): APIPromise<Level>;
19
23
  /**
20
24
  * Retrieve a specific level
21
25
  */
22
26
  retrieve(id: string, query?: LevelRetrieveParams | null | undefined, options?: RequestOptions): APIPromise<LevelRetrieveResponse>;
27
+ /**
28
+ * Update a specific level.
29
+ */
30
+ update(id: string, body?: LevelUpdateParams | null | undefined, options?: RequestOptions): APIPromise<Level>;
31
+ /**
32
+ * Delete a level
33
+ */
34
+ delete(id: string, options?: RequestOptions): APIPromise<void>;
23
35
  }
24
36
  export type LevelsPageCursorURL = PageCursorURL<Level>;
25
37
  export interface Level {
@@ -43,6 +55,10 @@ export interface Level {
43
55
  * The description of the level.
44
56
  */
45
57
  description?: string;
58
+ /**
59
+ * The experience requirements for the level.
60
+ */
61
+ experience_requirements?: string;
46
62
  /**
47
63
  * Global level is used to track the seniority of levels. The higher up a level is
48
64
  * placed on the page, the more senior and higher-ranked the level. Global level is
@@ -65,6 +81,10 @@ export interface Level {
65
81
  * The rank of the level within its track.
66
82
  */
67
83
  rank?: number;
84
+ /**
85
+ * The scope of responsibilities for the level.
86
+ */
87
+ scope_of_responsibilities?: string;
68
88
  /**
69
89
  * The track associated with the level, if it's not a global level.
70
90
  *
@@ -72,7 +92,8 @@ export interface Level {
72
92
  */
73
93
  track?: TracksAPI.Track;
74
94
  /**
75
- * The track associated with the level, if it's not a global level.
95
+ * The track associated with the level. Required during creation and cannot be
96
+ * changed through this API.
76
97
  */
77
98
  track_id?: string;
78
99
  }
@@ -86,10 +107,51 @@ export interface LevelListParams {
86
107
  expand?: string;
87
108
  order_by?: string;
88
109
  }
110
+ export interface LevelCreateParams {
111
+ /**
112
+ * The name of the level. Must be unique within the company or organization.
113
+ */
114
+ name: string;
115
+ /**
116
+ * The track associated with the level. Required during creation and cannot be
117
+ * changed through this API.
118
+ */
119
+ track_id: string;
120
+ /**
121
+ * The description of the level.
122
+ */
123
+ description?: string;
124
+ /**
125
+ * The experience requirements for the level.
126
+ */
127
+ experience_requirements?: string;
128
+ /**
129
+ * The scope of responsibilities for the level.
130
+ */
131
+ scope_of_responsibilities?: string;
132
+ }
89
133
  export interface LevelRetrieveParams {
90
134
  expand?: string;
91
135
  }
136
+ export interface LevelUpdateParams {
137
+ /**
138
+ * The description of the level.
139
+ */
140
+ description?: string;
141
+ /**
142
+ * The experience requirements for the level.
143
+ */
144
+ experience_requirements?: string;
145
+ /**
146
+ * The name of the level. Must be unique within the company or organization.
147
+ */
148
+ name?: string;
149
+ /**
150
+ * The scope of responsibilities for the level.
151
+ */
152
+ scope_of_responsibilities?: string;
153
+ }
92
154
  export declare namespace Levels {
93
- export { type Level as Level, type LevelRetrieveResponse as LevelRetrieveResponse, type LevelsPageCursorURL as LevelsPageCursorURL, type LevelListParams as LevelListParams, type LevelRetrieveParams as LevelRetrieveParams, };
155
+ export { type Level as Level, type LevelRetrieveResponse as LevelRetrieveResponse, type LevelsPageCursorURL as LevelsPageCursorURL, type LevelListParams as LevelListParams, type LevelCreateParams as LevelCreateParams, type LevelRetrieveParams as LevelRetrieveParams, type LevelUpdateParams as LevelUpdateParams, };
94
156
  }
95
157
  //# sourceMappingURL=levels.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"levels.d.mts","sourceRoot":"","sources":["../src/resources/levels.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,6BAAyB;AAC/C,OAAO,KAAK,mBAAmB,gCAA4B;AAC3D,OAAO,KAAK,SAAS,qBAAiB;AACtC,OAAO,EAAE,UAAU,EAAE,gCAA4B;AACjD,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,+BAA2B;AAChE,OAAO,EAAE,cAAc,EAAE,wCAAoC;AAG7D;;GAEG;AACH,qBAAa,MAAO,SAAQ,WAAW;IACrC;;;;;;OAMG;IACH,IAAI,CACF,KAAK,GAAE,eAAe,GAAG,IAAI,GAAG,SAAc,EAC9C,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,mBAAmB,EAAE,KAAK,CAAC;IAI1C;;OAEG;IACH,QAAQ,CACN,EAAE,EAAE,MAAM,EACV,KAAK,GAAE,mBAAmB,GAAG,IAAI,GAAG,SAAc,EAClD,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,qBAAqB,CAAC;CAGrC;AAED,MAAM,MAAM,mBAAmB,GAAG,aAAa,CAAC,KAAK,CAAC,CAAC;AAEvD,MAAM,WAAW,KAAK;IACpB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;;;;OAMG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;;OAIG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC;IAEf;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;;OAIG;IACH,KAAK,CAAC,EAAE,SAAS,CAAC,KAAK,CAAC;IAExB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,mBAAmB,CAAC,IAAI,EAAE,KAAK;CAAG;AAEjF,MAAM,WAAW,eAAe;IAC9B,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,mBAAmB;IAClC,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,CAAC,OAAO,WAAW,MAAM,CAAC;IAC9B,OAAO,EACL,KAAK,KAAK,IAAI,KAAK,EACnB,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,eAAe,IAAI,eAAe,EACvC,KAAK,mBAAmB,IAAI,mBAAmB,GAChD,CAAC;CACH"}
1
+ {"version":3,"file":"levels.d.mts","sourceRoot":"","sources":["../src/resources/levels.ts"],"names":[],"mappings":"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"}