From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- dom/webidl/IdentityCredential.webidl | 93 ++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 dom/webidl/IdentityCredential.webidl (limited to 'dom/webidl/IdentityCredential.webidl') diff --git a/dom/webidl/IdentityCredential.webidl b/dom/webidl/IdentityCredential.webidl new file mode 100644 index 0000000000..801b2dc0f8 --- /dev/null +++ b/dom/webidl/IdentityCredential.webidl @@ -0,0 +1,93 @@ +/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. + * + * The origin of this IDL file is + * https://fedidcg.github.io/FedCM + */ + + +[Exposed=Window, SecureContext, + Pref="dom.security.credentialmanagement.identity.enabled"] +interface IdentityCredential : Credential { + readonly attribute USVString? token; + [Throws] + static Promise logoutRPs(sequence logoutRequests); +}; + +dictionary IdentityCredentialRequestOptions { + sequence providers; +}; + +[GenerateConversionToJS] +dictionary IdentityProviderConfig { + required UTF8String configURL; + required USVString clientId; + USVString nonce; +}; + +// https://fedidcg.github.io/FedCM/#dictdef-identityproviderwellknown +[GenerateInit] +dictionary IdentityProviderWellKnown { + required sequence provider_urls; +}; + +// https://fedidcg.github.io/FedCM/#dictdef-identityprovidericon +dictionary IdentityProviderIcon { + required USVString url; + unsigned long size; +}; + +// https://fedidcg.github.io/FedCM/#dictdef-identityproviderbranding +dictionary IdentityProviderBranding { + USVString background_color; + USVString color; + sequence icons; + USVString name; +}; + +// https://fedidcg.github.io/FedCM/#dictdef-identityproviderapiconfig +[GenerateInit, GenerateConversionToJS] +dictionary IdentityProviderAPIConfig { + required UTF8String accounts_endpoint; + required UTF8String client_metadata_endpoint; + required UTF8String id_assertion_endpoint; + IdentityProviderBranding branding; +}; + + +// https://fedidcg.github.io/FedCM/#dictdef-identityprovideraccount +dictionary IdentityProviderAccount { + required USVString id; + required USVString name; + required USVString email; + USVString given_name; + USVString picture; + sequence approved_clients; +}; + +// https://fedidcg.github.io/FedCM/#dictdef-identityprovideraccountlist +[GenerateInit, GenerateConversionToJS] +dictionary IdentityProviderAccountList { + sequence accounts; +}; + +// https://fedidcg.github.io/FedCM/#dictdef-identityproviderclientmetadata +[GenerateInit, GenerateConversionToJS] +dictionary IdentityProviderClientMetadata { + USVString privacy_policy_url; + USVString terms_of_service_url; +}; + +// https://fedidcg.github.io/FedCM/#dictdef-identityprovidertoken +[GenerateInit] +dictionary IdentityProviderToken { + required USVString token; +}; + +// https://fedidcg.github.io/FedCM/#dictdef-identitycredentiallogoutrpsrequest +dictionary IdentityCredentialLogoutRPsRequest { + required UTF8String url; + required UTF8String accountId; +}; -- cgit v1.2.3