@qlik/api 1.27.0 → 1.29.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 +20 -0
- package/api-keys.js +2 -2
- package/apps.d.ts +134 -5
- package/apps.js +2 -2
- package/audits.d.ts +1 -1
- package/audits.js +2 -2
- package/auth.js +2 -2
- package/automations.d.ts +13 -1
- package/automations.js +2 -2
- package/brands.js +2 -2
- package/chunks/{V3TZ54UE.js → 2B7YWDQC.js} +3 -3
- package/chunks/{4K3CNR7C.js → 5MRIMVKS.js} +1 -1
- package/chunks/{55SZVSAG.js → 5XNSGPGZ.js} +1 -1
- package/chunks/{EOGHK2R4.js → KYCIMQ4L.js} +1 -1
- package/chunks/{WY7IOA3Q.js → WQYEWU54.js} +2 -2
- package/collections.d.ts +1 -1
- package/collections.js +2 -2
- package/csp-origins.js +2 -2
- package/data-assets.d.ts +1 -1
- package/data-assets.js +2 -2
- package/data-connections.d.ts +82 -0
- package/data-connections.js +2 -2
- package/data-credentials.d.ts +28 -0
- package/data-credentials.js +2 -2
- package/data-files.d.ts +90 -0
- package/data-files.js +2 -2
- package/extensions.js +2 -2
- package/glossaries.d.ts +15 -1
- package/glossaries.js +2 -2
- package/groups.d.ts +70 -0
- package/groups.js +2 -2
- package/identity-providers.js +2 -2
- package/index.js +8 -4
- package/items.d.ts +1 -1
- package/items.js +2 -2
- package/licenses.d.ts +191 -0
- package/licenses.js +2 -2
- package/package.json +4 -4
- package/qix.d.ts +26 -2
- package/qix.js +2 -2
- package/quotas.js +2 -2
- package/reload-tasks.d.ts +20 -0
- package/reload-tasks.js +2 -2
- package/reloads.d.ts +38 -1
- package/reloads.js +2 -2
- package/reports.d.ts +157 -17
- package/reports.js +2 -2
- package/roles.d.ts +30 -0
- package/roles.js +2 -2
- package/spaces.d.ts +225 -38
- package/spaces.js +47 -2
- package/temp-contents.js +2 -2
- package/tenants.d.ts +47 -1
- package/tenants.js +2 -2
- package/themes.js +2 -2
- package/transports.d.ts +9 -0
- package/transports.js +2 -2
- package/users.d.ts +88 -0
- package/users.js +2 -2
- package/web-integrations.d.ts +20 -0
- package/web-integrations.js +2 -2
- package/web-notifications.d.ts +19 -0
- package/web-notifications.js +2 -2
- package/webhooks.d.ts +3 -3
- package/webhooks.js +2 -2
package/web-integrations.d.ts
CHANGED
|
@@ -25,6 +25,16 @@ type Error = {
|
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
27
|
* The error response object describing the error from the handling of an HTTP request.
|
|
28
|
+
* @example
|
|
29
|
+
* {
|
|
30
|
+
* errors: [
|
|
31
|
+
* {
|
|
32
|
+
* code: "TENANTS-8",
|
|
33
|
+
* title: "Not found"
|
|
34
|
+
* }
|
|
35
|
+
* ],
|
|
36
|
+
* traceId: "000000000000000079cf1ebeae103de1"
|
|
37
|
+
* }
|
|
28
38
|
*/
|
|
29
39
|
type Errors = {
|
|
30
40
|
/** An array of errors related to the operation. */
|
|
@@ -62,6 +72,16 @@ type WebIntegrationPatch = {
|
|
|
62
72
|
/** New value to be used for this operation. */
|
|
63
73
|
value: string;
|
|
64
74
|
};
|
|
75
|
+
/**
|
|
76
|
+
* @example
|
|
77
|
+
* [
|
|
78
|
+
* {
|
|
79
|
+
* op: "replace",
|
|
80
|
+
* path: "/name",
|
|
81
|
+
* value: "New name"
|
|
82
|
+
* }
|
|
83
|
+
* ]
|
|
84
|
+
*/
|
|
65
85
|
type WebIntegrationPatchSchema = WebIntegrationPatch[];
|
|
66
86
|
/**
|
|
67
87
|
* The creation of a web integration response.
|
package/web-integrations.js
CHANGED
package/web-notifications.d.ts
CHANGED
|
@@ -70,6 +70,13 @@ type NotificationPatch = {
|
|
|
70
70
|
};
|
|
71
71
|
/**
|
|
72
72
|
* An array of JSON Patch documents
|
|
73
|
+
* @example
|
|
74
|
+
* [
|
|
75
|
+
* {
|
|
76
|
+
* op: "replace",
|
|
77
|
+
* path: "/read"
|
|
78
|
+
* }
|
|
79
|
+
* ]
|
|
73
80
|
*/
|
|
74
81
|
type NotificationPatchSchema = NotificationPatch[];
|
|
75
82
|
type Notifications = {
|
|
@@ -81,6 +88,12 @@ type Notifications = {
|
|
|
81
88
|
};
|
|
82
89
|
/**
|
|
83
90
|
* Retrieve notifications matching the query.
|
|
91
|
+
* @example
|
|
92
|
+
* getNotifications(
|
|
93
|
+
* {
|
|
94
|
+
* resourceType: "app,space"
|
|
95
|
+
* }
|
|
96
|
+
* )
|
|
84
97
|
*
|
|
85
98
|
* @param query an object with query parameters
|
|
86
99
|
* @throws GetNotificationsHttpError
|
|
@@ -201,6 +214,12 @@ declare function clearCache(): void;
|
|
|
201
214
|
interface WebNotificationsAPI {
|
|
202
215
|
/**
|
|
203
216
|
* Retrieve notifications matching the query.
|
|
217
|
+
* @example
|
|
218
|
+
* getNotifications(
|
|
219
|
+
* {
|
|
220
|
+
* resourceType: "app,space"
|
|
221
|
+
* }
|
|
222
|
+
* )
|
|
204
223
|
*
|
|
205
224
|
* @param query an object with query parameters
|
|
206
225
|
* @throws GetNotificationsHttpError
|
package/web-notifications.js
CHANGED
package/webhooks.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ type Delivery = {
|
|
|
10
10
|
/** The sent body/payload of the delivery */
|
|
11
11
|
body?: unknown;
|
|
12
12
|
/** Headers sent for this delivery */
|
|
13
|
-
headers?:
|
|
13
|
+
headers?: Record<string, string>;
|
|
14
14
|
/** URL used for this delivery */
|
|
15
15
|
url?: string;
|
|
16
16
|
};
|
|
@@ -18,7 +18,7 @@ type Delivery = {
|
|
|
18
18
|
/** The received body of the delivery */
|
|
19
19
|
body?: string;
|
|
20
20
|
/** Headers received for this delivery */
|
|
21
|
-
headers?:
|
|
21
|
+
headers?: Record<string, string>;
|
|
22
22
|
/** The HTTP status code of the response */
|
|
23
23
|
statusCode?: number;
|
|
24
24
|
};
|
|
@@ -94,7 +94,7 @@ type WebhookBase = {
|
|
|
94
94
|
* For more detailed information regarding the SCIM filter syntax (RFC7644) used please follow the link to external documentation. */
|
|
95
95
|
filter?: string;
|
|
96
96
|
/** Additional headers in the post request */
|
|
97
|
-
headers?:
|
|
97
|
+
headers?: Record<string, string>;
|
|
98
98
|
/** The webhook's unique identifier */
|
|
99
99
|
readonly id?: string;
|
|
100
100
|
/** Defines at what level the webhook should operate: for all resources belonging to a tenant or restricted to only those accessible by the webhook-creator. */
|
package/webhooks.js
CHANGED