@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.
Files changed (47) hide show
  1. package/api-keys.js +2 -2
  2. package/apps.js +2 -2
  3. package/audits.d.ts +14 -14
  4. package/audits.js +2 -2
  5. package/auth.js +2 -2
  6. package/automations.js +2 -2
  7. package/brands.js +2 -2
  8. package/chunks/{YEHZGXQV.js → 63L3IUY2.js} +2 -1
  9. package/chunks/{2B3EPESP.js → 64RJJHEL.js} +1 -1
  10. package/chunks/{URFSYYRS.js → AKBUFQRX.js} +1 -1
  11. package/chunks/{2NXPFUPZ.js → BOJLTXK6.js} +2 -2
  12. package/chunks/{QLFOH4GP.js → ILZFMC3L.js} +2 -2
  13. package/chunks/{H7WWFWBM.js → J6G5ZOKI.js} +1 -1
  14. package/chunks/{GKEPTI44.js → KKAWWYOT.js} +1 -1
  15. package/chunks/{4FZ45I6G.js → P5AG7AME.js} +1 -1
  16. package/chunks/{ZLPAS7FC.js → VISO65GO.js} +3 -3
  17. package/collections.js +2 -2
  18. package/csp-origins.js +2 -2
  19. package/data-assets.js +2 -2
  20. package/data-connections.js +2 -2
  21. package/data-credentials.js +2 -2
  22. package/data-files.js +2 -2
  23. package/extensions.js +2 -2
  24. package/glossaries.js +2 -2
  25. package/groups.d.ts +8 -8
  26. package/groups.js +2 -2
  27. package/identity-providers.js +2 -2
  28. package/index.js +4 -4
  29. package/items.js +2 -2
  30. package/licenses.js +2 -2
  31. package/package.json +1 -1
  32. package/qix.d.ts +1 -1
  33. package/qix.js +2 -2
  34. package/quotas.js +2 -2
  35. package/reload-tasks.js +2 -2
  36. package/reloads.js +2 -2
  37. package/reports.js +2 -2
  38. package/roles.js +2 -2
  39. package/spaces.js +2 -2
  40. package/temp-contents.js +2 -2
  41. package/tenants.js +2 -2
  42. package/themes.js +2 -2
  43. package/transports.js +2 -2
  44. package/users.js +2 -2
  45. package/web-integrations.js +2 -2
  46. package/web-notifications.js +2 -2
  47. package/webhooks.js +2 -2
package/api-keys.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/api-keys.ts
package/apps.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/apps.ts
package/audits.d.ts CHANGED
@@ -101,7 +101,7 @@ type ListLinks = {
101
101
  self?: Href;
102
102
  };
