@smartytalent/openai-tools 0.7.7 → 0.7.8

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 +82 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -2373,6 +2373,88 @@
2373
2373
  }
2374
2374
  }
2375
2375
  },
2376
+ {
2377
+ "type": "function",
2378
+ "function": {
2379
+ "name": "start_user_identity_link",
2380
+ "description": "Start Linking A Social Account",
2381
+ "parameters": {
2382
+ "type": "object",
2383
+ "properties": {
2384
+ "data": {
2385
+ "type": "object",
2386
+ "properties": {
2387
+ "type": {
2388
+ "type": "string",
2389
+ "enum": [
2390
+ "identity-links"
2391
+ ]
2392
+ },
2393
+ "attributes": {
2394
+ "type": "object",
2395
+ "required": [
2396
+ "provider"
2397
+ ],
2398
+ "properties": {
2399
+ "provider": {
2400
+ "type": "string",
2401
+ "enum": [
2402
+ "Google",
2403
+ "LinkedIn"
2404
+ ]
2405
+ }
2406
+ }
2407
+ }
2408
+ }
2409
+ }
2410
+ }
2411
+ }
2412
+ }
2413
+ },
2414
+ {
2415
+ "type": "function",
2416
+ "function": {
2417
+ "name": "user_identities_options",
2418
+ "description": "User Identities Options",
2419
+ "parameters": {
2420
+ "type": "object",
2421
+ "properties": {}
2422
+ }
2423
+ }
2424
+ },
2425
+ {
2426
+ "type": "function",
2427
+ "function": {
2428
+ "name": "delete_user_identity",
2429
+ "description": "Unlink A Social Account",
2430
+ "parameters": {
2431
+ "type": "object",
2432
+ "properties": {}
2433
+ }
2434
+ }
2435
+ },
2436
+ {
2437
+ "type": "function",
2438
+ "function": {
2439
+ "name": "user_identity_options",
2440
+ "description": "User Identity Options",
2441
+ "parameters": {
2442
+ "type": "object",
2443
+ "properties": {}
2444
+ }
2445
+ }
2446
+ },
2447
+ {
2448
+ "type": "function",
2449
+ "function": {
2450
+ "name": "identity_link_callback",
2451
+ "description": "Social Account Link Callback",
2452
+ "parameters": {
2453
+ "type": "object",
2454
+ "properties": {}
2455
+ }
2456
+ }
2457
+ },
2376
2458
  {
2377
2459
  "type": "function",
2378
2460
  "function": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.7.7",
3
+ "version": "0.7.8",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",