From c268dd3a1e6488ae0d7ca47806666915125a7d6d Mon Sep 17 00:00:00 2001 From: Jacob Marks <100745682+J8k3@users.noreply.github.com> Date: Sat, 16 May 2026 23:02:51 -0400 Subject: [PATCH] Capitalise display name: "Parse Futurex Excrypt Command" --- src/core/operations/ParseFuturexExcryptCommand.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/operations/ParseFuturexExcryptCommand.mjs b/src/core/operations/ParseFuturexExcryptCommand.mjs index d6d1c228..e888e3c4 100644 --- a/src/core/operations/ParseFuturexExcryptCommand.mjs +++ b/src/core/operations/ParseFuturexExcryptCommand.mjs @@ -100,7 +100,7 @@ function parseField(field) { } /** - * Parse Futurex Excrypt command operation. + * Parse Futurex Excrypt Command operation. */ class ParseFuturexExcryptCommand extends Operation { @@ -110,7 +110,7 @@ class ParseFuturexExcryptCommand extends Operation { constructor() { super(); - this.name = "Parse Futurex Excrypt command"; + this.name = "Parse Futurex Excrypt Command"; this.module = "Payment"; this.description = "Paste a Futurex Excrypt command or response into the input field as text.

General syntax: Excrypt messages are enclosed by opening and closing delimiters, typically [ and ]. Inside the message, fields are semicolon-delimited. Each field is a tag/value pair, for example AOECHO where AO is the tag and ECHO is the value. The command code is commonly carried in the AO field.

Input: raw Excrypt message text.

This operation parses the visible Excrypt message syntax, extracts semicolon-delimited fields, splits fields into tag/value pairs, and resolves the AO command code to a known payment command name when available from the Futurex payment integration guide."; this.inlineHelp = "Syntax: [tagvalue;tagvalue;...] where fields are separated by semicolons and tags are typically two characters such as AO.
Input: raw Futurex Excrypt message text.";