@qlik/api 1.6.0 → 1.6.1
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/audits.d.ts +0 -2
- package/chunks/S3X62FNR.js +1 -1
- package/identity-providers.d.ts +3 -3
- package/package.json +1 -1
- package/qix.d.ts +1 -1
- package/roles.d.ts +4 -1
package/audits.d.ts
CHANGED
package/chunks/S3X62FNR.js
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
} from "./I5CSZHWM.js";
|
|
7
7
|
|
|
8
8
|
// src/public/invoke-fetch.ts
|
|
9
|
-
var defaultUserAgent = "qlik-api/1.6.
|
|
9
|
+
var defaultUserAgent = "qlik-api/1.6.1";
|
|
10
10
|
async function invokeFetch(api, props) {
|
|
11
11
|
const hostConfig = props.options?.hostConfig;
|
|
12
12
|
let userAgent;
|
package/identity-providers.d.ts
CHANGED
|
@@ -40,7 +40,7 @@ type CertificateInfo = {
|
|
|
40
40
|
* Payload for creating an identity provider using JWT authentication.
|
|
41
41
|
*/
|
|
42
42
|
type CreateJWTAuthPayload = {
|
|
43
|
-
/** There can be clock skew between the IdP and Qlik's login server
|
|
43
|
+
/** There can be clock skew between the IdP and Qlik's login server. In these cases, a tolerance can be set. */
|
|
44
44
|
clockToleranceSec?: number;
|
|
45
45
|
description?: string;
|
|
46
46
|
/** Required IdP configurations. */
|
|
@@ -66,7 +66,7 @@ type CreateJWTAuthPayload = {
|
|
|
66
66
|
* Payload for creating an OIDC-compatible identity provider.
|
|
67
67
|
*/
|
|
68
68
|
type CreateOIDCPayload = {
|
|
69
|
-
/** There can be clock skew between the IdP and Qlik's login server. In these cases, a tolerance can be set
|
|
69
|
+
/** There can be clock skew between the IdP and Qlik's login server. In these cases, a tolerance can be set. */
|
|
70
70
|
clockToleranceSec?: number;
|
|
71
71
|
/** Tells the consumer of the IdP that new users should be created on login if they don't exist. */
|
|
72
72
|
createNewUsersOnLogin?: boolean;
|
|
@@ -126,7 +126,7 @@ type CreateOIDCPayload = {
|
|
|
126
126
|
* Payload for creating a SAML compatible identity provider.
|
|
127
127
|
*/
|
|
128
128
|
type CreateSAMLPayload = {
|
|
129
|
-
/** There can be clock skew between the IdP and Qlik's login server. In these cases, a tolerance can be set
|
|
129
|
+
/** There can be clock skew between the IdP and Qlik's login server. In these cases, a tolerance can be set. */
|
|
130
130
|
clockToleranceSec?: number;
|
|
131
131
|
/** Tells the consumer of the IdP that new users should be created on login if they don't exist. */
|
|
132
132
|
createNewUsersOnLogin?: boolean;
|
package/package.json
CHANGED
package/qix.d.ts
CHANGED
package/roles.d.ts
CHANGED
|
@@ -68,7 +68,8 @@ type Role = {
|
|
|
68
68
|
readonly createdBy?: string;
|
|
69
69
|
/** Descriptive text for the role. */
|
|
70
70
|
description: string;
|
|
71
|
-
/**
|
|
71
|
+
/** @deprecated
|
|
72
|
+
* DEPRECATED. does not work. */
|
|
72
73
|
readonly fullUser?: boolean;
|
|
73
74
|
/** The unique identifier for the role. */
|
|
74
75
|
readonly id: string;
|
|
@@ -93,6 +94,8 @@ type Role = {
|
|
|
93
94
|
type: "default";
|
|
94
95
|
/** Id of user that last updated`` role */
|
|
95
96
|
readonly updatedBy?: string;
|
|
97
|
+
/** Indicate whether this role will trigger promotion of a user from a basic to a full user on tenants with a capacity-based subscription. Does not apply to tenants with a user-based subscription. */
|
|
98
|
+
readonly userEntitlementType?: string;
|
|
96
99
|
};
|
|
97
100
|
/**
|
|
98
101
|
* Returns a list of roles using cursor-based pagination.
|