@qlik/api 1.1.0 → 1.3.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 (50) hide show
  1. package/api-keys.d.ts +6 -6
  2. package/api-keys.js +2 -2
  3. package/apps.d.ts +3 -5
  4. package/apps.js +2 -2
  5. package/audits.js +2 -2
  6. package/auth.js +2 -2
  7. package/automations.js +2 -2
  8. package/brands.js +2 -2
  9. package/chunks/{LI7EZYL4.js → 2G2EK3MP.js} +1 -1
  10. package/chunks/{664FMSNJ.js → 3M4WLVKJ.js} +1 -1
  11. package/chunks/{243PYOJH.js → 3QGTKIWR.js} +1 -1
  12. package/chunks/{SG2HWQOC.js → 5GE4XPP3.js} +6 -0
  13. package/chunks/{4NK5KQKY.js → 6ZU5SVSZ.js} +1 -1
  14. package/chunks/{4PCG3E3I.js → K7OE4EVW.js} +1 -1
  15. package/chunks/{OKMBHX5N.js → LDQGW22R.js} +1 -1
  16. package/chunks/{5ZXMV3DK.js → NIJVIOVX.js} +2 -2
  17. package/chunks/{2ZXOEI4D.js → OM55UI47.js} +3 -3
  18. package/collections.d.ts +23 -23
  19. package/collections.js +2 -2
  20. package/csp-origins.js +2 -2
  21. package/data-assets.js +2 -2
  22. package/data-connections.js +2 -2
  23. package/data-credentials.js +2 -2
  24. package/data-files.js +2 -2
  25. package/extensions.js +2 -2
  26. package/glossaries.js +2 -2
  27. package/groups.js +2 -2
  28. package/identity-providers.js +2 -2
  29. package/index.js +4 -4
  30. package/items.d.ts +28 -28
  31. package/items.js +2 -2
  32. package/licenses.js +2 -2
  33. package/package.json +1 -1
  34. package/qix.d.ts +32 -4
  35. package/qix.js +2 -2
  36. package/quotas.js +2 -2
  37. package/reload-tasks.js +2 -2
  38. package/reloads.js +2 -2
  39. package/roles.js +2 -2
  40. package/spaces.d.ts +1 -1
  41. package/spaces.js +2 -2
  42. package/temp-contents.js +2 -2
  43. package/tenants.js +2 -2
  44. package/themes.js +2 -2
  45. package/transports.js +2 -2
  46. package/users.js +2 -2
  47. package/web-integrations.js +2 -2
  48. package/web-notifications.js +2 -2
  49. package/webhooks.d.ts +2 -0
  50. package/webhooks.js +2 -2
package/api-keys.d.ts CHANGED
@@ -16,10 +16,10 @@ type ApiKey = {
16
16
  readonly lastUpdated?: string;
17
17
  /** The status of the API key. */
18
18
  status: "active" | "expired" | "revoked";
19
- /** The ID of the subject for the API key. */
19
+ /** The ID of the subject for the API key. For SCIM the format is `SCIM\\{{IDP-ID}}`, where `{{IDP-ID}}` is the ID of the IDP in Qlik. */
20
20
  sub: string;
21
- /** Type of the subject. */
22
- subType: "user";
21
+ /** Type of the subject. For SCIM, it should be `externalClient`. */
22
+ subType: "user" | "externalClient";
23
23
  /** The tenant ID. */
24
24
  tenantId: string;
25
25
  };
@@ -28,10 +28,10 @@ type ApiKeyBody = {
28
28
  description: string;
29
29
  /** The expiry of the API key, in ISO8601 duration format. */
30
30
  expiry?: string;
31
- /** The ID of the subject for the API key. */
31
+ /** The ID of the subject for the API key. For SCIM the format is `SCIM\\{{IDP-ID}}`, where `{{IDP-ID}}` is the ID of the IDP in Qlik. */
32
32
  sub?: string;
33
- /** Type of the subject. */
34
- subType?: string;
33
+ /** Type of the subject. For SCIM, it should be `externalClient`. */
34
+ subType?: "user" | "externalClient";
35
35
  };
36
36
  /**
37
37
  * A JSON Patch document as defined in https://datatracker.ietf.org/doc/html/rfc6902.
package/api-keys.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/api-keys.ts
8
8
  var getApiKeys = async (query, options) => invokeFetch("api-keys", {
package/apps.d.ts CHANGED
@@ -1780,13 +1780,10 @@ type GetAppReloadMetadataHttpError = {
1780
1780
  */
