@qlik/api 1.7.0 → 1.9.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 CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/apps.ts
package/audits.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/JR4AYAEK.js";
8
- import "./chunks/7C6WMELW.js";
7
+ } from "./chunks/UJ4EFAWC.js";
8
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/brands.ts
@@ -1,12 +1,12 @@
1
1
  import {
2
2
  getInvokeFetchRuntimeModule
3
- } from "./7C6WMELW.js";
3
+ } from "./Q4YZPSU3.js";
4
4
  import {
5
5
  isBrowser
6
6
  } from "./2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/invoke-fetch.ts
9
- var defaultUserAgent = "qlik-api/1.7.0";
9
+ var defaultUserAgent = "qlik-api/1.9.0";
10
10
  async function invokeFetch(api, props) {
11
11
  const hostConfig = props.options?.hostConfig;
12
12
  let userAgent;
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getQixRuntimeModule
3
- } from "./7C6WMELW.js";
3
+ } from "./Q4YZPSU3.js";
4
4
 
5
5
  // src/public/qix.ts
6
6
  function openAppSession(appSessionProps) {
@@ -9569,8 +9569,7 @@ var mixin4 = {
9569
9569
  getOrCreateSessionObject(props) {
9570
9570
  const app = this;
9571
9571
  const id = props.qInfo?.qId;
9572
- if (!id)
9573
- throw new Error("Invalid list definition. No qId defined");
9572
+ if (!id) throw new Error("Invalid list definition. No qId defined");
9574
9573
  if (!app._listCache[id]) {
9575
9574
  if (app.session.sessionState === "SESSION_ATTACHED") {
9576
9575
  app._listCache[id] = app.getObject(id).catch(() => app.createSessionObject(props));
@@ -9596,8 +9595,7 @@ var mixin4 = {
9596
9595
  outKey = outKey.replace(/Def$/g, "");
9597
9596
  }
9598
9597
  const id = listDef.qInfo?.qId;
9599
- if (!id)
9600
- throw new Error("Invalid list definition. No qId defined");
9598
+ if (!id) throw new Error("Invalid list definition. No qId defined");
9601
9599
  if (!app._listCache[id]) {
9602
9600
  app.getOrCreateSessionObject(listDef).then((obj) => {
9603
9601
  const getLayout = obj.getLayout.bind(obj);
@@ -101,7 +101,7 @@ function listenForWindowsAuthenticationInformation(session) {
101
101
  return authSuggestedInWebsocket;
102
102
  }
103
103
  async function createAndSetupEnigmaSession(props, canRetry) {
104
- const { createEnigmaSession } = await import("./6UGE6PR7.js");
104
+ const { createEnigmaSession } = await import("./AOO7YWBX.js");
105
105
  const session = await createEnigmaSession(props);
106
106
  setupSessionListeners(session, props);
107
107
  let global;
@@ -1,17 +1,17 @@
1
1
  // src/public/public-runtime-modules.ts
2
2
  function getAuthRuntimeModule(hostConfig) {
3
3
  const isNode = !!globalThis.process?.argv;
4
- return isNode ? import("./5WSW4QG3.js") : import("./6P5HRFLL.js").then((mod) => mod.importRuntimeModule("auth@v1", hostConfig));
4
+ return isNode ? import("./5WSW4QG3.js") : import("./U7AYZVA3.js").then((mod) => mod.importRuntimeModule("auth@v1", hostConfig));
5
5
  }
6
6
  async function getQixRuntimeModule(hostConfig) {
7
7
  await getAuthRuntimeModule(hostConfig);
8
8
  const isNode = !!globalThis.process?.argv;
9
- return isNode ? import("./HZ5LN65C.js") : import("./6P5HRFLL.js").then((mod) => mod.importRuntimeModule("qix@v1", hostConfig));
9
+ return isNode ? import("./B2KHDUE3.js") : import("./U7AYZVA3.js").then((mod) => mod.importRuntimeModule("qix@v1", hostConfig));
10
10
  }
11
11
  async function getInvokeFetchRuntimeModule(hostConfig) {
12
12
  await getAuthRuntimeModule(hostConfig);
13
13
  const isNode = !!globalThis.process?.argv;
14
- return isNode ? import("./SW3DXPAP.js") : import("./6P5HRFLL.js").then((mod) => mod.importRuntimeModule("invoke-fetch@v1", hostConfig));
14
+ return isNode ? import("./SW3DXPAP.js") : import("./U7AYZVA3.js").then((mod) => mod.importRuntimeModule("invoke-fetch@v1", hostConfig));
15
15
  }
16
16
 
17
17
  export {
@@ -1,4 +1,4 @@
1
- // node_modules/.pnpm/@qlik+runtime-module-loader@1.0.4_bufferutil@4.0.8/node_modules/@qlik/runtime-module-loader/dist/index.js
1
+ // node_modules/.pnpm/@qlik+runtime-module-loader@1.0.5_bufferutil@4.0.8/node_modules/@qlik/runtime-module-loader/dist/index.js
2
2
  window.__qlikMainPrivateResolvers = window.__qlikMainPrivateResolvers || {};
3
3
  window.__qlikMainPrivateResolvers.mainUrlPromise = window.__qlikMainPrivateResolvers.mainUrlPromise || new Promise((resolve) => {
4
4
  window.__qlikMainPrivateResolvers.resolveMainJsUrl = (value) => resolve(value);
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getAuthRuntimeModule
3
- } from "./7C6WMELW.js";
3
+ } from "./Q4YZPSU3.js";
4
4
 
5
5
  // src/public/auth.ts
6
6
  function registerAuthModule(name, authModule) {
package/collections.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/data-files.ts
package/docs/features.md CHANGED
@@ -5,7 +5,6 @@
5
5
  - [Typed API calls](#typed-api-calls)
6
6
  - [Caching](#caching)
7
7
  - [Paging](#paging)
8
- - [Request/response interceptors](#interceptors)
9
8
 
10
9
  ## Typed API Calls
11
10
 
@@ -79,51 +78,4 @@ try {
79
78
 
80
79
  Many "list" APIs return links to the next and previous page in the list GET response body. If the API follows the conventions and declares this in the OpenAPI spec next and prev functions will be available in the API response type. Note that the next and prev functions are only defined when there actually is a next and prev page.
81
80
 
82
- ## Interceptors
83
-
84
- Consumer of `@qlik/api` can inject an interceptor in every api method. There are two interception points, before request and after response. The request interceptor can also be an async function.
85
-
86
- **NOTE:** to add headers to the request, use a regular object instead of `new Headers()`. It causes a loss of all the original headers. See the example below.
87
-
88
- ```ts
89
- import { getItems, interceptors } from "@qlik/api/items";
90
-
91
- // intercept requests
92
- interceptors.getItems.request.use((url, request) => {
93
- const headers = {
94
- ...request.headers,
95
- "x-qlik-custom-header": "value",
96
- };
97
-
98
- // modify fetch request
99
- request.headers = headers;
100
-
101
- return request;
102
- });
103
-
104
- // intercept responses
105
- interceptors.getItems.response.use((response) => {
106
- response.data.YOU_ARE_INTERCEPTED = true;
107
- return response;
108
- });
109
-
110
- try {
111
- const { status, data: items } = await getItems();
112
-
113
- if (items.YOU_ARE_INTERCEPTED) {
114
- // ok!
115
- }
116
- }
117
- ```
118
-
119
- when adding an interceptor you get an interceptor ID that can be used to eject the interceptor later.
120
-
121
- ```ts
122
- const interceptorId = interceptors.getItems.response.use(...);
123
- // now interceptor will execute on response
124
-
125
- interceptors.getItems.response.eject(interceptorId);
126
- // now interceptor will NOT execute on response
127
- ```
128
-
129
81
  ◁ [Back to overview](../README.md)
package/extensions.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/extensions.ts
package/glossaries.d.ts CHANGED
@@ -27,7 +27,7 @@ type AtlanEntity = {
27
27
  type AtlanEntityAttributes = {
28
28
  abbreviation?: string;
29
29
  displayText?: string;
30
- examples?: string[];
30
+ examples?: unknown;
31
31
  guid?: string;
32
32
  name?: string;
33
33
  parentCategory?: string;
@@ -373,7 +373,7 @@ type TermCreateLinksTo = {
373
373
  resourceType: "app" | "dataset";
374
374
  subResourceId?: string;
375
375
  subResourceName?: string;
376
- subResourceType?: "master_dimension" | "master_measure";
376
+ subResourceType?: "master_dimension" | "master_measure" | "field";
377
377
  type?: "definition" | "related";
378
378
  };
379
379
  /**
@@ -394,7 +394,7 @@ type TermLinksTo = {
394
394
  /** Different formats based on subresource type. Could be e.g. OID or UUID. */
395
395
  subResourceId?: string;
396
396
  subResourceName?: string;
397
- subResourceType?: "master_dimension" | "master_measure";
397
+ subResourceType?: "master_dimension" | "master_measure" | "field";
398
398
  /** Describes reason for item status during batch operation. E.g. why an error occurs during creation. */
399
399
  title?: string;
400
400
  type?: "definition" | "related";
package/glossaries.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/glossaries.ts
package/groups.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/IEB2MTJ3.js";
3
+ } from "./chunks/AN7SLSGK.js";
4
4
  import {
5
5
  auth_default
6
- } from "./chunks/JR4AYAEK.js";
6
+ } from "./chunks/UJ4EFAWC.js";
7
7
  import {
8
8
  clearApiCache,
9
9
  invokeFetch
10
- } from "./chunks/QXDBGF7B.js";
11
- import "./chunks/7C6WMELW.js";
10
+ } from "./chunks/7OFKSIFV.js";
11
+ import "./chunks/Q4YZPSU3.js";
12
12
  import "./chunks/2ZQ3ZX7F.js";
13
13
 
14
14
  // src/public/public-runtime-api-generator/public-runtime-api-generator.ts
package/items.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/licenses.ts
package/package.json CHANGED
@@ -55,5 +55,5 @@
55
55
  "./qix": "./qix.js",
56
56
  "./auth": "./auth.js"
57
57
  },
58
- "version": "1.7.0"
58
+ "version": "1.9.0"
59
59
  }
package/qix.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import './global.types-Xt6XzwlN.js';
2
2
  import { H as HostConfig } from './auth-types-Bqw3vbLs.js';
3
3
 
4
- declare const QIX_SCHEMA_VERSION = "12.2087.0";
4
+ declare const QIX_SCHEMA_VERSION = "12.2089.0";
5
5
  type AlfaNumString = {
6
6
  /**
7
7
  * Calculated value.
@@ -3351,7 +3351,7 @@ type NxCurrentSelectionItem = {
3351
3351
  */
3352
3352
  qSelectionThreshold?: number;
3353
3353
  /**
3354
- * Label that, if defined, is displayed in current selections instead of the actual expression.
3354
+ * Label that, if defined, is displayed in current selections instead of the actual expression. ReadableName is only used with field-on-the-fly.
3355
3355
  */
3356
3356
  qReadableName?: string;
3357
3357
  /**
@@ -3359,6 +3359,12 @@ type NxCurrentSelectionItem = {
3359
3359
  * Is set to true if the current selection is hidden.
3360
3360
  */
3361
3361
  qIsHidden?: boolean;
3362
+ /**
3363
+ * Information about objects in the app that refer to the data model field of an NxCurrentSelectionItem, including labels.
3364
+ *
3365
+ * Stability: *experimental*
3366
+ */
3367
+ qFieldReferenceInfo?: SelectionItemFieldReferenceInfo[];
3362
3368
  };
3363
3369
  type NxDataAreaPage = {
3364
3370
  /**
@@ -6268,6 +6274,26 @@ type SelectInfo = {
6268
6274
  */
6269
6275
  qSelectFieldSearch?: boolean;
6270
6276
  };
6277
+ /**
6278
+ * Structure that holds information connecting an app object to a data model field represented by an NxCurrentSelectionItem in the SelectionObject.
6279
+ * The SelectionItemFieldReferenceInfo structure points to an app object, such as a GenericDimension, and also holds a label.
6280
+ *
6281
+ * Stability: *experimental*
6282
+ */
6283
+ type SelectionItemFieldReferenceInfo = {
6284
+ /**
6285
+ * Identifier of the associated object.
6286
+ */
6287
+ qId?: string;
6288
+ /**
6289
+ * Type of object.
6290
+ */
6291
+ qType?: string;
6292
+ /**
6293
+ * Text label.
6294
+ */
6295
+ qLabel?: string;
6296
+ };
6271
6297
  /**
6272
6298
  * Indicates which selections are currently applied. It gives the current selections. Is the layout for _SelectionObjectDef_.
6273
6299
  */
@@ -11705,4 +11731,4 @@ declare const qix: {
11705
11731
  openAppSession: typeof openAppSession;
11706
11732
  };
11707
11733
 
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, qix as default, openAppSession };
11734
+ 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 SelectionItemFieldReferenceInfo, 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, qix as default, openAppSession };
package/qix.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  openAppSession,
3
3
  qix_default
4
- } from "./chunks/IEB2MTJ3.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/AN7SLSGK.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/reports.ts
package/roles.d.ts CHANGED
@@ -69,7 +69,7 @@ type Role = {
69
69
  /** Descriptive text for the role. */
70
70
  description: string;
71
71
  /** @deprecated
72
- * DEPRECATED. does not work. */
72
+ * DEPRECATED. Use userEntitlementType instead for impact of roles on user entitlements with a capacity-based subscription. */
73
73
  readonly fullUser?: boolean;
74
74
  /** The unique identifier for the role. */
75
75
  readonly id: string;
@@ -91,10 +91,10 @@ type Role = {
91
91
  /** The tenant unique identifier associated with the given Role. */
92
92
  tenantId: string;
93
93
  /** The type of role. */
94
- type: "default";
95
- /** Id of user that last updated`` role */
94
+ type: "default" | "custom";
95
+ /** Id of user that last updated this role */
96
96
  readonly updatedBy?: string;
97
- /** Indicate whether this role will trigger promotion of a user from a basic to a full user on tenants with a capacity-based subscription. Does not apply to tenants with a user-based subscription. */
97
+ /** Indicate whether this role will trigger promotion of a user from a basic to a full user on tenants with a capacity-based subscription. Does not apply to tenants with a user-based subscription. Returns fullUser if it will trigger promotion. */
98
98
  readonly userEntitlementType?: string;
99
99
  };
100
100
  /**
package/roles.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.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/QXDBGF7B.js";
5
- import "./chunks/7C6WMELW.js";
4
+ } from "./chunks/7OFKSIFV.js";
5
+ import "./chunks/Q4YZPSU3.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/webhooks.ts