@qlik/api 1.25.0 → 1.26.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 +1 -1
- package/api-keys.js +2 -2
- package/apps.d.ts +1 -1
- package/apps.js +2 -2
- package/audits.d.ts +1 -1
- package/audits.js +2 -2
- package/auth.js +2 -2
- package/automations.d.ts +1 -1
- package/automations.js +2 -2
- package/brands.d.ts +1 -1
- package/brands.js +2 -2
- package/chunks/{3DYV7KOJ.js → 2BRBIRM2.js} +2 -2
- package/chunks/{7BDAXGID.js → 3RGGGGAR.js} +6 -9
- package/chunks/{6DEESTGF.js → 4D5NADHK.js} +4 -4
- package/chunks/{OIQ5ELGS.js → 7SNOQCIQ.js} +1 -1
- package/chunks/{UA6BE3VB.js → AMO5NATA.js} +2 -2
- package/chunks/{BL5PJM4B.js → HGRF5TX3.js} +1 -1
- package/chunks/{N3ZFICDU.js → MGXEGSJC.js} +3 -3
- package/chunks/{I5UOE4ZZ.js → NBW6PHZU.js} +120 -44
- package/chunks/{6QRR5VUM.js → QOOCP2TS.js} +4 -3
- package/chunks/{CZC7KEJN.js → UV5COPU3.js} +3 -3
- package/collections.d.ts +1 -1
- package/collections.js +2 -2
- package/csp-origins.d.ts +13 -13
- package/csp-origins.js +2 -2
- package/data-assets.d.ts +2 -2
- package/data-assets.js +2 -2
- package/data-connections.d.ts +1 -1
- package/data-connections.js +2 -2
- package/data-credentials.d.ts +1 -1
- package/data-credentials.js +2 -2
- package/data-files.d.ts +1 -1
- package/data-files.js +2 -2
- package/docs/qix.md +28 -8
- package/extensions.d.ts +1 -1
- package/extensions.js +2 -2
- package/glossaries.d.ts +1 -1
- package/glossaries.js +2 -2
- package/groups.d.ts +1 -1
- package/groups.js +2 -2
- package/identity-providers.d.ts +28 -3
- package/identity-providers.js +2 -2
- package/index.d.ts +1 -1
- package/index.js +5 -5
- package/interceptors.d.ts +1 -1
- package/interceptors.js +1 -1
- package/{invoke-fetch-types-BLrpeZOL.d.ts → invoke-fetch-types-BXn-uSF5.d.ts} +27 -1
- package/items.d.ts +1 -1
- package/items.js +2 -2
- package/licenses.d.ts +1 -1
- package/licenses.js +2 -2
- package/package.json +3 -3
- package/qix.d.ts +2 -2
- package/qix.js +2 -2
- package/quotas.d.ts +1 -1
- package/quotas.js +2 -2
- package/reload-tasks.d.ts +1 -1
- package/reload-tasks.js +2 -2
- package/reloads.d.ts +1 -1
- package/reloads.js +2 -2
- package/reports.d.ts +9 -7
- package/reports.js +2 -2
- package/roles.d.ts +2 -2
- package/roles.js +2 -2
- package/spaces.d.ts +1 -1
- package/spaces.js +2 -2
- package/temp-contents.d.ts +1 -1
- package/temp-contents.js +2 -2
- package/tenants.d.ts +1 -1
- package/tenants.js +2 -2
- package/themes.d.ts +1 -1
- package/themes.js +2 -2
- package/transports.d.ts +1 -1
- package/transports.js +2 -2
- package/users.d.ts +1 -1
- package/users.js +2 -2
- package/web-integrations.d.ts +1 -1
- package/web-integrations.js +2 -2
- package/web-notifications.d.ts +1 -1
- package/web-notifications.js +2 -2
- package/webhooks.d.ts +1 -1
- package/webhooks.js +2 -2
package/reports.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './invoke-fetch-types-
|
|
1
|
+
import { A as ApiCallOptions } from './invoke-fetch-types-BXn-uSF5.js';
|
|
2
2
|
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -59,10 +59,10 @@ type Error = {
|
|
|
59
59
|
errors?: ExportErrors;
|
|
60
60
|
};
|
|
61
61
|
/**
|
|
62
|
-
* Output to be used to export
|
|
62
|
+
* Output to be used to export an excel template.
|
|
63
63
|
*/
|
|
64
64
|
type ExcelOutput = {
|
|
65
|
-
/** The
|
|
65
|
+
/** The output format of the report to be produced. */
|
|
66
66
|
outFormat?: "xlsx";
|
|
67
67
|
};
|
|
68
68
|
/**
|
|
@@ -207,7 +207,7 @@ type NxPatch = {
|
|
|
207
207
|
type OutputItem = {
|
|
208
208
|
/** The callback to be performed once the report is done. */
|
|
209
209
|
callBackAction?: CallBackAction;
|
|
210
|
-
/** Output to be used to export
|
|
210
|
+
/** Output to be used to export an excel template. */
|
|
211
211
|
excelOutput?: ExcelOutput;
|
|
212
212
|
/** Output to be used to export a single visualization as image. */
|
|
213
213
|
imageOutput?: ImageOutput;
|
|
@@ -239,7 +239,7 @@ type OutputItem = {
|
|
|
239
239
|
* - image requires imageOutput to be set
|
|
240
240
|
* - csv doesn't have csv output
|
|
241
241
|
* - xlsx requires xlsxOutput to be set */
|
|
242
|
-
type: "image" | "pdf" | "xlsx" | "jsondata" | "pdfcomposition" | "excel" | "pptx" | "pptxcomposition" | "csv" | "cycle";
|
|
242
|
+
type: "image" | "pdf" | "xlsx" | "jsondata" | "pdfcomposition" | "excel" | "pptx" | "pptxcomposition" | "csv" | "cycle" | "html";
|
|
243
243
|
};
|
|
244
244
|
/**
|
|
245
245
|
* Output to be used to export a composition of templates as pdf.
|
|
@@ -342,6 +342,8 @@ type ReportRequest = {
|
|
|
342
342
|
senseDataTemplate?: SenseDataTemplate;
|
|
343
343
|
/** Used to produce reports from a template file. */
|
|
344
344
|
senseExcelTemplate?: SenseFileTemplate;
|
|
345
|
+
/** Used to produce reports from a template file. */
|
|
346
|
+
senseHtmlTemplate?: SenseFileTemplate;
|
|
345
347
|
/** Used to export a single visualization as pdf, pptx or png. */
|
|
346
348
|
senseImageTemplate?: SenseImageTemplate;
|
|
347
349
|
/** Used to produce reports from a template file. */
|
|
@@ -349,7 +351,7 @@ type ReportRequest = {
|
|
|
349
351
|
/** Used to export a sheet as pdf or pptx. */
|
|
350
352
|
senseSheetTemplate?: SenseSheetTemplate;
|
|
351
353
|
/** Template type and version using semantic versioning. It must have the following name convention: dashed-separated-template-name-MAJOR.MINOR.
|
|
352
|
-
* Please note that sense-pixel-perfect-template-1.0, sense-story-x.0 and qv-data-x.0 are only for internal use.
|
|
354
|
+
* Please note that sense-pixel-perfect-template-1.0, sense-html-template-1.0, sense-story-x.0 and qv-data-x.0 are only for internal use.
|
|
353
355
|
*
|
|
354
356
|
* Each type requires a specific template to be provided:
|
|
355
357
|
* - composition-1.0 requires compositionTemplates to be set
|
|
@@ -364,7 +366,7 @@ type ReportRequest = {
|
|
|
364
366
|
* - sense-image-1.0 supports pdf, pptx and png output types
|
|
365
367
|
* - sense-sheet-1.0 supports pdf, pptx output type
|
|
366
368
|
* - sense-data-1.0 supports xlsx output type */
|
|
367
|
-
type: "composition-1.0" | "sense-image-1.0" | "sense-data-1.0" | "sense-sheet-1.0" | "sense-story-1.0" | "qv-data-1.0" | "qv-data-2.0" | "sense-excel-template-1.0" | "sense-pixel-perfect-template-1.0";
|
|
369
|
+
type: "composition-1.0" | "sense-image-1.0" | "sense-data-1.0" | "sense-sheet-1.0" | "sense-story-1.0" | "qv-data-1.0" | "qv-data-2.0" | "sense-excel-template-1.0" | "sense-pixel-perfect-template-1.0" | "sense-html-template-1.0";
|
|
368
370
|
};
|
|
369
371
|
type ReportStatus = {
|
|
370
372
|
/** @deprecated
|
package/reports.js
CHANGED
package/roles.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './invoke-fetch-types-
|
|
1
|
+
import { A as ApiCallOptions } from './invoke-fetch-types-BXn-uSF5.js';
|
|
2
2
|
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
type CreateRole = {
|
|
@@ -207,7 +207,7 @@ type GetRoleHttpError = {
|
|
|
207
207
|
* @param body an object with the body content
|
|
208
208
|
* @throws PatchRoleHttpError
|
|
209
209
|
*/
|
|
210
|
-
declare const patchRole: (id: string, body: PatchRoles
|
|
210
|
+
declare const patchRole: (id: string, body: PatchRoles, options?: ApiCallOptions) => Promise<PatchRoleHttpResponse>;
|
|
211
211
|
type PatchRoleHttpResponse = {
|
|
212
212
|
data: void;
|
|
213
213
|
headers: Headers;
|
package/roles.js
CHANGED
package/spaces.d.ts
CHANGED
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
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
package/webhooks.js
CHANGED