103
103
  /**
104
- * Finds and returns the persisted audit events for the given tenant.
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 distinct list of unique event sources.
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 distinct list of unique event types.
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 the persisted audit events for the given tenant.
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
- * Finds and returns the persisted audit events for the given tenant.
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 distinct list of unique event sources.
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 distinct list of unique event types.
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 the persisted audit events for the given tenant.
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
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/audits.ts
package/auth.js CHANGED
@@ -4,8 +4,8 @@ import {
4
4
  logout,
5
5
  registerAuthModule,
6
6
  setDefaultHostConfig
7
- } from "./chunks/H7WWFWBM.js";
8
- import "./chunks/ZLPAS7FC.js";
7
+ } from "./chunks/J6G5ZOKI.js";
8
+ import "./chunks/VISO65GO.js";
9
9
  export {
10
10
  auth_default as default,
11
11
  getAccessToken,
package/automations.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/automations.ts
package/brands.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/brands.ts
@@ -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
@@ -18,7 +18,7 @@ import {
18
18
  toValidEnigmaLocationUrl,
19
19
  toValidLocationUrl,
20
20
  toValidWebsocketLocationUrl
21
- } from "./YEHZGXQV.js";
21
+ } from "./63L3IUY2.js";
22
22
  import "./2ZQ3ZX7F.js";
23
23
  export {
24
24
  AuthorizationError,
@@ -5,7 +5,7 @@ import {
5
5
  invokeFetch,
6
6
  invoke_fetch_default,
7
7
  parseFetchResponse
8
- } from "./YEHZGXQV.js";
8
+ } from "./63L3IUY2.js";
9
9
  import "./2ZQ3ZX7F.js";
10
10
  export {
11
11
  EncodingError,
@@ -1,12 +1,12 @@
1
1
  import {
2
2
  getInvokeFetchRuntimeModule
3
- } from "./ZLPAS7FC.js";
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.18.0";
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 "./YEHZGXQV.js";
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("./4FZ45I6G.js");
148
+ const { createEnigmaSession } = await import("./P5AG7AME.js");
149
149
  const session = await createEnigmaSession(props);
150
150
  setupSessionListeners(session, props);
151
151
  let global;
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getAuthRuntimeModule
3
- } from "./ZLPAS7FC.js";
3
+ } from "./VISO65GO.js";
4
4
 
5
5
  // src/public/auth.ts
6
6
  function registerAuthModule(name, authModule) {
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getQixRuntimeModule
3
- } from "./ZLPAS7FC.js";
3
+ } from "./VISO65GO.js";
4
4
 
5
5
  // src/public/qix.ts
6
6
  function openAppSession(appSessionProps) {
@@ -4,7 +4,7 @@ import {
4
4
  getRestCallAuthParams,
5
5
  getWebSocketAuthParams,
6
6
  toValidWebsocketLocationUrl
7
- } from "./YEHZGXQV.js";
7
+ } from "./63L3IUY2.js";
8
8
  import {
9
9
  isBrowser,
10
10
  isNode
@@ -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("./2B3EPESP.js") : import("./GLS4DAZ4.js").then(
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("./QLFOH4GP.js") : import("./GLS4DAZ4.js").then(
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("./URFSYYRS.js") : import("./GLS4DAZ4.js").then(
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
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/collections.ts
package/csp-origins.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/csp-origins.ts
package/data-assets.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/data-assets.ts
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/data-connections.ts
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/data-credentials.ts
package/data-files.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/data-files.ts
package/extensions.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/extensions.ts
package/glossaries.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/glossaries.ts
package/groups.d.ts CHANGED
@@ -268,7 +268,7 @@ type FilterGroupsHttpError = {
268
268
  status: number;
269
269
  };
270
270
  /**
271
- * Returns the active tenant's group settings.
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
- * Update group settings
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
- * Delete group by id
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
- * Update group by id
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 active tenant's group settings.
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
- * Update group settings
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
- * Delete group by id
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
- * Update group by id
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
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/groups.ts
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/identity-providers.ts
package/index.js CHANGED
@@ -1,14 +1,14 @@
1
1
  import {
2
2
  qix_default
3
- } from "./chunks/GKEPTI44.js";
3
+ } from "./chunks/KKAWWYOT.js";
4
4
  import {
5
5
  auth_default
6
- } from "./chunks/H7WWFWBM.js";
6
+ } from "./chunks/J6G5ZOKI.js";
7
7
  import {
8
8
  clearApiCache,
9
9
  invokeFetch
10
- } from "./chunks/2NXPFUPZ.js";
11
- import "./chunks/ZLPAS7FC.js";
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
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/items.ts
package/licenses.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/licenses.ts
package/package.json CHANGED
@@ -56,5 +56,5 @@
56
56
  "./qix": "./qix.js",
57
57
  "./auth": "./auth.js"
58
58
  },
59
- "version": "1.18.0"
59
+ "version": "1.19.0"
60
60
  }
package/qix.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import './global.types--37uwGji.js';
2
2
  import { H as HostConfig } from './auth-types-PkN9CAF_.js';
3
3
 
4
- declare const QIX_SCHEMA_VERSION = "12.2180.0";
4
+ declare const QIX_SCHEMA_VERSION = "12.2184.0";
5
5
  type AlfaNumString = {
6
6
  /**
7
7
  * Calculated value.
package/qix.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  openAppSession,
3
3
  qix_default
4
- } from "./chunks/GKEPTI44.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/KKAWWYOT.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  export {
7
7
  qix_default as default,
8
8
  openAppSession
package/quotas.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/quotas.ts
package/reload-tasks.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/reload-tasks.ts
package/reloads.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/reloads.ts
package/reports.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/reports.ts
package/roles.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/roles.ts
package/spaces.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/spaces.ts
package/temp-contents.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/temp-contents.ts
package/tenants.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/tenants.ts
package/themes.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/themes.ts
package/transports.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/transports.ts
package/users.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/users.ts
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/web-integrations.ts
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/web-notifications.ts
package/webhooks.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/2NXPFUPZ.js";
5
- import "./chunks/ZLPAS7FC.js";
4
+ } from "./chunks/BOJLTXK6.js";
5
+ import "./chunks/VISO65GO.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/webhooks.ts