Skip to content

Commit

Permalink
Merge branch 'main' into N21-1494-info-outdated-ctl-tools
Browse files Browse the repository at this point in the history
  • Loading branch information
mrikallab committed Dec 4, 2023
2 parents 9644186 + 9cc0fa6 commit d993908
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@
/>
</template>
<template #item="{ item }">
<external-tool-selection-row :item="item" />
<external-tool-selection-row
data-testId="configuration-select-item"
:item="item"
/>
</template>
</v-autocomplete>
<h2
Expand Down
6 changes: 3 additions & 3 deletions src/serverApi/v3/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7055,7 +7055,7 @@ export const BoardCardApiFp = function(configuration?: Configuration) {
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async cardControllerCreateElement(cardId: string, createContentElementBodyParams: CreateContentElementBodyParams, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExternalToolElementResponse | FileElementResponse | LinkElementResponse | RichTextElementResponse | SubmissionContainerElementResponse | DrawingElementResponse>> {
async cardControllerCreateElement(cardId: string, createContentElementBodyParams: CreateContentElementBodyParams, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExternalToolElementResponse | FileElementResponse | LinkElementResponse | RichTextElementResponse | DrawingElementResponse | SubmissionContainerElementResponse>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.cardControllerCreateElement(cardId, createContentElementBodyParams, options);
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
Expand Down Expand Up @@ -7135,7 +7135,7 @@ export const BoardCardApiFactory = function (configuration?: Configuration, base
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
cardControllerCreateElement(cardId: string, createContentElementBodyParams: CreateContentElementBodyParams, options?: any): AxiosPromise<ExternalToolElementResponse | FileElementResponse | LinkElementResponse | RichTextElementResponse | SubmissionContainerElementResponse | DrawingElementResponse> {
cardControllerCreateElement(cardId: string, createContentElementBodyParams: CreateContentElementBodyParams, options?: any): AxiosPromise<ExternalToolElementResponse | FileElementResponse | LinkElementResponse | RichTextElementResponse | DrawingElementResponse | SubmissionContainerElementResponse> {
return localVarFp.cardControllerCreateElement(cardId, createContentElementBodyParams, options).then((request) => request(axios, basePath));
},
/**
Expand Down Expand Up @@ -7209,7 +7209,7 @@ export interface BoardCardApiInterface {
* @throws {RequiredError}
* @memberof BoardCardApiInterface
*/
cardControllerCreateElement(cardId: string, createContentElementBodyParams: CreateContentElementBodyParams, options?: any): AxiosPromise<ExternalToolElementResponse | FileElementResponse | LinkElementResponse | RichTextElementResponse | SubmissionContainerElementResponse | DrawingElementResponse>;
cardControllerCreateElement(cardId: string, createContentElementBodyParams: CreateContentElementBodyParams, options?: any): AxiosPromise<ExternalToolElementResponse | FileElementResponse | LinkElementResponse | RichTextElementResponse | DrawingElementResponse | SubmissionContainerElementResponse>;

/**
*
Expand Down

0 comments on commit d993908

Please sign in to comment.