@iblai/iblai-api 4.17.4-core → 4.18.0-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.17.4-core',
113
+ VERSION: '4.18.0-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.17.4-core',
111
+ VERSION: '4.18.0-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.17.4-core',
117
+ VERSION: '4.18.0-core',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -7,6 +7,10 @@ import type { RbacUser } from './RbacUser';
7
7
  */
8
8
  export type PatchedRbacPolicy = {
9
9
  readonly id?: number;
10
+ /**
11
+ * Policy name. If not supplied, defaults to a UUID4
12
+ */
13
+ name?: string;
10
14
  /**
11
15
  * Role information (read-only)
12
16
  */
@@ -7,6 +7,10 @@ import type { RbacUser } from './RbacUser';
7
7
  */
8
8
  export type RbacPolicy = {
9
9
  readonly id: number;
10
+ /**
11
+ * Policy name. If not supplied, defaults to a UUID4
12
+ */
13
+ name?: string;
10
14
  /**
11
15
  * Role information (read-only)
12
16
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.17.4-core",
3
+ "version": "4.18.0-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.17.4-core
4
+ version: 4.18.0-core
5
5
  description: API for iblai
6
6
  paths:
7
7
  /api/analytics/orgs/{org}/time/update/:
@@ -31951,6 +31951,10 @@ components:
31951
31951
  id:
31952
31952
  type: integer
31953
31953
  readOnly: true
31954
+ name:
31955
+ type: string
31956
+ description: Policy name. If not supplied, defaults to a UUID4
31957
+ maxLength: 255
31954
31958
  role:
31955
31959
  allOf:
31956
31960
  - $ref: '#/components/schemas/RbacBaseRole'
@@ -34966,6 +34970,10 @@ components:
34966
34970
  id:
34967
34971
  type: integer
34968
34972
  readOnly: true
34973
+ name:
34974
+ type: string
34975
+ description: Policy name. If not supplied, defaults to a UUID4
34976
+ maxLength: 255
34969
34977
  role:
34970
34978
  allOf:
34971
34979
  - $ref: '#/components/schemas/RbacBaseRole'
@@ -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.17.4-core',
24
+ VERSION: '4.18.0-core',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -11,6 +11,10 @@ import type { RbacUser } from './RbacUser';
11
11
  */
12
12
  export type PatchedRbacPolicy = {
13
13
  readonly id?: number;
14
+ /**
15
+ * Policy name. If not supplied, defaults to a UUID4
16
+ */
17
+ name?: string;
14
18
  /**
15
19
  * Role information (read-only)
16
20
  */
@@ -11,6 +11,10 @@ import type { RbacUser } from './RbacUser';
11
11
  */
12
12
  export type RbacPolicy = {
13
13
  readonly id: number;
14
+ /**
15
+ * Policy name. If not supplied, defaults to a UUID4
16
+ */
17
+ name?: string;
14
18
  /**
15
19
  * Role information (read-only)
16
20
  */