@qlik/api 1.8.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.8.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/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.8.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.2088.0";
4
+ declare const QIX_SCHEMA_VERSION = "12.2089.0";
5
5
  type AlfaNumString = {
6
6
  /**
7
7
  * Calculated value.
package/qix.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  openAppSession,
3
3
  qix_default
4
- } from "./chunks/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