@smartytalent/mcp-tools 0.1.33-dev.65 → 0.1.33-dev.67
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 +368 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -15502,6 +15502,23 @@
|
|
|
15502
15502
|
"format": "date-time",
|
|
15503
15503
|
"description": "Server-stamped from chime:AttendeeLeft / Dropped event."
|
|
15504
15504
|
},
|
|
15505
|
+
"experienceRating": {
|
|
15506
|
+
"type": "object",
|
|
15507
|
+
"description": "Post-meeting subjective rating submitted by the attendee after\nthey left. Each dimension is 1-5 (1=very bad, 5=very good).\nSubmit gate (server-side): only accepted while status is in\n{left, dropped, ended} - 400 otherwise. submittedAt is\nserver-stamped; clients cannot set it. Schema is forward-\ncompatible - new dimensions can be added without migration.",
|
|
15508
|
+
"properties": {
|
|
15509
|
+
"audioVideo": {
|
|
15510
|
+
"type": "integer",
|
|
15511
|
+
"minimum": 1,
|
|
15512
|
+
"maximum": 5,
|
|
15513
|
+
"description": "1=Very bad, 5=Very good. Captures the attendee's perception of audio + video quality during the call."
|
|
15514
|
+
},
|
|
15515
|
+
"submittedAt": {
|
|
15516
|
+
"type": "string",
|
|
15517
|
+
"format": "date-time",
|
|
15518
|
+
"description": "Server-stamped on PATCH. Client-supplied values are ignored."
|
|
15519
|
+
}
|
|
15520
|
+
}
|
|
15521
|
+
},
|
|
15505
15522
|
"chimeMeetingData": {
|
|
15506
15523
|
"type": "object",
|
|
15507
15524
|
"additionalProperties": true,
|
|
@@ -15532,6 +15549,19 @@
|
|
|
15532
15549
|
"operationId": "meetingAttendeesOptions"
|
|
15533
15550
|
}
|
|
15534
15551
|
},
|
|
15552
|
+
{
|
|
15553
|
+
"name": "list_guest_meeting_attendees",
|
|
15554
|
+
"description": "List Guest Meeting Attendees",
|
|
15555
|
+
"inputSchema": {
|
|
15556
|
+
"type": "object",
|
|
15557
|
+
"properties": {}
|
|
15558
|
+
},
|
|
15559
|
+
"_meta": {
|
|
15560
|
+
"method": "GET",
|
|
15561
|
+
"path": "/v1/guest/meetings/{meetingId}/attendees",
|
|
15562
|
+
"operationId": "listGuestMeetingAttendees"
|
|
15563
|
+
}
|
|
15564
|
+
},
|
|
15535
15565
|
{
|
|
15536
15566
|
"name": "create_guest_meeting_attendee",
|
|
15537
15567
|
"description": "Create Guest Meeting Attendee",
|
|
@@ -15652,6 +15682,23 @@
|
|
|
15652
15682
|
"format": "date-time",
|
|
15653
15683
|
"description": "Server-stamped from chime:AttendeeLeft / Dropped event."
|
|
15654
15684
|
},
|
|
15685
|
+
"experienceRating": {
|
|
15686
|
+
"type": "object",
|
|
15687
|
+
"description": "Post-meeting subjective rating submitted by the attendee after\nthey left. Each dimension is 1-5 (1=very bad, 5=very good).\nSubmit gate (server-side): only accepted while status is in\n{left, dropped, ended} - 400 otherwise. submittedAt is\nserver-stamped; clients cannot set it. Schema is forward-\ncompatible - new dimensions can be added without migration.",
|
|
15688
|
+
"properties": {
|
|
15689
|
+
"audioVideo": {
|
|
15690
|
+
"type": "integer",
|
|
15691
|
+
"minimum": 1,
|
|
15692
|
+
"maximum": 5,
|
|
15693
|
+
"description": "1=Very bad, 5=Very good. Captures the attendee's perception of audio + video quality during the call."
|
|
15694
|
+
},
|
|
15695
|
+
"submittedAt": {
|
|
15696
|
+
"type": "string",
|
|
15697
|
+
"format": "date-time",
|
|
15698
|
+
"description": "Server-stamped on PATCH. Client-supplied values are ignored."
|
|
15699
|
+
}
|
|
15700
|
+
}
|
|
15701
|
+
},
|
|
15655
15702
|
"chimeMeetingData": {
|
|
15656
15703
|
"type": "object",
|
|
15657
15704
|
"additionalProperties": true,
|
|
@@ -15682,6 +15729,173 @@
|
|
|
15682
15729
|
"operationId": "guestMeetingAttendeesOptions"
|
|
15683
15730
|
}
|
|
15684
15731
|
},
|
|
15732
|
+
{
|
|
15733
|
+
"name": "patch_guest_meeting_attendee",
|
|
15734
|
+
"description": "Patch Guest Meeting Attendee",
|
|
15735
|
+
"inputSchema": {
|
|
15736
|
+
"title": "CreateMeetingAttendeeRequestBody",
|
|
15737
|
+
"type": "object",
|
|
15738
|
+
"required": [
|
|
15739
|
+
"data"
|
|
15740
|
+
],
|
|
15741
|
+
"properties": {
|
|
15742
|
+
"data": {
|
|
15743
|
+
"title": "CreateMeetingAttendeeRequestBodyData",
|
|
15744
|
+
"type": "object",
|
|
15745
|
+
"required": [
|
|
15746
|
+
"type",
|
|
15747
|
+
"attributes"
|
|
15748
|
+
],
|
|
15749
|
+
"properties": {
|
|
15750
|
+
"type": {
|
|
15751
|
+
"type": "string",
|
|
15752
|
+
"enum": [
|
|
15753
|
+
"attendees"
|
|
15754
|
+
]
|
|
15755
|
+
},
|
|
15756
|
+
"attributes": {
|
|
15757
|
+
"title": "MeetingAttendeeAttributesSchema",
|
|
15758
|
+
"type": "object",
|
|
15759
|
+
"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.",
|
|
15760
|
+
"properties": {
|
|
15761
|
+
"chimeAttendeeId": {
|
|
15762
|
+
"type": "string",
|
|
15763
|
+
"description": "Chime SDK attendee id. Server-generated, immutable. Also the resource id of this attendee. Not accepted on the request - server allocates."
|
|
15764
|
+
},
|
|
15765
|
+
"externalUserId": {
|
|
15766
|
+
"type": "string",
|
|
15767
|
+
"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."
|
|
15768
|
+
},
|
|
15769
|
+
"joinToken": {
|
|
15770
|
+
"type": "string",
|
|
15771
|
+
"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."
|
|
15772
|
+
},
|
|
15773
|
+
"principalType": {
|
|
15774
|
+
"type": "string",
|
|
15775
|
+
"enum": [
|
|
15776
|
+
"user",
|
|
15777
|
+
"candidate",
|
|
15778
|
+
"talent",
|
|
15779
|
+
"guest"
|
|
15780
|
+
],
|
|
15781
|
+
"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."
|
|
15782
|
+
},
|
|
15783
|
+
"principalId": {
|
|
15784
|
+
"type": "string",
|
|
15785
|
+
"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)."
|
|
15786
|
+
},
|
|
15787
|
+
"name": {
|
|
15788
|
+
"type": "string",
|
|
15789
|
+
"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."
|
|
15790
|
+
},
|
|
15791
|
+
"role": {
|
|
15792
|
+
"type": "string",
|
|
15793
|
+
"enum": [
|
|
15794
|
+
"host",
|
|
15795
|
+
"attendee",
|
|
15796
|
+
"candidate",
|
|
15797
|
+
"observer",
|
|
15798
|
+
"interviewer",
|
|
15799
|
+
"notetaker",
|
|
15800
|
+
"sales",
|
|
15801
|
+
"other"
|
|
15802
|
+
],
|
|
15803
|
+
"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."
|
|
15804
|
+
},
|
|
15805
|
+
"status": {
|
|
15806
|
+
"type": "string",
|
|
15807
|
+
"enum": [
|
|
15808
|
+
"joining",
|
|
15809
|
+
"active",
|
|
15810
|
+
"left",
|
|
15811
|
+
"dropped",
|
|
15812
|
+
"ended",
|
|
15813
|
+
"error"
|
|
15814
|
+
],
|
|
15815
|
+
"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."
|
|
15816
|
+
},
|
|
15817
|
+
"email": {
|
|
15818
|
+
"type": "string",
|
|
15819
|
+
"description": "Optional. Auth humans: from user profile (server-resolved). Guests: from lobby form (accepted on request)."
|
|
15820
|
+
},
|
|
15821
|
+
"phone": {
|
|
15822
|
+
"type": "string",
|
|
15823
|
+
"description": "Optional. Typed in lobby form when present (guest only)."
|
|
15824
|
+
},
|
|
15825
|
+
"voice": {
|
|
15826
|
+
"type": "string",
|
|
15827
|
+
"description": "AI only. Realtime model voice (alloy / echo / fable / onyx / nova / shimmer). Used at dispatch."
|
|
15828
|
+
},
|
|
15829
|
+
"config": {
|
|
15830
|
+
"type": "object",
|
|
15831
|
+
"additionalProperties": true,
|
|
15832
|
+
"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."
|
|
15833
|
+
},
|
|
15834
|
+
"taskArn": {
|
|
15835
|
+
"type": "string",
|
|
15836
|
+
"description": "AI only. ECS task ARN for the bot (operational). Server-managed."
|
|
15837
|
+
},
|
|
15838
|
+
"errorMessage": {
|
|
15839
|
+
"type": "string",
|
|
15840
|
+
"description": "Populated when status=error."
|
|
15841
|
+
},
|
|
15842
|
+
"joinedAt": {
|
|
15843
|
+
"type": "string",
|
|
15844
|
+
"format": "date-time",
|
|
15845
|
+
"description": "Server-stamped from chime:AttendeeJoined event."
|
|
15846
|
+
},
|
|
15847
|
+
"leftAt": {
|
|
15848
|
+
"type": "string",
|
|
15849
|
+
"format": "date-time",
|
|
15850
|
+
"description": "Server-stamped from chime:AttendeeLeft / Dropped event."
|
|
15851
|
+
},
|
|
15852
|
+
"experienceRating": {
|
|
15853
|
+
"type": "object",
|
|
15854
|
+
"description": "Post-meeting subjective rating submitted by the attendee after\nthey left. Each dimension is 1-5 (1=very bad, 5=very good).\nSubmit gate (server-side): only accepted while status is in\n{left, dropped, ended} - 400 otherwise. submittedAt is\nserver-stamped; clients cannot set it. Schema is forward-\ncompatible - new dimensions can be added without migration.",
|
|
15855
|
+
"properties": {
|
|
15856
|
+
"audioVideo": {
|
|
15857
|
+
"type": "integer",
|
|
15858
|
+
"minimum": 1,
|
|
15859
|
+
"maximum": 5,
|
|
15860
|
+
"description": "1=Very bad, 5=Very good. Captures the attendee's perception of audio + video quality during the call."
|
|
15861
|
+
},
|
|
15862
|
+
"submittedAt": {
|
|
15863
|
+
"type": "string",
|
|
15864
|
+
"format": "date-time",
|
|
15865
|
+
"description": "Server-stamped on PATCH. Client-supplied values are ignored."
|
|
15866
|
+
}
|
|
15867
|
+
}
|
|
15868
|
+
},
|
|
15869
|
+
"chimeMeetingData": {
|
|
15870
|
+
"type": "object",
|
|
15871
|
+
"additionalProperties": true,
|
|
15872
|
+
"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."
|
|
15873
|
+
}
|
|
15874
|
+
}
|
|
15875
|
+
}
|
|
15876
|
+
}
|
|
15877
|
+
}
|
|
15878
|
+
}
|
|
15879
|
+
},
|
|
15880
|
+
"_meta": {
|
|
15881
|
+
"method": "PATCH",
|
|
15882
|
+
"path": "/v1/guest/meetings/{meetingId}/attendees/{attendeeId}",
|
|
15883
|
+
"operationId": "patchGuestMeetingAttendee"
|
|
15884
|
+
}
|
|
15885
|
+
},
|
|
15886
|
+
{
|
|
15887
|
+
"name": "guest_meeting_attendee_options",
|
|
15888
|
+
"description": "Guest Meeting Attendee Options",
|
|
15889
|
+
"inputSchema": {
|
|
15890
|
+
"type": "object",
|
|
15891
|
+
"properties": {}
|
|
15892
|
+
},
|
|
15893
|
+
"_meta": {
|
|
15894
|
+
"method": "OPTIONS",
|
|
15895
|
+
"path": "/v1/guest/meetings/{meetingId}/attendees/{attendeeId}",
|
|
15896
|
+
"operationId": "guestMeetingAttendeeOptions"
|
|
15897
|
+
}
|
|
15898
|
+
},
|
|
15685
15899
|
{
|
|
15686
15900
|
"name": "meeting_transcription",
|
|
15687
15901
|
"description": "Manage Meeting Transcription",
|
|
@@ -15854,6 +16068,160 @@
|
|
|
15854
16068
|
"operationId": "showMeetingAttendee"
|
|
15855
16069
|
}
|
|
15856
16070
|
},
|
|
16071
|
+
{
|
|
16072
|
+
"name": "patch_meeting_attendee",
|
|
16073
|
+
"description": "Patch Meeting Attendee",
|
|
16074
|
+
"inputSchema": {
|
|
16075
|
+
"title": "CreateMeetingAttendeeRequestBody",
|
|
16076
|
+
"type": "object",
|
|
16077
|
+
"required": [
|
|
16078
|
+
"data"
|
|
16079
|
+
],
|
|
16080
|
+
"properties": {
|
|
16081
|
+
"data": {
|
|
16082
|
+
"title": "CreateMeetingAttendeeRequestBodyData",
|
|
16083
|
+
"type": "object",
|
|
16084
|
+
"required": [
|
|
16085
|
+
"type",
|
|
16086
|
+
"attributes"
|
|
16087
|
+
],
|
|
16088
|
+
"properties": {
|
|
16089
|
+
"type": {
|
|
16090
|
+
"type": "string",
|
|
16091
|
+
"enum": [
|
|
16092
|
+
"attendees"
|
|
16093
|
+
]
|
|
16094
|
+
},
|
|
16095
|
+
"attributes": {
|
|
16096
|
+
"title": "MeetingAttendeeAttributesSchema",
|
|
16097
|
+
"type": "object",
|
|
16098
|
+
"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.",
|
|
16099
|
+
"properties": {
|
|
16100
|
+
"chimeAttendeeId": {
|
|
16101
|
+
"type": "string",
|
|
16102
|
+
"description": "Chime SDK attendee id. Server-generated, immutable. Also the resource id of this attendee. Not accepted on the request - server allocates."
|
|
16103
|
+
},
|
|
16104
|
+
"externalUserId": {
|
|
16105
|
+
"type": "string",
|
|
16106
|
+
"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."
|
|
16107
|
+
},
|
|
16108
|
+
"joinToken": {
|
|
16109
|
+
"type": "string",
|
|
16110
|
+
"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."
|
|
16111
|
+
},
|
|
16112
|
+
"principalType": {
|
|
16113
|
+
"type": "string",
|
|
16114
|
+
"enum": [
|
|
16115
|
+
"user",
|
|
16116
|
+
"candidate",
|
|
16117
|
+
"talent",
|
|
16118
|
+
"guest"
|
|
16119
|
+
],
|
|
16120
|
+
"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."
|
|
16121
|
+
},
|
|
16122
|
+
"principalId": {
|
|
16123
|
+
"type": "string",
|
|
16124
|
+
"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)."
|
|
16125
|
+
},
|
|
16126
|
+
"name": {
|
|
16127
|
+
"type": "string",
|
|
16128
|
+
"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."
|
|
16129
|
+
},
|
|
16130
|
+
"role": {
|
|
16131
|
+
"type": "string",
|
|
16132
|
+
"enum": [
|
|
16133
|
+
"host",
|
|
16134
|
+
"attendee",
|
|
16135
|
+
"candidate",
|
|
16136
|
+
"observer",
|
|
16137
|
+
"interviewer",
|
|
16138
|
+
"notetaker",
|
|
16139
|
+
"sales",
|
|
16140
|
+
"other"
|
|
16141
|
+
],
|
|
16142
|
+
"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."
|
|
16143
|
+
},
|
|
16144
|
+
"status": {
|
|
16145
|
+
"type": "string",
|
|
16146
|
+
"enum": [
|
|
16147
|
+
"joining",
|
|
16148
|
+
"active",
|
|
16149
|
+
"left",
|
|
16150
|
+
"dropped",
|
|
16151
|
+
"ended",
|
|
16152
|
+
"error"
|
|
16153
|
+
],
|
|
16154
|
+
"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."
|
|
16155
|
+
},
|
|
16156
|
+
"email": {
|
|
16157
|
+
"type": "string",
|
|
16158
|
+
"description": "Optional. Auth humans: from user profile (server-resolved). Guests: from lobby form (accepted on request)."
|
|
16159
|
+
},
|
|
16160
|
+
"phone": {
|
|
16161
|
+
"type": "string",
|
|
16162
|
+
"description": "Optional. Typed in lobby form when present (guest only)."
|
|
16163
|
+
},
|
|
16164
|
+
"voice": {
|
|
16165
|
+
"type": "string",
|
|
16166
|
+
"description": "AI only. Realtime model voice (alloy / echo / fable / onyx / nova / shimmer). Used at dispatch."
|
|
16167
|
+
},
|
|
16168
|
+
"config": {
|
|
16169
|
+
"type": "object",
|
|
16170
|
+
"additionalProperties": true,
|
|
16171
|
+
"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."
|
|
16172
|
+
},
|
|
16173
|
+
"taskArn": {
|
|
16174
|
+
"type": "string",
|
|
16175
|
+
"description": "AI only. ECS task ARN for the bot (operational). Server-managed."
|
|
16176
|
+
},
|
|
16177
|
+
"errorMessage": {
|
|
16178
|
+
"type": "string",
|
|
16179
|
+
"description": "Populated when status=error."
|
|
16180
|
+
},
|
|
16181
|
+
"joinedAt": {
|
|
16182
|
+
"type": "string",
|
|
16183
|
+
"format": "date-time",
|
|
16184
|
+
"description": "Server-stamped from chime:AttendeeJoined event."
|
|
16185
|
+
},
|
|
16186
|
+
"leftAt": {
|
|
16187
|
+
"type": "string",
|
|
16188
|
+
"format": "date-time",
|
|
16189
|
+
"description": "Server-stamped from chime:AttendeeLeft / Dropped event."
|
|
16190
|
+
},
|
|
16191
|
+
"experienceRating": {
|
|
16192
|
+
"type": "object",
|
|
16193
|
+
"description": "Post-meeting subjective rating submitted by the attendee after\nthey left. Each dimension is 1-5 (1=very bad, 5=very good).\nSubmit gate (server-side): only accepted while status is in\n{left, dropped, ended} - 400 otherwise. submittedAt is\nserver-stamped; clients cannot set it. Schema is forward-\ncompatible - new dimensions can be added without migration.",
|
|
16194
|
+
"properties": {
|
|
16195
|
+
"audioVideo": {
|
|
16196
|
+
"type": "integer",
|
|
16197
|
+
"minimum": 1,
|
|
16198
|
+
"maximum": 5,
|
|
16199
|
+
"description": "1=Very bad, 5=Very good. Captures the attendee's perception of audio + video quality during the call."
|
|
16200
|
+
},
|
|
16201
|
+
"submittedAt": {
|
|
16202
|
+
"type": "string",
|
|
16203
|
+
"format": "date-time",
|
|
16204
|
+
"description": "Server-stamped on PATCH. Client-supplied values are ignored."
|
|
16205
|
+
}
|
|
16206
|
+
}
|
|
16207
|
+
},
|
|
16208
|
+
"chimeMeetingData": {
|
|
16209
|
+
"type": "object",
|
|
16210
|
+
"additionalProperties": true,
|
|
16211
|
+
"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."
|
|
16212
|
+
}
|
|
16213
|
+
}
|
|
16214
|
+
}
|
|
16215
|
+
}
|
|
16216
|
+
}
|
|
16217
|
+
}
|
|
16218
|
+
},
|
|
16219
|
+
"_meta": {
|
|
16220
|
+
"method": "PATCH",
|
|
16221
|
+
"path": "/v1/meetings/{meetingId}/attendees/{attendeeId}",
|
|
16222
|
+
"operationId": "patchMeetingAttendee"
|
|
16223
|
+
}
|
|
16224
|
+
},
|
|
15857
16225
|
{
|
|
15858
16226
|
"name": "delete_meeting_attendee",
|
|
15859
16227
|
"description": "Remove Meeting Attendee",
|