@qlik/api 1.16.0 → 1.18.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 +32 -28
- package/api-keys.js +2 -2
- package/apps.d.ts +4 -4
- package/apps.js +2 -2
- package/audits.d.ts +2 -2
- 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/{PESPSFQN.js → 2B3EPESP.js} +1 -1
- package/chunks/{MFNOHOWH.js → 2NXPFUPZ.js} +2 -2
- package/chunks/{O3XVX7VQ.js → 4FZ45I6G.js} +1 -1
- package/chunks/{GXMVBX45.js → GKEPTI44.js} +1 -1
- package/chunks/{TBHMVTOT.js → GLS4DAZ4.js} +1 -1
- package/chunks/{6O3XBOLZ.js → H7WWFWBM.js} +1 -1
- package/chunks/{YHKRUQRS.js → QLFOH4GP.js} +120 -11
- package/chunks/{ECWQX4IH.js → URFSYYRS.js} +1 -1
- package/chunks/{3XRP5N4L.js → YEHZGXQV.js} +141 -73
- package/chunks/{7IMOYFWE.js → ZLPAS7FC.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 +274 -76
- package/data-files.js +2 -2
- package/extensions.d.ts +18 -18
- package/extensions.js +2 -2
- package/{global.types-z1p6A9D-.d.ts → global.types--37uwGji.d.ts} +4 -1
- package/glossaries.d.ts +2 -2
- package/glossaries.js +2 -2
- package/groups.d.ts +2 -2
- 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 +12 -12
- package/reload-tasks.js +2 -2
- package/reloads.d.ts +4 -4
- package/reloads.js +2 -2
- package/reports.d.ts +5 -3
- 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/extensions.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
|
* Object containing meta data regarding the bundle the extension belongs to. If it does not belong to a bundle, this object is not defined.
|
|
@@ -96,7 +96,7 @@ type Meta = {
|
|
|
96
96
|
stack?: string;
|
|
97
97
|
};
|
|
98
98
|
/**
|
|
99
|
-
* Lists all extensions.
|
|
99
|
+
* Lists all imported extensions in the tenant.
|
|
100
100
|
*
|
|
101
101
|
* @throws GetExtensionsHttpError
|
|
102
102
|
*/
|
|
@@ -112,7 +112,7 @@ type GetExtensionsHttpError = {
|
|
|
112
112
|
status: number;
|
|
113
113
|
};
|
|
114
114
|
/**
|
|
115
|
-
* Creates a new extension.
|
|
115
|
+
* Creates a new extension. Accepts either provided file or data object. The name of the new extension must be different to any existing extensions.
|
|
116
116
|
*
|
|
117
117
|
* @param body an object with the body content
|
|
118
118
|
* @throws UploadExtensionHttpError
|
|
@@ -134,7 +134,7 @@ type UploadExtensionHttpError = {
|
|
|
134
134
|
status: number;
|
|
135
135
|
};
|
|
136
136
|
/**
|
|
137
|
-
* Deletes a specific extension.
|
|
137
|
+
* Deletes a specific extension matching either extension ID or extension name.
|
|
138
138
|
*
|
|
139
139
|
* @param id Extension identifier or its qextFilename.
|
|
140
140
|
* @throws DeleteExtensionHttpError
|
|
@@ -151,7 +151,7 @@ type DeleteExtensionHttpError = {
|
|
|
151
151
|
status: number;
|
|
152
152
|
};
|
|
153
153
|
/**
|
|
154
|
-
* Returns a specific extension.
|
|
154
|
+
* Returns a specific extension matching either extension ID or extension name.
|
|
155
155
|
*
|
|
156
156
|
* @param id Extension identifier or its qextFilename.
|
|
157
157
|
* @throws GetExtensionHttpError
|
|
@@ -168,7 +168,7 @@ type GetExtensionHttpError = {
|
|
|
168
168
|
status: number;
|
|
169
169
|
};
|
|
170
170
|
/**
|
|
171
|
-
* Updates a specific extension
|
|
171
|
+
* Updates a specific extension matching either extension ID or extension name. Accepts either provided file or data object.
|
|
172
172
|
*
|
|
173
173
|
* @param id Extension identifier or its qextFilename.
|
|
174
174
|
* @param body an object with the body content
|
|
@@ -191,7 +191,7 @@ type PatchExtensionHttpError = {
|
|
|
191
191
|
status: number;
|
|
192
192
|
};
|
|
193
193
|
/**
|
|
194
|
-
* Downloads the extension as
|
|
194
|
+
* Downloads all files in the extension matching either extension ID or extension name as a `.zip` archive.
|
|
195
195
|
*
|
|
196
196
|
* @param id Extension identifier or its qextFilename.
|
|
197
197
|
* @throws DownloadExtensionHttpError
|
|
@@ -208,10 +208,10 @@ type DownloadExtensionHttpError = {
|
|
|
208
208
|
status: number;
|
|
209
209
|
};
|
|
210
210
|
/**
|
|
211
|
-
* Downloads a file from the extension
|
|
211
|
+
* Downloads a specific file from the extension matching either extension ID or extension name, identified by the file path within the imported extension.
|
|
212
212
|
*
|
|
213
213
|
* @param id Extension identifier or its qextFilename.
|
|
214
|
-
* @param filepath Path to the file
|
|
214
|
+
* @param filepath Path to the file location within the specified extension archive. Folders separated with forward slashes.
|
|
215
215
|
* @throws DownloadFileFromExtensionHttpError
|
|
216
216
|
*/
|
|
217
217
|
declare const downloadFileFromExtension: (id: string, filepath: string, options?: ApiCallOptions) => Promise<DownloadFileFromExtensionHttpResponse>;
|
|
@@ -231,34 +231,34 @@ type DownloadFileFromExtensionHttpError = {
|
|
|
231
231
|
declare function clearCache(): void;
|
|
232
232
|
interface ExtensionsAPI {
|
|
233
233
|
/**
|
|
234
|
-
* Lists all extensions.
|
|
234
|
+
* Lists all imported extensions in the tenant.
|
|
235
235
|
*
|
|
236
236
|
* @throws GetExtensionsHttpError
|
|
237
237
|
*/
|
|
238
238
|
getExtensions: typeof getExtensions;
|
|
239
239
|
/**
|
|
240
|
-
* Creates a new extension.
|
|
240
|
+
* Creates a new extension. Accepts either provided file or data object. The name of the new extension must be different to any existing extensions.
|
|
241
241
|
*
|
|
242
242
|
* @param body an object with the body content
|
|
243
243
|
* @throws UploadExtensionHttpError
|
|
244
244
|
*/
|
|
245
245
|
uploadExtension: typeof uploadExtension;
|
|
246
246
|
/**
|
|
247
|
-
* Deletes a specific extension.
|
|
247
|
+
* Deletes a specific extension matching either extension ID or extension name.
|
|
248
248
|
*
|
|
249
249
|
* @param id Extension identifier or its qextFilename.
|
|
250
250
|
* @throws DeleteExtensionHttpError
|
|
251
251
|
*/
|
|
252
252
|
deleteExtension: typeof deleteExtension;
|
|
253
253
|
/**
|
|
254
|
-
* Returns a specific extension.
|
|
254
|
+
* Returns a specific extension matching either extension ID or extension name.
|
|
255
255
|
*
|
|
256
256
|
* @param id Extension identifier or its qextFilename.
|
|
257
257
|
* @throws GetExtensionHttpError
|
|
258
258
|
*/
|
|
259
259
|
getExtension: typeof getExtension;
|
|
260
260
|
/**
|
|
261
|
-
* Updates a specific extension
|
|
261
|
+
* Updates a specific extension matching either extension ID or extension name. Accepts either provided file or data object.
|
|
262
262
|
*
|
|
263
263
|
* @param id Extension identifier or its qextFilename.
|
|
264
264
|
* @param body an object with the body content
|
|
@@ -266,17 +266,17 @@ interface ExtensionsAPI {
|
|
|
266
266
|
*/
|
|
267
267
|
patchExtension: typeof patchExtension;
|
|
268
268
|
/**
|
|
269
|
-
* Downloads the extension as
|
|
269
|
+
* Downloads all files in the extension matching either extension ID or extension name as a `.zip` archive.
|
|
270
270
|
*
|
|
271
271
|
* @param id Extension identifier or its qextFilename.
|
|
272
272
|
* @throws DownloadExtensionHttpError
|
|
273
273
|
*/
|
|
274
274
|
downloadExtension: typeof downloadExtension;
|
|
275
275
|
/**
|
|
276
|
-
* Downloads a file from the extension
|
|
276
|
+
* Downloads a specific file from the extension matching either extension ID or extension name, identified by the file path within the imported extension.
|
|
277
277
|
*
|
|
278
278
|
* @param id Extension identifier or its qextFilename.
|
|
279
|
-
* @param filepath Path to the file
|
|
279
|
+
* @param filepath Path to the file location within the specified extension archive. Folders separated with forward slashes.
|
|
280
280
|
* @throws DownloadFileFromExtensionHttpError
|
|
281
281
|
*/
|
|
282
282
|
downloadFileFromExtension: typeof downloadFileFromExtension;
|
package/extensions.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { H as HostConfig } from './auth-types-
|
|
1
|
+
import { H as HostConfig } from './auth-types-PkN9CAF_.js';
|
|
2
2
|
|
|
3
3
|
/** An entry in the cache for one specific cacheKey */
|
|
4
4
|
type CacheEntry = {
|
|
@@ -58,6 +58,8 @@ type CookieAuthConfig = {
|
|
|
58
58
|
webIntegrationId?: string;
|
|
59
59
|
/** If set to false the `credentials` property will be set to same-origin */
|
|
60
60
|
crossSiteCookies?: boolean;
|
|
61
|
+
/** Set to true if browser is running in anonymous mode, which is detected if there's a eac token in the url */
|
|
62
|
+
anonymousMode?: boolean;
|
|
61
63
|
};
|
|
62
64
|
/** WindowsCookie Auth Configuration for a HostConfig */
|
|
63
65
|
type WindowsCookieAuthConfig = {
|
|
@@ -100,6 +102,7 @@ type Oauth2AuthConfig = {
|
|
|
100
102
|
*/
|
|
101
103
|
userId?: string;
|
|
102
104
|
};
|
|
105
|
+
/** Anonymous Auth Configuration for a HostConfig - used when embedding UI's linked to an anonymous tenant/app */
|
|
103
106
|
type AnonymousAuthConfig = {
|
|
104
107
|
/**
|
|
105
108
|
* Experimental and unsupported
|
package/glossaries.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
|
* A JSON Patch document as defined in http://tools.ietf.org/html/rfc6902.
|
package/glossaries.js
CHANGED
package/groups.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 array of role references. Visibility dependant on access level. Must have access to roles to view other users' assigned roles.
|
package/groups.js
CHANGED
package/identity-providers.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 BaseIDP = {
|
|
5
5
|
/** Indicates whether the IdP is available for use. */
|
package/identity-providers.js
CHANGED
package/index.d.ts
CHANGED
|
@@ -31,8 +31,8 @@ import { UsersAPI } from './users.js';
|
|
|
31
31
|
import { WebIntegrationsAPI } from './web-integrations.js';
|
|
32
32
|
import { WebNotificationsAPI } from './web-notifications.js';
|
|
33
33
|
import { WebhooksAPI } from './webhooks.js';
|
|
34
|
-
import './global.types
|
|
35
|
-
import './auth-types-
|
|
34
|
+
import './global.types--37uwGji.js';
|
|
35
|
+
import './auth-types-PkN9CAF_.js';
|
|
36
36
|
|
|
37
37
|
declare const apiKeys: ApiKeysAPI;
|
|
38
38
|
declare const apps: AppsAPI;
|
package/index.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
qix_default
|
|
3
|
-
} from "./chunks/
|
|
3
|
+
} from "./chunks/GKEPTI44.js";
|
|
4
4
|
import {
|
|
5
5
|
auth_default
|
|
6
|
-
} from "./chunks/
|
|
6
|
+
} from "./chunks/H7WWFWBM.js";
|
|
7
7
|
import {
|
|
8
8
|
clearApiCache,
|
|
9
9
|
invokeFetch
|
|
10
|
-
} from "./chunks/
|
|
11
|
-
import "./chunks/
|
|
10
|
+
} from "./chunks/2NXPFUPZ.js";
|
|
11
|
+
import "./chunks/ZLPAS7FC.js";
|
|
12
12
|
import "./chunks/2ZQ3ZX7F.js";
|
|
13
13
|
|
|
14
14
|
// src/public/public-runtime-api-generator/public-runtime-api-generator.ts
|
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.18.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.2180.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
|
@@ -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
|
code: string;
|
|
@@ -77,7 +77,7 @@ type Tasks = {
|
|
|
77
77
|
links: PaginationLinks;
|
|
78
78
|
};
|
|
79
79
|
/**
|
|
80
|
-
*
|
|
80
|
+
* Finds and returns the tasks that the user has access to.
|
|
81
81
|
*
|
|
82
82
|
* @param query an object with query parameters
|
|
83
83
|
* @throws GetReloadTasksHttpError
|
|
@@ -105,7 +105,7 @@ type GetReloadTasksHttpError = {
|
|
|
105
105
|
status: number;
|
|
106
106
|
};
|
|
107
107
|
/**
|
|
108
|
-
*
|
|
108
|
+
* Creates a task for a specified app.
|
|
109
109
|
*
|
|
110
110
|
* @param body an object with the body content
|
|
111
111
|
* @throws CreateReloadTaskHttpError
|
|
@@ -122,7 +122,7 @@ type CreateReloadTaskHttpError = {
|
|
|
122
122
|
status: number;
|
|
123
123
|
};
|
|
124
124
|
/**
|
|
125
|
-
*
|
|
125
|
+
* Deletes a task
|
|
126
126
|
*
|
|
127
127
|
* @param taskId The unique identifier of the task.
|
|
128
128
|
* @throws DeleteReloadTaskHttpError
|
|
@@ -139,7 +139,7 @@ type DeleteReloadTaskHttpError = {
|
|
|
139
139
|
status: number;
|
|
140
140
|
};
|
|
141
141
|
/**
|
|
142
|
-
*
|
|
142
|
+
* Finds and returns a task.
|
|
143
143
|
*
|
|
144
144
|
* @param taskId The unique identifier of the task.
|
|
145
145
|
* @throws GetReloadTaskHttpError
|
|
@@ -156,7 +156,7 @@ type GetReloadTaskHttpError = {
|
|
|
156
156
|
status: number;
|
|
157
157
|
};
|
|
158
158
|
/**
|
|
159
|
-
*
|
|
159
|
+
* Updates an existing task
|
|
160
160
|
*
|
|
161
161
|
* @param taskId The unique identifier of the task.
|
|
162
162
|
* @param body an object with the body content
|
|
@@ -179,35 +179,35 @@ type UpdateReloadTaskHttpError = {
|
|
|
179
179
|
declare function clearCache(): void;
|
|
180
180
|
interface ReloadTasksAPI {
|
|
181
181
|
/**
|
|
182
|
-
*
|
|
182
|
+
* Finds and returns the tasks that the user has access to.
|
|
183
183
|
*
|
|
184
184
|
* @param query an object with query parameters
|
|
185
185
|
* @throws GetReloadTasksHttpError
|
|
186
186
|
*/
|
|
187
187
|
getReloadTasks: typeof getReloadTasks;
|
|
188
188
|
/**
|
|
189
|
-
*
|
|
189
|
+
* Creates a task for a specified app.
|
|
190
190
|
*
|
|
191
191
|
* @param body an object with the body content
|
|
192
192
|
* @throws CreateReloadTaskHttpError
|
|
193
193
|
*/
|
|
194
194
|
createReloadTask: typeof createReloadTask;
|
|
195
195
|
/**
|
|
196
|
-
*
|
|
196
|
+
* Deletes a task
|
|
197
197
|
*
|
|
198
198
|
* @param taskId The unique identifier of the task.
|
|
199
199
|
* @throws DeleteReloadTaskHttpError
|
|
200
200
|
*/
|
|
201
201
|
deleteReloadTask: typeof deleteReloadTask;
|
|
202
202
|
/**
|
|
203
|
-
*
|
|
203
|
+
* Finds and returns a task.
|
|
204
204
|
*
|
|
205
205
|
* @param taskId The unique identifier of the task.
|
|
206
206
|
* @throws GetReloadTaskHttpError
|
|
207
207
|
*/
|
|
208
208
|
getReloadTask: typeof getReloadTask;
|
|
209
209
|
/**
|
|
210
|
-
*
|
|
210
|
+
* Updates an existing task
|
|
211
211
|
*
|
|
212
212
|
* @param taskId The unique identifier of the task.
|
|
213
213
|
* @param body an object with the body content
|
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'. */
|
|
@@ -132,7 +132,7 @@ type QueueReloadHttpError = {
|
|
|
132
132
|
status: number;
|
|
133
133
|
};
|
|
134
134
|
/**
|
|
135
|
-
* Finds and returns a reload record
|
|
135
|
+
* Finds and returns a reload record.
|
|
136
136
|
*
|
|
137
137
|
* @param reloadId The unique identifier of the reload.
|
|
138
138
|
* @throws GetReloadHttpError
|
|
@@ -185,7 +185,7 @@ interface ReloadsAPI {
|
|
|
185
185
|
*/
|
|
186
186
|
queueReload: typeof queueReload;
|
|
187
187
|
/**
|
|
188
|
-
* Finds and returns a reload record
|
|
188
|
+
* Finds and returns a reload record.
|
|
189
189
|
*
|
|
190
190
|
* @param reloadId The unique identifier of the reload.
|
|
191
191
|
* @throws GetReloadHttpError
|
package/reloads.js
CHANGED
package/reports.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
|
* Error in resource handling
|
|
@@ -108,7 +108,9 @@ type ExportError = {
|
|
|
108
108
|
* - "REP-400029" Reload Entitlement Limit Reached.
|
|
109
109
|
* - "REP-409046" Report aborted due to app reload.
|
|
110
110
|
* - "REP-500047" Error setting GroupState.
|
|
111
|
-
* - "REP-403048" Forbidden. User does not have permission to export the report (access control usePermission)
|
|
111
|
+
* - "REP-403048" Forbidden. User does not have permission to export the report (access control usePermission)
|
|
112
|
+
* - "REP-422051" There is no report to produce due to empty dataset or missing fields (the measure/dimension was removed or omitted in Section Access)
|
|
113
|
+
* - "REP-500014" The app did not open within 5 minutes. */
|
|
112
114
|
code: string;
|
|
113
115
|
/** Optional. MAY be used to provide more concrete details. */
|
|
114
116
|
detail?: string;
|
package/reports.js
CHANGED
package/roles.d.ts
CHANGED