@gooddata/sdk-model 11.1.0-alpha.1 → 11.1.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/sdk-model.d.ts +5 -9
- package/esm/tsdoc-metadata.json +1 -1
- package/package.json +1 -1
package/esm/sdk-model.d.ts
CHANGED
|
@@ -10,10 +10,6 @@
|
|
|
10
10
|
* @packageDocumentation
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import { ComparatorDirection as ComparatorDirection_2 } from '../base/comparators.js';
|
|
14
|
-
import { IComparator as IComparator_2 } from '../base/comparators.js';
|
|
15
|
-
import { IInsightDefinition as IInsightDefinition_2 } from './index.js';
|
|
16
|
-
|
|
17
13
|
/**
|
|
18
14
|
* Gets effective values of an absolute date filter.
|
|
19
15
|
*
|
|
@@ -6508,12 +6504,12 @@ export declare function insightCreatedBy(insight: IInsight): IUser | undefined;
|
|
|
6508
6504
|
/**
|
|
6509
6505
|
* @beta
|
|
6510
6506
|
*/
|
|
6511
|
-
export declare const insightCreatedByComparator: (direction:
|
|
6507
|
+
export declare const insightCreatedByComparator: (direction: ComparatorDirection) => IComparator<IInsight>;
|
|
6512
6508
|
|
|
6513
6509
|
/**
|
|
6514
6510
|
* @beta
|
|
6515
6511
|
*/
|
|
6516
|
-
export declare const insightCreatedComparator: (direction:
|
|
6512
|
+
export declare const insightCreatedComparator: (direction: ComparatorDirection) => IComparator<IInsight>;
|
|
6517
6513
|
|
|
6518
6514
|
/**
|
|
6519
6515
|
* Insight definition builder can be used to set various properties of the insight using fluent API.
|
|
@@ -6798,7 +6794,7 @@ export declare function insightTitle(insight: IInsightDefinition): string;
|
|
|
6798
6794
|
/**
|
|
6799
6795
|
* @beta
|
|
6800
6796
|
*/
|
|
6801
|
-
export declare const insightTitleComparator: (direction:
|
|
6797
|
+
export declare const insightTitleComparator: (direction: ComparatorDirection) => IComparator<IInsightDefinition>;
|
|
6802
6798
|
|
|
6803
6799
|
/**
|
|
6804
6800
|
* Gets all totals defined in the insight
|
|
@@ -6830,12 +6826,12 @@ export declare function insightUpdatedBy(insight: IInsight): IUser | undefined;
|
|
|
6830
6826
|
/**
|
|
6831
6827
|
* @beta
|
|
6832
6828
|
*/
|
|
6833
|
-
export declare const insightUpdatedByComparator: (direction:
|
|
6829
|
+
export declare const insightUpdatedByComparator: (direction: ComparatorDirection) => IComparator<IInsight>;
|
|
6834
6830
|
|
|
6835
6831
|
/**
|
|
6836
6832
|
* @beta
|
|
6837
6833
|
*/
|
|
6838
|
-
export declare const insightUpdatedComparator: (direction:
|
|
6834
|
+
export declare const insightUpdatedComparator: (direction: ComparatorDirection) => IComparator<IInsight>;
|
|
6839
6835
|
|
|
6840
6836
|
/**
|
|
6841
6837
|
* Gets the insight uri
|
package/esm/tsdoc-metadata.json
CHANGED