File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -531,7 +531,7 @@ const injectedRtkApi = api.injectEndpoints({
531531 } ) ,
532532 } ) ,
533533 getInternalRepoUrls : build . query < GetInternalRepoUrlsApiResponse , GetInternalRepoUrlsApiArg > ( {
534- query : ( queryArg ) => ( { url : `/v1/internalRepoUrls` , params : { teamId : queryArg . teamId } } ) ,
534+ query : ( queryArg ) => ( { url : `/v2/teams/ ${ queryArg . teamId } /internalRepoUrls` } ) ,
535535 } ) ,
536536 createObjWizard : build . mutation < CreateObjWizardApiResponse , CreateObjWizardApiArg > ( {
537537 query : ( queryArg ) => ( { url : `/v1/objwizard` , method : 'POST' , body : queryArg . body } ) ,
@@ -6305,8 +6305,8 @@ export type TestRepoConnectApiArg = {
63056305}
63066306export type GetInternalRepoUrlsApiResponse = /** status 200 Successfully obtained internal repo urls */ string [ ]
63076307export type GetInternalRepoUrlsApiArg = {
6308- /** ID of the team */
6309- teamId ? : string
6308+ /** ID of team */
6309+ teamId : string
63106310}
63116311export type CreateObjWizardApiResponse = /** status 200 Successfully configured obj wizard configuration */ object
63126312export type CreateObjWizardApiArg = {
You can’t perform that action at this time.
0 commit comments