@iblai/iblai-api 4.320.0-core → 4.320.1-core

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 CHANGED
@@ -110,7 +110,7 @@ class CancelablePromise {
110
110
 
111
111
  const OpenAPI = {
112
112
  BASE: 'https://base.manager.iblai.app',
113
- VERSION: '4.320.0-core',
113
+ VERSION: '4.320.1-core',
114
114
  WITH_CREDENTIALS: false,
115
115
  CREDENTIALS: 'include',
116
116
  TOKEN: undefined,
package/dist/index.esm.js CHANGED
@@ -108,7 +108,7 @@ class CancelablePromise {
108
108
 
109
109
  const OpenAPI = {
110
110
  BASE: 'https://base.manager.iblai.app',
111
- VERSION: '4.320.0-core',
111
+ VERSION: '4.320.1-core',
112
112
  WITH_CREDENTIALS: false,
113
113
  CREDENTIALS: 'include',
114
114
  TOKEN: undefined,
package/dist/index.umd.js CHANGED
@@ -114,7 +114,7 @@
114
114
 
115
115
  const OpenAPI = {
116
116
  BASE: 'https://base.manager.iblai.app',
117
- VERSION: '4.320.0-core',
117
+ VERSION: '4.320.1-core',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.320.0-core",
3
+ "version": "4.320.1-core",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "type": "module",
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.0-core
4
+ version: 4.320.1-core
5
5
  description: API for iblai
6
6
  paths:
7
7
  /api/analytics/content/:
@@ -22122,8 +22122,7 @@ paths:
22122
22122
  - in: path
22123
22123
  name: id
22124
22124
  schema:
22125
- type: integer
22126
- description: A unique integer value identifying this RBAC Role.
22125
+ type: string
22127
22126
  required: true
22128
22127
  tags:
22129
22128
  - core
@@ -22148,8 +22147,7 @@ paths:
22148
22147
  - in: path
22149
22148
  name: id
22150
22149
  schema:
22151
- type: integer
22152
- description: A unique integer value identifying this RBAC Role.
22150
+ type: string
22153
22151
  required: true
22154
22152
  tags:
22155
22153
  - core
@@ -22194,8 +22192,7 @@ paths:
22194
22192
  - in: path
22195
22193
  name: id
22196
22194
  schema:
22197
- type: integer
22198
- description: A unique integer value identifying this RBAC Role.
22195
+ type: string
22199
22196
  required: true
22200
22197
  tags:
22201
22198
  - core
@@ -22240,8 +22237,7 @@ paths:
22240
22237
  - in: path
22241
22238
  name: id
22242
22239
  schema:
22243
- type: integer
22244
- description: A unique integer value identifying this RBAC Role.
22240
+ type: string
22245
22241
  required: true
22246
22242
  - in: query
22247
22243
  name: platform_key
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
21
21
 
22
22
  export const OpenAPI: OpenAPIConfig = {
23
23
  BASE: 'https://base.manager.iblai.app',
24
- VERSION: '4.320.0-core',
24
+ VERSION: '4.320.1-core',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -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
  */