Skip to content

Commit

Permalink
Updated management API.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Nov 14, 2019
1 parent 92ab718 commit b8ff24f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15245,6 +15245,14 @@ public abstract partial class UpsertSchemaDto
[Newtonsoft.Json.JsonProperty("scripts", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public SchemaScriptsDto Scripts { get; set; }

/// <summary>The names of the fields that should be used in references.</summary>
[Newtonsoft.Json.JsonProperty("fieldsInReferences", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public FieldNames FieldsInReferences { get; set; }

/// <summary>The names of the fields that should be shown in lists, including meta fields.</summary>
[Newtonsoft.Json.JsonProperty("fieldsInLists", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public FieldNames FieldsInLists { get; set; }

/// <summary>Optional fields.</summary>
[Newtonsoft.Json.JsonProperty("fields", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<UpsertSchemaFieldDto> Fields { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageIconUrl>https://raw.githubusercontent.com/Squidex/squidex/master/media/logo-squared.png</PackageIconUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Squidex/squidex/</PackageProjectUrl>
<Version>4.0</Version>
<Version>4.0.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit b8ff24f

Please sign in to comment.