@qlik/api 1.33.0 → 1.35.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 +3 -2
- package/api-keys.js +2 -2
- package/apps.js +2 -2
- package/assistants.js +2 -2
- package/audits.js +2 -2
- package/auth.js +2 -2
- package/automation-connections.js +2 -2
- package/automations.d.ts +2 -2
- package/automations.js +2 -2
- package/automl-deployments.js +2 -2
- package/automl-predictions.js +2 -2
- package/brands.js +2 -2
- package/chunks/{XF3TPZKZ.js → 4V6T7Y4L.js} +4 -1
- package/chunks/{LIEZG7IM.js → BEREWEFO.js} +2 -2
- package/chunks/{YYZCS5PW.js → EEE42MLS.js} +1 -1
- package/chunks/{PLVPW5IR.js → GKEDD5LZ.js} +1 -1
- package/chunks/{GPRUNZV4.js → GZ7FHV5J.js} +3 -3
- package/chunks/{OTIO4SEJ.js → I2HA7WJB.js} +37 -31
- package/chunks/{SPATCXXU.js → IF5BLC7L.js} +1 -1
- package/chunks/{62DXIH3S.js → M7AINAXZ.js} +1 -1
- package/chunks/{RP3EJGHG.js → VUYZKBT5.js} +3 -3
- package/chunks/{33GQY7N7.js → X2OO4MFX.js} +1 -1
- package/collections.js +2 -2
- package/conditions.js +2 -2
- package/consumption.js +2 -2
- package/csp-origins.js +2 -2
- package/csrf-token.js +2 -2
- package/data-alerts.js +2 -2
- package/data-assets.js +2 -2
- package/data-connections.js +2 -2
- package/data-credentials.js +2 -2
- package/data-files.js +2 -2
- package/data-qualities.js +2 -2
- package/data-sets.js +2 -2
- package/data-sources.js +2 -2
- package/data-stores.js +2 -2
- package/dcaas.js +2 -2
- package/di-projects.js +2 -2
- package/direct-access-agents.d.ts +22 -22
- package/direct-access-agents.js +2 -2
- package/encryption.js +2 -2
- package/extensions.js +2 -2
- package/glossaries.js +2 -2
- package/groups.js +2 -2
- package/identity-providers.js +2 -2
- package/index.js +5 -4
- package/items.js +2 -2
- package/knowledgebases.js +2 -2
- package/licenses.d.ts +3 -1
- package/licenses.js +2 -2
- package/lineage-graphs.js +2 -2
- package/ml.d.ts +88 -9
- package/ml.js +14 -2
- package/notes.js +2 -2
- package/notifications.js +2 -2
- package/oauth-clients.js +2 -2
- package/oauth-tokens.js +2 -2
- package/package.json +1 -1
- package/qix.d.ts +1 -1
- package/qix.js +2 -2
- package/questions.js +2 -2
- package/quotas.js +2 -2
- package/reload-tasks.js +2 -2
- package/reloads.js +2 -2
- package/report-templates.js +2 -2
- package/reports.js +2 -2
- package/roles.js +2 -2
- package/sharing-tasks.js +2 -2
- package/spaces.d.ts +5 -1
- package/spaces.js +2 -2
- package/tasks.js +2 -2
- package/temp-contents.js +2 -2
- package/tenants.js +2 -2
- package/themes.js +2 -2
- package/transports.js +2 -2
- package/ui-config.js +2 -2
- package/users.js +2 -2
- package/web-integrations.js +2 -2
- package/web-notifications.js +2 -2
- package/webhooks.js +2 -2
package/qix.js
CHANGED
package/questions.js
CHANGED
package/quotas.js
CHANGED
package/reload-tasks.js
CHANGED
package/reloads.js
CHANGED
package/report-templates.js
CHANGED
package/reports.js
CHANGED
package/roles.js
CHANGED
package/sharing-tasks.js
CHANGED
package/spaces.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import './auth-types-Cj5bM3Yk.js';
|
|
|
4
4
|
/**
|
|
5
5
|
* The supported actions for user-created spaces.
|
|
6
6
|
*/
|
|
7
|
-
type ActionName = "change_owner" | "create" | "read" | "update" | "delete" | "publish" | "link_environment";
|
|
7
|
+
type ActionName = "change_owner" | "create" | "read" | "update" | "delete" | "publish" | "link_environment" | "restrict";
|
|
8
8
|
type Assignment = {
|
|
9
9
|
/** The userId or groupId based on the type. */
|
|
10
10
|
assigneeId: string;
|
|
@@ -425,12 +425,16 @@ type UpdateSpaceHttpError = {
|
|
|
425
425
|
declare function getSpaceAssignments(spaceId: string, query: {
|
|
426
426
|
/** Filters assignment for a specific assigneeid. */
|
|
427
427
|
assigneeId?: string;
|
|
428
|
+
/** The bot user of the assignment. The value should be a boolean, for example ?botUser=true */
|
|
429
|
+
botUser?: boolean;
|
|
428
430
|
/** Maximum number of assignments to return. */
|
|
429
431
|
limit?: number;
|
|
430
432
|
/** The next page cursor. Next links make use of this. */
|
|
431
433
|
next?: string;
|
|
432
434
|
/** The previous page cursor. Previous links make use of this. */
|
|
433
435
|
prev?: string;
|
|
436
|
+
/** The roles of the assignment. The value should be a comma separated list of roles, for example ?roles=facilitator,contributor */
|
|
437
|
+
roles?: RoleType[];
|
|
434
438
|
/** The type of assignment. Supported values are user or group. */
|
|
435
439
|
type?: AssignmentType;
|
|
436
440
|
}, options?: ApiCallOptions): Promise<GetSpaceAssignmentsHttpResponse>;
|
package/spaces.js
CHANGED
package/tasks.js
CHANGED
package/temp-contents.js
CHANGED
package/tenants.js
CHANGED
package/themes.js
CHANGED
package/transports.js
CHANGED
package/ui-config.js
CHANGED
package/users.js
CHANGED
package/web-integrations.js
CHANGED
package/web-notifications.js
CHANGED
package/webhooks.js
CHANGED