@gpt-platform/client 0.8.4 → 0.9.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.
- package/dist/index.d.mts +1609 -312
- package/dist/index.d.ts +1609 -312
- package/dist/index.js +2224 -323
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2223 -323
- package/dist/index.mjs.map +1 -1
- package/llms.txt +121 -65
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -123,13 +123,6 @@ correction reasons, or image reference
|
|
|
123
123
|
- `deleteTraining-examplesById()` - /training-examples/:id operation on training_example resource
|
|
124
124
|
- `deleteTraining-sessionsById()` - /training-sessions/:id operation on training_session resource
|
|
125
125
|
|
|
126
|
-
## Ai-message
|
|
127
|
-
|
|
128
|
-
- `getAiMessages()` - /ai/messages operation on ai-message resource
|
|
129
|
-
- `getAiMessagesById()` - /ai/messages/:id operation on ai-message resource
|
|
130
|
-
- `postAiMessages()` - Append a new message turn (system, user, or assistant) to a Conversation
|
|
131
|
-
- `deleteAiMessagesById()` - /ai/messages/:id operation on ai-message resource
|
|
132
|
-
|
|
133
126
|
## Amendment-request
|
|
134
127
|
|
|
135
128
|
- `getAmendment-requests()` - /amendment-requests operation on amendment-request resource
|
|
@@ -343,33 +336,94 @@ flags, workspace mode, and execution limits
|
|
|
343
336
|
- `postCde-scope-reports()` - Generate a PCI-DSS Cardholder Data Environment scope report for a workspace, classifying it as in-scope, out-of-scope, or connected based on ScanResult data
|
|
344
337
|
- `deleteCde-scope-reportsById()` - /cde-scope-reports/:id operation on cde-scope-report resource
|
|
345
338
|
|
|
339
|
+
## Chat-ai-message
|
|
340
|
+
|
|
341
|
+
- `getAiMessages()` - /ai/messages operation on chat-ai-message resource
|
|
342
|
+
- `getAiMessagesById()` - /ai/messages/:id operation on chat-ai-message resource
|
|
343
|
+
- `postAiMessages()` - Append a new message turn (system, user, or assistant) to a Conversation
|
|
344
|
+
- `deleteAiMessagesById()` - /ai/messages/:id operation on chat-ai-message resource
|
|
345
|
+
|
|
346
|
+
## Chat-conversation
|
|
347
|
+
|
|
348
|
+
- `getAiConversations()` - /ai/conversations operation on chat-conversation resource
|
|
349
|
+
- `getAiConversationsById()` - /ai/conversations/:id operation on chat-conversation resource
|
|
350
|
+
- `postAiConversations()` - Start a new AI conversation session with optional structured context data (e.g., prediction results to discuss)
|
|
351
|
+
- `patchAiConversationsById()` - Update the conversation title or replace the context data map
|
|
352
|
+
- `deleteAiConversationsById()` - /ai/conversations/:id operation on chat-conversation resource
|
|
353
|
+
|
|
354
|
+
## Chat-message
|
|
355
|
+
|
|
356
|
+
- `getMessages()` - /messages operation on chat-message resource
|
|
357
|
+
- `getMessagesById()` - /messages/:id operation on chat-message resource
|
|
358
|
+
- `getMessagesSearch()` - Full-text search messages by substring match on content within the actor's accessible threads
|
|
359
|
+
- `getMessagesSemantic-search()` - Vector similarity search across messages using a generated embedding of the query string
|
|
360
|
+
- `getThreadsByIdMessages()` - /threads/:id/messages operation on chat-message resource
|
|
361
|
+
- `postMessages()` - Add a new message turn to a thread
|
|
362
|
+
- `patchMessagesById()` - Edit a message's content, role, or metadata
|
|
363
|
+
- `deleteMessagesById()` - /messages/:id operation on chat-message resource
|
|
364
|
+
|
|
365
|
+
## Chat-thread
|
|
366
|
+
|
|
367
|
+
- `getThreads()` - /threads operation on chat-thread resource
|
|
368
|
+
- `getThreadsById()` - /threads/:id operation on chat-thread resource
|
|
369
|
+
- `getThreadsMine()` - List only the calling user's threads within their current workspace
|
|
370
|
+
- `getThreadsSearch()` - Full-text search threads by title or context summary within the actor's accessible workspace
|
|
371
|
+
- `postThreads()` - Create a new conversation thread scoped to a tenant, workspace, and user
|
|
372
|
+
- `postThreadsActive()` - Return the current user's active thread for their workspace, creating a new one if none exists or the existing thread has expired (>24h inactive)
|
|
373
|
+
- `postThreadsByIdComplete()` - Trigger AI inference on an existing thread without providing new user message content
|
|
374
|
+
- `postThreadsByIdExport()` - Export thread with messages to JSON, Markdown, or plain text format
|
|
375
|
+
- `postThreadsByIdFork()` - Fork a thread by cloning it with all its messages
|
|
376
|
+
- `postThreadsByIdMessages()` - Submit a user message to a thread and receive the AI response synchronously
|
|
377
|
+
- `postThreadsByIdSummarize()` - Generate a 2-3 sentence LLM summary of the thread's message history and persist it as `context_summary`
|
|
378
|
+
- `patchThreadsById()` - Update the thread's title or context summary
|
|
379
|
+
- `patchThreadsByIdArchive()` - Archive a thread by setting `archived_at` to the current timestamp
|
|
380
|
+
- `patchThreadsByIdUnarchive()` - Restore an archived thread by clearing `archived_at`, making it visible in the default thread list again.
|
|
381
|
+
- `deleteThreadsById()` - /threads/:id operation on chat-thread resource
|
|
382
|
+
|
|
383
|
+
## Chat-thread-stats
|
|
384
|
+
|
|
385
|
+
- `getThreadsStats()` - Return platform-wide chat statistics including total threads, total messages, threads active in the last 24h and 7d, message distribution by role, and top 10 workspaces by thread count
|
|
386
|
+
|
|
387
|
+
## Chat-thread-workspace-stats
|
|
388
|
+
|
|
389
|
+
- `getThreadsWorkspace-stats()` - Return aggregated chat statistics for the actor's current workspace: total threads, total messages, activity counts for 24h and 7d windows, and message distribution by role
|
|
390
|
+
|
|
346
391
|
## Clinical-client-goal
|
|
347
392
|
|
|
348
393
|
- `getClinicalClient-goals()` - /clinical/client-goals operation on clinical-client-goal resource
|
|
394
|
+
- `getClinicalClient-goalsArchived()` - /clinical/client-goals/archived operation on clinical-client-goal resource
|
|
349
395
|
- `getClinicalClient-goalsById()` - /clinical/client-goals/:id operation on clinical-client-goal resource
|
|
350
396
|
- `getClinicalPatientsByIdGoals()` - /clinical/patients/:id/goals operation on clinical-client-goal resource
|
|
351
397
|
- `postClinicalClient-goals()` - /clinical/client-goals operation on clinical-client-goal resource
|
|
352
398
|
- `postClinicalClient-goalsFrom-template()` - /clinical/client-goals/from-template operation on clinical-client-goal resource
|
|
353
399
|
- `patchClinicalClient-goalsById()` - /clinical/client-goals/:id operation on clinical-client-goal resource
|
|
354
|
-
- `
|
|
400
|
+
- `patchClinicalClient-goalsByIdArchive()` - /clinical/client-goals/:id/archive operation on clinical-client-goal resource
|
|
401
|
+
- `patchClinicalClient-goalsByIdRestore()` - /clinical/client-goals/:id/restore operation on clinical-client-goal resource
|
|
402
|
+
- `deleteClinicalClient-goalsByIdPermanent()` - /clinical/client-goals/:id/permanent operation on clinical-client-goal resource
|
|
355
403
|
|
|
356
404
|
## Clinical-client-resource-assignment
|
|
357
405
|
|
|
358
406
|
- `getClinicalClient-resource-assignments()` - /clinical/client-resource-assignments operation on clinical-client-resource-assignment resource
|
|
407
|
+
- `getClinicalClient-resource-assignmentsArchived()` - /clinical/client-resource-assignments/archived operation on clinical-client-resource-assignment resource
|
|
359
408
|
- `getClinicalClient-resource-assignmentsById()` - /clinical/client-resource-assignments/:id operation on clinical-client-resource-assignment resource
|
|
360
409
|
- `getClinicalPatientsByIdResourceAssignments()` - /clinical/patients/:id/resource_assignments operation on clinical-client-resource-assignment resource
|
|
361
410
|
- `postClinicalClient-resource-assignments()` - /clinical/client-resource-assignments operation on clinical-client-resource-assignment resource
|
|
362
411
|
- `patchClinicalClient-resource-assignmentsById()` - /clinical/client-resource-assignments/:id operation on clinical-client-resource-assignment resource
|
|
363
|
-
- `
|
|
412
|
+
- `patchClinicalClient-resource-assignmentsByIdArchive()` - /clinical/client-resource-assignments/:id/archive operation on clinical-client-resource-assignment resource
|
|
413
|
+
- `patchClinicalClient-resource-assignmentsByIdRestore()` - /clinical/client-resource-assignments/:id/restore operation on clinical-client-resource-assignment resource
|
|
414
|
+
- `deleteClinicalClient-resource-assignmentsByIdPermanent()` - /clinical/client-resource-assignments/:id/permanent operation on clinical-client-resource-assignment resource
|
|
364
415
|
|
|
365
416
|
## Clinical-client-supplement
|
|
366
417
|
|
|
367
418
|
- `getClinicalClient-supplements()` - /clinical/client-supplements operation on clinical-client-supplement resource
|
|
419
|
+
- `getClinicalClient-supplementsArchived()` - /clinical/client-supplements/archived operation on clinical-client-supplement resource
|
|
368
420
|
- `getClinicalClient-supplementsById()` - /clinical/client-supplements/:id operation on clinical-client-supplement resource
|
|
369
421
|
- `getClinicalPatientsByIdSupplements()` - /clinical/patients/:id/supplements operation on clinical-client-supplement resource
|
|
370
422
|
- `postClinicalClient-supplements()` - /clinical/client-supplements operation on clinical-client-supplement resource
|
|
371
423
|
- `patchClinicalClient-supplementsById()` - /clinical/client-supplements/:id operation on clinical-client-supplement resource
|
|
372
|
-
- `
|
|
424
|
+
- `patchClinicalClient-supplementsByIdArchive()` - /clinical/client-supplements/:id/archive operation on clinical-client-supplement resource
|
|
425
|
+
- `patchClinicalClient-supplementsByIdRestore()` - /clinical/client-supplements/:id/restore operation on clinical-client-supplement resource
|
|
426
|
+
- `deleteClinicalClient-supplementsByIdPermanent()` - /clinical/client-supplements/:id/permanent operation on clinical-client-supplement resource
|
|
373
427
|
|
|
374
428
|
## Clinical-delivery
|
|
375
429
|
|
|
@@ -382,17 +436,23 @@ flags, workspace mode, and execution limits
|
|
|
382
436
|
## Clinical-goal-template
|
|
383
437
|
|
|
384
438
|
- `getClinicalGoal-templates()` - /clinical/goal-templates operation on clinical-goal-template resource
|
|
439
|
+
- `getClinicalGoal-templatesArchived()` - /clinical/goal-templates/archived operation on clinical-goal-template resource
|
|
385
440
|
- `getClinicalGoal-templatesById()` - /clinical/goal-templates/:id operation on clinical-goal-template resource
|
|
386
441
|
- `getClinicalGoal-templatesCatalog()` - /clinical/goal-templates/catalog operation on clinical-goal-template resource
|
|
442
|
+
- `getClinicalGoal-templatesCatalogArchived()` - /clinical/goal-templates/catalog/archived operation on clinical-goal-template resource
|
|
387
443
|
- `getClinicalGoal-templatesCatalogById()` - /clinical/goal-templates/catalog/:id operation on clinical-goal-template resource
|
|
388
444
|
- `getClinicalGoal-templatesMine()` - /clinical/goal-templates/mine operation on clinical-goal-template resource
|
|
389
445
|
- `postClinicalGoal-templates()` - /clinical/goal-templates operation on clinical-goal-template resource
|
|
390
446
|
- `postClinicalGoal-templatesCatalog()` - /clinical/goal-templates/catalog operation on clinical-goal-template resource
|
|
391
447
|
- `postClinicalGoal-templatesFrom-existing()` - /clinical/goal-templates/from-existing operation on clinical-goal-template resource
|
|
392
448
|
- `patchClinicalGoal-templatesById()` - /clinical/goal-templates/:id operation on clinical-goal-template resource
|
|
449
|
+
- `patchClinicalGoal-templatesByIdArchive()` - /clinical/goal-templates/:id/archive operation on clinical-goal-template resource
|
|
450
|
+
- `patchClinicalGoal-templatesByIdRestore()` - /clinical/goal-templates/:id/restore operation on clinical-goal-template resource
|
|
393
451
|
- `patchClinicalGoal-templatesCatalogById()` - /clinical/goal-templates/catalog/:id operation on clinical-goal-template resource
|
|
394
|
-
- `
|
|
395
|
-
- `
|
|
452
|
+
- `patchClinicalGoal-templatesCatalogByIdArchive()` - /clinical/goal-templates/catalog/:id/archive operation on clinical-goal-template resource
|
|
453
|
+
- `patchClinicalGoal-templatesCatalogByIdRestore()` - /clinical/goal-templates/catalog/:id/restore operation on clinical-goal-template resource
|
|
454
|
+
- `deleteClinicalGoal-templatesByIdPermanent()` - /clinical/goal-templates/:id/permanent operation on clinical-goal-template resource
|
|
455
|
+
- `deleteClinicalGoal-templatesCatalogByIdPermanent()` - /clinical/goal-templates/catalog/:id/permanent operation on clinical-goal-template resource
|
|
396
456
|
|
|
397
457
|
## Clinical-goal-template-category
|
|
398
458
|
|
|
@@ -402,33 +462,47 @@ flags, workspace mode, and execution limits
|
|
|
402
462
|
## Clinical-health-metric
|
|
403
463
|
|
|
404
464
|
- `getClinicalHealth-metrics()` - /clinical/health-metrics operation on clinical-health-metric resource
|
|
465
|
+
- `getClinicalHealth-metricsArchived()` - /clinical/health-metrics/archived operation on clinical-health-metric resource
|
|
405
466
|
- `getClinicalHealth-metricsBy-session()` - /clinical/health-metrics/by-session operation on clinical-health-metric resource
|
|
406
467
|
- `getClinicalHealth-metricsById()` - /clinical/health-metrics/:id operation on clinical-health-metric resource
|
|
407
468
|
- `getClinicalPatientsByIdHealthMetrics()` - /clinical/patients/:id/health_metrics operation on clinical-health-metric resource
|
|
408
469
|
- `postClinicalHealth-metrics()` - /clinical/health-metrics operation on clinical-health-metric resource
|
|
409
470
|
- `patchClinicalHealth-metricsById()` - /clinical/health-metrics/:id operation on clinical-health-metric resource
|
|
410
|
-
- `
|
|
471
|
+
- `patchClinicalHealth-metricsByIdArchive()` - /clinical/health-metrics/:id/archive operation on clinical-health-metric resource
|
|
472
|
+
- `patchClinicalHealth-metricsByIdRestore()` - /clinical/health-metrics/:id/restore operation on clinical-health-metric resource
|
|
473
|
+
- `deleteClinicalHealth-metricsByIdPermanent()` - /clinical/health-metrics/:id/permanent operation on clinical-health-metric resource
|
|
474
|
+
|
|
475
|
+
## Clinical-import
|
|
476
|
+
|
|
477
|
+
- `getClinicalImports()` - /clinical/imports operation on clinical-import resource
|
|
478
|
+
- `getClinicalImportsById()` - /clinical/imports/:id operation on clinical-import resource
|
|
411
479
|
|
|
412
480
|
## Clinical-meal-plan
|
|
413
481
|
|
|
414
482
|
- `getClinicalMeal-plans()` - /clinical/meal-plans operation on clinical-meal-plan resource
|
|
483
|
+
- `getClinicalMeal-plansArchived()` - /clinical/meal-plans/archived operation on clinical-meal-plan resource
|
|
415
484
|
- `getClinicalMeal-plansBy-workspace()` - /clinical/meal-plans/by-workspace operation on clinical-meal-plan resource
|
|
416
485
|
- `getClinicalMeal-plansById()` - /clinical/meal-plans/:id operation on clinical-meal-plan resource
|
|
417
486
|
- `getClinicalSessionsByIdMealPlans()` - /clinical/sessions/:id/meal_plans operation on clinical-meal-plan resource
|
|
418
487
|
- `postClinicalMeal-plans()` - /clinical/meal-plans operation on clinical-meal-plan resource
|
|
419
488
|
- `patchClinicalMeal-plansById()` - /clinical/meal-plans/:id operation on clinical-meal-plan resource
|
|
420
|
-
- `
|
|
489
|
+
- `patchClinicalMeal-plansByIdArchive()` - /clinical/meal-plans/:id/archive operation on clinical-meal-plan resource
|
|
490
|
+
- `patchClinicalMeal-plansByIdRestore()` - /clinical/meal-plans/:id/restore operation on clinical-meal-plan resource
|
|
491
|
+
- `deleteClinicalMeal-plansByIdPermanent()` - /clinical/meal-plans/:id/permanent operation on clinical-meal-plan resource
|
|
421
492
|
|
|
422
493
|
## Clinical-note
|
|
423
494
|
|
|
424
495
|
- `getClinicalNotes()` - /clinical/notes operation on clinical-note resource
|
|
496
|
+
- `getClinicalNotesArchived()` - /clinical/notes/archived operation on clinical-note resource
|
|
425
497
|
- `getClinicalNotesById()` - /clinical/notes/:id operation on clinical-note resource
|
|
426
498
|
- `getClinicalSessionsByIdSessionNotes()` - /clinical/sessions/:id/session_notes operation on clinical-note resource
|
|
427
499
|
- `postClinicalNotes()` - /clinical/notes operation on clinical-note resource
|
|
428
500
|
- `patchClinicalNotesById()` - /clinical/notes/:id operation on clinical-note resource
|
|
429
501
|
- `patchClinicalNotesByIdApprove()` - RD approves the clinical note
|
|
502
|
+
- `patchClinicalNotesByIdArchive()` - /clinical/notes/:id/archive operation on clinical-note resource
|
|
430
503
|
- `patchClinicalNotesByIdReject()` - RD rejects the clinical note.
|
|
431
|
-
- `
|
|
504
|
+
- `patchClinicalNotesByIdRestore()` - /clinical/notes/:id/restore operation on clinical-note resource
|
|
505
|
+
- `deleteClinicalNotesByIdPermanent()` - /clinical/notes/:id/permanent operation on clinical-note resource
|
|
432
506
|
|
|
433
507
|
## Clinical-note-version
|
|
434
508
|
|
|
@@ -446,15 +520,21 @@ flags, workspace mode, and execution limits
|
|
|
446
520
|
## Clinical-practice-resource
|
|
447
521
|
|
|
448
522
|
- `getClinicalPractice-resources()` - /clinical/practice-resources operation on clinical-practice-resource resource
|
|
523
|
+
- `getClinicalPractice-resourcesArchived()` - /clinical/practice-resources/archived operation on clinical-practice-resource resource
|
|
449
524
|
- `getClinicalPractice-resourcesById()` - /clinical/practice-resources/:id operation on clinical-practice-resource resource
|
|
450
525
|
- `getClinicalPractice-resourcesCatalog()` - /clinical/practice-resources/catalog operation on clinical-practice-resource resource
|
|
526
|
+
- `getClinicalPractice-resourcesCatalogArchived()` - /clinical/practice-resources/catalog/archived operation on clinical-practice-resource resource
|
|
451
527
|
- `getClinicalPractice-resourcesCatalogById()` - /clinical/practice-resources/catalog/:id operation on clinical-practice-resource resource
|
|
452
528
|
- `postClinicalPractice-resources()` - /clinical/practice-resources operation on clinical-practice-resource resource
|
|
453
529
|
- `postClinicalPractice-resourcesCatalog()` - /clinical/practice-resources/catalog operation on clinical-practice-resource resource
|
|
454
530
|
- `patchClinicalPractice-resourcesById()` - /clinical/practice-resources/:id operation on clinical-practice-resource resource
|
|
531
|
+
- `patchClinicalPractice-resourcesByIdArchive()` - /clinical/practice-resources/:id/archive operation on clinical-practice-resource resource
|
|
532
|
+
- `patchClinicalPractice-resourcesByIdRestore()` - /clinical/practice-resources/:id/restore operation on clinical-practice-resource resource
|
|
455
533
|
- `patchClinicalPractice-resourcesCatalogById()` - /clinical/practice-resources/catalog/:id operation on clinical-practice-resource resource
|
|
456
|
-
- `
|
|
457
|
-
- `
|
|
534
|
+
- `patchClinicalPractice-resourcesCatalogByIdArchive()` - /clinical/practice-resources/catalog/:id/archive operation on clinical-practice-resource resource
|
|
535
|
+
- `patchClinicalPractice-resourcesCatalogByIdRestore()` - /clinical/practice-resources/catalog/:id/restore operation on clinical-practice-resource resource
|
|
536
|
+
- `deleteClinicalPractice-resourcesByIdPermanent()` - /clinical/practice-resources/:id/permanent operation on clinical-practice-resource resource
|
|
537
|
+
- `deleteClinicalPractice-resourcesCatalogByIdPermanent()` - /clinical/practice-resources/catalog/:id/permanent operation on clinical-practice-resource resource
|
|
458
538
|
|
|
459
539
|
## Clinical-practice-resource-category
|
|
460
540
|
|
|
@@ -464,21 +544,32 @@ flags, workspace mode, and execution limits
|
|
|
464
544
|
## Clinical-practice-tool
|
|
465
545
|
|
|
466
546
|
- `getClinicalPractice-tools()` - /clinical/practice-tools operation on clinical-practice-tool resource
|
|
547
|
+
- `getClinicalPractice-toolsArchived()` - /clinical/practice-tools/archived operation on clinical-practice-tool resource
|
|
467
548
|
- `getClinicalPractice-toolsById()` - /clinical/practice-tools/:id operation on clinical-practice-tool resource
|
|
468
549
|
- `getClinicalPractice-toolsCatalog()` - /clinical/practice-tools/catalog operation on clinical-practice-tool resource
|
|
550
|
+
- `getClinicalPractice-toolsCatalogArchived()` - /clinical/practice-tools/catalog/archived operation on clinical-practice-tool resource
|
|
469
551
|
- `getClinicalPractice-toolsCatalogById()` - /clinical/practice-tools/catalog/:id operation on clinical-practice-tool resource
|
|
470
552
|
- `postClinicalPractice-tools()` - /clinical/practice-tools operation on clinical-practice-tool resource
|
|
471
553
|
- `postClinicalPractice-toolsCatalog()` - /clinical/practice-tools/catalog operation on clinical-practice-tool resource
|
|
472
554
|
- `patchClinicalPractice-toolsById()` - /clinical/practice-tools/:id operation on clinical-practice-tool resource
|
|
555
|
+
- `patchClinicalPractice-toolsByIdArchive()` - /clinical/practice-tools/:id/archive operation on clinical-practice-tool resource
|
|
556
|
+
- `patchClinicalPractice-toolsByIdRestore()` - /clinical/practice-tools/:id/restore operation on clinical-practice-tool resource
|
|
473
557
|
- `patchClinicalPractice-toolsCatalogById()` - /clinical/practice-tools/catalog/:id operation on clinical-practice-tool resource
|
|
474
|
-
- `
|
|
475
|
-
- `
|
|
558
|
+
- `patchClinicalPractice-toolsCatalogByIdArchive()` - /clinical/practice-tools/catalog/:id/archive operation on clinical-practice-tool resource
|
|
559
|
+
- `patchClinicalPractice-toolsCatalogByIdRestore()` - /clinical/practice-tools/catalog/:id/restore operation on clinical-practice-tool resource
|
|
560
|
+
- `deleteClinicalPractice-toolsByIdPermanent()` - /clinical/practice-tools/:id/permanent operation on clinical-practice-tool resource
|
|
561
|
+
- `deleteClinicalPractice-toolsCatalogByIdPermanent()` - /clinical/practice-tools/catalog/:id/permanent operation on clinical-practice-tool resource
|
|
476
562
|
|
|
477
563
|
## Clinical-practice-tool-category
|
|
478
564
|
|
|
479
565
|
- `getClinicalPractice-toolsCategories()` - /clinical/practice-tools/categories operation on clinical-practice-tool-category resource
|
|
480
566
|
- `getClinicalPractice-toolsCategoriesCatalog()` - /clinical/practice-tools/categories/catalog operation on clinical-practice-tool-category resource
|
|
481
567
|
|
|
568
|
+
## Clinical-resource-import
|
|
569
|
+
|
|
570
|
+
- `getClinicalResource-imports()` - /clinical/resource-imports operation on clinical-resource-import resource
|
|
571
|
+
- `getClinicalResource-importsById()` - /clinical/resource-imports/:id operation on clinical-resource-import resource
|
|
572
|
+
|
|
482
573
|
## Clinical-session
|
|
483
574
|
|
|
484
575
|
- `getClinicalSessions()` - /clinical/sessions operation on clinical-session resource
|
|
@@ -538,7 +629,15 @@ flags, workspace mode, and execution limits
|
|
|
538
629
|
- `postConnectorsByIdSync()` - Execute an action on an external connector
|
|
539
630
|
- `postConnectorsFullscriptCheck-patient()` - Check if a patient exists in Fullscript by email
|
|
540
631
|
- `postConnectorsFullscriptCreate-patient()` - Create a patient in Fullscript
|
|
632
|
+
- `postConnectorsFullscriptOrdersGet()` - Get order details from Fullscript
|
|
633
|
+
- `postConnectorsFullscriptOrdersList()` - List orders for a Fullscript patient
|
|
634
|
+
- `postConnectorsFullscriptProductsGet()` - Get product details from Fullscript
|
|
635
|
+
- `postConnectorsFullscriptProductsSearch()` - Search the Fullscript product catalog
|
|
636
|
+
- `postConnectorsFullscriptProductsSimilar()` - List similar products from Fullscript
|
|
541
637
|
- `postConnectorsFullscriptSession-grant()` - Get a Fullscript embed session grant token for the prescribing widget
|
|
638
|
+
- `postConnectorsFullscriptTreatment-plansCancel()` - Cancel an active Fullscript treatment plan
|
|
639
|
+
- `postConnectorsFullscriptTreatment-plansGet()` - Get treatment plan details from Fullscript
|
|
640
|
+
- `postConnectorsFullscriptTreatment-plansList()` - List treatment plans for a Fullscript patient
|
|
542
641
|
- `postConnectorsOauthCallback()` - Exchange OAuth authorization code for credential.
|
|
543
642
|
- `postConnectorsOauthInitiate()` - Initiate OAuth flow for a connector type
|
|
544
643
|
- `patchConnectorsById()` - Update a connector instance's name, configuration, sync interval, health status, or metadata
|
|
@@ -565,14 +664,6 @@ flags, workspace mode, and execution limits
|
|
|
565
664
|
- `postContentShorten()` - Shorten text to a target character count.
|
|
566
665
|
- `postContentSuggest-topics()` - Suggest content topics based on industry and audience.
|
|
567
666
|
|
|
568
|
-
## Conversations
|
|
569
|
-
|
|
570
|
-
- `getAiConversations()` - /ai/conversations operation on conversation resource
|
|
571
|
-
- `getAiConversationsById()` - /ai/conversations/:id operation on conversation resource
|
|
572
|
-
- `postAiConversations()` - Start a new AI conversation session with optional structured context data (e.g., prediction results to discuss)
|
|
573
|
-
- `patchAiConversationsById()` - Update the conversation title or replace the context data map
|
|
574
|
-
- `deleteAiConversationsById()` - /ai/conversations/:id operation on conversation resource
|
|
575
|
-
|
|
576
667
|
## Crawler job
|
|
577
668
|
|
|
578
669
|
- `getCrawlerJobs()` - /crawler/jobs operation on crawler_job resource
|
|
@@ -969,6 +1060,7 @@ fields
|
|
|
969
1060
|
- `getFeature-usages()` - List all feature usage records.
|
|
970
1061
|
- `getFeature-usagesBy-tenantByTenantId()` - List feature usage records for a specific tenant.
|
|
971
1062
|
- `getFeature-usagesById()` - Fetch a single feature usage record by ID.
|
|
1063
|
+
- `postFeature-usagesIncrement()` - Increment usage for a feature by key
|
|
972
1064
|
|
|
973
1065
|
## Field mapping confirmation
|
|
974
1066
|
|
|
@@ -1027,17 +1119,6 @@ fields
|
|
|
1027
1119
|
- `patchLegal-documentsByIdUnpublish()` - Deactivate a legal document without deleting it
|
|
1028
1120
|
- `deleteLegal-documentsById()` - /legal-documents/:id operation on legal-document resource
|
|
1029
1121
|
|
|
1030
|
-
## Messages
|
|
1031
|
-
|
|
1032
|
-
- `getMessages()` - /messages operation on message resource
|
|
1033
|
-
- `getMessagesById()` - /messages/:id operation on message resource
|
|
1034
|
-
- `getMessagesSearch()` - Full-text search messages by substring match on content within the actor's accessible threads
|
|
1035
|
-
- `getMessagesSemantic-search()` - Vector similarity search across messages using a generated embedding of the query string
|
|
1036
|
-
- `getThreadsByIdMessages()` - /threads/:id/messages operation on message resource
|
|
1037
|
-
- `postMessages()` - Add a new message turn to a thread
|
|
1038
|
-
- `patchMessagesById()` - Edit a message's content, role, or metadata
|
|
1039
|
-
- `deleteMessagesById()` - /messages/:id operation on message resource
|
|
1040
|
-
|
|
1041
1122
|
## Notification log
|
|
1042
1123
|
|
|
1043
1124
|
- `getNotification-logs()` - /notification-logs operation on notification_log resource
|
|
@@ -1082,11 +1163,11 @@ fields
|
|
|
1082
1163
|
- `getPermissions()` - List all registered permissions from the PermissionRegistry, optionally filtered by app, context, or category
|
|
1083
1164
|
- `getPermissionsById()` - Fetch all permissions and apply any query filters supplied by the caller; use :by_id for single-record lookup by permission ID string.
|
|
1084
1165
|
|
|
1085
|
-
## Permission
|
|
1166
|
+
## Permission-meta
|
|
1086
1167
|
|
|
1087
1168
|
- `getPermissionsMeta()` - Fetch a single metadata record describing the permission system — schema version, available apps, scopes, categories, and suggested client cache TTL
|
|
1088
1169
|
|
|
1089
|
-
## Permission
|
|
1170
|
+
## Permission-preset
|
|
1090
1171
|
|
|
1091
1172
|
- `getPermissionsPresets()` - List all permission presets (pre-defined role bundles) from the PermissionRegistry, optionally filtered by context and app
|
|
1092
1173
|
- `getPermissionsPresetsById()` - Fetch a single permission preset by its composite ID (e.g., 'workspace:org:admin'); returns the preset with its full permission list or a not-found error.
|
|
@@ -1384,31 +1465,6 @@ plan tier, vanity slug, and storage spending cap
|
|
|
1384
1465
|
- `patchTenantsByIdUnsuspend()` - Restore a suspended tenant to active status.
|
|
1385
1466
|
- `deleteTenantsById()` - Permanently delete a tenant and all associated data
|
|
1386
1467
|
|
|
1387
|
-
## Thread stats
|
|
1388
|
-
|
|
1389
|
-
- `getThreadsStats()` - Return platform-wide chat statistics including total threads, total messages, threads active in the last 24h and 7d, message distribution by role, and top 10 workspaces by thread count
|
|
1390
|
-
|
|
1391
|
-
## Thread workspace stats
|
|
1392
|
-
|
|
1393
|
-
- `getThreadsWorkspace-stats()` - Return aggregated chat statistics for the actor's current workspace: total threads, total messages, activity counts for 24h and 7d windows, and message distribution by role
|
|
1394
|
-
|
|
1395
|
-
## Threads
|
|
1396
|
-
|
|
1397
|
-
- `getThreads()` - /threads operation on thread resource
|
|
1398
|
-
- `getThreadsById()` - /threads/:id operation on thread resource
|
|
1399
|
-
- `getThreadsSearch()` - Full-text search threads by title or context summary within the actor's accessible workspace
|
|
1400
|
-
- `postThreads()` - Create a new conversation thread scoped to a tenant, workspace, and user
|
|
1401
|
-
- `postThreadsActive()` - Return the current user's active thread for their workspace, creating a new one if none exists or the existing thread has expired (>24h inactive)
|
|
1402
|
-
- `postThreadsByIdComplete()` - Trigger AI inference on an existing thread without providing new user message content
|
|
1403
|
-
- `postThreadsByIdExport()` - Export thread with messages to JSON, Markdown, or plain text format
|
|
1404
|
-
- `postThreadsByIdFork()` - Fork a thread by cloning it with all its messages
|
|
1405
|
-
- `postThreadsByIdMessages()` - Submit a user message to a thread and receive the AI response synchronously
|
|
1406
|
-
- `postThreadsByIdSummarize()` - Generate a 2-3 sentence LLM summary of the thread's message history and persist it as `context_summary`
|
|
1407
|
-
- `patchThreadsById()` - Update the thread's title or context summary
|
|
1408
|
-
- `patchThreadsByIdArchive()` - Archive a thread by setting `archived_at` to the current timestamp
|
|
1409
|
-
- `patchThreadsByIdUnarchive()` - Restore an archived thread by clearing `archived_at`, making it visible in the default thread list again.
|
|
1410
|
-
- `deleteThreadsById()` - /threads/:id operation on thread resource
|
|
1411
|
-
|
|
1412
1468
|
## Token
|
|
1413
1469
|
|
|
1414
1470
|
- `postTokens()` - Create a payment token
|
package/package.json
CHANGED