basic support for Shared Access Accounts

This commit is contained in:
Hazelnoot 2025-06-21 00:43:17 -04:00
parent 7715f36a99
commit fa5a46f379
22 changed files with 789 additions and 32 deletions

48
locales/index.d.ts vendored
View file

@ -13459,6 +13459,54 @@ export interface Locale extends ILocale {
* Hide ads
*/
"hideAds": string;
/**
* Apps using this token will only have access to the functions listed below.
*/
"permissionsDescription": string;
/**
* Shared account
*/
"sharedAccount": string;
/**
* Shared access
*/
"sharedAccess": string;
/**
* Any accounts listed here will be granted access to the token and may use it to access this account.
*/
"sharedAccessDescription": string;
/**
* Share access
*/
"addGrantee": string;
/**
* Remove access
*/
"removeGrantee": string;
/**
* Login with shared access
*/
"loginWithSharedAccess": string;
/**
* Login with granted access to a shared account
*/
"loginWithSharedAccessDescription": string;
/**
* You have not been granted shared access to any accounts
*/
"noSharedAccess": string;
/**
* Expand
*/
"expand": string;
/**
* Collapse
*/
"collapse": string;
/**
* Permissions
*/
"permissions": string;
}
declare const locales: {
[lang: string]: Locale;