@qlik/api 1.18.0 → 1.19.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.js +2 -2
- package/audits.d.ts +14 -14
- package/audits.js +2 -2
- package/auth.js +2 -2
- package/automations.js +2 -2
- package/brands.js +2 -2
- package/chunks/{YEHZGXQV.js → 63L3IUY2.js} +2 -1
- package/chunks/{2B3EPESP.js → 64RJJHEL.js} +1 -1
- package/chunks/{URFSYYRS.js → AKBUFQRX.js} +1 -1
- package/chunks/{2NXPFUPZ.js → BOJLTXK6.js} +2 -2
- package/chunks/{QLFOH4GP.js → ILZFMC3L.js} +2 -2
- package/chunks/{H7WWFWBM.js → J6G5ZOKI.js} +1 -1
- package/chunks/{GKEPTI44.js → KKAWWYOT.js} +1 -1
- package/chunks/{4FZ45I6G.js → P5AG7AME.js} +1 -1
- package/chunks/{ZLPAS7FC.js → VISO65GO.js} +3 -3
- 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.js +2 -2
- package/groups.d.ts +8 -8
- 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 +1 -1
- 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.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.js
CHANGED
package/audits.d.ts
CHANGED
|
@@ -101,7 +101,7 @@ type ListLinks = {
|
|
|
101
101
|
self?: Href;
|
|
102
102
|
};
|
|
103
103
|
/**
|
|
104
|
-
*
|
|
104
|
+
* Retrieves list of events for subscribed services for your tenant. Stores events for 90 days, after which they can be accessed via `/v1/audits/archive`.
|
|
105
105
|
*
|
|
106
106
|
* @param query an object with query parameters
|
|
107
107
|
* @throws GetAuditsHttpError
|
|
@@ -109,7 +109,7 @@ type ListLinks = {
|
|
|
109
109
|
declare const getAudits: (query: {
|
|
110
110
|
/** The start/end time interval formatted in ISO 8601 to search by eventTime. For example, "?eventTime=2021-07-14T18:41:15.00Z/2021-07-14T18:41:15.99Z". */
|
|
111
111
|
eventTime?: string;
|
|
112
|
-
/** The case-sensitive string used to search by eventType. */
|
|
112
|
+
/** The case-sensitive string used to search by eventType. Retrieve a list of possible eventTypes with `/v1/audits/types`. */
|
|
113
113
|
eventType?: string;
|
|
114
114
|
/** The comma separated list of audit unique identifiers. */
|
|
115
115
|
id?: string;
|
|
@@ -121,7 +121,7 @@ declare const getAudits: (query: {
|
|
|
121
121
|
prev?: string;
|
|
122
122
|
/** The property of a resource to sort on (default sort is -eventTime). The supported properties are source, eventType, and eventTime. A property must be prefixed by + or - to indicate ascending or descending sort order respectively. */
|
|
123
123
|
sort?: string;
|
|
124
|
-
/** The case-sensitive string used to search by source. */
|
|
124
|
+
/** The case-sensitive string used to search by source. Retrieve a list of possible sources with `/v1/audits/sources`. */
|
|
125
125
|
source?: string;
|
|
126
126
|
/** The case-sensitive string used to search by userId. */
|
|
127
127
|
userId?: string;
|
|
@@ -139,7 +139,7 @@ type GetAuditsHttpError = {
|
|
|
139
139
|
status: number;
|
|
140
140
|
};
|
|
141
141
|
/**
|
|
142
|
-
* Finds and returns audit events from the archive, formatted as a JSON array, for the given date and tenant (in JWT).
|
|
142
|
+
* Retrieves audit events from long term storage. Finds and returns audit events from the archive, formatted as a JSON array, for the given date and tenant (in JWT). Archived events are not removed.
|
|
143
143
|
*
|
|
144
144
|
* @param query an object with query parameters
|
|
145
145
|
* @throws GetArchivedAuditsHttpError
|
|
@@ -159,7 +159,7 @@ type GetArchivedAuditsHttpError = {
|
|
|
159
159
|
status: number;
|
|
160
160
|
};
|
|
161
161
|
/**
|
|
162
|
-
* It includes options that represent the server configuration state and parameters that were used to run the server with certain functionality.
|
|
162
|
+
* Returns the server configuration options. It includes options that represent the server configuration state and parameters that were used to run the server with certain functionality.
|
|
163
163
|
*
|
|
164
164
|
* @throws GetAuditsSettingsHttpError
|
|
165
165
|
*/
|
|
@@ -175,7 +175,7 @@ type GetAuditsSettingsHttpError = {
|
|
|
175
175
|
status: number;
|
|
176
176
|
};
|
|
177
177
|
/**
|
|
178
|
-
* Finds and returns the
|
|
178
|
+
* Finds and returns the list of possible event sources for this tenant.
|
|
179
179
|
*
|
|
180
180
|
* @throws GetAuditSourcesHttpError
|
|
181
181
|
*/
|
|
@@ -193,7 +193,7 @@ type GetAuditSourcesHttpError = {
|
|
|
193
193
|
status: number;
|
|
194
194
|
};
|
|
195
195
|
/**
|
|
196
|
-
* Finds and returns the
|
|
196
|
+
* Finds and returns the list of possible event types for this tenant.
|
|
197
197
|
*
|
|
198
198
|
* @throws GetAuditTypesHttpError
|
|
199
199
|
*/
|
|
@@ -211,7 +211,7 @@ type GetAuditTypesHttpError = {
|
|
|
211
211
|
status: number;
|
|
212
212
|
};
|
|
213
213
|
/**
|
|
214
|
-
* Finds and returns
|
|
214
|
+
* Finds and returns a specific audit events for the given event ID.
|
|
215
215
|
*
|
|
216
216
|
* @param id The audit item's unique identifier.
|
|
217
217
|
* @throws GetAuditHttpError
|
|
@@ -233,39 +233,39 @@ type GetAuditHttpError = {
|
|
|
233
233
|
declare function clearCache(): void;
|
|
234
234
|
interface AuditsAPI {
|
|
235
235
|
/**
|
|
236
|
-
*
|
|
236
|
+
* Retrieves list of events for subscribed services for your tenant. Stores events for 90 days, after which they can be accessed via `/v1/audits/archive`.
|
|
237
237
|
*
|
|
238
238
|
* @param query an object with query parameters
|
|
239
239
|
* @throws GetAuditsHttpError
|
|
240
240
|
*/
|
|
241
241
|
getAudits: typeof getAudits;
|
|
242
242
|
/**
|
|
243
|
-
* Finds and returns audit events from the archive, formatted as a JSON array, for the given date and tenant (in JWT).
|
|
243
|
+
* Retrieves audit events from long term storage. Finds and returns audit events from the archive, formatted as a JSON array, for the given date and tenant (in JWT). Archived events are not removed.
|
|
244
244
|
*
|
|
245
245
|
* @param query an object with query parameters
|
|
246
246
|
* @throws GetArchivedAuditsHttpError
|
|
247
247
|
*/
|
|
248
248
|
getArchivedAudits: typeof getArchivedAudits;
|
|
249
249
|
/**
|
|
250
|
-
* It includes options that represent the server configuration state and parameters that were used to run the server with certain functionality.
|
|
250
|
+
* Returns the server configuration options. It includes options that represent the server configuration state and parameters that were used to run the server with certain functionality.
|
|
251
251
|
*
|
|
252
252
|
* @throws GetAuditsSettingsHttpError
|
|
253
253
|
*/
|
|
254
254
|
getAuditsSettings: typeof getAuditsSettings;
|
|
255
255
|
/**
|
|
256
|
-
* Finds and returns the
|
|
256
|
+
* Finds and returns the list of possible event sources for this tenant.
|
|
257
257
|
*
|
|
258
258
|
* @throws GetAuditSourcesHttpError
|
|
259
259
|
*/
|
|
260
260
|
getAuditSources: typeof getAuditSources;
|
|
261
261
|
/**
|
|
262
|
-
* Finds and returns the
|
|
262
|
+
* Finds and returns the list of possible event types for this tenant.
|
|
263
263
|
*
|
|
264
264
|
* @throws GetAuditTypesHttpError
|
|
265
265
|
*/
|
|
266
266
|
getAuditTypes: typeof getAuditTypes;
|
|
267
267
|
/**
|
|
268
|
-
* Finds and returns
|
|
268
|
+
* Finds and returns a specific audit events for the given event ID.
|
|
269
269
|
*
|
|
270
270
|
* @param id The audit item's unique identifier.
|
|
271
271
|
* @throws GetAuditHttpError
|
package/audits.js
CHANGED
package/auth.js
CHANGED
package/automations.js
CHANGED
package/brands.js
CHANGED
|
@@ -1686,7 +1686,8 @@ function invokeFetchWithUrl(api, props, interceptors) {
|
|
|
1686
1686
|
const { cacheKey, authHeaders, credentials } = await getInvokeFetchUrlParams(props);
|
|
1687
1687
|
return invokeFetchWithUrlAndRetry(
|
|
1688
1688
|
api,
|
|
1689
|
-
{ ...props, cacheKey, authHeaders, credentials },
|
|
1689
|
+
{ ...props, cacheKey, authHeaders, credentials, options: { ...props.options, noCache: true } },
|
|
1690
|
+
// don't cache the retry
|
|
1690
1691
|
void 0,
|
|
1691
1692
|
// only retry once
|
|
1692
1693
|
interceptors
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getInvokeFetchRuntimeModule
|
|
3
|
-
} from "./
|
|
3
|
+
} from "./VISO65GO.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.19.0";
|
|
10
10
|
async function invokeFetch(api, props) {
|
|
11
11
|
const hostConfig = props.options?.hostConfig;
|
|
12
12
|
let userAgent;
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
invokeFetch,
|
|
5
5
|
isWindows,
|
|
6
6
|
toValidWebsocketLocationUrl
|
|
7
|
-
} from "./
|
|
7
|
+
} from "./63L3IUY2.js";
|
|
8
8
|
import {
|
|
9
9
|
isBrowser
|
|
10
10
|
} from "./2ZQ3ZX7F.js";
|
|
@@ -145,7 +145,7 @@ function listenForWindowsAuthenticationInformation(session) {
|
|
|
145
145
|
return authSuggestedInWebsocket;
|
|
146
146
|
}
|
|
147
147
|
async function createAndSetupEnigmaSession(props, canRetry) {
|
|
148
|
-
const { createEnigmaSession } = await import("./
|
|
148
|
+
const { createEnigmaSession } = await import("./P5AG7AME.js");
|
|
149
149
|
const session = await createEnigmaSession(props);
|
|
150
150
|
setupSessionListeners(session, props);
|
|
151
151
|
let global;
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
// src/public/public-runtime-modules.ts
|
|
2
2
|
function getAuthRuntimeModule(hostConfig) {
|
|
3
3
|
const isNode = !!globalThis.process?.argv;
|
|
4
|
-
return isNode ? import("./
|
|
4
|
+
return isNode ? import("./64RJJHEL.js") : import("./GLS4DAZ4.js").then(
|
|
5
5
|
(mod) => mod.importRuntimeModule("auth@v1", hostConfig)
|
|
6
6
|
);
|
|
7
7
|
}
|
|
8
8
|
async function getQixRuntimeModule(hostConfig) {
|
|
9
9
|
await getAuthRuntimeModule(hostConfig);
|
|
10
10
|
const isNode = !!globalThis.process?.argv;
|
|
11
|
-
return isNode ? import("./
|
|
11
|
+
return isNode ? import("./ILZFMC3L.js") : import("./GLS4DAZ4.js").then(
|
|
12
12
|
(mod) => mod.importRuntimeModule("qix@v1", hostConfig)
|
|
13
13
|
);
|
|
14
14
|
}
|
|
15
15
|
async function getInvokeFetchRuntimeModule(hostConfig) {
|
|
16
16
|
await getAuthRuntimeModule(hostConfig);
|
|
17
17
|
const isNode = !!globalThis.process?.argv;
|
|
18
|
-
return isNode ? import("./
|
|
18
|
+
return isNode ? import("./AKBUFQRX.js") : import("./GLS4DAZ4.js").then(
|
|
19
19
|
(mod) => mod.importRuntimeModule("invoke-fetch@v1", hostConfig)
|
|
20
20
|
);
|
|
21
21
|
}
|
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.js
CHANGED
package/groups.d.ts
CHANGED
|
@@ -268,7 +268,7 @@ type FilterGroupsHttpError = {
|
|
|
268
268
|
status: number;
|
|
269
269
|
};
|
|
270
270
|
/**
|
|
271
|
-
* Returns the
|
|
271
|
+
* Returns the tenant's group settings, such as whether automatic group creation and IdP group synchronization are enabled or disabled, and roles assigned to system groups.
|
|
272
272
|
*
|
|
273
273
|
* @throws GetGroupsSettingsHttpError
|
|
274
274
|
*/
|
|
@@ -284,7 +284,7 @@ type GetGroupsSettingsHttpError = {
|
|
|
284
284
|
status: number;
|
|
285
285
|
};
|
|
286
286
|
/**
|
|
287
|
-
*
|
|
287
|
+
* Updates the tenant's group settings, such as whether automatic group creation and IdP group synchronization are enabled or disabled, and roles assigned to system groups.
|
|
288
288
|
*
|
|
289
289
|
* @param body an object with the body content
|
|
290
290
|
* @throws PatchGroupsSettingsHttpError
|
|
@@ -301,7 +301,7 @@ type PatchGroupsSettingsHttpError = {
|
|
|
301
301
|
status: number;
|
|
302
302
|
};
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
304
|
+
* Deletes the requested group.
|
|
305
305
|
*
|
|
306
306
|
* @param groupId The ID of the group to delete.
|
|
307
307
|
* @throws DeleteGroupHttpError
|
|
@@ -335,7 +335,7 @@ type GetGroupHttpError = {
|
|
|
335
335
|
status: number;
|
|
336
336
|
};
|
|
337
337
|
/**
|
|
338
|
-
*
|
|
338
|
+
* Updates the requested group.
|
|
339
339
|
*
|
|
340
340
|
* @param groupId The ID of the group to update.
|
|
341
341
|
* @param body an object with the body content
|
|
@@ -380,20 +380,20 @@ interface GroupsAPI {
|
|
|
380
380
|
*/
|
|
381
381
|
filterGroups: typeof filterGroups;
|
|
382
382
|
/**
|
|
383
|
-
* Returns the
|
|
383
|
+
* Returns the tenant's group settings, such as whether automatic group creation and IdP group synchronization are enabled or disabled, and roles assigned to system groups.
|
|
384
384
|
*
|
|
385
385
|
* @throws GetGroupsSettingsHttpError
|
|
386
386
|
*/
|
|
387
387
|
getGroupsSettings: typeof getGroupsSettings;
|
|
388
388
|
/**
|
|
389
|
-
*
|
|
389
|
+
* Updates the tenant's group settings, such as whether automatic group creation and IdP group synchronization are enabled or disabled, and roles assigned to system groups.
|
|
390
390
|
*
|
|
391
391
|
* @param body an object with the body content
|
|
392
392
|
* @throws PatchGroupsSettingsHttpError
|
|
393
393
|
*/
|
|
394
394
|
patchGroupsSettings: typeof patchGroupsSettings;
|
|
395
395
|
/**
|
|
396
|
-
*
|
|
396
|
+
* Deletes the requested group.
|
|
397
397
|
*
|
|
398
398
|
* @param groupId The ID of the group to delete.
|
|
399
399
|
* @throws DeleteGroupHttpError
|
|
@@ -407,7 +407,7 @@ interface GroupsAPI {
|
|
|
407
407
|
*/
|
|
408
408
|
getGroup: typeof getGroup;
|
|
409
409
|
/**
|
|
410
|
-
*
|
|
410
|
+
* Updates the requested group.
|
|
411
411
|
*
|
|
412
412
|
* @param groupId The ID of the group to update.
|
|
413
413
|
* @param body an object with the body content
|
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/KKAWWYOT.js";
|
|
4
4
|
import {
|
|
5
5
|
auth_default
|
|
6
|
-
} from "./chunks/
|
|
6
|
+
} from "./chunks/J6G5ZOKI.js";
|
|
7
7
|
import {
|
|
8
8
|
clearApiCache,
|
|
9
9
|
invokeFetch
|
|
10
|
-
} from "./chunks/
|
|
11
|
-
import "./chunks/
|
|
10
|
+
} from "./chunks/BOJLTXK6.js";
|
|
11
|
+
import "./chunks/VISO65GO.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
package/qix.js
CHANGED
package/quotas.js
CHANGED
package/reload-tasks.js
CHANGED
package/reloads.js
CHANGED
package/reports.js
CHANGED
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