Skip to content

Commit

Permalink
conflict fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielJurcaBS committed May 2, 2024
2 parents eaca762 + dc121c9 commit 7b8e0c6
Show file tree
Hide file tree
Showing 8 changed files with 360 additions and 410 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<Authors>$(Company)</Authors>
<Copyright>Copyright © $(Company) $([System.DateTime]::Now.Year)</Copyright>
<Trademark>$(Company)™</Trademark>
<VersionPrefix>0.1.0</VersionPrefix>
<VersionSuffix>preview</VersionSuffix>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionSuffix>prerelease-1</VersionSuffix>
<PackageLicenseExpression>MIT</PackageLicenseExpression>

<PackageProjectUrl>https://github.com/Kentico/Xperience-by-Kentico-Zapier</PackageProjectUrl>
Expand Down
10 changes: 5 additions & 5 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Kentico.Xperience.Admin" Version="28.3.2" />
<PackageVersion Include="Kentico.Xperience.WebApp" Version="28.3.2" />
<PackageVersion Include="kentico.xperience.azurestorage" Version="28.3.2" />
<PackageVersion Include="kentico.xperience.imageprocessing" Version="28.3.2" />
<PackageVersion Include="Kentico.Xperience.Admin" Version="29.0.0" />
<PackageVersion Include="Kentico.Xperience.WebApp" Version="29.0.0" />
<PackageVersion Include="kentico.xperience.azurestorage" Version="29.0.0" />
<PackageVersion Include="kentico.xperience.imageprocessing" Version="29.0.0" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
<PackageVersion Include="SonarAnalyzer.CSharp" Version="9.6.0.74858" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageVersion Include="NUnit" Version="4.0.1" />
<PackageVersion Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageVersion Include="NUnit.Analyzers" Version="3.10.0" />
<PackageVersion Include="coverlet.collector" Version="6.0.0" />
<PackageVersion Include="AspNetCore.Authentication.ApiKey" Version="8.0.0"/>
<PackageVersion Include="AspNetCore.Authentication.ApiKey" Version="8.0.0" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This version supports content workflows added in version 28.3.0. Please ensure t

| Xperience Version | Library Version |
| ----------------- | --------------- |
| >= 28.3.* | 1.0.0 |
| >= 29.0.* | 1.0.0 |

## Zapier cli application
The Zapier cli app version 1.0.0 will initially be beta flagged, but this is the full version. The beta flag is just a zapier flag for new app integrations. This Flag will disappear after 90 days.
Expand Down
391 changes: 180 additions & 211 deletions examples/DancingGoat/packages.lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/Kentico.Xperience.Zapier/Admin/ZapierModuleInstaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ internal interface IZapierModuleInstaller

internal class ZapierModuleInstaller : IZapierModuleInstaller
{
private readonly IResourceInfoProvider resourceInfoProvider;
private readonly IInfoProvider<ResourceInfo> resourceInfoProvider;


public ZapierModuleInstaller(IResourceInfoProvider resourceInfoProvider) => this.resourceInfoProvider = resourceInfoProvider;
public ZapierModuleInstaller(IInfoProvider<ResourceInfo> resourceInfoProvider) => this.resourceInfoProvider = resourceInfoProvider;


public void Install()
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using CMS.DataEngine;

namespace Kentico.Xperience.Zapier.Triggers.Extensions
{
internal static class DataClassExtensions
{
internal static bool IsContentType(this DataClassInfo contentType) =>
(contentType?.ClassType?.Equals("Content", StringComparison.OrdinalIgnoreCase)).GetValueOrDefault();

internal static bool IsForm(this DataClassInfo contentType) =>
(contentType?.ClassType?.Equals("Form", StringComparison.OrdinalIgnoreCase)).GetValueOrDefault();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

using CMS.ContentEngine;
using CMS.DataEngine;
using CMS.DataEngine.Internal;
using CMS.OnlineForms;
using CMS.Websites;
using CMS.Websites.Routing;
Expand Down
Loading

0 comments on commit 7b8e0c6

Please sign in to comment.