Function CommandApiAxiosParamCreator

CommandApi - axios parameter creator

  • Parameters

    • Optionalconfiguration: Configuration

    Returns {
        commandControllerCreate: (
            commandCreateDTO?: CommandCreateDTO,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        commandControllerCreateArgument: (
            commandArgumentCreateDTO?: CommandArgumentCreateDTO,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        commandControllerGetExecutions: (
            id: string,
            success?: any,
            eventSearchInputDTO?: EventSearchInputDTO,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        commandControllerGetOne: (
            id: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        commandControllerRemove: (
            id: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        commandControllerRemoveArgument: (
            id: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        commandControllerSearch: (
            commandSearchInputDTO?: CommandSearchInputDTO,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        commandControllerTrigger: (
            id: string,
            commandTriggerDTO?: CommandTriggerDTO,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        commandControllerUpdate: (
            id: string,
            commandUpdateDTO?: CommandUpdateDTO,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        commandControllerUpdateArgument: (
            id: string,
            commandArgumentUpdateDTO?: CommandArgumentUpdateDTO,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
    }

    • commandControllerCreate: (
          commandCreateDTO?: CommandCreateDTO,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>

      Required permissions: MANAGE_MODULES
      OperationId: CommandControllerCreate

    • commandControllerCreateArgument: (
          commandArgumentCreateDTO?: CommandArgumentCreateDTO,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>

      Required permissions: MANAGE_MODULES
      OperationId: CommandControllerCreateArgument

    • commandControllerGetExecutions: (
          id: string,
          success?: any,
          eventSearchInputDTO?: EventSearchInputDTO,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>

      Required permissions: READ_MODULES
      OperationId: CommandControllerGetExecutions

    • commandControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>

      Required permissions: READ_MODULES
      OperationId: CommandControllerGetOne

    • commandControllerRemove: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>

      Required permissions: MANAGE_MODULES
      OperationId: CommandControllerRemove

    • commandControllerRemoveArgument: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>

      Required permissions: MANAGE_MODULES
      OperationId: CommandControllerRemoveArgument

    • commandControllerSearch: (
          commandSearchInputDTO?: CommandSearchInputDTO,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>

      Required permissions: READ_MODULES
      OperationId: CommandControllerSearch

    • commandControllerTrigger: (
          id: string,
          commandTriggerDTO?: CommandTriggerDTO,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>

      Required permissions: MANAGE_MODULES
      OperationId: CommandControllerTrigger

    • commandControllerUpdate: (
          id: string,
          commandUpdateDTO?: CommandUpdateDTO,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>

      Required permissions: MANAGE_MODULES
      OperationId: CommandControllerUpdate

    • commandControllerUpdateArgument: (
          id: string,
          commandArgumentUpdateDTO?: CommandArgumentUpdateDTO,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>

      Required permissions: MANAGE_MODULES
      OperationId: CommandControllerUpdateArgument