@iblai/iblai-api 4.281.0-ai → 4.282.0-ai

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.281.0-ai-plus',
113
+ VERSION: '4.282.0-ai-plus',
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.281.0-ai-plus',
111
+ VERSION: '4.282.0-ai-plus',
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.281.0-ai-plus',
117
+ VERSION: '4.282.0-ai-plus',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -21,6 +21,7 @@ export type CourseCreationTask = {
21
21
  readonly status: CourseCreationTaskStatusEnum;
22
22
  publish_course?: boolean;
23
23
  readonly course_data: any;
24
+ readonly course_id: string;
24
25
  provider?: string;
25
26
  model?: string;
26
27
  desired_number_of_sections?: number;
@@ -5,6 +5,7 @@ export type EdxCourse = {
5
5
  number: string;
6
6
  description?: string;
7
7
  xblock_id: string;
8
+ readonly course_id: string;
8
9
  task?: number | null;
9
10
  readonly created_at: string;
10
11
  readonly updated_at: string;
@@ -136,6 +136,10 @@ export type Mentor = {
136
136
  * Show voice recording button on embedded mentor.
137
137
  */
138
138
  embed_show_voice_record?: boolean;
139
+ /**
140
+ * Show display canvas on embedded mentor.
141
+ */
142
+ embed_show_canvas?: boolean;
139
143
  /**
140
144
  * Show explore mentors option.
141
145
  */
@@ -122,6 +122,10 @@ export type MentorCreate = {
122
122
  * Show voice recording button on embedded mentor.
123
123
  */
124
124
  embed_show_voice_record?: boolean;
125
+ /**
126
+ * Show display canvas on embedded mentor.
127
+ */
128
+ embed_show_canvas?: boolean;
125
129
  /**
126
130
  * Show explore mentors option.
127
131
  */
@@ -52,6 +52,7 @@ export type MentorFromTemplateWithSettingRequest = {
52
52
  embed_show_attachment?: boolean;
53
53
  embed_show_voice_call?: boolean;
54
54
  embed_show_voice_record?: boolean;
55
+ embed_show_canvas?: boolean;
55
56
  show_explore_mentors?: boolean;
56
57
  embed_icon_selection_data?: any;
57
58
  placeholder_prompt?: string;
@@ -58,6 +58,7 @@ export type MentorSettings = {
58
58
  readonly embed_show_attachment: boolean;
59
59
  readonly embed_show_voice_call: boolean;
60
60
  readonly embed_show_voice_record: boolean;
61
+ readonly embed_show_canvas: boolean;
61
62
  readonly show_explore_mentors: boolean;
62
63
  readonly embed_icon_selection_data: any;
63
64
  embed_custom_image?: string | null;
@@ -56,6 +56,7 @@ export type MentorSettingsPublic = {
56
56
  readonly embed_show_attachment: boolean;
57
57
  readonly embed_show_voice_call: boolean;
58
58
  readonly embed_show_voice_record: boolean;
59
+ readonly embed_show_canvas: boolean;
59
60
  readonly show_explore_mentors: boolean;
60
61
  readonly embed_icon_selection_data: any;
61
62
  embed_custom_image?: string | null;
@@ -73,6 +73,7 @@ export type MentorSettingsRequest = {
73
73
  embed_show_attachment?: boolean;
74
74
  embed_show_voice_call?: boolean;
75
75
  embed_show_voice_record?: boolean;
76
+ embed_show_canvas?: boolean;
76
77
  show_explore_mentors?: boolean;
77
78
  embed_icon_selection_data?: any;
78
79
  google_voice?: number;
@@ -122,6 +122,10 @@ export type PatchedMentorCreate = {
122
122
  * Show voice recording button on embedded mentor.
123
123
  */
124
124
  embed_show_voice_record?: boolean;
125
+ /**
126
+ * Show display canvas on embedded mentor.
127
+ */
128
+ embed_show_canvas?: boolean;
125
129
  /**
126
130
  * Show explore mentors option.
127
131
  */
@@ -58,6 +58,7 @@ export type PatchedMentorSettings = {
58
58
  readonly embed_show_attachment?: boolean;
59
59
  readonly embed_show_voice_call?: boolean;
60
60
  readonly embed_show_voice_record?: boolean;
61
+ readonly embed_show_canvas?: boolean;
61
62
  readonly show_explore_mentors?: boolean;
62
63
  readonly embed_icon_selection_data?: any;
63
64
  embed_custom_image?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.281.0-ai",
3
+ "version": "4.282.0-ai",
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.281.0-ai-plus
4
+ version: 4.282.0-ai-plus
5
5
  description: API for iblai
6
6
  paths:
7
7
  /access-check/{item_type}/{item_id}/:
@@ -90817,6 +90817,9 @@ components:
90817
90817
  type: boolean
90818
90818
  course_data:
90819
90819
  readOnly: true
90820
+ course_id:
90821
+ type: string
90822
+ readOnly: true
90820
90823
  provider:
90821
90824
  type: string
90822
90825
  maxLength: 20
@@ -90848,6 +90851,7 @@ components:
90848
90851
  readOnly: true
90849
90852
  required:
90850
90853
  - course_data
90854
+ - course_id
90851
90855
  - date_created
90852
90856
  - description
90853
90857
  - files
@@ -93837,6 +93841,9 @@ components:
93837
93841
  xblock_id:
93838
93842
  type: string
93839
93843
  maxLength: 200
93844
+ course_id:
93845
+ type: string
93846
+ readOnly: true
93840
93847
  task:
93841
93848
  type: integer
93842
93849
  nullable: true
@@ -93849,6 +93856,7 @@ components:
93849
93856
  format: date-time
93850
93857
  readOnly: true
93851
93858
  required:
93859
+ - course_id
93852
93860
  - created_at
93853
93861
  - id
93854
93862
  - name
@@ -98005,6 +98013,9 @@ components:
98005
98013
  embed_show_voice_record:
98006
98014
  type: boolean
98007
98015
  description: Show voice recording button on embedded mentor.
98016
+ embed_show_canvas:
98017
+ type: boolean
98018
+ description: Show display canvas on embedded mentor.
98008
98019
  show_explore_mentors:
98009
98020
  type: boolean
98010
98021
  description: Show explore mentors option.
@@ -98447,6 +98458,9 @@ components:
98447
98458
  embed_show_voice_record:
98448
98459
  type: boolean
98449
98460
  description: Show voice recording button on embedded mentor.
98461
+ embed_show_canvas:
98462
+ type: boolean
98463
+ description: Show display canvas on embedded mentor.
98450
98464
  show_explore_mentors:
98451
98465
  type: boolean
98452
98466
  description: Show explore mentors option.
@@ -98921,6 +98935,9 @@ components:
98921
98935
  embed_show_voice_record:
98922
98936
  type: boolean
98923
98937
  default: true
98938
+ embed_show_canvas:
98939
+ type: boolean
98940
+ default: true
98924
98941
  show_explore_mentors:
98925
98942
  type: boolean
98926
98943
  default: true
@@ -99405,6 +99422,9 @@ components:
99405
99422
  embed_show_voice_record:
99406
99423
  type: boolean
99407
99424
  readOnly: true
99425
+ embed_show_canvas:
99426
+ type: boolean
99427
+ readOnly: true
99408
99428
  show_explore_mentors:
99409
99429
  type: boolean
99410
99430
  readOnly: true
@@ -99618,6 +99638,7 @@ components:
99618
99638
  - embed_is_context_aware
99619
99639
  - embed_open_by_default
99620
99640
  - embed_show_attachment
99641
+ - embed_show_canvas
99621
99642
  - embed_show_voice_call
99622
99643
  - embed_show_voice_record
99623
99644
  - enable_custom_javascript
@@ -99844,6 +99865,9 @@ components:
99844
99865
  embed_show_voice_record:
99845
99866
  type: boolean
99846
99867
  readOnly: true
99868
+ embed_show_canvas:
99869
+ type: boolean
99870
+ readOnly: true
99847
99871
  show_explore_mentors:
99848
99872
  type: boolean
99849
99873
  readOnly: true
@@ -99964,6 +99988,7 @@ components:
99964
99988
  - embed_is_context_aware
99965
99989
  - embed_open_by_default
99966
99990
  - embed_show_attachment
99991
+ - embed_show_canvas
99967
99992
  - embed_show_voice_call
99968
99993
  - embed_show_voice_record
99969
99994
  - enable_custom_javascript
@@ -100179,6 +100204,8 @@ components:
100179
100204
  type: boolean
100180
100205
  embed_show_voice_record:
100181
100206
  type: boolean
100207
+ embed_show_canvas:
100208
+ type: boolean
100182
100209
  show_explore_mentors:
100183
100210
  type: boolean
100184
100211
  embed_icon_selection_data:
@@ -105724,6 +105751,9 @@ components:
105724
105751
  embed_show_voice_record:
105725
105752
  type: boolean
105726
105753
  description: Show voice recording button on embedded mentor.
105754
+ embed_show_canvas:
105755
+ type: boolean
105756
+ description: Show display canvas on embedded mentor.
105727
105757
  show_explore_mentors:
105728
105758
  type: boolean
105729
105759
  description: Show explore mentors option.
@@ -106018,6 +106048,9 @@ components:
106018
106048
  embed_show_voice_record:
106019
106049
  type: boolean
106020
106050
  readOnly: true
106051
+ embed_show_canvas:
106052
+ type: boolean
106053
+ readOnly: true
106021
106054
  show_explore_mentors:
106022
106055
  type: boolean
106023
106056
  readOnly: true
@@ -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.281.0-ai-plus',
24
+ VERSION: '4.282.0-ai-plus',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -25,6 +25,7 @@ export type CourseCreationTask = {
25
25
  readonly status: CourseCreationTaskStatusEnum;
26
26
  publish_course?: boolean;
27
27
  readonly course_data: any;
28
+ readonly course_id: string;
28
29
  provider?: string;
29
30
  model?: string;
30
31
  desired_number_of_sections?: number;
@@ -9,6 +9,7 @@ export type EdxCourse = {
9
9
  number: string;
10
10
  description?: string;
11
11
  xblock_id: string;
12
+ readonly course_id: string;
12
13
  task?: number | null;
13
14
  readonly created_at: string;
14
15
  readonly updated_at: string;
@@ -140,6 +140,10 @@ export type Mentor = {
140
140
  * Show voice recording button on embedded mentor.
141
141
  */
142
142
  embed_show_voice_record?: boolean;
143
+ /**
144
+ * Show display canvas on embedded mentor.
145
+ */
146
+ embed_show_canvas?: boolean;
143
147
  /**
144
148
  * Show explore mentors option.
145
149
  */
@@ -126,6 +126,10 @@ export type MentorCreate = {
126
126
  * Show voice recording button on embedded mentor.
127
127
  */
128
128
  embed_show_voice_record?: boolean;
129
+ /**
130
+ * Show display canvas on embedded mentor.
131
+ */
132
+ embed_show_canvas?: boolean;
129
133
  /**
130
134
  * Show explore mentors option.
131
135
  */
@@ -56,6 +56,7 @@ export type MentorFromTemplateWithSettingRequest = {
56
56
  embed_show_attachment?: boolean;
57
57
  embed_show_voice_call?: boolean;
58
58
  embed_show_voice_record?: boolean;
59
+ embed_show_canvas?: boolean;
59
60
  show_explore_mentors?: boolean;
60
61
  embed_icon_selection_data?: any;
61
62
  placeholder_prompt?: string;
@@ -62,6 +62,7 @@ export type MentorSettings = {
62
62
  readonly embed_show_attachment: boolean;
63
63
  readonly embed_show_voice_call: boolean;
64
64
  readonly embed_show_voice_record: boolean;
65
+ readonly embed_show_canvas: boolean;
65
66
  readonly show_explore_mentors: boolean;
66
67
  readonly embed_icon_selection_data: any;
67
68
  embed_custom_image?: string | null;
@@ -60,6 +60,7 @@ export type MentorSettingsPublic = {
60
60
  readonly embed_show_attachment: boolean;
61
61
  readonly embed_show_voice_call: boolean;
62
62
  readonly embed_show_voice_record: boolean;
63
+ readonly embed_show_canvas: boolean;
63
64
  readonly show_explore_mentors: boolean;
64
65
  readonly embed_icon_selection_data: any;
65
66
  embed_custom_image?: string | null;
@@ -77,6 +77,7 @@ export type MentorSettingsRequest = {
77
77
  embed_show_attachment?: boolean;
78
78
  embed_show_voice_call?: boolean;
79
79
  embed_show_voice_record?: boolean;
80
+ embed_show_canvas?: boolean;
80
81
  show_explore_mentors?: boolean;
81
82
  embed_icon_selection_data?: any;
82
83
  google_voice?: number;
@@ -126,6 +126,10 @@ export type PatchedMentorCreate = {
126
126
  * Show voice recording button on embedded mentor.
127
127
  */
128
128
  embed_show_voice_record?: boolean;
129
+ /**
130
+ * Show display canvas on embedded mentor.
131
+ */
132
+ embed_show_canvas?: boolean;
129
133
  /**
130
134
  * Show explore mentors option.
131
135
  */
@@ -62,6 +62,7 @@ export type PatchedMentorSettings = {
62
62
  readonly embed_show_attachment?: boolean;
63
63
  readonly embed_show_voice_call?: boolean;
64
64
  readonly embed_show_voice_record?: boolean;
65
+ readonly embed_show_canvas?: boolean;
65
66
  readonly show_explore_mentors?: boolean;
66
67
  readonly embed_icon_selection_data?: any;
67
68
  embed_custom_image?: string | null;