release: @marketplaces/auth 0.1.0 (built from main)

This commit is contained in:
sdarbinyan
2026-08-18 01:55:26 +04:00
commit 93f99cc7b1
44 changed files with 1601 additions and 0 deletions

17
dist/ed25519/auth-api.service.d.ts vendored Normal file
View File

@@ -0,0 +1,17 @@
import { Observable } from 'rxjs';
import { AuthChallenge, AuthTokenPair, RefreshTokenRequest, VerifySignatureRequest } from './models/auth-api.model';
/**
* Thin HTTP client for the Ed25519 admin auth endpoints. These endpoints may
* not exist on every backend yet - calling them before the backend ships
* 404s or connection-errors, which AuthService maps to the
* `backend-unavailable` error screen. No mock/fake responses are fabricated
* here; this is real HttpClient wiring against the real contract.
*/
export declare class AuthApiService {
private readonly http;
private readonly baseUrl;
requestChallenge(): Observable<AuthChallenge>;
verifySignature(request: VerifySignatureRequest): Observable<AuthTokenPair>;
refresh(request: RefreshTokenRequest): Observable<AuthTokenPair>;
logout(refreshToken: string): Observable<void>;
}