generated from Kentico/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable central package floating versions and update Kentico NuGets to…
… latest version
- Loading branch information
1 parent
78ab8d3
commit b118b71
Showing
9 changed files
with
817 additions
and
820 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
106 changes: 53 additions & 53 deletions
106
src/Kentico.Xperience.Shopify/ReusableContentTypes/Shopify/Image/Image.generated.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,54 @@ | ||
//-------------------------------------------------------------------------------------------------- | ||
// <auto-generated> | ||
// | ||
// This code was generated by code generator tool. | ||
// | ||
// To customize the code use your own partial class. For more info about how to use and customize | ||
// the generated code see the documentation at https://docs.xperience.io/. | ||
// | ||
// </auto-generated> | ||
//-------------------------------------------------------------------------------------------------- | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using CMS.ContentEngine; | ||
|
||
namespace Shopify | ||
{ | ||
/// <summary> | ||
/// Represents a content item of type <see cref="Image"/>. | ||
/// </summary> | ||
[RegisterContentTypeMapping(CONTENT_TYPE_NAME)] | ||
public partial class Image : IContentItemFieldsSource | ||
{ | ||
/// <summary> | ||
/// Code name of the content type. | ||
/// </summary> | ||
public const string CONTENT_TYPE_NAME = "Shopify.Image"; | ||
|
||
|
||
/// <summary> | ||
/// Represents system properties for a content item. | ||
/// </summary> | ||
[SystemField] | ||
public ContentItemFields SystemFields { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ImageAsset. | ||
/// </summary> | ||
public ContentItemAsset ImageAsset { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ImageDescription. | ||
/// </summary> | ||
public string ImageDescription { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ShopifyImageID. | ||
/// </summary> | ||
public string ShopifyImageID { get; set; } | ||
} | ||
//-------------------------------------------------------------------------------------------------- | ||
// <auto-generated> | ||
// | ||
// This code was generated by code generator tool. | ||
// | ||
// To customize the code use your own partial class. For more info about how to use and customize | ||
// the generated code see the documentation at https://docs.xperience.io/. | ||
// | ||
// </auto-generated> | ||
//-------------------------------------------------------------------------------------------------- | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using CMS.ContentEngine; | ||
|
||
namespace Shopify | ||
{ | ||
/// <summary> | ||
/// Represents a content item of type <see cref="Image"/>. | ||
/// </summary> | ||
[RegisterContentTypeMapping(CONTENT_TYPE_NAME)] | ||
public partial class Image : IContentItemFieldsSource | ||
{ | ||
/// <summary> | ||
/// Code name of the content type. | ||
/// </summary> | ||
public const string CONTENT_TYPE_NAME = "Shopify.Image"; | ||
|
||
|
||
/// <summary> | ||
/// Represents system properties for a content item. | ||
/// </summary> | ||
[SystemField] | ||
public ContentItemFields SystemFields { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ImageAsset. | ||
/// </summary> | ||
public ContentItemAsset ImageAsset { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ImageDescription. | ||
/// </summary> | ||
public string ImageDescription { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ShopifyImageID. | ||
/// </summary> | ||
public string ShopifyImageID { get; set; } | ||
} | ||
} |
142 changes: 71 additions & 71 deletions
142
src/Kentico.Xperience.Shopify/ReusableContentTypes/Shopify/Product/Product.generated.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,72 +1,72 @@ | ||
//-------------------------------------------------------------------------------------------------- | ||
// <auto-generated> | ||
// | ||
// This code was generated by code generator tool. | ||
// | ||
// To customize the code use your own partial class. For more info about how to use and customize | ||
// the generated code see the documentation at https://docs.xperience.io/. | ||
// | ||
// </auto-generated> | ||
//-------------------------------------------------------------------------------------------------- | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using CMS.ContentEngine; | ||
|
||
namespace Shopify | ||
{ | ||
/// <summary> | ||
/// Represents a content item of type <see cref="Product"/>. | ||
/// </summary> | ||
[RegisterContentTypeMapping(CONTENT_TYPE_NAME)] | ||
public partial class Product : IContentItemFieldsSource | ||
{ | ||
/// <summary> | ||
/// Code name of the content type. | ||
/// </summary> | ||
public const string CONTENT_TYPE_NAME = "Shopify.Product"; | ||
|
||
|
||
/// <summary> | ||
/// Represents system properties for a content item. | ||
/// </summary> | ||
[SystemField] | ||
public ContentItemFields SystemFields { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// Title. | ||
/// </summary> | ||
public string Title { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// Description. | ||
/// </summary> | ||
public string Description { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ShopifyProductID. | ||
/// </summary> | ||
public string ShopifyProductID { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// Images. | ||
/// </summary> | ||
public IEnumerable<Image> Images { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// Variants. | ||
/// </summary> | ||
public IEnumerable<ProductVariant> Variants { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// Parameters. | ||
/// </summary> | ||
public string Parameters { get; set; } | ||
} | ||
//-------------------------------------------------------------------------------------------------- | ||
// <auto-generated> | ||
// | ||
// This code was generated by code generator tool. | ||
// | ||
// To customize the code use your own partial class. For more info about how to use and customize | ||
// the generated code see the documentation at https://docs.xperience.io/. | ||
// | ||
// </auto-generated> | ||
//-------------------------------------------------------------------------------------------------- | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using CMS.ContentEngine; | ||
|
||
namespace Shopify | ||
{ | ||
/// <summary> | ||
/// Represents a content item of type <see cref="Product"/>. | ||
/// </summary> | ||
[RegisterContentTypeMapping(CONTENT_TYPE_NAME)] | ||
public partial class Product : IContentItemFieldsSource | ||
{ | ||
/// <summary> | ||
/// Code name of the content type. | ||
/// </summary> | ||
public const string CONTENT_TYPE_NAME = "Shopify.Product"; | ||
|
||
|
||
/// <summary> | ||
/// Represents system properties for a content item. | ||
/// </summary> | ||
[SystemField] | ||
public ContentItemFields SystemFields { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// Title. | ||
/// </summary> | ||
public string Title { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// Description. | ||
/// </summary> | ||
public string Description { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ShopifyProductID. | ||
/// </summary> | ||
public string ShopifyProductID { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// Images. | ||
/// </summary> | ||
public IEnumerable<Image> Images { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// Variants. | ||
/// </summary> | ||
public IEnumerable<ProductVariant> Variants { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// Parameters. | ||
/// </summary> | ||
public string Parameters { get; set; } | ||
} | ||
} |
Oops, something went wrong.