654b297e2e
- Connexion API via proxy Angular (résolution CORS, base path /api) - Import CSS ng-zorro global pour les modales et composants - Filtres Camion/Show câblés sur l'affichage de la grille - Camions affichés via TrucksService (linkés au show du même créneau) - Panneau de détails : spectacles + camions du jour sélectionné - Modale de création de spectacle stylisée avec fond et centrage - Positionnement précis des events à la minute dans leur créneau - Auto-scroll vers l'heure courante au chargement - Ligne "maintenant" sur la colonne du jour actuel - Régénération des services OpenAPI (nouveaux noms de types) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
651 B
TypeScript
12 lines
651 B
TypeScript
import { RFC3161Timestamp } from '@sigstore/core';
|
|
import type { TransparencyLogEntry } from '@sigstore/bundle';
|
|
import type { CertAuthority, TLogAuthority } from '../trust';
|
|
export type TimestampType = 'transparency-log' | 'timestamp-authority';
|
|
export type TimestampVerificationResult = {
|
|
type: TimestampType;
|
|
logID: Buffer;
|
|
timestamp: Date;
|
|
};
|
|
export declare function verifyTSATimestamp(timestamp: RFC3161Timestamp, data: Buffer, timestampAuthorities: CertAuthority[]): TimestampVerificationResult;
|
|
export declare function verifyTLogTimestamp(entry: TransparencyLogEntry, tlogAuthorities: TLogAuthority[]): TimestampVerificationResult;
|