summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/interfaces/secure-payment-confirmation.idl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/interfaces/secure-payment-confirmation.idl
parentInitial commit. (diff)
downloadthunderbird-upstream.tar.xz
thunderbird-upstream.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--testing/web-platform/tests/interfaces/secure-payment-confirmation.idl52
1 files changed, 52 insertions, 0 deletions
diff --git a/testing/web-platform/tests/interfaces/secure-payment-confirmation.idl b/testing/web-platform/tests/interfaces/secure-payment-confirmation.idl
new file mode 100644
index 0000000000..08ec8065c5
--- /dev/null
+++ b/testing/web-platform/tests/interfaces/secure-payment-confirmation.idl
@@ -0,0 +1,52 @@
+// GENERATED CONTENT - DO NOT EDIT
+// Content was automatically extracted by Reffy into webref
+// (https://github.com/w3c/webref)
+// Source: Secure Payment Confirmation (https://w3c.github.io/secure-payment-confirmation/)
+
+dictionary SecurePaymentConfirmationRequest {
+ required BufferSource challenge;
+ required USVString rpId;
+ required sequence<BufferSource> credentialIds;
+ required PaymentCredentialInstrument instrument;
+ unsigned long timeout;
+ USVString payeeName;
+ USVString payeeOrigin;
+ AuthenticationExtensionsClientInputs extensions;
+ sequence<USVString> locale;
+ boolean showOptOut;
+};
+
+partial dictionary AuthenticationExtensionsClientInputs {
+ AuthenticationExtensionsPaymentInputs payment;
+};
+
+dictionary AuthenticationExtensionsPaymentInputs {
+ boolean isPayment;
+
+ // Only used for authentication.
+ USVString rpId;
+ USVString topOrigin;
+ USVString payeeName;
+ USVString payeeOrigin;
+ PaymentCurrencyAmount total;
+ PaymentCredentialInstrument instrument;
+};
+
+dictionary CollectedClientPaymentData : CollectedClientData {
+ required CollectedClientAdditionalPaymentData payment;
+};
+
+dictionary CollectedClientAdditionalPaymentData {
+ required USVString rpId;
+ required USVString topOrigin;
+ USVString payeeName;
+ USVString payeeOrigin;
+ required PaymentCurrencyAmount total;
+ required PaymentCredentialInstrument instrument;
+};
+
+dictionary PaymentCredentialInstrument {
+ required USVString displayName;
+ required USVString icon;
+ boolean iconMustBeShown = true;
+};