Indice.Features.Messages.Core 8.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Indice.Features.Messages.Core --version 8.0.0
                    
NuGet\Install-Package Indice.Features.Messages.Core -Version 8.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Indice.Features.Messages.Core" Version="8.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Indice.Features.Messages.Core" Version="8.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Indice.Features.Messages.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Indice.Features.Messages.Core --version 8.0.0
                    
#r "nuget: Indice.Features.Messages.Core, 8.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Indice.Features.Messages.Core@8.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Indice.Features.Messages.Core&version=8.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Indice.Features.Messages.Core&version=8.0.0
                    
Install as a Cake Tool

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[8.0.0-rc32] - 2025-05-25

  • Added support for logging message events.
CREATE TABLE [#Schema#].[MessageEvent](
	[Id] [uniqueidentifier] NOT NULL,
	[CampaignId] [uniqueidentifier] NOT NULL,
	[ContactId] [uniqueidentifier] NOT NULL,
	[MessageId] [uniqueidentifier] NULL,
	[Type] [nvarchar](64) NOT NULL,
	[Channel] [nvarchar](64) NOT NULL,
	[CreatedOn] [datetimeoffset](7) NOT NULL,
 CONSTRAINT [PK_MessageEvent] PRIMARY KEY CLUSTERED 
(
	[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO

[8.0.0] - 2024-12-03

  • Added support for persisting User communication channel preferences, locale and Consent.
  • Campaign and Template define whether user communication preferences must be ingored if needed.
  • Send messages respects user communication preferences unless campaign specifies otherwise
ALTER TABLE [#Schema#].[Campaign]
ADD IgnoreUserPreferences BIT DEFAULT(0) NOT NULL;
GO
ALTER TABLE [#Schema#].[Contact]
ADD 
	CommunicationPreferences TINYINT DEFAULT(0) NOT NULL,
	ConsentCommercial		 BIT DEFAULT(0) NOT NULL,
	Locale					 VARCHAR(16);
GO
ALTER TABLE [#Schema#].[DistributionListContact]
ADD Unsubscribed BIT DEFAULT(0) NOT NULL;	
GO
ALTER TABLE [#Schema#].[Template]
ADD IgnoreUserPreferences BIT DEFAULT(0) NOT NULL;
GO
ALTER TABLE [#Schema#].[MessageType]
ADD Classification TINYINT DEFAULT(0) NOT NULL;		
GO

[7.27.0] - 2024-07-26

Added

  • Added support for persisting sample data for facilitating template rendering on message templates.
ALTER TABLE [cmp].[Template]
ADD [Data] [nvarchar](max) NULL
GO

[7.23.0] - 2024-05-16

Added

  • New column MediaBaseHref in DbCampaign
ALTER TABLE [cmp].[Campaign]
ADD [MediaBaseHref] [nvarchar](1024) NULL

[7.4.4] - 2023-10-04

Added

  • ContactRetainPeriodInDays option to keep in sync a contact with the identity system. After the configured period of time the system patches and updates the contact with the latest values.

[7.4.1] - 2023-09-22

Changed

  • CampaignId is returned in PushNotification data in property "messageId". Intentioanally added for naming consistency. external MessageId == internal CampaignId.

[7.3.8] - 2023-08-07

Added

  • Message Id is included in PushNotification data
  • Inbox service enhanced to return other channels also

[7.3.7] - 2023-08-02

Added

  • New entity DbMessageSender

Migration

CREATE TABLE [dbo].[MessageSender](
	[Id] [uniqueidentifier] NOT NULL,
	[Sender] [nvarchar](max) NULL,
	[DisplayName] [nvarchar](max) NULL,
	[Kind] [tinyint] NOT NULL,
	[IsDefault] [bit] NOT NULL,
	[CreatedBy] [nvarchar](max) NULL,
	[CreatedAt] [datetimeoffset](7) NOT NULL,
	[UpdatedBy] [nvarchar](max) NULL,
	[UpdatedAt] [datetimeoffset](7) NULL,
 CONSTRAINT [PK_MessageSender] PRIMARY KEY CLUSTERED 
(
	[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on Indice.Features.Messages.Core:

Package Downloads
Indice.Features.Messages.AspNetCore

Package Description

Indice.Features.Messages.Worker.Azure

Package Description

Indice.Features.Messages.Worker

Package Description

Indice.Hive.Core

Package Description

Indice.Hive.Server

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
8.10.0 152 8/5/2025
8.9.0 88 7/30/2025
8.8.0 89 7/29/2025
8.7.0 486 7/23/2025
8.6.0 490 7/23/2025
8.5.0 362 7/21/2025
8.4.0 120 7/17/2025
8.3.0 123 7/17/2025
8.2.0 322 6/26/2025
8.1.0 139 6/20/2025
8.1.0-rc04 169 6/18/2025
8.1.0-rc03 253 6/13/2025
8.1.0-rc02 249 6/13/2025
8.1.0-rc01 301 6/11/2025
8.0.1 343 6/5/2025
8.0.0 172 6/3/2025
8.0.0-rc32 176 5/27/2025
8.0.0-rc31 198 5/22/2025
8.0.0-rc30 176 5/20/2025
8.0.0-rc29 132 5/9/2025
8.0.0-rc28 207 5/7/2025
8.0.0-rc27 186 4/30/2025
8.0.0-rc26 198 4/24/2025
8.0.0-rc25 306 4/2/2025
8.0.0-rc24 182 3/27/2025
8.0.0-rc23 200 3/19/2025
8.0.0-rc22 312 3/6/2025
8.0.0-rc21 253 3/5/2025
8.0.0-rc20 136 2/27/2025
8.0.0-rc19 173 2/21/2025
8.0.0-rc18 140 2/20/2025
8.0.0-rc17 120 2/17/2025
8.0.0-rc16 150 2/11/2025
8.0.0-rc15 296 2/3/2025
8.0.0-rc14 146 1/30/2025
8.0.0-rc13 152 1/23/2025
8.0.0-rc12 109 1/20/2025
8.0.0-rc11 117 1/13/2025
8.0.0-rc10 146 1/3/2025
8.0.0-rc09 177 12/10/2024
8.0.0-rc08 127 12/6/2024
8.0.0-rc07 122 12/6/2024
8.0.0-rc06 124 12/6/2024
8.0.0-rc05 126 12/6/2024
8.0.0-rc04 118 12/4/2024
8.0.0-rc03 107 12/2/2024
8.0.0-rc02 112 12/1/2024
8.0.0-rc01 83 11/29/2024
7.47.0 609 11/28/2024
7.46.0 165 11/27/2024
7.45.0 170 11/26/2024
7.44.0 174 11/26/2024
7.43.4 174 11/25/2024
7.43.3 173 11/22/2024
7.43.2 176 11/22/2024
7.43.1 173 11/22/2024
7.43.0 176 11/22/2024
7.42.0 177 11/21/2024
7.41.0 169 11/15/2024
7.40.0 171 11/14/2024
7.39.0 167 11/6/2024
7.38.0 170 11/5/2024
7.37.0 175 11/1/2024
7.36.0 159 10/30/2024
7.35.0 166 10/30/2024
7.34.0 1,733 10/24/2024
7.33.0 166 10/23/2024
7.32.0 208 10/18/2024
7.31.0 209 10/3/2024
7.30.0 199 9/25/2024
7.29.0 271 9/10/2024
7.28.0 387 7/26/2024
7.27.0 142 7/25/2024
7.26.0 137 7/24/2024
7.25.0 388 7/12/2024
7.24.0 205 6/26/2024
7.23.1 206 6/26/2024
7.23.0 208 6/3/2024
7.22.5 404 5/13/2024
7.22.4 254 4/2/2024
7.22.3 223 3/21/2024
7.22.2 208 3/21/2024
7.22.1 226 3/21/2024
7.22.0 472 3/14/2024
7.21.0 220 3/12/2024
7.20.1 221 2/15/2024
7.20.0 317 2/8/2024
7.19.0 213 1/29/2024
7.18.0 263 1/9/2024
7.17.0 253 1/5/2024
7.16.0 225 1/4/2024
7.15.0 207 1/3/2024
7.14.0 287 12/15/2023
7.13.0 227 12/12/2023
7.12.0 254 12/11/2023
7.11.1 269 11/29/2023
7.11.0 213 11/27/2023
7.10.0 215 11/24/2023
7.8.0 213 11/17/2023
7.7.0 253 11/1/2023
7.6.4 234 10/20/2023
7.6.3 238 10/13/2023
7.6.2 242 10/12/2023
7.6.1 270 10/11/2023
7.6.1-beta-01 121 10/11/2023
7.6.0 243 10/10/2023
7.5.1 239 10/10/2023
7.5.0 255 10/5/2023
7.4.4 231 10/4/2023
7.4.3 242 9/28/2023
7.4.2 260 9/27/2023
7.4.1 245 9/22/2023
7.4.0 218 9/19/2023
7.3.24 237 9/15/2023
7.3.23 250 9/14/2023
7.3.22 226 9/12/2023
7.3.21 241 9/8/2023
7.3.20 240 9/6/2023
7.3.19 209 9/6/2023
7.3.18 236 9/5/2023
7.3.17 3,390 8/29/2023
7.3.16 254 8/24/2023
7.3.15 254 8/24/2023
7.3.14 236 8/23/2023
7.3.13 242 8/22/2023
7.3.12 258 8/14/2023
7.3.11 287 8/10/2023
7.3.10 276 8/10/2023
7.3.9 276 8/10/2023
7.3.8 282 8/9/2023
7.3.7 266 8/2/2023
7.3.6 308 7/24/2023
7.3.5 413 7/10/2023
7.3.4 283 7/10/2023
7.3.3 307 7/6/2023
7.3.2 299 7/5/2023
7.3.1 327 6/26/2023
7.2.0 377 5/29/2023
7.1.6 314 5/9/2023
7.1.5 293 5/8/2023
7.1.4 313 5/2/2023
7.1.3 353 4/24/2023
7.1.2 381 4/19/2023
7.1.1 382 4/19/2023
7.1.0 395 4/13/2023
7.0.9 375 4/12/2023
7.0.8 429 4/11/2023
7.0.7 393 4/6/2023
7.0.6 433 4/2/2023
7.0.5 441 3/30/2023
7.0.4 454 3/29/2023
7.0.3 436 3/27/2023
7.0.2 458 3/23/2023
7.0.1 334 3/23/2023
7.0.0 450 3/23/2023
6.12.3 496 3/22/2023
6.12.1 447 3/20/2023
6.12.0 491 3/17/2023
6.11.1 478 3/6/2023
6.11.0 455 3/3/2023
6.10.2 532 2/16/2023
6.10.1 540 2/15/2023
6.10.0 563 2/8/2023
6.9.0 551 2/6/2023
6.8.0 581 2/3/2023
6.7.0 552 2/2/2023
6.6.0 571 1/30/2023
6.5.0 580 1/24/2023
6.4.10 775 1/20/2023
6.4.9 537 1/20/2023
6.4.5 741 1/19/2023
6.4.0 789 12/22/2022
6.2.1 949 11/16/2022
6.2.0 803 11/15/2022
6.1.14 924 11/14/2022
6.1.13 938 11/11/2022
6.1.12 1,168 10/3/2022
6.1.11 1,195 9/30/2022
6.1.10 1,195 9/23/2022
6.1.9 1,200 9/13/2022
6.1.8 1,252 9/1/2022
6.1.7 1,221 9/1/2022
6.1.6 1,558 9/1/2022
6.1.5 1,282 8/25/2022
6.1.4 1,317 8/23/2022
6.1.3 1,416 8/12/2022
6.1.0-beta-08 392 4/28/2022
6.1.0-beta-07 347 4/27/2022
6.1.0-beta-06 325 4/27/2022
6.1.0-beta-05 331 4/21/2022
6.1.0-beta-04 316 4/21/2022
6.1.0-beta-03 321 4/19/2022
6.1.0-beta-02 328 4/18/2022
6.1.0-beta-01 221 4/18/2022