placementt-core 1.400.985 → 1.400.986

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.
@@ -1918,6 +1918,8 @@ export type EmploymentDetails = {
1918
1918
  sicSection?: string;
1919
1919
  sicLabel?: string;
1920
1920
  employmentStatus: "fullTime" | "partTime" | "selfEmployed" | "contractor" | "zeroHours";
1921
+ /** Optional short free-text description of what the role entails — shown on the journey timeline. */
1922
+ roleDescription?: string;
1921
1923
  employerName?: string;
1922
1924
  employerSize?: "<10" | "10-49" | "50-249" | "250+" | "publicSector";
1923
1925
  isPrimaryJob?: boolean;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.985",
5
+ "version": "1.400.986",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -1861,6 +1861,8 @@ export type EmploymentDetails = {
1861
1861
  sicSection?: string, // SIC 2007 section letter e.g. "J"
1862
1862
  sicLabel?: string, // e.g. "Information and Communication"
1863
1863
  employmentStatus: "fullTime"|"partTime"|"selfEmployed"|"contractor"|"zeroHours",
1864
+ /** Optional short free-text description of what the role entails — shown on the journey timeline. */
1865
+ roleDescription?: string,
1864
1866
  employerName?: string,
1865
1867
  employerSize?: "<10"|"10-49"|"50-249"|"250+"|"publicSector",
1866
1868
  isPrimaryJob?: boolean,