@qlik/api 1.28.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/apps.d.ts +134 -5
- package/audits.d.ts +1 -1
- package/automations.d.ts +13 -1
- package/chunks/WQYEWU54.js +1 -1
- package/collections.d.ts +1 -1
- package/data-assets.d.ts +1 -1
- package/data-connections.d.ts +82 -0
- package/data-credentials.d.ts +28 -0
- package/data-files.d.ts +90 -0
- package/glossaries.d.ts +14 -1
- package/groups.d.ts +70 -0
- package/index.js +4 -0
- package/items.d.ts +1 -1
- package/licenses.d.ts +191 -0
- package/package.json +4 -4
- package/qix.d.ts +17 -1
- package/reload-tasks.d.ts +20 -0
- package/reloads.d.ts +39 -10
- package/reports.d.ts +157 -17
- package/roles.d.ts +30 -0
- package/spaces.d.ts +225 -38
- package/spaces.js +45 -0
- package/tenants.d.ts +47 -1
- package/transports.d.ts +9 -0
- package/users.d.ts +88 -0
- package/web-integrations.d.ts +20 -0
- package/web-notifications.d.ts +19 -0
- package/webhooks.d.ts +3 -3
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. */
|