@iblai/iblai-api 4.126.0-core → 4.126.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 +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/models/PlatformInvitationCreate.d.ts +5 -5
- package/package.json +1 -1
- package/sdk_schema.yml +6 -6
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/PlatformInvitationCreate.ts +5 -5
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* - company_name (optional): Company name for the invited user
|
|
6
6
|
* - first_name (new): First name of the invited user
|
|
7
7
|
* - last_name (new): Last name of the invited user
|
|
8
|
-
* -
|
|
9
|
-
* -
|
|
8
|
+
* - user_group (new): Name of the UserGroup to assign the user to
|
|
9
|
+
* - user_group_owner_email (optional): Email of user who should own the group
|
|
10
10
|
*/
|
|
11
11
|
export type PlatformInvitationCreate = {
|
|
12
12
|
/**
|
|
@@ -60,9 +60,9 @@ export type PlatformInvitationCreate = {
|
|
|
60
60
|
/**
|
|
61
61
|
* Name of the UserGroup to assign the user to
|
|
62
62
|
*/
|
|
63
|
-
|
|
63
|
+
user_group?: string;
|
|
64
64
|
/**
|
|
65
|
-
* Email of
|
|
65
|
+
* Email of user who should own the group (falls back to uploader)
|
|
66
66
|
*/
|
|
67
|
-
|
|
67
|
+
user_group_owner_email?: string;
|
|
68
68
|
};
|
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.126.
|
|
4
|
+
version: 4.126.1-core
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/analytics/content/:
|
|
@@ -40306,8 +40306,8 @@ components:
|
|
|
40306
40306
|
- company_name (optional): Company name for the invited user
|
|
40307
40307
|
- first_name (new): First name of the invited user
|
|
40308
40308
|
- last_name (new): Last name of the invited user
|
|
40309
|
-
-
|
|
40310
|
-
-
|
|
40309
|
+
- user_group (new): Name of the UserGroup to assign the user to
|
|
40310
|
+
- user_group_owner_email (optional): Email of user who should own the group
|
|
40311
40311
|
properties:
|
|
40312
40312
|
platform_key:
|
|
40313
40313
|
type: string
|
|
@@ -40354,14 +40354,14 @@ components:
|
|
|
40354
40354
|
type: string
|
|
40355
40355
|
description: Last name of the invited user
|
|
40356
40356
|
maxLength: 255
|
|
40357
|
-
|
|
40357
|
+
user_group:
|
|
40358
40358
|
type: string
|
|
40359
40359
|
description: Name of the UserGroup to assign the user to
|
|
40360
40360
|
maxLength: 255
|
|
40361
|
-
|
|
40361
|
+
user_group_owner_email:
|
|
40362
40362
|
type: string
|
|
40363
40363
|
format: email
|
|
40364
|
-
description: Email of
|
|
40364
|
+
description: Email of user who should own the group (falls back to uploader)
|
|
40365
40365
|
required:
|
|
40366
40366
|
- platform_key
|
|
40367
40367
|
PlatformInvitationDetail:
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
* - company_name (optional): Company name for the invited user
|
|
10
10
|
* - first_name (new): First name of the invited user
|
|
11
11
|
* - last_name (new): Last name of the invited user
|
|
12
|
-
* -
|
|
13
|
-
* -
|
|
12
|
+
* - user_group (new): Name of the UserGroup to assign the user to
|
|
13
|
+
* - user_group_owner_email (optional): Email of user who should own the group
|
|
14
14
|
*/
|
|
15
15
|
export type PlatformInvitationCreate = {
|
|
16
16
|
/**
|
|
@@ -64,10 +64,10 @@ export type PlatformInvitationCreate = {
|
|
|
64
64
|
/**
|
|
65
65
|
* Name of the UserGroup to assign the user to
|
|
66
66
|
*/
|
|
67
|
-
|
|
67
|
+
user_group?: string;
|
|
68
68
|
/**
|
|
69
|
-
* Email of
|
|
69
|
+
* Email of user who should own the group (falls back to uploader)
|
|
70
70
|
*/
|
|
71
|
-
|
|
71
|
+
user_group_owner_email?: string;
|
|
72
72
|
};
|
|
73
73
|
|