@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 +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/models/PatchedRbacPolicy.d.ts +4 -0
- package/dist/types/models/RbacPolicy.d.ts +4 -0
- package/package.json +1 -1
- package/sdk_schema.yml +9 -1
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/PatchedRbacPolicy.ts +4 -0
- package/src/models/RbacPolicy.ts +4 -0
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
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.
|
|
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'
|
package/src/core/OpenAPI.ts
CHANGED
package/src/models/RbacPolicy.ts
CHANGED