@qlik/api 1.21.0 → 1.23.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 +10 -2
- 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 +23 -23
- package/brands.js +2 -2
- package/chunks/{2OQLWLWE.js → 3KD5W26Z.js} +3 -3
- package/chunks/{3FHEUGST.js → 3REGOC54.js} +38 -31
- package/chunks/{JCJIPO2A.js → 3W4PFUMC.js} +1 -1
- package/chunks/7RHSSS4W.js +0 -0
- package/chunks/{LVRC5AWE.js → CUC5USM5.js} +2 -1
- package/chunks/{GVE5ABSG.js → E5TLRYTH.js} +2 -1
- package/chunks/{BUSRKHDX.js → OCV75U5H.js} +107 -10
- package/chunks/{DTGUILK5.js → SMQGR3VM.js} +2 -2
- package/chunks/{4M3Q6QY3.js → UJV2QU2J.js} +43 -23
- package/chunks/{YQLW56LG.js → VXEOAWM6.js} +1 -1
- package/collections.d.ts +1 -1
- package/collections.js +2 -2
- package/csp-origins.d.ts +1 -1
- package/csp-origins.js +2 -2
- package/data-assets.d.ts +1 -1
- package/data-assets.js +2 -2
- package/data-connections.d.ts +2 -2
- package/data-connections.js +2 -2
- package/data-credentials.d.ts +64 -2
- package/data-credentials.js +11 -2
- package/data-files.d.ts +1 -1
- package/data-files.js +2 -2
- package/extensions.d.ts +1 -1
- package/extensions.js +2 -2
- package/{global.types--37uwGji.d.ts → global.types-qsBNouXJ.d.ts} +18 -0
- 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 +17 -17
- package/identity-providers.js +2 -2
- package/index.d.ts +1 -1
- package/index.js +6 -5
- 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 +2 -2
- package/qix.d.ts +8 -3
- 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 +4 -4
- package/reloads.js +2 -2
- package/reports.d.ts +39 -3
- package/reports.js +2 -2
- package/roles.d.ts +1 -1
- package/roles.js +2 -2
- package/spaces.d.ts +3 -1
- package/spaces.js +2 -2
- package/temp-contents.d.ts +1 -1
- package/temp-contents.js +2 -2
- package/tenants.d.ts +25 -16
- 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 +2 -2
- 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 +22 -22
- package/webhooks.js +2 -2
package/glossaries.js
CHANGED
package/groups.d.ts
CHANGED
package/groups.js
CHANGED
package/identity-providers.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
|
|
2
2
|
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
type BaseIDP = {
|
|
@@ -470,7 +470,7 @@ type ClaimsMappingSAML = {
|
|
|
470
470
|
sub: string[];
|
|
471
471
|
};
|
|
472
472
|
/**
|
|
473
|
-
* This endpoint retrieves
|
|
473
|
+
* This endpoint retrieves any IdPs registered on the tenant.
|
|
474
474
|
*
|
|
475
475
|
* @param query an object with query parameters
|
|
476
476
|
* @throws GetIdpsHttpError
|
|
@@ -498,7 +498,7 @@ type GetIdpsHttpError = {
|
|
|
498
498
|
status: number;
|
|
499
499
|
};
|
|
500
500
|
/**
|
|
501
|
-
*
|
|
501
|
+
* Creates a new IdP on a tenant. Requesting user must be assigned the `TenantAdmin` role. For non-interactive IdPs (e.g. JWT), IdP must be created by sending `options` payload. For interactive IdPs (e.g. SAML or OIDC), send `pendingOptions` payload to require the interactive verification step; or send `options` payload with `skipVerify` set to `true` to skip validation step and make IdP immediately available.
|
|
502
502
|
*
|
|
503
503
|
* @param body an object with the body content
|
|
504
504
|
* @throws CreateIdpHttpError
|
|
@@ -515,7 +515,7 @@ type CreateIdpHttpError = {
|
|
|
515
515
|
status: number;
|
|
516
516
|
};
|
|
517
517
|
/**
|
|
518
|
-
*
|
|
518
|
+
* Returns IdP configuration metadata supported on the tenant. Clients can use this information to programmatically configure their interactions with Qlik Cloud.
|
|
519
519
|
*
|
|
520
520
|
* @throws GetIdpWellKnownMetaDataHttpError
|
|
521
521
|
*/
|
|
@@ -531,7 +531,7 @@ type GetIdpWellKnownMetaDataHttpError = {
|
|
|
531
531
|
status: number;
|
|
532
532
|
};
|
|
533
533
|
/**
|
|
534
|
-
*
|
|
534
|
+
* Retrieves default IdP metadata when no interactive IdP is enabled.
|
|
535
535
|
*
|
|
536
536
|
* @throws GetMyIdpMetaHttpError
|
|
537
537
|
*/
|
|
@@ -547,7 +547,7 @@ type GetMyIdpMetaHttpError = {
|
|
|
547
547
|
status: number;
|
|
548
548
|
};
|
|
549
549
|
/**
|
|
550
|
-
*
|
|
550
|
+
* Retrieves the status of all IdP configurations. Requires `TenantAdmin` role.
|
|
551
551
|
*
|
|
552
552
|
* @throws GetIdpStatusesHttpError
|
|
553
553
|
*/
|
|
@@ -563,7 +563,7 @@ type GetIdpStatusesHttpError = {
|
|
|
563
563
|
status: number;
|
|
564
564
|
};
|
|
565
565
|
/**
|
|
566
|
-
*
|
|
566
|
+
* Deletes an identity provider. Requesting user must be assigned the `TenantAdmin` role.
|
|
567
567
|
*
|
|
568
568
|
* @param id The identity provider ID.
|
|
569
569
|
* @throws DeleteIdpHttpError
|
|
@@ -580,7 +580,7 @@ type DeleteIdpHttpError = {
|
|
|
580
580
|
status: number;
|
|
581
581
|
};
|
|
582
582
|
/**
|
|
583
|
-
*
|
|
583
|
+
* Retrieves a specific IdP. Requesting user must be assigned the `TenantAdmin` role.
|
|
584
584
|
*
|
|
585
585
|
* @param id The identity provider ID.
|
|
586
586
|
* @throws GetIdpHttpError
|
|
@@ -597,7 +597,7 @@ type GetIdpHttpError = {
|
|
|
597
597
|
status: number;
|
|
598
598
|
};
|
|
599
599
|
/**
|
|
600
|
-
*
|
|
600
|
+
* Updates the configuration of an IdP. Requesting user must be assigned the `TenantAdmin` role. Partial failure is treated as complete failure and returns an error.
|
|
601
601
|
*
|
|
602
602
|
* @param id The identity provider ID.
|
|
603
603
|
* @param body an object with the body content
|
|
@@ -620,53 +620,53 @@ type PatchIdpHttpError = {
|
|
|
620
620
|
declare function clearCache(): void;
|
|
621
621
|
interface IdentityProvidersAPI {
|
|
622
622
|
/**
|
|
623
|
-
* This endpoint retrieves
|
|
623
|
+
* This endpoint retrieves any IdPs registered on the tenant.
|
|
624
624
|
*
|
|
625
625
|
* @param query an object with query parameters
|
|
626
626
|
* @throws GetIdpsHttpError
|
|
627
627
|
*/
|
|
628
628
|
getIdps: typeof getIdps;
|
|
629
629
|
/**
|
|
630
|
-
*
|
|
630
|
+
* Creates a new IdP on a tenant. Requesting user must be assigned the `TenantAdmin` role. For non-interactive IdPs (e.g. JWT), IdP must be created by sending `options` payload. For interactive IdPs (e.g. SAML or OIDC), send `pendingOptions` payload to require the interactive verification step; or send `options` payload with `skipVerify` set to `true` to skip validation step and make IdP immediately available.
|
|
631
631
|
*
|
|
632
632
|
* @param body an object with the body content
|
|
633
633
|
* @throws CreateIdpHttpError
|
|
634
634
|
*/
|
|
635
635
|
createIdp: typeof createIdp;
|
|
636
636
|
/**
|
|
637
|
-
*
|
|
637
|
+
* Returns IdP configuration metadata supported on the tenant. Clients can use this information to programmatically configure their interactions with Qlik Cloud.
|
|
638
638
|
*
|
|
639
639
|
* @throws GetIdpWellKnownMetaDataHttpError
|
|
640
640
|
*/
|
|
641
641
|
getIdpWellKnownMetaData: typeof getIdpWellKnownMetaData;
|
|
642
642
|
/**
|
|
643
|
-
*
|
|
643
|
+
* Retrieves default IdP metadata when no interactive IdP is enabled.
|
|
644
644
|
*
|
|
645
645
|
* @throws GetMyIdpMetaHttpError
|
|
646
646
|
*/
|
|
647
647
|
getMyIdpMeta: typeof getMyIdpMeta;
|
|
648
648
|
/**
|
|
649
|
-
*
|
|
649
|
+
* Retrieves the status of all IdP configurations. Requires `TenantAdmin` role.
|
|
650
650
|
*
|
|
651
651
|
* @throws GetIdpStatusesHttpError
|
|
652
652
|
*/
|
|
653
653
|
getIdpStatuses: typeof getIdpStatuses;
|
|
654
654
|
/**
|
|
655
|
-
*
|
|
655
|
+
* Deletes an identity provider. Requesting user must be assigned the `TenantAdmin` role.
|
|
656
656
|
*
|
|
657
657
|
* @param id The identity provider ID.
|
|
658
658
|
* @throws DeleteIdpHttpError
|
|
659
659
|
*/
|
|
660
660
|
deleteIdp: typeof deleteIdp;
|
|
661
661
|
/**
|
|
662
|
-
*
|
|
662
|
+
* Retrieves a specific IdP. Requesting user must be assigned the `TenantAdmin` role.
|
|
663
663
|
*
|
|
664
664
|
* @param id The identity provider ID.
|
|
665
665
|
* @throws GetIdpHttpError
|
|
666
666
|
*/
|
|
667
667
|
getIdp: typeof getIdp;
|
|
668
668
|
/**
|
|
669
|
-
*
|
|
669
|
+
* Updates the configuration of an IdP. Requesting user must be assigned the `TenantAdmin` role. Partial failure is treated as complete failure and returns an error.
|
|
670
670
|
*
|
|
671
671
|
* @param id The identity provider ID.
|
|
672
672
|
* @param body an object with the body content
|
package/identity-providers.js
CHANGED
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
|
|
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/
|
|
3
|
+
} from "./chunks/VXEOAWM6.js";
|
|
4
4
|
import {
|
|
5
5
|
auth_default
|
|
6
|
-
} from "./chunks/
|
|
7
|
-
import "./chunks/
|
|
6
|
+
} from "./chunks/3W4PFUMC.js";
|
|
7
|
+
import "./chunks/7RHSSS4W.js";
|
|
8
8
|
import {
|
|
9
9
|
clearApiCache,
|
|
10
10
|
invokeFetch
|
|
11
|
-
} from "./chunks/
|
|
12
|
-
import "./chunks/
|
|
11
|
+
} from "./chunks/SMQGR3VM.js";
|
|
12
|
+
import "./chunks/3KD5W26Z.js";
|
|
13
13
|
import "./chunks/2ZQ3ZX7F.js";
|
|
14
14
|
|
|
15
15
|
// src/runtime-api-generator/runtime-api-generator-common.ts
|
|
@@ -401,6 +401,7 @@ var dataCredentialsMiniModule = apiDefToApiPublic("data-credentials", {
|
|
|
401
401
|
api: {
|
|
402
402
|
v1: {
|
|
403
403
|
"data-credentials": {
|
|
404
|
+
actions: { "filter-orphan": ["filterOrphanedDataCredentials:PBJ:"] },
|
|
404
405
|
"{qID}": [
|
|
405
406
|
"deleteDataCredential:DQ:",
|
|
406
407
|
"getDataCredential:GQ:",
|
package/items.d.ts
CHANGED
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.12.2",
|
|
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.23.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
|
|
2
|
+
import './global.types-qsBNouXJ.js';
|
|
3
3
|
|
|
4
|
-
declare const QIX_SCHEMA_VERSION = "12.
|
|
4
|
+
declare const QIX_SCHEMA_VERSION = "12.2224.0";
|
|
5
5
|
type AlfaNumString = {
|
|
6
6
|
/**
|
|
7
7
|
* Calculated value.
|
|
@@ -11679,7 +11679,12 @@ 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;
|
|
11684
|
+
/** Workload Type */
|
|
11685
|
+
workloadType?: WorkloadType;
|
|
11682
11686
|
};
|
|
11687
|
+
type WorkloadType = "interact" | "report" | "reload" | "prepare" | "analyse" | "odag" | "dataflows" | "dynamicviews" | "appgeneration" | "evaluate" | "profile" | "di-qvd-gen" | "alert-preview" | "alert-evaluations" | "reporting-analytic" | "reporting-batch" | "automation" | "insight-advisor" | "automl-load" | "discovery";
|
|
11683
11688
|
type DocAction = (doc: Doc) => Promise<unknown>;
|
|
11684
11689
|
type CloseProps = {
|
|
11685
11690
|
/**
|
|
@@ -11785,4 +11790,4 @@ declare const qix: QixAPI & {
|
|
|
11785
11790
|
withHostConfig: (hostConfig: HostConfig | undefined) => QixAPI;
|
|
11786
11791
|
};
|
|
11787
11792
|
|
|
11788
|
-
export { type AlfaNumString, type AlternateStateData, type AnyGenericObjectLayout, type AnyGenericObjectProperties, type AppEntry, type AppObjectList, type AppObjectListDef, type AppScript, type AppScriptMeta, type AppSession, type ApplyGroupStateWarning, type ApplyGroupStateWarningType, type ApplyGroupStatesResult, type ArrayOfNxValuePoint, type AssociationScore, type BNFDef, type BNFDefMetaType, type BNFType, type Blob, type Bookmark, type BookmarkApplyAndVerifyResult, type BookmarkFieldItem, type BookmarkFieldPage, type BookmarkFieldPageEx, type BookmarkFieldVerifyResultState, type BookmarkFieldVerifyWarning, type BookmarkList, type BookmarkListData, type BookmarkListDef, type BookmarkListItem, type BookmarkStateFieldPages, type BookmarkVariableItem, type CalendarStrings, type CharEncodingType, type CharRange, type ChildList, type ChildListDef, type CloseProps, type CodePage, type CombinedWebSocketStateEvent, type CondDef, type Connection, type ContentLibraryList, type ContentLibraryListItem, type CurrentSelections, type CustomConnector, type CyclicGroupPosition, type DataField, type DataRecord, type DataTable, type DataTableEx, type Database, type DatabaseInfo, type DatabaseOwner, type DelimiterInfo, type DerivedFieldsInTableData, type DimensionList, type DimensionListData, type DimensionListDef, type DimensionListItem, type DimensionReference, type DoReloadExParams, type DoReloadExResult, type Doc, type DocAction, type DocListEntry, type DriveInfo, type DriveType, type DynamicAppViewListData, type DynamicAppViewListItem, type EditorBreakpoint, type EmbeddedSnapshot, type EmbeddedSnapshotDef, type ErrorData, type ErrorDataCode, type ExpandedFieldListItem, type ExpansionData, type ExtendedLayoutBookmarkData, type ExtendedPivotStateData, type ExtensionList, type ExtensionListDef, type Field, type FieldAttrType, type FieldAttributes, type FieldDefEx, type FieldDescription, type FieldInTableData, type FieldInTableProfilingData, type FieldList, type FieldListDef, type FieldListObject, type FieldOrColumn, type FieldScores, type FieldType, type FieldValue, type FileDataFormat, type FileType, type FilterInfo, type FilterType, type FolderItem, type FolderItemType, type FrequencyDistributionData, type FunctionGroup, type GenericBookmark, type GenericBookmarkEntry, type GenericBookmarkLayout, type GenericBookmarkProperties, type GenericConnectMachine, type GenericDimension, type GenericDimensionInfo, type GenericDimensionLayout, type GenericDimensionProperties, type GenericListObject, type GenericMeasure, type GenericMeasureLayout, type GenericMeasureProperties, type GenericObject, type GenericObjectEntry, type GenericObjectLayout, type GenericObjectLayoutAdditionalProperties, type GenericObjectLayoutNode, type GenericObjectLayoutNodeLevel2, type GenericObjectLayoutNodeLevel3, type GenericObjectLayoutNodeLevel4, type GenericObjectLayoutNodeLevel5, type GenericObjectLayoutNodeRec, type GenericObjectProperties, type GenericObjectPropertiesAdditionalProperties, type GenericObjectPropertiesNode, type GenericObjectPropertiesNodeLevel2, type GenericObjectPropertiesNodeLevel3, type GenericObjectPropertiesNodeLevel4, type GenericObjectPropertiesNodeLevel5, type GenericObjectPropertiesNodeRec, type GenericVariable, type GenericVariableLayout, type GenericVariableProperties, type Global, type GraphMode, type GroupBookmarkData, type GroupState, type GroupStateInfo, type HyperCube, type HyperCubeDef, type InputFieldItem, type InterFieldSortData, type InteractDef, type InteractType, type KeyType, type LayoutBookmarkData, type LayoutExclude, type LayoutFieldInfo, type LineageInfo, type ListBoxProperties, type ListFunctions, type ListItem, type ListObject, type ListObjectDef, type LocaleInfo, type LogOnType, type MasterObjectListData, type MasterObjectListItem, type MeasureList, type MeasureListData, type MeasureListDef, type MeasureListItem, type MediaListDef, type MediaListItem, type MetaData, type ModalFunctions, type NativeDocFunctions, type NativeFieldFunctions, type NativeGenericBookmarkFunctions, type NativeGenericDimensionFunctions, type NativeGenericMeasureFunctions, type NativeGenericObjectFunctions, type NativeGenericVariableFunctions, type NativeGlobalFunctions, type NativeReactHooks, type NativeVariableFunctions, type NxAppLayout, type NxAppProperties, type NxAttrDimDef, type NxAttrDimInfo, type NxAttrExprDef, type NxAttrExprInfo, type NxAttributeDimValues, type NxAttributeExpressionValues, type NxAutoSortByStateDef, type NxAxisData, type NxAxisTicks, type NxBookmark, type NxCalcCond, type NxCardinalities, type NxCell, type NxCellPosition, type NxCellRows, type NxContainerEntry, type NxContinuousDataOptions, type NxContinuousMode, type NxContinuousRangeSelectInfo, type NxCurrentSelectionItem, type NxDataAreaPage, type NxDataPage, type NxDataReductionMode, type NxDerivedField, type NxDerivedFieldDescriptionList, type NxDerivedFieldsData, type NxDerivedGroup, type NxDimCellType, type NxDimension, type NxDimensionInfo, type NxDimensionType, type NxDownloadInfo, type NxDownloadOptions, type NxEngineVersion, type NxExportFileType, type NxExportState, type NxFeature, type NxFieldDescription, type NxFieldProperties, type NxFieldResourceId, type NxFieldSelectionInfo, type NxFieldSelectionMode, type NxFieldTableResourceId, type NxFrequencyMode, type NxGetBookmarkOptions, type NxGetObjectOptions, type NxGroupTail, type NxGrpType, type NxHighlightRanges, type NxHypercubeMode, type NxInfo, type NxInlineDimensionDef, type NxInlineMeasureDef, type NxLTrendlineType, type NxLayoutErrors, type NxLibraryDimension, type NxLibraryDimensionDef, type NxLibraryMeasure, type NxLibraryMeasureDef, type NxLinkedObjectInfo, type NxListObjectExpression, type NxListObjectExpressionDef, type NxLocalizedErrorCode, type NxLocalizedWarningCode, type NxMatchingFieldInfo, type NxMatchingFieldMode, type NxMeasure, type NxMeasureInfo, type NxMeta, type NxMetaDef, type NxMiniChart, type NxMiniChartCell, type NxMiniChartData, type NxMiniChartDef, type NxMiniChartRows, type NxMultiRangeSelectInfo, type NxPage, type NxPageTreeLevel, type NxPageTreeNode, type NxPatch, type NxPatchOperationType, type NxPatches, type NxPivotDimensionCell, type NxPivotPage, type NxPivotValuePoint, type NxRange, type NxRangeSelectInfo, type NxSelectionCell, type NxSelectionCellType, type NxSelectionInfo, type NxSimpleDimValue, type NxSimpleValue, type NxSortIndicatorType, type NxStackPage, type NxStackedPivotCell, type NxStateCounts, type NxStreamListEntry, type NxTempBookmarkOptions, type NxTickCell, type NxTreeDataOption, type NxTreeDimensionDef, type NxTreeDimensionInfo, type NxTreeMultiRangeSelectInfo, type NxTreeNode, type NxTreeRangeSelectInfo, type NxTreeValue, type NxTrendline, type NxTrendlineDef, type NxTrendlineMode, type NxValidationError, type NxVariableListItem, type NxVariableProperties, type NxViewPort, type ODAGAppLinkListData, type ODAGAppLinkListItem, type ObjectHelperFunctions, type ObjectInterface, type OdbcDsn, type OleDbProvider, type OpenAppSessionProps, type OtherLimitMode, type OtherMode, type OtherSortMode, type OtherTotalSpecProp, type Point, type PositionMark, type ProgressData, type ProgressMessage, type QFunction, QIX_SCHEMA_VERSION, type QMediaList, type QRange, type QixAPI, type RangeSelectInfo, type Rect, type RpcObject, type SampleResult, type ScriptSyntaxError, type ScrollPosition, type SearchAssociationResult, type SearchAttribute, type SearchCharRange, type SearchCombinationOptions, type SearchContextType, type SearchFieldDictionary, type SearchFieldMatch, type SearchFieldMatchType, type SearchFieldMatchesItem, type SearchFieldSelectionMode, type SearchFieldValueItem, type SearchGroup, type SearchGroupItem, type SearchGroupItemMatch, type SearchGroupItemOptions, type SearchGroupItemType, type SearchGroupOptions, type SearchGroupType, type SearchMatchCombination, type SearchMatchCombinations, type SearchObjectOptions, type SearchPage, type SearchResult, type SearchSuggestItem, type SearchSuggestionResult, type SearchTermResult, type SearchValueOptions, type SearchValuePage, type SearchValueResult, type SelectInfo, type SelectionObject, type SelectionObjectDef, type SheetListData, type SheetListDataCell, type SheetListDataCellBounds, type SheetListItem, type Size, type SortCriteria, type SourceKeyRecord, type SpecialObjectFunctions, type StandardFunctions, type StateEnumType, type StateFieldValues, type StaticContentList, type StaticContentListItem, type StaticContentUrl, type StaticContentUrlDef, type StoryListData, type StoryListItem, type StringExpr, type StringExpression, type SymbolFrequency, type SymbolValue, type TableProfilingData, type TableRecord, type TableRow, type TableViewBroomPointSaveInfo, type TableViewConnectionPointSaveInfo, type TableViewCtlSaveInfo, type TableViewDlgSaveInfo, type TableViewSaveInfo, type TableViewTableWinSaveInfo, type TextMacro, type TotalMode, type TransformAppParameters, type TransformAppResult, type TreeData, type TreeDataDef, type UndoInfo, type UndoInfoDef, type UndoInfoObject, type UsageEnum, type UseAppHook, type ValueExpr, type ValueExpression, type VariableList, type VariableListData, type VariableListDef, type VariableListItem, type WebSocketEvent, qix as default, openAppSession, withHostConfig };
|
|
11793
|
+
export { type AlfaNumString, type AlternateStateData, type AnyGenericObjectLayout, type AnyGenericObjectProperties, type AppEntry, type AppObjectList, type AppObjectListDef, type AppScript, type AppScriptMeta, type AppSession, type ApplyGroupStateWarning, type ApplyGroupStateWarningType, type ApplyGroupStatesResult, type ArrayOfNxValuePoint, type AssociationScore, type BNFDef, type BNFDefMetaType, type BNFType, type Blob, type Bookmark, type BookmarkApplyAndVerifyResult, type BookmarkFieldItem, type BookmarkFieldPage, type BookmarkFieldPageEx, type BookmarkFieldVerifyResultState, type BookmarkFieldVerifyWarning, type BookmarkList, type BookmarkListData, type BookmarkListDef, type BookmarkListItem, type BookmarkStateFieldPages, type BookmarkVariableItem, type CalendarStrings, type CharEncodingType, type CharRange, type ChildList, type ChildListDef, type CloseProps, type CodePage, type CombinedWebSocketStateEvent, type CondDef, type Connection, type ContentLibraryList, type ContentLibraryListItem, type CurrentSelections, type CustomConnector, type CyclicGroupPosition, type DataField, type DataRecord, type DataTable, type DataTableEx, type Database, type DatabaseInfo, type DatabaseOwner, type DelimiterInfo, type DerivedFieldsInTableData, type DimensionList, type DimensionListData, type DimensionListDef, type DimensionListItem, type DimensionReference, type DoReloadExParams, type DoReloadExResult, type Doc, type DocAction, type DocListEntry, type DriveInfo, type DriveType, type DynamicAppViewListData, type DynamicAppViewListItem, type EditorBreakpoint, type EmbeddedSnapshot, type EmbeddedSnapshotDef, type ErrorData, type ErrorDataCode, type ExpandedFieldListItem, type ExpansionData, type ExtendedLayoutBookmarkData, type ExtendedPivotStateData, type ExtensionList, type ExtensionListDef, type Field, type FieldAttrType, type FieldAttributes, type FieldDefEx, type FieldDescription, type FieldInTableData, type FieldInTableProfilingData, type FieldList, type FieldListDef, type FieldListObject, type FieldOrColumn, type FieldScores, type FieldType, type FieldValue, type FileDataFormat, type FileType, type FilterInfo, type FilterType, type FolderItem, type FolderItemType, type FrequencyDistributionData, type FunctionGroup, type GenericBookmark, type GenericBookmarkEntry, type GenericBookmarkLayout, type GenericBookmarkProperties, type GenericConnectMachine, type GenericDimension, type GenericDimensionInfo, type GenericDimensionLayout, type GenericDimensionProperties, type GenericListObject, type GenericMeasure, type GenericMeasureLayout, type GenericMeasureProperties, type GenericObject, type GenericObjectEntry, type GenericObjectLayout, type GenericObjectLayoutAdditionalProperties, type GenericObjectLayoutNode, type GenericObjectLayoutNodeLevel2, type GenericObjectLayoutNodeLevel3, type GenericObjectLayoutNodeLevel4, type GenericObjectLayoutNodeLevel5, type GenericObjectLayoutNodeRec, type GenericObjectProperties, type GenericObjectPropertiesAdditionalProperties, type GenericObjectPropertiesNode, type GenericObjectPropertiesNodeLevel2, type GenericObjectPropertiesNodeLevel3, type GenericObjectPropertiesNodeLevel4, type GenericObjectPropertiesNodeLevel5, type GenericObjectPropertiesNodeRec, type GenericVariable, type GenericVariableLayout, type GenericVariableProperties, type Global, type GraphMode, type GroupBookmarkData, type GroupState, type GroupStateInfo, type HyperCube, type HyperCubeDef, type InputFieldItem, type InterFieldSortData, type InteractDef, type InteractType, type KeyType, type LayoutBookmarkData, type LayoutExclude, type LayoutFieldInfo, type LineageInfo, type ListBoxProperties, type ListFunctions, type ListItem, type ListObject, type ListObjectDef, type LocaleInfo, type LogOnType, type MasterObjectListData, type MasterObjectListItem, type MeasureList, type MeasureListData, type MeasureListDef, type MeasureListItem, type MediaListDef, type MediaListItem, type MetaData, type ModalFunctions, type NativeDocFunctions, type NativeFieldFunctions, type NativeGenericBookmarkFunctions, type NativeGenericDimensionFunctions, type NativeGenericMeasureFunctions, type NativeGenericObjectFunctions, type NativeGenericVariableFunctions, type NativeGlobalFunctions, type NativeReactHooks, type NativeVariableFunctions, type NxAppLayout, type NxAppProperties, type NxAttrDimDef, type NxAttrDimInfo, type NxAttrExprDef, type NxAttrExprInfo, type NxAttributeDimValues, type NxAttributeExpressionValues, type NxAutoSortByStateDef, type NxAxisData, type NxAxisTicks, type NxBookmark, type NxCalcCond, type NxCardinalities, type NxCell, type NxCellPosition, type NxCellRows, type NxContainerEntry, type NxContinuousDataOptions, type NxContinuousMode, type NxContinuousRangeSelectInfo, type NxCurrentSelectionItem, type NxDataAreaPage, type NxDataPage, type NxDataReductionMode, type NxDerivedField, type NxDerivedFieldDescriptionList, type NxDerivedFieldsData, type NxDerivedGroup, type NxDimCellType, type NxDimension, type NxDimensionInfo, type NxDimensionType, type NxDownloadInfo, type NxDownloadOptions, type NxEngineVersion, type NxExportFileType, type NxExportState, type NxFeature, type NxFieldDescription, type NxFieldProperties, type NxFieldResourceId, type NxFieldSelectionInfo, type NxFieldSelectionMode, type NxFieldTableResourceId, type NxFrequencyMode, type NxGetBookmarkOptions, type NxGetObjectOptions, type NxGroupTail, type NxGrpType, type NxHighlightRanges, type NxHypercubeMode, type NxInfo, type NxInlineDimensionDef, type NxInlineMeasureDef, type NxLTrendlineType, type NxLayoutErrors, type NxLibraryDimension, type NxLibraryDimensionDef, type NxLibraryMeasure, type NxLibraryMeasureDef, type NxLinkedObjectInfo, type NxListObjectExpression, type NxListObjectExpressionDef, type NxLocalizedErrorCode, type NxLocalizedWarningCode, type NxMatchingFieldInfo, type NxMatchingFieldMode, type NxMeasure, type NxMeasureInfo, type NxMeta, type NxMetaDef, type NxMiniChart, type NxMiniChartCell, type NxMiniChartData, type NxMiniChartDef, type NxMiniChartRows, type NxMultiRangeSelectInfo, type NxPage, type NxPageTreeLevel, type NxPageTreeNode, type NxPatch, type NxPatchOperationType, type NxPatches, type NxPivotDimensionCell, type NxPivotPage, type NxPivotValuePoint, type NxRange, type NxRangeSelectInfo, type NxSelectionCell, type NxSelectionCellType, type NxSelectionInfo, type NxSimpleDimValue, type NxSimpleValue, type NxSortIndicatorType, type NxStackPage, type NxStackedPivotCell, type NxStateCounts, type NxStreamListEntry, type NxTempBookmarkOptions, type NxTickCell, type NxTreeDataOption, type NxTreeDimensionDef, type NxTreeDimensionInfo, type NxTreeMultiRangeSelectInfo, type NxTreeNode, type NxTreeRangeSelectInfo, type NxTreeValue, type NxTrendline, type NxTrendlineDef, type NxTrendlineMode, type NxValidationError, type NxVariableListItem, type NxVariableProperties, type NxViewPort, type ODAGAppLinkListData, type ODAGAppLinkListItem, type ObjectHelperFunctions, type ObjectInterface, type OdbcDsn, type OleDbProvider, type OpenAppSessionProps, type OtherLimitMode, type OtherMode, type OtherSortMode, type OtherTotalSpecProp, type Point, type PositionMark, type ProgressData, type ProgressMessage, type QFunction, QIX_SCHEMA_VERSION, type QMediaList, type QRange, type QixAPI, type RangeSelectInfo, type Rect, type RpcObject, type SampleResult, type ScriptSyntaxError, type ScrollPosition, type SearchAssociationResult, type SearchAttribute, type SearchCharRange, type SearchCombinationOptions, type SearchContextType, type SearchFieldDictionary, type SearchFieldMatch, type SearchFieldMatchType, type SearchFieldMatchesItem, type SearchFieldSelectionMode, type SearchFieldValueItem, type SearchGroup, type SearchGroupItem, type SearchGroupItemMatch, type SearchGroupItemOptions, type SearchGroupItemType, type SearchGroupOptions, type SearchGroupType, type SearchMatchCombination, type SearchMatchCombinations, type SearchObjectOptions, type SearchPage, type SearchResult, type SearchSuggestItem, type SearchSuggestionResult, type SearchTermResult, type SearchValueOptions, type SearchValuePage, type SearchValueResult, type SelectInfo, type SelectionObject, type SelectionObjectDef, type SheetListData, type SheetListDataCell, type SheetListDataCellBounds, type SheetListItem, type Size, type SortCriteria, type SourceKeyRecord, type SpecialObjectFunctions, type StandardFunctions, type StateEnumType, type StateFieldValues, type StaticContentList, type StaticContentListItem, type StaticContentUrl, type StaticContentUrlDef, type StoryListData, type StoryListItem, type StringExpr, type StringExpression, type SymbolFrequency, type SymbolValue, type TableProfilingData, type TableRecord, type TableRow, type TableViewBroomPointSaveInfo, type TableViewConnectionPointSaveInfo, type TableViewCtlSaveInfo, type TableViewDlgSaveInfo, type TableViewSaveInfo, type TableViewTableWinSaveInfo, type TextMacro, type TotalMode, type TransformAppParameters, type TransformAppResult, type TreeData, type TreeDataDef, type UndoInfo, type UndoInfoDef, type UndoInfoObject, type UsageEnum, type UseAppHook, type ValueExpr, type ValueExpression, type VariableList, type VariableListData, type VariableListDef, type VariableListItem, type WebSocketEvent, type WorkloadType, qix as default, openAppSession, withHostConfig };
|
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,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
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
package/reports.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
|
|
2
2
|
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -110,7 +110,41 @@ type ExportError = {
|
|
|
110
110
|
* - "REP-500047" Error setting GroupState.
|
|
111
111
|
* - "REP-403048" Forbidden. User does not have permission to export the report (access control usePermission)
|
|
112
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
|
|
113
|
+
* - "REP-500014" The app did not open within 10 minutes.
|
|
114
|
+
* - "REP-400017" Static App size exceeded.
|
|
115
|
+
* - "REP-400018" Excel string length exceeded.
|
|
116
|
+
* - "REP-403019" Export is not available for app with enabled directQuery feature.
|
|
117
|
+
* - "REP-409001" App conflict.
|
|
118
|
+
* - "REP-503001" Rest Engine Error.
|
|
119
|
+
* - "REP-400020" Invalid Issuer.
|
|
120
|
+
* - "REP-400028" Invalid Tags.
|
|
121
|
+
* - "REP-409021" Reload timestamp constraint not met.
|
|
122
|
+
* - "REP-429022" Enigma generic abort.
|
|
123
|
+
* - "REP-500023" Validate Report Request Tags failure.
|
|
124
|
+
* - "REP-400024" Cannot extract claims from JWT.
|
|
125
|
+
* - "REP-403025" No entitlement to perform the operation.
|
|
126
|
+
* - "REP-403026" No entitlement to perform the operation. Export capability is off.
|
|
127
|
+
* - "REP-403027" Object without Hypercube or unsupported object type.
|
|
128
|
+
* - "REP-422030" Apply variables error.
|
|
129
|
+
* - "REP-500200" Report Generator error.
|
|
130
|
+
* - "REP-400035" Multiple selections detected in a field having OneAndOnlyone attribute.
|
|
131
|
+
* - "REP-400036" No selection detected in a field having OneAndOnlyone attribute.
|
|
132
|
+
* - "REP-400037" Max number of images exceeded in a report.
|
|
133
|
+
* - "REP-400038" Max number of nested levels exceeded in report.
|
|
134
|
+
* - "REP-400039" Max number of objects exceeded in a report.
|
|
135
|
+
* - "REP-400040" Max number of templates exceeded in a report.
|
|
136
|
+
* - "REP-400041" Unsupported dimension type for level tag.
|
|
137
|
+
* - "REP-500240" Engine Global generic closure error.
|
|
138
|
+
* - "REP-500260" Engine Websocket generic closure error.
|
|
139
|
+
* - "REP-500280" Engine proxy generic closure error.
|
|
140
|
+
* - "REP-400240" Engine Client Global generic closure error
|
|
141
|
+
* - "REP-400260" Engine Client generic closure error.
|
|
142
|
+
* - "REP-400280" Engine Client proxy generic closure error.
|
|
143
|
+
* - "REP-500045" Failure setting Bookmark timestamp.
|
|
144
|
+
* - "REP-400050" Error retrieving outputs.
|
|
145
|
+
* - "REP-400052" Report Request Aborted from internal error.
|
|
146
|
+
* - "REP-500053" Unexpected number of generated cycle reports.
|
|
147
|
+
* - "REP-400054" The number of generated cycle reports exceeds the maximum allowed. */
|
|
114
148
|
code: string;
|
|
115
149
|
/** Optional. MAY be used to provide more concrete details. */
|
|
116
150
|
detail?: string;
|
|
@@ -146,7 +180,7 @@ type ImageOutput = {
|
|
|
146
180
|
* Define the request metadata. It includes priority, deadline and future settings on execution policy of the request.
|
|
147
181
|
*/
|
|
148
182
|
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
|
|
183
|
+
/** 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
184
|
exportDeadline?: string;
|
|
151
185
|
/** 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
186
|
outputTtl?: string;
|
|
@@ -303,6 +337,8 @@ type ReportRequest = {
|
|
|
303
337
|
/** Define the request metadata. It includes priority, deadline and future settings on execution policy of the request. */
|
|
304
338
|
meta?: Meta;
|
|
305
339
|
output: OutputItem;
|
|
340
|
+
/** The callback to be performed once the report is done. */
|
|
341
|
+
requestCallBackAction?: CallBackAction;
|
|
306
342
|
senseDataTemplate?: SenseDataTemplate;
|
|
307
343
|
/** Used to produce reports from a template file. */
|
|
308
344
|
senseExcelTemplate?: SenseFileTemplate;
|
package/reports.js
CHANGED
package/roles.d.ts
CHANGED
package/roles.js
CHANGED
package/spaces.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
|
|
2
2
|
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -359,6 +359,8 @@ type UpdateSpaceHttpError = {
|
|
|
359
359
|
* @throws GetSpaceAssignmentsHttpError
|
|
360
360
|
*/
|
|
361
361
|
declare const getSpaceAssignments: (spaceId: string, query: {
|
|
362
|
+
/** Filters assignment for a specific assigneeid. */
|
|
363
|
+
assigneeId?: string;
|
|
362
364
|
/** Maximum number of assignments to return. */
|
|
363
365
|
limit?: number;
|
|
364
366
|
/** The next page cursor. Next links make use of this. */
|
package/spaces.js
CHANGED
package/temp-contents.d.ts
CHANGED
package/temp-contents.js
CHANGED