/** * Available scopes for the oauth2 OAuth 2.0 scheme (authorizationCode flow). * * @remarks * OAuth2 Authorization Code flow for user authentication */ export type OAuth2Scope = /** * Allows managing assets, including reading, updating, and deleting. */ "asset_management" /** * Allows uploading new assets. */ | "upload"; //# sourceMappingURL=oauth2scopes.d.ts.map