@qlik/api 1.17.0 → 1.19.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 +2 -2
- package/api-keys.js +2 -2
- package/apps.d.ts +4 -4
- package/apps.js +2 -2
- package/audits.d.ts +16 -16
- package/audits.js +2 -2
- package/{auth-types-BU5EGt_9.d.ts → auth-types-PkN9CAF_.d.ts} +3 -0
- package/auth.d.ts +2 -2
- package/auth.js +2 -2
- package/automations.d.ts +2 -2
- package/automations.js +2 -2
- package/brands.d.ts +2 -2
- package/brands.js +2 -2
- package/chunks/{HFUVFYT4.js → 63L3IUY2.js} +74 -25
- package/chunks/{RWQS4ASJ.js → 64RJJHEL.js} +1 -1
- package/chunks/{NJFCE5EM.js → AKBUFQRX.js} +1 -1
- package/chunks/{5W53XSXH.js → BOJLTXK6.js} +2 -2
- package/chunks/{S5OMX5JT.js → ILZFMC3L.js} +53 -4
- package/chunks/{AVML2WPM.js → J6G5ZOKI.js} +1 -1
- package/chunks/{JBH4H34J.js → KKAWWYOT.js} +1 -1
- package/chunks/{6MPNTVLD.js → P5AG7AME.js} +1 -1
- package/chunks/{NJRTJEAQ.js → VISO65GO.js} +3 -3
- package/collections.d.ts +18 -17
- package/collections.js +2 -2
- package/csp-origins.d.ts +2 -2
- package/csp-origins.js +2 -2
- package/data-assets.d.ts +2 -2
- package/data-assets.js +2 -2
- package/data-connections.d.ts +2 -2
- package/data-connections.js +2 -2
- package/data-credentials.d.ts +2 -2
- package/data-credentials.js +2 -2
- package/data-files.d.ts +2 -2
- package/data-files.js +2 -2
- package/extensions.d.ts +18 -18
- package/extensions.js +2 -2
- package/{global.types-BU2Yugjm.d.ts → global.types--37uwGji.d.ts} +1 -1
- package/glossaries.d.ts +2 -2
- package/glossaries.js +2 -2
- package/groups.d.ts +10 -10
- package/groups.js +2 -2
- package/identity-providers.d.ts +2 -2
- package/identity-providers.js +2 -2
- package/index.d.ts +2 -2
- package/index.js +4 -4
- package/items.d.ts +11 -11
- package/items.js +2 -2
- package/licenses.d.ts +2 -2
- package/licenses.js +2 -2
- package/package.json +2 -2
- package/qix.d.ts +7 -4
- package/qix.js +2 -2
- package/quotas.d.ts +2 -2
- package/quotas.js +2 -2
- package/reload-tasks.d.ts +2 -2
- package/reload-tasks.js +2 -2
- package/reloads.d.ts +2 -2
- package/reloads.js +2 -2
- package/reports.d.ts +2 -2
- package/reports.js +2 -2
- package/roles.d.ts +2 -2
- package/roles.js +2 -2
- package/spaces.d.ts +2 -2
- package/spaces.js +2 -2
- package/temp-contents.d.ts +2 -2
- package/temp-contents.js +2 -2
- package/tenants.d.ts +2 -2
- package/tenants.js +2 -2
- package/themes.d.ts +18 -18
- package/themes.js +2 -2
- package/transports.d.ts +2 -2
- package/transports.js +2 -2
- package/users.d.ts +2 -2
- package/users.js +2 -2
- package/web-integrations.d.ts +2 -2
- package/web-integrations.js +2 -2
- package/web-notifications.d.ts +2 -2
- package/web-notifications.js +2 -2
- package/webhooks.d.ts +2 -2
- package/webhooks.js +2 -2
package/collections.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types--37uwGji.js';
|
|
2
|
+
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
type CollectionByIdPatch = {
|
|
5
5
|
/** The operation to be performed. */
|
|
@@ -19,6 +19,7 @@ type CollectionsAddCollectionItemRequestBody = {
|
|
|
19
19
|
};
|
|
20
20
|
type CollectionsCreateCollectionRequestBody = {
|
|
21
21
|
description?: string;
|
|
22
|
+
/** For `public` collections (tags), if name already exists in the tenant as a `public` collection, this call will fail with a `409` response. */
|
|
22
23
|
name: string;
|
|
23
24
|
type: CollectionTypes;
|
|
24
25
|
};
|
|
@@ -233,7 +234,7 @@ type Meta = {
|
|
|
233
234
|
timeout?: boolean;
|
|
234
235
|
};
|
|
235
236
|
/**
|
|
236
|
-
*
|
|
237
|
+
* Retrieves the collections that the user has access to. This endpoint does not return the user's favorites collection, which can be retrieved with `/v1/collections/favorites`.
|
|
237
238
|
*
|
|
238
239
|
* @param query an object with query parameters
|
|
239
240
|
* @throws GetCollectionsHttpError
|
|
@@ -261,7 +262,7 @@ declare const getCollections: (query: {
|
|
|
261
262
|
* must be prefixed by + or - to indicate ascending or descending sort order
|
|
262
263
|
* respectively. */
|
|
263
264
|
sort?: "+createdAt" | "-createdAt" | "+name" | "-name" | "+updatedAt" | "-updatedAt";
|
|
264
|
-
/** The case-sensitive string used to filter for a collection by type. */
|
|
265
|
+
/** The case-sensitive string used to filter for a collection by type. Retrieve private collections with `private`, public collections with `publicgoverned`, and tags with `public`. */
|
|
265
266
|
type?: CollectionTypes;
|
|
266
267
|
/** A commaseparated case-sensitive string used to filter by multiple types. */
|
|
267
268
|
types?: CollectionTypes[];
|
|
@@ -279,7 +280,7 @@ type GetCollectionsHttpError = {
|
|
|
279
280
|
status: number;
|
|
280
281
|
};
|
|
281
282
|
/**
|
|
282
|
-
* Creates and returns a new collection. Collections
|
|
283
|
+
* Creates and returns a new collection. Collections of type `public` (shown as tags in the user interface) must have unique names. Other collection types can reuse names.
|
|
283
284
|
*
|
|
284
285
|
* @param body an object with the body content
|
|
285
286
|
* @throws CreateCollectionHttpError
|
|
@@ -296,7 +297,7 @@ type CreateCollectionHttpError = {
|
|
|
296
297
|
status: number;
|
|
297
298
|
};
|
|
298
299
|
/**
|
|
299
|
-
*
|
|
300
|
+
* Lists the user's favorites collection.
|
|
300
301
|
*
|
|
301
302
|
* @throws GetFavoritesCollectionHttpError
|
|
302
303
|
*/
|
|
@@ -346,7 +347,7 @@ type GetCollectionHttpError = {
|
|
|
346
347
|
status: number;
|
|
347
348
|
};
|
|
348
349
|
/**
|
|
349
|
-
* Updates the
|
|
350
|
+
* Updates the name, description, or type fields provided in the patch body. Can be used to publish a `private` collection as a `publicgoverned` collection by patching `/type` with `publicgoverned` once the collection contains at least 1 item. Can also be used to return a `publicgoverned` collection to `private`. Cannot be used to change between `public` (tag) and `private / publicgoverned` (collection).
|
|
350
351
|
*
|
|
351
352
|
* @param collectionId The collection's unique identifier.
|
|
352
353
|
* @param body an object with the body content
|
|
@@ -364,7 +365,7 @@ type PatchCollectionHttpError = {
|
|
|
364
365
|
status: number;
|
|
365
366
|
};
|
|
366
367
|
/**
|
|
367
|
-
* Updates a collection and returns the
|
|
368
|
+
* Updates a collection's name and description and returns the updated collection. Omitted and unsupported fields are ignored. To unset a field, provide the field's zero value.
|
|
368
369
|
*
|
|
369
370
|
* @param collectionId The collection's unique identifier.
|
|
370
371
|
* @param body an object with the body content
|
|
@@ -382,7 +383,7 @@ type UpdateCollectionHttpError = {
|
|
|
382
383
|
status: number;
|
|
383
384
|
};
|
|
384
385
|
/**
|
|
385
|
-
*
|
|
386
|
+
* Retrieves items from a collection that the user has access to.
|
|
386
387
|
*
|
|
387
388
|
* @param collectionId The collection's unique identifier. (This query also supports 'favorites' as the collectionID).
|
|
388
389
|
|
|
@@ -463,7 +464,7 @@ type DeleteCollectionItemHttpError = {
|
|
|
463
464
|
status: number;
|
|
464
465
|
};
|
|
465
466
|
/**
|
|
466
|
-
* Finds and returns an item. See GET
|
|
467
|
+
* Finds and returns an item in a specific collection. See GET `/items/{id}`.
|
|
467
468
|
*
|
|
468
469
|
* @param collectionId The collection's unique identifier.
|
|
469
470
|
* @param itemId The item's unique identifier.
|
|
@@ -486,21 +487,21 @@ type GetCollectionItemHttpError = {
|
|
|
486
487
|
declare function clearCache(): void;
|
|
487
488
|
interface CollectionsAPI {
|
|
488
489
|
/**
|
|
489
|
-
*
|
|
490
|
+
* Retrieves the collections that the user has access to. This endpoint does not return the user's favorites collection, which can be retrieved with `/v1/collections/favorites`.
|
|
490
491
|
*
|
|
491
492
|
* @param query an object with query parameters
|
|
492
493
|
* @throws GetCollectionsHttpError
|
|
493
494
|
*/
|
|
494
495
|
getCollections: typeof getCollections;
|
|
495
496
|
/**
|
|
496
|
-
* Creates and returns a new collection. Collections
|
|
497
|
+
* Creates and returns a new collection. Collections of type `public` (shown as tags in the user interface) must have unique names. Other collection types can reuse names.
|
|
497
498
|
*
|
|
498
499
|
* @param body an object with the body content
|
|
499
500
|
* @throws CreateCollectionHttpError
|
|
500
501
|
*/
|
|
501
502
|
createCollection: typeof createCollection;
|
|
502
503
|
/**
|
|
503
|
-
*
|
|
504
|
+
* Lists the user's favorites collection.
|
|
504
505
|
*
|
|
505
506
|
* @throws GetFavoritesCollectionHttpError
|
|
506
507
|
*/
|
|
@@ -520,7 +521,7 @@ interface CollectionsAPI {
|
|
|
520
521
|
*/
|
|
521
522
|
getCollection: typeof getCollection;
|
|
522
523
|
/**
|
|
523
|
-
* Updates the
|
|
524
|
+
* Updates the name, description, or type fields provided in the patch body. Can be used to publish a `private` collection as a `publicgoverned` collection by patching `/type` with `publicgoverned` once the collection contains at least 1 item. Can also be used to return a `publicgoverned` collection to `private`. Cannot be used to change between `public` (tag) and `private / publicgoverned` (collection).
|
|
524
525
|
*
|
|
525
526
|
* @param collectionId The collection's unique identifier.
|
|
526
527
|
* @param body an object with the body content
|
|
@@ -528,7 +529,7 @@ interface CollectionsAPI {
|
|
|
528
529
|
*/
|
|
529
530
|
patchCollection: typeof patchCollection;
|
|
530
531
|
/**
|
|
531
|
-
* Updates a collection and returns the
|
|
532
|
+
* Updates a collection's name and description and returns the updated collection. Omitted and unsupported fields are ignored. To unset a field, provide the field's zero value.
|
|
532
533
|
*
|
|
533
534
|
* @param collectionId The collection's unique identifier.
|
|
534
535
|
* @param body an object with the body content
|
|
@@ -536,7 +537,7 @@ interface CollectionsAPI {
|
|
|
536
537
|
*/
|
|
537
538
|
updateCollection: typeof updateCollection;
|
|
538
539
|
/**
|
|
539
|
-
*
|
|
540
|
+
* Retrieves items from a collection that the user has access to.
|
|
540
541
|
*
|
|
541
542
|
* @param collectionId The collection's unique identifier. (This query also supports 'favorites' as the collectionID).
|
|
542
543
|
|
|
@@ -561,7 +562,7 @@ interface CollectionsAPI {
|
|
|
561
562
|
*/
|
|
562
563
|
deleteCollectionItem: typeof deleteCollectionItem;
|
|
563
564
|
/**
|
|
564
|
-
* Finds and returns an item. See GET
|
|
565
|
+
* Finds and returns an item in a specific collection. See GET `/items/{id}`.
|
|
565
566
|
*
|
|
566
567
|
* @param collectionId The collection's unique identifier.
|
|
567
568
|
* @param itemId The item's unique identifier.
|
package/collections.js
CHANGED
package/csp-origins.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types--37uwGji.js';
|
|
2
|
+
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
type CSPEntry = {
|
|
5
5
|
/** The CSP entry's unique identifier. */
|
package/csp-origins.js
CHANGED
package/data-assets.d.ts
CHANGED
package/data-assets.js
CHANGED
package/data-connections.d.ts
CHANGED
package/data-connections.js
CHANGED
package/data-credentials.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types--37uwGji.js';
|
|
2
|
+
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
type Credential = {
|
|
5
5
|
/** ID datasource that the credential is created for */
|
package/data-credentials.js
CHANGED
package/data-files.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types--37uwGji.js';
|
|
2
|
+
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
type BatchChangeSpaceItem = {
|
|
5
5
|
/** The ID of the data file whose space will be changed. */
|
package/data-files.js
CHANGED
package/extensions.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types--37uwGji.js';
|
|
2
|
+
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Object containing meta data regarding the bundle the extension belongs to. If it does not belong to a bundle, this object is not defined.
|
|
@@ -96,7 +96,7 @@ type Meta = {
|
|
|
96
96
|
stack?: string;
|
|
97
97
|
};
|
|
98
98
|
/**
|
|
99
|
-
* Lists all extensions.
|
|
99
|
+
* Lists all imported extensions in the tenant.
|
|
100
100
|
*
|
|
101
101
|
* @throws GetExtensionsHttpError
|
|
102
102
|
*/
|
|
@@ -112,7 +112,7 @@ type GetExtensionsHttpError = {
|
|
|
112
112
|
status: number;
|
|
113
113
|
};
|
|
114
114
|
/**
|
|
115
|
-
* Creates a new extension.
|
|
115
|
+
* Creates a new extension. Accepts either provided file or data object. The name of the new extension must be different to any existing extensions.
|
|
116
116
|
*
|
|
117
117
|
* @param body an object with the body content
|
|
118
118
|
* @throws UploadExtensionHttpError
|
|
@@ -134,7 +134,7 @@ type UploadExtensionHttpError = {
|
|
|
134
134
|
status: number;
|
|
135
135
|
};
|
|
136
136
|
/**
|
|
137
|
-
* Deletes a specific extension.
|
|
137
|
+
* Deletes a specific extension matching either extension ID or extension name.
|
|
138
138
|
*
|
|
139
139
|
* @param id Extension identifier or its qextFilename.
|
|
140
140
|
* @throws DeleteExtensionHttpError
|
|
@@ -151,7 +151,7 @@ type DeleteExtensionHttpError = {
|
|
|
151
151
|
status: number;
|
|
152
152
|
};
|
|
153
153
|
/**
|
|
154
|
-
* Returns a specific extension.
|
|
154
|
+
* Returns a specific extension matching either extension ID or extension name.
|
|
155
155
|
*
|
|
156
156
|
* @param id Extension identifier or its qextFilename.
|
|
157
157
|
* @throws GetExtensionHttpError
|
|
@@ -168,7 +168,7 @@ type GetExtensionHttpError = {
|
|
|
168
168
|
status: number;
|
|
169
169
|
};
|
|
170
170
|
/**
|
|
171
|
-
* Updates a specific extension
|
|
171
|
+
* Updates a specific extension matching either extension ID or extension name. Accepts either provided file or data object.
|
|
172
172
|
*
|
|
173
173
|
* @param id Extension identifier or its qextFilename.
|
|
174
174
|
* @param body an object with the body content
|
|
@@ -191,7 +191,7 @@ type PatchExtensionHttpError = {
|
|
|
191
191
|
status: number;
|
|
192
192
|
};
|
|
193
193
|
/**
|
|
194
|
-
* Downloads the extension as
|
|
194
|
+
* Downloads all files in the extension matching either extension ID or extension name as a `.zip` archive.
|
|
195
195
|
*
|
|
196
196
|
* @param id Extension identifier or its qextFilename.
|
|
197
197
|
* @throws DownloadExtensionHttpError
|
|
@@ -208,10 +208,10 @@ type DownloadExtensionHttpError = {
|
|
|
208
208
|
status: number;
|
|
209
209
|
};
|
|
210
210
|
/**
|
|
211
|
-
* Downloads a file from the extension
|
|
211
|
+
* Downloads a specific file from the extension matching either extension ID or extension name, identified by the file path within the imported extension.
|
|
212
212
|
*
|
|
213
213
|
* @param id Extension identifier or its qextFilename.
|
|
214
|
-
* @param filepath Path to the file
|
|
214
|
+
* @param filepath Path to the file location within the specified extension archive. Folders separated with forward slashes.
|
|
215
215
|
* @throws DownloadFileFromExtensionHttpError
|
|
216
216
|
*/
|
|
217
217
|
declare const downloadFileFromExtension: (id: string, filepath: string, options?: ApiCallOptions) => Promise<DownloadFileFromExtensionHttpResponse>;
|
|
@@ -231,34 +231,34 @@ type DownloadFileFromExtensionHttpError = {
|
|
|
231
231
|
declare function clearCache(): void;
|
|
232
232
|
interface ExtensionsAPI {
|
|
233
233
|
/**
|
|
234
|
-
* Lists all extensions.
|
|
234
|
+
* Lists all imported extensions in the tenant.
|
|
235
235
|
*
|
|
236
236
|
* @throws GetExtensionsHttpError
|
|
237
237
|
*/
|
|
238
238
|
getExtensions: typeof getExtensions;
|
|
239
239
|
/**
|
|
240
|
-
* Creates a new extension.
|
|
240
|
+
* Creates a new extension. Accepts either provided file or data object. The name of the new extension must be different to any existing extensions.
|
|
241
241
|
*
|
|
242
242
|
* @param body an object with the body content
|
|
243
243
|
* @throws UploadExtensionHttpError
|
|
244
244
|
*/
|
|
245
245
|
uploadExtension: typeof uploadExtension;
|
|
246
246
|
/**
|
|
247
|
-
* Deletes a specific extension.
|
|
247
|
+
* Deletes a specific extension matching either extension ID or extension name.
|
|
248
248
|
*
|
|
249
249
|
* @param id Extension identifier or its qextFilename.
|
|
250
250
|
* @throws DeleteExtensionHttpError
|
|
251
251
|
*/
|
|
252
252
|
deleteExtension: typeof deleteExtension;
|
|
253
253
|
/**
|
|
254
|
-
* Returns a specific extension.
|
|
254
|
+
* Returns a specific extension matching either extension ID or extension name.
|
|
255
255
|
*
|
|
256
256
|
* @param id Extension identifier or its qextFilename.
|
|
257
257
|
* @throws GetExtensionHttpError
|
|
258
258
|
*/
|
|
259
259
|
getExtension: typeof getExtension;
|
|
260
260
|
/**
|
|
261
|
-
* Updates a specific extension
|
|
261
|
+
* Updates a specific extension matching either extension ID or extension name. Accepts either provided file or data object.
|
|
262
262
|
*
|
|
263
263
|
* @param id Extension identifier or its qextFilename.
|
|
264
264
|
* @param body an object with the body content
|
|
@@ -266,17 +266,17 @@ interface ExtensionsAPI {
|
|
|
266
266
|
*/
|
|
267
267
|
patchExtension: typeof patchExtension;
|
|
268
268
|
/**
|
|
269
|
-
* Downloads the extension as
|
|
269
|
+
* Downloads all files in the extension matching either extension ID or extension name as a `.zip` archive.
|
|
270
270
|
*
|
|
271
271
|
* @param id Extension identifier or its qextFilename.
|
|
272
272
|
* @throws DownloadExtensionHttpError
|
|
273
273
|
*/
|
|
274
274
|
downloadExtension: typeof downloadExtension;
|
|
275
275
|
/**
|
|
276
|
-
* Downloads a file from the extension
|
|
276
|
+
* Downloads a specific file from the extension matching either extension ID or extension name, identified by the file path within the imported extension.
|
|
277
277
|
*
|
|
278
278
|
* @param id Extension identifier or its qextFilename.
|
|
279
|
-
* @param filepath Path to the file
|
|
279
|
+
* @param filepath Path to the file location within the specified extension archive. Folders separated with forward slashes.
|
|
280
280
|
* @throws DownloadFileFromExtensionHttpError
|
|
281
281
|
*/
|
|
282
282
|
downloadFileFromExtension: typeof downloadFileFromExtension;
|
package/extensions.js
CHANGED
package/glossaries.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types--37uwGji.js';
|
|
2
|
+
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* A JSON Patch document as defined in http://tools.ietf.org/html/rfc6902.
|
package/glossaries.js
CHANGED
package/groups.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types--37uwGji.js';
|
|
2
|
+
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* An array of role references. Visibility dependant on access level. Must have access to roles to view other users' assigned roles.
|
|
@@ -268,7 +268,7 @@ type FilterGroupsHttpError = {
|
|
|
268
268
|
status: number;
|
|
269
269
|
};
|
|
270
270
|
/**
|
|
271
|
-
* Returns the
|
|
271
|
+
* 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.
|
|
272
272
|
*
|
|
273
273
|
* @throws GetGroupsSettingsHttpError
|
|
274
274
|
*/
|
|
@@ -284,7 +284,7 @@ type GetGroupsSettingsHttpError = {
|
|
|
284
284
|
status: number;
|
|
285
285
|
};
|
|
286
286
|
/**
|
|
287
|
-
*
|
|
287
|
+
* 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.
|
|
288
288
|
*
|
|
289
289
|
* @param body an object with the body content
|
|
290
290
|
* @throws PatchGroupsSettingsHttpError
|
|
@@ -301,7 +301,7 @@ type PatchGroupsSettingsHttpError = {
|
|
|
301
301
|
status: number;
|
|
302
302
|
};
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
304
|
+
* Deletes the requested group.
|
|
305
305
|
*
|
|
306
306
|
* @param groupId The ID of the group to delete.
|
|
307
307
|
* @throws DeleteGroupHttpError
|
|
@@ -335,7 +335,7 @@ type GetGroupHttpError = {
|
|
|
335
335
|
status: number;
|
|
336
336
|
};
|
|
337
337
|
/**
|
|
338
|
-
*
|
|
338
|
+
* Updates the requested group.
|
|
339
339
|
*
|
|
340
340
|
* @param groupId The ID of the group to update.
|
|
341
341
|
* @param body an object with the body content
|
|
@@ -380,20 +380,20 @@ interface GroupsAPI {
|
|
|
380
380
|
*/
|
|
381
381
|
filterGroups: typeof filterGroups;
|
|
382
382
|
/**
|
|
383
|
-
* Returns the
|
|
383
|
+
* 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.
|
|
384
384
|
*
|
|
385
385
|
* @throws GetGroupsSettingsHttpError
|
|
386
386
|
*/
|
|
387
387
|
getGroupsSettings: typeof getGroupsSettings;
|
|
388
388
|
/**
|
|
389
|
-
*
|
|
389
|
+
* 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.
|
|
390
390
|
*
|
|
391
391
|
* @param body an object with the body content
|
|
392
392
|
* @throws PatchGroupsSettingsHttpError
|
|
393
393
|
*/
|
|
394
394
|
patchGroupsSettings: typeof patchGroupsSettings;
|
|
395
395
|
/**
|
|
396
|
-
*
|
|
396
|
+
* Deletes the requested group.
|
|
397
397
|
*
|
|
398
398
|
* @param groupId The ID of the group to delete.
|
|
399
399
|
* @throws DeleteGroupHttpError
|
|
@@ -407,7 +407,7 @@ interface GroupsAPI {
|
|
|
407
407
|
*/
|
|
408
408
|
getGroup: typeof getGroup;
|
|
409
409
|
/**
|
|
410
|
-
*
|
|
410
|
+
* Updates the requested group.
|
|
411
411
|
*
|
|
412
412
|
* @param groupId The ID of the group to update.
|
|
413
413
|
* @param body an object with the body content
|
package/groups.js
CHANGED
package/identity-providers.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as ApiCallOptions } from './global.types
|
|
2
|
-
import './auth-types-
|
|
1
|
+
import { A as ApiCallOptions } from './global.types--37uwGji.js';
|
|
2
|
+
import './auth-types-PkN9CAF_.js';
|
|
3
3
|
|
|
4
4
|
type BaseIDP = {
|
|
5
5
|
/** Indicates whether the IdP is available for use. */
|
package/identity-providers.js
CHANGED
package/index.d.ts
CHANGED
|
@@ -31,8 +31,8 @@ import { UsersAPI } from './users.js';
|
|
|
31
31
|
import { WebIntegrationsAPI } from './web-integrations.js';
|
|
32
32
|
import { WebNotificationsAPI } from './web-notifications.js';
|
|
33
33
|
import { WebhooksAPI } from './webhooks.js';
|
|
34
|
-
import './global.types
|
|
35
|
-
import './auth-types-
|
|
34
|
+
import './global.types--37uwGji.js';
|
|
35
|
+
import './auth-types-PkN9CAF_.js';
|
|
36
36
|
|
|
37
37
|
declare const apiKeys: ApiKeysAPI;
|
|
38
38
|
declare const apps: AppsAPI;
|
package/index.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
qix_default
|
|
3
|
-
} from "./chunks/
|
|
3
|
+
} from "./chunks/KKAWWYOT.js";
|
|
4
4
|
import {
|
|
5
5
|
auth_default
|
|
6
|
-
} from "./chunks/
|
|
6
|
+
} from "./chunks/J6G5ZOKI.js";
|
|
7
7
|
import {
|
|
8
8
|
clearApiCache,
|
|
9
9
|
invokeFetch
|
|
10
|
-
} from "./chunks/
|
|
11
|
-
import "./chunks/
|
|
10
|
+
} from "./chunks/BOJLTXK6.js";
|
|
11
|
+
import "./chunks/VISO65GO.js";
|
|
12
12
|
import "./chunks/2ZQ3ZX7F.js";
|
|
13
13
|
|
|
14
14
|
// src/public/public-runtime-api-generator/public-runtime-api-generator.ts
|