Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lib/public/TaskProcessing/TaskTypes/GenerateEmoji.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@
use OCP\IL10N;
use OCP\L10N\IFactory;
use OCP\TaskProcessing\EShapeType;
use OCP\TaskProcessing\ITaskType;
use OCP\TaskProcessing\IInternalTaskType;
use OCP\TaskProcessing\ShapeDescriptor;

/**
* This is the task processing task type for generic text processing
* @since 30.0.0
* @deprecated 35.0.0
*/
class GenerateEmoji implements ITaskType {
class GenerateEmoji implements IInternalTaskType {
/**
* @since 30.0.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
use OCP\IL10N;
use OCP\L10N\IFactory;
use OCP\TaskProcessing\EShapeType;
use OCP\TaskProcessing\ITaskType;
use OCP\TaskProcessing\IInternalTaskType;
use OCP\TaskProcessing\ShapeDescriptor;

/**
* This is the task processing task type for text reformulation
* @since 31.0.0
*/
class TextToTextChangeTone implements ITaskType {
class TextToTextChangeTone implements IInternalTaskType {
/**
* @since 31.0.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@
use OCP\IL10N;
use OCP\L10N\IFactory;
use OCP\TaskProcessing\EShapeType;
use OCP\TaskProcessing\ITaskType;
use OCP\TaskProcessing\IInternalTaskType;
use OCP\TaskProcessing\ShapeDescriptor;

/**
* This is the task processing task type for text formalization
* @since 30.0.0
* @deprecated 35.0.0
*/
class TextToTextFormalization implements ITaskType {
class TextToTextFormalization implements IInternalTaskType {
/**
* @since 30.0.0
*/
Expand Down
4 changes: 2 additions & 2 deletions lib/public/TaskProcessing/TaskTypes/TextToTextHeadline.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
use OCP\IL10N;
use OCP\L10N\IFactory;
use OCP\TaskProcessing\EShapeType;
use OCP\TaskProcessing\ITaskType;
use OCP\TaskProcessing\IInternalTaskType;
use OCP\TaskProcessing\ShapeDescriptor;

/**
* This is the task processing task type for creating headline
* @since 30.0.0
*/
class TextToTextHeadline implements ITaskType {
class TextToTextHeadline implements IInternalTaskType {
/**
* @since 30.0.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
use OCP\IL10N;
use OCP\L10N\IFactory;
use OCP\TaskProcessing\EShapeType;
use OCP\TaskProcessing\ITaskType;
use OCP\TaskProcessing\IInternalTaskType;
use OCP\TaskProcessing\ShapeDescriptor;

/**
* This is the task processing task type for reformatting text into paragraphs
* @since 34.0.0
*/
class TextToTextReformatParagraphs implements ITaskType {
class TextToTextReformatParagraphs implements IInternalTaskType {
/**
* @since 34.0.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@
use OCP\IL10N;
use OCP\L10N\IFactory;
use OCP\TaskProcessing\EShapeType;
use OCP\TaskProcessing\ITaskType;
use OCP\TaskProcessing\IInternalTaskType;
use OCP\TaskProcessing\ShapeDescriptor;

/**
* This is the task processing task type for text reformulation
* @since 30.0.0
* @deprecated 35.0.0
*/
class TextToTextReformulation implements ITaskType {
class TextToTextReformulation implements IInternalTaskType {
/**
* @since 30.0.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@
use OCP\IL10N;
use OCP\L10N\IFactory;
use OCP\TaskProcessing\EShapeType;
use OCP\TaskProcessing\ITaskType;
use OCP\TaskProcessing\IInternalTaskType;
use OCP\TaskProcessing\ShapeDescriptor;

/**
* This is the task processing task type for text simplification
* @since 30.0.0
* @deprecated 35.0.0
*/
class TextToTextSimplification implements ITaskType {
class TextToTextSimplification implements IInternalTaskType {
/**
* @since 30.0.0
*/
Expand Down
4 changes: 2 additions & 2 deletions lib/public/TaskProcessing/TaskTypes/TextToTextTopics.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
use OCP\IL10N;
use OCP\L10N\IFactory;
use OCP\TaskProcessing\EShapeType;
use OCP\TaskProcessing\ITaskType;
use OCP\TaskProcessing\IInternalTaskType;
use OCP\TaskProcessing\ShapeDescriptor;

/**
* This is the task processing task type for topics extraction
* @since 30.0.0
*/
class TextToTextTopics implements ITaskType {
class TextToTextTopics implements IInternalTaskType {
/**
* @since 30.0.0
*/
Expand Down
Loading