@amigo-ai/platform-sdk 0.12.0 → 0.13.0

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.
@@ -5415,6 +5415,26 @@ export interface paths {
5415
5415
  patch?: never;
5416
5416
  trace?: never;
5417
5417
  };
5418
+ "/v1/{workspace_id}/scribe/recordings/transcribe": {
5419
+ parameters: {
5420
+ query?: never;
5421
+ header?: never;
5422
+ path?: never;
5423
+ cookie?: never;
5424
+ };
5425
+ get?: never;
5426
+ put?: never;
5427
+ /**
5428
+ * Transcribe Scribe Recording
5429
+ * @description Transcribe a completed Superscribe clinical recording.
5430
+ */
5431
+ post: operations["transcribe-scribe-recording"];
5432
+ delete?: never;
5433
+ options?: never;
5434
+ head?: never;
5435
+ patch?: never;
5436
+ trace?: never;
5437
+ };
5418
5438
  "/v1/{workspace_id}/sensorium/connector-health": {
5419
5439
  parameters: {
5420
5440
  query?: never;
@@ -9157,6 +9177,22 @@ export interface components {
9157
9177
  */
9158
9178
  use_case_id: string;
9159
9179
  };
9180
+ /** Body_transcribe-scribe-recording */
9181
+ "Body_transcribe-scribe-recording": {
9182
+ /** Audio */
9183
+ audio: string;
9184
+ /** Keyterms */
9185
+ keyterms?: string | null;
9186
+ /** Language */
9187
+ language?: string | null;
9188
+ /** Patient Entity Id */
9189
+ patient_entity_id?: string | null;
9190
+ /**
9191
+ * Service Id
9192
+ * Format: uuid
9193
+ */
9194
+ service_id: string;
9195
+ };
9160
9196
  /** Body_verify-voiceprint */
9161
9197
  "Body_verify-voiceprint": {
9162
9198
  /** Audio */
@@ -20304,6 +20340,55 @@ export interface components {
20304
20340
  */
20305
20341
  voice_auth_enabled?: boolean;
20306
20342
  };
20343
+ /** ScribeTranscriptionChunk */
20344
+ ScribeTranscriptionChunk: {
20345
+ /** Confidence */
20346
+ confidence?: number | null;
20347
+ /** Duration Seconds */
20348
+ duration_seconds?: number | null;
20349
+ /** End Seconds */
20350
+ end_seconds: number;
20351
+ /** Index */
20352
+ index: number;
20353
+ /** Start Seconds */
20354
+ start_seconds: number;
20355
+ /** Text */
20356
+ text: string;
20357
+ };
20358
+ /** ScribeTranscriptionResponse */
20359
+ ScribeTranscriptionResponse: {
20360
+ /** Chunk Count */
20361
+ chunk_count: number;
20362
+ /** Chunks */
20363
+ chunks?: components["schemas"]["ScribeTranscriptionChunk"][];
20364
+ /** Confidence */
20365
+ confidence?: number | null;
20366
+ /** Duration Seconds */
20367
+ duration_seconds: number;
20368
+ /** Keyterm Count */
20369
+ keyterm_count: number;
20370
+ /** Language */
20371
+ language: string;
20372
+ /** Model */
20373
+ model: string;
20374
+ /** Segments */
20375
+ segments?: components["schemas"]["ScribeTranscriptionSegment"][];
20376
+ /** Transcript */
20377
+ transcript: string;
20378
+ };
20379
+ /** ScribeTranscriptionSegment */
20380
+ ScribeTranscriptionSegment: {
20381
+ /** Confidence */
20382
+ confidence?: number | null;
20383
+ /** End Seconds */
20384
+ end_seconds?: number | null;
20385
+ /** Speaker */
20386
+ speaker?: number | null;
20387
+ /** Start Seconds */
20388
+ start_seconds?: number | null;
20389
+ /** Text */
20390
+ text: string;
20391
+ };
20307
20392
  /** SearchAvailableNumbersResponse */
20308
20393
  SearchAvailableNumbersResponse: {
20309
20394
  /** Numbers */
@@ -37389,6 +37474,41 @@ export interface operations {
37389
37474
  };
37390
37475
  };
37391
37476
  };
37477
+ "transcribe-scribe-recording": {
37478
+ parameters: {
37479
+ query?: never;
37480
+ header?: never;
37481
+ path: {
37482
+ workspace_id: string;
37483
+ };
37484
+ cookie?: never;
37485
+ };
37486
+ requestBody: {
37487
+ content: {
37488
+ "multipart/form-data": components["schemas"]["Body_transcribe-scribe-recording"];
37489
+ };
37490
+ };
37491
+ responses: {
37492
+ /** @description Successful Response */
37493
+ 200: {
37494
+ headers: {
37495
+ [name: string]: unknown;
37496
+ };
37497
+ content: {
37498
+ "application/json": components["schemas"]["ScribeTranscriptionResponse"];
37499
+ };
37500
+ };
37501
+ /** @description Validation Error */
37502
+ 422: {
37503
+ headers: {
37504
+ [name: string]: unknown;
37505
+ };
37506
+ content: {
37507
+ "application/json": components["schemas"]["HTTPValidationError"];
37508
+ };
37509
+ };
37510
+ };
37511
+ };
37392
37512
  "get-sensorium-connector-health": {
37393
37513
  parameters: {
37394
37514
  query?: never;