Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: qlik api updates #57

Merged
merged 1 commit into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions audits.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ import { A as ApiCallOptions } from './global.types-Xt6XzwlN.js';
import './auth-types-Bqw3vbLs.js';

type ErrorResponse = {
/** @deprecated */
error?: string;
errors?: {
code?: string;
detail?: string;
Expand Down
6 changes: 3 additions & 3 deletions identity-providers.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ type CertificateInfo = {
* Payload for creating an identity provider using JWT authentication.
*/
type CreateJWTAuthPayload = {
/** 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. */
/** There can be clock skew between the IdP and Qlik's login server. In these cases, a tolerance can be set. */
clockToleranceSec?: number;
description?: string;
/** Required IdP configurations. */
Expand All @@ -66,7 +66,7 @@ type CreateJWTAuthPayload = {
* Payload for creating an OIDC-compatible identity provider.
*/
type CreateOIDCPayload = {
/** 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. */
/** There can be clock skew between the IdP and Qlik's login server. In these cases, a tolerance can be set. */
clockToleranceSec?: number;
/** Tells the consumer of the IdP that new users should be created on login if they don't exist. */
createNewUsersOnLogin?: boolean;
Expand Down Expand Up @@ -126,7 +126,7 @@ type CreateOIDCPayload = {
* Payload for creating a SAML compatible identity provider.
*/
type CreateSAMLPayload = {
/** 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. */
/** There can be clock skew between the IdP and Qlik's login server. In these cases, a tolerance can be set. */
clockToleranceSec?: number;
/** Tells the consumer of the IdP that new users should be created on login if they don't exist. */
createNewUsersOnLogin?: boolean;
Expand Down
2 changes: 1 addition & 1 deletion qix.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import './global.types-Xt6XzwlN.js';
import { H as HostConfig } from './auth-types-Bqw3vbLs.js';

declare const QIX_SCHEMA_VERSION = "12.2071.0";
declare const QIX_SCHEMA_VERSION = "12.2082.0";
type AlfaNumString = {
/**
* Calculated value.
Expand Down
5 changes: 4 additions & 1 deletion roles.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ type Role = {
readonly createdBy?: string;
/** Descriptive text for the role. */
description: string;
/** 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. */
/** @deprecated
* DEPRECATED. does not work. */
readonly fullUser?: boolean;
/** The unique identifier for the role. */
readonly id: string;
Expand All @@ -93,6 +94,8 @@ type Role = {
type: "default";
/** Id of user that last updated`` role */
readonly updatedBy?: string;
/** 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. */
readonly userEntitlementType?: string;
};
/**
* Returns a list of roles using cursor-based pagination.
Expand Down
Loading