@qlik/api 1.22.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.js +2 -2
- package/apps.d.ts +9 -1
- package/apps.js +2 -2
- package/audits.js +2 -2
- package/auth.js +2 -2
- package/automations.js +2 -2
- package/brands.d.ts +22 -22
- package/brands.js +2 -2
- package/chunks/{SNQHDUYY.js → 3KD5W26Z.js} +3 -3
- package/chunks/{PR52AAWU.js → 3REGOC54.js} +35 -31
- package/chunks/{TGDZVKG2.js → 3W4PFUMC.js} +1 -1
- package/chunks/{SEBN4KFZ.js → CUC5USM5.js} +1 -1
- package/chunks/{GZRY5VHW.js → E5TLRYTH.js} +1 -1
- package/chunks/{OEVNZ5IQ.js → OCV75U5H.js} +9 -8
- package/chunks/{TUPLQG25.js → SMQGR3VM.js} +2 -2
- package/chunks/{KBR7JBWC.js → UJV2QU2J.js} +37 -23
- package/chunks/{VHPC6L7L.js → VXEOAWM6.js} +1 -1
- package/collections.js +2 -2
- package/csp-origins.js +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 +63 -1
- package/data-credentials.js +11 -2
- package/data-files.js +2 -2
- package/extensions.js +2 -2
- package/glossaries.js +2 -2
- package/groups.js +2 -2
- package/identity-providers.d.ts +16 -16
- package/identity-providers.js +2 -2
- package/index.js +5 -4
- package/items.js +2 -2
- package/licenses.js +2 -2
- package/package.json +2 -2
- package/qix.d.ts +5 -2
- package/qix.js +2 -2
- package/quotas.js +2 -2
- package/reload-tasks.js +2 -2
- package/reloads.js +2 -2
- package/reports.d.ts +37 -1
- package/reports.js +2 -2
- package/roles.js +2 -2
- package/spaces.d.ts +2 -0
- package/spaces.js +2 -2
- package/temp-contents.js +2 -2
- package/tenants.d.ts +24 -15
- package/tenants.js +2 -2
- package/themes.js +2 -2
- package/transports.js +2 -2
- package/users.d.ts +1 -1
- package/users.js +2 -2
- package/web-integrations.js +2 -2
- package/web-notifications.js +2 -2
- package/webhooks.js +2 -2
package/data-assets.js
CHANGED
package/data-connections.d.ts
CHANGED
|
@@ -300,7 +300,7 @@ declare const getDataConnections: (query: {
|
|
|
300
300
|
dataName?: string;
|
|
301
301
|
/** Returns extended list of properties (e.g. encrypted credential string) when set to true. */
|
|
302
302
|
extended?: boolean;
|
|
303
|
-
/** Filtering resources by properties (filterable properties only) using SCIM filter string. Note the filter string only applies to connections managed by data-connections service, i.e. filtering doesn't apply to DataFile connections. */
|
|
303
|
+
/** Filtering resources by properties (filterable properties only) using SCIM filter string. Note the filter string only applies to connections managed by data-connections service, i.e. filtering doesn't apply to DataFile connections. When filtering on datetime property (e.g. created, updated), datetime should be in RFC3339 format. */
|
|
304
304
|
filter?: string;
|
|
305
305
|
/** Base Qri (encrypted) will be returned when the query is set to true, default is false */
|
|
306
306
|
includeQris?: boolean;
|
package/data-connections.js
CHANGED
package/data-credentials.d.ts
CHANGED
|
@@ -1,7 +1,22 @@
|
|
|
1
1
|
import { A as ApiCallOptions } from './global.types-qsBNouXJ.js';
|
|
2
2
|
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
|
+
type ActionFilterOrphanRequest = {
|
|
5
|
+
/** Filtering on datasource ID of credentials */
|
|
6
|
+
datasourceID?: string;
|
|
7
|
+
/** Filtering on separate status of credentials: * 0 - embedded credential * 1 - separated credential */
|
|
8
|
+
qSeparated?: 0 | 1;
|
|
9
|
+
/** Filtering on type of credentials */
|
|
10
|
+
qType?: string;
|
|
11
|
+
};
|
|
12
|
+
type ActionFilterOrphanResponse = {
|
|
13
|
+
/** Number of orphan credentials found */
|
|
14
|
+
count: number;
|
|
15
|
+
data: OrphanCredentialResItem[];
|
|
16
|
+
};
|
|
4
17
|
type Credential = {
|
|
18
|
+
/** Datetime when the credential was created */
|
|
19
|
+
created?: string;
|
|
5
20
|
/** ID datasource that the credential is created for */
|
|
6
21
|
datasourceID?: string;
|
|
7
22
|
links?: Link;
|
|
@@ -15,6 +30,8 @@ type Credential = {
|
|
|
15
30
|
qReferenceKey?: string;
|
|
16
31
|
/** Type of credential */
|
|
17
32
|
qType: string;
|
|
33
|
+
/** Datetime when the credential was last updated */
|
|
34
|
+
updated?: string;
|
|
18
35
|
};
|
|
19
36
|
/**
|
|
20
37
|
* Credential
|
|
@@ -53,6 +70,27 @@ type Link = {
|
|
|
53
70
|
href: string;
|
|
54
71
|
};
|
|
55
72
|
};
|
|
73
|
+
/**
|
|
74
|
+
* Orphan credential
|
|
75
|
+
*/
|
|
76
|
+
type OrphanCredentialResItem = {
|
|
77
|
+
/** Datetime when the credential was created */
|
|
78
|
+
created: string;
|
|
79
|
+
/** ID datasource that the credential is created for */
|
|
80
|
+
datasourceID?: string;
|
|
81
|
+
/** UUID of the credential */
|
|
82
|
+
qID: string;
|
|
83
|
+
/** Name of the credential */
|
|
84
|
+
qName: string;
|
|
85
|
+
/** Type of credential (i.e. connector provider of the corresponding connection) */
|
|
86
|
+
qType: string;
|
|
87
|
+
/** Tenant ID of the credential's owner */
|
|
88
|
+
tenant?: string;
|
|
89
|
+
/** Datetime when the credential was last updated */
|
|
90
|
+
updated: string;
|
|
91
|
+
/** User ID of the credential's owner */
|
|
92
|
+
user?: string;
|
|
93
|
+
};
|
|
56
94
|
type PatchRequest = {
|
|
57
95
|
patchData: {
|
|
58
96
|
/** Operation type */
|
|
@@ -66,6 +104,23 @@ type PatchRequest = {
|
|
|
66
104
|
type ResponseErrors = {
|
|
67
105
|
errors?: Errors;
|
|
68
106
|
};
|
|
107
|
+
/**
|
|
108
|
+
* Gets list of orphan data credentials (i.e. credentials that are not associated to any data connection) filtering on properties defined in request body
|
|
109
|
+
*
|
|
110
|
+
* @param body an object with the body content
|
|
111
|
+
* @throws FilterOrphanedDataCredentialsHttpError
|
|
112
|
+
*/
|
|
113
|
+
declare const filterOrphanedDataCredentials: (body: ActionFilterOrphanRequest, options?: ApiCallOptions) => Promise<FilterOrphanedDataCredentialsHttpResponse>;
|
|
114
|
+
type FilterOrphanedDataCredentialsHttpResponse = {
|
|
115
|
+
data: ActionFilterOrphanResponse;
|
|
116
|
+
headers: Headers;
|
|
117
|
+
status: number;
|
|
118
|
+
};
|
|
119
|
+
type FilterOrphanedDataCredentialsHttpError = {
|
|
120
|
+
data: ResponseErrors;
|
|
121
|
+
headers: Headers;
|
|
122
|
+
status: number;
|
|
123
|
+
};
|
|
69
124
|
/**
|
|
70
125
|
* Deletes the specified credential by ID (or by name when type=credentialname is set in query)
|
|
71
126
|
*
|
|
@@ -157,6 +212,13 @@ type UpdateDataCredentialHttpError = {
|
|
|
157
212
|
*/
|
|
158
213
|
declare function clearCache(): void;
|
|
159
214
|
interface DataCredentialsAPI {
|
|
215
|
+
/**
|
|
216
|
+
* Gets list of orphan data credentials (i.e. credentials that are not associated to any data connection) filtering on properties defined in request body
|
|
217
|
+
*
|
|
218
|
+
* @param body an object with the body content
|
|
219
|
+
* @throws FilterOrphanedDataCredentialsHttpError
|
|
220
|
+
*/
|
|
221
|
+
filterOrphanedDataCredentials: typeof filterOrphanedDataCredentials;
|
|
160
222
|
/**
|
|
161
223
|
* Deletes the specified credential by ID (or by name when type=credentialname is set in query)
|
|
162
224
|
*
|
|
@@ -201,4 +263,4 @@ interface DataCredentialsAPI {
|
|
|
201
263
|
*/
|
|
202
264
|
declare const dataCredentialsExport: DataCredentialsAPI;
|
|
203
265
|
|
|
204
|
-
export { type Credential, type CredentialCreate, type DataCredentialsAPI, type DeleteDataCredentialHttpError, type DeleteDataCredentialHttpResponse, type Error, type Errors, type GetDataCredentialHttpError, type GetDataCredentialHttpResponse, type Link, type PatchDataCredentialHttpError, type PatchDataCredentialHttpResponse, type PatchRequest, type ResponseErrors, type UpdateDataCredentialHttpError, type UpdateDataCredentialHttpResponse, clearCache, dataCredentialsExport as default, deleteDataCredential, getDataCredential, patchDataCredential, updateDataCredential };
|
|
266
|
+
export { type ActionFilterOrphanRequest, type ActionFilterOrphanResponse, type Credential, type CredentialCreate, type DataCredentialsAPI, type DeleteDataCredentialHttpError, type DeleteDataCredentialHttpResponse, type Error, type Errors, type FilterOrphanedDataCredentialsHttpError, type FilterOrphanedDataCredentialsHttpResponse, type GetDataCredentialHttpError, type GetDataCredentialHttpResponse, type Link, type OrphanCredentialResItem, type PatchDataCredentialHttpError, type PatchDataCredentialHttpResponse, type PatchRequest, type ResponseErrors, type UpdateDataCredentialHttpError, type UpdateDataCredentialHttpResponse, clearCache, dataCredentialsExport as default, deleteDataCredential, filterOrphanedDataCredentials, getDataCredential, patchDataCredential, updateDataCredential };
|
package/data-credentials.js
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
import {
|
|
2
2
|
clearApiCache,
|
|
3
3
|
invokeFetch
|
|
4
|
-
} from "./chunks/
|
|
5
|
-
import "./chunks/
|
|
4
|
+
} from "./chunks/SMQGR3VM.js";
|
|
5
|
+
import "./chunks/3KD5W26Z.js";
|
|
6
6
|
import "./chunks/2ZQ3ZX7F.js";
|
|
7
7
|
|
|
8
8
|
// src/public/rest/data-credentials.ts
|
|
9
|
+
var filterOrphanedDataCredentials = async (body, options) => invokeFetch("data-credentials", {
|
|
10
|
+
method: "post",
|
|
11
|
+
pathTemplate: "/api/v1/data-credentials/actions/filter-orphan",
|
|
12
|
+
body,
|
|
13
|
+
contentType: "application/json",
|
|
14
|
+
options
|
|
15
|
+
});
|
|
9
16
|
var deleteDataCredential = async (qID, query, options) => invokeFetch("data-credentials", {
|
|
10
17
|
method: "delete",
|
|
11
18
|
pathTemplate: "/api/v1/data-credentials/{qID}",
|
|
@@ -42,6 +49,7 @@ function clearCache() {
|
|
|
42
49
|
return clearApiCache("data-credentials");
|
|
43
50
|
}
|
|
44
51
|
var dataCredentialsExport = {
|
|
52
|
+
filterOrphanedDataCredentials,
|
|
45
53
|
deleteDataCredential,
|
|
46
54
|
getDataCredential,
|
|
47
55
|
patchDataCredential,
|
|
@@ -53,6 +61,7 @@ export {
|
|
|
53
61
|
clearCache,
|
|
54
62
|
data_credentials_default as default,
|
|
55
63
|
deleteDataCredential,
|
|
64
|
+
filterOrphanedDataCredentials,
|
|
56
65
|
getDataCredential,
|
|
57
66
|
patchDataCredential,
|
|
58
67
|
updateDataCredential
|
package/data-files.js
CHANGED
package/extensions.js
CHANGED
package/glossaries.js
CHANGED
package/groups.js
CHANGED
package/identity-providers.d.ts
CHANGED
|
@@ -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.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/
|
|
6
|
+
} from "./chunks/3W4PFUMC.js";
|
|
7
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.js
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
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.
|
|
@@ -11681,7 +11681,10 @@ type OpenAppSessionProps = {
|
|
|
11681
11681
|
useReloadEngine?: boolean;
|
|
11682
11682
|
/** Time-to-live in seconds. */
|
|
11683
11683
|
ttlSeconds?: number;
|
|
11684
|
+
/** Workload Type */
|
|
11685
|
+
workloadType?: WorkloadType;
|
|
11684
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";
|
|
11685
11688
|
type DocAction = (doc: Doc) => Promise<unknown>;
|
|
11686
11689
|
type CloseProps = {
|
|
11687
11690
|
/**
|
|
@@ -11787,4 +11790,4 @@ declare const qix: QixAPI & {
|
|
|
11787
11790
|
withHostConfig: (hostConfig: HostConfig | undefined) => QixAPI;
|
|
11788
11791
|
};
|
|
11789
11792
|
|
|
11790
|
-
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.js
CHANGED
package/reload-tasks.js
CHANGED
package/reloads.js
CHANGED
package/reports.d.ts
CHANGED
|
@@ -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;
|
|
@@ -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