@@ -93,7 +93,7 @@ test('Get result from AI and display it in the AI column', async (t) => {
9393 ai : {
9494 prompt : 'first AI column' ,
9595 // eslint-disable-next-line new-cap
96- aiIntegration : new ( window as any ) . DevExpress . aiIntegration ( {
96+ aiIntegration : new ( window as any ) . DevExpress . aiIntegration . AIIntegration ( {
9797 sendRequest ( prompt ) {
9898 return {
9999 promise : new Promise < string > ( ( resolve ) => {
@@ -143,7 +143,7 @@ test('Get result from AI and display it in two AI columns', async (t) => {
143143 ai : {
144144 prompt : 'first AI column' ,
145145 // eslint-disable-next-line new-cap
146- aiIntegration : new ( window as any ) . DevExpress . aiIntegration ( {
146+ aiIntegration : new ( window as any ) . DevExpress . aiIntegration . AIIntegration ( {
147147 sendRequest ( prompt ) {
148148 return {
149149 promise : new Promise < string > ( ( resolve ) => {
@@ -168,7 +168,7 @@ test('Get result from AI and display it in two AI columns', async (t) => {
168168 ai : {
169169 prompt : 'second AI column' ,
170170 // eslint-disable-next-line new-cap
171- aiIntegration : new ( window as any ) . DevExpress . aiIntegration ( {
171+ aiIntegration : new ( window as any ) . DevExpress . aiIntegration . AIIntegration ( {
172172 sendRequest ( prompt ) {
173173 return {
174174 promise : new Promise < string > ( ( resolve ) => {
@@ -228,7 +228,7 @@ test('Regenerate the AI request from DropDownButton menu', async (t) => {
228228 mode : 'manual' ,
229229 prompt : 'first AI column' ,
230230 // eslint-disable-next-line new-cap
231- aiIntegration : new ( window as any ) . DevExpress . aiIntegration ( {
231+ aiIntegration : new ( window as any ) . DevExpress . aiIntegration . AIIntegration ( {
232232 sendRequest ( prompt ) {
233233 return {
234234 promise : new Promise < string > ( ( resolve ) => {
@@ -291,7 +291,7 @@ test('Regenerate the AI request from Prompt Editor', async (t) => {
291291 mode : 'manual' ,
292292 prompt : 'first AI column' ,
293293 // eslint-disable-next-line new-cap
294- aiIntegration : new ( window as any ) . DevExpress . aiIntegration ( {
294+ aiIntegration : new ( window as any ) . DevExpress . aiIntegration . AIIntegration ( {
295295 sendRequest ( prompt ) {
296296 return {
297297 promise : new Promise < string > ( ( resolve ) => {
@@ -351,7 +351,7 @@ test('Clear Data from AI column by DropDownButton menu', async (t) => {
351351 ai : {
352352 prompt : 'first AI column' ,
353353 // eslint-disable-next-line new-cap
354- aiIntegration : new ( window as any ) . DevExpress . aiIntegration ( {
354+ aiIntegration : new ( window as any ) . DevExpress . aiIntegration . AIIntegration ( {
355355 sendRequest ( prompt ) {
356356 return {
357357 promise : new Promise < string > ( ( resolve ) => {
@@ -417,7 +417,7 @@ test('Abort the AI request from Prompt Editor', async (t) => {
417417 prompt : 'first AI column' ,
418418 mode : 'manual' ,
419419 // eslint-disable-next-line new-cap
420- aiIntegration : new ( window as any ) . DevExpress . aiIntegration ( {
420+ aiIntegration : new ( window as any ) . DevExpress . aiIntegration . AIIntegration ( {
421421 sendRequest ( prompt ) {
422422 return {
423423 promise : new Promise < string > ( ( resolve ) => {
@@ -483,7 +483,7 @@ test('Change the prompt in the AI Prompt Editor', async (t) => {
483483 ai : {
484484 prompt : 'first AI column' ,
485485 // eslint-disable-next-line new-cap
486- aiIntegration : new ( window as any ) . DevExpress . aiIntegration ( {
486+ aiIntegration : new ( window as any ) . DevExpress . aiIntegration . AIIntegration ( {
487487 sendRequest ( prompt ) {
488488 return {
489489 promise : new Promise < string > ( ( resolve ) => {
@@ -536,7 +536,7 @@ test('The scroll position should not reset when the ai.prompt changes at runtime
536536 name : 'aiColumn' ,
537537 ai : {
538538 // eslint-disable-next-line new-cap
539- aiIntegration : new ( window as any ) . DevExpress . aiIntegration ( {
539+ aiIntegration : new ( window as any ) . DevExpress . aiIntegration . AIIntegration ( {
540540 sendRequest ( ) {
541541 return {
542542 promise : new Promise < string > ( ( resolve ) => {
0 commit comments