@@ -638,7 +638,7 @@ export const ConferencesApiFactory = function (configuration?: Configuration, ba
638638 * @param {* } [options] Override http request option.
639639 * @throws {RequiredError }
640640 */
641- downloadConferenceRecording ( accountId : string , conferenceId : string , recordingId : string , options ?: any ) : AxiosPromise < File > {
641+ downloadConferenceRecording ( accountId : string , conferenceId : string , recordingId : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < File > {
642642 return localVarFp . downloadConferenceRecording ( accountId , conferenceId , recordingId , options ) . then ( ( request ) => request ( axios , basePath ) ) ;
643643 } ,
644644 /**
@@ -649,7 +649,7 @@ export const ConferencesApiFactory = function (configuration?: Configuration, ba
649649 * @param {* } [options] Override http request option.
650650 * @throws {RequiredError }
651651 */
652- getConference ( accountId : string , conferenceId : string , options ?: any ) : AxiosPromise < Conference > {
652+ getConference ( accountId : string , conferenceId : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < Conference > {
653653 return localVarFp . getConference ( accountId , conferenceId , options ) . then ( ( request ) => request ( axios , basePath ) ) ;
654654 } ,
655655 /**
@@ -661,7 +661,7 @@ export const ConferencesApiFactory = function (configuration?: Configuration, ba
661661 * @param {* } [options] Override http request option.
662662 * @throws {RequiredError }
663663 */
664- getConferenceMember ( accountId : string , conferenceId : string , memberId : string , options ?: any ) : AxiosPromise < ConferenceMember > {
664+ getConferenceMember ( accountId : string , conferenceId : string , memberId : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < ConferenceMember > {
665665 return localVarFp . getConferenceMember ( accountId , conferenceId , memberId , options ) . then ( ( request ) => request ( axios , basePath ) ) ;
666666 } ,
667667 /**
@@ -673,7 +673,7 @@ export const ConferencesApiFactory = function (configuration?: Configuration, ba
673673 * @param {* } [options] Override http request option.
674674 * @throws {RequiredError }
675675 */
676- getConferenceRecording ( accountId : string , conferenceId : string , recordingId : string , options ?: any ) : AxiosPromise < ConferenceRecordingMetadata > {
676+ getConferenceRecording ( accountId : string , conferenceId : string , recordingId : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < ConferenceRecordingMetadata > {
677677 return localVarFp . getConferenceRecording ( accountId , conferenceId , recordingId , options ) . then ( ( request ) => request ( axios , basePath ) ) ;
678678 } ,
679679 /**
@@ -684,7 +684,7 @@ export const ConferencesApiFactory = function (configuration?: Configuration, ba
684684 * @param {* } [options] Override http request option.
685685 * @throws {RequiredError }
686686 */
687- listConferenceRecordings ( accountId : string , conferenceId : string , options ?: any ) : AxiosPromise < Array < ConferenceRecordingMetadata > > {
687+ listConferenceRecordings ( accountId : string , conferenceId : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < Array < ConferenceRecordingMetadata > > {
688688 return localVarFp . listConferenceRecordings ( accountId , conferenceId , options ) . then ( ( request ) => request ( axios , basePath ) ) ;
689689 } ,
690690 /**
@@ -699,7 +699,7 @@ export const ConferencesApiFactory = function (configuration?: Configuration, ba
699699 * @param {* } [options] Override http request option.
700700 * @throws {RequiredError }
701701 */
702- listConferences ( accountId : string , name ?: string , minCreatedTime ?: string , maxCreatedTime ?: string , pageSize ?: number , pageToken ?: string , options ?: any ) : AxiosPromise < Array < Conference > > {
702+ listConferences ( accountId : string , name ?: string , minCreatedTime ?: string , maxCreatedTime ?: string , pageSize ?: number , pageToken ?: string , options ?: RawAxiosRequestConfig ) : AxiosPromise < Array < Conference > > {
703703 return localVarFp . listConferences ( accountId , name , minCreatedTime , maxCreatedTime , pageSize , pageToken , options ) . then ( ( request ) => request ( axios , basePath ) ) ;
704704 } ,
705705 /**
@@ -711,7 +711,7 @@ export const ConferencesApiFactory = function (configuration?: Configuration, ba
711711 * @param {* } [options] Override http request option.
712712 * @throws {RequiredError }
713713 */
714- updateConference ( accountId : string , conferenceId : string , updateConference : UpdateConference , options ?: any ) : AxiosPromise < void > {
714+ updateConference ( accountId : string , conferenceId : string , updateConference : UpdateConference , options ?: RawAxiosRequestConfig ) : AxiosPromise < void > {
715715 return localVarFp . updateConference ( accountId , conferenceId , updateConference , options ) . then ( ( request ) => request ( axios , basePath ) ) ;
716716 } ,
717717 /**
@@ -723,7 +723,7 @@ export const ConferencesApiFactory = function (configuration?: Configuration, ba
723723 * @param {* } [options] Override http request option.
724724 * @throws {RequiredError }
725725 */
726- updateConferenceBxml ( accountId : string , conferenceId : string , body : string , options ?: any ) : AxiosPromise < void > {
726+ updateConferenceBxml ( accountId : string , conferenceId : string , body : string , options ?: RawAxiosRequestConfig ) : AxiosPromise < void > {
727727 return localVarFp . updateConferenceBxml ( accountId , conferenceId , body , options ) . then ( ( request ) => request ( axios , basePath ) ) ;
728728 } ,
729729 /**
@@ -736,7 +736,7 @@ export const ConferencesApiFactory = function (configuration?: Configuration, ba
736736 * @param {* } [options] Override http request option.
737737 * @throws {RequiredError }
738738 */
739- updateConferenceMember ( accountId : string , conferenceId : string , memberId : string , updateConferenceMember : UpdateConferenceMember , options ?: any ) : AxiosPromise < void > {
739+ updateConferenceMember ( accountId : string , conferenceId : string , memberId : string , updateConferenceMember : UpdateConferenceMember , options ?: RawAxiosRequestConfig ) : AxiosPromise < void > {
740740 return localVarFp . updateConferenceMember ( accountId , conferenceId , memberId , updateConferenceMember , options ) . then ( ( request ) => request ( axios , basePath ) ) ;
741741 } ,
742742 } ;
0 commit comments