taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit c365b832287961e6bc71b28b17b3e38020e949ab
parent dde3654377eb6c1620eac19ff348e2b5f4e14b1e
Author: Florian Dold <florian@dold.me>
Date:   Wed, 16 Apr 2025 18:22:34 +0200

forms: use TOPS field name as per spec

Diffstat:
Mpackages/taler-util/src/taler-form-attributes.ts | 2+-
Mpackages/web-util/src/forms/gana/VQF_902_11_customer.ts | 2+-
Mpackages/web-util/src/forms/gana/VQF_902_11_officer.ts | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/packages/taler-util/src/taler-form-attributes.ts b/packages/taler-util/src/taler-form-attributes.ts @@ -427,7 +427,7 @@ export const TalerFormAttributes = { * * GANA Type: Boolean */ - CONTROLLING_ENTITY_THIRD_PERSON: "CONTROLLING_ENTITY_THIRD_PERSON" as const, + THIRD_PARTY_OWNERSHIP: "THIRD_PARTY_OWNERSHIP" as const, /** * Description: Description of the circumstances/transactions, which triggered the special clarifications * diff --git a/packages/web-util/src/forms/gana/VQF_902_11_customer.ts b/packages/web-util/src/forms/gana/VQF_902_11_customer.ts @@ -94,7 +94,7 @@ export function VQF_902_11_customer( title: i18n.str`Fiduciary holding assets`, fields: [ { - id: TalerFormAttributes.CONTROLLING_ENTITY_THIRD_PERSON, + id: TalerFormAttributes.THIRD_PARTY_OWNERSHIP, label: i18n.str`Is a third person the beneficial owner of the assets held in the account/securities account?`, required: true, type: "choiceHorizontal", diff --git a/packages/web-util/src/forms/gana/VQF_902_11_officer.ts b/packages/web-util/src/forms/gana/VQF_902_11_officer.ts @@ -92,7 +92,7 @@ export function VQF_902_11_officer( title: i18n.str`Fiduciary holding assets`, fields: [ { - id: TalerFormAttributes.CONTROLLING_ENTITY_THIRD_PERSON, + id: TalerFormAttributes.THIRD_PARTY_OWNERSHIP, label: i18n.str`Is a third person the beneficial owner of the assets held in the account/securities account?`, required: true, type: "choiceHorizontal",