@iblai/iblai-api 4.320.0-ai → 4.320.1-ai
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/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/services/CoreService.d.ts +4 -16
- package/package.json +1 -1
- package/sdk_schema.yml +5 -9
- package/src/core/OpenAPI.ts +1 -1
- package/src/services/CoreService.ts +4 -16
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -1377,10 +1377,7 @@ export declare class CoreService {
|
|
|
1377
1377
|
* @throws ApiError
|
|
1378
1378
|
*/
|
|
1379
1379
|
static coreRbacRolesRetrieve({ id, }: {
|
|
1380
|
-
|
|
1381
|
-
* A unique integer value identifying this RBAC Role.
|
|
1382
|
-
*/
|
|
1383
|
-
id: number;
|
|
1380
|
+
id: string;
|
|
1384
1381
|
}): CancelablePromise<RbacRole>;
|
|
1385
1382
|
/**
|
|
1386
1383
|
* Update RBAC role
|
|
@@ -1389,10 +1386,7 @@ export declare class CoreService {
|
|
|
1389
1386
|
* @throws ApiError
|
|
1390
1387
|
*/
|
|
1391
1388
|
static coreRbacRolesUpdate({ id, requestBody, }: {
|
|
1392
|
-
|
|
1393
|
-
* A unique integer value identifying this RBAC Role.
|
|
1394
|
-
*/
|
|
1395
|
-
id: number;
|
|
1389
|
+
id: string;
|
|
1396
1390
|
requestBody: RbacRole;
|
|
1397
1391
|
}): CancelablePromise<RbacRole>;
|
|
1398
1392
|
/**
|
|
@@ -1402,10 +1396,7 @@ export declare class CoreService {
|
|
|
1402
1396
|
* @throws ApiError
|
|
1403
1397
|
*/
|
|
1404
1398
|
static coreRbacRolesPartialUpdate({ id, requestBody, }: {
|
|
1405
|
-
|
|
1406
|
-
* A unique integer value identifying this RBAC Role.
|
|
1407
|
-
*/
|
|
1408
|
-
id: number;
|
|
1399
|
+
id: string;
|
|
1409
1400
|
requestBody?: PatchedRbacRole;
|
|
1410
1401
|
}): CancelablePromise<RbacRole>;
|
|
1411
1402
|
/**
|
|
@@ -1415,10 +1406,7 @@ export declare class CoreService {
|
|
|
1415
1406
|
* @throws ApiError
|
|
1416
1407
|
*/
|
|
1417
1408
|
static coreRbacRolesDestroy({ id, platformKey, }: {
|
|
1418
|
-
|
|
1419
|
-
* A unique integer value identifying this RBAC Role.
|
|
1420
|
-
*/
|
|
1421
|
-
id: number;
|
|
1409
|
+
id: string;
|
|
1422
1410
|
/**
|
|
1423
1411
|
* platform key for authorization check
|
|
1424
1412
|
*/
|
package/package.json
CHANGED
package/sdk_schema.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
openapi: 3.0.3
|
|
2
2
|
info:
|
|
3
3
|
title: ibl-data-manager
|
|
4
|
-
version: 4.320.
|
|
4
|
+
version: 4.320.1-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/ai-account/connected-services/callback/:
|
|
@@ -72650,8 +72650,7 @@ paths:
|
|
|
72650
72650
|
- in: path
|
|
72651
72651
|
name: id
|
|
72652
72652
|
schema:
|
|
72653
|
-
type:
|
|
72654
|
-
description: A unique integer value identifying this RBAC Role.
|
|
72653
|
+
type: string
|
|
72655
72654
|
required: true
|
|
72656
72655
|
tags:
|
|
72657
72656
|
- core
|
|
@@ -72676,8 +72675,7 @@ paths:
|
|
|
72676
72675
|
- in: path
|
|
72677
72676
|
name: id
|
|
72678
72677
|
schema:
|
|
72679
|
-
type:
|
|
72680
|
-
description: A unique integer value identifying this RBAC Role.
|
|
72678
|
+
type: string
|
|
72681
72679
|
required: true
|
|
72682
72680
|
tags:
|
|
72683
72681
|
- core
|
|
@@ -72722,8 +72720,7 @@ paths:
|
|
|
72722
72720
|
- in: path
|
|
72723
72721
|
name: id
|
|
72724
72722
|
schema:
|
|
72725
|
-
type:
|
|
72726
|
-
description: A unique integer value identifying this RBAC Role.
|
|
72723
|
+
type: string
|
|
72727
72724
|
required: true
|
|
72728
72725
|
tags:
|
|
72729
72726
|
- core
|
|
@@ -72768,8 +72765,7 @@ paths:
|
|
|
72768
72765
|
- in: path
|
|
72769
72766
|
name: id
|
|
72770
72767
|
schema:
|
|
72771
|
-
type:
|
|
72772
|
-
description: A unique integer value identifying this RBAC Role.
|
|
72768
|
+
type: string
|
|
72773
72769
|
required: true
|
|
72774
72770
|
- in: query
|
|
72775
72771
|
name: platform_key
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -2726,10 +2726,7 @@ export class CoreService {
|
|
|
2726
2726
|
public static coreRbacRolesRetrieve({
|
|
2727
2727
|
id,
|
|
2728
2728
|
}: {
|
|
2729
|
-
|
|
2730
|
-
* A unique integer value identifying this RBAC Role.
|
|
2731
|
-
*/
|
|
2732
|
-
id: number,
|
|
2729
|
+
id: string,
|
|
2733
2730
|
}): CancelablePromise<RbacRole> {
|
|
2734
2731
|
return __request(OpenAPI, {
|
|
2735
2732
|
method: 'GET',
|
|
@@ -2753,10 +2750,7 @@ export class CoreService {
|
|
|
2753
2750
|
id,
|
|
2754
2751
|
requestBody,
|
|
2755
2752
|
}: {
|
|
2756
|
-
|
|
2757
|
-
* A unique integer value identifying this RBAC Role.
|
|
2758
|
-
*/
|
|
2759
|
-
id: number,
|
|
2753
|
+
id: string,
|
|
2760
2754
|
requestBody: RbacRole,
|
|
2761
2755
|
}): CancelablePromise<RbacRole> {
|
|
2762
2756
|
return __request(OpenAPI, {
|
|
@@ -2784,10 +2778,7 @@ export class CoreService {
|
|
|
2784
2778
|
id,
|
|
2785
2779
|
requestBody,
|
|
2786
2780
|
}: {
|
|
2787
|
-
|
|
2788
|
-
* A unique integer value identifying this RBAC Role.
|
|
2789
|
-
*/
|
|
2790
|
-
id: number,
|
|
2781
|
+
id: string,
|
|
2791
2782
|
requestBody?: PatchedRbacRole,
|
|
2792
2783
|
}): CancelablePromise<RbacRole> {
|
|
2793
2784
|
return __request(OpenAPI, {
|
|
@@ -2815,10 +2806,7 @@ export class CoreService {
|
|
|
2815
2806
|
id,
|
|
2816
2807
|
platformKey,
|
|
2817
2808
|
}: {
|
|
2818
|
-
|
|
2819
|
-
* A unique integer value identifying this RBAC Role.
|
|
2820
|
-
*/
|
|
2821
|
-
id: number,
|
|
2809
|
+
id: string,
|
|
2822
2810
|
/**
|
|
2823
2811
|
* platform key for authorization check
|
|
2824
2812
|
*/
|