@smartytalent/openai-tools 0.1.33-dev.92 → 0.1.33-dev.94

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 +46 -0
  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
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.33-dev.92",
3
+ "version": "0.1.33-dev.94",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",