Indice.Features.Messages.Core 8.16.1

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.16.1
                    
NuGet\Install-Package Indice.Features.Messages.Core -Version 8.16.1
                    
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.16.1" />
                    
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.16.1" />
                    
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.16.1
                    
#r "nuget: Indice.Features.Messages.Core, 8.16.1"
                    
#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.16.1
                    
#: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.16.1
                    
Install as a Cake Addin
#tool nuget:?package=Indice.Features.Messages.Core&version=8.16.1
                    
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.16.0] - 2025-09-19

Added New column

ALTER TABLE [msg].[Contact] 
    ADD [Resolved]     bit      NULL
GO
CREATE NONCLUSTERED INDEX [IX_Contact_RecipientId_Resolved] 
    ON [cmp].[Contact] ([RecipientId] ASC, [Resolved] ASC)
GO
CREATE NONCLUSTERED INDEX [IX_Campaign_CreatedAt]
    ON [cmp].[Campaign] ([CreatedAt] ASC)
GO

[8.1.10] - 2025-08-05

Added support alias in Distribution list

ALTER TABLE [msg].[DistributionList] 
    ADD [Alias]     NVARCHAR (64)      NULL
GO
CREATE UNIQUE NONCLUSTERED INDEX [IX_DistributionList_Alias]
    ON [msg].[DistributionList]([Alias] ASC) WHERE ([Alias] IS NOT NULL);
GO

Added support to persist communication preferences for users.

Add Message type in template table for linking templates to message types and eventually preferences.

