@qlik/api 1.4.0 → 1.5.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/.github/workflows/release.yaml +6 -1
- package/README.md +0 -3
- package/api-keys.d.ts +1 -1
- package/api-keys.js +3 -2
- package/apps.d.ts +1 -1
- package/apps.js +3 -2
- package/audits.d.ts +1 -1
- package/audits.js +3 -2
- package/auth.js +2 -2
- package/automations.d.ts +88 -7
- package/automations.js +21 -2
- package/brands.d.ts +1 -1
- package/brands.js +3 -2
- package/chunks/BGRBTH7Y.js +38 -0
- package/chunks/{JK564JXC.js → BMB4CQGB.js} +1 -1
- package/chunks/{GEU5U7Z5.js → F2X7MIT2.js} +1 -1
- package/chunks/{5GE4XPP3.js → GFJ653I2.js} +36 -40
- package/chunks/{54UDXFVD.js → S2BIIZLQ.js} +3 -3
- package/chunks/{W3BAQSQ7.js → SYGKZE7X.js} +14 -2
- package/chunks/{2G2EK3MP.js → TTSM4BX5.js} +2 -1
- package/chunks/{3IA4SDJA.js → UY5PBIVC.js} +1 -1
- package/chunks/{LDQGW22R.js → WEENC3NJ.js} +2 -1
- package/chunks/{DD5UK3PZ.js → YGESHYCZ.js} +13 -5
- package/chunks/{QGXPKKG2.js → YNDOPW5S.js} +4 -2
- package/collections.d.ts +1 -1
- package/collections.js +3 -2
- package/csp-origins.d.ts +1 -1
- package/csp-origins.js +3 -2
- package/data-assets.d.ts +1 -1
- package/data-assets.js +3 -2
- package/data-connections.d.ts +1 -1
- package/data-connections.js +3 -2
- package/data-credentials.d.ts +1 -1
- package/data-credentials.js +3 -2
- package/data-files.d.ts +1 -1
- package/data-files.js +3 -2
- package/docs/examples/fetch-spaces.md +1 -1
- package/extensions.d.ts +1 -1
- package/extensions.js +3 -2
- package/{global.types-CMQsAHYd.d.ts → global.types-Xt6XzwlN.d.ts} +7 -0
- package/glossaries.d.ts +10 -8
- package/glossaries.js +3 -2
- package/groups.d.ts +1 -1
- package/groups.js +3 -2
- package/identity-providers.d.ts +1 -1
- package/identity-providers.js +3 -2
- package/index.d.ts +1 -1
- package/index.js +7 -6
- package/items.d.ts +1 -1
- package/items.js +3 -2
- package/licenses.d.ts +1 -1
- package/licenses.js +3 -2
- package/package.json +2 -6
- package/qix.d.ts +4 -4
- package/qix.js +2 -2
- package/quotas.d.ts +1 -1
- package/quotas.js +3 -2
- package/reload-tasks.d.ts +1 -1
- package/reload-tasks.js +3 -2
- package/reloads.d.ts +1 -1
- package/reloads.js +3 -2
- package/roles.d.ts +1 -1
- package/roles.js +3 -2
- package/spaces.d.ts +1 -1
- package/spaces.js +3 -2
- package/temp-contents.d.ts +1 -1
- package/temp-contents.js +3 -2
- package/tenants.d.ts +1 -1
- package/tenants.js +3 -2
- package/themes.d.ts +1 -1
- package/themes.js +3 -2
- package/transports.d.ts +1 -1
- package/transports.js +3 -2
- package/users.d.ts +1 -1
- package/users.js +3 -2
- package/web-integrations.d.ts +1 -1
- package/web-integrations.js +3 -2
- package/web-notifications.d.ts +1 -1
- package/web-notifications.js +3 -2
- package/webhooks.d.ts +1 -1
- package/webhooks.js +3 -2
|
@@ -2,10 +2,12 @@ import {
|
|
|
2
2
|
getPlatform,
|
|
3
3
|
handleAuthenticationError,
|
|
4
4
|
invokeFetch,
|
|
5
|
-
isBrowser,
|
|
6
5
|
isWindows,
|
|
7
6
|
toValidWebsocketLocationUrl
|
|
8
|
-
} from "./
|
|
7
|
+
} from "./GFJ653I2.js";
|
|
8
|
+
import {
|
|
9
|
+
isBrowser
|
|
10
|
+
} from "./BGRBTH7Y.js";
|
|
9
11
|
|
|
10
12
|
// src/qix/session/shared-sessions.ts
|
|
11
13
|
var globalEventListeners = /* @__PURE__ */ new Set();
|
|
@@ -99,7 +101,7 @@ function listenForWindowsAuthenticationInformation(session) {
|
|
|
99
101
|
return authSuggestedInWebsocket;
|
|
100
102
|
}
|
|
101
103
|
async function createAndSetupEnigmaSession(props, canRetry) {
|
|
102
|
-
const { createEnigmaSession } = await import("./
|
|
104
|
+
const { createEnigmaSession } = await import("./YNDOPW5S.js");
|
|
103
105
|
const session = await createEnigmaSession(props);
|
|
104
106
|
setupSessionListeners(session, props);
|
|
105
107
|
let global;
|
|
@@ -477,7 +479,10 @@ async function createSessionApp() {
|
|
|
477
479
|
if (!alreadyClosed) {
|
|
478
480
|
alreadyClosed = true;
|
|
479
481
|
const defaultDelay = isBrowserEnvironment ? 5e3 : -1;
|
|
480
|
-
return sharedSession.removeClient(
|
|
482
|
+
return sharedSession.removeClient(
|
|
483
|
+
qixSessionAppSession,
|
|
484
|
+
props?.websocketCloseDelay !== void 0 ? props.websocketCloseDelay : defaultDelay
|
|
485
|
+
);
|
|
481
486
|
}
|
|
482
487
|
return Promise.resolve();
|
|
483
488
|
}
|
|
@@ -516,7 +521,10 @@ function openAppSession(appIdOrProps) {
|
|
|
516
521
|
if (!alreadyClosed) {
|
|
517
522
|
alreadyClosed = true;
|
|
518
523
|
const defaultDelay = isBrowserEnvironment ? 5e3 : -1;
|
|
519
|
-
return sharedSession.removeClient(
|
|
524
|
+
return sharedSession.removeClient(
|
|
525
|
+
qixAppSession,
|
|
526
|
+
props?.websocketCloseDelay !== void 0 ? props.websocketCloseDelay : defaultDelay
|
|
527
|
+
);
|
|
520
528
|
}
|
|
521
529
|
return Promise.resolve();
|
|
522
530
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
|
-
generateRandomString,
|
|
3
2
|
getRestCallAuthParams,
|
|
4
3
|
getWebSocketAuthParams,
|
|
5
4
|
toValidWebsocketLocationUrl
|
|
6
|
-
} from "./
|
|
5
|
+
} from "./GFJ653I2.js";
|
|
6
|
+
import {
|
|
7
|
+
generateRandomString
|
|
8
|
+
} from "./BGRBTH7Y.js";
|
|
7
9
|
|
|
8
10
|
// src/qix/session/enigma-session.ts
|
|
9
11
|
import enigma from "enigma.js";
|
package/collections.d.ts
CHANGED
package/collections.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/collections.ts
|
|
8
9
|
var getCollections = async (query, options) => invokeFetch("collections", {
|
package/csp-origins.d.ts
CHANGED
package/csp-origins.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/csp-origins.ts
|
|
8
9
|
var getCSPEntries = async (query, options) => invokeFetch("csp-origins", {
|
package/data-assets.d.ts
CHANGED
package/data-assets.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/data-assets.ts
|
|
8
9
|
var deleteDataAssets = async (body, options) => invokeFetch("data-assets", {
|
package/data-connections.d.ts
CHANGED
package/data-connections.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/data-connections.ts
|
|
8
9
|
var getDataConnections = async (query, options) => invokeFetch("data-connections", {
|
package/data-credentials.d.ts
CHANGED
package/data-credentials.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/data-credentials.ts
|
|
8
9
|
var deleteDataCredential = async (qID, query, options) => invokeFetch("data-credentials", {
|
package/data-files.d.ts
CHANGED
package/data-files.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/data-files.ts
|
|
8
9
|
var getDataFiles = async (query, options) => invokeFetch("data-files", {
|
package/extensions.d.ts
CHANGED
package/extensions.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/extensions.ts
|
|
8
9
|
var getExtensions = async (options) => invokeFetch("extensions", {
|
|
@@ -32,8 +32,15 @@ type ApiCallOptions = {
|
|
|
32
32
|
/**
|
|
33
33
|
* Set the amount of time to wait for a response.
|
|
34
34
|
* If the timeout is exceeded the request is aborted.
|
|
35
|
+
* If both timeoutMs and signal is present, timeoutMs will have no effect, as
|
|
36
|
+
* there is already an abort-signal specified.
|
|
35
37
|
*/
|
|
36
38
|
timeoutMs?: number;
|
|
39
|
+
/**
|
|
40
|
+
* An abort-signal lets you abort an ongoing fetch request. The abort-signal is created
|
|
41
|
+
* by taking the .signal property of an AbortController.
|
|
42
|
+
*/
|
|
43
|
+
signal?: AbortSignal;
|
|
37
44
|
};
|
|
38
45
|
type DownloadableBlob = Blob & {
|
|
39
46
|
/** download the blob in a using the specified filename */
|
package/glossaries.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-Xt6XzwlN.js';
|
|
2
2
|
import './auth-types-Bqw3vbLs.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -113,10 +113,10 @@ type Category = {
|
|
|
113
113
|
id: string;
|
|
114
114
|
name: string;
|
|
115
115
|
parentId?: string;
|
|
116
|
-
/** This list contains the
|
|
116
|
+
/** This list contains the uids of the stewards of the category. */
|
|
117
117
|
stewards?: string[];
|
|
118
118
|
readonly updatedAt: string;
|
|
119
|
-
/** The
|
|
119
|
+
/** The uid of the user who last updated the category */
|
|
120
120
|
readonly updatedBy: string;
|
|
121
121
|
};
|
|
122
122
|
type CreateCategory = {
|
|
@@ -127,7 +127,7 @@ type CreateCategory = {
|
|
|
127
127
|
/** The name of the category. May not be identical to another category belonging to the same parent. */
|
|
128
128
|
name?: string;
|
|
129
129
|
parentId?: string;
|
|
130
|
-
/** This list contains the
|
|
130
|
+
/** This list contains the uids of the stewards of the category. */
|
|
131
131
|
stewards?: string[];
|
|
132
132
|
};
|
|
133
133
|
type CreateGlossary = {
|
|
@@ -152,7 +152,7 @@ type CreateTerm = {
|
|
|
152
152
|
name: string;
|
|
153
153
|
relatedInformation?: string;
|
|
154
154
|
relatesTo?: TermRelatesTo[];
|
|
155
|
-
/** This list contain the
|
|
155
|
+
/** This list contain the uids for the term's stewards */
|
|
156
156
|
stewards?: string[];
|
|
157
157
|
tags?: string[];
|
|
158
158
|
};
|
|
@@ -233,7 +233,7 @@ type ExportGlossary = {
|
|
|
233
233
|
termTemplate?: TermTemplate;
|
|
234
234
|
terms?: ExportTerm[];
|
|
235
235
|
readonly updatedAt?: string;
|
|
236
|
-
/** The
|
|
236
|
+
/** The uid of the user who last updated the glossary */
|
|
237
237
|
readonly updatedBy?: string;
|
|
238
238
|
};
|
|
239
239
|
type ExportTerm = {
|
|
@@ -358,11 +358,11 @@ type Term = {
|
|
|
358
358
|
revision: number;
|
|
359
359
|
/** Terms status is used determine the status of a term */
|
|
360
360
|
status: TermStatus;
|
|
361
|
-
/** This list contains the
|
|
361
|
+
/** This list contains the uids of the terms data stewards. */
|
|
362
362
|
stewards: string[];
|
|
363
363
|
tags: string[];
|
|
364
364
|
readonly updatedAt: string;
|
|
365
|
-
/** The
|
|
365
|
+
/** The uid of the user who last updated the term */
|
|
366
366
|
readonly updatedBy: string;
|
|
367
367
|
};
|
|
368
368
|
/**
|
|
@@ -385,11 +385,13 @@ type TermLinksTo = {
|
|
|
385
385
|
id?: string;
|
|
386
386
|
name?: string;
|
|
387
387
|
openUrl?: string;
|
|
388
|
+
/** Different formats based on resource type. Could be e.g. OID or UUID. */
|
|
388
389
|
resourceId?: string;
|
|
389
390
|
resourceSpaceId?: string;
|
|
390
391
|
resourceType?: "app" | "dataset";
|
|
391
392
|
/** Http status code for item during batch operation. */
|
|
392
393
|
status?: number;
|
|
394
|
+
/** Different formats based on subresource type. Could be e.g. OID or UUID. */
|
|
393
395
|
subResourceId?: string;
|
|
394
396
|
subResourceName?: string;
|
|
395
397
|
subResourceType?: "master_dimension" | "master_measure";
|
package/glossaries.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/glossaries.ts
|
|
8
9
|
var getGlossaries = async (query, options) => invokeFetch("glossaries", {
|
package/groups.d.ts
CHANGED
package/groups.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/groups.ts
|
|
8
9
|
var getGroups = async (query, options) => invokeFetch("groups", {
|
package/identity-providers.d.ts
CHANGED
package/identity-providers.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/identity-providers.ts
|
|
8
9
|
var getIdps = async (query, options) => invokeFetch("identity-providers", {
|
package/index.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ import { UsersAPI } from './users.js';
|
|
|
30
30
|
import { WebIntegrationsAPI } from './web-integrations.js';
|
|
31
31
|
import { WebNotificationsAPI } from './web-notifications.js';
|
|
32
32
|
import { WebhooksAPI } from './webhooks.js';
|
|
33
|
-
import './global.types-
|
|
33
|
+
import './global.types-Xt6XzwlN.js';
|
|
34
34
|
import './auth-types-Bqw3vbLs.js';
|
|
35
35
|
|
|
36
36
|
declare const apiKeys: ApiKeysAPI;
|
package/index.js
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import {
|
|
2
2
|
auth_default
|
|
3
|
-
} from "./chunks/
|
|
3
|
+
} from "./chunks/BMB4CQGB.js";
|
|
4
4
|
import {
|
|
5
5
|
qix_default
|
|
6
|
-
} from "./chunks/
|
|
6
|
+
} from "./chunks/UY5PBIVC.js";
|
|
7
7
|
import {
|
|
8
8
|
clearApiCache,
|
|
9
9
|
invokeFetch
|
|
10
|
-
} from "./chunks/
|
|
11
|
-
import "./chunks/
|
|
10
|
+
} from "./chunks/SYGKZE7X.js";
|
|
11
|
+
import "./chunks/BGRBTH7Y.js";
|
|
12
|
+
import "./chunks/S2BIIZLQ.js";
|
|
12
13
|
|
|
13
14
|
// src/public/public-runtime-api-generator/public-runtime-api-generator.ts
|
|
14
15
|
var methodAbbreviations = {
|
|
@@ -257,7 +258,7 @@ var automations = apiDefToApi("automations", {
|
|
|
257
258
|
settings: ["getAutomationsSettings:G:", "updateAutomationsSettings:UBJ:"],
|
|
258
259
|
usage: ["getAutomationsUsageMetrics:GQ:"],
|
|
259
260
|
"{id}": {
|
|
260
|
-
"": ["deleteAutomation:D:", "getAutomation:G:", "updateAutomation:UBJ:"],
|
|
261
|
+
"": ["deleteAutomation:D:", "getAutomationWithQuery:GQ:", "getAutomation:G:", "updateAutomation:UBJ:"],
|
|
261
262
|
actions: {
|
|
262
263
|
copy: ["copyAutomation:PBJ:"],
|
|
263
264
|
disable: ["disableAutomation:P:"],
|
|
@@ -267,7 +268,7 @@ var automations = apiDefToApi("automations", {
|
|
|
267
268
|
runs: {
|
|
268
269
|
"": ["getAutomationRuns:GQ:", "queueAutomationRun:PBJ:"],
|
|
269
270
|
"{runId}": {
|
|
270
|
-
"": ["getAutomationRun:G:"],
|
|
271
|
+
"": ["getAutomationRunWithQuery:GQ:", "getAutomationRun:G:"],
|
|
271
272
|
actions: {
|
|
272
273
|
export: ["getAutomationRunDetails:P:"],
|
|
273
274
|
retry: ["retryAutomationRun:P:"],
|
package/items.d.ts
CHANGED
package/items.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/items.ts
|
|
8
9
|
var getItems = async (query, options) => invokeFetch("items", {
|
package/licenses.d.ts
CHANGED
package/licenses.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/licenses.ts
|
|
8
9
|
var getLicenseAssignments = async (query, options) => invokeFetch("licenses", {
|
package/package.json
CHANGED
|
@@ -11,14 +11,10 @@
|
|
|
11
11
|
"fs": false
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@qlik/embed-runtime": "^0.7.0",
|
|
15
|
-
"@qlik/runtime-module-loader": "^0.2.7",
|
|
16
|
-
"ajv": "^8.12.0",
|
|
17
|
-
"bufferutil": "^4.0.8",
|
|
18
14
|
"enigma.js": "^2.14.0",
|
|
19
15
|
"lodash": "^4.17.21",
|
|
20
16
|
"nanoid": "^5.0.6",
|
|
21
|
-
"ws": "^8.
|
|
17
|
+
"ws": "^8.17.0"
|
|
22
18
|
},
|
|
23
19
|
"engines": {
|
|
24
20
|
"node": ">=18"
|
|
@@ -58,5 +54,5 @@
|
|
|
58
54
|
"./qix": "./qix.js",
|
|
59
55
|
"./auth": "./auth.js"
|
|
60
56
|
},
|
|
61
|
-
"version": "1.
|
|
57
|
+
"version": "1.5.0"
|
|
62
58
|
}
|
package/qix.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import './global.types-
|
|
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.2073.0";
|
|
5
5
|
type AlfaNumString = {
|
|
6
6
|
/**
|
|
7
7
|
* Calculated value.
|
|
@@ -3483,7 +3483,7 @@ type NxDerivedGroup = {
|
|
|
3483
3483
|
};
|
|
3484
3484
|
type NxDimCellType = "V" | "NX_DIM_CELL_VALUE" | "E" | "NX_DIM_CELL_EMPTY" | "N" | "NX_DIM_CELL_NORMAL" | "T" | "NX_DIM_CELL_TOTAL" | "O" | "NX_DIM_CELL_OTHER" | "A" | "NX_DIM_CELL_AGGR" | "P" | "NX_DIM_CELL_PSEUDO" | "R" | "NX_DIM_CELL_ROOT" | "U" | "NX_DIM_CELL_NULL" | "G" | "NX_DIM_CELL_GENERATED";
|
|
3485
3485
|
/**
|
|
3486
|
-
* <div class=note>
|
|
3486
|
+
* <div class=note>The fields or expressions in the dimension are either defined in **qDef** or in the master dimension referred to by **qLibraryId**. If **qLibraryId** is set then the qFieldDefs, qFieldLabels, qGrouping, qLabelExpression and qAlias of the master dimension will be used. </div> <div class=note>If the dimension is set in the hypercube and not in the library, this dimension cannot be shared with other objects.</div> <div class=note>A dimension that is set in the library can be used by many objects.</div>
|
|
3487
3487
|
*/
|
|
3488
3488
|
type NxDimension = {
|
|
3489
3489
|
/**
|
|
@@ -4234,7 +4234,7 @@ type NxMatchingFieldInfo = {
|
|
|
4234
4234
|
};
|
|
4235
4235
|
type NxMatchingFieldMode = "MATCHINGFIELDMODE_MATCH_ALL" | "MATCHINGFIELDMODE_MATCH_ONE";
|
|
4236
4236
|
/**
|
|
4237
|
-
* <div class=note>Either **qDef** or **qLibraryId** must be set, but not both. </div> <div class=note>If the measure is set in the hypercube and not in the library, this measure cannot be shared with other objects.</div> <div class=note>A measure that is set in the library can be used by many objects.</div> <div class=note>
|
|
4237
|
+
* <div class=note>Either **qDef** or **qLibraryId** must be set, but not both. If both are set, the library measure's qDef and qLabel will be used. </div> <div class=note>If the measure is set in the hypercube and not in the library, this measure cannot be shared with other objects.</div> <div class=note>A measure that is set in the library can be used by many objects.</div> <div class=note>
|
|
4238
4238
|
* expressions are complementary expressions associated to a measure. For example, you can decide to change the background color of a visualization depending on the values of the measure.
|
|
4239
4239
|
* Attribute expressions do not affect the layout of an object. The sorting order is unchanged.
|
|
4240
4240
|
* </div>
|
package/qix.js
CHANGED
package/quotas.d.ts
CHANGED
package/quotas.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/quotas.ts
|
|
8
9
|
var getQuotas = async (query, options) => invokeFetch("quotas", {
|
package/reload-tasks.d.ts
CHANGED
package/reload-tasks.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/reload-tasks.ts
|
|
8
9
|
var getReloadTasks = async (query, options) => invokeFetch("reload-tasks", {
|
package/reloads.d.ts
CHANGED
package/reloads.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/reloads.ts
|
|
8
9
|
var getReloads = async (query, options) => invokeFetch("reloads", {
|
package/roles.d.ts
CHANGED
package/roles.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/roles.ts
|
|
8
9
|
var getRoles = async (query, options) => invokeFetch("roles", {
|
package/spaces.d.ts
CHANGED
package/spaces.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/spaces.ts
|
|
8
9
|
var getSpaces = async (query, options) => invokeFetch("spaces", {
|
package/temp-contents.d.ts
CHANGED
package/temp-contents.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SYGKZE7X.js";
|
|
5
|
+
import "./chunks/BGRBTH7Y.js";
|
|
6
|
+
import "./chunks/S2BIIZLQ.js";
|
|
6
7
|
|
|
7
8
|
// src/public/rest/temp-contents.ts
|
|
8
9
|
var uploadTempFile = async (query, body, options) => invokeFetch("temp-contents", {
|