1781
1781
  declare const getAppReportFilters: (appId: string, query: {
1782
1782
  /** The advanced filtering to use for the query. Refer to [RFC 7644](https://datatracker.ietf.org/doc/rfc7644/) for the syntax. Cannot be combined with any of the fields marked as deprecated. All conditional statements within this query parameter are case insensitive.
1783
- * The following fields support the `co` (contains) operator: `name` , `description`
1783
+ * The following fields support the `co` (contains) operator: `name`, `description`
1784
1784
  * The following fields support the `eq` (equals) operator: `ownerId`
1785
- * ```
1786
1785
  * Example:
1787
- * ```
1788
- * (name co "query1" or description co "query2") and ownerId eq "123"
1789
- * ``` */
1786
+ * (name co "query1" or description co "query2") and ownerId eq "123" */
1790
1787
  filter?: string;
1791
1788
  /** The filter type (REP, SUB). REP stands for report bookmark, SUB for subscription bookmark. */
1792
1789
  filterTypes?: ("REP" | "SUB")[];
@@ -1794,6 +1791,7 @@ declare const getAppReportFilters: (appId: string, query: {
1794
1791
  limit?: number;
1795
1792
  /** If present, the cursor that starts the page of data that is returned. */
1796
1793
  page?: string;
1794
+ /** Sorting parameters. */
1797
1795
  sort?: ("+ownerId" | "-ownerId" | "-name" | "+name" | "+description" | "-description" | "+createdAt" | "-createdAt" | "+updatedAt" | "-updatedAt")[];
1798
1796
  }, options?: ApiCallOptions) => Promise<GetAppReportFiltersHttpResponse>;
1799
1797
  type GetAppReportFiltersHttpResponse = {
package/apps.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/apps.ts
8
8
  var createApp = async (body, options) => invokeFetch("apps", {
package/audits.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/audits.ts
8
8
  var getAudits = async (query, options) => invokeFetch("audits", {
package/auth.js CHANGED
@@ -4,8 +4,8 @@ import {
4
4
  logout,
5
5
  registerAuthModule,
6
6
  setDefaultHostConfig
7
- } from "./chunks/4PCG3E3I.js";
8
- import "./chunks/2ZXOEI4D.js";
7
+ } from "./chunks/K7OE4EVW.js";
8
+ import "./chunks/OM55UI47.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/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/automations.ts
8
8
  var getAutomations = async (query, options) => invokeFetch("automations", {
package/brands.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/brands.ts
8
8
  var getBrands = async (query, options) => invokeFetch("brands", {
@@ -18,7 +18,7 @@ import {
18
18
  toValidEnigmaLocationUrl,
19
19
  toValidLocationUrl,
20
20
  toValidWebsocketLocationUrl
21
- } from "./SG2HWQOC.js";
21
+ } from "./5GE4XPP3.js";
22
22
  export {
23
23
  AuthorizationError,
24
24
  InvalidAuthTypeError,
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getInvokeFetchRuntimeModule
3
- } from "./2ZXOEI4D.js";
3
+ } from "./OM55UI47.js";
4
4
 
5
5
  // src/public/invoke-fetch.ts
6
6
  async function invokeFetch(api, props) {
@@ -3,7 +3,7 @@ import {
3
3
  getRestCallAuthParams,
4
4
  getWebSocketAuthParams,
5
5
  toValidWebsocketLocationUrl
6
- } from "./SG2HWQOC.js";
6
+ } from "./5GE4XPP3.js";
7
7
 
8
8
  // src/qix/session/enigma-session.ts
9
9
  import enigma from "enigma.js";
@@ -1244,6 +1244,9 @@ function clone(value) {
1244
1244
  if (value && (value instanceof Blob || value instanceof Object && value.toString() === "[object Blob]")) {
1245
1245
  return value;
1246
1246
  }
1247
+ if (value && value instanceof ReadableStream) {
1248
+ return value;
1249
+ }
1247
1250
  if (typeof value === "string") {
1248
1251
  return value;
1249
1252
  }
@@ -1719,6 +1722,9 @@ async function parseFetchResponse(fetchResponse, url) {
1719
1722
  case "application/zip":
1720
1723
  resultData = toDownloadableBlob(await fetchResponse.blob());
1721
1724
  break;
1725
+ case "text/event-stream":
1726
+ resultData = fetchResponse.body;
1727
+ break;
1722
1728
  default:
1723
1729
  try {
1724
1730
  resultData = await fetchResponse.text();
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getQixRuntimeModule
3
- } from "./2ZXOEI4D.js";
3
+ } from "./OM55UI47.js";
4
4
 
5
5
  // src/public/qix.ts
6
6
  function openAppSession(appSessionProps) {
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getAuthRuntimeModule
3
- } from "./2ZXOEI4D.js";
3
+ } from "./OM55UI47.js";
4
4
 
5
5
  // src/public/auth.ts
6
6
  function registerAuthModule(name, authModule) {
@@ -5,7 +5,7 @@ import {
5
5
  invokeFetch,
6
6
  invoke_fetch_default,
7
7
  parseFetchResponse
8
- } from "./SG2HWQOC.js";
8
+ } from "./5GE4XPP3.js";
9
9
  export {
10
10
  EncodingError,
11
11
  InvokeFetchError,
@@ -5,7 +5,7 @@ import {
5
5
  isBrowser,
6
6
  isWindows,
7
7
  toValidWebsocketLocationUrl
8
- } from "./SG2HWQOC.js";
8
+ } from "./5GE4XPP3.js";
9
9
 
10
10
  // src/qix/session/shared-sessions.ts
11
11
  var globalEventListeners = /* @__PURE__ */ new Set();
@@ -99,7 +99,7 @@ function listenForWindowsAuthenticationInformation(session) {
99
99
  return authSuggestedInWebsocket;
100
100
  }
101
101
  async function createAndSetupEnigmaSession(props, canRetry) {
102
- const { createEnigmaSession } = await import("./243PYOJH.js");
102
+ const { createEnigmaSession } = await import("./3QGTKIWR.js");
103
103
  const session = await createEnigmaSession(props);
104
104
  setupSessionListeners(session, props);
105
105
  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("./LI7EZYL4.js") : import("./GEU5U7Z5.js").then((mod) => mod.importRuntimeModule("auth@v1", hostConfig));
4
+ return isNode ? import("./2G2EK3MP.js") : import("./GEU5U7Z5.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("./5ZXMV3DK.js") : import("./GEU5U7Z5.js").then((mod) => mod.importRuntimeModule("qix@v1", hostConfig));
9
+ return isNode ? import("./NIJVIOVX.js") : import("./GEU5U7Z5.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("./OKMBHX5N.js") : import("./GEU5U7Z5.js").then((mod) => mod.importRuntimeModule("invoke-fetch@v1", hostConfig));
14
+ return isNode ? import("./LDQGW22R.js") : import("./GEU5U7Z5.js").then((mod) => mod.importRuntimeModule("invoke-fetch@v1", hostConfig));
15
15
  }
16
16
 
17
17
  export {
package/collections.d.ts CHANGED
@@ -240,31 +240,31 @@ type Meta = {
240
240
  */
241
241
  declare const getCollections: (query: {
242
242
  /** The case-sensitive string used to search for a resource by creatorId. */
243
- creatorId?: string | undefined;
243
+ creatorId?: string;
244
244
  /** The collection's unique identifier. */
245
- id?: string | undefined;
245
+ id?: string;
246
246
  /** Includes the list of items belonging to the collections. Supported parameters are 'limit', 'sort' and 'resourceType'. Supported formats are json formatted string or deep object style using square brackets. */
247
- includeItems?: string | undefined;
247
+ includeItems?: string;
248
248
  /** The maximum number of resources to return for a request. The limit must be an integer between 1 and 100 (inclusive). */
249
- limit?: number | undefined;
249
+ limit?: number;
250
250
  /** The case-sensitive string used to search for a collection by name. */
251
- name?: string | undefined;
251
+ name?: string;
252
252
  /** The cursor to the next page of resources. Provide either the
253
253
  * next or prev cursor, but not both. */
254
- next?: string | undefined;
254
+ next?: string;
255
255
  /** The cursor to the previous page of resources. Provide either the next or prev cursor, but not both. */
256
- prev?: string | undefined;
256
+ prev?: string;
257
257
  /** The case-insensitive string used to search for a resource by name or description. */
258
- query?: string | undefined;
258
+ query?: string;
259
259
  /** The property of a resource to sort on (default sort is +createdAt).
260
260
  * The supported properties are createdAt, updatedAt, and name. A property
261
261
  * must be prefixed by + or - to indicate ascending or descending sort order
262
262
  * respectively. */
263
- sort?: "-name" | "+name" | "+createdAt" | "-createdAt" | "+updatedAt" | "-updatedAt" | undefined;
263
+ sort?: "+createdAt" | "-createdAt" | "+name" | "-name" | "+updatedAt" | "-updatedAt";
264
264
  /** The case-sensitive string used to filter for a collection by type. */
265
- type?: CollectionTypes | undefined;
265
+ type?: CollectionTypes;
266
266
  /** A commaseparated case-sensitive string used to filter by multiple types. */
267
- types?: CollectionTypes[] | undefined;
267
+ types?: CollectionTypes[];
268
268
  }, options?: ApiCallOptions) => Promise<GetCollectionsHttpResponse>;
269
269
  type GetCollectionsHttpResponse = {
270
270
  data: CollectionsListCollectionsResponseBody;
@@ -391,30 +391,30 @@ type UpdateCollectionHttpError = {
391
391
  */
392
392
  declare const getCollectionItems: (collectionId: string, query: {
393
393
  /** The maximum number of resources to return for a request. The limit must be an integer between 1 and 100 (inclusive). */
394
- limit?: number | undefined;
394
+ limit?: number;
395
395
  /** The case-insensitive string used to search for a resource by name. */
396
- name?: string | undefined;
396
+ name?: string;
397
397
  /** The cursor to the next page of resources. Provide either the next or prev cursor, but not both. */
398
- next?: string | undefined;
398
+ next?: string;
399
399
  /** If set to true, the user's available actions for each item will not be evaluated meaning the actions-array will be omitted from the response (reduces response time). */
400
- noActions?: boolean | undefined;
400
+ noActions?: boolean;
401
401
  /** The cursor to the previous page of resources. Provide either the next or prev cursor, but not both. */
402
- prev?: string | undefined;
402
+ prev?: string;
403
403
  /** The case-insensitive string used to search for a resource by name or description. */
404
- query?: string | undefined;
404
+ query?: string;
405
405
  /** The case-sensitive string used to search for an item by resourceId. If resourceId is provided, then resourceType must be provided. Provide either the resourceId or resourceLink, but not both. */
406
- resourceId?: string | undefined;
406
+ resourceId?: string;
407
407
  /** The case-sensitive string used to search for an item by resourceLink. If resourceLink is provided, then resourceType must be provided. Provide either the resourceId or resourceLink, but not both. */
408
- resourceLink?: string | undefined;
408
+ resourceLink?: string;
409
409
  /** The case-sensitive string used to search for an item by resourceType. */
410
- resourceType?: ItemResourceTypeEnum | undefined;
410
+ resourceType?: ItemResourceTypeEnum;
411
411
  /** @deprecated
412
412
  * Whether or not to return items in a shared space. */
413
- shared?: boolean | undefined;
413
+ shared?: boolean;
414
414
  /** The property of a resource to sort on (default sort is +createdAt). The supported properties are createdAt, updatedAt, and name. A property must be prefixed by + or - to indicate ascending or descending sort order respectively. */
415
- sort?: "-name" | "+name" | "+createdAt" | "-createdAt" | "+updatedAt" | "-updatedAt" | undefined;
415
+ sort?: "+createdAt" | "-createdAt" | "+name" | "-name" | "+updatedAt" | "-updatedAt";
416
416
  /** The space's unique identifier (supports \'personal\' as spaceId). */
417
- spaceId?: string | undefined;
417
+ spaceId?: string;
418
418
  }, options?: ApiCallOptions) => Promise<GetCollectionItemsHttpResponse>;
419
419
  type GetCollectionItemsHttpResponse = {
420
420
  data: CollectionsListCollectionItemsResponseBody;
package/collections.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/collections.ts
8
8
  var getCollections = async (query, options) => invokeFetch("collections", {
package/csp-origins.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/csp-origins.ts
8
8
  var getCSPEntries = async (query, options) => invokeFetch("csp-origins", {
package/data-assets.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/data-assets.ts
8
8
  var deleteDataAssets = async (body, options) => invokeFetch("data-assets", {
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/data-connections.ts
8
8
  var getDataConnections = async (query, options) => invokeFetch("data-connections", {
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/data-credentials.ts
8
8
  var deleteDataCredential = async (qID, query, options) => invokeFetch("data-credentials", {
package/data-files.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/data-files.ts
8
8
  var getDataFiles = async (query, options) => invokeFetch("data-files", {
package/extensions.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/extensions.ts
8
8
  var getExtensions = async (options) => invokeFetch("extensions", {
package/glossaries.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/glossaries.ts
8
8
  var getGlossaries = async (query, options) => invokeFetch("glossaries", {
package/groups.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/groups.ts
8
8
  var getGroups = async (query, options) => invokeFetch("groups", {
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/identity-providers.ts
8
8
  var getIdps = async (query, options) => invokeFetch("identity-providers", {
package/index.js CHANGED
@@ -1,14 +1,14 @@
1
1
  import {
2
2
  auth_default
3
- } from "./chunks/4PCG3E3I.js";
3
+ } from "./chunks/K7OE4EVW.js";
4
4
  import {
5
5
  qix_default
6
- } from "./chunks/4NK5KQKY.js";
6
+ } from "./chunks/6ZU5SVSZ.js";
7
7
  import {
8
8
  clearApiCache,
9
9
  invokeFetch
10
- } from "./chunks/664FMSNJ.js";
11
- import "./chunks/2ZXOEI4D.js";
10
+ } from "./chunks/3M4WLVKJ.js";
11
+ import "./chunks/OM55UI47.js";
12
12
 
13
13
  // src/public/public-runtime-api-generator/public-runtime-api-generator.ts
14
14
  var methodAbbreviations = {
package/items.d.ts CHANGED
@@ -253,48 +253,48 @@ type SpaceTypeEnum = "shared" | "managed" | "personal" | "data";
253
253
  */
254
254
  declare const getItems: (query: {
255
255
  /** The collection's unique identifier. */
256
- collectionId?: string | undefined;
256
+ collectionId?: string;
257
257
  /** User's unique identifier. */
258
- createdByUserId?: string | undefined;
258
+ createdByUserId?: string;
259
259
  /** The item's unique identifier. */
260
- id?: string | undefined;
260
+ id?: string;
261
261
  /** The maximum number of resources to return for a request. The limit must be an integer between 1 and 100 (inclusive). */
262
- limit?: number | undefined;
262
+ limit?: number;
263
263
  /** The case-insensitive string used to search for a resource by name. */
264
- name?: string | undefined;
264
+ name?: string;
265
265
  /** The cursor to the next page of resources. Provide either the next or prev cursor, but not both. */
266
- next?: string | undefined;
266
+ next?: string;
267
267
  /** If set to true, the user's available actions for each item will not be evaluated meaning the actions-array will be omitted from the response (reduces response time). */
268
- noActions?: boolean | undefined;
268
+ noActions?: boolean;
269
269
  /** User's unique identifier. */
270
- notCreatedByUserId?: string | undefined;
270
+ notCreatedByUserId?: string;
271
271
  /** Owner identifier. */
272
- notOwnerId?: string | undefined;
272
+ notOwnerId?: string;
273
273
  /** Owner identifier. */
274
- ownerId?: string | undefined;
274
+ ownerId?: string;
275
275
  /** The cursor to the previous page of resources. Provide either the next or prev cursor, but not both. */
276
- prev?: string | undefined;
276
+ prev?: string;
277
277
  /** The case-insensitive string used to search for a resource by name or description. */
278
- query?: string | undefined;
278
+ query?: string;
279
279
  /** The case-sensitive string used to search for an item by resourceId. If resourceId is provided, then resourceType must be provided. Provide either the resourceId or resourceLink, but not both. */
280
- resourceId?: string | undefined;
280
+ resourceId?: string;
281
281
  /** The case-sensitive strings used to search for an item by resourceIds. The maximum number of resourceIds it supports is 100. If resourceIds is provided, then resourceType must be provided. For example '?resourceIds=appId1,appId2' */
282
- resourceIds?: string | undefined;
282
+ resourceIds?: string;
283
283
  /** The case-sensitive string used to search for an item by resourceLink. If resourceLink is provided, then resourceType must be provided. Provide either the resourceId or resourceLink, but not both. */
284
- resourceLink?: string | undefined;
284
+ resourceLink?: string;
285
285
  /** the case-sensitive string used to filter items by resourceSubType(s). For example '?resourceSubType=chart-monitoring,qix-df,qvd'. Will return a 400 error if used in conjuction with the square bracket syntax for resourceSubType filtering in the 'resourceType' query parameter. */
286
- resourceSubType?: string | undefined;
286
+ resourceSubType?: string;
287
287
  /** The case-sensitive string used to filter items by resourceType(s). For example '?resourceType=app,qvapp'. Additionally, a optional resourceSubType filter can be added to each resourceType. For example '?resourceType=app[qvd,chart-monitoring],qvapp'. An trailing comma can be used to include the empty resourceSubType, e.g. '?resourceType=app[qvd,chart-monitoring,]', or, to include only empty resourceSubTypes, '?resourceType=app[]' This syntax replaces the 'resourceSubType' query param, and using both in the same query will result in a 400 error. */
288
- resourceType?: ItemResourceTypeEnum | undefined;
288
+ resourceType?: ItemResourceTypeEnum;
289
289
  /** @deprecated
290
290
  * Whether or not to return items in a shared space. */
291
- shared?: boolean | undefined;
291
+ shared?: boolean;
292
292
  /** The property of a resource to sort on (default sort is +createdAt). The supported properties are createdAt, updatedAt, and name. A property must be prefixed by + or - to indicate ascending or descending sort order respectively. */
293
- sort?: "-name" | "+name" | "+createdAt" | "-createdAt" | "+updatedAt" | "-updatedAt" | undefined;
293
+ sort?: "+createdAt" | "-createdAt" | "+name" | "-name" | "+updatedAt" | "-updatedAt";
294
294
  /** The space's unique identifier (supports \'personal\' as spaceId). */
295
- spaceId?: string | undefined;
295
+ spaceId?: string;
296
296
  /** The case-sensitive string used to filter items on space type(s). For example '?spaceType=shared,personal'. */
297
- spaceType?: SpaceTypeEnum | undefined;
297
+ spaceType?: SpaceTypeEnum;
298
298
  }, options?: ApiCallOptions) => Promise<GetItemsHttpResponse>;
299
299
  type GetItemsHttpResponse = {
300
300
  data: ItemsListItemsResponseBody;
@@ -402,19 +402,19 @@ type UpdateItemHttpError = {
402
402
  */
403
403
  declare const getItemCollections: (itemId: string, query: {
404
404
  /** The maximum number of resources to return for a request. The limit must be an integer between 1 and 100 (inclusive). */
405
- limit?: number | undefined;
405
+ limit?: number;
406
406
  /** The case-sensitive string used to search for a collection by name. */
407
- name?: string | undefined;
407
+ name?: string;
408
408
  /** The cursor to the next page of resources. Provide either the next or prev cursor, but not both. */
409
- next?: string | undefined;
409
+ next?: string;
410
410
  /** The cursor to the previous page of resources. Provide either the next or prev cursor, but not both. */
411
- prev?: string | undefined;
411
+ prev?: string;
412
412
  /** The case-insensitive string used to search for a resource by name or description. */
413
- query?: string | undefined;
413
+ query?: string;
414
414
  /** The property of a resource to sort on (default sort is +createdAt). The supported properties are createdAt, updatedAt, and name. A property must be prefixed by + or - to indicate ascending or descending sort order respectively. */
415
- sort?: "-name" | "+name" | "+createdAt" | "-createdAt" | "+updatedAt" | "-updatedAt" | undefined;
415
+ sort?: "+createdAt" | "-createdAt" | "+name" | "-name" | "+updatedAt" | "-updatedAt";
416
416
  /** The case-sensitive string used to search for a collection by type. */
417
- type?: CollectionTypes | undefined;
417
+ type?: CollectionTypes;
418
418
  }, options?: ApiCallOptions) => Promise<GetItemCollectionsHttpResponse>;
419
419
  type GetItemCollectionsHttpResponse = {
420
420
  data: ItemsListItemCollectionsResponseBody;
package/items.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/items.ts
8
8
  var getItems = async (query, options) => invokeFetch("items", {
package/licenses.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/licenses.ts
8
8
  var getLicenseAssignments = async (query, options) => invokeFetch("licenses", {
package/package.json CHANGED
@@ -58,5 +58,5 @@
58
58
  "./qix": "./qix.js",
59
59
  "./auth": "./auth.js"
60
60
  },
61
- "version": "1.1.0"
61
+ "version": "1.3.0"
62
62
  }
package/qix.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import './global.types-CMQsAHYd.js';
2
2
  import { H as HostConfig } from './auth-types-Bqw3vbLs.js';
3
3
 
4
- declare const QIX_SCHEMA_VERSION = "12.2030.0";
4
+ declare const QIX_SCHEMA_VERSION = "12.2042.0";
5
5
  type AlfaNumString = {
6
6
  /**
7
7
  * Calculated value.
@@ -109,6 +109,22 @@ type AppScriptMeta = {
109
109
  */
110
110
  qIsLocked?: boolean;
111
111
  };
112
+ type ApplyGroupStateWarning = {
113
+ /**
114
+ * Group state that could not be applied.
115
+ */
116
+ qState?: GroupState;
117
+ /**
118
+ * Nature of the warning.
119
+ *
120
+ * One of:
121
+ * * group_missing or GROUP_MISSING
122
+ * * group_not_applicable or GROUP_NOT_APPLICABLE
123
+ * * fielddef_missing or FIELDDEF_MISSING
124
+ */
125
+ qType?: ApplyGroupStateWarningType;
126
+ };
127
+ type ApplyGroupStateWarningType = "group_missing" | "GROUP_MISSING" | "group_not_applicable" | "GROUP_NOT_APPLICABLE" | "fielddef_missing" | "FIELDDEF_MISSING";
112
128
  /**
113
129
  * Result of applying GroupState to multiple cyclic groups.
114
130
  *
@@ -116,9 +132,13 @@ type AppScriptMeta = {
116
132
  */
117
133
  type ApplyGroupStatesResult = {
118
134
  /**
119
- * When true, the cyclic group state was fully applied. *
135
+ * When true, the operation was successful.
120
136
  */
121
137
  qApplySuccess?: boolean;
138
+ /**
139
+ * Lists which states failed to be applied and why.
140
+ */
141
+ qWarnings?: ApplyGroupStateWarning[];
122
142
  };
123
143
  type ArrayOfNxValuePoint = NxPivotValuePoint[];
124
144
  type AssociationScore = {
@@ -318,6 +338,10 @@ type BookmarkApplyAndVerifyResult = {
318
338
  * Field values verfication result *
319
339
  */
320
340
  qWarnings?: BookmarkFieldVerifyWarning[];
341
+ /**
342
+ * Result of applying group states (if any).
343
+ */
344
+ qGroupStateResult?: ApplyGroupStatesResult;
321
345
  };
322
346
  type BookmarkFieldItem = {
323
347
  /**
@@ -3088,9 +3112,13 @@ type NxBookmark = {
3088
3112
  */
3089
3113
  qPatches?: NxPatches[];
3090
3114
  /**
3091
- * Information about cyclic groups.
3115
+ * Information about cyclic groups by zero-based index. This field is unused.
3092
3116
  */
3093
3117
  qCyclicGroupStates?: CyclicGroupPosition[];
3118
+ /**
3119
+ * Information about cyclic groups indexed by field definition.
3120
+ */
3121
+ qGroupStates?: GroupState[];
3094
3122
  };
3095
3123
  type NxCalcCond = {
3096
3124
  /**
@@ -11677,4 +11705,4 @@ declare const _default: {
11677
11705
  openAppSession: typeof openAppSession;
11678
11706
  };
11679
11707
 
11680
- export { type AlfaNumString, type AlternateStateData, type AnyGenericObjectLayout, type AnyGenericObjectProperties, type AppEntry, type AppObjectList, type AppObjectListDef, type AppScript, type AppScriptMeta, type AppSession, type ApplyGroupStatesResult, type ArrayOfNxValuePoint, type AssociationScore, type BNFDef, type BNFDefMetaType, type BNFType, type Blob, type Bookmark, type BookmarkApplyAndVerifyResult, type BookmarkFieldItem, type BookmarkFieldPage, type BookmarkFieldVerifyResultState, type BookmarkFieldVerifyWarning, type BookmarkList, type BookmarkListData, type BookmarkListDef, type BookmarkListItem, type BookmarkVariableItem, type CalendarStrings, type CharEncodingType, type CharRange, type ChildList, type ChildListDef, type CloseProps, type CodePage, type CombinedWebSocketStateEvent, type CondDef, type Connection, type ContentLibraryList, type ContentLibraryListItem, type CurrentSelections, type CustomConnector, type CyclicGroupPosition, type DataField, type DataRecord, type DataTable, type DataTableEx, type Database, type DatabaseInfo, type DatabaseOwner, type DelimiterInfo, type DerivedFieldsInTableData, type DimensionList, type DimensionListData, type DimensionListDef, type DimensionListItem, type DoReloadExParams, type DoReloadExResult, type Doc, type DocAction, type DocListEntry, type DriveInfo, type DriveType, type DynamicAppViewListData, type DynamicAppViewListItem, type EditorBreakpoint, type EmbeddedSnapshot, type EmbeddedSnapshotDef, type ErrorData, type ErrorDataCode, type ExpandedFieldListItem, type ExpansionData, type ExtendedLayoutBookmarkData, type ExtendedPivotStateData, type ExtensionList, type ExtensionListDef, type Field, type FieldAttrType, type FieldAttributes, type FieldDefEx, type FieldDescription, type FieldInTableData, type FieldInTableProfilingData, type FieldList, type FieldListDef, type FieldListObject, type FieldOrColumn, type FieldScores, type FieldType, type FieldValue, type FileDataFormat, type FileType, type FilterInfo, type FilterType, type FolderItem, type FolderItemType, type FrequencyDistributionData, type FunctionGroup, type GenericBookmark, type GenericBookmarkEntry, type GenericBookmarkLayout, type GenericBookmarkProperties, type GenericConnectMachine, type GenericDimension, type GenericDimensionInfo, type GenericDimensionLayout, type GenericDimensionProperties, type GenericListObject, type GenericMeasure, type GenericMeasureLayout, type GenericMeasureProperties, type GenericObject, type GenericObjectEntry, type GenericObjectLayout, type GenericObjectLayoutAdditionalProperties, type GenericObjectLayoutNode, type GenericObjectLayoutNodeLevel2, type GenericObjectLayoutNodeLevel3, type GenericObjectLayoutNodeLevel4, type GenericObjectLayoutNodeLevel5, type GenericObjectLayoutNodeRec, type GenericObjectProperties, type GenericObjectPropertiesAdditionalProperties, type GenericObjectPropertiesNode, type GenericObjectPropertiesNodeLevel2, type GenericObjectPropertiesNodeLevel3, type GenericObjectPropertiesNodeLevel4, type GenericObjectPropertiesNodeLevel5, type GenericObjectPropertiesNodeRec, type GenericVariable, type GenericVariableLayout, type GenericVariableProperties, type Global, type GraphMode, type GroupBookmarkData, type GroupState, type GroupStateInfo, type HyperCube, type HyperCubeDef, type InputFieldItem, type InterFieldSortData, type InteractDef, type InteractType, type KeyType, type LayoutBookmarkData, type LayoutExclude, type LayoutFieldInfo, type LineageInfo, type ListBoxProperties, type ListFunctions, type ListItem, type ListObject, type ListObjectDef, type LocaleInfo, type LogOnType, type MasterObjectListData, type MasterObjectListItem, type MeasureList, type MeasureListData, type MeasureListDef, type MeasureListItem, type MediaListDef, type MediaListItem, type MetaData, type ModalFunctions, type NativeDocFunctions, type NativeFieldFunctions, type NativeGenericBookmarkFunctions, type NativeGenericDimensionFunctions, type NativeGenericMeasureFunctions, type NativeGenericObjectFunctions, type NativeGenericVariableFunctions, type NativeGlobalFunctions, type NativeReactHooks, type NativeVariableFunctions, type NxAppLayout, type NxAppProperties, type NxAttrDimDef, type NxAttrDimInfo, type NxAttrExprDef, type NxAttrExprInfo, type NxAttributeDimValues, type NxAttributeExpressionValues, type NxAutoSortByStateDef, type NxAxisData, type NxAxisTicks, type NxBookmark, type NxCalcCond, type NxCardinalities, type NxCell, type NxCellPosition, type NxCellRows, type NxContainerEntry, type NxContinuousDataOptions, type NxContinuousMode, type NxContinuousRangeSelectInfo, type NxCurrentSelectionItem, type NxDataAreaPage, type NxDataPage, type NxDataReductionMode, type NxDerivedField, type NxDerivedFieldDescriptionList, type NxDerivedFieldsData, type NxDerivedGroup, type NxDimCellType, type NxDimension, type NxDimensionInfo, type NxDimensionType, type NxDownloadInfo, type NxDownloadOptions, type NxEngineVersion, type NxExportFileType, type NxExportState, type NxFeature, type NxFieldDescription, type NxFieldProperties, type NxFieldResourceId, type NxFieldSelectionInfo, type NxFieldSelectionMode, type NxFieldTableResourceId, type NxFrequencyMode, type NxGetBookmarkOptions, type NxGetObjectOptions, type NxGroupTail, type NxGrpType, type NxHighlightRanges, type NxHypercubeMode, type NxInfo, type NxInlineDimensionDef, type NxInlineMeasureDef, type NxLTrendlineType, type NxLayoutErrors, type NxLibraryDimension, type NxLibraryDimensionDef, type NxLibraryMeasure, type NxLibraryMeasureDef, type NxLinkedObjectInfo, type NxListObjectExpression, type NxListObjectExpressionDef, type NxLocalizedErrorCode, type NxLocalizedWarningCode, type NxMatchingFieldInfo, type NxMatchingFieldMode, type NxMeasure, type NxMeasureInfo, type NxMeta, type NxMetaDef, type NxMiniChart, type NxMiniChartCell, type NxMiniChartData, type NxMiniChartDef, type NxMiniChartRows, type NxMultiRangeSelectInfo, type NxPage, type NxPageTreeLevel, type NxPageTreeNode, type NxPatch, type NxPatchOperationType, type NxPatches, type NxPivotDimensionCell, type NxPivotPage, type NxPivotValuePoint, type NxRange, type NxRangeSelectInfo, type NxSelectionCell, type NxSelectionCellType, type NxSelectionInfo, type NxSimpleDimValue, type NxSimpleValue, type NxSortIndicatorType, type NxStackPage, type NxStackedPivotCell, type NxStateCounts, type NxStreamListEntry, type NxTempBookmarkOptions, type NxTickCell, type NxTreeDataOption, type NxTreeDimensionDef, type NxTreeDimensionInfo, type NxTreeMultiRangeSelectInfo, type NxTreeNode, type NxTreeRangeSelectInfo, type NxTreeValue, type NxTrendline, type NxTrendlineDef, type NxTrendlineMode, type NxValidationError, type NxVariableListItem, type NxVariableProperties, type NxViewPort, type ODAGAppLinkListData, type ODAGAppLinkListItem, type ObjectHelperFunctions, type ObjectInterface, type OdbcDsn, type OleDbProvider, type OpenAppSessionProps, type OtherLimitMode, type OtherMode, type OtherSortMode, type OtherTotalSpecProp, type Point, type PositionMark, type ProgressData, type ProgressMessage, type QFunction, QIX_SCHEMA_VERSION, type QMediaList, type QRange, type RangeSelectInfo, type Rect, type RpcObject, type SampleResult, type ScriptSyntaxError, type ScrollPosition, type SearchAssociationResult, type SearchAttribute, type SearchCharRange, type SearchCombinationOptions, type SearchContextType, type SearchFieldDictionary, type SearchFieldMatch, type SearchFieldMatchType, type SearchFieldMatchesItem, type SearchFieldSelectionMode, type SearchFieldValueItem, type SearchGroup, type SearchGroupItem, type SearchGroupItemMatch, type SearchGroupItemOptions, type SearchGroupItemType, type SearchGroupOptions, type SearchGroupType, type SearchMatchCombination, type SearchMatchCombinations, type SearchObjectOptions, type SearchPage, type SearchResult, type SearchSuggestItem, type SearchSuggestionResult, type SearchTermResult, type SearchValueOptions, type SearchValuePage, type SearchValueResult, type SelectInfo, type SelectionObject, type SelectionObjectDef, type SheetListData, type SheetListDataCell, type SheetListDataCellBounds, type SheetListItem, type Size, type SortCriteria, type SourceKeyRecord, type SpecialObjectFunctions, type StandardFunctions, type StateEnumType, type StaticContentList, type StaticContentListItem, type StaticContentUrl, type StaticContentUrlDef, type StoryListData, type StoryListItem, type StringExpr, type StringExpression, type SymbolFrequency, type SymbolValue, type TableProfilingData, type TableRecord, type TableRow, type TableViewBroomPointSaveInfo, type TableViewConnectionPointSaveInfo, type TableViewCtlSaveInfo, type TableViewDlgSaveInfo, type TableViewSaveInfo, type TableViewTableWinSaveInfo, type TextMacro, type TotalMode, type TransformAppParameters, type TransformAppResult, type TreeData, type TreeDataDef, type UndoInfo, type UndoInfoDef, type UndoInfoObject, type UsageEnum, type UseAppHook, type ValueExpr, type ValueExpression, type VariableList, type VariableListData, type VariableListDef, type VariableListItem, type WebSocketEvent, _default as default, openAppSession };
11708
+ export { type AlfaNumString, type AlternateStateData, type AnyGenericObjectLayout, type AnyGenericObjectProperties, type AppEntry, type AppObjectList, type AppObjectListDef, type AppScript, type AppScriptMeta, type AppSession, type ApplyGroupStateWarning, type ApplyGroupStateWarningType, type ApplyGroupStatesResult, type ArrayOfNxValuePoint, type AssociationScore, type BNFDef, type BNFDefMetaType, type BNFType, type Blob, type Bookmark, type BookmarkApplyAndVerifyResult, type BookmarkFieldItem, type BookmarkFieldPage, type BookmarkFieldVerifyResultState, type BookmarkFieldVerifyWarning, type BookmarkList, type BookmarkListData, type BookmarkListDef, type BookmarkListItem, type BookmarkVariableItem, type CalendarStrings, type CharEncodingType, type CharRange, type ChildList, type ChildListDef, type CloseProps, type CodePage, type CombinedWebSocketStateEvent, type CondDef, type Connection, type ContentLibraryList, type ContentLibraryListItem, type CurrentSelections, type CustomConnector, type CyclicGroupPosition, type DataField, type DataRecord, type DataTable, type DataTableEx, type Database, type DatabaseInfo, type DatabaseOwner, type DelimiterInfo, type DerivedFieldsInTableData, type DimensionList, type DimensionListData, type DimensionListDef, type DimensionListItem, type DoReloadExParams, type DoReloadExResult, type Doc, type DocAction, type DocListEntry, type DriveInfo, type DriveType, type DynamicAppViewListData, type DynamicAppViewListItem, type EditorBreakpoint, type EmbeddedSnapshot, type EmbeddedSnapshotDef, type ErrorData, type ErrorDataCode, type ExpandedFieldListItem, type ExpansionData, type ExtendedLayoutBookmarkData, type ExtendedPivotStateData, type ExtensionList, type ExtensionListDef, type Field, type FieldAttrType, type FieldAttributes, type FieldDefEx, type FieldDescription, type FieldInTableData, type FieldInTableProfilingData, type FieldList, type FieldListDef, type FieldListObject, type FieldOrColumn, type FieldScores, type FieldType, type FieldValue, type FileDataFormat, type FileType, type FilterInfo, type FilterType, type FolderItem, type FolderItemType, type FrequencyDistributionData, type FunctionGroup, type GenericBookmark, type GenericBookmarkEntry, type GenericBookmarkLayout, type GenericBookmarkProperties, type GenericConnectMachine, type GenericDimension, type GenericDimensionInfo, type GenericDimensionLayout, type GenericDimensionProperties, type GenericListObject, type GenericMeasure, type GenericMeasureLayout, type GenericMeasureProperties, type GenericObject, type GenericObjectEntry, type GenericObjectLayout, type GenericObjectLayoutAdditionalProperties, type GenericObjectLayoutNode, type GenericObjectLayoutNodeLevel2, type GenericObjectLayoutNodeLevel3, type GenericObjectLayoutNodeLevel4, type GenericObjectLayoutNodeLevel5, type GenericObjectLayoutNodeRec, type GenericObjectProperties, type GenericObjectPropertiesAdditionalProperties, type GenericObjectPropertiesNode, type GenericObjectPropertiesNodeLevel2, type GenericObjectPropertiesNodeLevel3, type GenericObjectPropertiesNodeLevel4, type GenericObjectPropertiesNodeLevel5, type GenericObjectPropertiesNodeRec, type GenericVariable, type GenericVariableLayout, type GenericVariableProperties, type Global, type GraphMode, type GroupBookmarkData, type GroupState, type GroupStateInfo, type HyperCube, type HyperCubeDef, type InputFieldItem, type InterFieldSortData, type InteractDef, type InteractType, type KeyType, type LayoutBookmarkData, type LayoutExclude, type LayoutFieldInfo, type LineageInfo, type ListBoxProperties, type ListFunctions, type ListItem, type ListObject, type ListObjectDef, type LocaleInfo, type LogOnType, type MasterObjectListData, type MasterObjectListItem, type MeasureList, type MeasureListData, type MeasureListDef, type MeasureListItem, type MediaListDef, type MediaListItem, type MetaData, type ModalFunctions, type NativeDocFunctions, type NativeFieldFunctions, type NativeGenericBookmarkFunctions, type NativeGenericDimensionFunctions, type NativeGenericMeasureFunctions, type NativeGenericObjectFunctions, type NativeGenericVariableFunctions, type NativeGlobalFunctions, type NativeReactHooks, type NativeVariableFunctions, type NxAppLayout, type NxAppProperties, type NxAttrDimDef, type NxAttrDimInfo, type NxAttrExprDef, type NxAttrExprInfo, type NxAttributeDimValues, type NxAttributeExpressionValues, type NxAutoSortByStateDef, type NxAxisData, type NxAxisTicks, type NxBookmark, type NxCalcCond, type NxCardinalities, type NxCell, type NxCellPosition, type NxCellRows, type NxContainerEntry, type NxContinuousDataOptions, type NxContinuousMode, type NxContinuousRangeSelectInfo, type NxCurrentSelectionItem, type NxDataAreaPage, type NxDataPage, type NxDataReductionMode, type NxDerivedField, type NxDerivedFieldDescriptionList, type NxDerivedFieldsData, type NxDerivedGroup, type NxDimCellType, type NxDimension, type NxDimensionInfo, type NxDimensionType, type NxDownloadInfo, type NxDownloadOptions, type NxEngineVersion, type NxExportFileType, type NxExportState, type NxFeature, type NxFieldDescription, type NxFieldProperties, type NxFieldResourceId, type NxFieldSelectionInfo, type NxFieldSelectionMode, type NxFieldTableResourceId, type NxFrequencyMode, type NxGetBookmarkOptions, type NxGetObjectOptions, type NxGroupTail, type NxGrpType, type NxHighlightRanges, type NxHypercubeMode, type NxInfo, type NxInlineDimensionDef, type NxInlineMeasureDef, type NxLTrendlineType, type NxLayoutErrors, type NxLibraryDimension, type NxLibraryDimensionDef, type NxLibraryMeasure, type NxLibraryMeasureDef, type NxLinkedObjectInfo, type NxListObjectExpression, type NxListObjectExpressionDef, type NxLocalizedErrorCode, type NxLocalizedWarningCode, type NxMatchingFieldInfo, type NxMatchingFieldMode, type NxMeasure, type NxMeasureInfo, type NxMeta, type NxMetaDef, type NxMiniChart, type NxMiniChartCell, type NxMiniChartData, type NxMiniChartDef, type NxMiniChartRows, type NxMultiRangeSelectInfo, type NxPage, type NxPageTreeLevel, type NxPageTreeNode, type NxPatch, type NxPatchOperationType, type NxPatches, type NxPivotDimensionCell, type NxPivotPage, type NxPivotValuePoint, type NxRange, type NxRangeSelectInfo, type NxSelectionCell, type NxSelectionCellType, type NxSelectionInfo, type NxSimpleDimValue, type NxSimpleValue, type NxSortIndicatorType, type NxStackPage, type NxStackedPivotCell, type NxStateCounts, type NxStreamListEntry, type NxTempBookmarkOptions, type NxTickCell, type NxTreeDataOption, type NxTreeDimensionDef, type NxTreeDimensionInfo, type NxTreeMultiRangeSelectInfo, type NxTreeNode, type NxTreeRangeSelectInfo, type NxTreeValue, type NxTrendline, type NxTrendlineDef, type NxTrendlineMode, type NxValidationError, type NxVariableListItem, type NxVariableProperties, type NxViewPort, type ODAGAppLinkListData, type ODAGAppLinkListItem, type ObjectHelperFunctions, type ObjectInterface, type OdbcDsn, type OleDbProvider, type OpenAppSessionProps, type OtherLimitMode, type OtherMode, type OtherSortMode, type OtherTotalSpecProp, type Point, type PositionMark, type ProgressData, type ProgressMessage, type QFunction, QIX_SCHEMA_VERSION, type QMediaList, type QRange, type RangeSelectInfo, type Rect, type RpcObject, type SampleResult, type ScriptSyntaxError, type ScrollPosition, type SearchAssociationResult, type SearchAttribute, type SearchCharRange, type SearchCombinationOptions, type SearchContextType, type SearchFieldDictionary, type SearchFieldMatch, type SearchFieldMatchType, type SearchFieldMatchesItem, type SearchFieldSelectionMode, type SearchFieldValueItem, type SearchGroup, type SearchGroupItem, type SearchGroupItemMatch, type SearchGroupItemOptions, type SearchGroupItemType, type SearchGroupOptions, type SearchGroupType, type SearchMatchCombination, type SearchMatchCombinations, type SearchObjectOptions, type SearchPage, type SearchResult, type SearchSuggestItem, type SearchSuggestionResult, type SearchTermResult, type SearchValueOptions, type SearchValuePage, type SearchValueResult, type SelectInfo, type SelectionObject, type SelectionObjectDef, type SheetListData, type SheetListDataCell, type SheetListDataCellBounds, type SheetListItem, type Size, type SortCriteria, type SourceKeyRecord, type SpecialObjectFunctions, type StandardFunctions, type StateEnumType, type StaticContentList, type StaticContentListItem, type StaticContentUrl, type StaticContentUrlDef, type StoryListData, type StoryListItem, type StringExpr, type StringExpression, type SymbolFrequency, type SymbolValue, type TableProfilingData, type TableRecord, type TableRow, type TableViewBroomPointSaveInfo, type TableViewConnectionPointSaveInfo, type TableViewCtlSaveInfo, type TableViewDlgSaveInfo, type TableViewSaveInfo, type TableViewTableWinSaveInfo, type TextMacro, type TotalMode, type TransformAppParameters, type TransformAppResult, type TreeData, type TreeDataDef, type UndoInfo, type UndoInfoDef, type UndoInfoObject, type UsageEnum, type UseAppHook, type ValueExpr, type ValueExpression, type VariableList, type VariableListData, type VariableListDef, type VariableListItem, type WebSocketEvent, _default as default, openAppSession };
package/qix.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  openAppSession,
3
3
  qix_default
4
- } from "./chunks/4NK5KQKY.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/6ZU5SVSZ.js";
5
+ import "./chunks/OM55UI47.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/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/quotas.ts
8
8
  var getQuotas = async (query, options) => invokeFetch("quotas", {
package/reload-tasks.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/reload-tasks.ts
8
8
  var getReloadTasks = async (query, options) => invokeFetch("reload-tasks", {
package/reloads.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/reloads.ts
8
8
  var getReloads = async (query, options) => invokeFetch("reloads", {
package/roles.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/roles.ts
8
8
  var getRoles = async (query, options) => invokeFetch("roles", {
package/spaces.d.ts CHANGED
@@ -365,7 +365,7 @@ declare const getSpaceAssignments: (spaceId: string, query: {
365
365
  next?: string;
366
366
  /** The previous page cursor. Previous links make use of this. */
367
367
  prev?: string;
368
- /** The type of assignment. */
368
+ /** The type of assignment. Supported values are user or group. */
369
369
  type?: AssignmentType;
370
370
  }, options?: ApiCallOptions) => Promise<GetSpaceAssignmentsHttpResponse>;
371
371
  type GetSpaceAssignmentsHttpResponse = {
package/spaces.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/spaces.ts
8
8
  var getSpaces = async (query, options) => invokeFetch("spaces", {
package/temp-contents.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/temp-contents.ts
8
8
  var uploadTempFile = async (query, body, options) => invokeFetch("temp-contents", {
package/tenants.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/tenants.ts
8
8
  var createTenant = async (body, options) => invokeFetch("tenants", {
package/themes.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/themes.ts
8
8
  var getThemes = async (options) => invokeFetch("themes", {
package/transports.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/transports.ts
8
8
  var deleteEmailConfig = async (options) => invokeFetch("transports", {
package/users.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/users.ts
8
8
  var getUsers = async (query, options) => invokeFetch("users", {
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/web-integrations.ts
8
8
  var getWebIntegrations = async (query, options) => invokeFetch("web-integrations", {
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/web-notifications.ts
8
8
  var getNotifications = async (query, options) => invokeFetch("web-notifications", {
package/webhooks.d.ts CHANGED
@@ -70,6 +70,8 @@ type Link = {
70
70
  href: string;
71
71
  };
72
72
  type WebhookBase = {
73
+ /** If enabled the certificate chain of the configured URL will be checked for revocation before sending the webhook. */
74
+ checkCertificateRevocation?: boolean;
73
75
  /** The UTC timestamp when the webhook was created */
74
76
  readonly createdAt?: string;
75
77
  /** The id of the user that created the webhook */
package/webhooks.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/664FMSNJ.js";
5
- import "./chunks/2ZXOEI4D.js";
4
+ } from "./chunks/3M4WLVKJ.js";
5
+ import "./chunks/OM55UI47.js";
6
6
 
7
7
  // src/public/rest/webhooks.ts
8
8
  var getWebhooks = async (query, options) => invokeFetch("webhooks", {