@qlik/api 1.8.0 → 1.10.0
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/api-keys.js +2 -2
- package/apps.d.ts +1 -1
- package/apps.js +2 -2
- package/audits.js +2 -2
- package/auth.js +2 -2
- package/automations.js +2 -2
- package/brands.js +2 -2
- package/chunks/{QXDBGF7B.js → 7OFKSIFV.js} +2 -2
- package/chunks/{IEB2MTJ3.js → AN7SLSGK.js} +1 -1
- package/chunks/{6UGE6PR7.js → AOO7YWBX.js} +2 -4
- package/chunks/{HZ5LN65C.js → B2KHDUE3.js} +1 -1
- package/chunks/{7C6WMELW.js → Q4YZPSU3.js} +3 -3
- package/chunks/{6P5HRFLL.js → U7AYZVA3.js} +1 -1
- package/chunks/{JR4AYAEK.js → UJ4EFAWC.js} +1 -1
- package/collections.js +2 -2
- package/csp-origins.js +2 -2
- package/data-assets.js +2 -2
- package/data-connections.js +2 -2
- package/data-credentials.js +2 -2
- package/data-files.js +2 -2
- package/extensions.js +2 -2
- package/glossaries.d.ts +3 -3
- package/glossaries.js +2 -2
- package/groups.js +2 -2
- package/identity-providers.js +2 -2
- package/index.js +4 -4
- package/items.js +2 -2
- package/licenses.js +2 -2
- package/package.json +1 -1
- package/qix.d.ts +2 -2
- package/qix.js +2 -2
- package/quotas.js +2 -2
- package/reload-tasks.js +2 -2
- package/reloads.js +2 -2
- package/reports.js +2 -2
- package/roles.d.ts +4 -4
- package/roles.js +2 -2
- package/spaces.js +2 -2
- package/temp-contents.js +2 -2
- package/tenants.js +2 -2
- package/themes.js +2 -2
- package/transports.js +2 -2
- package/users.js +2 -2
- package/web-integrations.js +2 -2
- package/web-notifications.js +2 -2
- package/webhooks.js +2 -2
package/api-keys.js
CHANGED
package/apps.d.ts
CHANGED
|
@@ -964,7 +964,7 @@ type UpdateOwner = {
|
|
|
964
964
|
type UpdateSpace = {
|
|
965
965
|
spaceId?: string;
|
|
966
966
|
};
|
|
967
|
-
type UsageEnum = "ANALYTICS" | "DATA_PREPARATION";
|
|
967
|
+
type UsageEnum = "ANALYTICS" | "DATA_PREPARATION" | "DATAFLOW_PREP";
|
|
968
968
|
type UserPrivileges = "can_create_app" | "can_import_app" | "can_create_session_app";
|
|
969
969
|
type Classification = {
|
|
970
970
|
absoluteDiff?: number;
|
package/apps.js
CHANGED
package/audits.js
CHANGED
package/auth.js
CHANGED
package/automations.js
CHANGED
package/brands.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getInvokeFetchRuntimeModule
|
|
3
|
-
} from "./
|
|
3
|
+
} from "./Q4YZPSU3.js";
|
|
4
4
|
import {
|
|
5
5
|
isBrowser
|
|
6
6
|
} from "./2ZQ3ZX7F.js";
|
|
7
7
|
|
|
8
8
|
// src/public/invoke-fetch.ts
|
|
9
|
-
var defaultUserAgent = "qlik-api/1.
|
|
9
|
+
var defaultUserAgent = "qlik-api/1.10.0";
|
|
10
10
|
async function invokeFetch(api, props) {
|
|
11
11
|
const hostConfig = props.options?.hostConfig;
|
|
12
12
|
let userAgent;
|
|
@@ -9569,8 +9569,7 @@ var mixin4 = {
|
|
|
9569
9569
|
getOrCreateSessionObject(props) {
|
|
9570
9570
|
const app = this;
|
|
9571
9571
|
const id = props.qInfo?.qId;
|
|
9572
|
-
if (!id)
|
|
9573
|
-
throw new Error("Invalid list definition. No qId defined");
|
|
9572
|
+
if (!id) throw new Error("Invalid list definition. No qId defined");
|
|
9574
9573
|
if (!app._listCache[id]) {
|
|
9575
9574
|
if (app.session.sessionState === "SESSION_ATTACHED") {
|
|
9576
9575
|
app._listCache[id] = app.getObject(id).catch(() => app.createSessionObject(props));
|
|
@@ -9596,8 +9595,7 @@ var mixin4 = {
|
|
|
9596
9595
|
outKey = outKey.replace(/Def$/g, "");
|
|
9597
9596
|
}
|
|
9598
9597
|
const id = listDef.qInfo?.qId;
|
|
9599
|
-
if (!id)
|
|
9600
|
-
throw new Error("Invalid list definition. No qId defined");
|
|
9598
|
+
if (!id) throw new Error("Invalid list definition. No qId defined");
|
|
9601
9599
|
if (!app._listCache[id]) {
|
|
9602
9600
|
app.getOrCreateSessionObject(listDef).then((obj) => {
|
|
9603
9601
|
const getLayout = obj.getLayout.bind(obj);
|
|
@@ -101,7 +101,7 @@ function listenForWindowsAuthenticationInformation(session) {
|
|
|
101
101
|
return authSuggestedInWebsocket;
|
|
102
102
|
}
|
|
103
103
|
async function createAndSetupEnigmaSession(props, canRetry) {
|
|
104
|
-
const { createEnigmaSession } = await import("./
|
|
104
|
+
const { createEnigmaSession } = await import("./AOO7YWBX.js");
|
|
105
105
|
const session = await createEnigmaSession(props);
|
|
106
106
|
setupSessionListeners(session, props);
|
|
107
107
|
let global;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
// src/public/public-runtime-modules.ts
|
|
2
2
|
function getAuthRuntimeModule(hostConfig) {
|
|
3
3
|
const isNode = !!globalThis.process?.argv;
|
|
4
|
-
return isNode ? import("./5WSW4QG3.js") : import("./
|
|
4
|
+
return isNode ? import("./5WSW4QG3.js") : import("./U7AYZVA3.js").then((mod) => mod.importRuntimeModule("auth@v1", hostConfig));
|
|
5
5
|
}
|
|
6
6
|
async function getQixRuntimeModule(hostConfig) {
|
|
7
7
|
await getAuthRuntimeModule(hostConfig);
|
|
8
8
|
const isNode = !!globalThis.process?.argv;
|
|
9
|
-
return isNode ? import("./
|
|
9
|
+
return isNode ? import("./B2KHDUE3.js") : import("./U7AYZVA3.js").then((mod) => mod.importRuntimeModule("qix@v1", hostConfig));
|
|
10
10
|
}
|
|
11
11
|
async function getInvokeFetchRuntimeModule(hostConfig) {
|
|
12
12
|
await getAuthRuntimeModule(hostConfig);
|
|
13
13
|
const isNode = !!globalThis.process?.argv;
|
|
14
|
-
return isNode ? import("./SW3DXPAP.js") : import("./
|
|
14
|
+
return isNode ? import("./SW3DXPAP.js") : import("./U7AYZVA3.js").then((mod) => mod.importRuntimeModule("invoke-fetch@v1", hostConfig));
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
export {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// node_modules/.pnpm/@qlik+runtime-module-loader@1.0.
|
|
1
|
+
// node_modules/.pnpm/@qlik+runtime-module-loader@1.0.5_bufferutil@4.0.8/node_modules/@qlik/runtime-module-loader/dist/index.js
|
|
2
2
|
window.__qlikMainPrivateResolvers = window.__qlikMainPrivateResolvers || {};
|
|
3
3
|
window.__qlikMainPrivateResolvers.mainUrlPromise = window.__qlikMainPrivateResolvers.mainUrlPromise || new Promise((resolve) => {
|
|
4
4
|
window.__qlikMainPrivateResolvers.resolveMainJsUrl = (value) => resolve(value);
|
package/collections.js
CHANGED
package/csp-origins.js
CHANGED
package/data-assets.js
CHANGED
package/data-connections.js
CHANGED
package/data-credentials.js
CHANGED
package/data-files.js
CHANGED
package/extensions.js
CHANGED
package/glossaries.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ type AtlanEntity = {
|
|
|
27
27
|
type AtlanEntityAttributes = {
|
|
28
28
|
abbreviation?: string;
|
|
29
29
|
displayText?: string;
|
|
30
|
-
examples?:
|
|
30
|
+
examples?: unknown;
|
|
31
31
|
guid?: string;
|
|
32
32
|
name?: string;
|
|
33
33
|
parentCategory?: string;
|
|
@@ -373,7 +373,7 @@ type TermCreateLinksTo = {
|
|
|
373
373
|
resourceType: "app" | "dataset";
|
|
374
374
|
subResourceId?: string;
|
|
375
375
|
subResourceName?: string;
|
|
376
|
-
subResourceType?: "master_dimension" | "master_measure";
|
|
376
|
+
subResourceType?: "master_dimension" | "master_measure" | "field";
|
|
377
377
|
type?: "definition" | "related";
|
|
378
378
|
};
|
|
379
379
|
/**
|
|
@@ -394,7 +394,7 @@ type TermLinksTo = {
|
|
|
394
394
|
/** Different formats based on subresource type. Could be e.g. OID or UUID. */
|
|
395
395
|
subResourceId?: string;
|
|
396
396
|
subResourceName?: string;
|
|
397
|
-
subResourceType?: "master_dimension" | "master_measure";
|
|
397
|
+
subResourceType?: "master_dimension" | "master_measure" | "field";
|
|
398
398
|
/** Describes reason for item status during batch operation. E.g. why an error occurs during creation. */
|
|
399
399
|
title?: string;
|
|
400
400
|
type?: "definition" | "related";
|
package/glossaries.js
CHANGED
package/groups.js
CHANGED
package/identity-providers.js
CHANGED
package/index.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
qix_default
|
|
3
|
-
} from "./chunks/
|
|
3
|
+
} from "./chunks/AN7SLSGK.js";
|
|
4
4
|
import {
|
|
5
5
|
auth_default
|
|
6
|
-
} from "./chunks/
|
|
6
|
+
} from "./chunks/UJ4EFAWC.js";
|
|
7
7
|
import {
|
|
8
8
|
clearApiCache,
|
|
9
9
|
invokeFetch
|
|
10
|
-
} from "./chunks/
|
|
11
|
-
import "./chunks/
|
|
10
|
+
} from "./chunks/7OFKSIFV.js";
|
|
11
|
+
import "./chunks/Q4YZPSU3.js";
|
|
12
12
|
import "./chunks/2ZQ3ZX7F.js";
|
|
13
13
|
|
|
14
14
|
// src/public/public-runtime-api-generator/public-runtime-api-generator.ts
|
package/items.js
CHANGED
package/licenses.js
CHANGED
package/package.json
CHANGED
package/qix.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import './global.types-Xt6XzwlN.js';
|
|
2
2
|
import { H as HostConfig } from './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
|
-
declare const QIX_SCHEMA_VERSION = "12.
|
|
4
|
+
declare const QIX_SCHEMA_VERSION = "12.2089.0";
|
|
5
5
|
type AlfaNumString = {
|
|
6
6
|
/**
|
|
7
7
|
* Calculated value.
|
|
@@ -6815,7 +6815,7 @@ type UndoInfo = {
|
|
|
6815
6815
|
* The numbers of undos and redos are empty when an object is created. The number of possible undos is increased every time an action (for example, create a child, set some properties) on the object is performed. The number of possible redos is increased every time an undo action is performed.
|
|
6816
6816
|
*/
|
|
6817
6817
|
type UndoInfoDef = object;
|
|
6818
|
-
type UsageEnum = "ANALYTICS" | "DATA_PREPARATION";
|
|
6818
|
+
type UsageEnum = "ANALYTICS" | "DATA_PREPARATION" | "DATAFLOW_PREP";
|
|
6819
6819
|
type ValueExpr = {
|
|
6820
6820
|
/**
|
|
6821
6821
|
* Expression evaluated to dual.
|
package/qix.js
CHANGED
package/quotas.js
CHANGED
package/reload-tasks.js
CHANGED
package/reloads.js
CHANGED
package/reports.js
CHANGED
package/roles.d.ts
CHANGED
|
@@ -69,7 +69,7 @@ type Role = {
|
|
|
69
69
|
/** Descriptive text for the role. */
|
|
70
70
|
description: string;
|
|
71
71
|
/** @deprecated
|
|
72
|
-
* DEPRECATED.
|
|
72
|
+
* DEPRECATED. Use userEntitlementType instead for impact of roles on user entitlements with a capacity-based subscription. */
|
|
73
73
|
readonly fullUser?: boolean;
|
|
74
74
|
/** The unique identifier for the role. */
|
|
75
75
|
readonly id: string;
|
|
@@ -91,10 +91,10 @@ type Role = {
|
|
|
91
91
|
/** The tenant unique identifier associated with the given Role. */
|
|
92
92
|
tenantId: string;
|
|
93
93
|
/** The type of role. */
|
|
94
|
-
type: "default";
|
|
95
|
-
/** Id of user that last updated
|
|
94
|
+
type: "default" | "custom";
|
|
95
|
+
/** Id of user that last updated this role */
|
|
96
96
|
readonly updatedBy?: string;
|
|
97
|
-
/** Indicate whether this role will trigger promotion of a user from a basic to a full user on tenants with a capacity-based subscription. Does not apply to tenants with a user-based subscription. */
|
|
97
|
+
/** Indicate whether this role will trigger promotion of a user from a basic to a full user on tenants with a capacity-based subscription. Does not apply to tenants with a user-based subscription. Returns fullUser if it will trigger promotion. */
|
|
98
98
|
readonly userEntitlementType?: string;
|
|
99
99
|
};
|
|
100
100
|
/**
|
package/roles.js
CHANGED
package/spaces.js
CHANGED
package/temp-contents.js
CHANGED
package/tenants.js
CHANGED
package/themes.js
CHANGED
package/transports.js
CHANGED
package/users.js
CHANGED
package/web-integrations.js
CHANGED
package/web-notifications.js
CHANGED
package/webhooks.js
CHANGED