Skip to content

Commit

Permalink
N21-1677 generate api
Browse files Browse the repository at this point in the history
  • Loading branch information
mrikallab committed Apr 26, 2024
1 parent dfbce11 commit bec7243
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions src/serverApi/v3/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1205,11 +1205,17 @@ export interface ContextExternalToolConfigurationStatusResponse {
*/
isOutdatedOnScopeContext: boolean;
/**
* True, if a configured parameter on the context external tool is missing a value
* True, if a mandatory parameter on the context external tool is missing a value
* @type {boolean}
* @memberof ContextExternalToolConfigurationStatusResponse
*/
isIncompleteOnScopeContext: boolean;
/**
* True, if a optional parameter on the context external tool is missing a value
* @type {boolean}
* @memberof ContextExternalToolConfigurationStatusResponse
*/
isIncompleteOperationalOnScopeContext: boolean;
/**
* Is the tool deactivated, because of superhero or school administrator
* @type {boolean}
Expand Down Expand Up @@ -11855,7 +11861,7 @@ export const CollaborativeTextEditorApiAxiosParamCreator = function (configurati
return {
/**
*
* @summary Redirect to CollaborativeTextEditor
* @summary Get or create CollaborativeTextEditor for parent
* @param {string} parentId
* @param {CollaborativeTextEditorParentType} parentType Parent type of the collaborative text editor.
* @param {*} [options] Override http request option.
Expand Down Expand Up @@ -11907,7 +11913,7 @@ export const CollaborativeTextEditorApiFp = function(configuration?: Configurati
return {
/**
*
* @summary Redirect to CollaborativeTextEditor
* @summary Get or create CollaborativeTextEditor for parent
* @param {string} parentId
* @param {CollaborativeTextEditorParentType} parentType Parent type of the collaborative text editor.
* @param {*} [options] Override http request option.
Expand All @@ -11929,7 +11935,7 @@ export const CollaborativeTextEditorApiFactory = function (configuration?: Confi
return {
/**
*
* @summary Redirect to CollaborativeTextEditor
* @summary Get or create CollaborativeTextEditor for parent
* @param {string} parentId
* @param {CollaborativeTextEditorParentType} parentType Parent type of the collaborative text editor.
* @param {*} [options] Override http request option.
Expand All @@ -11949,7 +11955,7 @@ export const CollaborativeTextEditorApiFactory = function (configuration?: Confi
export interface CollaborativeTextEditorApiInterface {
/**
*
* @summary Redirect to CollaborativeTextEditor
* @summary Get or create CollaborativeTextEditor for parent
* @param {string} parentId
* @param {CollaborativeTextEditorParentType} parentType Parent type of the collaborative text editor.
* @param {*} [options] Override http request option.
Expand All @@ -11969,7 +11975,7 @@ export interface CollaborativeTextEditorApiInterface {
export class CollaborativeTextEditorApi extends BaseAPI implements CollaborativeTextEditorApiInterface {
/**
*
* @summary Redirect to CollaborativeTextEditor
* @summary Get or create CollaborativeTextEditor for parent
* @param {string} parentId
* @param {CollaborativeTextEditorParentType} parentType Parent type of the collaborative text editor.
* @param {*} [options] Override http request option.
Expand Down

0 comments on commit bec7243

Please sign in to comment.