@smartytalent/mcp-tools 0.1.33-dev.69 → 0.1.33-dev.70
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 +52 -44
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -14518,7 +14518,7 @@
|
|
|
14518
14518
|
},
|
|
14519
14519
|
"recordingUrl": {
|
|
14520
14520
|
"type": "string",
|
|
14521
|
-
"description": "Post-meeting recording URL
|
|
14521
|
+
"description": "Post-meeting recording URL. Populated by different paths\ndepending on meetingType:\n - `chime`: presigned S3 URL minted on read (in showMeeting)\n once `concatenationStatus=success`. Null until then.\n - `recall`: written by the recall.ai webhook handler with\n the recall.ai-hosted recording URL.\n - `external`: null - no recording captured.\nFE should treat presence-not-null as \"playable\" regardless\nof meetingType."
|
|
14522
14522
|
},
|
|
14523
14523
|
"transcript": {
|
|
14524
14524
|
"type": "object",
|
|
@@ -14565,27 +14565,29 @@
|
|
|
14565
14565
|
"success",
|
|
14566
14566
|
"failed"
|
|
14567
14567
|
],
|
|
14568
|
-
"description": "Chime SDK Media Capture Pipeline lifecycle. Set by the Boe bot when it starts/stops the capture."
|
|
14568
|
+
"description": "Chime SDK Media Capture Pipeline lifecycle. Set by the Boe bot when it starts/stops the capture. Set only for `meetingType=chime`; null on recall/external."
|
|
14569
14569
|
},
|
|
14570
14570
|
"mediaCapturePipelineArn": {
|
|
14571
14571
|
"type": "string",
|
|
14572
|
-
"description": "Chime SDK Media Capture Pipeline ARN. Internal; FE shouldn't need this directly."
|
|
14572
|
+
"description": "Chime SDK Media Capture Pipeline ARN. Internal; FE shouldn't need this directly. Set only for `meetingType=chime`."
|
|
14573
14573
|
},
|
|
14574
14574
|
"recordingS3Prefix": {
|
|
14575
14575
|
"type": "string",
|
|
14576
|
-
"description": "S3 key prefix where capture pipeline wrote composited-video chunks. Inside the meeting service bucket."
|
|
14576
|
+
"description": "S3 key prefix where capture pipeline wrote composited-video chunks. Inside the meeting service bucket. Set only for `meetingType=chime`."
|
|
14577
14577
|
},
|
|
14578
14578
|
"recordingStartedAt": {
|
|
14579
14579
|
"type": "string",
|
|
14580
|
-
"format": "date-time"
|
|
14580
|
+
"format": "date-time",
|
|
14581
|
+
"description": "Set only for `meetingType=chime`."
|
|
14581
14582
|
},
|
|
14582
14583
|
"recordingEndedAt": {
|
|
14583
14584
|
"type": "string",
|
|
14584
|
-
"format": "date-time"
|
|
14585
|
+
"format": "date-time",
|
|
14586
|
+
"description": "Set only for `meetingType=chime`."
|
|
14585
14587
|
},
|
|
14586
14588
|
"recordingError": {
|
|
14587
14589
|
"type": "string",
|
|
14588
|
-
"description": "Set when recordingStatus=failed
|
|
14590
|
+
"description": "Set when `recordingStatus=failed`. Includes the AWS error name + message. Set only for `meetingType=chime`."
|
|
14589
14591
|
},
|
|
14590
14592
|
"concatenationStatus": {
|
|
14591
14593
|
"type": "string",
|
|
@@ -14594,26 +14596,29 @@
|
|
|
14594
14596
|
"success",
|
|
14595
14597
|
"failed"
|
|
14596
14598
|
],
|
|
14597
|
-
"description": "Chime SDK Media Concatenation Pipeline lifecycle. Concat merges the ~5s capture chunks into one composited-video.mp4."
|
|
14599
|
+
"description": "Chime SDK Media Concatenation Pipeline lifecycle. Concat merges the ~5s capture chunks into one composited-video.mp4. Flipped to `success` by the ffmpeg-extract Lambda the moment the merged MP4 lands in S3. Set only for `meetingType=chime`."
|
|
14598
14600
|
},
|
|
14599
14601
|
"concatenationPipelineArn": {
|
|
14600
14602
|
"type": "string",
|
|
14601
|
-
"description": "Concat pipeline ARN. Last path component is the {concatId} used as the merged MP4 filename."
|
|
14603
|
+
"description": "Concat pipeline ARN. Last path component is the {concatId} used as the merged MP4 filename. Set only for `meetingType=chime`."
|
|
14602
14604
|
},
|
|
14603
14605
|
"concatenationS3Prefix": {
|
|
14604
14606
|
"type": "string",
|
|
14605
|
-
"description": "S3 key prefix where the concat output lands. Usually {shardId}/{meetingId}/merged/."
|
|
14607
|
+
"description": "S3 key prefix where the concat output lands. Usually {shardId}/{meetingId}/merged/. Set only for `meetingType=chime`."
|
|
14606
14608
|
},
|
|
14607
14609
|
"concatenationStartedAt": {
|
|
14608
14610
|
"type": "string",
|
|
14609
|
-
"format": "date-time"
|
|
14611
|
+
"format": "date-time",
|
|
14612
|
+
"description": "Set only for `meetingType=chime`."
|
|
14610
14613
|
},
|
|
14611
14614
|
"concatenationEndedAt": {
|
|
14612
14615
|
"type": "string",
|
|
14613
|
-
"format": "date-time"
|
|
14616
|
+
"format": "date-time",
|
|
14617
|
+
"description": "Set only for `meetingType=chime`."
|
|
14614
14618
|
},
|
|
14615
14619
|
"concatenationError": {
|
|
14616
|
-
"type": "string"
|
|
14620
|
+
"type": "string",
|
|
14621
|
+
"description": "Set when `concatenationStatus=failed`. Set only for `meetingType=chime`."
|
|
14617
14622
|
},
|
|
14618
14623
|
"aiProcessingStatus": {
|
|
14619
14624
|
"type": "string",
|
|
@@ -14704,12 +14709,8 @@
|
|
|
14704
14709
|
"description": "BCP-47 primary language of the meeting, auto-detected by gpt-audio."
|
|
14705
14710
|
},
|
|
14706
14711
|
"summary": {
|
|
14707
|
-
"type": "string",
|
|
14708
|
-
"description": "AI-generated 2-4 paragraph summary in the source languageCode. Use summaryByLocale for translated copies."
|
|
14709
|
-
},
|
|
14710
|
-
"summaryByLocale": {
|
|
14711
14712
|
"type": "object",
|
|
14712
|
-
"description": "
|
|
14713
|
+
"description": "AI-generated 2-4 paragraph summary per locale. Keyed by\nBCP-47 locale (e.g. `en-US`, `pl-PL`); values are strings.\nThe source language (matches `languageCode`) is always\npresent; tenant target locales are added by the\npost-meeting AI translation step. FE selects the locale to\nrender (no auto-flatten on read). Same shape as `keyNotes`.",
|
|
14713
14714
|
"additionalProperties": {
|
|
14714
14715
|
"type": "string"
|
|
14715
14716
|
}
|
|
@@ -14719,10 +14720,13 @@
|
|
|
14719
14720
|
"format": "date-time"
|
|
14720
14721
|
},
|
|
14721
14722
|
"keyNotes": {
|
|
14722
|
-
"type": "
|
|
14723
|
-
"description": "3-5 prose bullets distilling the meeting's
|
|
14724
|
-
"
|
|
14725
|
-
"type": "
|
|
14723
|
+
"type": "object",
|
|
14724
|
+
"description": "3-5 prose bullets per locale distilling the meeting's\nsubstance. Keyed by BCP-47 locale (e.g. `en-US`, `pl-PL`);\nvalues are arrays of strings. The source language (matches\n`languageCode`) is always present; tenant target locales are\nadded by the post-meeting AI translation step. FE selects\nthe locale to render (no auto-flatten on read).",
|
|
14725
|
+
"additionalProperties": {
|
|
14726
|
+
"type": "array",
|
|
14727
|
+
"items": {
|
|
14728
|
+
"type": "string"
|
|
14729
|
+
}
|
|
14726
14730
|
}
|
|
14727
14731
|
},
|
|
14728
14732
|
"topicsDiscussed": {
|
|
@@ -15090,7 +15094,7 @@
|
|
|
15090
15094
|
},
|
|
15091
15095
|
"recordingUrl": {
|
|
15092
15096
|
"type": "string",
|
|
15093
|
-
"description": "Post-meeting recording URL
|
|
15097
|
+
"description": "Post-meeting recording URL. Populated by different paths\ndepending on meetingType:\n - `chime`: presigned S3 URL minted on read (in showMeeting)\n once `concatenationStatus=success`. Null until then.\n - `recall`: written by the recall.ai webhook handler with\n the recall.ai-hosted recording URL.\n - `external`: null - no recording captured.\nFE should treat presence-not-null as \"playable\" regardless\nof meetingType."
|
|
15094
15098
|
},
|
|
15095
15099
|
"transcript": {
|
|
15096
15100
|
"type": "object",
|
|
@@ -15137,27 +15141,29 @@
|
|
|
15137
15141
|
"success",
|
|
15138
15142
|
"failed"
|
|
15139
15143
|
],
|
|
15140
|
-
"description": "Chime SDK Media Capture Pipeline lifecycle. Set by the Boe bot when it starts/stops the capture."
|
|
15144
|
+
"description": "Chime SDK Media Capture Pipeline lifecycle. Set by the Boe bot when it starts/stops the capture. Set only for `meetingType=chime`; null on recall/external."
|
|
15141
15145
|
},
|
|
15142
15146
|
"mediaCapturePipelineArn": {
|
|
15143
15147
|
"type": "string",
|
|
15144
|
-
"description": "Chime SDK Media Capture Pipeline ARN. Internal; FE shouldn't need this directly."
|
|
15148
|
+
"description": "Chime SDK Media Capture Pipeline ARN. Internal; FE shouldn't need this directly. Set only for `meetingType=chime`."
|
|
15145
15149
|
},
|
|
15146
15150
|
"recordingS3Prefix": {
|
|
15147
15151
|
"type": "string",
|
|
15148
|
-
"description": "S3 key prefix where capture pipeline wrote composited-video chunks. Inside the meeting service bucket."
|
|
15152
|
+
"description": "S3 key prefix where capture pipeline wrote composited-video chunks. Inside the meeting service bucket. Set only for `meetingType=chime`."
|
|
15149
15153
|
},
|
|
15150
15154
|
"recordingStartedAt": {
|
|
15151
15155
|
"type": "string",
|
|
15152
|
-
"format": "date-time"
|
|
15156
|
+
"format": "date-time",
|
|
15157
|
+
"description": "Set only for `meetingType=chime`."
|
|
15153
15158
|
},
|
|
15154
15159
|
"recordingEndedAt": {
|
|
15155
15160
|
"type": "string",
|
|
15156
|
-
"format": "date-time"
|
|
15161
|
+
"format": "date-time",
|
|
15162
|
+
"description": "Set only for `meetingType=chime`."
|
|
15157
15163
|
},
|
|
15158
15164
|
"recordingError": {
|
|
15159
15165
|
"type": "string",
|
|
15160
|
-
"description": "Set when recordingStatus=failed
|
|
15166
|
+
"description": "Set when `recordingStatus=failed`. Includes the AWS error name + message. Set only for `meetingType=chime`."
|
|
15161
15167
|
},
|
|
15162
15168
|
"concatenationStatus": {
|
|
15163
15169
|
"type": "string",
|
|
@@ -15166,26 +15172,29 @@
|
|
|
15166
15172
|
"success",
|
|
15167
15173
|
"failed"
|
|
15168
15174
|
],
|
|
15169
|
-
"description": "Chime SDK Media Concatenation Pipeline lifecycle. Concat merges the ~5s capture chunks into one composited-video.mp4."
|
|
15175
|
+
"description": "Chime SDK Media Concatenation Pipeline lifecycle. Concat merges the ~5s capture chunks into one composited-video.mp4. Flipped to `success` by the ffmpeg-extract Lambda the moment the merged MP4 lands in S3. Set only for `meetingType=chime`."
|
|
15170
15176
|
},
|
|
15171
15177
|
"concatenationPipelineArn": {
|
|
15172
15178
|
"type": "string",
|
|
15173
|
-
"description": "Concat pipeline ARN. Last path component is the {concatId} used as the merged MP4 filename."
|
|
15179
|
+
"description": "Concat pipeline ARN. Last path component is the {concatId} used as the merged MP4 filename. Set only for `meetingType=chime`."
|
|
15174
15180
|
},
|
|
15175
15181
|
"concatenationS3Prefix": {
|
|
15176
15182
|
"type": "string",
|
|
15177
|
-
"description": "S3 key prefix where the concat output lands. Usually {shardId}/{meetingId}/merged/."
|
|
15183
|
+
"description": "S3 key prefix where the concat output lands. Usually {shardId}/{meetingId}/merged/. Set only for `meetingType=chime`."
|
|
15178
15184
|
},
|
|
15179
15185
|
"concatenationStartedAt": {
|
|
15180
15186
|
"type": "string",
|
|
15181
|
-
"format": "date-time"
|
|
15187
|
+
"format": "date-time",
|
|
15188
|
+
"description": "Set only for `meetingType=chime`."
|
|
15182
15189
|
},
|
|
15183
15190
|
"concatenationEndedAt": {
|
|
15184
15191
|
"type": "string",
|
|
15185
|
-
"format": "date-time"
|
|
15192
|
+
"format": "date-time",
|
|
15193
|
+
"description": "Set only for `meetingType=chime`."
|
|
15186
15194
|
},
|
|
15187
15195
|
"concatenationError": {
|
|
15188
|
-
"type": "string"
|
|
15196
|
+
"type": "string",
|
|
15197
|
+
"description": "Set when `concatenationStatus=failed`. Set only for `meetingType=chime`."
|
|
15189
15198
|
},
|
|
15190
15199
|
"aiProcessingStatus": {
|
|
15191
15200
|
"type": "string",
|
|
@@ -15276,12 +15285,8 @@
|
|
|
15276
15285
|
"description": "BCP-47 primary language of the meeting, auto-detected by gpt-audio."
|
|
15277
15286
|
},
|
|
15278
15287
|
"summary": {
|
|
15279
|
-
"type": "string",
|
|
15280
|
-
"description": "AI-generated 2-4 paragraph summary in the source languageCode. Use summaryByLocale for translated copies."
|
|
15281
|
-
},
|
|
15282
|
-
"summaryByLocale": {
|
|
15283
15288
|
"type": "object",
|
|
15284
|
-
"description": "
|
|
15289
|
+
"description": "AI-generated 2-4 paragraph summary per locale. Keyed by\nBCP-47 locale (e.g. `en-US`, `pl-PL`); values are strings.\nThe source language (matches `languageCode`) is always\npresent; tenant target locales are added by the\npost-meeting AI translation step. FE selects the locale to\nrender (no auto-flatten on read). Same shape as `keyNotes`.",
|
|
15285
15290
|
"additionalProperties": {
|
|
15286
15291
|
"type": "string"
|
|
15287
15292
|
}
|
|
@@ -15291,10 +15296,13 @@
|
|
|
15291
15296
|
"format": "date-time"
|
|
15292
15297
|
},
|
|
15293
15298
|
"keyNotes": {
|
|
15294
|
-
"type": "
|
|
15295
|
-
"description": "3-5 prose bullets distilling the meeting's
|
|
15296
|
-
"
|
|
15297
|
-
"type": "
|
|
15299
|
+
"type": "object",
|
|
15300
|
+
"description": "3-5 prose bullets per locale distilling the meeting's\nsubstance. Keyed by BCP-47 locale (e.g. `en-US`, `pl-PL`);\nvalues are arrays of strings. The source language (matches\n`languageCode`) is always present; tenant target locales are\nadded by the post-meeting AI translation step. FE selects\nthe locale to render (no auto-flatten on read).",
|
|
15301
|
+
"additionalProperties": {
|
|
15302
|
+
"type": "array",
|
|
15303
|
+
"items": {
|
|
15304
|
+
"type": "string"
|
|
15305
|
+
}
|
|
15298
15306
|
}
|
|
15299
15307
|
},
|
|
15300
15308
|
"topicsDiscussed": {
|