@qlik/api 0.0.3 → 0.0.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.
- package/apps.d.mts +1 -1
- package/apps.d.ts +1 -1
- package/csp-origins.d.mts +4 -1
- package/csp-origins.d.ts +4 -1
- package/package.json +1 -1
package/apps.d.mts
CHANGED
|
@@ -71,7 +71,7 @@ type AnalysisModelResponseDetail = {
|
|
|
71
71
|
isLogicalModelEnabled?: boolean;
|
|
72
72
|
masterItems?: AnalysisModelItemMasterItem[];
|
|
73
73
|
};
|
|
74
|
-
type AnalysisRecommendRequest =
|
|
74
|
+
type AnalysisRecommendRequest = RecommendNaturalLangQuery | RecommendItems;
|
|
75
75
|
type AnalysisRecommendationResponse = {
|
|
76
76
|
data?: AnalysisRecommendationResponseDetail[];
|
|
77
77
|
};
|
package/apps.d.ts
CHANGED
|
@@ -71,7 +71,7 @@ type AnalysisModelResponseDetail = {
|
|
|
71
71
|
isLogicalModelEnabled?: boolean;
|
|
72
72
|
masterItems?: AnalysisModelItemMasterItem[];
|
|
73
73
|
};
|
|
74
|
-
type AnalysisRecommendRequest =
|
|
74
|
+
type AnalysisRecommendRequest = RecommendNaturalLangQuery | RecommendItems;
|
|
75
75
|
type AnalysisRecommendationResponse = {
|
|
76
76
|
data?: AnalysisRecommendationResponseDetail[];
|
|
77
77
|
};
|
package/csp-origins.d.mts
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { A as ApiCallOptions } from './global.types-Eto4uYwy.mjs';
|
|
2
2
|
import './auth-types-nnUcWhuU.mjs';
|
|
3
3
|
|
|
4
|
-
type CSPEntry =
|
|
4
|
+
type CSPEntry = {
|
|
5
|
+
/** The CSP entry's unique identifier. */
|
|
6
|
+
id?: string;
|
|
7
|
+
} & CSPEntryContent;
|
|
5
8
|
type CSPEntryContent = {
|
|
6
9
|
/** Defines the valid sources for loading web workers and nested browsing contexts using elements such as frame and iFrame. */
|
|
7
10
|
childSrc?: boolean;
|
package/csp-origins.d.ts
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { A as ApiCallOptions } from './global.types-hIvp-WdX.js';
|
|
2
2
|
import './auth-types-nnUcWhuU.js';
|
|
3
3
|
|
|
4
|
-
type CSPEntry =
|
|
4
|
+
type CSPEntry = {
|
|
5
|
+
/** The CSP entry's unique identifier. */
|
|
6
|
+
id?: string;
|
|
7
|
+
} & CSPEntryContent;
|
|
5
8
|
type CSPEntryContent = {
|
|
6
9
|
/** Defines the valid sources for loading web workers and nested browsing contexts using elements such as frame and iFrame. */
|
|
7
10
|
childSrc?: boolean;
|
package/package.json
CHANGED