@qlik/api 1.14.0 → 1.16.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 +2 -2
- package/api-keys.js +2 -2
- package/apps.d.ts +2 -2
- package/apps.js +2 -2
- package/audits.d.ts +2 -2
- package/audits.js +2 -2
- package/{auth-types-Bqw3vbLs.d.ts → auth-types-BU5EGt_9.d.ts} +1 -0
- package/auth.d.ts +2 -2
- package/auth.js +2 -2
- package/automations.d.ts +2 -2
- package/automations.js +2 -2
- package/brands.d.ts +2 -2
- package/brands.js +2 -2
- package/chunks/{D7TSCA65.js → 3XRP5N4L.js} +375 -234
- package/chunks/{RJSXIVZK.js → 6O3XBOLZ.js} +1 -1
- package/chunks/{7TFYIWPM.js → 7IMOYFWE.js} +9 -3
- package/chunks/{ZJKE2OY5.js → ECWQX4IH.js} +1 -1
- package/chunks/{64ZZ22PG.js → GXMVBX45.js} +1 -1
- package/chunks/{4VOVGPYE.js → MFNOHOWH.js} +2 -2
- package/chunks/{FFOAWSDK.js → O3XVX7VQ.js} +1 -1
- package/chunks/{OJ64BEOX.js → PESPSFQN.js} +1 -1
- package/chunks/{O25AVKJT.js → TBHMVTOT.js} +1 -1
- package/chunks/{VCS5M2TX.js → YHKRUQRS.js} +2 -2
- package/collections.d.ts +2 -2
- package/collections.js +2 -2
- package/csp-origins.d.ts +2 -2
- package/csp-origins.js +2 -2
- package/data-assets.d.ts +4 -2
- package/data-assets.js +2 -2
- package/data-connections.d.ts +9 -9
- package/data-connections.js +2 -2
- package/data-credentials.d.ts +7 -7
- package/data-credentials.js +2 -2
- package/data-files.d.ts +2 -2
- package/data-files.js +2 -2
- package/extensions.d.ts +2 -2
- package/extensions.js +2 -2
- package/{global.types-Xt6XzwlN.d.ts → global.types-z1p6A9D-.d.ts} +12 -1
- package/glossaries.d.ts +2 -2
- package/glossaries.js +2 -2
- package/groups.d.ts +2 -2
- package/groups.js +2 -2
- package/identity-providers.d.ts +5 -3
- package/identity-providers.js +2 -2
- package/index.d.ts +2 -2
- package/index.js +4 -4
- package/items.d.ts +2 -2
- package/items.js +2 -2
- package/licenses.d.ts +2 -2
- package/licenses.js +2 -2
- package/package.json +3 -2
- package/qix.d.ts +85 -7
- package/qix.js +2 -2
- package/quotas.d.ts +2 -2
- package/quotas.js +2 -2
- package/reload-tasks.d.ts +2 -2
- package/reload-tasks.js +2 -2
- package/reloads.d.ts +2 -2
- package/reloads.js +2 -2
- package/reports.d.ts +8 -4
- package/reports.js +2 -2
- package/roles.d.ts +2 -2
- package/roles.js +2 -2
- package/spaces.d.ts +2 -2
- package/spaces.js +2 -2
- package/temp-contents.d.ts +2 -2
- package/temp-contents.js +2 -2
- package/tenants.d.ts +2 -2
- package/tenants.js +2 -2
- package/themes.d.ts +2 -2
- package/themes.js +2 -2
- package/transports.d.ts +2 -2
- package/transports.js +2 -2
- package/users.d.ts +2 -2
- package/users.js +2 -2
- package/web-integrations.d.ts +2 -2
- package/web-integrations.js +2 -2
- package/web-notifications.d.ts +4 -2
- package/web-notifications.js +2 -2
- package/webhooks.d.ts +6 -4
- package/webhooks.js +2 -2
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
// src/public/public-runtime-modules.ts
|
|
2
2
|
function getAuthRuntimeModule(hostConfig) {
|
|
3
3
|
const isNode = !!globalThis.process?.argv;
|
|
4
|
-
return isNode ? import("./
|
|
4
|
+
return isNode ? import("./PESPSFQN.js") : import("./TBHMVTOT.js").then(
|
|
5
|
+
(mod) => mod.importRuntimeModule("auth@v1", hostConfig)
|
|
6
|
+
);
|
|
5
7
|
}
|
|
6
8
|
async function getQixRuntimeModule(hostConfig) {
|
|
7
9
|
await getAuthRuntimeModule(hostConfig);
|
|
8
10
|
const isNode = !!globalThis.process?.argv;
|
|
9
|
-
return isNode ? import("./
|
|
11
|
+
return isNode ? import("./YHKRUQRS.js") : import("./TBHMVTOT.js").then(
|
|
12
|
+
(mod) => mod.importRuntimeModule("qix@v1", hostConfig)
|
|
13
|
+
);
|
|
10
14
|
}
|
|
11
15
|
async function getInvokeFetchRuntimeModule(hostConfig) {
|
|
12
16
|
await getAuthRuntimeModule(hostConfig);
|
|
13
17
|
const isNode = !!globalThis.process?.argv;
|
|
14
|
-
return isNode ? import("./
|
|
18
|
+
return isNode ? import("./ECWQX4IH.js") : import("./TBHMVTOT.js").then(
|
|
19
|
+
(mod) => mod.importRuntimeModule("invoke-fetch@v1", hostConfig)
|
|
20
|
+
);
|
|
15
21
|
}
|
|
16
22
|
|
|
17
23
|
export {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getInvokeFetchRuntimeModule
|
|
3
|
-
} from "./
|
|
3
|
+
} from "./7IMOYFWE.js";
|
|
4
4
|
import {
|
|
5
5
|
isBrowser
|
|
6
6
|
} from "./2ZQ3ZX7F.js";
|
|
7
7
|
|
|
8
8
|
// src/public/invoke-fetch.ts
|
|
9
|
-
var defaultUserAgent = "qlik-api/1.
|
|
9
|
+
var defaultUserAgent = "qlik-api/1.16.0";
|
|
10
10
|
async function invokeFetch(api, props) {
|
|
11
11
|
const hostConfig = props.options?.hostConfig;
|
|
12
12
|
let userAgent;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// node_modules/.pnpm/@qlik+runtime-module-loader@1.0.
|
|
1
|
+
// node_modules/.pnpm/@qlik+runtime-module-loader@1.0.8/node_modules/@qlik/runtime-module-loader/dist/index.js
|
|
2
2
|
window.__qlikMainPrivateResolvers = window.__qlikMainPrivateResolvers || {};
|
|
3
3
|
window.__qlikMainPrivateResolvers.mainUrlPromise = window.__qlikMainPrivateResolvers.mainUrlPromise || new Promise((resolve) => {
|
|
4
4
|
window.__qlikMainPrivateResolvers.resolveMainJsUrl = (value) => resolve(value);
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
invokeFetch,
|
|
5
5
|
isWindows,
|
|
6
6
|
toValidWebsocketLocationUrl
|
|
7
|
-
} from "./
|
|
7
|
+
} from "./3XRP5N4L.js";
|
|
8
8
|
import {
|
|
9
9
|
isBrowser
|
|
10
10
|
} from "./2ZQ3ZX7F.js";
|
|
@@ -101,7 +101,7 @@ function listenForWindowsAuthenticationInformation(session) {
|
|
|
101
101
|
return authSuggestedInWebsocket;
|
|
102
102
|
}
|
|
103
103
|
async function createAndSetupEnigmaSession(props, canRetry) {
|
|
104
|
-
const { createEnigmaSession } = await import("./
|
|
104
|
+
const { createEnigmaSession } = await import("./O3XVX7VQ.js");
|
|
105
105
|
const session = await createEnigmaSession(props);
|
|
106
106
|
setupSessionListeners(session, props);
|
|
107
107
|
let global;
|
package/collections.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-z1p6A9D-.js';
|
|
2
|
+
import './auth-types-BU5EGt_9.js';
|
|
3
3
|
|
|
4
4
|
type CollectionByIdPatch = {
|
|
5
5
|
/** The operation to be performed. */
|
package/collections.js
CHANGED
package/csp-origins.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-z1p6A9D-.js';
|
|
2
|
+
import './auth-types-BU5EGt_9.js';
|
|
3
3
|
|
|
4
4
|
type CSPEntry = {
|
|
5
5
|
/** The CSP entry's unique identifier. */
|
package/csp-origins.js
CHANGED
package/data-assets.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-z1p6A9D-.js';
|
|
2
|
+
import './auth-types-BU5EGt_9.js';
|
|
3
3
|
|
|
4
4
|
type BatchIdDto = {
|
|
5
5
|
ids?: string[];
|
|
@@ -11,6 +11,8 @@ type DataAsset = {
|
|
|
11
11
|
readonly createdBy?: string;
|
|
12
12
|
/** The value is automatically set by the application. User defined value is ignored. */
|
|
13
13
|
readonly createdTime?: string;
|
|
14
|
+
/** The date-time when the source data was last changed */
|
|
15
|
+
dataFreshness?: string;
|
|
14
16
|
dataStoreInfo?: DataStoreInfo;
|
|
15
17
|
description?: string;
|
|
16
18
|
/** Only required when updating the resource. Must be null for new resources. */
|
package/data-assets.js
CHANGED
package/data-connections.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-z1p6A9D-.js';
|
|
2
|
+
import './auth-types-BU5EGt_9.js';
|
|
3
3
|
|
|
4
4
|
type ActionDeleteRequest = {
|
|
5
5
|
connections: {
|
|
@@ -176,7 +176,7 @@ type ConnectionUpdate = {
|
|
|
176
176
|
qArchitecture?: 0 | 1;
|
|
177
177
|
/** Connection string for the data connection */
|
|
178
178
|
qConnectStatement: string;
|
|
179
|
-
/** String that contains connection level secret (or password). If this field presents in request, then existing connection secret will be updated to its value. If is an empty string, then
|
|
179
|
+
/** String that contains connection level secret (or password). If this field presents in request, then existing connection secret will be updated to its value. If is an empty string, then existing connection secret will be cleared. If this field is missing, existing secret will not be updated. */
|
|
180
180
|
qConnectionSecret?: string;
|
|
181
181
|
/** ID of the credential associated with the connection */
|
|
182
182
|
qCredentialsID?: string;
|
|
@@ -243,7 +243,7 @@ type Error = {
|
|
|
243
243
|
};
|
|
244
244
|
type Errors = Error[];
|
|
245
245
|
type Link = {
|
|
246
|
-
/** Link to
|
|
246
|
+
/** Link to current query */
|
|
247
247
|
self: {
|
|
248
248
|
/** URL pointing to the resource */
|
|
249
249
|
href: string;
|
|
@@ -281,7 +281,7 @@ type TopLevelLink = {
|
|
|
281
281
|
/** URL pointing to the previous page of resources */
|
|
282
282
|
href: string;
|
|
283
283
|
};
|
|
284
|
-
/** Link to
|
|
284
|
+
/** Link to current query */
|
|
285
285
|
self: {
|
|
286
286
|
/** URL pointing to the resource */
|
|
287
287
|
href: string;
|
|
@@ -314,7 +314,7 @@ declare const getDataConnections: (query: {
|
|
|
314
314
|
ownedByMe?: boolean;
|
|
315
315
|
/** Filtering on datafile connections by owner (i.e. app) ID. */
|
|
316
316
|
owner?: string;
|
|
317
|
-
/** Pagination
|
|
317
|
+
/** Pagination cursor string, which is generated automatically in previous pagination query. */
|
|
318
318
|
page?: string;
|
|
319
319
|
/** Filtering on personal connections, ignored if spaceId is defined in same request */
|
|
320
320
|
personal?: boolean;
|
|
@@ -389,7 +389,7 @@ type DuplicateDataAConnectionHttpError = {
|
|
|
389
389
|
status: number;
|
|
390
390
|
};
|
|
391
391
|
/**
|
|
392
|
-
* Update multiple connections, only available to Admin
|
|
392
|
+
* Update multiple connections, only available to Admin. When update is to change ownership of a connection, the credentials associated with the connection will NOT be transferred to the new owner, and new owner is expected to provide their own credentials for the connection.
|
|
393
393
|
*
|
|
394
394
|
* @param body an object with the body content
|
|
395
395
|
* @throws UpdateDataConnectionsHttpError
|
|
@@ -436,7 +436,7 @@ type DeleteDataConnectionHttpError = {
|
|
|
436
436
|
* @throws GetDataConnectionHttpError
|
|
437
437
|
*/
|
|
438
438
|
declare const getDataConnection: (qID: string, query: {
|
|
439
|
-
/** If set to true, credentialId in the query will be
|
|
439
|
+
/** If set to true, credentialId in the query will be interpreted as credential's name */
|
|
440
440
|
byCredentialName?: boolean;
|
|
441
441
|
/** Credential ID */
|
|
442
442
|
credentialId?: string;
|
|
@@ -541,7 +541,7 @@ interface DataConnectionsAPI {
|
|
|
541
541
|
*/
|
|
542
542
|
duplicateDataAConnection: typeof duplicateDataAConnection;
|
|
543
543
|
/**
|
|
544
|
-
* Update multiple connections, only available to Admin
|
|
544
|
+
* Update multiple connections, only available to Admin. When update is to change ownership of a connection, the credentials associated with the connection will NOT be transferred to the new owner, and new owner is expected to provide their own credentials for the connection.
|
|
545
545
|
*
|
|
546
546
|
* @param body an object with the body content
|
|
547
547
|
* @throws UpdateDataConnectionsHttpError
|
package/data-connections.js
CHANGED
package/data-credentials.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-z1p6A9D-.js';
|
|
2
|
+
import './auth-types-BU5EGt_9.js';
|
|
3
3
|
|
|
4
4
|
type Credential = {
|
|
5
5
|
/** ID datasource that the credential is created for */
|
|
@@ -47,7 +47,7 @@ type Error = {
|
|
|
47
47
|
};
|
|
48
48
|
type Errors = Error[];
|
|
49
49
|
type Link = {
|
|
50
|
-
/** Link to
|
|
50
|
+
/** Link to current query */
|
|
51
51
|
self: {
|
|
52
52
|
/** URL pointing to the resource */
|
|
53
53
|
href: string;
|
|
@@ -74,7 +74,7 @@ type ResponseErrors = {
|
|
|
74
74
|
* @throws DeleteDataCredentialHttpError
|
|
75
75
|
*/
|
|
76
76
|
declare const deleteDataCredential: (qID: string, query: {
|
|
77
|
-
/** If set to true, credentialId in the query will be
|
|
77
|
+
/** If set to true, credentialId in the query will be interpreted as credential's name */
|
|
78
78
|
byCredentialName?: boolean;
|
|
79
79
|
}, options?: ApiCallOptions) => Promise<DeleteDataCredentialHttpResponse>;
|
|
80
80
|
type DeleteDataCredentialHttpResponse = {
|
|
@@ -95,7 +95,7 @@ type DeleteDataCredentialHttpError = {
|
|
|
95
95
|
* @throws GetDataCredentialHttpError
|
|
96
96
|
*/
|
|
97
97
|
declare const getDataCredential: (qID: string, query: {
|
|
98
|
-
/** If set to true, credentialId in the query will be
|
|
98
|
+
/** If set to true, credentialId in the query will be interpreted as credential's name */
|
|
99
99
|
byCredentialName?: boolean;
|
|
100
100
|
}, options?: ApiCallOptions) => Promise<GetDataCredentialHttpResponse>;
|
|
101
101
|
type GetDataCredentialHttpResponse = {
|
|
@@ -117,7 +117,7 @@ type GetDataCredentialHttpError = {
|
|
|
117
117
|
* @throws PatchDataCredentialHttpError
|
|
118
118
|
*/
|
|
119
119
|
declare const patchDataCredential: (qID: string, query: {
|
|
120
|
-
/** If set to true, credentialId in the query will be
|
|
120
|
+
/** If set to true, credentialId in the query will be interpreted as credential's name */
|
|
121
121
|
byCredentialName?: boolean;
|
|
122
122
|
}, body: PatchRequest, options?: ApiCallOptions) => Promise<PatchDataCredentialHttpResponse>;
|
|
123
123
|
type PatchDataCredentialHttpResponse = {
|
|
@@ -139,7 +139,7 @@ type PatchDataCredentialHttpError = {
|
|
|
139
139
|
* @throws UpdateDataCredentialHttpError
|
|
140
140
|
*/
|
|
141
141
|
declare const updateDataCredential: (qID: string, query: {
|
|
142
|
-
/** If set to true, credentialId in the query will be
|
|
142
|
+
/** If set to true, credentialId in the query will be interpreted as credential's name */
|
|
143
143
|
byCredentialName?: boolean;
|
|
144
144
|
}, body: CredentialCreate, options?: ApiCallOptions) => Promise<UpdateDataCredentialHttpResponse>;
|
|
145
145
|
type UpdateDataCredentialHttpResponse = {
|
package/data-credentials.js
CHANGED
package/data-files.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-z1p6A9D-.js';
|
|
2
|
+
import './auth-types-BU5EGt_9.js';
|
|
3
3
|
|
|
4
4
|
type BatchChangeSpaceItem = {
|
|
5
5
|
/** The ID of the data file whose space will be changed. */
|
package/data-files.js
CHANGED
package/extensions.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-z1p6A9D-.js';
|
|
2
|
+
import './auth-types-BU5EGt_9.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Object containing meta data regarding the bundle the extension belongs to. If it does not belong to a bundle, this object is not defined.
|
package/extensions.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { H as HostConfig } from './auth-types-
|
|
1
|
+
import { H as HostConfig } from './auth-types-BU5EGt_9.js';
|
|
2
2
|
|
|
3
3
|
/** An entry in the cache for one specific cacheKey */
|
|
4
4
|
type CacheEntry = {
|
|
@@ -100,6 +100,14 @@ type Oauth2AuthConfig = {
|
|
|
100
100
|
*/
|
|
101
101
|
userId?: string;
|
|
102
102
|
};
|
|
103
|
+
type AnonymousAuthConfig = {
|
|
104
|
+
/**
|
|
105
|
+
* Experimental and unsupported
|
|
106
|
+
*/
|
|
107
|
+
accessCode: string;
|
|
108
|
+
/** client id of oauth client created by tenant admin */
|
|
109
|
+
clientId: string;
|
|
110
|
+
};
|
|
103
111
|
declare global {
|
|
104
112
|
/**
|
|
105
113
|
* QlikAuthModules is a global interface that can be extended to add custom auth modules.
|
|
@@ -114,6 +122,9 @@ declare global {
|
|
|
114
122
|
cookie: {
|
|
115
123
|
config: CookieAuthConfig;
|
|
116
124
|
};
|
|
125
|
+
anonymous: {
|
|
126
|
+
config: AnonymousAuthConfig;
|
|
127
|
+
};
|
|
117
128
|
windowscookie: {
|
|
118
129
|
config: WindowsCookieAuthConfig;
|
|
119
130
|
};
|
package/glossaries.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-z1p6A9D-.js';
|
|
2
|
+
import './auth-types-BU5EGt_9.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* A JSON Patch document as defined in http://tools.ietf.org/html/rfc6902.
|
package/glossaries.js
CHANGED
package/groups.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-z1p6A9D-.js';
|
|
2
|
+
import './auth-types-BU5EGt_9.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* An array of role references. Visibility dependant on access level. Must have access to roles to view other users' assigned roles.
|
package/groups.js
CHANGED
package/identity-providers.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-z1p6A9D-.js';
|
|
2
|
+
import './auth-types-BU5EGt_9.js';
|
|
3
3
|
|
|
4
4
|
type BaseIDP = {
|
|
5
5
|
/** Indicates whether the IdP is available for use. */
|
|
@@ -102,6 +102,8 @@ type CreateOIDCPayload = {
|
|
|
102
102
|
discoveryUrl?: string;
|
|
103
103
|
/** Only ADFS and AzureAD IdPs can set this property. For ADFS and AzureAD, it defaults to false. For other IdPs, it defaults to undefined. */
|
|
104
104
|
emailVerifiedAlwaysTrue?: boolean;
|
|
105
|
+
/** The algorithm used to sign the ID token. The default algorithm is RS256. */
|
|
106
|
+
idTokenSignatureAlg?: "RS256" | "RS512";
|
|
105
107
|
/** OpenID configuration */
|
|
106
108
|
openid_configuration?: OpenIDConfiguration;
|
|
107
109
|
/** The realm identifier for the IdP. */
|
|
@@ -377,7 +379,7 @@ type PatchOIDCPayload = {
|
|
|
377
379
|
/** The "operation" to be performed on a given IdP. Currently supports a custom operation value called "promote-options" that allows the test configuration to be promoted to the current configuration used for login. */
|
|
378
380
|
op: "replace" | "promote-options";
|
|
379
381
|
/** The "path" to the part of the IdP document. */
|
|
380
|
-
path?: "/active" | "/description" | "/meta" | "/options" | "/options/realm" | "/options/discoveryUrl" | "/options/claimsMapping" | "/pendingOptions" | "/pendingOptions/realm" | "/pendingOptions/discoveryUrl" | "/pendingOptions/clientId" | "/pendingOptions/clientSecret" | "/pendingOptions/emailVerifiedAlwaysTrue" | "/pendingOptions/claimsMapping" | "/postLogoutRedirectUri" | "/clockToleranceSec";
|
|
382
|
+
path?: "/active" | "/description" | "/meta" | "/options" | "/options/realm" | "/options/discoveryUrl" | "/options/claimsMapping" | "/pendingOptions" | "/pendingOptions/realm" | "/pendingOptions/discoveryUrl" | "/pendingOptions/clientId" | "/pendingOptions/clientSecret" | "/pendingOptions/emailVerifiedAlwaysTrue" | "/pendingOptions/claimsMapping" | "/postLogoutRedirectUri" | "/clockToleranceSec" | "/pendingOptions/idTokenSignatureAlg";
|
|
381
383
|
/** The "value" data type is dependent on the path value being used. */
|
|
382
384
|
value?: unknown;
|
|
383
385
|
};
|
package/identity-providers.js
CHANGED
package/index.d.ts
CHANGED
|
@@ -31,8 +31,8 @@ import { UsersAPI } from './users.js';
|
|
|
31
31
|
import { WebIntegrationsAPI } from './web-integrations.js';
|
|
32
32
|
import { WebNotificationsAPI } from './web-notifications.js';
|
|
33
33
|
import { WebhooksAPI } from './webhooks.js';
|
|
34
|
-
import './global.types-
|
|
35
|
-
import './auth-types-
|
|
34
|
+
import './global.types-z1p6A9D-.js';
|
|
35
|
+
import './auth-types-BU5EGt_9.js';
|
|
36
36
|
|
|
37
37
|
declare const apiKeys: ApiKeysAPI;
|
|
38
38
|
declare const apps: AppsAPI;
|
package/index.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
qix_default
|
|
3
|
-
} from "./chunks/
|
|
3
|
+
} from "./chunks/GXMVBX45.js";
|
|
4
4
|
import {
|
|
5
5
|
auth_default
|
|
6
|
-
} from "./chunks/
|
|
6
|
+
} from "./chunks/6O3XBOLZ.js";
|
|
7
7
|
import {
|
|
8
8
|
clearApiCache,
|
|
9
9
|
invokeFetch
|
|
10
|
-
} from "./chunks/
|
|
11
|
-
import "./chunks/
|
|
10
|
+
} from "./chunks/MFNOHOWH.js";
|
|
11
|
+
import "./chunks/7IMOYFWE.js";
|
|
12
12
|
import "./chunks/2ZQ3ZX7F.js";
|
|
13
13
|
|
|
14
14
|
// src/public/public-runtime-api-generator/public-runtime-api-generator.ts
|
package/items.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types-
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types-z1p6A9D-.js';
|
|
2
|
+
import './auth-types-BU5EGt_9.js';
|
|
3
3
|
|
|
4
4
|
type CollectionTypes = "private" | "public" | "publicgoverned";
|
|
5
5
|
type ErrorResponseBody = {
|
package/items.js
CHANGED
package/licenses.d.ts
CHANGED
package/licenses.js
CHANGED
package/package.json
CHANGED
|
@@ -14,8 +14,9 @@
|
|
|
14
14
|
"enigma.js": "^2.14.0",
|
|
15
15
|
"lodash": "^4.17.21",
|
|
16
16
|
"nanoid": "^5.0.7",
|
|
17
|
-
"ws": "^8.
|
|
17
|
+
"ws": "^8.18.0"
|
|
18
18
|
},
|
|
19
|
+
"packageManager": "pnpm@9.7.1",
|
|
19
20
|
"engines": {
|
|
20
21
|
"node": ">=18"
|
|
21
22
|
},
|
|
@@ -55,5 +56,5 @@
|
|
|
55
56
|
"./qix": "./qix.js",
|
|
56
57
|
"./auth": "./auth.js"
|
|
57
58
|
},
|
|
58
|
-
"version": "1.
|
|
59
|
+
"version": "1.16.0"
|
|
59
60
|
}
|