@ -21,7 +21,7 @@ import globalAxios from 'axios';
import { DUMMY_BASE_URL , assertParamExists , setApiKeyToObject , setBasicAuthToObject , setBearerAuthToObject , setOAuthToObject , setSearchParams , serializeDataIfNeeded , toPathString , createRequestFunction } from './common' ;
import type { RequestArgs } from './base' ;
// @ts-ignore
import { BASE_PATH , COLLECTION_FORMATS , BaseAPI , RequiredError } from './base' ;
import { BASE_PATH , COLLECTION_FORMATS , BaseAPI , RequiredError , operationServerMap } from './base' ;
/ * *
*
@ -1004,11 +1004,11 @@ export interface GetPartnersResponse {
* /
export interface GetRelationsResponse {
/ * *
* ロ グ イ ン し た ユ ー ザ ー の AuthorID ( Authorでない場合は 空文字 )
* ロ グ イ ン し た ユ ー ザ ー の AuthorID ( Authorでない場合は undefined )
* @type { string }
* @memberof GetRelationsResponse
* /
'authorId' : string ;
'authorId' ? : string ;
/ * *
* 属 し て い る ア カ ウ ン ト の AuthorID List ( 全 て )
* @type { Array < string > }
@ -3368,7 +3368,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async activeWorktype ( postActiveWorktypeRequest : PostActiveWorktypeRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . activeWorktype ( postActiveWorktypeRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.activeWorktype' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ラ イ セ ン ス 発 行 を キ ャ ン セ ル し ま す
@ -3379,7 +3381,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async cancelIssue ( cancelIssueRequest : CancelIssueRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . cancelIssue ( cancelIssueRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.cancelIssue' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3390,7 +3394,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async createAccount ( createAccountRequest : CreateAccountRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . createAccount ( createAccountRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.createAccount' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3401,7 +3407,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async createPartnerAccount ( createPartnerAccountRequest : CreatePartnerAccountRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . createPartnerAccount ( createPartnerAccountRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.createPartnerAccount' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ロ グ イ ン し て い る ユ ー ザ ー の ア カ ウ ン ト 配 下 に タ イ ピ ス ト グ ル ー プ を 追 加 し ま す
@ -3412,7 +3420,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async createTypistGroup ( createTypistGroupRequest : CreateTypistGroupRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . createTypistGroup ( createTypistGroupRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.createTypistGroup' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3423,7 +3433,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async createWorktype ( createWorktypesRequest : CreateWorktypesRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . createWorktype ( createWorktypesRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.createWorktype' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3434,7 +3446,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async deleteAccountAndData ( deleteAccountRequest : DeleteAccountRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . deleteAccountAndData ( deleteAccountRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.deleteAccountAndData' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3445,7 +3459,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async deleteWorktype ( id : number , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . deleteWorktype ( id , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.deleteWorktype' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3456,7 +3472,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async getAccountInfoMinimalAccess ( getAccountInfoMinimalAccessRequest : GetAccountInfoMinimalAccessRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetAccountInfoMinimalAccessResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getAccountInfoMinimalAccess ( getAccountInfoMinimalAccessRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.getAccountInfoMinimalAccess' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ロ グ イ ン し て い る ユ ー ザ ー の ア カ ウ ン ト 配 下 の Author一覧を取得します
@ -3466,7 +3484,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async getAuthors ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetAuthorsResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getAuthors ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.getAuthors' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3476,7 +3496,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async getDealers ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetDealersResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getDealers ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.getDealers' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* 指 定 し た ア カ ウ ン ト の ラ イ セ ン ス 集 計 情 報 を 取 得 し ま す
@ -3487,7 +3509,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async getLicenseSummary ( getLicenseSummaryRequest : GetLicenseSummaryRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetLicenseSummaryResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getLicenseSummary ( getLicenseSummaryRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.getLicenseSummary' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ロ グ イ ン し て い る ユ ー ザ ー の ア カ ウ ン ト 情 報 を 取 得 し ま す
@ -3497,7 +3521,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async getMyAccount ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetMyAccountResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getMyAccount ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.getMyAccount' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3508,7 +3534,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async getOptionItems ( id : number , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetOptionItemsResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getOptionItems ( id , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.getOptionItems' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3519,7 +3547,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async getOrderHistories ( getOrderHistoriesRequest : GetOrderHistoriesRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetOrderHistoriesResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getOrderHistories ( getOrderHistoriesRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.getOrderHistories' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3530,7 +3560,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async getPartnerLicenses ( getPartnerLicensesRequest : GetPartnerLicensesRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetPartnerLicensesResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getPartnerLicenses ( getPartnerLicensesRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.getPartnerLicenses' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3542,7 +3574,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async getPartners ( limit : number , offset : number , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetPartnersResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getPartners ( limit , offset , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.getPartners' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ロ グ イ ン し て い る ユ ー ザ ー の ア カ ウ ン ト 配 下 で IDで指定されたタイピストグループを取得します
@ -3553,7 +3587,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async getTypistGroup ( typistGroupId : number , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetTypistGroupResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getTypistGroup ( typistGroupId , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.getTypistGroup' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ロ グ イ ン し て い る ユ ー ザ ー の ア カ ウ ン ト 配 下 の タ イ ピ ス ト グ ル ー プ 一 覧 を 取 得 し ま す
@ -3563,7 +3599,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async getTypistGroups ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetTypistGroupsResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getTypistGroups ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.getTypistGroups' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ロ グ イ ン し て い る ユ ー ザ ー の ア カ ウ ン ト 配 下 の タ イ ピ ス ト 一 覧 を 取 得 し ま す
@ -3573,7 +3611,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async getTypists ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetTypistsResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getTypists ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.getTypists' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3583,7 +3623,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async getWorktypes ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetWorktypesResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getWorktypes ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.getWorktypes' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3594,7 +3636,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async issueLicense ( issueLicenseRequest : IssueLicenseRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . issueLicense ( issueLicenseRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.issueLicense' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3605,7 +3649,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async updateAccountInfo ( updateAccountInfoRequest : UpdateAccountInfoRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . updateAccountInfo ( updateAccountInfoRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.updateAccountInfo' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3617,7 +3663,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async updateOptionItems ( id : number , updateOptionItemsRequest : UpdateOptionItemsRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . updateOptionItems ( id , updateOptionItemsRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.updateOptionItems' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ロ グ イ ン し て い る ユ ー ザ ー の ア カ ウ ン ト 配 下 で IDで指定されたタイピストグループを更新します
@ -3629,7 +3677,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async updateTypistGroup ( typistGroupId : number , updateTypistGroupRequest : UpdateTypistGroupRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . updateTypistGroup ( typistGroupId , updateTypistGroupRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.updateTypistGroup' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -3641,7 +3691,9 @@ export const AccountsApiFp = function(configuration?: Configuration) {
* /
async updateWorktype ( id : number , updateWorktypesRequest : UpdateWorktypesRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . updateWorktype ( id , updateWorktypesRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AccountsApi.updateWorktype' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
}
} ;
@ -4402,7 +4454,9 @@ export const AuthApiFp = function(configuration?: Configuration) {
* /
async accessToken ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < AccessTokenResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . accessToken ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AuthApi.accessToken' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* 代 行 操 作 用 の ア ク セ ス ト ー ク ン を 再 生 成 し ま す
@ -4412,7 +4466,9 @@ export const AuthApiFp = function(configuration?: Configuration) {
* /
async delegationAccessToken ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < DelegationAccessTokenResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . delegationAccessToken ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AuthApi.delegationAccessToken' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* 代 行 操 作 用 の リ フ レ ッ シ ュ ト ー ク ン ・ ア ク セ ス ト ー ク ン を 生 成 し ま す
@ -4423,7 +4479,9 @@ export const AuthApiFp = function(configuration?: Configuration) {
* /
async delegationToken ( delegationTokenRequest : DelegationTokenRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < DelegationTokenResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . delegationToken ( delegationTokenRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AuthApi.delegationToken' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* AzureADB2Cでのサインイン後に払いだされるIDトークンを元に認証用のアクセストークンとリフレッシュトークンを生成します
@ -4434,7 +4492,9 @@ export const AuthApiFp = function(configuration?: Configuration) {
* /
async token ( tokenRequest : TokenRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < TokenResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . token ( tokenRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'AuthApi.token' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
}
} ;
@ -4597,7 +4657,9 @@ export const DefaultApiFp = function(configuration?: Configuration) {
* /
async checkHealth ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < void > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . checkHealth ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'DefaultApi.checkHealth' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
}
} ;
@ -4897,7 +4959,9 @@ export const FilesApiFp = function(configuration?: Configuration) {
* /
async downloadLocation ( audioFileId : number , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < AudioDownloadLocationResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . downloadLocation ( audioFileId , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'FilesApi.downloadLocation' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* 指 定 し た 音 声 フ ァ イ ル に 対 応 し た テ ン プ レ ー ト フ ァ イ ル の Blob Storage上のダウンロード先アクセスURLを取得します
@ -4908,7 +4972,9 @@ export const FilesApiFp = function(configuration?: Configuration) {
* /
async downloadTemplateLocation ( audioFileId : number , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < TemplateDownloadLocationResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . downloadTemplateLocation ( audioFileId , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'FilesApi.downloadTemplateLocation' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ア ッ プ ロ ー ド が 完 了 し た 音 声 フ ァ イ ル の 情 報 を 登 録 し 、 文 字 起 こ し タ ス ク を 生 成 し ま す
@ -4919,7 +4985,9 @@ export const FilesApiFp = function(configuration?: Configuration) {
* /
async uploadFinished ( audioUploadFinishedRequest : AudioUploadFinishedRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < AudioUploadFinishedResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . uploadFinished ( audioUploadFinishedRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'FilesApi.uploadFinished' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ロ グ イ ン 中 ユ ー ザ ー 用 の Blob Storage上の音声ファイルのアップロード先アクセスURLを取得します
@ -4929,7 +4997,9 @@ export const FilesApiFp = function(configuration?: Configuration) {
* /
async uploadLocation ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < AudioUploadLocationResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . uploadLocation ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'FilesApi.uploadLocation' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ア ッ プ ロ ー ド が 完 了 し た テ ン プ レ ー ト フ ァ イ ル の 情 報 を 登 録 し ま す
@ -4940,7 +5010,9 @@ export const FilesApiFp = function(configuration?: Configuration) {
* /
async uploadTemplateFinished ( templateUploadFinishedRequest : TemplateUploadFinishedRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . uploadTemplateFinished ( templateUploadFinishedRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'FilesApi.uploadTemplateFinished' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ロ グ イ ン 中 ユ ー ザ ー 用 の Blob Storage上のテンプレートファイルのアップロード先アクセスURLを取得します
@ -4950,7 +5022,9 @@ export const FilesApiFp = function(configuration?: Configuration) {
* /
async uploadTemplateLocation ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < TemplateUploadLocationResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . uploadTemplateLocation ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'FilesApi.uploadTemplateLocation' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
}
} ;
@ -5322,7 +5396,9 @@ export const LicensesApiFp = function(configuration?: Configuration) {
* /
async activateCardLicenses ( activateCardLicensesRequest : ActivateCardLicensesRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . activateCardLicenses ( activateCardLicensesRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'LicensesApi.activateCardLicenses' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ラ イ セ ン ス 注 文 を キ ャ ン セ ル し ま す
@ -5333,7 +5409,9 @@ export const LicensesApiFp = function(configuration?: Configuration) {
* /
async cancelOrder ( cancelOrderRequest : CancelOrderRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . cancelOrder ( cancelOrderRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'LicensesApi.cancelOrder' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -5344,7 +5422,9 @@ export const LicensesApiFp = function(configuration?: Configuration) {
* /
async createOrders ( createOrdersRequest : CreateOrdersRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . createOrders ( createOrdersRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'LicensesApi.createOrders' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* 割 り 当 て 可 能 な ラ イ セ ン ス を 取 得 し ま す
@ -5354,7 +5434,9 @@ export const LicensesApiFp = function(configuration?: Configuration) {
* /
async getAllocatableLicenses ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetAllocatableLicensesResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getAllocatableLicenses ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'LicensesApi.getAllocatableLicenses' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -5365,7 +5447,9 @@ export const LicensesApiFp = function(configuration?: Configuration) {
* /
async issueCardLicenses ( issueCardLicensesRequest : IssueCardLicensesRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < IssueCardLicensesResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . issueCardLicenses ( issueCardLicensesRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'LicensesApi.issueCardLicenses' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
}
} ;
@ -5563,7 +5647,9 @@ export const NotificationApiFp = function(configuration?: Configuration) {
* /
async register ( registerRequest : RegisterRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . register ( registerRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'NotificationApi.register' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
}
} ;
@ -5903,44 +5989,6 @@ export const TasksApiAxiosParamCreator = function (configuration?: Configuration
setSearchParams ( localVarUrlObj , localVarQueryParameter ) ;
let headersFromBaseOptions = baseOptions && baseOptions . headers ? baseOptions . headers : { } ;
localVarRequestOptions . headers = { . . . localVarHeaderParameter , . . . headersFromBaseOptions , . . . options . headers } ;
return {
url : toPathString ( localVarUrlObj ) ,
options : localVarRequestOptions ,
} ;
} ,
/ * *
* 指 定 し た 文 字 起 こ し タ ス ク を 差 し 戻 し ま す ( ス テ ー タ ス を Pendingにします )
* @summary
* @param { number } audioFileId ODMS Cloud上の音声ファイルID
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
sendBack : async ( audioFileId : number , options : AxiosRequestConfig = { } ) : Promise < RequestArgs > = > {
// verify required parameter 'audioFileId' is not null or undefined
assertParamExists ( 'sendBack' , 'audioFileId' , audioFileId )
const localVarPath = ` /tasks/{audioFileId}/send-back `
. replace ( ` { ${ "audioFileId" } } ` , encodeURIComponent ( String ( audioFileId ) ) ) ;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL ( localVarPath , DUMMY_BASE_URL ) ;
let baseOptions ;
if ( configuration ) {
baseOptions = configuration . baseOptions ;
}
const localVarRequestOptions = { method : 'POST' , . . . baseOptions , . . . options } ;
const localVarHeaderParameter = { } as any ;
const localVarQueryParameter = { } as any ;
// authentication bearer required
// http bearer authentication required
await setBearerAuthToObject ( localVarHeaderParameter , configuration )
setSearchParams ( localVarUrlObj , localVarQueryParameter ) ;
let headersFromBaseOptions = baseOptions && baseOptions . headers ? baseOptions . headers : { } ;
localVarRequestOptions . headers = { . . . localVarHeaderParameter , . . . headersFromBaseOptions , . . . options . headers } ;
@ -6007,7 +6055,9 @@ export const TasksApiFp = function(configuration?: Configuration) {
* /
async backup ( audioFileId : number , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . backup ( audioFileId , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'TasksApi.backup' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* 指 定 し た 文 字 起 こ し タ ス ク を キ ャ ン セ ル し ま す ( ス テ ー タ ス を Uploadedにします )
@ -6018,7 +6068,9 @@ export const TasksApiFp = function(configuration?: Configuration) {
* /
async cancel ( audioFileId : number , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . cancel ( audioFileId , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'TasksApi.cancel' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* 指 定 し た 文 字 起 こ し タ ス ク の チ ェ ッ ク ア ウ ト 候 補 を 変 更 し ま す 。
@ -6030,7 +6082,9 @@ export const TasksApiFp = function(configuration?: Configuration) {
* /
async changeCheckoutPermission ( audioFileId : number , postCheckoutPermissionRequest : PostCheckoutPermissionRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . changeCheckoutPermission ( audioFileId , postCheckoutPermissionRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'TasksApi.changeCheckoutPermission' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* 指 定 し た 文 字 起 こ し タ ス ク を チ ェ ッ ク イ ン し ま す ( ス テ ー タ ス を Finishedにします )
@ -6041,7 +6095,9 @@ export const TasksApiFp = function(configuration?: Configuration) {
* /
async checkin ( audioFileId : number , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . checkin ( audioFileId , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'TasksApi.checkin' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* 指 定 し た 文 字 起 こ し タ ス ク を チ ェ ッ ク ア ウ ト し ま す ( ス テ ー タ ス を Inprogressにします )
@ -6052,7 +6108,9 @@ export const TasksApiFp = function(configuration?: Configuration) {
* /
async checkout ( audioFileId : number , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . checkout ( audioFileId , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'TasksApi.checkout' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* 指 定 し た 文 字 起 こ し タ ス ク の 次 の タ ス ク に 紐 づ く 音 声 フ ァ イ ル IDを取得します
@ -6063,7 +6121,9 @@ export const TasksApiFp = function(configuration?: Configuration) {
* /
async getNextAudioFile ( endedFileId : number , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < AudioNextResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getNextAudioFile ( endedFileId , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'TasksApi.getNextAudioFile' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* 音 声 フ ァ イ ル ・ 文 字 起 こ し タ ス ク 情 報 を ペ ー ジ 指 定 し て 取 得 し ま す
@ -6078,18 +6138,9 @@ export const TasksApiFp = function(configuration?: Configuration) {
* /
async getTasks ( limit? : number , offset? : number , status? : string , direction? : string , paramName? : string , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < TasksResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getTasks ( limit , offset , status , direction , paramName , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
} ,
/ * *
* 指 定 し た 文 字 起 こ し タ ス ク を 差 し 戻 し ま す ( ス テ ー タ ス を Pendingにします )
* @summary
* @param { number } audioFileId ODMS Cloud上の音声ファイルID
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
async sendBack ( audioFileId : number , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . sendBack ( audioFileId , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'TasksApi.getTasks' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* 指 定 し た 文 字 起 こ し タ ス ク を 一 時 中 断 し ま す ( ス テ ー タ ス を Pendingにします )
@ -6100,7 +6151,9 @@ export const TasksApiFp = function(configuration?: Configuration) {
* /
async suspend ( audioFileId : number , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . suspend ( audioFileId , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'TasksApi.suspend' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
}
} ;
@ -6187,16 +6240,6 @@ export const TasksApiFactory = function (configuration?: Configuration, basePath
getTasks ( limit? : number , offset? : number , status? : string , direction? : string , paramName? : string , options? : any ) : AxiosPromise < TasksResponse > {
return localVarFp . getTasks ( limit , offset , status , direction , paramName , options ) . then ( ( request ) = > request ( axios , basePath ) ) ;
} ,
/ * *
* 指 定 し た 文 字 起 こ し タ ス ク を 差 し 戻 し ま す ( ス テ ー タ ス を Pendingにします )
* @summary
* @param { number } audioFileId ODMS Cloud上の音声ファイルID
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* /
sendBack ( audioFileId : number , options? : any ) : AxiosPromise < object > {
return localVarFp . sendBack ( audioFileId , options ) . then ( ( request ) = > request ( axios , basePath ) ) ;
} ,
/ * *
* 指 定 し た 文 字 起 こ し タ ス ク を 一 時 中 断 し ま す ( ス テ ー タ ス を Pendingにします )
* @summary
@ -6306,18 +6349,6 @@ export class TasksApi extends BaseAPI {
return TasksApiFp ( this . configuration ) . getTasks ( limit , offset , status , direction , paramName , options ) . then ( ( request ) = > request ( this . axios , this . basePath ) ) ;
}
/ * *
* 指 定 し た 文 字 起 こ し タ ス ク を 差 し 戻 し ま す ( ス テ ー タ ス を Pendingにします )
* @summary
* @param { number } audioFileId ODMS Cloud上の音声ファイルID
* @param { * } [ options ] Override http request option .
* @throws { RequiredError }
* @memberof TasksApi
* /
public sendBack ( audioFileId : number , options? : AxiosRequestConfig ) {
return TasksApiFp ( this . configuration ) . sendBack ( audioFileId , options ) . then ( ( request ) = > request ( this . axios , this . basePath ) ) ;
}
/ * *
* 指 定 し た 文 字 起 こ し タ ス ク を 一 時 中 断 し ま す ( ス テ ー タ ス を Pendingにします )
* @summary
@ -6391,7 +6422,9 @@ export const TemplatesApiFp = function(configuration?: Configuration) {
* /
async getTemplates ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetTemplatesResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getTemplates ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'TemplatesApi.getTemplates' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
}
} ;
@ -6490,7 +6523,9 @@ export const TermsApiFp = function(configuration?: Configuration) {
* /
async getTermsInfo ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetTermsInfoResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getTermsInfo ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'TermsApi.getTermsInfo' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
}
} ;
@ -7004,7 +7039,9 @@ export const UsersApiFp = function(configuration?: Configuration) {
* /
async allocateLicense ( allocateLicenseRequest : AllocateLicenseRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . allocateLicense ( allocateLicenseRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'UsersApi.allocateLicense' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -7015,7 +7052,9 @@ export const UsersApiFp = function(configuration?: Configuration) {
* /
async confirmUser ( confirmRequest : ConfirmRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . confirmUser ( confirmRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'UsersApi.confirmUser' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -7026,7 +7065,9 @@ export const UsersApiFp = function(configuration?: Configuration) {
* /
async confirmUserAndInitPassword ( confirmRequest : ConfirmRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . confirmUserAndInitPassword ( confirmRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'UsersApi.confirmUserAndInitPassword' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ラ イ セ ン ス 割 り 当 て を 解 除 し ま す
@ -7037,7 +7078,9 @@ export const UsersApiFp = function(configuration?: Configuration) {
* /
async deallocateLicense ( deallocateLicenseRequest : DeallocateLicenseRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . deallocateLicense ( deallocateLicenseRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'UsersApi.deallocateLicense' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ロ グ イ ン し て い る ユ ー ザ ー の 情 報 を 取 得 し ま す
@ -7047,7 +7090,9 @@ export const UsersApiFp = function(configuration?: Configuration) {
* /
async getMyUser ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetMyUserResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getMyUser ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'UsersApi.getMyUser' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ロ グ イ ン し て い る ユ ー ザ ー に 関 連 す る 各 種 情 報 を 取 得 し ま す
@ -7057,7 +7102,9 @@ export const UsersApiFp = function(configuration?: Configuration) {
* /
async getRelations ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetRelationsResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getRelations ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'UsersApi.getRelations' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ロ グ イ ン し て い る ユ ー ザ ー の タ ス ク ソ ー ト 条 件 を 取 得 し ま す
@ -7067,7 +7114,9 @@ export const UsersApiFp = function(configuration?: Configuration) {
* /
async getSortCriteria ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetSortCriteriaResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getSortCriteria ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'UsersApi.getSortCriteria' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -7077,7 +7126,9 @@ export const UsersApiFp = function(configuration?: Configuration) {
* /
async getUsers ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetUsersResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getUsers ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'UsersApi.getUsers' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
*
@ -7088,7 +7139,9 @@ export const UsersApiFp = function(configuration?: Configuration) {
* /
async signup ( signupRequest : SignupRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . signup ( signupRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'UsersApi.signup' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* 利 用 規 約 同 意 バ ー ジ ョ ン を 更 新
@ -7099,7 +7152,9 @@ export const UsersApiFp = function(configuration?: Configuration) {
* /
async updateAcceptedVersion ( updateAcceptedVersionRequest : UpdateAcceptedVersionRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . updateAcceptedVersion ( updateAcceptedVersionRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'UsersApi.updateAcceptedVersion' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ロ グ イ ン し て い る ユ ー ザ ー の タ ス ク ソ ー ト 条 件 を 更 新 し ま す
@ -7110,7 +7165,9 @@ export const UsersApiFp = function(configuration?: Configuration) {
* /
async updateSortCriteria ( postSortCriteriaRequest : PostSortCriteriaRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . updateSortCriteria ( postSortCriteriaRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'UsersApi.updateSortCriteria' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ユ ー ザ ー の 情 報 を 更 新 し ま す
@ -7121,7 +7178,9 @@ export const UsersApiFp = function(configuration?: Configuration) {
* /
async updateUser ( postUpdateUserRequest : PostUpdateUserRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . updateUser ( postUpdateUserRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'UsersApi.updateUser' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
}
} ;
@ -7583,7 +7642,9 @@ export const WorkflowsApiFp = function(configuration?: Configuration) {
* /
async createWorkflows ( createWorkflowsRequest : CreateWorkflowsRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . createWorkflows ( createWorkflowsRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'WorkflowsApi.createWorkflows' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ア カ ウ ン ト 内 の ワ ー ク フ ロ ー を 削 除 し ま す
@ -7594,7 +7655,9 @@ export const WorkflowsApiFp = function(configuration?: Configuration) {
* /
async deleteWorkflow ( workflowId : number , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . deleteWorkflow ( workflowId , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'WorkflowsApi.deleteWorkflow' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ア カ ウ ン ト 内 の ワ ー ク フ ロ ー の 一 覧 を 取 得 し ま す
@ -7604,7 +7667,9 @@ export const WorkflowsApiFp = function(configuration?: Configuration) {
* /
async getWorkflows ( options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < GetWorkflowsResponse > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . getWorkflows ( options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'WorkflowsApi.getWorkflows' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
/ * *
* ア カ ウ ン ト 内 の ワ ー ク フ ロ ー を 編 集 し ま す
@ -7616,7 +7681,9 @@ export const WorkflowsApiFp = function(configuration?: Configuration) {
* /
async updateWorkflow ( workflowId : number , updateWorkflowRequest : UpdateWorkflowRequest , options? : AxiosRequestConfig ) : Promise < ( axios? : AxiosInstance , basePath? : string ) = > AxiosPromise < object > > {
const localVarAxiosArgs = await localVarAxiosParamCreator . updateWorkflow ( workflowId , updateWorkflowRequest , options ) ;
return createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ;
const index = configuration ? . serverIndex ? ? 0 ;
const operationBasePath = operationServerMap [ 'WorkflowsApi.updateWorkflow' ] ? . [ index ] ? . url ;
return ( axios , basePath ) = > createRequestFunction ( localVarAxiosArgs , globalAxios , BASE_PATH , configuration ) ( axios , operationBasePath || basePath ) ;
} ,
}
} ;