Skip to content

Commit bdf770a

Browse files
committed
Merge branch 'release/moov-1.8.103'
2 parents 2d00048 + ee52a3c commit bdf770a

File tree

5 files changed

+21
-14
lines changed

5 files changed

+21
-14
lines changed

src/NoFrixion.MoneyMoov/Enums/RuleEventTypesEnum.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,18 @@ public enum RuleEventTypesEnum
4949
/// </summary>
5050
ExecutionError,
5151

52+
/// <summary>
53+
/// Indicates that payee verification has been initiated for a rule destination.
54+
/// </summary>
55+
PayeeVerificationInitiated = 7,
5256

57+
/// <summary>
58+
/// Indicates that payee verification has been completed successfully for a rule destination.
59+
/// </summary>
60+
PayeeVerificationComplete = 8,
61+
62+
/// <summary>
63+
/// Indicates that payee verification has failed for a rule destination.
64+
/// </summary>
65+
PayeeVerificationFailed = 9
5366
}

src/NoFrixion.MoneyMoov/Models/Account/PaymentAccountCreate.cs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,10 @@ public class PaymentAccountCreate
5858
/// </summary>
5959
public AccountTypeEnum? AccountType { get; set; }
6060

61-
/// <summary>
62-
/// If creating a Tribe account type, then this is the tribe account id
63-
/// </summary>
64-
public string? TribeAccountId { get; set; }
65-
6661
/// <summary>
6762
/// For EUR accounts this can be set to the ID of another account that will act as the
68-
/// backing phyiscal account. The new account will then act as a Virtual account, able to
69-
/// receive funds but the transactions will be recorded aginst the backing physical account.
63+
/// backing physical account. The new account will then act as a Virtual account, able to
64+
/// receive funds but the transactions will be recorded against the backing physical account.
7065
/// </summary>
7166
public Guid? PhysicalAccountID { get; set; }
7267

@@ -98,7 +93,6 @@ public Dictionary<string, string> ToDictionary()
9893
{ nameof(AccountName), AccountName ?? string.Empty },
9994
{ nameof(SupplierPhysicalAccountID), SupplierPhysicalAccountID.ToString() },
10095
{ nameof(AccountType), AccountType?.ToString() ?? string.Empty },
101-
{ nameof(TribeAccountId), TribeAccountId ?? string.Empty },
10296
{ nameof(PhysicalAccountID), PhysicalAccountID?.ToString() ?? string.Empty },
10397
{nameof(IsTrustAccount), IsTrustAccount.ToString()}
10498
};

src/NoFrixion.MoneyMoov/Models/Payouts/PayoutCreate.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ public Guid? BeneficiaryID
213213
public Guid? TopupPayrunID { get; set; }
214214

215215
/// <summary>
216-
/// Optional field to indicate the payment rail to use for the payout. Currrently only
216+
/// Optional field to indicate the payment rail to use for the payout. Currently only
217217
/// supports choosing between SEPA-CT and SEPA-INST for EUR payments. If not set, for a EUR
218218
/// payment, the default behaviour is to attempt SEPA-INST and fallback to SEPA-CT if rejected.
219219
/// </summary>
@@ -243,7 +243,7 @@ public Guid? BeneficiaryID
243243
public decimal? FxDestinationAmount { get; set; }
244244

245245
/// <summary>
246-
/// For a multi-currency payout this indicates how the Amount and FxDestinaationAmount are treated.
246+
/// For a multi-currency payout this indicates how the Amount and FxDestinationAmount are treated.
247247
/// If true the FxDestinationAmount is authoritative and the Amount is set based on the FxRate. If false then the Amount is authoritative
248248
/// and the FxDestinationAmount is set based on the Amount and FxRate.
249249
/// </summary>

src/NoFrixion.MoneyMoov/Models/Payouts/PayoutUpdate.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ public Guid? BeneficiaryID
195195
}
196196

197197
/// <summary>
198-
/// Optional field to indicate the payment rail to use for the payout. Currrently only
198+
/// Optional field to indicate the payment rail to use for the payout. Currently only
199199
/// supports choosing between SEPA-CT and SEPA-INST for EUR payments. If not set, for a EUR
200200
/// payment, the default behaviour is to attempt SEPA-INST and fallback to SEPA-CT if rejected.
201201
/// </summary>
@@ -219,7 +219,7 @@ public Guid? BeneficiaryID
219219
public decimal? FxDestinationAmount { get; set; }
220220

221221
/// <summary>
222-
/// For a multi-currency payout this indicates how the Amount and FxDestinaationAmount are treated.
222+
/// For a multi-currency payout this indicates how the Amount and FxDestinationAmount are treated.
223223
/// If true the FxDestinationAmount is authoritative and the Amount is set based on the FxRate. If false then the Amount is authoritative
224224
/// and the FxDestinationAmount is set based on the Amount and FxRate.
225225
/// </summary>

src/NoFrixion.MoneyMoov/NoFrixion.MoneyMoov.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<AssemblyVersion>1.8.101.0</AssemblyVersion>
8-
<FileVersion>1.8.101.0</FileVersion>
7+
<AssemblyVersion>1.8.103.0</AssemblyVersion>
8+
<FileVersion>1.8.103.0</FileVersion>
99
<GenerateDocumentationFile>True</GenerateDocumentationFile>
1010
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
1111
<NoWarn>$(NoWarn);1591;NU1902;NU1903;</NoWarn>

0 commit comments

Comments
 (0)