@smartytalent/openai-tools 0.7.7 → 0.7.9

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 +122 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -2373,6 +2373,128 @@
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": "complete_user_identity_link",
2429
+ "description": "Complete Linking A Social Account",
2430
+ "parameters": {
2431
+ "type": "object",
2432
+ "properties": {
2433
+ "data": {
2434
+ "type": "object",
2435
+ "properties": {
2436
+ "type": {
2437
+ "type": "string",
2438
+ "enum": [
2439
+ "identity-links"
2440
+ ]
2441
+ },
2442
+ "attributes": {
2443
+ "type": "object",
2444
+ "required": [
2445
+ "code",
2446
+ "state"
2447
+ ],
2448
+ "properties": {
2449
+ "code": {
2450
+ "type": "string",
2451
+ "description": "The authorization code the provider put in the redirect."
2452
+ },
2453
+ "state": {
2454
+ "type": "string",
2455
+ "description": "Echoed back untouched from the redirect. It is the nonce."
2456
+ }
2457
+ }
2458
+ }
2459
+ }
2460
+ }
2461
+ }
2462
+ }
2463
+ }
2464
+ },
2465
+ {
2466
+ "type": "function",
2467
+ "function": {
2468
+ "name": "user_identity_complete_options",
2469
+ "description": "User Identity Complete Options",
2470
+ "parameters": {
2471
+ "type": "object",
2472
+ "properties": {}
2473
+ }
2474
+ }
2475
+ },
2476
+ {
2477
+ "type": "function",
2478
+ "function": {
2479
+ "name": "delete_user_identity",
2480
+ "description": "Unlink A Social Account",
2481
+ "parameters": {
2482
+ "type": "object",
2483
+ "properties": {}
2484
+ }
2485
+ }
2486
+ },
2487
+ {
2488
+ "type": "function",
2489
+ "function": {
2490
+ "name": "user_identity_options",
2491
+ "description": "User Identity Options",
2492
+ "parameters": {
2493
+ "type": "object",
2494
+ "properties": {}
2495
+ }
2496
+ }
2497
+ },
2376
2498
  {
2377
2499
  "type": "function",
2378
2500
  "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.9",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",