@@ -366,7 +366,6 @@ export class OgrafApi {
366366 }
367367 async renderTargetGraphicLoad (
368368 params : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/load' ] [ 'put' ] [ 'parameters' ] [ 'path' ] ,
369- query : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/load' ] [ 'put' ] [ 'parameters' ] [ 'query' ] ,
370369 body : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/load' ] [ 'put' ] [ 'requestBody' ] [ 'content' ] [ 'application/json' ]
371370 ) : Promise <
372371 | {
@@ -386,7 +385,6 @@ export class OgrafApi {
386385 type Method = ServerApi . paths [ typeof url ] [ 'put' ]
387386
388387 const url0 = new URL ( url . replace ( '{rendererId}' , params . rendererId ) , this . BASE_URL_TEMPLATE )
389- url0 . searchParams . set ( 'renderTarget' , JSON . stringify ( query . renderTarget ) )
390388
391389 const response = await this . fetch < Method > ( url0 , false , {
392390 method : 'put' ,
@@ -402,7 +400,6 @@ export class OgrafApi {
402400 }
403401 async renderTargetGraphicUpdate (
404402 params : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/updateAction' ] [ 'post' ] [ 'parameters' ] [ 'path' ] ,
405- query : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/updateAction' ] [ 'post' ] [ 'parameters' ] [ 'query' ] ,
406403 body : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/updateAction' ] [ 'post' ] [ 'requestBody' ] [ 'content' ] [ 'application/json' ]
407404 ) : Promise <
408405 | {
@@ -423,8 +420,6 @@ export class OgrafApi {
423420 type Method = ServerApi . paths [ typeof url ] [ typeof method ]
424421
425422 const url0 = new URL ( url . replace ( '{rendererId}' , params . rendererId ) , this . BASE_URL_TEMPLATE )
426- url0 . searchParams . set ( 'renderTarget' , JSON . stringify ( query . renderTarget ) )
427- url0 . searchParams . set ( 'graphicInstanceId' , query . graphicInstanceId )
428423
429424 const response = await this . fetch < Method > ( url0 , false , {
430425 method,
@@ -440,7 +435,6 @@ export class OgrafApi {
440435 }
441436 async renderTargetGraphicPlay (
442437 params : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/playAction' ] [ 'post' ] [ 'parameters' ] [ 'path' ] ,
443- query : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/playAction' ] [ 'post' ] [ 'parameters' ] [ 'query' ] ,
444438 body : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/playAction' ] [ 'post' ] [ 'requestBody' ] [ 'content' ] [ 'application/json' ]
445439 ) : Promise <
446440 | {
@@ -461,8 +455,6 @@ export class OgrafApi {
461455 type Method = ServerApi . paths [ typeof url ] [ typeof method ]
462456
463457 const url0 = new URL ( url . replace ( '{rendererId}' , params . rendererId ) , this . BASE_URL_TEMPLATE )
464- url0 . searchParams . set ( 'renderTarget' , JSON . stringify ( query . renderTarget ) )
465- url0 . searchParams . set ( 'graphicInstanceId' , query . graphicInstanceId )
466458
467459 const response = await this . fetch < Method > ( url0 , false , {
468460 method,
@@ -478,7 +470,7 @@ export class OgrafApi {
478470 }
479471 async renderTargetGraphicStop (
480472 params : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/stopAction' ] [ 'post' ] [ 'parameters' ] [ 'path' ] ,
481- query : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/stopAction' ] [ 'post' ] [ 'parameters' ] [ 'query' ] ,
473+
482474 body : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/stopAction' ] [ 'post' ] [ 'requestBody' ] [ 'content' ] [ 'application/json' ]
483475 ) : Promise <
484476 | {
@@ -499,8 +491,6 @@ export class OgrafApi {
499491 type Method = ServerApi . paths [ typeof url ] [ typeof method ]
500492
501493 const url0 = new URL ( url . replace ( '{rendererId}' , params . rendererId ) , this . BASE_URL_TEMPLATE )
502- url0 . searchParams . set ( 'renderTarget' , JSON . stringify ( query . renderTarget ) )
503- url0 . searchParams . set ( 'graphicInstanceId' , query . graphicInstanceId )
504494
505495 const response = await this . fetch < Method > ( url0 , false , {
506496 method,
@@ -516,7 +506,6 @@ export class OgrafApi {
516506 }
517507 async renderTargetGraphicInvokeCustomAction (
518508 params : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/customAction' ] [ 'post' ] [ 'parameters' ] [ 'path' ] ,
519- query : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/customAction' ] [ 'post' ] [ 'parameters' ] [ 'query' ] ,
520509 body : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/customAction' ] [ 'post' ] [ 'requestBody' ] [ 'content' ] [ 'application/json' ]
521510 ) : Promise <
522511 | {
@@ -537,8 +526,6 @@ export class OgrafApi {
537526 type Method = ServerApi . paths [ typeof url ] [ typeof method ]
538527
539528 const url0 = new URL ( url . replace ( '{rendererId}' , params . rendererId ) , this . BASE_URL_TEMPLATE )
540- url0 . searchParams . set ( 'renderTarget' , JSON . stringify ( query . renderTarget ) )
541- url0 . searchParams . set ( 'graphicInstanceId' , query . graphicInstanceId )
542529
543530 const response = await this . fetch < Method > ( url0 , false , {
544531 method,
@@ -554,7 +541,6 @@ export class OgrafApi {
554541 }
555542 async renderTargetGraphicGoToTime (
556543 params : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/goToTime' ] [ 'put' ] [ 'parameters' ] [ 'path' ] ,
557- query : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/goToTime' ] [ 'put' ] [ 'parameters' ] [ 'query' ] ,
558544 body : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/goToTime' ] [ 'put' ] [ 'requestBody' ] [ 'content' ] [ 'application/json' ]
559545 ) : Promise <
560546 | {
@@ -575,8 +561,6 @@ export class OgrafApi {
575561 type Method = ServerApi . paths [ typeof url ] [ typeof method ]
576562
577563 const url0 = new URL ( url . replace ( '{rendererId}' , params . rendererId ) , this . BASE_URL_TEMPLATE )
578- url0 . searchParams . set ( 'renderTarget' , JSON . stringify ( query . renderTarget ) )
579- url0 . searchParams . set ( 'graphicInstanceId' , query . graphicInstanceId )
580564
581565 const response = await this . fetch < Method > ( url0 , false , {
582566 method,
@@ -592,7 +576,6 @@ export class OgrafApi {
592576 }
593577 async renderTargetGraphicSetActionsSchedule (
594578 params : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/setActionsSchedule' ] [ 'put' ] [ 'parameters' ] [ 'path' ] ,
595- query : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/setActionsSchedule' ] [ 'put' ] [ 'parameters' ] [ 'query' ] ,
596579 body : ServerApi . paths [ '/renderers/{rendererId}/target/graphic/setActionsSchedule' ] [ 'put' ] [ 'requestBody' ] [ 'content' ] [ 'application/json' ]
597580 ) : Promise <
598581 | {
@@ -613,8 +596,6 @@ export class OgrafApi {
613596 type Method = ServerApi . paths [ typeof url ] [ typeof method ]
614597
615598 const url0 = new URL ( url . replace ( '{rendererId}' , params . rendererId ) , this . BASE_URL_TEMPLATE )
616- url0 . searchParams . set ( 'renderTarget' , JSON . stringify ( query . renderTarget ) )
617- url0 . searchParams . set ( 'graphicInstanceId' , query . graphicInstanceId )
618599
619600 const response = await this . fetch < Method > ( url0 , false , {
620601 method,
0 commit comments