@gooddata/sdk-backend-spi 10.9.0-alpha.6 → 10.9.0-alpha.7
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 { ISettings, IWhiteLabeling, IOpenAiConfig } from "@gooddata/sdk-model";
|
|
1
|
+
import { ISettings, IWhiteLabeling, IOpenAiConfig, IAlertDefault } from "@gooddata/sdk-model";
|
|
2
2
|
/**
|
|
3
3
|
* This service provides access to organization settings
|
|
4
4
|
*
|
|
@@ -54,6 +54,14 @@ export interface IOrganizationSettingsService {
|
|
|
54
54
|
* @returns promise
|
|
55
55
|
*/
|
|
56
56
|
setTheme(themeId: string): Promise<void>;
|
|
57
|
+
/**
|
|
58
|
+
* Sets alert default
|
|
59
|
+
*
|
|
60
|
+
* @param value - describes parameters for alerting.
|
|
61
|
+
*
|
|
62
|
+
* @returns promise
|
|
63
|
+
*/
|
|
64
|
+
setAlertDefault(value: IAlertDefault): Promise<void>;
|
|
57
65
|
/**
|
|
58
66
|
* Sets color palette for organization.
|
|
59
67
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/organization/settings/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/organization/settings/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAE9F;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IACzC;;;;;;OAMG;IACH,gBAAgB,CAAC,aAAa,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE/D;;;;;;OAMG;IACH,SAAS,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEzC;;;;;;;OAOG;IACH,WAAW,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE7C;;;;;;OAMG;IACH,aAAa,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjD;;;;;;OAMG;IACH,YAAY,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE/C;;;;;;OAMG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEzC;;;;;;OAMG;IACH,eAAe,CAAC,KAAK,EAAE,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAErD;;;;;;OAMG;IACH,eAAe,CAAC,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEvD;;;;;;;OAOG;IACH,eAAe,CAAC,MAAM,EAAE,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEtD;;;;OAIG;IACH,WAAW,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IAE7B;;;;OAIG;IACH,kBAAkB,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IAEpC;;;;;;;OAOG;IACH,WAAW,IAAI,OAAO,CAAC,SAAS,CAAC,CAAC;CACrC"}
|
package/esm/sdk-backend-spi.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ import { FilterContextItem } from '@gooddata/sdk-model';
|
|
|
17
17
|
import { GenAISemanticSearchType } from '@gooddata/sdk-model';
|
|
18
18
|
import { IAbsoluteDateFilter } from '@gooddata/sdk-model';
|
|
19
19
|
import { IAccessGrantee } from '@gooddata/sdk-model';
|
|
20
|
+
import { IAlertDefault } from '@gooddata/sdk-model';
|
|
20
21
|
import { IAttributeDisplayFormMetadataObject } from '@gooddata/sdk-model';
|
|
21
22
|
import { IAttributeElement } from '@gooddata/sdk-model';
|
|
22
23
|
import { IAttributeFilter } from '@gooddata/sdk-model';
|
|
@@ -2736,6 +2737,14 @@ export declare interface IOrganizationSettingsService {
|
|
|
2736
2737
|
* @returns promise
|
|
2737
2738
|
*/
|
|
2738
2739
|
setTheme(themeId: string): Promise<void>;
|
|
2740
|
+
/**
|
|
2741
|
+
* Sets alert default
|
|
2742
|
+
*
|
|
2743
|
+
* @param value - describes parameters for alerting.
|
|
2744
|
+
*
|
|
2745
|
+
* @returns promise
|
|
2746
|
+
*/
|
|
2747
|
+
setAlertDefault(value: IAlertDefault): Promise<void>;
|
|
2739
2748
|
/**
|
|
2740
2749
|
* Sets color palette for organization.
|
|
2741
2750
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-backend-spi",
|
|
3
|
-
"version": "10.9.0-alpha.
|
|
3
|
+
"version": "10.9.0-alpha.7",
|
|
4
4
|
"author": "GoodData",
|
|
5
5
|
"description": "GoodData Backend SPI abstraction interfaces",
|
|
6
6
|
"repository": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"lodash": "^4.17.21",
|
|
25
25
|
"ts-invariant": "^0.7.5",
|
|
26
26
|
"tslib": "^2.5.0",
|
|
27
|
-
"@gooddata/sdk-model": "10.9.0-alpha.
|
|
27
|
+
"@gooddata/sdk-model": "10.9.0-alpha.7"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@gooddata/eslint-config": "^4.1.0",
|