6989a98d75
- Arkitektur: docs/auth/passwordless-architecture.md - Backend: iom/quixzoom-auth-service/ (FastAPI + Redis) - Webb: quixzoom-market-pages/se/login/ (QR-kod + polling) - App: iom/quixzoom-app/src/features/auth/ (push + deep links) Flöde: QR-kod → app-godkännande → webb-inloggad
22 lines
756 B
JavaScript
22 lines
756 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.AggregateError = void 0;
|
|
class AggregateError extends Error {
|
|
constructor(errors) {
|
|
super();
|
|
this.errors = errors;
|
|
this.name = 'AggregateError';
|
|
}
|
|
toString() {
|
|
const message = `AggregateError of:\n${this.errors
|
|
.map((error) => error === this
|
|
? '[Circular AggregateError]'
|
|
: error instanceof AggregateError
|
|
? String(error).replace(/\n$/, '').replace(/^/gm, ' ')
|
|
: String(error).replace(/^/gm, ' ').substring(2))
|
|
.join('\n')}\n`;
|
|
return message;
|
|
}
|
|
}
|
|
exports.AggregateError = AggregateError;
|
|
//# sourceMappingURL=AggregateError.js.map
|