@qlik/api 1.20.0 → 1.22.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 (80) hide show
  1. package/api-keys.d.ts +1 -1
  2. package/api-keys.js +2 -2
  3. package/apps.d.ts +1 -1
  4. package/apps.js +2 -2
  5. package/audits.d.ts +1 -1
  6. package/audits.js +2 -2
  7. package/auth.js +2 -2
  8. package/automations.d.ts +1 -1
  9. package/automations.js +2 -2
  10. package/brands.d.ts +1 -1
  11. package/brands.js +2 -2
  12. package/chunks/7RHSSS4W.js +0 -0
  13. package/chunks/{4VH5O5UL.js → EUWNVVK5.js} +12 -4
  14. package/chunks/{DT5F6REC.js → GZRY5VHW.js} +2 -1
  15. package/chunks/{4XKAFB25.js → KBR7JBWC.js} +12 -6
  16. package/chunks/{OQWY73NC.js → OEVNZ5IQ.js} +102 -2
  17. package/chunks/{Z37XXMYQ.js → PR52AAWU.js} +6 -3
  18. package/chunks/{TEGSUED7.js → SEBN4KFZ.js} +2 -1
  19. package/chunks/{IMLCMV4X.js → SNQHDUYY.js} +3 -3
  20. package/chunks/{MP5FOM4F.js → TGDZVKG2.js} +1 -1
  21. package/chunks/{T6AQ34ZJ.js → TUPLQG25.js} +2 -2
  22. package/chunks/{MX5NVZPW.js → VHPC6L7L.js} +1 -1
  23. package/collections.d.ts +1 -1
  24. package/collections.js +2 -2
  25. package/csp-origins.d.ts +1 -1
  26. package/csp-origins.js +2 -2
  27. package/data-assets.d.ts +1 -1
  28. package/data-assets.js +2 -2
  29. package/data-connections.d.ts +1 -1
  30. package/data-connections.js +2 -2
  31. package/data-credentials.d.ts +1 -1
  32. package/data-credentials.js +2 -2
  33. package/data-files.d.ts +1 -1
  34. package/data-files.js +2 -2
  35. package/extensions.d.ts +1 -1
  36. package/extensions.js +2 -2
  37. package/{global.types--37uwGji.d.ts → global.types-qsBNouXJ.d.ts} +18 -0
  38. package/glossaries.d.ts +1 -1
  39. package/glossaries.js +2 -2
  40. package/groups.d.ts +1 -1
  41. package/groups.js +2 -2
  42. package/identity-providers.d.ts +1 -1
  43. package/identity-providers.js +2 -2
  44. package/index.d.ts +1 -1
  45. package/index.js +5 -5
  46. package/items.d.ts +1 -1
  47. package/items.js +2 -2
  48. package/licenses.d.ts +1 -1
  49. package/licenses.js +2 -2
  50. package/package.json +1 -1
  51. package/qix.d.ts +4 -2
  52. package/qix.js +2 -2
  53. package/quotas.d.ts +1 -1
  54. package/quotas.js +2 -2
  55. package/reload-tasks.d.ts +1 -1
  56. package/reload-tasks.js +2 -2
  57. package/reloads.d.ts +4 -4
  58. package/reloads.js +2 -2
  59. package/reports.d.ts +2 -2
  60. package/reports.js +2 -2
  61. package/roles.d.ts +1 -1
  62. package/roles.js +2 -2
  63. package/spaces.d.ts +1 -1
  64. package/spaces.js +2 -2
  65. package/temp-contents.d.ts +1 -1
  66. package/temp-contents.js +2 -2
  67. package/tenants.d.ts +1 -1
  68. package/tenants.js +2 -2
  69. package/themes.d.ts +1 -1
  70. package/themes.js +2 -2
  71. package/transports.d.ts +1 -1
  72. package/transports.js +2 -2
  73. package/users.d.ts +1 -1
  74. package/users.js +2 -2
  75. package/web-integrations.d.ts +1 -1
  76. package/web-integrations.js +2 -2
  77. package/web-notifications.d.ts +1 -1
  78. package/web-notifications.js +2 -2
  79. package/webhooks.d.ts +22 -22
  80. package/webhooks.js +2 -2
@@ -68,6 +68,18 @@ type WindowsCookieAuthConfig = {
68
68
  /** If set to false the `credentials` property will be set to same-origin */
69
69
  crossSiteCookies?: boolean;
70
70
  };
