@smartytalent/mcp-tools 0.1.33-dev.62 → 0.1.33-dev.63
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 +229 -133
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -14313,6 +14313,18 @@
|
|
|
14313
14313
|
"archived"
|
|
14314
14314
|
]
|
|
14315
14315
|
},
|
|
14316
|
+
"filterCandidate": {
|
|
14317
|
+
"type": "string",
|
|
14318
|
+
"description": "Filter meetings (or other resources) by the linked candidate id. Backed by the CandidateIdIndex GSI on meeting; same convention used by other services for candidate reverse-lookup."
|
|
14319
|
+
},
|
|
14320
|
+
"filterJob": {
|
|
14321
|
+
"type": "string",
|
|
14322
|
+
"description": "Filter meetings by linked job id. Backed by the JobIdIndex GSI."
|
|
14323
|
+
},
|
|
14324
|
+
"filterHost": {
|
|
14325
|
+
"type": "string",
|
|
14326
|
+
"description": "Filter meetings by the user hosting (human recruiter or boe user). Backed by the HostIdIndex GSI."
|
|
14327
|
+
},
|
|
14316
14328
|
"filterCreatedFrom": {
|
|
14317
14329
|
"type": "string",
|
|
14318
14330
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -14501,11 +14513,22 @@
|
|
|
14501
14513
|
"description": "Raw AWS Chime CreateMeeting `Meeting` object - passed verbatim to chime-sdk-js. Includes MeetingFeatures.Audio.EchoReduction when enabled server-side.",
|
|
14502
14514
|
"additionalProperties": true
|
|
14503
14515
|
},
|
|
14504
|
-
"
|
|
14505
|
-
"type": "
|
|
14506
|
-
"
|
|
14507
|
-
|
|
14508
|
-
|
|
14516
|
+
"candidateId": {
|
|
14517
|
+
"type": "string",
|
|
14518
|
+
"description": "Top-level scalar mirror of relationships.candidate.data.id, used by the CandidateIdIndex GSI for reverse-lookup ('list meetings for this candidate'). Sparse - present only when the relationship is set. Do NOT set this directly on createMeeting / updateMeeting; pass relationships.candidate instead and the server derives the scalar."
|
|
14519
|
+
},
|
|
14520
|
+
"jobId": {
|
|
14521
|
+
"type": "string",
|
|
14522
|
+
"description": "Top-level scalar mirror of relationships.job.data.id, used by the JobIdIndex GSI ('list meetings for this job'). Derived server-side from relationships.job."
|
|
14523
|
+
},
|
|
14524
|
+
"hostId": {
|
|
14525
|
+
"type": "string",
|
|
14526
|
+
"description": "Top-level scalar mirror of relationships.host.data.id (always a users id - human recruiter or boe user). Used by the HostIdIndex GSI for the 'my meetings' dashboard. Derived server-side from relationships.host."
|
|
14527
|
+
},
|
|
14528
|
+
"notetakerEnabled": {
|
|
14529
|
+
"type": "boolean",
|
|
14530
|
+
"default": true,
|
|
14531
|
+
"description": "When true (default), human-hosted meetings auto-dispatch a Boe notetaker bot at meeting start time. Set false on createMeeting to opt out for sensitive sessions. Ignored when the meeting is itself AI-hosted (host.data.id is a boe user); the host bot already takes notes."
|
|
14509
14532
|
},
|
|
14510
14533
|
"recordingStatus": {
|
|
14511
14534
|
"type": "string",
|
|
@@ -14719,14 +14742,15 @@
|
|
|
14719
14742
|
"title": "MeetingRelationshipsSchema",
|
|
14720
14743
|
"type": "object",
|
|
14721
14744
|
"properties": {
|
|
14722
|
-
"
|
|
14723
|
-
"title": "
|
|
14745
|
+
"team": {
|
|
14746
|
+
"title": "MeetingRelationshipsTeamSchema",
|
|
14724
14747
|
"type": "object",
|
|
14748
|
+
"description": "Tenant users with stake in this meeting (host + co-hosts + observers + HR backup). Drives access control + 'my meetings' notifications + dashboard visibility. Candidates and guests do NOT live here - they appear in the attendees relationship once they join Chime.",
|
|
14725
14749
|
"properties": {
|
|
14726
14750
|
"data": {
|
|
14727
14751
|
"type": "array",
|
|
14728
14752
|
"items": {
|
|
14729
|
-
"title": "
|
|
14753
|
+
"title": "MeetingRelationshipsTeamDataSchema",
|
|
14730
14754
|
"type": "object",
|
|
14731
14755
|
"properties": {
|
|
14732
14756
|
"type": {
|
|
@@ -14779,7 +14803,7 @@
|
|
|
14779
14803
|
"candidate": {
|
|
14780
14804
|
"title": "MeetingRelationshipsCandidateSchema",
|
|
14781
14805
|
"type": "object",
|
|
14782
|
-
"description": "Candidate the meeting is about, when known (e.g. interview).",
|
|
14806
|
+
"description": "Candidate the meeting is about, when known (e.g. interview). Setting this also writes the top-level candidateId scalar (CandidateIdIndex GSI key) so the 'meetings for candidate X' query is a direct GSI hit.",
|
|
14783
14807
|
"properties": {
|
|
14784
14808
|
"data": {
|
|
14785
14809
|
"type": "object",
|
|
@@ -14811,6 +14835,65 @@
|
|
|
14811
14835
|
}
|
|
14812
14836
|
}
|
|
14813
14837
|
}
|
|
14838
|
+
},
|
|
14839
|
+
"host": {
|
|
14840
|
+
"title": "MeetingRelationshipsHostSchema",
|
|
14841
|
+
"type": "object",
|
|
14842
|
+
"description": "User leading the meeting. May be a human recruiter or a boe user (e.g. usr-boe-interviewer for AI-hosted sessions). Setting this also writes the top-level hostId scalar (HostIdIndex GSI key) so the 'my meetings' dashboard query is a direct GSI hit. Always points at the users resource - there is no separate 'aiHost' shape because Boe IS a user.",
|
|
14843
|
+
"properties": {
|
|
14844
|
+
"data": {
|
|
14845
|
+
"type": "object",
|
|
14846
|
+
"properties": {
|
|
14847
|
+
"type": {
|
|
14848
|
+
"type": "string"
|
|
14849
|
+
},
|
|
14850
|
+
"id": {
|
|
14851
|
+
"type": "string"
|
|
14852
|
+
}
|
|
14853
|
+
}
|
|
14854
|
+
}
|
|
14855
|
+
}
|
|
14856
|
+
},
|
|
14857
|
+
"job": {
|
|
14858
|
+
"title": "MeetingRelationshipsJobSchema",
|
|
14859
|
+
"type": "object",
|
|
14860
|
+
"description": "Job opening the meeting is about. Drives interviewer-bot context enrichment (job description, mustHaves, competencies auto-loaded into the prompt) and the 'meetings for this role' job-page view. Setting this also writes the top-level jobId scalar (JobIdIndex GSI key).",
|
|
14861
|
+
"properties": {
|
|
14862
|
+
"data": {
|
|
14863
|
+
"type": "object",
|
|
14864
|
+
"properties": {
|
|
14865
|
+
"type": {
|
|
14866
|
+
"type": "string"
|
|
14867
|
+
},
|
|
14868
|
+
"id": {
|
|
14869
|
+
"type": "string"
|
|
14870
|
+
}
|
|
14871
|
+
}
|
|
14872
|
+
}
|
|
14873
|
+
}
|
|
14874
|
+
},
|
|
14875
|
+
"attendees": {
|
|
14876
|
+
"title": "MeetingRelationshipsAttendeesSchema",
|
|
14877
|
+
"type": "object",
|
|
14878
|
+
"description": "Chime attendee records - everyone with a live or terminated Chime SDK attendee for this meeting (humans + bots, unified). Use `?include=attendees,attendees.user,attendees.candidate` on showMeeting / listMeetings to sideload the full roster in one round-trip. Not embedded in attributes - relationship + sideload only.",
|
|
14879
|
+
"properties": {
|
|
14880
|
+
"data": {
|
|
14881
|
+
"type": "array",
|
|
14882
|
+
"items": {
|
|
14883
|
+
"title": "MeetingRelationshipsAttendeesDataSchema",
|
|
14884
|
+
"type": "object",
|
|
14885
|
+
"properties": {
|
|
14886
|
+
"type": {
|
|
14887
|
+
"type": "string"
|
|
14888
|
+
},
|
|
14889
|
+
"id": {
|
|
14890
|
+
"type": "string",
|
|
14891
|
+
"description": "Chime attendee id (resource id of the attendee)."
|
|
14892
|
+
}
|
|
14893
|
+
}
|
|
14894
|
+
}
|
|
14895
|
+
}
|
|
14896
|
+
}
|
|
14814
14897
|
}
|
|
14815
14898
|
}
|
|
14816
14899
|
}
|
|
@@ -15002,11 +15085,22 @@
|
|
|
15002
15085
|
"description": "Raw AWS Chime CreateMeeting `Meeting` object - passed verbatim to chime-sdk-js. Includes MeetingFeatures.Audio.EchoReduction when enabled server-side.",
|
|
15003
15086
|
"additionalProperties": true
|
|
15004
15087
|
},
|
|
15005
|
-
"
|
|
15006
|
-
"type": "
|
|
15007
|
-
"
|
|
15008
|
-
|
|
15009
|
-
|
|
15088
|
+
"candidateId": {
|
|
15089
|
+
"type": "string",
|
|
15090
|
+
"description": "Top-level scalar mirror of relationships.candidate.data.id, used by the CandidateIdIndex GSI for reverse-lookup ('list meetings for this candidate'). Sparse - present only when the relationship is set. Do NOT set this directly on createMeeting / updateMeeting; pass relationships.candidate instead and the server derives the scalar."
|
|
15091
|
+
},
|
|
15092
|
+
"jobId": {
|
|
15093
|
+
"type": "string",
|
|
15094
|
+
"description": "Top-level scalar mirror of relationships.job.data.id, used by the JobIdIndex GSI ('list meetings for this job'). Derived server-side from relationships.job."
|
|
15095
|
+
},
|
|
15096
|
+
"hostId": {
|
|
15097
|
+
"type": "string",
|
|
15098
|
+
"description": "Top-level scalar mirror of relationships.host.data.id (always a users id - human recruiter or boe user). Used by the HostIdIndex GSI for the 'my meetings' dashboard. Derived server-side from relationships.host."
|
|
15099
|
+
},
|
|
15100
|
+
"notetakerEnabled": {
|
|
15101
|
+
"type": "boolean",
|
|
15102
|
+
"default": true,
|
|
15103
|
+
"description": "When true (default), human-hosted meetings auto-dispatch a Boe notetaker bot at meeting start time. Set false on createMeeting to opt out for sensitive sessions. Ignored when the meeting is itself AI-hosted (host.data.id is a boe user); the host bot already takes notes."
|
|
15010
15104
|
},
|
|
15011
15105
|
"recordingStatus": {
|
|
15012
15106
|
"type": "string",
|
|
@@ -15252,6 +15346,24 @@
|
|
|
15252
15346
|
"operationId": "meetingOptions"
|
|
15253
15347
|
}
|
|
15254
15348
|
},
|
|
15349
|
+
{
|
|
15350
|
+
"name": "list_meeting_attendees",
|
|
15351
|
+
"description": "List Meeting Attendees",
|
|
15352
|
+
"inputSchema": {
|
|
15353
|
+
"type": "object",
|
|
15354
|
+
"properties": {
|
|
15355
|
+
"include": {
|
|
15356
|
+
"type": "string",
|
|
15357
|
+
"description": "JSON:API compound document request - comma-separated list of relationship paths to include in the response (e.g. `feedbacks`, `feedbacks,boeUser`). Currently advisory: the service always returns all declared relationships with empty defaults."
|
|
15358
|
+
}
|
|
15359
|
+
}
|
|
15360
|
+
},
|
|
15361
|
+
"_meta": {
|
|
15362
|
+
"method": "GET",
|
|
15363
|
+
"path": "/v1/meetings/{meetingId}/attendees",
|
|
15364
|
+
"operationId": "listMeetingAttendees"
|
|
15365
|
+
}
|
|
15366
|
+
},
|
|
15255
15367
|
{
|
|
15256
15368
|
"name": "create_meeting_attendee",
|
|
15257
15369
|
"description": "Create Meeting Attendee",
|
|
@@ -15279,18 +15391,103 @@
|
|
|
15279
15391
|
"attributes": {
|
|
15280
15392
|
"title": "MeetingAttendeeAttributesSchema",
|
|
15281
15393
|
"type": "object",
|
|
15394
|
+
"description": "Chime attendee record - someone (or some bot) with a live or terminated\nChime SDK attendee for this meeting. Unified across human-auth +\nhuman-guest + AI; principalType + the optional relationships disambiguate.\nUsed both as the createMeetingAttendee request body shape (subset of fields\naccepted - server ignores fields it sets itself) and as the response shape.",
|
|
15282
15395
|
"properties": {
|
|
15396
|
+
"chimeAttendeeId": {
|
|
15397
|
+
"type": "string",
|
|
15398
|
+
"description": "Chime SDK attendee id. Server-generated, immutable. Also the resource id of this attendee. Not accepted on the request - server allocates."
|
|
15399
|
+
},
|
|
15400
|
+
"externalUserId": {
|
|
15401
|
+
"type": "string",
|
|
15402
|
+
"description": "Namespace-prefixed identifier sent to Chime CreateAttendee. Format: `user:<userId>` for auth humans, `guest:<guestId>` for lobby walk-ins, `boe:<userId>` for AI users. Visible in Chime State Change events so any consumer can identify the principal type without a DB join. Derived server-side from principalType / user.type - do not set on the request."
|
|
15403
|
+
},
|
|
15404
|
+
"joinToken": {
|
|
15405
|
+
"type": "string",
|
|
15406
|
+
"description": "One-time Chime SDK join token. Present only on the createMeetingAttendee response; do NOT cache or re-use - request a fresh attendee if the join fails."
|
|
15407
|
+
},
|
|
15408
|
+
"principalType": {
|
|
15409
|
+
"type": "string",
|
|
15410
|
+
"enum": [
|
|
15411
|
+
"user",
|
|
15412
|
+
"candidate",
|
|
15413
|
+
"talent",
|
|
15414
|
+
"guest"
|
|
15415
|
+
],
|
|
15416
|
+
"description": "Type of the underlying principal who owns this attendance. Mirrors call.fromType / call.toType taxonomy so the same vocabulary spans channels. Required on createMeetingAttendee request."
|
|
15417
|
+
},
|
|
15418
|
+
"principalId": {
|
|
15419
|
+
"type": "string",
|
|
15420
|
+
"description": "Stable id of the principal (e.g. usr-anna, cnd-tomek, gst-xyz). For namespace `boe:` attendees this is the boe user's id - Boe is a user just like a human, the principalType is still 'user'. Required on createMeetingAttendee request unless principalType=guest (then the server allocates a guest id)."
|
|
15421
|
+
},
|
|
15283
15422
|
"name": {
|
|
15284
|
-
"type": "string"
|
|
15423
|
+
"type": "string",
|
|
15424
|
+
"description": "Display name shown in the roster. Source: user.name for principalType=user (auth or boe), lobby-typed name for guest, candidate/talent name for those types. Accepted on the request as an override; otherwise server resolves it from the principal."
|
|
15425
|
+
},
|
|
15426
|
+
"role": {
|
|
15427
|
+
"type": "string",
|
|
15428
|
+
"enum": [
|
|
15429
|
+
"host",
|
|
15430
|
+
"attendee",
|
|
15431
|
+
"candidate",
|
|
15432
|
+
"observer",
|
|
15433
|
+
"interviewer",
|
|
15434
|
+
"notetaker",
|
|
15435
|
+
"sales",
|
|
15436
|
+
"other"
|
|
15437
|
+
],
|
|
15438
|
+
"description": "Function this attendee plays in THIS meeting. Distinct from user.type (which says human-vs-bot at the user level). At most one `host` per meeting. AI bot roles (interviewer / notetaker / sales) drive prompt template selection in the bot container."
|
|
15439
|
+
},
|
|
15440
|
+
"status": {
|
|
15441
|
+
"type": "string",
|
|
15442
|
+
"enum": [
|
|
15443
|
+
"joining",
|
|
15444
|
+
"active",
|
|
15445
|
+
"left",
|
|
15446
|
+
"dropped",
|
|
15447
|
+
"ended",
|
|
15448
|
+
"error"
|
|
15449
|
+
],
|
|
15450
|
+
"description": "Lifecycle on the attendee record.\n joining - row created, attendee not yet on Chime grid (typical for bots between dispatch and Chime ack, or for fresh createMeetingAttendee responses pre-join)\n active - present on the Chime grid, audio bridging\n left - left cleanly (clicked leave or natural end)\n dropped - lost connection or network drop (per Chime AttendeeDropped event)\n ended - bot path: server-initiated dismiss (DELETE) or natural completion\n error - bot dispatch / join failed; see errorMessage\nServer-managed - do not set on the request."
|
|
15285
15451
|
},
|
|
15286
15452
|
"email": {
|
|
15287
|
-
"type": "string"
|
|
15453
|
+
"type": "string",
|
|
15454
|
+
"description": "Optional. Auth humans: from user profile (server-resolved). Guests: from lobby form (accepted on request)."
|
|
15288
15455
|
},
|
|
15289
|
-
"
|
|
15290
|
-
"type": "string"
|
|
15456
|
+
"phone": {
|
|
15457
|
+
"type": "string",
|
|
15458
|
+
"description": "Optional. Typed in lobby form when present (guest only)."
|
|
15291
15459
|
},
|
|
15292
|
-
"
|
|
15293
|
-
"type": "string"
|
|
15460
|
+
"voice": {
|
|
15461
|
+
"type": "string",
|
|
15462
|
+
"description": "AI only. Realtime model voice (alloy / echo / fable / onyx / nova / shimmer). Used at dispatch."
|
|
15463
|
+
},
|
|
15464
|
+
"config": {
|
|
15465
|
+
"type": "object",
|
|
15466
|
+
"additionalProperties": true,
|
|
15467
|
+
"description": "AI only. Per-bot runtime config: mode, language, targetLanguage, persona, faceId, context (job-context auto-enrichment seed). Echoed back so FE can confirm what the bot received."
|
|
15468
|
+
},
|
|
15469
|
+
"taskArn": {
|
|
15470
|
+
"type": "string",
|
|
15471
|
+
"description": "AI only. ECS task ARN for the bot (operational). Server-managed."
|
|
15472
|
+
},
|
|
15473
|
+
"errorMessage": {
|
|
15474
|
+
"type": "string",
|
|
15475
|
+
"description": "Populated when status=error."
|
|
15476
|
+
},
|
|
15477
|
+
"joinedAt": {
|
|
15478
|
+
"type": "string",
|
|
15479
|
+
"format": "date-time",
|
|
15480
|
+
"description": "Server-stamped from chime:AttendeeJoined event."
|
|
15481
|
+
},
|
|
15482
|
+
"leftAt": {
|
|
15483
|
+
"type": "string",
|
|
15484
|
+
"format": "date-time",
|
|
15485
|
+
"description": "Server-stamped from chime:AttendeeLeft / Dropped event."
|
|
15486
|
+
},
|
|
15487
|
+
"chimeMeetingData": {
|
|
15488
|
+
"type": "object",
|
|
15489
|
+
"additionalProperties": true,
|
|
15490
|
+
"description": "Raw AWS Chime CreateMeeting `Meeting` object - passed verbatim to chime-sdk-js. Only on the createMeetingAttendee response (so the joining client gets everything it needs in one round-trip); not stored on the row."
|
|
15294
15491
|
}
|
|
15295
15492
|
}
|
|
15296
15493
|
}
|
|
@@ -15477,143 +15674,42 @@
|
|
|
15477
15674
|
}
|
|
15478
15675
|
},
|
|
15479
15676
|
{
|
|
15480
|
-
"name": "
|
|
15481
|
-
"description": "
|
|
15482
|
-
"inputSchema": {
|
|
15483
|
-
"title": "CreateMeetingAiAttendeeRequestBody",
|
|
15484
|
-
"type": "object",
|
|
15485
|
-
"required": [
|
|
15486
|
-
"data"
|
|
15487
|
-
],
|
|
15488
|
-
"properties": {
|
|
15489
|
-
"data": {
|
|
15490
|
-
"title": "CreateMeetingAiAttendeeRequestBodyData",
|
|
15491
|
-
"type": "object",
|
|
15492
|
-
"required": [
|
|
15493
|
-
"type",
|
|
15494
|
-
"attributes"
|
|
15495
|
-
],
|
|
15496
|
-
"properties": {
|
|
15497
|
-
"type": {
|
|
15498
|
-
"type": "string",
|
|
15499
|
-
"enum": [
|
|
15500
|
-
"ai-attendees"
|
|
15501
|
-
]
|
|
15502
|
-
},
|
|
15503
|
-
"attributes": {
|
|
15504
|
-
"title": "MeetingAiAttendeeSettingsSchema",
|
|
15505
|
-
"type": "object",
|
|
15506
|
-
"description": "Settings supplied at createMeetingAiAttendee time. Boe always\njoins with mic on, camera off; toggle via 'boe-control' Chime\nDataMessage at runtime.",
|
|
15507
|
-
"properties": {
|
|
15508
|
-
"displayName": {
|
|
15509
|
-
"type": "string",
|
|
15510
|
-
"default": "Boe"
|
|
15511
|
-
},
|
|
15512
|
-
"voice": {
|
|
15513
|
-
"type": "string",
|
|
15514
|
-
"default": "alloy"
|
|
15515
|
-
},
|
|
15516
|
-
"language": {
|
|
15517
|
-
"type": "string",
|
|
15518
|
-
"description": "Reply language for Boe's assistant behaviour (e.g. English)"
|
|
15519
|
-
},
|
|
15520
|
-
"faceId": {
|
|
15521
|
-
"type": "string",
|
|
15522
|
-
"description": "Simli avatar face UUID for camera_on. Falls back to the tenant default if omitted."
|
|
15523
|
-
},
|
|
15524
|
-
"persona": {
|
|
15525
|
-
"type": "string",
|
|
15526
|
-
"description": "Optional persona text appended to the base system prompt"
|
|
15527
|
-
},
|
|
15528
|
-
"role": {
|
|
15529
|
-
"type": "string",
|
|
15530
|
-
"enum": [
|
|
15531
|
-
"interviewer",
|
|
15532
|
-
"notetaker",
|
|
15533
|
-
"sales"
|
|
15534
|
-
],
|
|
15535
|
-
"description": "Picks a system prompt template from the bot container's\nprompt/<role>.md library.\n'interviewer' drives a structured screening conversation\n with a candidate (compliance, behavioral block, etc.).\n'notetaker' silently observes and captures action items,\n decisions, and open questions; speaks only when addressed.\n'sales' runs a discovery + pitch conversation with a\n prospect, advances toward a concrete next step. No\n commercial commitments on the call.\nOmit (or pass empty) for the generic silent-listening\nassistant prompt - back-compat default."
|
|
15536
|
-
},
|
|
15537
|
-
"context": {
|
|
15538
|
-
"type": "object",
|
|
15539
|
-
"additionalProperties": true,
|
|
15540
|
-
"description": "Per-meeting context values used to fill {placeholder} tokens\nin the chosen role's prompt template. The required keys depend\non the role - the prompt itself documents what it expects.\n\nBE-side enrichment: for role=interviewer, supplying just\n`{ \"jobId\": \"...\" }` causes the BE to fetch the job row and\nauto-populate roleName, roleDescription, mustHaves,\ncompetencies, workLocation, workMode, workHours, salaryRange,\nroleDetailShareable, and companyInfoShareable from it. Any\nadditional keys you supply override the assembled values\n(FE wins on conflicts). Use this to inject recruiterNotes,\nnextStepsShareable, expectedTimeline, and any field you want\nto override.\n\nMissing or empty values are substituted with the literal\nstring \"not provided\"; the prompt is written to handle that\ngracefully (\"do NOT make up missing fields\"). Each string\nvalue is capped at 1500 chars - the BE truncates and logs\na warning if exceeded (ECS RunTask containerOverrides has\nan 8KB total limit across all env vars)."
|
|
15541
|
-
}
|
|
15542
|
-
}
|
|
15543
|
-
}
|
|
15544
|
-
}
|
|
15545
|
-
}
|
|
15546
|
-
}
|
|
15547
|
-
},
|
|
15548
|
-
"_meta": {
|
|
15549
|
-
"method": "POST",
|
|
15550
|
-
"path": "/v1/meetings/{meetingId}/ai-attendees",
|
|
15551
|
-
"operationId": "createMeetingAiAttendee"
|
|
15552
|
-
}
|
|
15553
|
-
},
|
|
15554
|
-
{
|
|
15555
|
-
"name": "list_meeting_ai_attendees",
|
|
15556
|
-
"description": "List Meeting AI Attendees",
|
|
15557
|
-
"inputSchema": {
|
|
15558
|
-
"type": "object",
|
|
15559
|
-
"properties": {}
|
|
15560
|
-
},
|
|
15561
|
-
"_meta": {
|
|
15562
|
-
"method": "GET",
|
|
15563
|
-
"path": "/v1/meetings/{meetingId}/ai-attendees",
|
|
15564
|
-
"operationId": "listMeetingAiAttendees"
|
|
15565
|
-
}
|
|
15566
|
-
},
|
|
15567
|
-
{
|
|
15568
|
-
"name": "meeting_ai_attendees_options",
|
|
15569
|
-
"description": "Meeting AI Attendees Options",
|
|
15570
|
-
"inputSchema": {
|
|
15571
|
-
"type": "object",
|
|
15572
|
-
"properties": {}
|
|
15573
|
-
},
|
|
15574
|
-
"_meta": {
|
|
15575
|
-
"method": "OPTIONS",
|
|
15576
|
-
"path": "/v1/meetings/{meetingId}/ai-attendees",
|
|
15577
|
-
"operationId": "meetingAiAttendeesOptions"
|
|
15578
|
-
}
|
|
15579
|
-
},
|
|
15580
|
-
{
|
|
15581
|
-
"name": "show_meeting_ai_attendee",
|
|
15582
|
-
"description": "Show Meeting AI Attendee",
|
|
15677
|
+
"name": "show_meeting_attendee",
|
|
15678
|
+
"description": "Show Meeting Attendee",
|
|
15583
15679
|
"inputSchema": {
|
|
15584
15680
|
"type": "object",
|
|
15585
15681
|
"properties": {}
|
|
15586
15682
|
},
|
|
15587
15683
|
"_meta": {
|
|
15588
15684
|
"method": "GET",
|
|
15589
|
-
"path": "/v1/meetings/{meetingId}/
|
|
15590
|
-
"operationId": "
|
|
15685
|
+
"path": "/v1/meetings/{meetingId}/attendees/{attendeeId}",
|
|
15686
|
+
"operationId": "showMeetingAttendee"
|
|
15591
15687
|
}
|
|
15592
15688
|
},
|
|
15593
15689
|
{
|
|
15594
|
-
"name": "
|
|
15595
|
-
"description": "
|
|
15690
|
+
"name": "delete_meeting_attendee",
|
|
15691
|
+
"description": "Remove Meeting Attendee",
|
|
15596
15692
|
"inputSchema": {
|
|
15597
15693
|
"type": "object",
|
|
15598
15694
|
"properties": {}
|
|
15599
15695
|
},
|
|
15600
15696
|
"_meta": {
|
|
15601
15697
|
"method": "DELETE",
|
|
15602
|
-
"path": "/v1/meetings/{meetingId}/
|
|
15603
|
-
"operationId": "
|
|
15698
|
+
"path": "/v1/meetings/{meetingId}/attendees/{attendeeId}",
|
|
15699
|
+
"operationId": "deleteMeetingAttendee"
|
|
15604
15700
|
}
|
|
15605
15701
|
},
|
|
15606
15702
|
{
|
|
15607
|
-
"name": "
|
|
15608
|
-
"description": "Meeting
|
|
15703
|
+
"name": "meeting_attendee_options",
|
|
15704
|
+
"description": "Meeting Attendee Options",
|
|
15609
15705
|
"inputSchema": {
|
|
15610
15706
|
"type": "object",
|
|
15611
15707
|
"properties": {}
|
|
15612
15708
|
},
|
|
15613
15709
|
"_meta": {
|
|
15614
15710
|
"method": "OPTIONS",
|
|
15615
|
-
"path": "/v1/meetings/{meetingId}/
|
|
15616
|
-
"operationId": "
|
|
15711
|
+
"path": "/v1/meetings/{meetingId}/attendees/{attendeeId}",
|
|
15712
|
+
"operationId": "meetingAttendeeOptions"
|
|
15617
15713
|
}
|
|
15618
15714
|
},
|
|
15619
15715
|
{
|