@gooddata/sdk-backend-base 11.40.0-alpha.3 → 11.40.0-alpha.4
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type IAnalyticalWorkspace, type IAttributeHierarchiesService, type IDataFiltersService, type IDateFilterConfigsQuery, type IExecutionFactory, type IGenAIService, type IReferencesService, type IWorkspaceAccessControlService, type IWorkspaceAttributesService, type IWorkspaceAutomationService, type IWorkspaceCatalogFactory, type IWorkspaceDashboardsService, type IWorkspaceDatasetsService, type IWorkspaceDescriptor, type IWorkspaceExportDefinitionsService, type IWorkspaceFactsService, type IWorkspaceInsightsService, type IWorkspaceKeyDriverAnalysisService, type IWorkspaceLogicalModelService, type IWorkspaceMeasuresService, type IWorkspaceParametersService, type IWorkspacePermissionsService, type IWorkspaceSettingsService, type IWorkspaceStylingService, type IWorkspaceUserGroupsQuery, type IWorkspaceUsersQuery } from "@gooddata/sdk-backend-spi";
|
|
1
|
+
import { type IAnalyticalWorkspace, type IAttributeHierarchiesService, type IDataFiltersService, type IDateFilterConfigsQuery, type IExecutionFactory, type IGenAIService, type IReferencesService, type IWorkspaceAccessControlService, type IWorkspaceAttributesService, type IWorkspaceAutomationService, type IWorkspaceCatalogFactory, type IWorkspaceDashboardsService, type IWorkspaceDatasetsService, type IWorkspaceDescriptor, type IWorkspaceExportDefinitionsService, type IWorkspaceFactsService, type IWorkspaceInsightsService, type IWorkspaceKeyDriverAnalysisService, type IWorkspaceLogicalModelService, type IWorkspaceMeasuresService, type IWorkspaceObjectPermissionsService, type IWorkspaceParametersService, type IWorkspacePermissionsService, type IWorkspaceSettingsService, type IWorkspaceStylingService, type IWorkspaceUserGroupsQuery, type IWorkspaceUsersQuery } from "@gooddata/sdk-backend-spi";
|
|
2
2
|
import { type CustomBackendConfig, type CustomBackendState } from "./config.js";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
@@ -28,6 +28,7 @@ export declare class CustomWorkspace implements IAnalyticalWorkspace {
|
|
|
28
28
|
dateFilterConfigs(): IDateFilterConfigsQuery;
|
|
29
29
|
userGroups(): IWorkspaceUserGroupsQuery;
|
|
30
30
|
accessControl(): IWorkspaceAccessControlService;
|
|
31
|
+
objectPermissions(): IWorkspaceObjectPermissionsService;
|
|
31
32
|
attributeHierarchies(): IAttributeHierarchiesService;
|
|
32
33
|
exportDefinitions(): IWorkspaceExportDefinitionsService;
|
|
33
34
|
dataFilters(): IDataFiltersService;
|
|
@@ -82,6 +82,9 @@ export class CustomWorkspace {
|
|
|
82
82
|
accessControl() {
|
|
83
83
|
throw new NotSupported("access control is not supported");
|
|
84
84
|
}
|
|
85
|
+
objectPermissions() {
|
|
86
|
+
throw new NotSupported("object-level permissions are not supported");
|
|
87
|
+
}
|
|
85
88
|
attributeHierarchies() {
|
|
86
89
|
throw new NotSupported("attribute hierarchy is not supported");
|
|
87
90
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type IAnalyticalWorkspace, type IAttributeHierarchiesService, type IDataFiltersService, type IDateFilterConfigsQuery, type IExecutionFactory, type IGenAIService, type IReferencesService, type IWorkspaceAccessControlService, type IWorkspaceAttributesService, type IWorkspaceAutomationService, type IWorkspaceCatalogFactory, type IWorkspaceDashboardsService, type IWorkspaceDatasetsService, type IWorkspaceDescriptor, type IWorkspaceDescriptorUpdate, type IWorkspaceExportDefinitionsService, type IWorkspaceFactsService, type IWorkspaceInsightsService, type IWorkspaceKeyDriverAnalysisService, type IWorkspaceLogicalModelService, type IWorkspaceMeasuresService, type IWorkspaceParametersService, type IWorkspacePermissionsService, type IWorkspaceSettingsService, type IWorkspaceStylingService, type IWorkspaceUserGroupsQuery, type IWorkspaceUsersQuery } from "@gooddata/sdk-backend-spi";
|
|
1
|
+
import { type IAnalyticalWorkspace, type IAttributeHierarchiesService, type IDataFiltersService, type IDateFilterConfigsQuery, type IExecutionFactory, type IGenAIService, type IReferencesService, type IWorkspaceAccessControlService, type IWorkspaceAttributesService, type IWorkspaceAutomationService, type IWorkspaceCatalogFactory, type IWorkspaceDashboardsService, type IWorkspaceDatasetsService, type IWorkspaceDescriptor, type IWorkspaceDescriptorUpdate, type IWorkspaceExportDefinitionsService, type IWorkspaceFactsService, type IWorkspaceInsightsService, type IWorkspaceKeyDriverAnalysisService, type IWorkspaceLogicalModelService, type IWorkspaceMeasuresService, type IWorkspaceObjectPermissionsService, type IWorkspaceParametersService, type IWorkspacePermissionsService, type IWorkspaceSettingsService, type IWorkspaceStylingService, type IWorkspaceUserGroupsQuery, type IWorkspaceUsersQuery } from "@gooddata/sdk-backend-spi";
|
|
2
2
|
import { type DecoratorFactories } from "./types.js";
|
|
3
3
|
export declare class AnalyticalWorkspaceDecorator implements IAnalyticalWorkspace {
|
|
4
4
|
workspace: string;
|
|
@@ -25,6 +25,7 @@ export declare class AnalyticalWorkspaceDecorator implements IAnalyticalWorkspac
|
|
|
25
25
|
dateFilterConfigs(): IDateFilterConfigsQuery;
|
|
26
26
|
userGroups(): IWorkspaceUserGroupsQuery;
|
|
27
27
|
accessControl(): IWorkspaceAccessControlService;
|
|
28
|
+
objectPermissions(): IWorkspaceObjectPermissionsService;
|
|
28
29
|
attributeHierarchies(): IAttributeHierarchiesService;
|
|
29
30
|
exportDefinitions(): IWorkspaceExportDefinitionsService;
|
|
30
31
|
dataFilters(): IDataFiltersService;
|
|
@@ -88,6 +88,9 @@ export class AnalyticalWorkspaceDecorator {
|
|
|
88
88
|
accessControl() {
|
|
89
89
|
return this.decorated.accessControl();
|
|
90
90
|
}
|
|
91
|
+
objectPermissions() {
|
|
92
|
+
return this.decorated.objectPermissions();
|
|
93
|
+
}
|
|
91
94
|
attributeHierarchies() {
|
|
92
95
|
return this.decorated.attributeHierarchies();
|
|
93
96
|
}
|
|
@@ -257,6 +257,9 @@ function dummyWorkspace(workspace, config) {
|
|
|
257
257
|
accessControl() {
|
|
258
258
|
throw new NotSupported("not supported");
|
|
259
259
|
},
|
|
260
|
+
objectPermissions() {
|
|
261
|
+
throw new NotSupported("not supported");
|
|
262
|
+
},
|
|
260
263
|
attributeHierarchies() {
|
|
261
264
|
throw new NotSupported("not supported");
|
|
262
265
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-backend-base",
|
|
3
|
-
"version": "11.40.0-alpha.
|
|
3
|
+
"version": "11.40.0-alpha.4",
|
|
4
4
|
"description": "GoodData.UI SDK - Base for backend implementations",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "GoodData",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"ts-invariant": "0.10.3",
|
|
30
30
|
"tslib": "2.8.1",
|
|
31
31
|
"uuid": "11.1.0",
|
|
32
|
-
"@gooddata/sdk-backend-spi": "11.40.0-alpha.
|
|
33
|
-
"@gooddata/sdk-model": "11.40.0-alpha.
|
|
34
|
-
"@gooddata/util": "11.40.0-alpha.
|
|
32
|
+
"@gooddata/sdk-backend-spi": "11.40.0-alpha.4",
|
|
33
|
+
"@gooddata/sdk-model": "11.40.0-alpha.4",
|
|
34
|
+
"@gooddata/util": "11.40.0-alpha.4"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@microsoft/api-documenter": "^7.17.0",
|
|
@@ -51,14 +51,14 @@
|
|
|
51
51
|
"eslint-plugin-no-barrel-files": "1.2.2",
|
|
52
52
|
"eslint-plugin-sonarjs": "3.0.6",
|
|
53
53
|
"npm-run-all": "^4.1.5",
|
|
54
|
-
"oxfmt": "0.
|
|
55
|
-
"oxlint": "
|
|
56
|
-
"oxlint-tsgolint": "0.
|
|
54
|
+
"oxfmt": "0.52.0",
|
|
55
|
+
"oxlint": "1.51.0",
|
|
56
|
+
"oxlint-tsgolint": "0.15.0",
|
|
57
57
|
"typescript": "5.9.3",
|
|
58
|
-
"vitest": "4.1.
|
|
59
|
-
"@gooddata/
|
|
60
|
-
"@gooddata/
|
|
61
|
-
"@gooddata/reference-workspace": "11.40.0-alpha.
|
|
58
|
+
"vitest": "4.1.8",
|
|
59
|
+
"@gooddata/oxlint-config": "11.40.0-alpha.4",
|
|
60
|
+
"@gooddata/eslint-config": "11.40.0-alpha.4",
|
|
61
|
+
"@gooddata/reference-workspace": "11.40.0-alpha.4"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"_phase:build": "npm run build",
|