@qlik/api 1.28.0 → 1.30.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 (73) hide show
  1. package/api-keys.d.ts +20 -0
  2. package/api-keys.js +2 -2
  3. package/apps.d.ts +123 -4
  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 +49 -37
  9. package/automations.js +2 -2
  10. package/brands.js +2 -2
  11. package/chunks/{5MRIMVKS.js → F5UDCCRD.js} +17 -20
  12. package/chunks/{QOOCP2TS.js → FKCZFVJL.js} +1 -1
  13. package/chunks/{NBW6PHZU.js → G6QUM5WQ.js} +27 -6
  14. package/chunks/{5XNSGPGZ.js → IQBP2PKS.js} +1 -1
  15. package/chunks/{2BRBIRM2.js → JIX6RMFP.js} +1 -1
  16. package/chunks/{4D5NADHK.js → OTTC4QSX.js} +1 -1
  17. package/chunks/{WQYEWU54.js → PTDXR7AY.js} +2 -2
  18. package/chunks/{KYCIMQ4L.js → QK4TMJ64.js} +1 -1
  19. package/chunks/{MGXEGSJC.js → QWQLGDMI.js} +2 -2
  20. package/chunks/{2B7YWDQC.js → TXC5XORK.js} +3 -3
  21. package/collections.d.ts +1 -1
  22. package/collections.js +2 -2
  23. package/csp-origins.js +2 -2
  24. package/data-assets.d.ts +1 -1
  25. package/data-assets.js +2 -2
  26. package/data-connections.d.ts +83 -1
  27. package/data-connections.js +2 -2
  28. package/data-credentials.d.ts +28 -0
  29. package/data-credentials.js +2 -2
  30. package/data-files.d.ts +90 -0
  31. package/data-files.js +2 -2
  32. package/extensions.js +2 -2
  33. package/glossaries.d.ts +34 -14
  34. package/glossaries.js +2 -2
  35. package/groups.d.ts +70 -0
  36. package/groups.js +2 -2
  37. package/identity-providers.js +2 -2
  38. package/index.d.ts +6 -2
  39. package/index.js +33 -4
  40. package/items.d.ts +1 -1
  41. package/items.js +2 -2
  42. package/licenses.d.ts +191 -0
  43. package/licenses.js +2 -2
  44. package/oauth-clients.d.ts +516 -0
  45. package/oauth-clients.js +112 -0
  46. package/package.json +5 -4
  47. package/qix.d.ts +19 -3
  48. package/qix.js +2 -2
  49. package/quotas.js +2 -2
  50. package/reload-tasks.d.ts +20 -0
  51. package/reload-tasks.js +2 -2
  52. package/reloads.d.ts +41 -10
  53. package/reloads.js +2 -2
  54. package/reports.d.ts +159 -17
  55. package/reports.js +2 -2
  56. package/roles.d.ts +42 -2
  57. package/roles.js +2 -2
  58. package/spaces.d.ts +225 -38
  59. package/spaces.js +47 -2
  60. package/temp-contents.js +2 -2
  61. package/tenants.d.ts +47 -1
  62. package/tenants.js +2 -2
  63. package/themes.js +2 -2
  64. package/transports.d.ts +9 -0
  65. package/transports.js +2 -2
  66. package/users.d.ts +88 -0
  67. package/users.js +2 -2
  68. package/web-integrations.d.ts +20 -0
  69. package/web-integrations.js +2 -2
  70. package/web-notifications.d.ts +19 -0
  71. package/web-notifications.js +2 -2
  72. package/webhooks.d.ts +3 -3
  73. package/webhooks.js +2 -2
package/extensions.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/WQYEWU54.js";
5
- import "./chunks/2B7YWDQC.js";
4
+ } from "./chunks/PTDXR7AY.js";
5
+ import "./chunks/TXC5XORK.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/extensions.ts
package/glossaries.d.ts CHANGED
@@ -2,7 +2,7 @@ import { A as ApiCallOptions } from './invoke-fetch-types-BXn-uSF5.js';
2
2
  import './auth-types-PkN9CAF_.js';
3
3
 
