@smartytalent/openai-tools 0.1.33-dev.91 → 0.1.33-dev.93

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 (2) hide show
  1. package/dist/tools.json +50 -4
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -2590,6 +2590,29 @@
2590
2590
  }
2591
2591
  }
2592
2592
  },
2593
+ "consent": {
2594
+ "title": "TalentConsentSchema",
2595
+ "description": "GDPR/RODO consent. future = consent to be kept in the TalentPool and used for future recruitments (the TalentPool search hard-gates on it).",
2596
+ "type": "object",
2597
+ "properties": {
2598
+ "current": {
2599
+ "type": "boolean",
2600
+ "description": "Consent to process for the current recruitment the applicant applied to."
2601
+ },
2602
+ "future": {
2603
+ "type": "boolean",
2604
+ "description": "Consent to be kept and used for future recruitments (TalentPool)."
2605
+ },
2606
+ "source": {
2607
+ "type": "string",
2608
+ "description": "Where the consent was captured (e.g. apply, careerPage)."
2609
+ },
2610
+ "timestamp": {
2611
+ "type": "string",
2612
+ "description": "ISO 8601 time the consent was recorded."
2613
+ }
2614
+ }
2615
+ },
2593
2616
  "age": {
2594
2617
  "type": "string"
2595
2618
  },
@@ -3203,6 +3226,29 @@
3203
3226
  }
3204
3227
  }
3205
3228
  },
3229
+ "consent": {
3230
+ "title": "TalentConsentSchema",
3231
+ "description": "GDPR/RODO consent. future = consent to be kept in the TalentPool and used for future recruitments (the TalentPool search hard-gates on it).",
3232
+ "type": "object",
3233
+ "properties": {
3234
+ "current": {
3235
+ "type": "boolean",
3236
+ "description": "Consent to process for the current recruitment the applicant applied to."
3237
+ },
3238
+ "future": {
3239
+ "type": "boolean",
3240
+ "description": "Consent to be kept and used for future recruitments (TalentPool)."
3241
+ },
3242
+ "source": {
3243
+ "type": "string",
3244
+ "description": "Where the consent was captured (e.g. apply, careerPage)."
3245
+ },
3246
+ "timestamp": {
3247
+ "type": "string",
3248
+ "description": "ISO 8601 time the consent was recorded."
3249
+ }
3250
+ }
3251
+ },
3206
3252
  "age": {
3207
3253
  "type": "string"
3208
3254
  },
@@ -5966,7 +6012,7 @@
5966
6012
  "extension": {
5967
6013
  "type": "string"
5968
6014
  },
5969
- "short_code": {
6015
+ "shortCode": {
5970
6016
  "type": "string"
5971
6017
  },
5972
6018
  "source": {
@@ -6147,7 +6193,7 @@
6147
6193
  "extension": {
6148
6194
  "type": "string"
6149
6195
  },
6150
- "short_code": {
6196
+ "shortCode": {
6151
6197
  "type": "string"
6152
6198
  },
6153
6199
  "source": {
@@ -7486,7 +7532,7 @@
7486
7532
  "default": "general",
7487
7533
  "description": "Role marker. Identifies which downstream resource this form's\nsubmission becomes:\n - jobBrief: produces a Brief about a Job (email/api intake;\n consumed by the create-job-from-brief workflow).\n - candidateSubmission: produces a Submission about a\n Candidate (apply form intake).\n - talentSubmission: produces a Submission about a Talent.\n - general: catch-all / undecided.\nTenant pins one form per kind as its default via\n`tenant.relationships.forms`. Mirrors the role-marker pattern\nused on Feedback (`stage`)."
7488
7534
  },
7489
- "short_code": {
7535
+ "shortCode": {
7490
7536
  "type": "string"
7491
7537
  },
7492
7538
  "content": {
@@ -7623,7 +7669,7 @@
7623
7669
  "default": "general",
7624
7670
  "description": "Role marker. Identifies which downstream resource this form's\nsubmission becomes:\n - jobBrief: produces a Brief about a Job (email/api intake;\n consumed by the create-job-from-brief workflow).\n - candidateSubmission: produces a Submission about a\n Candidate (apply form intake).\n - talentSubmission: produces a Submission about a Talent.\n - general: catch-all / undecided.\nTenant pins one form per kind as its default via\n`tenant.relationships.forms`. Mirrors the role-marker pattern\nused on Feedback (`stage`)."
7625
7671
  },
7626
- "short_code": {
7672
+ "shortCode": {
7627
7673
  "type": "string"
7628
7674
  },
7629
7675
  "content": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.33-dev.91",
3
+ "version": "0.1.33-dev.93",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",