@smartytalent/openai-tools 0.1.33-dev.29 → 0.1.33-dev.30
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.
- package/dist/tools.json +487 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -17453,5 +17453,492 @@
|
|
|
17453
17453
|
"properties": {}
|
|
17454
17454
|
}
|
|
17455
17455
|
}
|
|
17456
|
+
},
|
|
17457
|
+
{
|
|
17458
|
+
"type": "function",
|
|
17459
|
+
"function": {
|
|
17460
|
+
"name": "list_calendars",
|
|
17461
|
+
"description": "List Calendars",
|
|
17462
|
+
"parameters": {
|
|
17463
|
+
"type": "object",
|
|
17464
|
+
"properties": {
|
|
17465
|
+
"filterOwnerId": {
|
|
17466
|
+
"type": "string",
|
|
17467
|
+
"description": "Filter by owner userId. Indexed via OwnerIndex."
|
|
17468
|
+
},
|
|
17469
|
+
"filterOwnerType": {
|
|
17470
|
+
"type": "string",
|
|
17471
|
+
"description": "Filter by owner principal type. Today only `users` (reserved for shared / room calendars).",
|
|
17472
|
+
"enum": [
|
|
17473
|
+
"users"
|
|
17474
|
+
]
|
|
17475
|
+
},
|
|
17476
|
+
"filterCreatedFrom": {
|
|
17477
|
+
"type": "string",
|
|
17478
|
+
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
17479
|
+
},
|
|
17480
|
+
"filterCreatedTo": {
|
|
17481
|
+
"type": "string",
|
|
17482
|
+
"description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
|
|
17483
|
+
},
|
|
17484
|
+
"filterModifiedFrom": {
|
|
17485
|
+
"type": "string",
|
|
17486
|
+
"description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
|
|
17487
|
+
},
|
|
17488
|
+
"filterModifiedTo": {
|
|
17489
|
+
"type": "string",
|
|
17490
|
+
"description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
|
|
17491
|
+
},
|
|
17492
|
+
"pageSize": {
|
|
17493
|
+
"type": "integer",
|
|
17494
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
17495
|
+
},
|
|
17496
|
+
"pageNumber": {
|
|
17497
|
+
"type": "integer",
|
|
17498
|
+
"description": "Specifies the page number to retrieve. Used for traditional pagination."
|
|
17499
|
+
},
|
|
17500
|
+
"pageAfter": {
|
|
17501
|
+
"type": "string",
|
|
17502
|
+
"description": "Opaque base64-encoded cursor returned by a previous list response, used for forward cursor-based pagination. Pass the value verbatim; do not decode or mutate it."
|
|
17503
|
+
},
|
|
17504
|
+
"pageBefore": {
|
|
17505
|
+
"type": "string",
|
|
17506
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
17507
|
+
}
|
|
17508
|
+
}
|
|
17509
|
+
}
|
|
17510
|
+
}
|
|
17511
|
+
},
|
|
17512
|
+
{
|
|
17513
|
+
"type": "function",
|
|
17514
|
+
"function": {
|
|
17515
|
+
"name": "create_calendar",
|
|
17516
|
+
"description": "Create Calendar",
|
|
17517
|
+
"parameters": {
|
|
17518
|
+
"title": "CreateCalendarRequestSchema",
|
|
17519
|
+
"type": "object",
|
|
17520
|
+
"properties": {
|
|
17521
|
+
"data": {
|
|
17522
|
+
"type": "object",
|
|
17523
|
+
"required": [
|
|
17524
|
+
"type",
|
|
17525
|
+
"attributes"
|
|
17526
|
+
],
|
|
17527
|
+
"properties": {
|
|
17528
|
+
"type": {
|
|
17529
|
+
"type": "string",
|
|
17530
|
+
"enum": [
|
|
17531
|
+
"calendars"
|
|
17532
|
+
]
|
|
17533
|
+
},
|
|
17534
|
+
"attributes": {
|
|
17535
|
+
"type": "object",
|
|
17536
|
+
"required": [
|
|
17537
|
+
"ownerId"
|
|
17538
|
+
],
|
|
17539
|
+
"properties": {
|
|
17540
|
+
"ownerId": {
|
|
17541
|
+
"type": "string"
|
|
17542
|
+
},
|
|
17543
|
+
"ownerType": {
|
|
17544
|
+
"type": "string",
|
|
17545
|
+
"enum": [
|
|
17546
|
+
"users"
|
|
17547
|
+
]
|
|
17548
|
+
},
|
|
17549
|
+
"name": {
|
|
17550
|
+
"type": "string"
|
|
17551
|
+
},
|
|
17552
|
+
"color": {
|
|
17553
|
+
"type": "string"
|
|
17554
|
+
},
|
|
17555
|
+
"timezone": {
|
|
17556
|
+
"type": "string"
|
|
17557
|
+
},
|
|
17558
|
+
"maxConcurrentEvents": {
|
|
17559
|
+
"type": "integer"
|
|
17560
|
+
},
|
|
17561
|
+
"workingHours": {
|
|
17562
|
+
"type": "object"
|
|
17563
|
+
}
|
|
17564
|
+
}
|
|
17565
|
+
}
|
|
17566
|
+
}
|
|
17567
|
+
}
|
|
17568
|
+
}
|
|
17569
|
+
}
|
|
17570
|
+
}
|
|
17571
|
+
},
|
|
17572
|
+
{
|
|
17573
|
+
"type": "function",
|
|
17574
|
+
"function": {
|
|
17575
|
+
"name": "show_calendar",
|
|
17576
|
+
"description": "Show Calendar",
|
|
17577
|
+
"parameters": {
|
|
17578
|
+
"type": "object",
|
|
17579
|
+
"properties": {}
|
|
17580
|
+
}
|
|
17581
|
+
}
|
|
17582
|
+
},
|
|
17583
|
+
{
|
|
17584
|
+
"type": "function",
|
|
17585
|
+
"function": {
|
|
17586
|
+
"name": "update_calendar",
|
|
17587
|
+
"description": "Update Calendar",
|
|
17588
|
+
"parameters": {
|
|
17589
|
+
"title": "UpdateCalendarRequestSchema",
|
|
17590
|
+
"type": "object",
|
|
17591
|
+
"properties": {
|
|
17592
|
+
"data": {
|
|
17593
|
+
"type": "object",
|
|
17594
|
+
"required": [
|
|
17595
|
+
"type"
|
|
17596
|
+
],
|
|
17597
|
+
"properties": {
|
|
17598
|
+
"type": {
|
|
17599
|
+
"type": "string",
|
|
17600
|
+
"enum": [
|
|
17601
|
+
"calendars"
|
|
17602
|
+
]
|
|
17603
|
+
},
|
|
17604
|
+
"id": {
|
|
17605
|
+
"type": "string"
|
|
17606
|
+
},
|
|
17607
|
+
"attributes": {
|
|
17608
|
+
"type": "object",
|
|
17609
|
+
"properties": {
|
|
17610
|
+
"name": {
|
|
17611
|
+
"type": "string"
|
|
17612
|
+
},
|
|
17613
|
+
"color": {
|
|
17614
|
+
"type": "string"
|
|
17615
|
+
},
|
|
17616
|
+
"status": {
|
|
17617
|
+
"type": "string",
|
|
17618
|
+
"enum": [
|
|
17619
|
+
"active",
|
|
17620
|
+
"archived"
|
|
17621
|
+
]
|
|
17622
|
+
},
|
|
17623
|
+
"timezone": {
|
|
17624
|
+
"type": "string"
|
|
17625
|
+
},
|
|
17626
|
+
"maxConcurrentEvents": {
|
|
17627
|
+
"type": "integer"
|
|
17628
|
+
},
|
|
17629
|
+
"workingHours": {
|
|
17630
|
+
"type": "object"
|
|
17631
|
+
}
|
|
17632
|
+
}
|
|
17633
|
+
}
|
|
17634
|
+
}
|
|
17635
|
+
}
|
|
17636
|
+
}
|
|
17637
|
+
}
|
|
17638
|
+
}
|
|
17639
|
+
},
|
|
17640
|
+
{
|
|
17641
|
+
"type": "function",
|
|
17642
|
+
"function": {
|
|
17643
|
+
"name": "delete_calendar",
|
|
17644
|
+
"description": "Delete Calendar",
|
|
17645
|
+
"parameters": {
|
|
17646
|
+
"type": "object",
|
|
17647
|
+
"properties": {
|
|
17648
|
+
"permanentDelete": {
|
|
17649
|
+
"type": "string",
|
|
17650
|
+
"description": "Set to `true` for hard-delete.",
|
|
17651
|
+
"enum": [
|
|
17652
|
+
"true",
|
|
17653
|
+
"false"
|
|
17654
|
+
]
|
|
17655
|
+
}
|
|
17656
|
+
}
|
|
17657
|
+
}
|
|
17658
|
+
}
|
|
17659
|
+
},
|
|
17660
|
+
{
|
|
17661
|
+
"type": "function",
|
|
17662
|
+
"function": {
|
|
17663
|
+
"name": "list_events",
|
|
17664
|
+
"description": "List Events",
|
|
17665
|
+
"parameters": {
|
|
17666
|
+
"type": "object",
|
|
17667
|
+
"properties": {
|
|
17668
|
+
"filterCalendarId": {
|
|
17669
|
+
"type": "string",
|
|
17670
|
+
"description": "Filter events in this calendar. Required for grid views."
|
|
17671
|
+
},
|
|
17672
|
+
"filterAttendeeType": {
|
|
17673
|
+
"type": "string",
|
|
17674
|
+
"description": "Limit to events for this principal type (paired with filterAttendeeId).",
|
|
17675
|
+
"enum": [
|
|
17676
|
+
"users",
|
|
17677
|
+
"candidates",
|
|
17678
|
+
"talents",
|
|
17679
|
+
"visitors"
|
|
17680
|
+
]
|
|
17681
|
+
},
|
|
17682
|
+
"filterAttendeeId": {
|
|
17683
|
+
"type": "string",
|
|
17684
|
+
"description": "Limit to events where this principal is an attendee."
|
|
17685
|
+
},
|
|
17686
|
+
"filterDateFrom": {
|
|
17687
|
+
"type": "string",
|
|
17688
|
+
"description": "ISO 8601 lower bound on event startMs."
|
|
17689
|
+
},
|
|
17690
|
+
"filterDateTo": {
|
|
17691
|
+
"type": "string",
|
|
17692
|
+
"description": "ISO 8601 upper bound on event startMs."
|
|
17693
|
+
},
|
|
17694
|
+
"filterDateFromMs": {
|
|
17695
|
+
"type": "integer",
|
|
17696
|
+
"description": "Epoch milliseconds lower bound on event startMs."
|
|
17697
|
+
},
|
|
17698
|
+
"filterDateToMs": {
|
|
17699
|
+
"type": "integer",
|
|
17700
|
+
"description": "Epoch milliseconds upper bound on event startMs."
|
|
17701
|
+
},
|
|
17702
|
+
"filterEventType": {
|
|
17703
|
+
"type": "string",
|
|
17704
|
+
"description": "Filter by event type.",
|
|
17705
|
+
"enum": [
|
|
17706
|
+
"call",
|
|
17707
|
+
"meeting",
|
|
17708
|
+
"slot",
|
|
17709
|
+
"block"
|
|
17710
|
+
]
|
|
17711
|
+
},
|
|
17712
|
+
"pageSize": {
|
|
17713
|
+
"type": "integer",
|
|
17714
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
17715
|
+
},
|
|
17716
|
+
"pageNumber": {
|
|
17717
|
+
"type": "integer",
|
|
17718
|
+
"description": "Specifies the page number to retrieve. Used for traditional pagination."
|
|
17719
|
+
}
|
|
17720
|
+
}
|
|
17721
|
+
}
|
|
17722
|
+
}
|
|
17723
|
+
},
|
|
17724
|
+
{
|
|
17725
|
+
"type": "function",
|
|
17726
|
+
"function": {
|
|
17727
|
+
"name": "create_event",
|
|
17728
|
+
"description": "Create Event",
|
|
17729
|
+
"parameters": {
|
|
17730
|
+
"title": "CreateEventRequestSchema",
|
|
17731
|
+
"type": "object",
|
|
17732
|
+
"properties": {
|
|
17733
|
+
"data": {
|
|
17734
|
+
"type": "object",
|
|
17735
|
+
"required": [
|
|
17736
|
+
"type",
|
|
17737
|
+
"attributes"
|
|
17738
|
+
],
|
|
17739
|
+
"properties": {
|
|
17740
|
+
"type": {
|
|
17741
|
+
"type": "string",
|
|
17742
|
+
"enum": [
|
|
17743
|
+
"events"
|
|
17744
|
+
]
|
|
17745
|
+
},
|
|
17746
|
+
"attributes": {
|
|
17747
|
+
"type": "object",
|
|
17748
|
+
"required": [
|
|
17749
|
+
"calendarId",
|
|
17750
|
+
"eventType"
|
|
17751
|
+
],
|
|
17752
|
+
"properties": {
|
|
17753
|
+
"calendarId": {
|
|
17754
|
+
"type": "string"
|
|
17755
|
+
},
|
|
17756
|
+
"eventType": {
|
|
17757
|
+
"type": "string",
|
|
17758
|
+
"enum": [
|
|
17759
|
+
"call",
|
|
17760
|
+
"meeting",
|
|
17761
|
+
"slot",
|
|
17762
|
+
"block"
|
|
17763
|
+
]
|
|
17764
|
+
},
|
|
17765
|
+
"subject": {
|
|
17766
|
+
"type": "string"
|
|
17767
|
+
},
|
|
17768
|
+
"description": {
|
|
17769
|
+
"type": "string"
|
|
17770
|
+
},
|
|
17771
|
+
"startMs": {
|
|
17772
|
+
"type": "integer"
|
|
17773
|
+
},
|
|
17774
|
+
"endMs": {
|
|
17775
|
+
"type": "integer"
|
|
17776
|
+
},
|
|
17777
|
+
"startAt": {
|
|
17778
|
+
"type": "string"
|
|
17779
|
+
},
|
|
17780
|
+
"endAt": {
|
|
17781
|
+
"type": "string"
|
|
17782
|
+
},
|
|
17783
|
+
"timezone": {
|
|
17784
|
+
"type": "string"
|
|
17785
|
+
},
|
|
17786
|
+
"isAllDay": {
|
|
17787
|
+
"type": "boolean"
|
|
17788
|
+
},
|
|
17789
|
+
"status": {
|
|
17790
|
+
"type": "string",
|
|
17791
|
+
"enum": [
|
|
17792
|
+
"draft",
|
|
17793
|
+
"confirmed",
|
|
17794
|
+
"in-progress",
|
|
17795
|
+
"completed",
|
|
17796
|
+
"cancelled",
|
|
17797
|
+
"archived"
|
|
17798
|
+
]
|
|
17799
|
+
},
|
|
17800
|
+
"color": {
|
|
17801
|
+
"type": "string"
|
|
17802
|
+
},
|
|
17803
|
+
"location": {
|
|
17804
|
+
"type": "object"
|
|
17805
|
+
},
|
|
17806
|
+
"attendees": {
|
|
17807
|
+
"type": "array",
|
|
17808
|
+
"items": {
|
|
17809
|
+
"type": "object"
|
|
17810
|
+
}
|
|
17811
|
+
},
|
|
17812
|
+
"sourceType": {
|
|
17813
|
+
"type": "string",
|
|
17814
|
+
"enum": [
|
|
17815
|
+
"calls",
|
|
17816
|
+
"meetings",
|
|
17817
|
+
"briefs"
|
|
17818
|
+
]
|
|
17819
|
+
},
|
|
17820
|
+
"sourceId": {
|
|
17821
|
+
"type": "string"
|
|
17822
|
+
},
|
|
17823
|
+
"metadata": {
|
|
17824
|
+
"type": "object"
|
|
17825
|
+
}
|
|
17826
|
+
}
|
|
17827
|
+
}
|
|
17828
|
+
}
|
|
17829
|
+
}
|
|
17830
|
+
}
|
|
17831
|
+
}
|
|
17832
|
+
}
|
|
17833
|
+
},
|
|
17834
|
+
{
|
|
17835
|
+
"type": "function",
|
|
17836
|
+
"function": {
|
|
17837
|
+
"name": "show_event",
|
|
17838
|
+
"description": "Show Event",
|
|
17839
|
+
"parameters": {
|
|
17840
|
+
"type": "object",
|
|
17841
|
+
"properties": {}
|
|
17842
|
+
}
|
|
17843
|
+
}
|
|
17844
|
+
},
|
|
17845
|
+
{
|
|
17846
|
+
"type": "function",
|
|
17847
|
+
"function": {
|
|
17848
|
+
"name": "update_event",
|
|
17849
|
+
"description": "Update Event",
|
|
17850
|
+
"parameters": {
|
|
17851
|
+
"title": "UpdateEventRequestSchema",
|
|
17852
|
+
"type": "object",
|
|
17853
|
+
"properties": {
|
|
17854
|
+
"data": {
|
|
17855
|
+
"type": "object",
|
|
17856
|
+
"required": [
|
|
17857
|
+
"type"
|
|
17858
|
+
],
|
|
17859
|
+
"properties": {
|
|
17860
|
+
"type": {
|
|
17861
|
+
"type": "string",
|
|
17862
|
+
"enum": [
|
|
17863
|
+
"events"
|
|
17864
|
+
]
|
|
17865
|
+
},
|
|
17866
|
+
"id": {
|
|
17867
|
+
"type": "string"
|
|
17868
|
+
},
|
|
17869
|
+
"attributes": {
|
|
17870
|
+
"type": "object",
|
|
17871
|
+
"properties": {
|
|
17872
|
+
"subject": {
|
|
17873
|
+
"type": "string"
|
|
17874
|
+
},
|
|
17875
|
+
"description": {
|
|
17876
|
+
"type": "string"
|
|
17877
|
+
},
|
|
17878
|
+
"startMs": {
|
|
17879
|
+
"type": "integer"
|
|
17880
|
+
},
|
|
17881
|
+
"endMs": {
|
|
17882
|
+
"type": "integer"
|
|
17883
|
+
},
|
|
17884
|
+
"startAt": {
|
|
17885
|
+
"type": "string"
|
|
17886
|
+
},
|
|
17887
|
+
"endAt": {
|
|
17888
|
+
"type": "string"
|
|
17889
|
+
},
|
|
17890
|
+
"timezone": {
|
|
17891
|
+
"type": "string"
|
|
17892
|
+
},
|
|
17893
|
+
"isAllDay": {
|
|
17894
|
+
"type": "boolean"
|
|
17895
|
+
},
|
|
17896
|
+
"status": {
|
|
17897
|
+
"type": "string",
|
|
17898
|
+
"enum": [
|
|
17899
|
+
"draft",
|
|
17900
|
+
"confirmed",
|
|
17901
|
+
"in-progress",
|
|
17902
|
+
"completed",
|
|
17903
|
+
"cancelled",
|
|
17904
|
+
"archived"
|
|
17905
|
+
]
|
|
17906
|
+
},
|
|
17907
|
+
"color": {
|
|
17908
|
+
"type": "string"
|
|
17909
|
+
},
|
|
17910
|
+
"location": {
|
|
17911
|
+
"type": "object"
|
|
17912
|
+
},
|
|
17913
|
+
"metadata": {
|
|
17914
|
+
"type": "object"
|
|
17915
|
+
}
|
|
17916
|
+
}
|
|
17917
|
+
}
|
|
17918
|
+
}
|
|
17919
|
+
}
|
|
17920
|
+
}
|
|
17921
|
+
}
|
|
17922
|
+
}
|
|
17923
|
+
},
|
|
17924
|
+
{
|
|
17925
|
+
"type": "function",
|
|
17926
|
+
"function": {
|
|
17927
|
+
"name": "delete_event",
|
|
17928
|
+
"description": "Delete Event",
|
|
17929
|
+
"parameters": {
|
|
17930
|
+
"type": "object",
|
|
17931
|
+
"properties": {
|
|
17932
|
+
"permanentDelete": {
|
|
17933
|
+
"type": "string",
|
|
17934
|
+
"description": "Set to `true` for hard-delete.",
|
|
17935
|
+
"enum": [
|
|
17936
|
+
"true",
|
|
17937
|
+
"false"
|
|
17938
|
+
]
|
|
17939
|
+
}
|
|
17940
|
+
}
|
|
17941
|
+
}
|
|
17942
|
+
}
|
|
17456
17943
|
}
|
|
17457
17944
|
]
|