@@ -434,8 +434,15 @@ We have dedicated SDKs for the following providers:
434434
435435### [ Beta.Rag.SearchIndexes] ( docs/sdks/searchindexes/README.md )
436436
437- * [ list] ( docs/sdks/searchindexes/README.md#list ) - Get Search Indexes
438- * [ register] ( docs/sdks/searchindexes/README.md#register ) - Register Search Index
437+ * [ register] ( docs/sdks/searchindexes/README.md#register ) - Register (or re-register) a search index
438+ * [ getIndexSummaries] ( docs/sdks/searchindexes/README.md#getindexsummaries ) - Get Index Summaries
439+ * [ unregister] ( docs/sdks/searchindexes/README.md#unregister ) - Unregister Search Index
440+ * [ updateIndexMetrics] ( docs/sdks/searchindexes/README.md#updateindexmetrics ) - Update Index Metrics
441+ * [ getIndexDetail] ( docs/sdks/searchindexes/README.md#getindexdetail ) - Get Index Details
442+ * [ setIndexSummary] ( docs/sdks/searchindexes/README.md#setindexsummary ) - Set Index Summary
443+ * [ getIndexSchemaDetail] ( docs/sdks/searchindexes/README.md#getindexschemadetail ) - Get Index Schema Detail
444+ * [ setSchemaSummary] ( docs/sdks/searchindexes/README.md#setschemasummary ) - Set Schema Summary
445+ * [ getIndexSchemaFile] ( docs/sdks/searchindexes/README.md#getindexschemafile ) - Get Index Schema File
439446
440447### [ Chat] ( docs/sdks/chat/README.md )
441448
@@ -511,6 +518,8 @@ We have dedicated SDKs for the following providers:
511518
512519* [ listDeployments] ( docs/sdks/deployments/README.md#listdeployments ) - List Deployments
513520* [ getDeployment] ( docs/sdks/deployments/README.md#getdeployment ) - Get Deployment
521+ * [ getDeploymentLogs] ( docs/sdks/deployments/README.md#getdeploymentlogs ) - Get Deployment Logs
522+ * [ streamDeploymentLogs] ( docs/sdks/deployments/README.md#streamdeploymentlogs ) - Stream Deployment Logs
514523
515524#### [ Workflows.Events] ( docs/sdks/workflowsevents/README.md )
516525
@@ -792,8 +801,8 @@ run();
792801
793802
794803** Inherit from [ ` MistralError ` ] ( ./src/models/errors/mistralerror.ts ) ** :
795- * [ ` HTTPValidationError ` ] ( ./src/models/errors/httpvalidationerror.ts ) : Validation Error. Status code ` 422 ` . Applicable to 133 of 216 methods.*
796- * [ ` ObservabilityError ` ] ( ./src/models/errors/observabilityerror.ts ) : Bad Request - Invalid request parameters or data. Applicable to 57 of 216 methods.*
804+ * [ ` HTTPValidationError ` ] ( ./src/models/errors/httpvalidationerror.ts ) : Validation Error. Status code ` 422 ` . Applicable to 142 of 225 methods.*
805+ * [ ` ObservabilityError ` ] ( ./src/models/errors/observabilityerror.ts ) : Bad Request - Invalid request parameters or data. Applicable to 57 of 225 methods.*
797806* [ ` ResponseValidationError ` ] ( ./src/models/errors/responsevalidationerror.ts ) : Type mismatch between the data returned from the server and the structure expected by the SDK. See ` error.rawValue ` for the raw value and ` error.pretty() ` for a nicely formatted multi-line string.
798807
799808</details >
@@ -1099,8 +1108,15 @@ To read more about standalone functions, check [FUNCTIONS.md](./FUNCTIONS.md).
10991108- [ ` betaRagIngestionPipelineConfigurationsList ` ] ( docs/sdks/ingestionpipelineconfigurations/README.md#list ) - List ingestion pipeline configurations
11001109- [ ` betaRagIngestionPipelineConfigurationsRegister ` ] ( docs/sdks/ingestionpipelineconfigurations/README.md#register ) - Register Config
11011110- [ ` betaRagIngestionPipelineConfigurationsUpdateRunInfo ` ] ( docs/sdks/ingestionpipelineconfigurations/README.md#updateruninfo ) - Update Run Info
1102- - [ ` betaRagSearchIndexesList ` ] ( docs/sdks/searchindexes/README.md#list ) - Get Search Indexes
1103- - [ ` betaRagSearchIndexesRegister ` ] ( docs/sdks/searchindexes/README.md#register ) - Register Search Index
1111+ - [ ` betaRagSearchIndexesGetIndexDetail ` ] ( docs/sdks/searchindexes/README.md#getindexdetail ) - Get Index Details
1112+ - [ ` betaRagSearchIndexesGetIndexSchemaDetail ` ] ( docs/sdks/searchindexes/README.md#getindexschemadetail ) - Get Index Schema Detail
1113+ - [ ` betaRagSearchIndexesGetIndexSchemaFile ` ] ( docs/sdks/searchindexes/README.md#getindexschemafile ) - Get Index Schema File
1114+ - [ ` betaRagSearchIndexesGetIndexSummaries ` ] ( docs/sdks/searchindexes/README.md#getindexsummaries ) - Get Index Summaries
1115+ - [ ` betaRagSearchIndexesRegister ` ] ( docs/sdks/searchindexes/README.md#register ) - Register (or re-register) a search index
1116+ - [ ` betaRagSearchIndexesSetIndexSummary ` ] ( docs/sdks/searchindexes/README.md#setindexsummary ) - Set Index Summary
1117+ - [ ` betaRagSearchIndexesSetSchemaSummary ` ] ( docs/sdks/searchindexes/README.md#setschemasummary ) - Set Schema Summary
1118+ - [ ` betaRagSearchIndexesUnregister ` ] ( docs/sdks/searchindexes/README.md#unregister ) - Unregister Search Index
1119+ - [ ` betaRagSearchIndexesUpdateIndexMetrics ` ] ( docs/sdks/searchindexes/README.md#updateindexmetrics ) - Update Index Metrics
11041120- [ ` chatComplete ` ] ( docs/sdks/chat/README.md#complete ) - Chat Completion
11051121- [ ` chatStream ` ] ( docs/sdks/chat/README.md#stream ) - Stream chat completion
11061122- [ ` classifiersClassify ` ] ( docs/sdks/classifiers/README.md#classify ) - Classifications
@@ -1136,7 +1152,9 @@ To read more about standalone functions, check [FUNCTIONS.md](./FUNCTIONS.md).
11361152- [ ` workflowsBulkArchiveWorkflows ` ] ( docs/sdks/workflows/README.md#bulkarchiveworkflows ) - Bulk Archive Workflows
11371153- [ ` workflowsBulkUnarchiveWorkflows ` ] ( docs/sdks/workflows/README.md#bulkunarchiveworkflows ) - Bulk Unarchive Workflows
11381154- [ ` workflowsDeploymentsGetDeployment ` ] ( docs/sdks/deployments/README.md#getdeployment ) - Get Deployment
1155+ - [ ` workflowsDeploymentsGetDeploymentLogs ` ] ( docs/sdks/deployments/README.md#getdeploymentlogs ) - Get Deployment Logs
11391156- [ ` workflowsDeploymentsListDeployments ` ] ( docs/sdks/deployments/README.md#listdeployments ) - List Deployments
1157+ - [ ` workflowsDeploymentsStreamDeploymentLogs ` ] ( docs/sdks/deployments/README.md#streamdeploymentlogs ) - Stream Deployment Logs
11401158- [ ` workflowsExecuteWorkflow ` ] ( docs/sdks/workflows/README.md#executeworkflow ) - Execute Workflow
11411159- [ ` workflowsExecutionsBatchCancelWorkflowExecutions ` ] ( docs/sdks/executions/README.md#batchcancelworkflowexecutions ) - Batch Cancel Workflow Executions
11421160- [ ` workflowsExecutionsBatchTerminateWorkflowExecutions ` ] ( docs/sdks/executions/README.md#batchterminateworkflowexecutions ) - Batch Terminate Workflow Executions
0 commit comments