@qlik/api 1.25.0 → 1.27.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 +12 -12
- package/api-keys.js +2 -2
- package/apps.d.ts +69 -69
- package/apps.js +2 -2
- package/audits.d.ts +37 -15
- package/audits.js +2 -2
- package/auth.js +2 -2
- package/automations.d.ts +37 -37
- package/automations.js +2 -2
- package/brands.d.ts +24 -24
- package/brands.js +2 -2
- package/chunks/{3DYV7KOJ.js → 2BRBIRM2.js} +2 -2
- package/chunks/{7BDAXGID.js → 3RGGGGAR.js} +6 -9
- package/chunks/{6DEESTGF.js → 4D5NADHK.js} +4 -4
- package/chunks/{VX3MQBE7.js → 4K3CNR7C.js} +1 -1
- package/chunks/{OIQ5ELGS.js → 55SZVSAG.js} +1 -1
- package/chunks/{BL5PJM4B.js → EOGHK2R4.js} +1 -1
- package/chunks/{N3ZFICDU.js → MGXEGSJC.js} +3 -3
- package/chunks/{I5UOE4ZZ.js → NBW6PHZU.js} +120 -44
- package/chunks/{6QRR5VUM.js → QOOCP2TS.js} +4 -3
- package/chunks/{CZC7KEJN.js → V3TZ54UE.js} +3 -3
- package/chunks/{UA6BE3VB.js → WY7IOA3Q.js} +2 -2
- package/collections.d.ts +23 -23
- package/collections.js +2 -2
- package/csp-origins.d.ts +25 -25
- package/csp-origins.js +2 -2
- package/data-assets.d.ts +12 -12
- package/data-assets.js +2 -2
- package/data-connections.d.ts +19 -19
- package/data-connections.js +2 -2
- package/data-credentials.d.ts +11 -11
- package/data-credentials.js +2 -2
- package/data-files.d.ts +25 -25
- package/data-files.js +2 -2
- package/docs/authentication.md +1 -1
- package/docs/qix.md +28 -8
- package/extensions.d.ts +12 -12
- package/extensions.js +2 -2
- package/glossaries.d.ts +49 -49
- package/glossaries.js +2 -2
- package/groups.d.ts +17 -17
- package/groups.js +2 -2
- package/identity-providers.d.ts +43 -18
- package/identity-providers.js +2 -2
- package/index.d.ts +1 -1
- package/index.js +5 -5
- package/interceptors.d.ts +1 -1
- package/interceptors.js +1 -1
- package/{invoke-fetch-types-BLrpeZOL.d.ts → invoke-fetch-types-BXn-uSF5.d.ts} +27 -1
- package/items.d.ts +17 -17
- package/items.js +2 -2
- package/licenses.d.ts +19 -19
- package/licenses.js +2 -2
- package/package.json +3 -3
- package/qix.d.ts +2 -2
- package/qix.js +2 -2
- package/quotas.d.ts +5 -5
- package/quotas.js +2 -2
- package/reload-tasks.d.ts +11 -11
- package/reload-tasks.js +2 -2
- package/reloads.d.ts +9 -9
- package/reloads.js +2 -2
- package/reports.d.ts +13 -11
- package/reports.js +2 -2
- package/roles.d.ts +12 -12
- package/roles.js +2 -2
- package/spaces.d.ts +60 -26
- package/spaces.js +2 -2
- package/temp-contents.d.ts +7 -7
- package/temp-contents.js +2 -2
- package/tenants.d.ts +10 -10
- package/tenants.js +2 -2
- package/themes.d.ts +12 -12
- package/themes.js +2 -2
- package/transports.d.ts +18 -18
- package/transports.js +2 -2
- package/users.d.ts +20 -20
- package/users.js +2 -2
- package/web-integrations.d.ts +10 -10
- package/web-integrations.js +2 -2
- package/web-notifications.d.ts +13 -13
- package/web-notifications.js +2 -2
- package/webhooks.d.ts +21 -21
- package/webhooks.js +2 -2
package/web-notifications.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './invoke-fetch-types-
|
|
1
|
+
import { A as ApiCallOptions } from './invoke-fetch-types-BXn-uSF5.js';
|
|
2
2
|
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -100,14 +100,14 @@ declare const getNotifications: (query: {
|
|
|
100
100
|
type GetNotificationsHttpResponse = {
|
|
101
101
|
data: Notifications;
|
|
102
102
|
headers: Headers;
|
|
103
|
-
status:
|
|
103
|
+
status: 200;
|
|
104
104
|
prev?: (options?: ApiCallOptions) => Promise<GetNotificationsHttpResponse>;
|
|
105
105
|
next?: (options?: ApiCallOptions) => Promise<GetNotificationsHttpResponse>;
|
|
106
106
|
};
|
|
107
107
|
type GetNotificationsHttpError = {
|
|
108
108
|
data: Errors;
|
|
109
109
|
headers: Headers;
|
|
110
|
-
status:
|
|
110
|
+
status: 400 | 401 | 500;
|
|
111
111
|
};
|
|
112
112
|
/**
|
|
113
113
|
* Delete all notifications.
|
|
@@ -118,12 +118,12 @@ declare const deleteNotifications: (options?: ApiCallOptions) => Promise<DeleteN
|
|
|
118
118
|
type DeleteNotificationsHttpResponse = {
|
|
119
119
|
data: Meta;
|
|
120
120
|
headers: Headers;
|
|
121
|
-
status:
|
|
121
|
+
status: 204;
|
|
122
122
|
};
|
|
123
123
|
type DeleteNotificationsHttpError = {
|
|
124
124
|
data: Errors;
|
|
125
125
|
headers: Headers;
|
|
126
|
-
status:
|
|
126
|
+
status: 401 | 500;
|
|
127
127
|
};
|
|
128
128
|
/**
|
|
129
129
|
* Patch all notifications.
|
|
@@ -135,12 +135,12 @@ declare const patchNotifications: (body: NotificationPatchSchema, options?: ApiC
|
|
|
135
135
|
type PatchNotificationsHttpResponse = {
|
|
136
136
|
data: Meta;
|
|
137
137
|
headers: Headers;
|
|
138
|
-
status:
|
|
138
|
+
status: 204;
|
|
139
139
|
};
|
|
140
140
|
type PatchNotificationsHttpError = {
|
|
141
141
|
data: Errors;
|
|
142
142
|
headers: Headers;
|
|
143
|
-
status:
|
|
143
|
+
status: 400 | 401 | 500;
|
|
144
144
|
};
|
|
145
145
|
/**
|
|
146
146
|
* Delete a notification.
|
|
@@ -152,12 +152,12 @@ declare const deleteNotification: (notificationId: string, options?: ApiCallOpti
|
|
|
152
152
|
type DeleteNotificationHttpResponse = {
|
|
153
153
|
data: Meta;
|
|
154
154
|
headers: Headers;
|
|
155
|
-
status:
|
|
155
|
+
status: 204;
|
|
156
156
|
};
|
|
157
157
|
type DeleteNotificationHttpError = {
|
|
158
158
|
data: Errors;
|
|
159
159
|
headers: Headers;
|
|
160
|
-
status:
|
|
160
|
+
status: 401 | 404 | 500;
|
|
161
161
|
};
|
|
162
162
|
/**
|
|
163
163
|
* Retrieve a single notification by Id.
|
|
@@ -169,12 +169,12 @@ declare const getNotification: (notificationId: string, options?: ApiCallOptions
|
|
|
169
169
|
type GetNotificationHttpResponse = {
|
|
170
170
|
data: Notification;
|
|
171
171
|
headers: Headers;
|
|
172
|
-
status:
|
|
172
|
+
status: 200;
|
|
173
173
|
};
|
|
174
174
|
type GetNotificationHttpError = {
|
|
175
175
|
data: Errors;
|
|
176
176
|
headers: Headers;
|
|
177
|
-
status:
|
|
177
|
+
status: 401 | 404 | 500;
|
|
178
178
|
};
|
|
179
179
|
/**
|
|
180
180
|
* Patch a notification.
|
|
@@ -187,12 +187,12 @@ declare const patchNotification: (notificationId: string, body: NotificationPatc
|
|
|
187
187
|
type PatchNotificationHttpResponse = {
|
|
188
188
|
data: Meta;
|
|
189
189
|
headers: Headers;
|
|
190
|
-
status:
|
|
190
|
+
status: 204;
|
|
191
191
|
};
|
|
192
192
|
type PatchNotificationHttpError = {
|
|
193
193
|
data: Errors;
|
|
194
194
|
headers: Headers;
|
|
195
|
-
status:
|
|
195
|
+
status: 400 | 401 | 404 | 500;
|
|
196
196
|
};
|
|
197
197
|
/**
|
|
198
198
|
* Clears the cache for web-notifications api requests.
|
package/web-notifications.js
CHANGED
package/webhooks.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './invoke-fetch-types-
|
|
1
|
+
import { A as ApiCallOptions } from './invoke-fetch-types-BXn-uSF5.js';
|
|
2
2
|
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
type Delivery = {
|
|
@@ -176,14 +176,14 @@ declare const getWebhooks: (query: {
|
|
|
176
176
|
type GetWebhooksHttpResponse = {
|
|
177
177
|
data: WebhookList;
|
|
178
178
|
headers: Headers;
|
|
179
|
-
status:
|
|
179
|
+
status: 200;
|
|
180
180
|
prev?: (options?: ApiCallOptions) => Promise<GetWebhooksHttpResponse>;
|
|
181
181
|
next?: (options?: ApiCallOptions) => Promise<GetWebhooksHttpResponse>;
|
|
182
182
|
};
|
|
183
183
|
type GetWebhooksHttpError = {
|
|
184
184
|
data: ErrorResponse;
|
|
185
185
|
headers: Headers;
|
|
186
|
-
status:
|
|
186
|
+
status: 400 | 401 | 403 | 500 | 503;
|
|
187
187
|
};
|
|
188
188
|
/**
|
|
189
189
|
* Creates a new webhook. User must be assigned the `TenantAdmin` role to create `tenant` level webhooks.
|
|
@@ -195,12 +195,12 @@ declare const createWebhook: (body: WebhookPost, options?: ApiCallOptions) => Pr
|
|
|
195
195
|
type CreateWebhookHttpResponse = {
|
|
196
196
|
data: WebhookResponse;
|
|
197
197
|
headers: Headers;
|
|
198
|
-
status:
|
|
198
|
+
status: 201;
|
|
199
199
|
};
|
|
200
200
|
type CreateWebhookHttpError = {
|
|
201
201
|
data: ErrorResponse;
|
|
202
202
|
headers: Headers;
|
|
203
|
-
status:
|
|
203
|
+
status: 400 | 401 | 403 | 500 | 503;
|
|
204
204
|
};
|
|
205
205
|
/**
|
|
206
206
|
* Lists event-types that are possible to subscribe to.
|
|
@@ -211,12 +211,12 @@ declare const getWebhookEventTypes: (options?: ApiCallOptions) => Promise<GetWeb
|
|
|
211
211
|
type GetWebhookEventTypesHttpResponse = {
|
|
212
212
|
data: EventTypes;
|
|
213
213
|
headers: Headers;
|
|
214
|
-
status:
|
|
214
|
+
status: 200;
|
|
215
215
|
};
|
|
216
216
|
type GetWebhookEventTypesHttpError = {
|
|
217
217
|
data: ErrorResponse;
|
|
218
218
|
headers: Headers;
|
|
219
|
-
status:
|
|
219
|
+
status: 401 | 500 | 503;
|
|
220
220
|
};
|
|
221
221
|
/**
|
|
222
222
|
* Deletes a specific webhook.
|
|
@@ -228,12 +228,12 @@ declare const deleteWebhook: (id: string, options?: ApiCallOptions) => Promise<D
|
|
|
228
228
|
type DeleteWebhookHttpResponse = {
|
|
229
229
|
data: void;
|
|
230
230
|
headers: Headers;
|
|
231
|
-
status:
|
|
231
|
+
status: 204;
|
|
232
232
|
};
|
|
233
233
|
type DeleteWebhookHttpError = {
|
|
234
234
|
data: ErrorResponse;
|
|
235
235
|
headers: Headers;
|
|
236
|
-
status:
|
|
236
|
+
status: 400 | 401 | 403 | 404 | 500 | 503;
|
|
237
237
|
};
|
|
238
238
|
/**
|
|
239
239
|
* Returns details for a specific webhook.
|
|
@@ -245,12 +245,12 @@ declare const getWebhook: (id: string, options?: ApiCallOptions) => Promise<GetW
|
|
|
245
245
|
type GetWebhookHttpResponse = {
|
|
246
246
|
data: WebhookResponse;
|
|
247
247
|
headers: Headers;
|
|
248
|
-
status:
|
|
248
|
+
status: 200;
|
|
249
249
|
};
|
|
250
250
|
type GetWebhookHttpError = {
|
|
251
251
|
data: ErrorResponse;
|
|
252
252
|
headers: Headers;
|
|
253
|
-
status:
|
|
253
|
+
status: 400 | 401 | 403 | 404 | 500 | 503;
|
|
254
254
|
};
|
|
255
255
|
/**
|
|
256
256
|
* Patches a webhook to update one or more properties.
|
|
@@ -263,12 +263,12 @@ declare const patchWebhook: (id: string, body: WebhookPatch[], options?: ApiCall
|
|
|
263
263
|
type PatchWebhookHttpResponse = {
|
|
264
264
|
data: void;
|
|
265
265
|
headers: Headers;
|
|
266
|
-
status:
|
|
266
|
+
status: 204;
|
|
267
267
|
};
|
|
268
268
|
type PatchWebhookHttpError = {
|
|
269
269
|
data: ErrorResponse;
|
|
270
270
|
headers: Headers;
|
|
271
|
-
status:
|
|
271
|
+
status: 400 | 401 | 403 | 404 | 500 | 503;
|
|
272
272
|
};
|
|
273
273
|
/**
|
|
274
274
|
* Updates a webhook, any omitted fields will be cleared, returns updated webhook.
|
|
@@ -281,12 +281,12 @@ declare const updateWebhook: (id: string, body: WebhookBase, options?: ApiCallOp
|
|
|
281
281
|
type UpdateWebhookHttpResponse = {
|
|
282
282
|
data: WebhookResponse;
|
|
283
283
|
headers: Headers;
|
|
284
|
-
status:
|
|
284
|
+
status: 200;
|
|
285
285
|
};
|
|
286
286
|
type UpdateWebhookHttpError = {
|
|
287
287
|
data: ErrorResponse;
|
|
288
288
|
headers: Headers;
|
|
289
|
-
status:
|
|
289
|
+
status: 400 | 401 | 403 | 404 | 500 | 503;
|
|
290
290
|
};
|
|
291
291
|
/**
|
|
292
292
|
* Returns deliveries for a specific webhook. Delivery history is stored for 1 week.
|
|
@@ -312,14 +312,14 @@ declare const getWebhookDeliveries: (id: string, query: {
|
|
|
312
312
|
type GetWebhookDeliveriesHttpResponse = {
|
|
313
313
|
data: DeliveryList;
|
|
314
314
|
headers: Headers;
|
|
315
|
-
status:
|
|
315
|
+
status: 200;
|
|
316
316
|
prev?: (options?: ApiCallOptions) => Promise<GetWebhookDeliveriesHttpResponse>;
|
|
317
317
|
next?: (options?: ApiCallOptions) => Promise<GetWebhookDeliveriesHttpResponse>;
|
|
318
318
|
};
|
|
319
319
|
type GetWebhookDeliveriesHttpError = {
|
|
320
320
|
data: ErrorResponse;
|
|
321
321
|
headers: Headers;
|
|
322
|
-
status:
|
|
322
|
+
status: 400 | 401 | 403 | 404 | 500 | 503;
|
|
323
323
|
};
|
|
324
324
|
/**
|
|
325
325
|
* Returns details for a specific delivery.
|
|
@@ -332,12 +332,12 @@ declare const getWebhookDelivery: (id: string, deliveryId: string, options?: Api
|
|
|
332
332
|
type GetWebhookDeliveryHttpResponse = {
|
|
333
333
|
data: Delivery;
|
|
334
334
|
headers: Headers;
|
|
335
|
-
status:
|
|
335
|
+
status: 200;
|
|
336
336
|
};
|
|
337
337
|
type GetWebhookDeliveryHttpError = {
|
|
338
338
|
data: ErrorResponse;
|
|
339
339
|
headers: Headers;
|
|
340
|
-
status:
|
|
340
|
+
status: 400 | 401 | 403 | 404 | 500 | 503;
|
|
341
341
|
};
|
|
342
342
|
/**
|
|
343
343
|
* Resends the delivery with the same payload.
|
|
@@ -350,12 +350,12 @@ declare const resendWebhookDelivery: (id: string, deliveryId: string, options?:
|
|
|
350
350
|
type ResendWebhookDeliveryHttpResponse = {
|
|
351
351
|
data: Delivery;
|
|
352
352
|
headers: Headers;
|
|
353
|
-
status:
|
|
353
|
+
status: 201;
|
|
354
354
|
};
|
|
355
355
|
type ResendWebhookDeliveryHttpError = {
|
|
356
356
|
data: ErrorResponse;
|
|
357
357
|
headers: Headers;
|
|
358
|
-
status:
|
|
358
|
+
status: 401 | 404 | 500 | 503;
|
|
359
359
|
};
|
|
360
360
|
/**
|
|
361
361
|
* Clears the cache for webhooks api requests.
|
package/webhooks.js
CHANGED