@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 CHANGED
@@ -110,7 +110,7 @@ class CancelablePromise {
110
110
 
111
111
  const OpenAPI = {
112
112
  BASE: 'https://base.manager.iblai.app',
113
- VERSION: '4.126.0-core',
113
+ VERSION: '4.126.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.126.0-core',
111
+ VERSION: '4.126.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.126.0-core',
117
+ VERSION: '4.126.1-core',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -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
- * - group (new): Name of the UserGroup to assign the user to
9
- * - department_admin_email (optional): Email of department admin (for validation)
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
- group?: string;
63
+ user_group?: string;
64
64
  /**
65
- * Email of department admin (for validation when group is specified)
65
+ * Email of user who should own the group (falls back to uploader)
66
66
  */
67
- department_admin_email?: string;
67
+ user_group_owner_email?: string;
68
68
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.126.0-core",
3
+ "version": "4.126.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.126.0-core
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
- - group (new): Name of the UserGroup to assign the user to
40310
- - department_admin_email (optional): Email of department admin (for validation)
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
- group:
40357
+ user_group:
40358
40358
  type: string
40359
40359
  description: Name of the UserGroup to assign the user to
40360
40360
  maxLength: 255
40361
- department_admin_email:
40361
+ user_group_owner_email:
40362
40362
  type: string
40363
40363
  format: email
40364
- description: Email of department admin (for validation when group is specified)
40364
+ description: Email of user who should own the group (falls back to uploader)
40365
40365
  required:
40366
40366
  - platform_key
40367
40367
  PlatformInvitationDetail:
@@ -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.126.0-core',
24
+ VERSION: '4.126.1-core',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -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
- * - group (new): Name of the UserGroup to assign the user to
13
- * - department_admin_email (optional): Email of department admin (for validation)
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
- group?: string;
67
+ user_group?: string;
68
68
  /**
69
- * Email of department admin (for validation when group is specified)
69
+ * Email of user who should own the group (falls back to uploader)
70
70
  */
71
- department_admin_email?: string;
71
+ user_group_owner_email?: string;
72
72
  };
73
73