Some checks failed
Main Confidence / confidence (push) Failing after 45s
## Summary - introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries - apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces - expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests ## Validation - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions) - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions) Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #253
28 lines
1.2 KiB
Plaintext
28 lines
1.2 KiB
Plaintext
import { MonoTypeOperatorFunction, ObservableInput } from '../types';
|
|
/**
|
|
* The {@link retry} operator configuration object. `retry` either accepts a `number`
|
|
* or an object described by this interface.
|
|
*/
|
|
export interface RetryConfig {
|
|
/**
|
|
* The maximum number of times to retry. If `count` is omitted, `retry` will try to
|
|
* resubscribe on errors infinite number of times.
|
|
*/
|
|
count?: number;
|
|
/**
|
|
* The number of milliseconds to delay before retrying, OR a function to
|
|
* return a notifier for delaying. If a function is given, that function should
|
|
* return a notifier that, when it emits will retry the source. If the notifier
|
|
* completes _without_ emitting, the resulting observable will complete without error,
|
|
* if the notifier errors, the error will be pushed to the result.
|
|
*/
|
|
delay?: number | ((error: any, retryCount: number) => ObservableInput<any>);
|
|
/**
|
|
* Whether or not to reset the retry counter when the retried subscription
|
|
* emits its first value.
|
|
*/
|
|
resetOnSuccess?: boolean;
|
|
}
|
|
export declare function retry<T>(count?: number): MonoTypeOperatorFunction<T>;
|
|
export declare function retry<T>(config: RetryConfig): MonoTypeOperatorFunction<T>;
|
|
//# sourceMappingURL=retry.d.ts.map |