4
4
  /**
5
- * A JSON Patch document as defined in http://tools.ietf.org/html/rfc6902.
5
+ * A JSON Patch document as defined in https://tools.ietf.org/html/rfc6902.
6
6
  */
7
7
  type JSONPatch = {
8
8
  /** The operation to be performed. */
@@ -14,6 +14,19 @@ type JSONPatch = {
14
14
  };
15
15
  /**
16
16
  * An array of JSON Patch documents
17
+ * @example
18
+ * [
19
+ * {
20
+ * op: "replace",
21
+ * path: "/name",
22
+ * value: "new name"
23
+ * },
24
+ * {
25
+ * op: "replace",
26
+ * path: "/description",
27
+ * value: "new description"
28
+ * }
29
+ * ]
17
30
  */
18
31
  type JSONPatchArray = JSONPatch[];
19
32
  type AtlanEntity = {
@@ -102,6 +115,7 @@ type AtlasTerm = {
102
115
  };
103
116
  type CategoriesResult = {
104
117
  data: Category[];
118
+ /** URLs to a resource request */
105
119
  links?: PageLinks;
106
120
  meta?: ResultMeta;
107
121
  };
@@ -115,7 +129,7 @@ type Category = {
115
129
  id: string;
116
130
  name: string;
117
131
  parentId?: string;
118
- /** This list contains the uids of the stewards of the category. */
132
+ /** This list contains the UIDs of the stewards of the category. */
119
133
  stewards?: string[];
120
134
  readonly updatedAt: string;
121
135
  /** The uid of the user who last updated the category */
@@ -126,7 +140,7 @@ type CreateCategory = {
126
140
  /** The name of the category. May not be identical to another category belonging to the same parent. */
127
141
  name?: string;
128
142
  parentId?: string;
129
- /** This list contains the uids of the stewards of the category. */
143
+ /** This list contains the UIDs of the stewards of the category. */
130
144
  stewards?: string[];
131
145
  };
132
146
  type CreateGlossary = {
@@ -151,7 +165,7 @@ type CreateTerm = {
151
165
  name: string;
152
166
  relatedInformation?: string;
153
167
  relatesTo?: TermRelatesTo[];
154
- /** This list contain the uids for the term's stewards */
168
+ /** This list contain the UIDs for the term's stewards */
155
169
  stewards?: string[];
156
170
  tags?: string[];
157
171
  };
@@ -253,6 +267,7 @@ type ExportTerm = {
253
267
  };
254
268
  type GlossariesResult = {
255
269
  data?: Glossary[];
270
+ /** URLs to a resource request */
256
271
  links?: PageLinks;
257
272
  meta?: ResultMeta;
258
273
  };
@@ -271,7 +286,7 @@ type Glossary = {
271
286
  overview: string;
272
287
  /** The unique identifier of the glossary owner */
273
288
  ownerId: string;
274
- /** The unique identifier of the space containg the glossary */
289
+ /** The unique identifier of the space containing the glossary */
275
290
  spaceId: string;
276
291
  /** List of tags associated with the glossary. */
277
292
  tags: string[];
@@ -314,12 +329,16 @@ type ImportTerm = {
314
329
  };
315
330
  type LinksResult = {
316
331
  data?: TermLinksTo[];
332
+ /** URLs to a resource request */
317
333
  links?: PageLinks;
318
334
  meta?: ResultMeta;
319
335
  };
320
336
  type PageLink = {
321
337
  href?: string;
322
338
  };
339
+ /**
340
+ * URLs to a resource request
341
+ */
323
342
  type PageLinks = {
324
343
  next?: PageLink;
325
344
  prev?: PageLink;
@@ -344,7 +363,7 @@ type StewardDetail = {
344
363
  userId?: string;
345
364
  };
346
365
  type Term = {
347
- abbreviation?: string;
366
+ abbreviation: string;
348
367
  categories?: string[];
349
368
  readonly createdAt: string;
350
369
  readonly createdBy: string;
@@ -358,7 +377,7 @@ type Term = {
358
377
  revision: number;
359
378
  /** Terms status is used determine the status of a term */
360
379
  status: TermStatus;
361
- /** This list contains the uids of the terms data stewards. */
380
+ /** This list contains the UIDs of the terms data stewards. */
362
381
  stewards: string[];
363
382
  tags: string[];
364
383
  readonly updatedAt: string;
@@ -423,6 +442,7 @@ type TermTemplate = {
423
442
  };
424
443
  type TermsResult = {
425
444
  data: Term[];
445
+ /** URLs to a resource request */
426
446
  links?: PageLinks;
427
447
  meta?: ResultMeta;
428
448
  };
@@ -545,7 +565,7 @@ type GetGlossaryHttpError = {
545
565
  status: 400 | 403 | 404;
546
566
  };
547
567
  /**
548
- * Updates glossary properties with json-patch formated data
568
+ * Updates glossary properties with json-patch formatted data
549
569
  *
550
570
  * @param id The glossary id.
551
571
  * @param body an object with the body content
@@ -683,7 +703,7 @@ type GetGlossaryCategoryHttpError = {
683
703
  status: 400 | 403 | 404;
684
704
  };
685
705
  /**
686
- * Updates category properties with json-patch formated data
706
+ * Updates category properties with json-patch formatted data
687
707
  *
688
708
  * @param id The glossary id.
689
709
  * @param categoryId The category id.
@@ -819,7 +839,7 @@ type GetGlossaryTermHttpError = {
819
839
  status: 400 | 403 | 404;
820
840
  };
821
841
  /**
822
- * Updates term properties with json-patch formated data
842
+ * Updates term properties with json-patch formatted data
823
843
  *
824
844
  * @param id The glossary id.
825
845
  * @param termId The term id.
@@ -866,7 +886,7 @@ type UpdateGlossaryTermHttpError = {
866
886
  */
867
887
  declare const changeGlossaryTermStatus: (id: string, termId: string, query: {
868
888
  /** The status to update to. */
869
- status?: "draft" | "verified" | "deprecated";
889
+ status: "draft" | "verified" | "deprecated";
870
890
  }, options?: ApiCallOptions) => Promise<ChangeGlossaryTermStatusHttpResponse>;
871
891
  type ChangeGlossaryTermStatusHttpResponse = {
872
892
  data: Term;
@@ -1006,7 +1026,7 @@ interface GlossariesAPI {
1006
1026
  */
1007
1027
  getGlossary: typeof getGlossary;
1008
1028
  /**
1009
- * Updates glossary properties with json-patch formated data
1029
+ * Updates glossary properties with json-patch formatted data
1010
1030
  *
1011
1031
  * @param id The glossary id.
1012
1032
  * @param body an object with the body content
@@ -1061,7 +1081,7 @@ interface GlossariesAPI {
1061
1081
  */
1062
1082
  getGlossaryCategory: typeof getGlossaryCategory;
1063
1083
  /**
1064
- * Updates category properties with json-patch formated data
1084
+ * Updates category properties with json-patch formatted data
1065
1085
  *
1066
1086
  * @param id The glossary id.
1067
1087
  * @param categoryId The category id.
@@ -1111,7 +1131,7 @@ interface GlossariesAPI {
1111
1131
  */
1112
1132
  getGlossaryTerm: typeof getGlossaryTerm;
1113
1133
  /**
1114
- * Updates term properties with json-patch formated data
1134
+ * Updates term properties with json-patch formatted data
1115
1135
  *
1116
1136
  * @param id The glossary id.
1117
1137
  * @param termId The term id.
package/glossaries.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/WQYEWU54.js";
5
- import "./chunks/2B7YWDQC.js";
4
+ } from "./chunks/PTDXR7AY.js";
5
+ import "./chunks/TXC5XORK.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/glossaries.ts
package/groups.d.ts CHANGED
@@ -16,6 +16,12 @@ type AssignedRoles = {
16
16
  }[];
17
17
  /**
18
18
  * An array of role reference identifiers.
19
+ * @example
20
+ * [
21
+ * {
22
+ * id: "507f191e810c19729de860ea"
23
+ * }
24
+ * ]
19
25
  */
20
26
  type AssignedRolesRefIDs = {
21
27
  /** The unique role identitier */
@@ -23,6 +29,12 @@ type AssignedRolesRefIDs = {
23
29
  }[];
24
30
  /**
25
31
  * An array of role reference names.
32
+ * @example
33
+ * [
34
+ * {
35
+ * name: "TenantAdmin"
36
+ * }
37
+ * ]
26
38
  */
27
39
  type AssignedRolesRefNames = {
28
40
  /** The name of the role */
@@ -52,6 +64,17 @@ type Error = {
52
64
  };
53
65
  /**
54
66
  * The error response object describing the error from the handling of an HTTP request.
67
+ * @example
68
+ * {
69
+ * errors: [
70
+ * {
71
+ * code: "GROUPS-7",
72
+ * status: 404,
73
+ * title: "Not found"
74
+ * }
75
+ * ],
76
+ * traceId: "00000000000000000137b213cf12a77b"
77
+ * }
55
78
  */
56
79
  type Errors = {
57
80
  /** An array of errors related to the operation. */
@@ -113,8 +136,34 @@ type GroupPatch = {
113
136
  };
114
137
  /**
115
138
  * An array of JSON Patches for a group.
139
+ * @example
140
+ * [
141
+ * {
142
+ * op: "replace",
143
+ * value: [
144
+ * {
145
+ * name: "TenantAdmin"
146
+ * },
147
+ * {
148
+ * name: "AnalyticsAdmin"
149
+ * }
150
+ * ]
151
+ * }
152
+ * ]
116
153
  */
117
154
  type GroupPatchSchema = GroupPatch[];
155
+ /**
156
+ * @example
157
+ * {
158
+ * assignedRoles: [
159
+ * {
160
+ * name: "Developer"
161
+ * }
162
+ * ],
163
+ * name: "Development",
164
+ * status: "active"
165
+ * }
166
+ */
118
167
  type GroupPostSchema = {
119
168
  /** The roles to assign to the group (limit of 100 roles per group). */
120
169
  assignedRoles?: AssignedRolesRefIDs | AssignedRolesRefNames;
@@ -197,6 +246,27 @@ type SettingsPatch = {
197
246
  };
198
247
  /**
199
248
  * An array of JSON Patches for the groups settings.
249
+ * @example
250
+ * [
251
+ * {
252
+ * op: "replace",
253
+ * path: "/syncIdpGroups",
254
+ * value: true
255
+ * },
256
+ * {
257
+ * op: "replace",
258
+ * path: "/autoCreateGroups",
259
+ * value: true
260
+ * },
261
+ * {
262
+ * op: "replace",
263
+ * value: [
264
+ * {
265
+ * name: "Steward"
266
+ * }
267
+ * ]
268
+ * }
269
+ * ]
200
270
  */
201
271
  type SettingsPatchSchema = SettingsPatch[];
202
272
  /**
package/groups.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/WQYEWU54.js";
5
- import "./chunks/2B7YWDQC.js";
4
+ } from "./chunks/PTDXR7AY.js";
5
+ import "./chunks/TXC5XORK.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/WQYEWU54.js";
5
- import "./chunks/2B7YWDQC.js";
4
+ } from "./chunks/PTDXR7AY.js";
5
+ import "./chunks/TXC5XORK.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/identity-providers.ts
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { InterceptorsAPI, createInterceptors } from './interceptors.js';
2
- import { registerAuthModule, setDefaultHostConfig, getAccessToken, AuthAPI } from './auth.js';
2
+ import { AuthAPI, registerAuthModule, setDefaultHostConfig, getAccessToken } from './auth.js';
3
3
  import { QixAPI } from './qix.js';
4
4
  import { ApiKeysAPI } from './api-keys.js';
5
5
  import { AppsAPI } from './apps.js';
@@ -18,6 +18,7 @@ import { GroupsAPI } from './groups.js';
18
18
  import { IdentityProvidersAPI } from './identity-providers.js';
19
19
  import { ItemsAPI } from './items.js';
20
20
  import { LicensesAPI } from './licenses.js';
21
+ import { OauthClientsAPI } from './oauth-clients.js';
21
22
  import { QuotasAPI } from './quotas.js';
22
23
  import { ReloadTasksAPI } from './reload-tasks.js';
23
24
  import { ReloadsAPI } from './reloads.js';
@@ -60,6 +61,7 @@ declare const interceptors: InterceptorsAPI & {
60
61
  };
61
62
  declare const items: ItemsAPI;
62
63
  declare const licenses: LicensesAPI;
64
+ declare const oauthClients: OauthClientsAPI;
63
65
  declare const qix: QixAPI & {
64
66
  withHostConfig: (hostConfig: HostConfig | undefined) => QixAPI;
65
67
  };
@@ -116,6 +118,8 @@ interface QlikAPI {
116
118
  items: ItemsAPI;
117
119
  /** Functions for the licenses api */
118
120
  licenses: LicensesAPI;
121
+ /** Functions for the oauthClients api */
122
+ oauthClients: OauthClientsAPI;
119
123
  /** Functions for the qix api */
120
124
  qix: QixAPI;
121
125
  /** Functions for the quotas api */
@@ -158,4 +162,4 @@ declare const api: QlikAPI & {
158
162
  }) => QlikAPI;
159
163
  };
160
164
 
161
- export { type CreateQlikApiProps, type QlikAPI, apiKeys, apps, audits, auth, automations, brands, collections, createQlikApi, cspOrigins, dataAssets, dataConnections, dataCredentials, dataFiles, api as default, extensions, glossaries, groups, identityProviders, interceptors, items, licenses, qix, quotas, reloadTasks, reloads, reports, roles, spaces, tempContents, tenants, themes, transports, users, webIntegrations, webNotifications, webhooks };
165
+ export { type CreateQlikApiProps, type QlikAPI, apiKeys, apps, audits, auth, automations, brands, collections, createQlikApi, cspOrigins, dataAssets, dataConnections, dataCredentials, dataFiles, api as default, extensions, glossaries, groups, identityProviders, interceptors, items, licenses, oauthClients, qix, quotas, reloadTasks, reloads, reports, roles, spaces, tempContents, tenants, themes, transports, users, webIntegrations, webNotifications, webhooks };
package/index.js CHANGED
@@ -1,17 +1,17 @@
1
1
  import {
2
2
  qix_default
3
- } from "./chunks/5XNSGPGZ.js";
3
+ } from "./chunks/IQBP2PKS.js";
4
4
  import {
5
5
  auth_default
6
- } from "./chunks/KYCIMQ4L.js";
6
+ } from "./chunks/QK4TMJ64.js";
7
7
  import {
8
8
  interceptors_default
9
9
  } from "./chunks/3RGGGGAR.js";
10
10
  import {
11
11
  clearApiCache,
12
12
  invokeFetch
13
- } from "./chunks/WQYEWU54.js";
14
- import "./chunks/2B7YWDQC.js";
13
+ } from "./chunks/PTDXR7AY.js";
14
+ import "./chunks/TXC5XORK.js";
15
15
  import "./chunks/2ZQ3ZX7F.js";
16
16
 
17
17
  // src/runtime-api-generator/runtime-api-generator-common.ts
@@ -533,6 +533,27 @@ var licensesMiniModule = apiDefToApiPublic("licenses", {
533
533
  }
534
534
  }
535
535
  });
536
+ var oauthClientsMiniModule = apiDefToApiPublic("oauth-clients", {
537
+ api: {
538
+ v1: {
539
+ "oauth-clients": {
540
+ "": ["getOAuthClients:GQ:", "createOAuthClient:PBJ:"],
541
+ "{id}": {
542
+ "": ["deleteOAuthClient:D:", "getOAuthClient:G:", "patchOAuthClient:ABJ:"],
543
+ actions: { publish: ["publishOAuthClient:P:"] },
544
+ "client-secrets": { "": ["createOAuthClientSecret:P:"], "{hint}": ["deleteOAuthClientSecret:D:"] },
545
+ "connection-configs": {
546
+ me: [
547
+ "deleteOAuthClientConnectionConfig:D:",
548
+ "getOAuthClientConnectionConfig:G:",
549
+ "patchOAuthClientConnectionConfig:ABJ:"
550
+ ]
551
+ }
552
+ }
553
+ }
554
+ }
555
+ }
556
+ });
536
557
  var quotasMiniModule = apiDefToApiPublic("quotas", {
537
558
  api: { v1: { quotas: { "": ["getQuotas:GQ:"], "{id}": ["getQuota:GQ:"] } } }
538
559
  });
@@ -577,6 +598,10 @@ var spacesMiniModule = apiDefToApiPublic("spaces", {
577
598
  assignments: {
578
599
  "": ["getSpaceAssignments:GQ:", "createSpaceAssignment:PBJ:"],
579
600
  "{assignmentId}": ["deleteSpaceAssignment:D:", "getSpaceAssignment:G:", "updateSpaceAssignment:UBJ:"]
601
+ },
602
+ shares: {
603
+ "": ["getSpaceShares:GQ:", "createSpaceShare:PBJ:"],
604
+ "{shareId}": ["deleteSpaceShare:D:", "getSpaceShare:G:", "patchShare:ABJ:"]
580
605
  }
581
606
  }
582
607
  }
@@ -705,6 +730,7 @@ var identityProviders = identityProvidersMiniModule(void 0, interceptors_default
705
730
  var interceptors = interceptors_default;
706
731
  var items = itemsMiniModule(void 0, interceptors_default);
707
732
  var licenses = licensesMiniModule(void 0, interceptors_default);
733
+ var oauthClients = oauthClientsMiniModule(void 0, interceptors_default);
708
734
  var qix = qix_default;
709
735
  var quotas = quotasMiniModule(void 0, interceptors_default);
710
736
  var reloadTasks = reloadTasksMiniModule(void 0, interceptors_default);
@@ -742,6 +768,7 @@ var createQlikApi = (props) => {
742
768
  interceptors: scopedInterceptors,
743
769
  items: itemsMiniModule(props?.hostConfig, scopedInterceptors),
744
770
  licenses: licensesMiniModule(props?.hostConfig, scopedInterceptors),
771
+ oauthClients: oauthClientsMiniModule(props?.hostConfig, scopedInterceptors),
745
772
  qix: qix_default.withHostConfig(props?.hostConfig),
746
773
  quotas: quotasMiniModule(props?.hostConfig, scopedInterceptors),
747
774
  reloadTasks: reloadTasksMiniModule(props?.hostConfig, scopedInterceptors),
@@ -779,6 +806,7 @@ var api = {
779
806
  interceptors,
780
807
  items,
781
808
  licenses,
809
+ oauthClients,
782
810
  qix,
783
811
  quotas,
784
812
  reloadTasks,
@@ -819,6 +847,7 @@ export {
819
847
  interceptors,
820
848
  items,
821
849
  licenses,
850
+ oauthClients,
822
851
  qix,
823
852
  quotas,
824
853
  reloadTasks,
package/items.d.ts CHANGED
@@ -129,7 +129,7 @@ type ItemMetaResponseBody = {
129
129
  /**
130
130
  * The case-sensitive string defining the item's type.
131
131
  */
132
- type ItemResourceTypeEnum = "app" | "collection" | "qlikview" | "insight" | "qvapp" | "genericlink" | "sharingservicetask" | "note" | "dataasset" | "dataset" | "automation" | "automl-experiment" | "automl-deployment";
132
+ type ItemResourceTypeEnum = "app" | "qlikview" | "qvapp" | "genericlink" | "sharingservicetask" | "note" | "dataasset" | "dataset" | "automation" | "automl-experiment" | "automl-deployment";
133
133
  /**
134
134
  * An item.
135
135
  */
package/items.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clearApiCache,
3
3
  invokeFetch
4
- } from "./chunks/WQYEWU54.js";
5
- import "./chunks/2B7YWDQC.js";
4
+ } from "./chunks/PTDXR7AY.js";
5
+ import "./chunks/TXC5XORK.js";
6
6
  import "./chunks/2ZQ3ZX7F.js";
7
7
 
8
8
  // src/public/rest/items.ts