71
+ type PerformInteractiveLoginFn = (props: {
72
+ /**
73
+ * Returns the url to the login page. The redirectUri parameter property is used to tell the login page where to redirect the browser after the login has succeeded.
74
+ * Note that the redirectUri needs to be registered in the oauth configuration.
75
+ */
76
+ getLoginUrl: (props: {
77
+ redirectUri: string;
78
+ }) => Promise<string>;
79
+ }) => Promise<{
80
+ code: string;
81
+ state: string;
82
+ } | string>;
71
83
  /** OAuth2 Auth Configuration for a HostConfig */
72
84
  type Oauth2AuthConfig = {
73
85
  /** client id of oauth client created by tenant admin */
@@ -101,6 +113,12 @@ type Oauth2AuthConfig = {
101
113
  * Typically used together with the `noCache` since caching is done on the browser side.
102
114
  */
103
115
  userId?: string;
116
+ /**
117
+ * Can be used to customize the login flow, for instance if the login page should be shown in another browser tab/window.
118
+ * The function is asynchronous and when the loging flow is finished it should return the code and state provided in the
119
+ * query of the oauth redirect callback. The code and state can either be provided as an object or as the entire callback url.
120
+ */
121
+ performInteractiveLogin?: PerformInteractiveLoginFn;
104
122
  };
105
123
  /** Anonymous Auth Configuration for a HostConfig - used when embedding UI's linked to an anonymous tenant/app */
106
124
  type AnonymousAuthConfig = {
package/glossaries.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  /**
package/glossaries.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/glossaries.ts
package/groups.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  /**
package/groups.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/groups.ts
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  type BaseIDP = {
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/identity-providers.ts
package/index.d.ts CHANGED
@@ -32,7 +32,7 @@ import { WebIntegrationsAPI } from './web-integrations.js';
32
32
  import { WebNotificationsAPI } from './web-notifications.js';
33
33
  import { WebhooksAPI } from './webhooks.js';
34
34
  import { H as HostConfig } from './auth-types-PkN9CAF_.js';
35
- import './global.types--37uwGji.js';
35
+ import './global.types-qsBNouXJ.js';
36
36
 
37
37
  declare const apiKeys: ApiKeysAPI;
38
38
  declare const apps: AppsAPI;
package/index.js CHANGED
@@ -1,15 +1,15 @@
1
1
  import {
2
2
  qix_default
3
- } from "./chunks/MX5NVZPW.js";
3
+ } from "./chunks/VHPC6L7L.js";
4
4
  import {
5
5
  auth_default
6
- } from "./chunks/MP5FOM4F.js";
7
- import "./chunks/OQWY73NC.js";
6
+ } from "./chunks/TGDZVKG2.js";
7
+ import "./chunks/7RHSSS4W.js";
8
8
  import {
9
9
  clearApiCache,
10
10
  invokeFetch
11
- } from "./chunks/T6AQ34ZJ.js";
12
- import "./chunks/IMLCMV4X.js";
11
+ } from "./chunks/TUPLQG25.js";
12
+ import "./chunks/SNQHDUYY.js";
13
13
  import "./chunks/2ZQ3ZX7F.js";
14
14
 
15
15
  // src/runtime-api-generator/runtime-api-generator-common.ts
package/items.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  type CollectionTypes = "private" | "public" | "publicgoverned";
package/items.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/items.ts
package/licenses.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  type AssignmentsActionsAddRequest = {
package/licenses.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/licenses.ts
package/package.json CHANGED
@@ -56,5 +56,5 @@
56
56
  "./qix": "./qix.js",
57
57
  "./auth": "./auth.js"
58
58
  },
59
- "version": "1.20.0"
59
+ "version": "1.22.0"
60
60
  }
package/qix.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { H as HostConfig } from './auth-types-PkN9CAF_.js';
2
- import './global.types--37uwGji.js';
2
+ import './global.types-qsBNouXJ.js';
3
3
 
4
- declare const QIX_SCHEMA_VERSION = "12.2197.0";
4
+ declare const QIX_SCHEMA_VERSION = "12.2202.0";
5
5
  type AlfaNumString = {
6
6
  /**
7
7
  * Calculated value.
@@ -11679,6 +11679,8 @@ type OpenAppSessionProps = {
11679
11679
  withoutData?: boolean;
11680
11680
  /** Use a separate reload engine to perform a reload */
11681
11681
  useReloadEngine?: boolean;
11682
+ /** Time-to-live in seconds. */
11683
+ ttlSeconds?: number;
11682
11684
  };
11683
11685
  type DocAction = (doc: Doc) => Promise<unknown>;
11684
11686
  type CloseProps = {
package/qix.js CHANGED
@@ -2,8 +2,8 @@ import {
2
2
  openAppSession,
3
3
  qix_default,
4
4
  withHostConfig
5
- } from "./chunks/MX5NVZPW.js";
6
- import "./chunks/IMLCMV4X.js";
5
+ } from "./chunks/VHPC6L7L.js";
6
+ import "./chunks/SNQHDUYY.js";
7
7
  export {
8
8
  qix_default as default,
9
9
  openAppSession,
package/quotas.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  /**
package/quotas.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/quotas.ts
package/reload-tasks.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  type Error = {
package/reload-tasks.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/reload-tasks.ts
package/reloads.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  type Error = {
@@ -43,7 +43,7 @@ type Reload = {
43
43
  status: Status;
44
44
  /** The ID of the tenant who owns the reload. */
45
45
  tenantId: string;
46
- /** What initiated the reload: hub = one-time reload manually triggered in hub, chronos = time based scheduled reload triggered by chronos, external = reload triggered via external API request, automations = reload triggered in automation, data-refresh = reload triggered by refresh of data. */
46
+ /** What initiated the reload: hub = one-time reload manually triggered in hub, chronos = time based scheduled reload triggered by chronos, external = reload triggered via external API request, automations = reload triggered in automation, data-refresh = reload triggered by refresh of data, choreographer = reload triggered by choreographer. */
47
47
  type: Type;
48
48
  /** The ID of the user who created the reload. */
49
49
  userId: string;
@@ -70,9 +70,9 @@ type ReloadsLinks = ReloadLinks & {
70
70
  */
71
71
  type Status = "QUEUED" | "RELOADING" | "CANCELING" | "SUCCEEDED" | "FAILED" | "CANCELED" | "EXCEEDED_LIMIT";
72
72
  /**
73
- * What initiated the reload: hub = one-time reload manually triggered in hub, chronos = time based scheduled reload triggered by chronos, external = reload triggered via external API request, automations = reload triggered in automation, data-refresh = reload triggered by refresh of data.
73
+ * What initiated the reload: hub = one-time reload manually triggered in hub, chronos = time based scheduled reload triggered by chronos, external = reload triggered via external API request, automations = reload triggered in automation, data-refresh = reload triggered by refresh of data, choreographer = reload triggered by choreographer.
74
74
  */
75
- type Type = "hub" | "external" | "chronos" | "automations" | "data-refresh";
75
+ type Type = "hub" | "external" | "chronos" | "automations" | "data-refresh" | "choreographer";
76
76
  /**
77
77
  * Finds and returns the reloads that the user has access to.
78
78
  *
package/reloads.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/reloads.ts
package/reports.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  /**
@@ -146,7 +146,7 @@ type ImageOutput = {
146
146
  * Define the request metadata. It includes priority, deadline and future settings on execution policy of the request.
147
147
  */
148
148
  type Meta = {
149
- /** The maximum interval, starting from the time the API request is received, within which a report must be produced, past this interval the report generation fails. The default value is 10 minutes, the maximum allowed value is 2 hours. */
149
+ /** The maximum interval, starting from the time the API request is received, within which a report must be produced, past this interval the report generation fails. The default value is 10 minutes, the maximum allowed value is 4 hours. */
150
150
  exportDeadline?: string;
151
151
  /** Time to live of the final result artifacts in ISO8601 duration format. After that duration the request and underlying output files will not be guaranteed to be available. Default is 1 hour. */
152
152
  outputTtl?: string;
package/reports.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/reports.ts
package/roles.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  /**
package/roles.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/roles.ts
package/spaces.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  /**
package/spaces.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/spaces.ts
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  /**
package/temp-contents.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/temp-contents.ts
package/tenants.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  /**
package/tenants.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/tenants.ts
package/themes.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  /**
package/themes.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/themes.ts
package/transports.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  type DeleteConfigNotFoundError = {
package/transports.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/transports.ts
package/users.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  /**
package/users.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/users.ts
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  /**
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/web-integrations.ts
@@ -1,4 +1,4 @@
1
- import { A as ApiCallOptions } from './global.types--37uwGji.js';
1
+ import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  /**
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/T6AQ34ZJ.js";
5
- import "./chunks/IMLCMV4X.js";
4
+ } from "./chunks/TUPLQG25.js";
5
+ import "./chunks/SNQHDUYY.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/web-notifications.ts