@typeb-digital/nucleus-sdk 0.3.3 → 0.3.4

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.
@@ -247,6 +247,9 @@ function transformEmployee(raw) {
247
247
  if ('weekly_capacity' in r) out['weeklyCapacity'] = num(r['weekly_capacity']);
248
248
  if ('manager_id' in r) out['managerId'] = str(r['manager_id']);
249
249
  if ('partner_id' in r) out['partnerId'] = str(r['partner_id']);
250
+ if ('department_id' in r) out['departmentId'] = str(r['department_id']);
251
+ if ('jurisdiction_id' in r) out['jurisdictionId'] = str(r['jurisdiction_id']);
252
+ if ('job_level_id' in r) out['jobLevelId'] = str(r['job_level_id']);
250
253
  if ('timezone' in r) out['timezone'] = str(r['timezone']);
251
254
  // sensitive
252
255
  if ('birthday' in r) out['birthday'] = str(r['birthday']);
package/dist/es/index.js CHANGED
@@ -245,6 +245,9 @@ function transformEmployee(raw) {
245
245
  if ('weekly_capacity' in r) out['weeklyCapacity'] = num(r['weekly_capacity']);
246
246
  if ('manager_id' in r) out['managerId'] = str(r['manager_id']);
247
247
  if ('partner_id' in r) out['partnerId'] = str(r['partner_id']);
248
+ if ('department_id' in r) out['departmentId'] = str(r['department_id']);
249
+ if ('jurisdiction_id' in r) out['jurisdictionId'] = str(r['jurisdiction_id']);
250
+ if ('job_level_id' in r) out['jobLevelId'] = str(r['job_level_id']);
248
251
  if ('timezone' in r) out['timezone'] = str(r['timezone']);
249
252
  // sensitive
250
253
  if ('birthday' in r) out['birthday'] = str(r['birthday']);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typeb-digital/nucleus-sdk",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Server-side TypeScript SDK for the Nucleus data platform",
5
5
  "type": "module",
6
6
  "engines": {