@@ -282,11 +282,16 @@ Class | Method | HTTP request | Description
282282* PluginsApi* | [ ** get_entity_dashboard_plugins** ] ( docs/PluginsApi.md#get_entity_dashboard_plugins ) | ** GET** /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/{objectId} | Get a Plugin
283283* PluginsApi* | [ ** patch_entity_dashboard_plugins** ] ( docs/PluginsApi.md#patch_entity_dashboard_plugins ) | ** PATCH** /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/{objectId} | Patch a Plugin
284284* PluginsApi* | [ ** update_entity_dashboard_plugins** ] ( docs/PluginsApi.md#update_entity_dashboard_plugins ) | ** PUT** /api/v1/entities/workspaces/{workspaceId}/dashboardPlugins/{objectId} | Put a Plugin
285+ * RawExportApi* | [ ** create_raw_export** ] ( docs/RawExportApi.md#create_raw_export ) | ** POST** /api/v1/actions/workspaces/{workspaceId}/export/raw | (EXPERIMENTAL) Create raw export request
286+ * RawExportApi* | [ ** get_raw_export** ] ( docs/RawExportApi.md#get_raw_export ) | ** GET** /api/v1/actions/workspaces/{workspaceId}/export/raw/{exportId} | (EXPERIMENTAL) Retrieve exported files
285287* ReportingSettingsApi* | [ ** resolve_all_settings_without_workspace** ] ( docs/ReportingSettingsApi.md#resolve_all_settings_without_workspace ) | ** GET** /api/v1/actions/resolveSettings | Values for all settings without workspace.
286288* ReportingSettingsApi* | [ ** resolve_settings_without_workspace** ] ( docs/ReportingSettingsApi.md#resolve_settings_without_workspace ) | ** POST** /api/v1/actions/resolveSettings | Values for selected settings without workspace.
287289* ScanningApi* | [ ** get_data_source_schemata** ] ( docs/ScanningApi.md#get_data_source_schemata ) | ** GET** /api/v1/actions/dataSources/{dataSourceId}/scanSchemata | Get a list of schema names of a database
288290* ScanningApi* | [ ** scan_data_source** ] ( docs/ScanningApi.md#scan_data_source ) | ** POST** /api/v1/actions/dataSources/{dataSourceId}/scan | Scan a database to get a physical data model (PDM)
289291* ScanningApi* | [ ** scan_sql** ] ( docs/ScanningApi.md#scan_sql ) | ** POST** /api/v1/actions/dataSources/{dataSourceId}/scanSql | Collect metadata about SQL query
292+ * SlideshowExportApi* | [ ** create_slides_export** ] ( docs/SlideshowExportApi.md#create_slides_export ) | ** POST** /api/v1/actions/workspaces/{workspaceId}/export/slides | (EXPERIMENTAL) Create slides export request
293+ * SlideshowExportApi* | [ ** get_slides_export** ] ( docs/SlideshowExportApi.md#get_slides_export ) | ** GET** /api/v1/actions/workspaces/{workspaceId}/export/slides/{exportId} | (EXPERIMENTAL) Retrieve exported files
294+ * SlideshowExportApi* | [ ** get_slides_export_metadata** ] ( docs/SlideshowExportApi.md#get_slides_export_metadata ) | ** GET** /api/v1/actions/workspaces/{workspaceId}/export/slides/{exportId}/metadata | (EXPERIMENTAL) Retrieve metadata context
290295* SmartFunctionsApi* | [ ** ai_chat** ] ( docs/SmartFunctionsApi.md#ai_chat ) | ** POST** /api/v1/actions/workspaces/{workspaceId}/ai/chat | (BETA) Chat with AI
291296* SmartFunctionsApi* | [ ** ai_chat_history** ] ( docs/SmartFunctionsApi.md#ai_chat_history ) | ** POST** /api/v1/actions/workspaces/{workspaceId}/ai/chatHistory | (BETA) Get Chat History
292297* SmartFunctionsApi* | [ ** ai_chat_stream** ] ( docs/SmartFunctionsApi.md#ai_chat_stream ) | ** POST** /api/v1/actions/workspaces/{workspaceId}/ai/chatStream | (BETA) Chat with AI
@@ -402,6 +407,8 @@ Class | Method | HTTP request | Description
402407* ActionsApi* | [ ** compute_valid_objects** ] ( docs/ActionsApi.md#compute_valid_objects ) | ** POST** /api/v1/actions/workspaces/{workspaceId}/execution/afm/computeValidObjects | Valid objects
403408* ActionsApi* | [ ** create_dashboard_export_request** ] ( docs/ActionsApi.md#create_dashboard_export_request ) | ** POST** /api/v1/actions/workspaces/{workspaceId}/analyticalDashboards/{dashboardId}/export/tabular | (EXPERIMENTAL) Create dashboard tabular export request
404409* ActionsApi* | [ ** create_pdf_export** ] ( docs/ActionsApi.md#create_pdf_export ) | ** POST** /api/v1/actions/workspaces/{workspaceId}/export/visual | Create visual - pdf export request
410+ * ActionsApi* | [ ** create_raw_export** ] ( docs/ActionsApi.md#create_raw_export ) | ** POST** /api/v1/actions/workspaces/{workspaceId}/export/raw | (EXPERIMENTAL) Create raw export request
411+ * ActionsApi* | [ ** create_slides_export** ] ( docs/ActionsApi.md#create_slides_export ) | ** POST** /api/v1/actions/workspaces/{workspaceId}/export/slides | (EXPERIMENTAL) Create slides export request
405412* ActionsApi* | [ ** create_tabular_export** ] ( docs/ActionsApi.md#create_tabular_export ) | ** POST** /api/v1/actions/workspaces/{workspaceId}/export/tabular | Create tabular export request
406413* ActionsApi* | [ ** dashboard_permissions** ] ( docs/ActionsApi.md#dashboard_permissions ) | ** GET** /api/v1/actions/workspaces/{workspaceId}/analyticalDashboards/{dashboardId}/permissions | Get Dashboard Permissions
407414* ActionsApi* | [ ** explain_afm** ] ( docs/ActionsApi.md#explain_afm ) | ** POST** /api/v1/actions/workspaces/{workspaceId}/execution/afm/explain | AFM explain resource.
@@ -414,6 +421,9 @@ Class | Method | HTTP request | Description
414421* ActionsApi* | [ ** get_exported_file** ] ( docs/ActionsApi.md#get_exported_file ) | ** GET** /api/v1/actions/workspaces/{workspaceId}/export/visual/{exportId} | Retrieve exported files
415422* ActionsApi* | [ ** get_metadata** ] ( docs/ActionsApi.md#get_metadata ) | ** GET** /api/v1/actions/workspaces/{workspaceId}/export/visual/{exportId}/metadata | Retrieve metadata context
416423* ActionsApi* | [ ** get_notifications** ] ( docs/ActionsApi.md#get_notifications ) | ** GET** /api/v1/actions/notifications | Get latest notifications.
424+ * ActionsApi* | [ ** get_raw_export** ] ( docs/ActionsApi.md#get_raw_export ) | ** GET** /api/v1/actions/workspaces/{workspaceId}/export/raw/{exportId} | (EXPERIMENTAL) Retrieve exported files
425+ * ActionsApi* | [ ** get_slides_export** ] ( docs/ActionsApi.md#get_slides_export ) | ** GET** /api/v1/actions/workspaces/{workspaceId}/export/slides/{exportId} | (EXPERIMENTAL) Retrieve exported files
426+ * ActionsApi* | [ ** get_slides_export_metadata** ] ( docs/ActionsApi.md#get_slides_export_metadata ) | ** GET** /api/v1/actions/workspaces/{workspaceId}/export/slides/{exportId}/metadata | (EXPERIMENTAL) Retrieve metadata context
417427* ActionsApi* | [ ** get_tabular_export** ] ( docs/ActionsApi.md#get_tabular_export ) | ** GET** /api/v1/actions/workspaces/{workspaceId}/export/tabular/{exportId} | Retrieve exported files
418428* ActionsApi* | [ ** get_translation_tags** ] ( docs/ActionsApi.md#get_translation_tags ) | ** GET** /api/v1/actions/workspaces/{workspaceId}/translations | Get translation tags.
419429* ActionsApi* | [ ** inherited_entity_conflicts** ] ( docs/ActionsApi.md#inherited_entity_conflicts ) | ** GET** /api/v1/actions/workspaces/{workspaceId}/inheritedEntityConflicts | Finds identifier conflicts in workspace hierarchy.
@@ -1613,6 +1623,7 @@ Class | Method | HTTP request | Description
16131623 - [ PdmSql] ( docs/PdmSql.md )
16141624 - [ PermissionsAssignment] ( docs/PermissionsAssignment.md )
16151625 - [ PermissionsForAssignee] ( docs/PermissionsForAssignee.md )
1626+ - [ PermissionsForAssigneeAllOf] ( docs/PermissionsForAssigneeAllOf.md )
16161627 - [ PermissionsForAssigneeRule] ( docs/PermissionsForAssigneeRule.md )
16171628 - [ PlatformUsage] ( docs/PlatformUsage.md )
16181629 - [ PlatformUsageRequest] ( docs/PlatformUsageRequest.md )
@@ -1631,6 +1642,10 @@ Class | Method | HTTP request | Description
16311642 - [ RangeWrapper] ( docs/RangeWrapper.md )
16321643 - [ RankingFilter] ( docs/RankingFilter.md )
16331644 - [ RankingFilterRankingFilter] ( docs/RankingFilterRankingFilter.md )
1645+ - [ RawCustomLabel] ( docs/RawCustomLabel.md )
1646+ - [ RawCustomMetric] ( docs/RawCustomMetric.md )
1647+ - [ RawCustomOverride] ( docs/RawCustomOverride.md )
1648+ - [ RawExportRequest] ( docs/RawExportRequest.md )
16341649 - [ ReferenceIdentifier] ( docs/ReferenceIdentifier.md )
16351650 - [ ReferenceSourceColumn] ( docs/ReferenceSourceColumn.md )
16361651 - [ Relative] ( docs/Relative.md )
@@ -1659,6 +1674,7 @@ Class | Method | HTTP request | Description
16591674 - [ SimpleMeasureDefinition] ( docs/SimpleMeasureDefinition.md )
16601675 - [ SimpleMeasureDefinitionMeasure] ( docs/SimpleMeasureDefinitionMeasure.md )
16611676 - [ Skeleton] ( docs/Skeleton.md )
1677+ - [ SlidesExportRequest] ( docs/SlidesExportRequest.md )
16621678 - [ SmartFunctionResponse] ( docs/SmartFunctionResponse.md )
16631679 - [ Smtp] ( docs/Smtp.md )
16641680 - [ SmtpAllOf] ( docs/SmtpAllOf.md )
0 commit comments