Skip to content
Merged
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
12 changes: 12 additions & 0 deletions src/libs/LabelStudio/Generated/LabelStudio.Models.LseProject.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,13 @@ public sealed partial class LseProject
[global::System.Text.Json.Serialization.JsonPropertyName("pause_on_failed_annotator_evaluation")]
public bool? PauseOnFailedAnnotatorEvaluation { get; set; }

/// <summary>
/// Included only in responses
/// </summary>
/// <default>default!</default>
[global::System.Text.Json.Serialization.JsonPropertyName("permissions")]
public global::System.Collections.Generic.IList<string> Permissions { get; set; } = default!;

/// <summary>
/// Pinned date and time
/// </summary>
Expand Down Expand Up @@ -777,6 +784,9 @@ public sealed partial class LseProject
/// JSON-formatted labeling configuration<br/>
/// Included only in responses
/// </param>
/// <param name="permissions">
/// Included only in responses
/// </param>
/// <param name="queueDone">
/// Included only in responses
/// </param>
Expand Down Expand Up @@ -894,6 +904,7 @@ public LseProject(
global::System.Collections.Generic.IList<object> members = default!,
int membersCount = default!,
object parsedLabelConfig = default!,
global::System.Collections.Generic.IList<string> permissions = default!,
int queueDone = default!,
int queueLeft = default!,
int queueTotal = default!,
Expand Down Expand Up @@ -957,6 +968,7 @@ public LseProject(
this.OverlapCohortPercentage = overlapCohortPercentage;
this.ParsedLabelConfig = parsedLabelConfig;
this.PauseOnFailedAnnotatorEvaluation = pauseOnFailedAnnotatorEvaluation;
this.Permissions = permissions;
this.PinnedAt = pinnedAt;
this.Prompts = prompts;
this.QueueDone = queueDone;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,13 @@ public sealed partial class LseProjectResponse
[global::System.Text.Json.Serialization.JsonPropertyName("pause_on_failed_annotator_evaluation")]
public bool? PauseOnFailedAnnotatorEvaluation { get; set; }

/// <summary>
/// Included only in responses
/// </summary>
/// <default>default!</default>
[global::System.Text.Json.Serialization.JsonPropertyName("permissions")]
public global::System.Collections.Generic.IList<string> Permissions { get; set; } = default!;

/// <summary>
/// Pinned date and time
/// </summary>
Expand Down Expand Up @@ -815,6 +822,9 @@ public sealed partial class LseProjectResponse
/// JSON-formatted labeling configuration<br/>
/// Included only in responses
/// </param>
/// <param name="permissions">
/// Included only in responses
/// </param>
/// <param name="queueDone">
/// Included only in responses
/// </param>
Expand Down Expand Up @@ -937,6 +947,7 @@ public LseProjectResponse(
int membersCount = default!,
int numTasksWithAnnotations = default!,
object parsedLabelConfig = default!,
global::System.Collections.Generic.IList<string> permissions = default!,
int queueDone = default!,
int queueLeft = default!,
int queueTotal = default!,
Expand Down Expand Up @@ -1003,6 +1014,7 @@ public LseProjectResponse(
this.OverlapCohortPercentage = overlapCohortPercentage;
this.ParsedLabelConfig = parsedLabelConfig;
this.PauseOnFailedAnnotatorEvaluation = pauseOnFailedAnnotatorEvaluation;
this.Permissions = permissions;
this.PinnedAt = pinnedAt;
this.Prompts = prompts;
this.QueueDone = queueDone;
Expand Down
12 changes: 12 additions & 0 deletions src/libs/LabelStudio/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33488,6 +33488,11 @@ components:
description: Pause annotator on failed evaluation
nullable: true
type: boolean
permissions:
items:
type: string
readOnly: true
type: array
pinned_at:
description: Pinned date and time
format: date-time
Expand Down Expand Up @@ -33632,6 +33637,7 @@ components:
- members_count
- num_tasks_with_annotations
- parsed_label_config
- permissions
- prompts
- queue_done
- queue_left
Expand Down Expand Up @@ -34348,6 +34354,11 @@ components:
description: Pause annotator on failed evaluation
nullable: true
type: boolean
permissions:
items:
type: string
readOnly: true
type: array
pinned_at:
description: Pinned date and time
format: date-time
Expand Down Expand Up @@ -34503,6 +34514,7 @@ components:
- members_count
- num_tasks_with_annotations
- parsed_label_config
- permissions
- prompts
- queue_done
- queue_left
Expand Down