@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 CHANGED
@@ -2,8 +2,6 @@ import { A as ApiCallOptions } from './global.types-Xt6XzwlN.js';
2
2
  import './auth-types-Bqw3vbLs.js';
3
3
 
4
4
  type ErrorResponse = {
5
- /** @deprecated */
6
- error?: string;
7
5
  errors?: {
8
6
  code?: string;
9
7
  detail?: string;
@@ -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.0";
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;
@@ -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, in these cases a tolerance can be set, decimals will be rounded off. */
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, decimals will be rounded off. */
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, decimals will be rounded off. */
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
@@ -54,5 +54,5 @@
54
54
  "./qix": "./qix.js",
55
55
  "./auth": "./auth.js"
56
56
  },
57
- "version": "1.6.0"
57
+ "version": "1.6.1"
58
58
  }
package/qix.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import './global.types-Xt6XzwlN.js';
2
2
  import { H as HostConfig } from './auth-types-Bqw3vbLs.js';
3
3
 
4
- declare const QIX_SCHEMA_VERSION = "12.2071.0";
4
+ declare const QIX_SCHEMA_VERSION = "12.2082.0";
5
5
  type AlfaNumString = {
6
6
  /**
7
7
  * Calculated value.
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
- /** 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. */
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.