@gooddata/sdk-backend-spi 10.18.0-alpha.0 → 10.18.0-alpha.2
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/esm/organization/notifications/query.d.ts +7 -0
- package/esm/organization/notifications/query.d.ts.map +1 -1
- package/esm/sdk-backend-spi.d.ts +13 -0
- package/esm/workspace/dateFilterConfigs/index.d.ts +6 -0
- package/esm/workspace/dateFilterConfigs/index.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -30,6 +30,13 @@ export interface INotificationsQuery {
|
|
|
30
30
|
* @returns notifications query
|
|
31
31
|
*/
|
|
32
32
|
withWorkspace(workspaceId: string): INotificationsQuery;
|
|
33
|
+
/**
|
|
34
|
+
* Filter notifications by read status.
|
|
35
|
+
*
|
|
36
|
+
* @param status - "read" or "unread"
|
|
37
|
+
* @returns notifications query
|
|
38
|
+
*/
|
|
39
|
+
withStatus(status: "read" | "unread"): INotificationsQuery;
|
|
33
40
|
/**
|
|
34
41
|
* Starts the notifications query.
|
|
35
42
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query.d.ts","sourceRoot":"","sources":["../../../src/organization/notifications/query.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAExD;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;;;OAMG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,mBAAmB,CAAC;IAE5C;;;;;;;OAOG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,mBAAmB,CAAC;IAE5C;;;;;OAKG;IACH,aAAa,CAAC,WAAW,EAAE,MAAM,GAAG,mBAAmB,CAAC;IAExD;;;;OAIG;IACH,KAAK,IAAI,OAAO,CAAC,yBAAyB,CAAC,CAAC;IAE5C;;;;OAIG;IACH,QAAQ,IAAI,OAAO,CAAC,aAAa,EAAE,CAAC,CAAC;CACxC;AAED;;;;GAIG;AACH,MAAM,MAAM,yBAAyB,GAAG,cAAc,CAAC,aAAa,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"query.d.ts","sourceRoot":"","sources":["../../../src/organization/notifications/query.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAExD;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;;;OAMG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,mBAAmB,CAAC;IAE5C;;;;;;;OAOG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,mBAAmB,CAAC;IAE5C;;;;;OAKG;IACH,aAAa,CAAC,WAAW,EAAE,MAAM,GAAG,mBAAmB,CAAC;IAExD;;;;;OAKG;IACH,UAAU,CAAC,MAAM,EAAE,MAAM,GAAG,QAAQ,GAAG,mBAAmB,CAAC;IAE3D;;;;OAIG;IACH,KAAK,IAAI,OAAO,CAAC,yBAAyB,CAAC,CAAC;IAE5C;;;;OAIG;IACH,QAAQ,IAAI,OAAO,CAAC,aAAa,EAAE,CAAC,CAAC;CACxC;AAED;;;;GAIG;AACH,MAAM,MAAM,yBAAyB,GAAG,cAAc,CAAC,aAAa,CAAC,CAAC"}
|
package/esm/sdk-backend-spi.d.ts
CHANGED
|
@@ -1507,6 +1507,12 @@ export declare interface IDateFilterConfigsQuery {
|
|
|
1507
1507
|
* @returns promise of first page of the results
|
|
1508
1508
|
*/
|
|
1509
1509
|
query(): Promise<IDateFilterConfigsQueryResult>;
|
|
1510
|
+
/**
|
|
1511
|
+
* Starts the custom date filter confis by settings query.
|
|
1512
|
+
*
|
|
1513
|
+
* @returns promise of first page of the results
|
|
1514
|
+
*/
|
|
1515
|
+
queryCustomDateFilterConfig(): Promise<IDateFilterConfigsQueryResult>;
|
|
1510
1516
|
}
|
|
1511
1517
|
|
|
1512
1518
|
/**
|
|
@@ -2694,6 +2700,13 @@ export declare interface INotificationsQuery {
|
|
|
2694
2700
|
* @returns notifications query
|
|
2695
2701
|
*/
|
|
2696
2702
|
withWorkspace(workspaceId: string): INotificationsQuery;
|
|
2703
|
+
/**
|
|
2704
|
+
* Filter notifications by read status.
|
|
2705
|
+
*
|
|
2706
|
+
* @param status - "read" or "unread"
|
|
2707
|
+
* @returns notifications query
|
|
2708
|
+
*/
|
|
2709
|
+
withStatus(status: "read" | "unread"): INotificationsQuery;
|
|
2697
2710
|
/**
|
|
2698
2711
|
* Starts the notifications query.
|
|
2699
2712
|
*
|
|
@@ -31,6 +31,12 @@ export interface IDateFilterConfigsQuery {
|
|
|
31
31
|
* @returns promise of first page of the results
|
|
32
32
|
*/
|
|
33
33
|
query(): Promise<IDateFilterConfigsQueryResult>;
|
|
34
|
+
/**
|
|
35
|
+
* Starts the custom date filter confis by settings query.
|
|
36
|
+
*
|
|
37
|
+
* @returns promise of first page of the results
|
|
38
|
+
*/
|
|
39
|
+
queryCustomDateFilterConfig(): Promise<IDateFilterConfigsQueryResult>;
|
|
34
40
|
}
|
|
35
41
|
/**
|
|
36
42
|
* Paged result of valid element query. Last page of data returns empty items.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/workspace/dateFilterConfigs/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAExD;;;;;;GAMG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;;;OAMG;IACH,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,uBAAuB,CAAC;IAElD;;;;;;;OAOG;IACH,UAAU,CAAC,MAAM,EAAE,MAAM,GAAG,uBAAuB,CAAC;IAEpD;;;;OAIG;IACH,KAAK,IAAI,OAAO,CAAC,6BAA6B,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/workspace/dateFilterConfigs/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAExD;;;;;;GAMG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;;;OAMG;IACH,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,uBAAuB,CAAC;IAElD;;;;;;;OAOG;IACH,UAAU,CAAC,MAAM,EAAE,MAAM,GAAG,uBAAuB,CAAC;IAEpD;;;;OAIG;IACH,KAAK,IAAI,OAAO,CAAC,6BAA6B,CAAC,CAAC;IAEhD;;;;OAIG;IACH,2BAA2B,IAAI,OAAO,CAAC,6BAA6B,CAAC,CAAC;CACzE;AAED;;;;GAIG;AACH,MAAM,MAAM,6BAA6B,GAAG,cAAc,CAAC,iBAAiB,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-backend-spi",
|
|
3
|
-
"version": "10.18.0-alpha.
|
|
3
|
+
"version": "10.18.0-alpha.2",
|
|
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.18.0-alpha.
|
|
27
|
+
"@gooddata/sdk-model": "10.18.0-alpha.2"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@gooddata/eslint-config": "^4.1.0",
|