Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
Merge pull request #118 from smartsheet-platform/2.93.x-updates
Browse files Browse the repository at this point in the history
Add summaryField ObjectType #117
  • Loading branch information
timwellswa authored Mar 24, 2020
2 parents 8590ada + 1609f76 commit 4f32288
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [2.93.1] - 2020-03-24
### Fixed
- [Issue 117 - Unable to Search Sheet Summar](https://github.com/smartsheet-platform/smartsheet-csharp-sdk/issues/117)

## [2.93.0] - 2020-03-12
### Added
- Webhooks for columns support
Expand Down
4 changes: 2 additions & 2 deletions documentation/smartsheet-csharp-sdk-docs-v2.shfbproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<PresentationStyle>VS2013</PresentationStyle>
<Preliminary>False</Preliminary>
<NamingMethod>Guid</NamingMethod>
<HelpTitle>Smartsheet C# SDK Documentation v2.93.0</HelpTitle>
<HelpTitle>Smartsheet C# SDK Documentation v2.93.1</HelpTitle>
<FeedbackEMailAddress>api%40smartsheet.com</FeedbackEMailAddress>
<CopyrightText>%28c%29 2014-2020. All Rights Reserved</CopyrightText>
<CopyrightHref>Smartsheet</CopyrightHref>
Expand Down Expand Up @@ -88,7 +88,7 @@
<Argument Key="maxVersionParts" Value="" />
<Argument Key="defaultLanguage" Value="cs" />
</TransformComponentArguments>
<HelpFileVersion>2.93.0.0</HelpFileVersion>
<HelpFileVersion>2.93.1.0</HelpFileVersion>
<RootNamespaceTitle>Smartsheet C# SDK Help Topics</RootNamespaceTitle>
<SaveComponentCacheCapacity>100</SaveComponentCacheCapacity>
</PropertyGroup>
Expand Down
22 changes: 12 additions & 10 deletions main/Smartsheet/Api/Models/SearchObjectType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,24 @@ public enum SearchObjectType
{
// ObjectType must also be in all lower case when building the path.
// Below, the EnumMembers turn the enums into lowercase only during serialization into JSON object
[EnumMember(Value = "attachment")]
ATTACHMENT,
[EnumMember(Value = "discussion")]
DISCUSSION,
[EnumMember(Value = "folder")]
FOLDER,
[EnumMember(Value = "report")]
REPORT,
[EnumMember(Value = "row")]
ROW,
[EnumMember(Value = "sheet")]
SHEET,
[EnumMember(Value = "report")]
REPORT,
[EnumMember(Value = "template")]
TEMPLATE,
[EnumMember(Value = "discussion")]
DISCUSSION,
[EnumMember(Value = "attachment")]
ATTACHMENT,
[EnumMember(Value = "sight")]
SIGHT,
[EnumMember(Value = "folder")]
FOLDER,
[EnumMember(Value = "summaryField")]
SUMMARY_FIELD,
[EnumMember(Value = "template")]
TEMPLATE,
[EnumMember(Value = "workspace")]
WORKSPACE
}
Expand Down
2 changes: 1 addition & 1 deletion smartsheet-csharp-sdk-v2.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<Authors>Smartsheet</Authors>
<Product>smartsheet-csharp-sdk</Product>
<PackageTags>Smartsheet Collaboration Project Management Excel spreadsheet</PackageTags>
<Version>2.93.0</Version>
<Version>2.93.1</Version>
<AssemblyName>smartsheet-csharp-sdk</AssemblyName>
<RootNamespace>smartsheet-csharp-sdk</RootNamespace>
</PropertyGroup>
Expand Down

0 comments on commit 4f32288

Please sign in to comment.