@qlik/api 1.26.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 +11 -11
- package/api-keys.js +2 -2
- package/apps.d.ts +68 -68
- package/apps.js +2 -2
- package/audits.d.ts +36 -14
- package/audits.js +2 -2
- package/auth.js +2 -2
- package/automations.d.ts +36 -36
- package/automations.js +2 -2
- package/brands.d.ts +23 -23
- package/brands.js +2 -2
- package/chunks/{VX3MQBE7.js → 4K3CNR7C.js} +1 -1
- package/chunks/{7SNOQCIQ.js → 55SZVSAG.js} +1 -1
- package/chunks/{HGRF5TX3.js → EOGHK2R4.js} +1 -1
- package/chunks/{UV5COPU3.js → V3TZ54UE.js} +3 -3
- package/chunks/{AMO5NATA.js → WY7IOA3Q.js} +2 -2
- package/collections.d.ts +22 -22
- package/collections.js +2 -2
- package/csp-origins.d.ts +12 -12
- package/csp-origins.js +2 -2
- package/data-assets.d.ts +10 -10
- package/data-assets.js +2 -2
- package/data-connections.d.ts +18 -18
- package/data-connections.js +2 -2
- package/data-credentials.d.ts +10 -10
- package/data-credentials.js +2 -2
- package/data-files.d.ts +24 -24
- package/data-files.js +2 -2
- package/docs/authentication.md +1 -1
- package/extensions.d.ts +11 -11
- package/extensions.js +2 -2
- package/glossaries.d.ts +48 -48
- package/glossaries.js +2 -2
- package/groups.d.ts +16 -16
- package/groups.js +2 -2
- package/identity-providers.d.ts +15 -15
- package/identity-providers.js +2 -2
- package/index.js +4 -4
- package/items.d.ts +16 -16
- package/items.js +2 -2
- package/licenses.d.ts +18 -18
- package/licenses.js +2 -2
- package/package.json +2 -2
- package/qix.d.ts +1 -1
- package/qix.js +2 -2
- package/quotas.d.ts +4 -4
- package/quotas.js +2 -2
- package/reload-tasks.d.ts +10 -10
- package/reload-tasks.js +2 -2
- package/reloads.d.ts +8 -8
- package/reloads.js +2 -2
- package/reports.d.ts +4 -4
- package/reports.js +2 -2
- package/roles.d.ts +10 -10
- package/roles.js +2 -2
- package/spaces.d.ts +59 -25
- package/spaces.js +2 -2
- package/temp-contents.d.ts +6 -6
- package/temp-contents.js +2 -2
- package/tenants.d.ts +9 -9
- package/tenants.js +2 -2
- package/themes.d.ts +11 -11
- package/themes.js +2 -2
- package/transports.d.ts +17 -17
- package/transports.js +2 -2
- package/users.d.ts +19 -19
- package/users.js +2 -2
- package/web-integrations.d.ts +9 -9
- package/web-integrations.js +2 -2
- package/web-notifications.d.ts +12 -12
- package/web-notifications.js +2 -2
- package/webhooks.d.ts +20 -20
- package/webhooks.js +2 -2
package/groups.d.ts
CHANGED
|
@@ -224,14 +224,14 @@ declare const getGroups: (query: {
|
|
|
224
224
|
type GetGroupsHttpResponse = {
|
|
225
225
|
data: Groups;
|
|
226
226
|
headers: Headers;
|
|
227
|
-
status:
|
|
227
|
+
status: 200;
|
|
228
228
|
prev?: (options?: ApiCallOptions) => Promise<GetGroupsHttpResponse>;
|
|
229
229
|
next?: (options?: ApiCallOptions) => Promise<GetGroupsHttpResponse>;
|
|
230
230
|
};
|
|
231
231
|
type GetGroupsHttpError = {
|
|
232
232
|
data: Errors;
|
|
233
233
|
headers: Headers;
|
|
234
|
-
status:
|
|
234
|
+
status: 400 | 401 | 403 | 429 | 500;
|
|
235
235
|
};
|
|
236
236
|
/**
|
|
237
237
|
* Creates a new group. The maximum number of groups a tenant can have is 10,000. Group names are case-sensitive, and must be unique.
|
|
@@ -243,12 +243,12 @@ declare const createGroup: (body: GroupPostSchema, options?: ApiCallOptions) =>
|
|
|
243
243
|
type CreateGroupHttpResponse = {
|
|
244
244
|
data: Group;
|
|
245
245
|
headers: Headers;
|
|
246
|
-
status:
|
|
246
|
+
status: 201;
|
|
247
247
|
};
|
|
248
248
|
type CreateGroupHttpError = {
|
|
249
249
|
data: Errors;
|
|
250
250
|
headers: Headers;
|
|
251
|
-
status:
|
|
251
|
+
status: 400 | 401 | 403 | 409 | 413 | 429 | 500;
|
|
252
252
|
};
|
|
253
253
|
/**
|
|
254
254
|
* Retrieves a list of groups matching the filter using advanced query string.
|
|
@@ -270,14 +270,14 @@ declare const filterGroups: (query: {
|
|
|
270
270
|
type FilterGroupsHttpResponse = {
|
|
271
271
|
data: Groups;
|
|
272
272
|
headers: Headers;
|
|
273
|
-
status:
|
|
273
|
+
status: 200;
|
|
274
274
|
prev?: (options?: ApiCallOptions) => Promise<FilterGroupsHttpResponse>;
|
|
275
275
|
next?: (options?: ApiCallOptions) => Promise<FilterGroupsHttpResponse>;
|
|
276
276
|
};
|
|
277
277
|
type FilterGroupsHttpError = {
|
|
278
278
|
data: Errors;
|
|
279
279
|
headers: Headers;
|
|
280
|
-
status:
|
|
280
|
+
status: 400 | 401 | 403 | 429 | 500;
|
|
281
281
|
};
|
|
282
282
|
/**
|
|
283
283
|
* Returns the tenant's group settings, such as whether automatic group creation and IdP group synchronization are enabled or disabled, and roles assigned to system groups.
|
|
@@ -288,12 +288,12 @@ declare const getGroupsSettings: (options?: ApiCallOptions) => Promise<GetGroups
|
|
|
288
288
|
type GetGroupsSettingsHttpResponse = {
|
|
289
289
|
data: GroupSettings;
|
|
290
290
|
headers: Headers;
|
|
291
|
-
status:
|
|
291
|
+
status: 200;
|
|
292
292
|
};
|
|
293
293
|
type GetGroupsSettingsHttpError = {
|
|
294
294
|
data: Errors;
|
|
295
295
|
headers: Headers;
|
|
296
|
-
status:
|
|
296
|
+
status: 401 | 403 | 429 | 500;
|
|
297
297
|
};
|
|
298
298
|
/**
|
|
299
299
|
* Updates the tenant's group settings, such as whether automatic group creation and IdP group synchronization are enabled or disabled, and roles assigned to system groups.
|
|
@@ -305,12 +305,12 @@ declare const patchGroupsSettings: (body: SettingsPatchSchema, options?: ApiCall
|
|
|
305
305
|
type PatchGroupsSettingsHttpResponse = {
|
|
306
306
|
data: void;
|
|
307
307
|
headers: Headers;
|
|
308
|
-
status:
|
|
308
|
+
status: 204;
|
|
309
309
|
};
|
|
310
310
|
type PatchGroupsSettingsHttpError = {
|
|
311
311
|
data: Errors;
|
|
312
312
|
headers: Headers;
|
|
313
|
-
status:
|
|
313
|
+
status: 400 | 401 | 403 | 429 | 500;
|
|
314
314
|
};
|
|
315
315
|
/**
|
|
316
316
|
* Deletes the requested group.
|
|
@@ -322,12 +322,12 @@ declare const deleteGroup: (groupId: string, options?: ApiCallOptions) => Promis
|
|
|
322
322
|
type DeleteGroupHttpResponse = {
|
|
323
323
|
data: void;
|
|
324
324
|
headers: Headers;
|
|
325
|
-
status:
|
|
325
|
+
status: 204;
|
|
326
326
|
};
|
|
327
327
|
type DeleteGroupHttpError = {
|
|
328
328
|
data: Errors;
|
|
329
329
|
headers: Headers;
|
|
330
|
-
status:
|
|
330
|
+
status: 401 | 404 | 429;
|
|
331
331
|
};
|
|
332
332
|
/**
|
|
333
333
|
* Returns the requested group.
|
|
@@ -339,12 +339,12 @@ declare const getGroup: (groupId: string, options?: ApiCallOptions) => Promise<G
|
|
|
339
339
|
type GetGroupHttpResponse = {
|
|
340
340
|
data: Group;
|
|
341
341
|
headers: Headers;
|
|
342
|
-
status:
|
|
342
|
+
status: 200;
|
|
343
343
|
};
|
|
344
344
|
type GetGroupHttpError = {
|
|
345
345
|
data: Errors;
|
|
346
346
|
headers: Headers;
|
|
347
|
-
status:
|
|
347
|
+
status: 403 | 404 | 429 | 500;
|
|
348
348
|
};
|
|
349
349
|
/**
|
|
350
350
|
* Updates the requested group.
|
|
@@ -357,12 +357,12 @@ declare const patchGroup: (groupId: string, body: GroupPatchSchema, options?: Ap
|
|
|
357
357
|
type PatchGroupHttpResponse = {
|
|
358
358
|
data: void;
|
|
359
359
|
headers: Headers;
|
|
360
|
-
status:
|
|
360
|
+
status: 204;
|
|
361
361
|
};
|
|
362
362
|
type PatchGroupHttpError = {
|
|
363
363
|
data: Errors;
|
|
364
364
|
headers: Headers;
|
|
365
|
-
status:
|
|
365
|
+
status: 400 | 401 | 403 | 404 | 429 | 500;
|
|
366
366
|
};
|
|
367
367
|
/**
|
|
368
368
|
* Clears the cache for groups api requests.
|
package/groups.js
CHANGED
package/identity-providers.d.ts
CHANGED
|
@@ -513,14 +513,14 @@ declare const getIdps: (query: {
|
|
|
513
513
|
type GetIdpsHttpResponse = {
|
|
514
514
|
data: IDPArray;
|
|
515
515
|
headers: Headers;
|
|
516
|
-
status:
|
|
516
|
+
status: 200;
|
|
517
517
|
prev?: (options?: ApiCallOptions) => Promise<GetIdpsHttpResponse>;
|
|
518
518
|
next?: (options?: ApiCallOptions) => Promise<GetIdpsHttpResponse>;
|
|
519
519
|
};
|
|
520
520
|
type GetIdpsHttpError = {
|
|
521
521
|
data: Errors;
|
|
522
522
|
headers: Headers;
|
|
523
|
-
status:
|
|
523
|
+
status: 404;
|
|
524
524
|
};
|
|
525
525
|
/**
|
|
526
526
|
* Creates a new IdP on a tenant. Requesting user must be assigned the `TenantAdmin` role. For non-interactive IdPs (e.g. JWT), IdP must be created by sending `options` payload. For interactive IdPs (e.g. SAML or OIDC), send `pendingOptions` payload to require the interactive verification step; or send `options` payload with `skipVerify` set to `true` to skip validation step and make IdP immediately available.
|
|
@@ -532,12 +532,12 @@ declare const createIdp: (body: IDPPostSchema, options?: ApiCallOptions) => Prom
|
|
|
532
532
|
type CreateIdpHttpResponse = {
|
|
533
533
|
data: IDP;
|
|
534
534
|
headers: Headers;
|
|
535
|
-
status:
|
|
535
|
+
status: 201;
|
|
536
536
|
};
|
|
537
537
|
type CreateIdpHttpError = {
|
|
538
538
|
data: Errors;
|
|
539
539
|
headers: Headers;
|
|
540
|
-
status:
|
|
540
|
+
status: 400 | 403;
|
|
541
541
|
};
|
|
542
542
|
/**
|
|
543
543
|
* Returns IdP configuration metadata supported on the tenant. Clients can use this information to programmatically configure their interactions with Qlik Cloud.
|
|
@@ -548,7 +548,7 @@ declare const getIdpWellKnownMetaData: (options?: ApiCallOptions) => Promise<Get
|
|
|
548
548
|
type GetIdpWellKnownMetaDataHttpResponse = {
|
|
549
549
|
data: unknown;
|
|
550
550
|
headers: Headers;
|
|
551
|
-
status:
|
|
551
|
+
status: 200;
|
|
552
552
|
};
|
|
553
553
|
type GetIdpWellKnownMetaDataHttpError = {
|
|
554
554
|
data: unknown;
|
|
@@ -564,12 +564,12 @@ declare const getMyIdpMeta: (options?: ApiCallOptions) => Promise<GetMyIdpMetaHt
|
|
|
564
564
|
type GetMyIdpMetaHttpResponse = {
|
|
565
565
|
data: IDPMeta;
|
|
566
566
|
headers: Headers;
|
|
567
|
-
status:
|
|
567
|
+
status: 200;
|
|
568
568
|
};
|
|
569
569
|
type GetMyIdpMetaHttpError = {
|
|
570
570
|
data: Errors;
|
|
571
571
|
headers: Headers;
|
|
572
|
-
status:
|
|
572
|
+
status: 403 | 404 | 500;
|
|
573
573
|
};
|
|
574
574
|
/**
|
|
575
575
|
* Retrieves the status of all IdP configurations. Requires `TenantAdmin` role.
|
|
@@ -580,12 +580,12 @@ declare const getIdpStatuses: (options?: ApiCallOptions) => Promise<GetIdpStatus
|
|
|
580
580
|
type GetIdpStatusesHttpResponse = {
|
|
581
581
|
data: IDPsStatus;
|
|
582
582
|
headers: Headers;
|
|
583
|
-
status:
|
|
583
|
+
status: 200;
|
|
584
584
|
};
|
|
585
585
|
type GetIdpStatusesHttpError = {
|
|
586
586
|
data: Errors;
|
|
587
587
|
headers: Headers;
|
|
588
|
-
status:
|
|
588
|
+
status: 403 | 404 | 500;
|
|
589
589
|
};
|
|
590
590
|
/**
|
|
591
591
|
* Deletes an identity provider. Requesting user must be assigned the `TenantAdmin` role.
|
|
@@ -597,12 +597,12 @@ declare const deleteIdp: (id: string, options?: ApiCallOptions) => Promise<Delet
|
|
|
597
597
|
type DeleteIdpHttpResponse = {
|
|
598
598
|
data: void;
|
|
599
599
|
headers: Headers;
|
|
600
|
-
status:
|
|
600
|
+
status: 204;
|
|
601
601
|
};
|
|
602
602
|
type DeleteIdpHttpError = {
|
|
603
603
|
data: Errors;
|
|
604
604
|
headers: Headers;
|
|
605
|
-
status:
|
|
605
|
+
status: 400 | 404;
|
|
606
606
|
};
|
|
607
607
|
/**
|
|
608
608
|
* Retrieves a specific IdP. Requesting user must be assigned the `TenantAdmin` role.
|
|
@@ -614,12 +614,12 @@ declare const getIdp: (id: string, options?: ApiCallOptions) => Promise<GetIdpHt
|
|
|
614
614
|
type GetIdpHttpResponse = {
|
|
615
615
|
data: IDP;
|
|
616
616
|
headers: Headers;
|
|
617
|
-
status:
|
|
617
|
+
status: 200;
|
|
618
618
|
};
|
|
619
619
|
type GetIdpHttpError = {
|
|
620
620
|
data: Errors;
|
|
621
621
|
headers: Headers;
|
|
622
|
-
status:
|
|
622
|
+
status: 401 | 404;
|
|
623
623
|
};
|
|
624
624
|
/**
|
|
625
625
|
* Updates the configuration of an IdP. Requesting user must be assigned the `TenantAdmin` role. Partial failure is treated as complete failure and returns an error.
|
|
@@ -632,12 +632,12 @@ declare const patchIdp: (id: string, body: IDPPatchSchema, options?: ApiCallOpti
|
|
|
632
632
|
type PatchIdpHttpResponse = {
|
|
633
633
|
data: void;
|
|
634
634
|
headers: Headers;
|
|
635
|
-
status:
|
|
635
|
+
status: 204;
|
|
636
636
|
};
|
|
637
637
|
type PatchIdpHttpError = {
|
|
638
638
|
data: Errors;
|
|
639
639
|
headers: Headers;
|
|
640
|
-
status:
|
|
640
|
+
status: 400 | 401 | 403 | 404 | 412 | 500;
|
|
641
641
|
};
|
|
642
642
|
/**
|
|
643
643
|
* Clears the cache for identity-providers api requests.
|
package/identity-providers.js
CHANGED
package/index.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import {
|
|
2
2
|
qix_default
|
|
3
|
-
} from "./chunks/
|
|
3
|
+
} from "./chunks/55SZVSAG.js";
|
|
4
4
|
import {
|
|
5
5
|
auth_default
|
|
6
|
-
} from "./chunks/
|
|
6
|
+
} from "./chunks/EOGHK2R4.js";
|
|
7
7
|
import {
|
|
8
8
|
interceptors_default
|
|
9
9
|
} from "./chunks/3RGGGGAR.js";
|
|
10
10
|
import {
|
|
11
11
|
clearApiCache,
|
|
12
12
|
invokeFetch
|
|
13
|
-
} from "./chunks/
|
|
14
|
-
import "./chunks/
|
|
13
|
+
} from "./chunks/WY7IOA3Q.js";
|
|
14
|
+
import "./chunks/V3TZ54UE.js";
|
|
15
15
|
import "./chunks/2ZQ3ZX7F.js";
|
|
16
16
|
|
|
17
17
|
// src/runtime-api-generator/runtime-api-generator-common.ts
|
package/items.d.ts
CHANGED
|
@@ -299,14 +299,14 @@ declare const getItems: (query: {
|
|
|
299
299
|
type GetItemsHttpResponse = {
|
|
300
300
|
data: ItemsListItemsResponseBody;
|
|
301
301
|
headers: Headers;
|
|
302
|
-
status:
|
|
302
|
+
status: 200;
|
|
303
303
|
prev?: (options?: ApiCallOptions) => Promise<GetItemsHttpResponse>;
|
|
304
304
|
next?: (options?: ApiCallOptions) => Promise<GetItemsHttpResponse>;
|
|
305
305
|
};
|
|
306
306
|
type GetItemsHttpError = {
|
|
307
307
|
data: ErrorResponseBody;
|
|
308
308
|
headers: Headers;
|
|
309
|
-
status:
|
|
309
|
+
status: 400 | 401 | 404 | 500;
|
|
310
310
|
};
|
|
311
311
|
/**
|
|
312
312
|
* Finds and returns the items service settings for the current tenant. Currently used to enable or disable usage metrics in the tenant.
|
|
@@ -317,12 +317,12 @@ declare const getItemsSettings: (options?: ApiCallOptions) => Promise<GetItemsSe
|
|
|
317
317
|
type GetItemsSettingsHttpResponse = {
|
|
318
318
|
data: ItemsSettingsResponseBody;
|
|
319
319
|
headers: Headers;
|
|
320
|
-
status:
|
|
320
|
+
status: 200;
|
|
321
321
|
};
|
|
322
322
|
type GetItemsSettingsHttpError = {
|
|
323
323
|
data: ErrorResponseBody;
|
|
324
324
|
headers: Headers;
|
|
325
|
-
status:
|
|
325
|
+
status: 400 | 401 | 500;
|
|
326
326
|
};
|
|
327
327
|
/**
|
|
328
328
|
* Updates the settings provided in the patch body. Currently used to enable or disable usage metrics in the tenant.
|
|
@@ -334,12 +334,12 @@ declare const patchItemsSettings: (body: ItemsSettingsPatch, options?: ApiCallOp
|
|
|
334
334
|
type PatchItemsSettingsHttpResponse = {
|
|
335
335
|
data: ItemsSettingsResponseBody;
|
|
336
336
|
headers: Headers;
|
|
337
|
-
status:
|
|
337
|
+
status: 200;
|
|
338
338
|
};
|
|
339
339
|
type PatchItemsSettingsHttpError = {
|
|
340
340
|
data: ErrorResponseBody;
|
|
341
341
|
headers: Headers;
|
|
342
|
-
status:
|
|
342
|
+
status: 400 | 401 | 403 | 500;
|
|
343
343
|
};
|
|
344
344
|
/**
|
|
345
345
|
* Deletes an item and removes the item from all collections.
|
|
@@ -351,12 +351,12 @@ declare const deleteItem: (itemId: string, options?: ApiCallOptions) => Promise<
|
|
|
351
351
|
type DeleteItemHttpResponse = {
|
|
352
352
|
data: void;
|
|
353
353
|
headers: Headers;
|
|
354
|
-
status:
|
|
354
|
+
status: 204;
|
|
355
355
|
};
|
|
356
356
|
type DeleteItemHttpError = {
|
|
357
357
|
data: ErrorResponseBody;
|
|
358
358
|
headers: Headers;
|
|
359
|
-
status:
|
|
359
|
+
status: 401 | 403 | 404 | 500;
|
|
360
360
|
};
|
|
361
361
|
/**
|
|
362
362
|
* Finds and returns an item.
|
|
@@ -368,12 +368,12 @@ declare const getItem: (itemId: string, options?: ApiCallOptions) => Promise<Get
|
|
|
368
368
|
type GetItemHttpResponse = {
|
|
369
369
|
data: ItemResultResponseBody;
|
|
370
370
|
headers: Headers;
|
|
371
|
-
status:
|
|
371
|
+
status: 200;
|
|
372
372
|
};
|
|
373
373
|
type GetItemHttpError = {
|
|
374
374
|
data: ErrorResponseBody;
|
|
375
375
|
headers: Headers;
|
|
376
|
-
status:
|
|
376
|
+
status: 400 | 401 | 404 | 500;
|
|
377
377
|
};
|
|
378
378
|
/**
|
|
379
379
|
* Updates an item. Omitted and unsupported fields are ignored. To unset a field, provide the field's zero value.
|
|
@@ -386,12 +386,12 @@ declare const updateItem: (itemId: string, body: ItemsUpdateItemRequestBody, opt
|
|
|
386
386
|
type UpdateItemHttpResponse = {
|
|
387
387
|
data: ItemResultResponseBody;
|
|
388
388
|
headers: Headers;
|
|
389
|
-
status:
|
|
389
|
+
status: 200;
|
|
390
390
|
};
|
|
391
391
|
type UpdateItemHttpError = {
|
|
392
392
|
data: ErrorResponseBody;
|
|
393
393
|
headers: Headers;
|
|
394
|
-
status:
|
|
394
|
+
status: 400 | 401 | 403 | 404 | 409 | 500;
|
|
395
395
|
};
|
|
396
396
|
/**
|
|
397
397
|
* Finds and returns the collections (and tags) of an item. This endpoint does not return the user's favorites collection.
|
|
@@ -419,14 +419,14 @@ declare const getItemCollections: (itemId: string, query: {
|
|
|
419
419
|
type GetItemCollectionsHttpResponse = {
|
|
420
420
|
data: ItemsListItemCollectionsResponseBody;
|
|
421
421
|
headers: Headers;
|
|
422
|
-
status:
|
|
422
|
+
status: 200;
|
|
423
423
|
prev?: (options?: ApiCallOptions) => Promise<GetItemCollectionsHttpResponse>;
|
|
424
424
|
next?: (options?: ApiCallOptions) => Promise<GetItemCollectionsHttpResponse>;
|
|
425
425
|
};
|
|
426
426
|
type GetItemCollectionsHttpError = {
|
|
427
427
|
data: ErrorResponseBody;
|
|
428
428
|
headers: Headers;
|
|
429
|
-
status:
|
|
429
|
+
status: 400 | 401 | 404 | 500;
|
|
430
430
|
};
|
|
431
431
|
/**
|
|
432
432
|
* Finds and returns the published items for a given item. This endpoint is particularly useful for finding the published copies of an app or a qvapp when you want to replace the content of a published copy with new information from the source item.
|
|
@@ -450,14 +450,14 @@ declare const getPublishedItems: (itemId: string, query: {
|
|
|
450
450
|
type GetPublishedItemsHttpResponse = {
|
|
451
451
|
data: ItemsListItemCollectionsResponseBody;
|
|
452
452
|
headers: Headers;
|
|
453
|
-
status:
|
|
453
|
+
status: 200;
|
|
454
454
|
prev?: (options?: ApiCallOptions) => Promise<GetPublishedItemsHttpResponse>;
|
|
455
455
|
next?: (options?: ApiCallOptions) => Promise<GetPublishedItemsHttpResponse>;
|
|
456
456
|
};
|
|
457
457
|
type GetPublishedItemsHttpError = {
|
|
458
458
|
data: ErrorResponseBody;
|
|
459
459
|
headers: Headers;
|
|
460
|
-
status:
|
|
460
|
+
status: 400 | 401 | 404 | 500;
|
|
461
461
|
};
|
|
462
462
|
/**
|
|
463
463
|
* Clears the cache for items api requests.
|
package/items.js
CHANGED
package/licenses.d.ts
CHANGED
|
@@ -232,14 +232,14 @@ declare const getLicenseAssignments: (query: {
|
|
|
232
232
|
type GetLicenseAssignmentsHttpResponse = {
|
|
233
233
|
data: AssignmentsResponse;
|
|
234
234
|
headers: Headers;
|
|
235
|
-
status:
|
|
235
|
+
status: 200;
|
|
236
236
|
prev?: (options?: ApiCallOptions) => Promise<GetLicenseAssignmentsHttpResponse>;
|
|
237
237
|
next?: (options?: ApiCallOptions) => Promise<GetLicenseAssignmentsHttpResponse>;
|
|
238
238
|
};
|
|
239
239
|
type GetLicenseAssignmentsHttpError = {
|
|
240
240
|
data: ErrorResponse;
|
|
241
241
|
headers: Headers;
|
|
242
|
-
status:
|
|
242
|
+
status: 400 | 401 | 403;
|
|
243
243
|
};
|
|
244
244
|
/**
|
|
245
245
|
* Assigns license access to the given users
|
|
@@ -251,12 +251,12 @@ declare const addLicenseAssignments: (body: AssignmentsActionsAddRequest, option
|
|
|
251
251
|
type AddLicenseAssignmentsHttpResponse = {
|
|
252
252
|
data: AssignmentsActionsAddResponse;
|
|
253
253
|
headers: Headers;
|
|
254
|
-
status:
|
|
254
|
+
status: 207;
|
|
255
255
|
};
|
|
256
256
|
type AddLicenseAssignmentsHttpError = {
|
|
257
257
|
data: ErrorResponse;
|
|
258
258
|
headers: Headers;
|
|
259
|
-
status:
|
|
259
|
+
status: 400 | 401 | 403;
|
|
260
260
|
};
|
|
261
261
|
/**
|
|
262
262
|
* Removes license access for the given users
|
|
@@ -268,12 +268,12 @@ declare const deleteLicenseAssignments: (body: AssignmentsActionsDeleteRequest,
|
|
|
268
268
|
type DeleteLicenseAssignmentsHttpResponse = {
|
|
269
269
|
data: AssignmentsActionsDeleteResponse;
|
|
270
270
|
headers: Headers;
|
|
271
|
-
status:
|
|
271
|
+
status: 207;
|
|
272
272
|
};
|
|
273
273
|
type DeleteLicenseAssignmentsHttpError = {
|
|
274
274
|
data: ErrorResponse;
|
|
275
275
|
headers: Headers;
|
|
276
|
-
status:
|
|
276
|
+
status: 400 | 401 | 403;
|
|
277
277
|
};
|
|
278
278
|
/**
|
|
279
279
|
* Updates license access for the given users
|
|
@@ -285,12 +285,12 @@ declare const updateLicenseAssignments: (body: AssignmentsActionsUpdateRequest,
|
|
|
285
285
|
type UpdateLicenseAssignmentsHttpResponse = {
|
|
286
286
|
data: AssignmentsActionsUpdateResponse;
|
|
287
287
|
headers: Headers;
|
|
288
|
-
status:
|
|
288
|
+
status: 207;
|
|
289
289
|
};
|
|
290
290
|
type UpdateLicenseAssignmentsHttpError = {
|
|
291
291
|
data: ErrorResponse;
|
|
292
292
|
headers: Headers;
|
|
293
|
-
status:
|
|
293
|
+
status: 400 | 401 | 403;
|
|
294
294
|
};
|
|
295
295
|
/**
|
|
296
296
|
* Retrieves license consumption for the current tenant
|
|
@@ -311,14 +311,14 @@ declare const getLicenseConsumption: (query: {
|
|
|
311
311
|
type GetLicenseConsumptionHttpResponse = {
|
|
312
312
|
data: ConsumptionEventsResponse;
|
|
313
313
|
headers: Headers;
|
|
314
|
-
status:
|
|
314
|
+
status: 200;
|
|
315
315
|
prev?: (options?: ApiCallOptions) => Promise<GetLicenseConsumptionHttpResponse>;
|
|
316
316
|
next?: (options?: ApiCallOptions) => Promise<GetLicenseConsumptionHttpResponse>;
|
|
317
317
|
};
|
|
318
318
|
type GetLicenseConsumptionHttpError = {
|
|
319
319
|
data: ErrorResponse;
|
|
320
320
|
headers: Headers;
|
|
321
|
-
status:
|
|
321
|
+
status: 400 | 401 | 403;
|
|
322
322
|
};
|
|
323
323
|
/**
|
|
324
324
|
* Gets the general information of the license applied to the current tenant
|
|
@@ -329,12 +329,12 @@ declare const getLicenseOverview: (options?: ApiCallOptions) => Promise<GetLicen
|
|
|
329
329
|
type GetLicenseOverviewHttpResponse = {
|
|
330
330
|
data: LicenseOverview;
|
|
331
331
|
headers: Headers;
|
|
332
|
-
status:
|
|
332
|
+
status: 200;
|
|
333
333
|
};
|
|
334
334
|
type GetLicenseOverviewHttpError = {
|
|
335
335
|
data: ErrorResponse;
|
|
336
336
|
headers: Headers;
|
|
337
|
-
status:
|
|
337
|
+
status: 400 | 401 | 404;
|
|
338
338
|
};
|
|
339
339
|
/**
|
|
340
340
|
* Get auto assign settings for tenant.
|
|
@@ -345,12 +345,12 @@ declare const getLicenseSettings: (options?: ApiCallOptions) => Promise<GetLicen
|
|
|
345
345
|
type GetLicenseSettingsHttpResponse = {
|
|
346
346
|
data: SettingsBody;
|
|
347
347
|
headers: Headers;
|
|
348
|
-
status:
|
|
348
|
+
status: 200;
|
|
349
349
|
};
|
|
350
350
|
type GetLicenseSettingsHttpError = {
|
|
351
351
|
data: ErrorResponse;
|
|
352
352
|
headers: Headers;
|
|
353
|
-
status:
|
|
353
|
+
status: 400 | 401 | 403;
|
|
354
354
|
};
|
|
355
355
|
/**
|
|
356
356
|
* Set auto assign settings for tenant
|
|
@@ -362,12 +362,12 @@ declare const updateLicenseSettings: (body: SettingsBody, options?: ApiCallOptio
|
|
|
362
362
|
type UpdateLicenseSettingsHttpResponse = {
|
|
363
363
|
data: SettingsBody;
|
|
364
364
|
headers: Headers;
|
|
365
|
-
status:
|
|
365
|
+
status: 200;
|
|
366
366
|
};
|
|
367
367
|
type UpdateLicenseSettingsHttpError = {
|
|
368
368
|
data: ErrorResponse;
|
|
369
369
|
headers: Headers;
|
|
370
|
-
status:
|
|
370
|
+
status: 400 | 401 | 403;
|
|
371
371
|
};
|
|
372
372
|
/**
|
|
373
373
|
* Gets the license status information of the current tenant
|
|
@@ -378,12 +378,12 @@ declare const getLicenseStatus: (options?: ApiCallOptions) => Promise<GetLicense
|
|
|
378
378
|
type GetLicenseStatusHttpResponse = {
|
|
379
379
|
data: LicenseStatus;
|
|
380
380
|
headers: Headers;
|
|
381
|
-
status:
|
|
381
|
+
status: 200;
|
|
382
382
|
};
|
|
383
383
|
type GetLicenseStatusHttpError = {
|
|
384
384
|
data: ErrorResponse;
|
|
385
385
|
headers: Headers;
|
|
386
|
-
status:
|
|
386
|
+
status: 400 | 401;
|
|
387
387
|
};
|
|
388
388
|
/**
|
|
389
389
|
* Clears the cache for licenses api requests.
|
package/licenses.js
CHANGED
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"nanoid": "^5.0.9",
|
|
17
17
|
"ws": "^8.18.0"
|
|
18
18
|
},
|
|
19
|
-
"packageManager": "pnpm@9.15.
|
|
19
|
+
"packageManager": "pnpm@9.15.3",
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=18"
|
|
22
22
|
},
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"./qix": "./qix.js",
|
|
57
57
|
"./auth": "./auth.js"
|
|
58
58
|
},
|
|
59
|
-
"version": "1.
|
|
59
|
+
"version": "1.27.0"
|
|
60
60
|
}
|
package/qix.d.ts
CHANGED
package/qix.js
CHANGED
package/quotas.d.ts
CHANGED
|
@@ -51,12 +51,12 @@ declare const getQuotas: (query: {
|
|
|
51
51
|
type GetQuotasHttpResponse = {
|
|
52
52
|
data: GetQuotasResult;
|
|
53
53
|
headers: Headers;
|
|
54
|
-
status:
|
|
54
|
+
status: 200;
|
|
55
55
|
};
|
|
56
56
|
type GetQuotasHttpError = {
|
|
57
57
|
data: ErrorResponse;
|
|
58
58
|
headers: Headers;
|
|
59
|
-
status:
|
|
59
|
+
status: 401 | 500;
|
|
60
60
|
};
|
|
61
61
|
/**
|
|
62
62
|
* Returns a specific quota item for the tenant (provided in JWT).
|
|
@@ -72,12 +72,12 @@ declare const getQuota: (id: string, query: {
|
|
|
72
72
|
type GetQuotaHttpResponse = {
|
|
73
73
|
data: GetQuotaByIdResult;
|
|
74
74
|
headers: Headers;
|
|
75
|
-
status:
|
|
75
|
+
status: 200;
|
|
76
76
|
};
|
|
77
77
|
type GetQuotaHttpError = {
|
|
78
78
|
data: ErrorResponse;
|
|
79
79
|
headers: Headers;
|
|
80
|
-
status:
|
|
80
|
+
status: 401 | 404 | 500;
|
|
81
81
|
};
|
|
82
82
|
/**
|
|
83
83
|
* Clears the cache for quotas api requests.
|
package/quotas.js
CHANGED