@qlik/api 1.17.0 → 1.19.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.d.ts +2 -2
- package/api-keys.js +2 -2
- package/apps.d.ts +4 -4
- package/apps.js +2 -2
- package/audits.d.ts +16 -16
- package/audits.js +2 -2
- package/{auth-types-BU5EGt_9.d.ts → auth-types-PkN9CAF_.d.ts} +3 -0
- package/auth.d.ts +2 -2
- package/auth.js +2 -2
- package/automations.d.ts +2 -2
- package/automations.js +2 -2
- package/brands.d.ts +2 -2
- package/brands.js +2 -2
- package/chunks/{HFUVFYT4.js → 63L3IUY2.js} +74 -25
- package/chunks/{RWQS4ASJ.js → 64RJJHEL.js} +1 -1
- package/chunks/{NJFCE5EM.js → AKBUFQRX.js} +1 -1
- package/chunks/{5W53XSXH.js → BOJLTXK6.js} +2 -2
- package/chunks/{S5OMX5JT.js → ILZFMC3L.js} +53 -4
- package/chunks/{AVML2WPM.js → J6G5ZOKI.js} +1 -1
- package/chunks/{JBH4H34J.js → KKAWWYOT.js} +1 -1
- package/chunks/{6MPNTVLD.js → P5AG7AME.js} +1 -1
- package/chunks/{NJRTJEAQ.js → VISO65GO.js} +3 -3
- package/collections.d.ts +18 -17
- package/collections.js +2 -2
- package/csp-origins.d.ts +2 -2
- package/csp-origins.js +2 -2
- package/data-assets.d.ts +2 -2
- package/data-assets.js +2 -2
- package/data-connections.d.ts +2 -2
- package/data-connections.js +2 -2
- package/data-credentials.d.ts +2 -2
- package/data-credentials.js +2 -2
- package/data-files.d.ts +2 -2
- package/data-files.js +2 -2
- package/extensions.d.ts +18 -18
- package/extensions.js +2 -2
- package/{global.types-BU2Yugjm.d.ts → global.types--37uwGji.d.ts} +1 -1
- package/glossaries.d.ts +2 -2
- package/glossaries.js +2 -2
- package/groups.d.ts +10 -10
- package/groups.js +2 -2
- package/identity-providers.d.ts +2 -2
- package/identity-providers.js +2 -2
- package/index.d.ts +2 -2
- package/index.js +4 -4
- package/items.d.ts +11 -11
- package/items.js +2 -2
- package/licenses.d.ts +2 -2
- package/licenses.js +2 -2
- package/package.json +2 -2
- package/qix.d.ts +7 -4
- package/qix.js +2 -2
- package/quotas.d.ts +2 -2
- package/quotas.js +2 -2
- package/reload-tasks.d.ts +2 -2
- package/reload-tasks.js +2 -2
- package/reloads.d.ts +2 -2
- package/reloads.js +2 -2
- package/reports.d.ts +2 -2
- package/reports.js +2 -2
- package/roles.d.ts +2 -2
- package/roles.js +2 -2
- package/spaces.d.ts +2 -2
- package/spaces.js +2 -2
- package/temp-contents.d.ts +2 -2
- package/temp-contents.js +2 -2
- package/tenants.d.ts +2 -2
- package/tenants.js +2 -2
- package/themes.d.ts +18 -18
- package/themes.js +2 -2
- package/transports.d.ts +2 -2
- package/transports.js +2 -2
- package/users.d.ts +2 -2
- package/users.js +2 -2
- package/web-integrations.d.ts +2 -2
- package/web-integrations.js +2 -2
- package/web-notifications.d.ts +2 -2
- package/web-notifications.js +2 -2
- package/webhooks.d.ts +2 -2
- package/webhooks.js +2 -2
package/items.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types--37uwGji.js';
|
|
2
|
+
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
type CollectionTypes = "private" | "public" | "publicgoverned";
|
|
5
5
|
type ErrorResponseBody = {
|
|
@@ -246,13 +246,13 @@ type Meta = {
|
|
|
246
246
|
*/
|
|
247
247
|
type SpaceTypeEnum = "shared" | "managed" | "personal" | "data";
|
|
248
248
|
/**
|
|
249
|
-
*
|
|
249
|
+
* Lists items that the user has access to.
|
|
250
250
|
*
|
|
251
251
|
* @param query an object with query parameters
|
|
252
252
|
* @throws GetItemsHttpError
|
|
253
253
|
*/
|
|
254
254
|
declare const getItems: (query: {
|
|
255
|
-
/** The collection's unique identifier. */
|
|
255
|
+
/** The collection's unique identifier. Used to filter for items with a specific tag (collection type `public`), or collection. */
|
|
256
256
|
collectionId?: string;
|
|
257
257
|
/** User's unique identifier. */
|
|
258
258
|
createdByUserId?: string;
|
|
@@ -309,7 +309,7 @@ type GetItemsHttpError = {
|
|
|
309
309
|
status: number;
|
|
310
310
|
};
|
|
311
311
|
/**
|
|
312
|
-
* Finds and returns the settings for the current tenant.
|
|
312
|
+
* Finds and returns the items service settings for the current tenant. Currently used to enable or disable usage metrics in the tenant.
|
|
313
313
|
*
|
|
314
314
|
* @throws GetItemsSettingsHttpError
|
|
315
315
|
*/
|
|
@@ -325,7 +325,7 @@ type GetItemsSettingsHttpError = {
|
|
|
325
325
|
status: number;
|
|
326
326
|
};
|
|
327
327
|
/**
|
|
328
|
-
* Updates the settings provided in the patch body.
|
|
328
|
+
* Updates the settings provided in the patch body. Currently used to enable or disable usage metrics in the tenant.
|
|
329
329
|
*
|
|
330
330
|
* @param body an object with the body content
|
|
331
331
|
* @throws PatchItemsSettingsHttpError
|
|
@@ -394,7 +394,7 @@ type UpdateItemHttpError = {
|
|
|
394
394
|
status: number;
|
|
395
395
|
};
|
|
396
396
|
/**
|
|
397
|
-
* Finds and returns the collections of an item. This endpoint does not return the user's favorites collection.
|
|
397
|
+
* Finds and returns the collections (and tags) of an item. This endpoint does not return the user's favorites collection.
|
|
398
398
|
*
|
|
399
399
|
* @param itemId The item's unique identifier.
|
|
400
400
|
* @param query an object with query parameters
|
|
@@ -465,20 +465,20 @@ type GetPublishedItemsHttpError = {
|
|
|
465
465
|
declare function clearCache(): void;
|
|
466
466
|
interface ItemsAPI {
|
|
467
467
|
/**
|
|
468
|
-
*
|
|
468
|
+
* Lists items that the user has access to.
|
|
469
469
|
*
|
|
470
470
|
* @param query an object with query parameters
|
|
471
471
|
* @throws GetItemsHttpError
|
|
472
472
|
*/
|
|
473
473
|
getItems: typeof getItems;
|
|
474
474
|
/**
|
|
475
|
-
* Finds and returns the settings for the current tenant.
|
|
475
|
+
* Finds and returns the items service settings for the current tenant. Currently used to enable or disable usage metrics in the tenant.
|
|
476
476
|
*
|
|
477
477
|
* @throws GetItemsSettingsHttpError
|
|
478
478
|
*/
|
|
479
479
|
getItemsSettings: typeof getItemsSettings;
|
|
480
480
|
/**
|
|
481
|
-
* Updates the settings provided in the patch body.
|
|
481
|
+
* Updates the settings provided in the patch body. Currently used to enable or disable usage metrics in the tenant.
|
|
482
482
|
*
|
|
483
483
|
* @param body an object with the body content
|
|
484
484
|
* @throws PatchItemsSettingsHttpError
|
|
@@ -507,7 +507,7 @@ interface ItemsAPI {
|
|
|
507
507
|
*/
|
|
508
508
|
updateItem: typeof updateItem;
|
|
509
509
|
/**
|
|
510
|
-
* Finds and returns the collections of an item. This endpoint does not return the user's favorites collection.
|
|
510
|
+
* Finds and returns the collections (and tags) of an item. This endpoint does not return the user's favorites collection.
|
|
511
511
|
*
|
|
512
512
|
* @param itemId The item's unique identifier.
|
|
513
513
|
* @param query an object with query parameters
|
package/items.js
CHANGED
package/licenses.d.ts
CHANGED
package/licenses.js
CHANGED
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"nanoid": "^5.0.7",
|
|
17
17
|
"ws": "^8.18.0"
|
|
18
18
|
},
|
|
19
|
-
"packageManager": "pnpm@9.
|
|
19
|
+
"packageManager": "pnpm@9.9.0",
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=18"
|
|
22
22
|
},
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"./qix": "./qix.js",
|
|
57
57
|
"./auth": "./auth.js"
|
|
58
58
|
},
|
|
59
|
-
"version": "1.
|
|
59
|
+
"version": "1.19.0"
|
|
60
60
|
}
|
package/qix.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import './global.types
|
|
2
|
-
import { H as HostConfig } from './auth-types-
|
|
1
|
+
import './global.types--37uwGji.js';
|
|
2
|
+
import { H as HostConfig } from './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
|
-
declare const QIX_SCHEMA_VERSION = "12.
|
|
4
|
+
declare const QIX_SCHEMA_VERSION = "12.2184.0";
|
|
5
5
|
type AlfaNumString = {
|
|
6
6
|
/**
|
|
7
7
|
* Calculated value.
|
|
@@ -975,6 +975,7 @@ type DocListEntry = {
|
|
|
975
975
|
* * ANALYTICS
|
|
976
976
|
* * DATA_PREPARATION
|
|
977
977
|
* * DATAFLOW_PREP
|
|
978
|
+
* * SINGLE_TABLE_PREP
|
|
978
979
|
*/
|
|
979
980
|
qUsage?: UsageEnum;
|
|
980
981
|
};
|
|
@@ -2926,6 +2927,7 @@ type NxAppLayout = {
|
|
|
2926
2927
|
* * ANALYTICS
|
|
2927
2928
|
* * DATA_PREPARATION
|
|
2928
2929
|
* * DATAFLOW_PREP
|
|
2930
|
+
* * SINGLE_TABLE_PREP
|
|
2929
2931
|
*/
|
|
2930
2932
|
qUsage?: UsageEnum;
|
|
2931
2933
|
};
|
|
@@ -2979,6 +2981,7 @@ type NxAppProperties = {
|
|
|
2979
2981
|
* * ANALYTICS
|
|
2980
2982
|
* * DATA_PREPARATION
|
|
2981
2983
|
* * DATAFLOW_PREP
|
|
2984
|
+
* * SINGLE_TABLE_PREP
|
|
2982
2985
|
*/
|
|
2983
2986
|
qUsage?: UsageEnum;
|
|
2984
2987
|
};
|
|
@@ -6843,7 +6846,7 @@ type UndoInfo = {
|
|
|
6843
6846
|
* The numbers of undos and redos are empty when an object is created. The number of possible undos is increased every time an action (for example, create a child, set some properties) on the object is performed. The number of possible redos is increased every time an undo action is performed.
|
|
6844
6847
|
*/
|
|
6845
6848
|
type UndoInfoDef = object;
|
|
6846
|
-
type UsageEnum = "ANALYTICS" | "DATA_PREPARATION" | "DATAFLOW_PREP";
|
|
6849
|
+
type UsageEnum = "ANALYTICS" | "DATA_PREPARATION" | "DATAFLOW_PREP" | "SINGLE_TABLE_PREP";
|
|
6847
6850
|
type ValueExpr = {
|
|
6848
6851
|
/**
|
|
6849
6852
|
* Expression evaluated to dual.
|
package/qix.js
CHANGED
package/quotas.d.ts
CHANGED
package/quotas.js
CHANGED
package/reload-tasks.d.ts
CHANGED
package/reload-tasks.js
CHANGED
package/reloads.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types--37uwGji.js';
|
|
2
|
+
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
type Error = {
|
|
5
5
|
/** The error code is in form of 'RELOADS-xxx'. ranges from 'RELOADS-001' to 'RELOADS-013'. */
|
package/reloads.js
CHANGED
package/reports.d.ts
CHANGED
package/reports.js
CHANGED
package/roles.d.ts
CHANGED
package/roles.js
CHANGED
package/spaces.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types--37uwGji.js';
|
|
2
|
+
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* The supported actions for user-created spaces like Shared or Managed spaces.
|
package/spaces.js
CHANGED
package/temp-contents.d.ts
CHANGED
package/temp-contents.js
CHANGED
package/tenants.d.ts
CHANGED
package/tenants.js
CHANGED
package/themes.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types--37uwGji.js';
|
|
2
|
+
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* An error object.
|
|
@@ -71,7 +71,7 @@ type Themes = {
|
|
|
71
71
|
data: Theme[];
|
|
72
72
|
};
|
|
73
73
|
/**
|
|
74
|
-
* Lists all themes.
|
|
74
|
+
* Lists all imported themes in the tenant.
|
|
75
75
|
*
|
|
76
76
|
* @throws GetThemesHttpError
|
|
77
77
|
*/
|
|
@@ -87,7 +87,7 @@ type GetThemesHttpError = {
|
|
|
87
87
|
status: number;
|
|
88
88
|
};
|
|
89
89
|
/**
|
|
90
|
-
* Creates a new theme.
|
|
90
|
+
* Creates a new theme. Accepts either provided file or data object. The name of the new theme must be different to any existing themes.
|
|
91
91
|
*
|
|
92
92
|
* @param body an object with the body content
|
|
93
93
|
* @throws UploadThemeHttpError
|
|
@@ -109,7 +109,7 @@ type UploadThemeHttpError = {
|
|
|
109
109
|
status: number;
|
|
110
110
|
};
|
|
111
111
|
/**
|
|
112
|
-
* Deletes a specific theme.
|
|
112
|
+
* Deletes a specific theme matching either theme ID or theme name.
|
|
113
113
|
*
|
|
114
114
|
* @param id Theme identifier or its qextFilename.
|
|
115
115
|
* @throws DeleteThemeHttpError
|
|
@@ -126,7 +126,7 @@ type DeleteThemeHttpError = {
|
|
|
126
126
|
status: number;
|
|
127
127
|
};
|
|
128
128
|
/**
|
|
129
|
-
* Returns a specific theme.
|
|
129
|
+
* Returns a specific theme matching either theme ID or theme name.
|
|
130
130
|
*
|
|
131
131
|
* @param id Theme identifier or its qextFilename
|
|
132
132
|
* @throws GetThemeHttpError
|
|
@@ -143,7 +143,7 @@ type GetThemeHttpError = {
|
|
|
143
143
|
status: number;
|
|
144
144
|
};
|
|
145
145
|
/**
|
|
146
|
-
* Updates a specific theme
|
|
146
|
+
* Updates a specific theme matching either theme ID or theme name. Accepts either provided file or data object.
|
|
147
147
|
*
|
|
148
148
|
* @param id Theme identifier or its qextFilename.
|
|
149
149
|
* @param body an object with the body content
|
|
@@ -166,7 +166,7 @@ type PatchThemeHttpError = {
|
|
|
166
166
|
status: number;
|
|
167
167
|
};
|
|
168
168
|
/**
|
|
169
|
-
* Downloads the theme as
|
|
169
|
+
* Downloads all files in the theme matching either theme ID or theme name as a `.zip` archive.
|
|
170
170
|
*
|
|
171
171
|
* @param id Theme identifier or its qextFilename
|
|
172
172
|
* @throws DownloadThemeHttpError
|
|
@@ -183,10 +183,10 @@ type DownloadThemeHttpError = {
|
|
|
183
183
|
status: number;
|
|
184
184
|
};
|
|
185
185
|
/**
|
|
186
|
-
* Downloads a file from the theme
|
|
186
|
+
* Downloads a file from the theme matching either theme ID or theme name, identified by the file path within the imported extension.
|
|
187
187
|
*
|
|
188
188
|
* @param id Theme identifier or its qextFilename.
|
|
189
|
-
* @param filepath Path to the file
|
|
189
|
+
* @param filepath Path to the file location within the specified theme archive. Folders separated with forward slashes.
|
|
190
190
|
* @throws DownloadFileFromThemeHttpError
|
|
191
191
|
*/
|
|
192
192
|
declare const downloadFileFromTheme: (id: string, filepath: string, options?: ApiCallOptions) => Promise<DownloadFileFromThemeHttpResponse>;
|
|
@@ -206,34 +206,34 @@ type DownloadFileFromThemeHttpError = {
|
|
|
206
206
|
declare function clearCache(): void;
|
|
207
207
|
interface ThemesAPI {
|
|
208
208
|
/**
|
|
209
|
-
* Lists all themes.
|
|
209
|
+
* Lists all imported themes in the tenant.
|
|
210
210
|
*
|
|
211
211
|
* @throws GetThemesHttpError
|
|
212
212
|
*/
|
|
213
213
|
getThemes: typeof getThemes;
|
|
214
214
|
/**
|
|
215
|
-
* Creates a new theme.
|
|
215
|
+
* Creates a new theme. Accepts either provided file or data object. The name of the new theme must be different to any existing themes.
|
|
216
216
|
*
|
|
217
217
|
* @param body an object with the body content
|
|
218
218
|
* @throws UploadThemeHttpError
|
|
219
219
|
*/
|
|
220
220
|
uploadTheme: typeof uploadTheme;
|
|
221
221
|
/**
|
|
222
|
-
* Deletes a specific theme.
|
|
222
|
+
* Deletes a specific theme matching either theme ID or theme name.
|
|
223
223
|
*
|
|
224
224
|
* @param id Theme identifier or its qextFilename.
|
|
225
225
|
* @throws DeleteThemeHttpError
|
|
226
226
|
*/
|
|
227
227
|
deleteTheme: typeof deleteTheme;
|
|
228
228
|
/**
|
|
229
|
-
* Returns a specific theme.
|
|
229
|
+
* Returns a specific theme matching either theme ID or theme name.
|
|
230
230
|
*
|
|
231
231
|
* @param id Theme identifier or its qextFilename
|
|
232
232
|
* @throws GetThemeHttpError
|
|
233
233
|
*/
|
|
234
234
|
getTheme: typeof getTheme;
|
|
235
235
|
/**
|
|
236
|
-
* Updates a specific theme
|
|
236
|
+
* Updates a specific theme matching either theme ID or theme name. Accepts either provided file or data object.
|
|
237
237
|
*
|
|
238
238
|
* @param id Theme identifier or its qextFilename.
|
|
239
239
|
* @param body an object with the body content
|
|
@@ -241,17 +241,17 @@ interface ThemesAPI {
|
|
|
241
241
|
*/
|
|
242
242
|
patchTheme: typeof patchTheme;
|
|
243
243
|
/**
|
|
244
|
-
* Downloads the theme as
|
|
244
|
+
* Downloads all files in the theme matching either theme ID or theme name as a `.zip` archive.
|
|
245
245
|
*
|
|
246
246
|
* @param id Theme identifier or its qextFilename
|
|
247
247
|
* @throws DownloadThemeHttpError
|
|
248
248
|
*/
|
|
249
249
|
downloadTheme: typeof downloadTheme;
|
|
250
250
|
/**
|
|
251
|
-
* Downloads a file from the theme
|
|
251
|
+
* Downloads a file from the theme matching either theme ID or theme name, identified by the file path within the imported extension.
|
|
252
252
|
*
|
|
253
253
|
* @param id Theme identifier or its qextFilename.
|
|
254
|
-
* @param filepath Path to the file
|
|
254
|
+
* @param filepath Path to the file location within the specified theme archive. Folders separated with forward slashes.
|
|
255
255
|
* @throws DownloadFileFromThemeHttpError
|
|
256
256
|
*/
|
|
257
257
|
downloadFileFromTheme: typeof downloadFileFromTheme;
|
package/themes.js
CHANGED
package/transports.d.ts
CHANGED
package/transports.js
CHANGED
package/users.d.ts
CHANGED
package/users.js
CHANGED
package/web-integrations.d.ts
CHANGED
package/web-integrations.js
CHANGED
package/web-notifications.d.ts
CHANGED
package/web-notifications.js
CHANGED
package/webhooks.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types--37uwGji.js';
|
|
2
|
+
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
type Delivery = {
|
|
5
5
|
/** The name of the triggering event-type */
|
package/webhooks.js
CHANGED