ALTER TABLE [#schema#].[Template]
	ADD [MessageTypeId]  UNIQUEIDENTIFIER  
ALTER TABLE [#schema#].[Template] WITH NOCHECK
    ADD CONSTRAINT [FK_Template_MessageType_MessageTypeId] FOREIGN KEY ([MessageTypeId]) REFERENCES [msg].[MessageType] ([Id]);
ALTER TABLE [#schema#].[Template] WITH CHECK CHECK CONSTRAINT [FK_Template_MessageType_MessageTypeId];

The following migration script is needed to add the ContactPreference and ContactCommunicationOption tables.

CREATE TABLE [#schema#].[ContactPreference] (
    [Id]                    UNIQUEIDENTIFIER   NOT NULL,
    [RecipientId]           NVARCHAR (64)      NOT NULL,
    [Locale]                NVARCHAR (16)      NULL,
    [ConsentCommercial]     BIT                NOT NULL,
    [ConsentCommercialDate] DATETIMEOFFSET (7) NULL,
    [DefaultChannels]       TINYINT            NULL,
    [UpdatedAt]             DATETIMEOFFSET (7) NULL,
    CONSTRAINT [PK_ContactPreference] PRIMARY KEY CLUSTERED ([Id] ASC)
);
GO

CREATE UNIQUE NONCLUSTERED INDEX [IX_ContactPreference_RecipientId]
    ON [#schema#].[ContactPreference]([RecipientId] ASC);
GO

CREATE TABLE [#schema#].[ContactCommunicationOption] (
    [ContactPreferenceId] UNIQUEIDENTIFIER   NOT NULL,
    [MessageTypeId]       UNIQUEIDENTIFIER   NOT NULL,
    [Channels]            TINYINT            DEFAULT (CONVERT([tinyint],(0))) NOT NULL,
    [UpdatedAt]           DATETIMEOFFSET (7) NULL,
    CONSTRAINT [PK_ContactCommunicationOption] PRIMARY KEY CLUSTERED ([ContactPreferenceId] ASC, [MessageTypeId] ASC),
    CONSTRAINT [FK_ContactCommunicationOption_ContactPreference_ContactPreferenceId] FOREIGN KEY ([ContactPreferenceId]) REFERENCES [#schema#].[ContactPreference] ([Id]) ON DELETE CASCADE,
    CONSTRAINT [FK_ContactCommunicationOption_MessageType_MessageTypeId] FOREIGN KEY ([MessageTypeId]) REFERENCES [#schema#].[MessageType] ([Id]) ON DELETE CASCADE
);
GO

CREATE NONCLUSTERED INDEX [IX_ContactCommunicationOption_MessageTypeId]
    ON [#schema#].[ContactCommunicationOption]([MessageTypeId] ASC);
GO

In case that you have used communication preferences in your project, you need to run the following migration script to populate the CommunicationPreference and CommunicationPreferenceMessageType tables.


CREATE TABLE #TempContactPreference
(
    [RecipientId] nvarchar(64) NOT NULL,
    [Locale] nvarchar(16) NULL,
    [ConsentCommercial] bit NOT NULL DEFAULT(0),
    [DefaultChannels] TINYINT NULL
);

INSERT INTO #TempContactPreference
    ([RecipientId]
    ,[Locale]
    ,[ConsentCommercial]
    ,[DefaultChannels])
SELECT RecipientId, Locale, ConsentCommercial,CommunicationPreferences
FROM (
    SELECT RecipientId, Locale, ConsentCommercial,CommunicationPreferences,
        row_number() over (partition by RecipientId order by [UpdatedAt] desc) as rn
    FROM [msg].[Contact]
    WHERE NULLIF(RecipientId,'') IS NOT NULL
) t
WHERE rn = 1 


INSERT INTO [msg].[ContactPreference]
    ([Id]
    ,[RecipientId]
    ,[Locale]
    ,[ConsentCommercial])
SELECT NEWID(),  RecipientId, Locale, ConsentCommercial
FROM  #TempContactPreference AS CT
WHERE NOT EXISTS (SELECT TOP 1 1 FROM  [msg].[ContactPreference] WHERE RecipientId = ct.RecipientId)


DROP TABLE #TempContactPreference    

The last step is to drop the prefernece columns from the Contact table.

ALTER TABLE [#schema#].[Contact] DROP COLUMN [CommunicationPreferences], COLUMN [ConsentCommercial], COLUMN [Locale];

[8.1.0] - 2025-06-15

For performance reasons, the following indexes were added to the media schema in cases db.


CREATE NONCLUSTERED INDEX [IX_MediaFile_FolderId]
    ON [media].[MediaFile]([FolderId] ASC);
GO

CREATE NONCLUSTERED INDEX [IX_MediaFile_Name]
    ON [media].[MediaFile]([Name] ASC);
GO

CREATE UNIQUE NONCLUSTERED INDEX [IX_MediaFile_Path]
    ON [media].[MediaFile]([Path] ASC);
GO

CREATE NONCLUSTERED INDEX [IX_MediaFolder_Name]
    ON [media].[MediaFolder]([Name] ASC);
GO

CREATE NONCLUSTERED INDEX [IX_MediaFolder_ParentId]
    ON [media].[MediaFolder]([ParentId] ASC);
GO

CREATE UNIQUE NONCLUSTERED INDEX [IX_MediaFolder_Path]
    ON [media].[MediaFolder]([Path] ASC);
GO

For performance reasons, the following indexes were added to the messaging schema in cases db.


CREATE NONCLUSTERED INDEX [IX_Campaign_AttachmentId]
    ON [#Schema#].[Campaign]([AttachmentId] ASC);
GO

CREATE NONCLUSTERED INDEX [IX_Campaign_DistributionListId]
    ON [#Schema#].[Campaign]([DistributionListId] ASC);
GO

CREATE NONCLUSTERED INDEX [IX_Campaign_TypeId]
    ON [#Schema#].[Campaign]([TypeId] ASC);
GO


CREATE UNIQUE NONCLUSTERED INDEX [IX_Contact_RecipientId]
    ON [#Schema#].[Contact]([RecipientId] ASC) WHERE ([RecipientId] IS NOT NULL);
GO


CREATE UNIQUE NONCLUSTERED INDEX [IX_Contact_RecipientId]
    ON [#Schema#].[Contact]([RecipientId] ASC) WHERE ([RecipientId] IS NOT NULL);
GO

CREATE UNIQUE NONCLUSTERED INDEX [IX_DistributionList_Name]
    ON [#Schema#].[DistributionList]([Name] ASC);
GO

CREATE NONCLUSTERED INDEX [IX_DistributionListContact_DistributionListId]
    ON [#Schema#].[DistributionListContact]([DistributionListId] ASC);
GO


CREATE NONCLUSTERED INDEX [IX_Hit_CampaignId]
    ON [#Schema#].[Hit]([CampaignId] ASC);
GO

CREATE NONCLUSTERED INDEX [IX_Message_CampaignId]
    ON [#Schema#].[Message]([CampaignId] ASC);
GO

CREATE NONCLUSTERED INDEX [IX_Message_RecipientId]
    ON [#Schema#].[Message]([RecipientId] ASC);
GO

CREATE NONCLUSTERED INDEX [IX_MessageSender_Sender]
    ON [#Schema#].[MessageSender]([Sender] ASC);
GO
CREATE UNIQUE NONCLUSTERED INDEX [IX_MessageType_Alias]
    ON [#Schema#].[MessageType]([Alias] ASC) WHERE ([Alias] IS NOT NULL);
GO

CREATE UNIQUE NONCLUSTERED INDEX [IX_MessageType_Name]
    ON [#Schema#].[MessageType]([Name] ASC);
GO


CREATE UNIQUE NONCLUSTERED INDEX [IX_Template_Alias]
    ON [#Schema#].[Template]([Alias] ASC) WHERE ([Alias] IS NOT NULL);
GO

CREATE UNIQUE NONCLUSTERED INDEX [IX_Template_Name]
    ON [#Schema#].[Template]([Name] ASC);
GO


[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 is compatible.  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.18.0 29 10/1/2025
8.17.3 79 9/30/2025
8.17.2 219 9/25/2025
8.17.1 195 9/25/2025
8.17.0 223 9/24/2025
8.16.1 257 9/22/2025
8.16.0 254 9/19/2025
8.15.0 371 9/16/2025
8.14.3 156 9/12/2025
8.14.2 197 9/11/2025
8.14.1 180 9/10/2025
8.14.0 185 9/10/2025
8.13.0 232 9/1/2025
8.12.0 212 8/29/2025
8.11.0 228 8/27/2025
8.10.0 282 8/5/2025
8.9.0 150 7/30/2025
8.8.0 131 7/29/2025
8.7.0 581 7/23/2025
8.6.0 561 7/23/2025
8.5.0 555 7/21/2025
8.4.0 210 7/17/2025
8.3.0 204 7/17/2025
8.2.0 532 6/26/2025
8.1.0 189 6/20/2025
8.1.0-rc04 221 6/18/2025
8.1.0-rc03 286 6/13/2025
8.1.0-rc02 287 6/13/2025
8.1.0-rc01 342 6/11/2025
8.0.1 432 6/5/2025
8.0.0 234 6/3/2025
8.0.0-rc32 213 5/27/2025
8.0.0-rc31 254 5/22/2025
8.0.0-rc30 218 5/20/2025
8.0.0-rc29 175 5/9/2025
8.0.0-rc28 254 5/7/2025
8.0.0-rc27 223 4/30/2025
8.0.0-rc26 230 4/24/2025
8.0.0-rc25 340 4/2/2025
8.0.0-rc24 214 3/27/2025
8.0.0-rc23 238 3/19/2025
8.0.0-rc22 360 3/6/2025
8.0.0-rc21 301 3/5/2025
8.0.0-rc20 179 2/27/2025
8.0.0-rc19 213 2/21/2025
8.0.0-rc18 180 2/20/2025
8.0.0-rc17 148 2/17/2025
8.0.0-rc16 186 2/11/2025
8.0.0-rc15 331 2/3/2025
8.0.0-rc14 177 1/30/2025
8.0.0-rc13 181 1/23/2025
8.0.0-rc12 147 1/20/2025
8.0.0-rc11 152 1/13/2025
8.0.0-rc10 186 1/3/2025
8.0.0-rc09 207 12/10/2024
8.0.0-rc08 159 12/6/2024
8.0.0-rc07 169 12/6/2024
8.0.0-rc06 166 12/6/2024
8.0.0-rc05 171 12/6/2024
8.0.0-rc04 153 12/4/2024
8.0.0-rc03 145 12/2/2024
8.0.0-rc02 127 12/1/2024
8.0.0-rc01 89 11/29/2024
7.47.0 650 11/28/2024
7.46.0 200 11/27/2024
7.45.0 209 11/26/2024
7.44.0 218 11/26/2024
7.43.4 209 11/25/2024
7.43.3 206 11/22/2024
7.43.2 231 11/22/2024
7.43.1 216 11/22/2024
7.43.0 201 11/22/2024
7.42.0 223 11/21/2024
7.41.0 223 11/15/2024
7.40.0 224 11/14/2024
7.39.0 212 11/6/2024
7.38.0 211 11/5/2024
7.37.0 210 11/1/2024
7.36.0 208 10/30/2024
7.35.0 226 10/30/2024
7.34.0 2,705 10/24/2024
7.33.0 225 10/23/2024
7.32.0 249 10/18/2024
7.31.0 278 10/3/2024
7.30.0 241 9/25/2024
7.29.0 359 9/10/2024
7.28.0 455 7/26/2024
7.27.0 202 7/25/2024
7.26.0 182 7/24/2024
7.25.0 449 7/12/2024
7.24.0 271 6/26/2024
7.23.1 260 6/26/2024
7.23.0 261 6/3/2024
7.22.5 588 5/13/2024
7.22.4 292 4/2/2024
7.22.3 281 3/21/2024
7.22.2 266 3/21/2024
7.22.1 271 3/21/2024
7.22.0 514 3/14/2024
7.21.0 275 3/12/2024
7.20.1 270 2/15/2024
7.20.0 371 2/8/2024
7.19.0 259 1/29/2024
7.18.0 328 1/9/2024
7.17.0 299 1/5/2024
7.16.0 269 1/4/2024
7.15.0 266 1/3/2024
7.14.0 352 12/15/2023
7.13.0 286 12/12/2023
7.12.0 310 12/11/2023
7.11.1 305 11/29/2023
7.11.0 263 11/27/2023
7.10.0 266 11/24/2023
7.8.0 256 11/17/2023
7.7.0 289 11/1/2023
7.6.4 282 10/20/2023
7.6.3 287 10/13/2023
7.6.2 290 10/12/2023
7.6.1 320 10/11/2023
7.6.1-beta-01 153 10/11/2023
7.6.0 307 10/10/2023
7.5.1 292 10/10/2023
7.5.0 303 10/5/2023
7.4.4 279 10/4/2023
7.4.3 308 9/28/2023
7.4.2 313 9/27/2023
7.4.1 295 9/22/2023
7.4.0 267 9/19/2023
7.3.24 290 9/15/2023
7.3.23 299 9/14/2023
7.3.22 272 9/12/2023
7.3.21 305 9/8/2023
7.3.20 285 9/6/2023
7.3.19 264 9/6/2023
7.3.18 289 9/5/2023
7.3.17 4,160 8/29/2023
7.3.16 310 8/24/2023
7.3.15 321 8/24/2023
7.3.14 279 8/23/2023
7.3.13 302 8/22/2023
7.3.12 322 8/14/2023
7.3.11 335 8/10/2023
7.3.10 323 8/10/2023
7.3.9 335 8/10/2023
7.3.8 346 8/9/2023
7.3.7 325 8/2/2023
7.3.6 344 7/24/2023
7.3.5 468 7/10/2023
7.3.4 328 7/10/2023
7.3.3 358 7/6/2023
7.3.2 345 7/5/2023
7.3.1 400 6/26/2023
7.2.0 428 5/29/2023
7.1.6 368 5/9/2023
7.1.5 347 5/8/2023
7.1.4 388 5/2/2023
7.1.3 415 4/24/2023
7.1.2 436 4/19/2023
7.1.1 436 4/19/2023
7.1.0 464 4/13/2023
7.0.9 445 4/12/2023
7.0.8 481 4/11/2023
7.0.7 456 4/6/2023
7.0.6 486 4/2/2023
7.0.5 493 3/30/2023
7.0.4 520 3/29/2023
7.0.3 476 3/27/2023
7.0.2 535 3/23/2023
7.0.1 391 3/23/2023
7.0.0 507 3/23/2023
6.12.3 563 3/22/2023
6.12.1 492 3/20/2023
6.12.0 548 3/17/2023
6.11.1 528 3/6/2023
6.11.0 515 3/3/2023
6.10.2 614 2/16/2023
6.10.1 606 2/15/2023
6.10.0 617 2/8/2023
6.9.0 595 2/6/2023
6.8.0 649 2/3/2023
6.7.0 613 2/2/2023
6.6.0 654 1/30/2023
6.5.0 637 1/24/2023
6.4.10 846 1/20/2023
6.4.9 603 1/20/2023
6.4.5 820 1/19/2023
6.4.0 853 12/22/2022
6.2.1 1,020 11/16/2022
6.2.0 853 11/15/2022
6.1.14 996 11/14/2022
6.1.13 1,015 11/11/2022
6.1.12 1,233 10/3/2022
6.1.11 1,266 9/30/2022
6.1.10 1,281 9/23/2022
6.1.9 1,278 9/13/2022
6.1.8 1,331 9/1/2022
6.1.7 1,301 9/1/2022
6.1.6 1,648 9/1/2022
6.1.5 1,357 8/25/2022
6.1.4 1,388 8/23/2022
6.1.3 1,500 8/12/2022
6.1.0-beta-08 471 4/28/2022
6.1.0-beta-07 397 4/27/2022
6.1.0-beta-06 394 4/27/2022
6.1.0-beta-05 407 4/21/2022
6.1.0-beta-04 394 4/21/2022
6.1.0-beta-03 401 4/19/2022
6.1.0-beta-02 403 4/18/2022
6.1.0-beta-01 273 4/18/2022