The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Typhoon, reference main (1732c7), with Swift 6.1 for Wasm on 1 May 2026 04:59:12 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/space-code/typhoon.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/space-code/typhoon
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 1732c77 chore(deps): update jdx/mise-action action to v4 (#89)
Cloned https://github.com/space-code/typhoon.git
Revision (git rev-parse @):
1732c77fd323938e06143b59582b79679a72ddb0
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/space-code/typhoon.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/space-code/typhoon.git
https://github.com/space-code/typhoon.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:276d66a16377d3ee059b2e3429cbc1154d9f01e42871e5d702fd5d8b9044d93d
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/18] Emitting module Typhoon
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:8:11: error: cannot find type 'DispatchTimeInterval' in scope
 6 | import Foundation
 7 |
 8 | extension DispatchTimeInterval {
   |           `- error: cannot find type 'DispatchTimeInterval' in scope
 9 |     /// Converts a `DispatchTimeInterval` value into nanoseconds represented as `UInt64`.
10 |     ///
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:60:35: error: cannot find type 'DispatchTimeInterval' in scope
 58 |
 59 |     /// Optional maximum total duration allowed for all retry attempts.
 60 |     private let maxTotalDuration: DispatchTimeInterval?
    |                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |
 62 |     /// An optional logger used to record retry attempts and related events.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:76:27: error: cannot find type 'DispatchTimeInterval' in scope
 74 |     public init(
 75 |         strategy: RetryPolicyStrategy,
 76 |         maxTotalDuration: DispatchTimeInterval? = nil,
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 77 |         logger: ILogger? = nil
 78 |     ) {
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
 18 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 19 |     ///   ``constant(retry:duration:)`` with Swift's `Duration` type instead.
 20 |     case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 21 |
 22 |     /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
 28 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 29 |     ///   ``linear(retry:duration:)`` with Swift's `Duration` type instead.
 30 |     case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 31 |
 32 |     /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
 38 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 39 |     ///   ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
 40 |     case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 41 |
 42 |     /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
 55 |         retry: UInt,
 56 |         jitterFactor: Double = 0.1,
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
    |                      `- error: cannot find type 'DispatchTimeInterval' in scope
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |     )
 61 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ConstantDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 |     ///
13 |     /// This value does not change based on the retry index.
14 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     // MARK: - IRetryDelayStrategy
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 |     ///
13 |     /// This value acts as the base interval for exponential backoff.
14 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     /// The exponential growth multiplier.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:32:22: error: cannot find type 'DispatchTimeInterval' in scope
30 |     ///
31 |     /// If specified, the computed delay will never exceed this value.
32 |     let maxInterval: DispatchTimeInterval?
   |                      `- error: cannot find type 'DispatchTimeInterval' in scope
33 |
34 |     // MARK: Initialization
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:37:19: error: cannot find type 'DispatchTimeInterval' in scope
35 |
36 |     init(
37 |         duration: DispatchTimeInterval,
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
38 |         multiplier: Double = 2.0,
39 |         jitterFactor: Double = 0.1,
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:40:22: error: cannot find type 'DispatchTimeInterval' in scope
38 |         multiplier: Double = 2.0,
39 |         jitterFactor: Double = 0.1,
40 |         maxInterval: DispatchTimeInterval? = .seconds(60)
   |                      `- error: cannot find type 'DispatchTimeInterval' in scope
41 |     ) {
42 |         self.duration = duration
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/FibonacciDelayStrategy.swift:20:19: error: cannot find type 'DispatchTimeInterval' in scope
18 |     /// Each retry multiplies this value by
19 |     /// the corresponding Fibonacci number.
20 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 |     // MARK: - IRetryDelayStrategy
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/LinearDelayStrategy.swift:17:19: error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     /// The base delay interval.
17 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
18 |
19 |     // MARK: IRetryDelayStrategy
[4/20] Compiling Typhoon LinearDelayStrategy.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/LinearDelayStrategy.swift:17:19: error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     /// The base delay interval.
17 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
18 |
19 |     // MARK: IRetryDelayStrategy
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
 18 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 19 |     ///   ``constant(retry:duration:)`` with Swift's `Duration` type instead.
 20 |     case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 21 |
 22 |     /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
 28 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 29 |     ///   ``linear(retry:duration:)`` with Swift's `Duration` type instead.
 30 |     case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 31 |
 32 |     /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
 38 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 39 |     ///   ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
 40 |     case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 41 |
 42 |     /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
 55 |         retry: UInt,
 56 |         jitterFactor: Double = 0.1,
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
    |                      `- error: cannot find type 'DispatchTimeInterval' in scope
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |     )
 61 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:72:35: error: '_' can only appear in a pattern or on the left side of an assignment
 70 |     public var retries: UInt {
 71 |         switch self {
 72 |         case let .constant(retry, _):
    |                                   `- error: '_' can only appear in a pattern or on the left side of an assignment
 73 |             retry
 74 |         case let .exponential(retry, _, _, _, _):
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:94:51: error: cannot find 'DispatchTimeInterval' in scope
 92 |     ///   - duration: The initial duration between retries.
 93 |     static func constant(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
 94 |         .constant(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                                                   `- error: cannot find 'DispatchTimeInterval' in scope
 95 |     }
 96 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:94:18: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
 92 |     ///   - duration: The initial duration between retries.
 93 |     static func constant(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
 94 |         .constant(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                  `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
 95 |     }
 96 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:107:49: error: cannot find 'DispatchTimeInterval' in scope
105 |     ///               the linear backoff interval.
106 |     static func linear(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
107 |         .linear(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                                                 `- error: cannot find 'DispatchTimeInterval' in scope
108 |     }
109 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:107:16: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
105 |     ///               the linear backoff interval.
106 |     static func linear(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
107 |         .linear(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
108 |     }
109 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:120:52: error: cannot find 'DispatchTimeInterval' in scope
118 |     ///               the Fibonacci backoff interval.
119 |     static func fibonacci(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
120 |         .fibonacci(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                                                    `- error: cannot find 'DispatchTimeInterval' in scope
121 |     }
122 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:120:19: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
118 |     ///               the Fibonacci backoff interval.
119 |     static func fibonacci(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
120 |         .fibonacci(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                   `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
121 |     }
122 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:141:44: error: cannot find 'DispatchTimeInterval' in scope
139 |             retry: retry,
140 |             jitterFactor: jitterFactor,
141 |             maxInterval: maxInterval.map { DispatchTimeInterval.from($0) },
    |                                            `- error: cannot find 'DispatchTimeInterval' in scope
142 |             multiplier: multiplier,
143 |             dispatchDuration: DispatchTimeInterval.from(duration)
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:143:31: error: cannot find 'DispatchTimeInterval' in scope
141 |             maxInterval: maxInterval.map { DispatchTimeInterval.from($0) },
142 |             multiplier: multiplier,
143 |             dispatchDuration: DispatchTimeInterval.from(duration)
    |                               `- error: cannot find 'DispatchTimeInterval' in scope
144 |         )
145 |     }
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:138:21: error: incorrect argument label in call (have 'retry:jitterFactor:maxInterval:multiplier:dispatchDuration:', expected 'retry:jitterFactor:maxInterval:multiplier:duration:')
136 |         duration: Duration
137 |     ) -> RetryPolicyStrategy {
138 |         .exponential(
    |                     `- error: incorrect argument label in call (have 'retry:jitterFactor:maxInterval:multiplier:dispatchDuration:', expected 'retry:jitterFactor:maxInterval:multiplier:duration:')
139 |             retry: retry,
140 |             jitterFactor: jitterFactor,
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:153:31: error: '_' can only appear in a pattern or on the left side of an assignment
151 |     var strategy: IRetryDelayStrategy {
152 |         switch self {
153 |         case let .exponential(_, jitterFactor, maxInterval, multiplier, duration):
    |                               `- error: '_' can only appear in a pattern or on the left side of an assignment
154 |             ExponentialDelayStrategy(
155 |                 duration: duration,
[5/20] Compiling Typhoon RetryPolicyStrategy.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/LinearDelayStrategy.swift:17:19: error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     /// The base delay interval.
17 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
18 |
19 |     // MARK: IRetryDelayStrategy
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
 18 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 19 |     ///   ``constant(retry:duration:)`` with Swift's `Duration` type instead.
 20 |     case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 21 |
 22 |     /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
 28 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 29 |     ///   ``linear(retry:duration:)`` with Swift's `Duration` type instead.
 30 |     case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 31 |
 32 |     /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
 38 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 39 |     ///   ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
 40 |     case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 41 |
 42 |     /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
 55 |         retry: UInt,
 56 |         jitterFactor: Double = 0.1,
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
    |                      `- error: cannot find type 'DispatchTimeInterval' in scope
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |     )
 61 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:72:35: error: '_' can only appear in a pattern or on the left side of an assignment
 70 |     public var retries: UInt {
 71 |         switch self {
 72 |         case let .constant(retry, _):
    |                                   `- error: '_' can only appear in a pattern or on the left side of an assignment
 73 |             retry
 74 |         case let .exponential(retry, _, _, _, _):
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:94:51: error: cannot find 'DispatchTimeInterval' in scope
 92 |     ///   - duration: The initial duration between retries.
 93 |     static func constant(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
 94 |         .constant(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                                                   `- error: cannot find 'DispatchTimeInterval' in scope
 95 |     }
 96 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:94:18: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
 92 |     ///   - duration: The initial duration between retries.
 93 |     static func constant(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
 94 |         .constant(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                  `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
 95 |     }
 96 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:107:49: error: cannot find 'DispatchTimeInterval' in scope
105 |     ///               the linear backoff interval.
106 |     static func linear(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
107 |         .linear(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                                                 `- error: cannot find 'DispatchTimeInterval' in scope
108 |     }
109 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:107:16: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
105 |     ///               the linear backoff interval.
106 |     static func linear(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
107 |         .linear(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
108 |     }
109 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:120:52: error: cannot find 'DispatchTimeInterval' in scope
118 |     ///               the Fibonacci backoff interval.
119 |     static func fibonacci(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
120 |         .fibonacci(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                                                    `- error: cannot find 'DispatchTimeInterval' in scope
121 |     }
122 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:120:19: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
118 |     ///               the Fibonacci backoff interval.
119 |     static func fibonacci(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
120 |         .fibonacci(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                   `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
121 |     }
122 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:141:44: error: cannot find 'DispatchTimeInterval' in scope
139 |             retry: retry,
140 |             jitterFactor: jitterFactor,
141 |             maxInterval: maxInterval.map { DispatchTimeInterval.from($0) },
    |                                            `- error: cannot find 'DispatchTimeInterval' in scope
142 |             multiplier: multiplier,
143 |             dispatchDuration: DispatchTimeInterval.from(duration)
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:143:31: error: cannot find 'DispatchTimeInterval' in scope
141 |             maxInterval: maxInterval.map { DispatchTimeInterval.from($0) },
142 |             multiplier: multiplier,
143 |             dispatchDuration: DispatchTimeInterval.from(duration)
    |                               `- error: cannot find 'DispatchTimeInterval' in scope
144 |         )
145 |     }
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:138:21: error: incorrect argument label in call (have 'retry:jitterFactor:maxInterval:multiplier:dispatchDuration:', expected 'retry:jitterFactor:maxInterval:multiplier:duration:')
136 |         duration: Duration
137 |     ) -> RetryPolicyStrategy {
138 |         .exponential(
    |                     `- error: incorrect argument label in call (have 'retry:jitterFactor:maxInterval:multiplier:dispatchDuration:', expected 'retry:jitterFactor:maxInterval:multiplier:duration:')
139 |             retry: retry,
140 |             jitterFactor: jitterFactor,
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:153:31: error: '_' can only appear in a pattern or on the left side of an assignment
151 |     var strategy: IRetryDelayStrategy {
152 |         switch self {
153 |         case let .exponential(_, jitterFactor, maxInterval, multiplier, duration):
    |                               `- error: '_' can only appear in a pattern or on the left side of an assignment
154 |             ExponentialDelayStrategy(
155 |                 duration: duration,
[6/20] Compiling Typhoon ExponentialDelayStrategy.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 |     ///
13 |     /// This value acts as the base interval for exponential backoff.
14 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     /// The exponential growth multiplier.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:32:22: error: cannot find type 'DispatchTimeInterval' in scope
30 |     ///
31 |     /// If specified, the computed delay will never exceed this value.
32 |     let maxInterval: DispatchTimeInterval?
   |                      `- error: cannot find type 'DispatchTimeInterval' in scope
33 |
34 |     // MARK: Initialization
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:37:19: error: cannot find type 'DispatchTimeInterval' in scope
35 |
36 |     init(
37 |         duration: DispatchTimeInterval,
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
38 |         multiplier: Double = 2.0,
39 |         jitterFactor: Double = 0.1,
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:40:22: error: cannot find type 'DispatchTimeInterval' in scope
38 |         multiplier: Double = 2.0,
39 |         jitterFactor: Double = 0.1,
40 |         maxInterval: DispatchTimeInterval? = .seconds(60)
   |                      `- error: cannot find type 'DispatchTimeInterval' in scope
41 |     ) {
42 |         self.duration = duration
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:68:57: error: cannot convert value of type 'String' to expected argument type 'Double'
66 |         let jitterRange = base * jitterFactor
67 |         let jittered = Double.random(
68 |             in: max(0, base - jitterRange) ... min(base + jitterRange, Double(maxDelayNanos))
   |                                                         `- error: cannot convert value of type 'String' to expected argument type 'Double'
69 |         )
70 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:68:29: error: cannot convert value of type 'Duration' to expected argument type 'Double'
66 |         let jitterRange = base * jitterFactor
67 |         let jittered = Double.random(
68 |             in: max(0, base - jitterRange) ... min(base + jitterRange, Double(maxDelayNanos))
   |                             `- error: cannot convert value of type 'Duration' to expected argument type 'Double'
69 |         )
70 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/FibonacciDelayStrategy.swift:20:19: error: cannot find type 'DispatchTimeInterval' in scope
18 |     /// Each retry multiplies this value by
19 |     /// the corresponding Fibonacci number.
20 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 |     // MARK: - IRetryDelayStrategy
[7/20] Compiling Typhoon FibonacciDelayStrategy.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 |     ///
13 |     /// This value acts as the base interval for exponential backoff.
14 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     /// The exponential growth multiplier.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:32:22: error: cannot find type 'DispatchTimeInterval' in scope
30 |     ///
31 |     /// If specified, the computed delay will never exceed this value.
32 |     let maxInterval: DispatchTimeInterval?
   |                      `- error: cannot find type 'DispatchTimeInterval' in scope
33 |
34 |     // MARK: Initialization
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:37:19: error: cannot find type 'DispatchTimeInterval' in scope
35 |
36 |     init(
37 |         duration: DispatchTimeInterval,
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
38 |         multiplier: Double = 2.0,
39 |         jitterFactor: Double = 0.1,
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:40:22: error: cannot find type 'DispatchTimeInterval' in scope
38 |         multiplier: Double = 2.0,
39 |         jitterFactor: Double = 0.1,
40 |         maxInterval: DispatchTimeInterval? = .seconds(60)
   |                      `- error: cannot find type 'DispatchTimeInterval' in scope
41 |     ) {
42 |         self.duration = duration
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:68:57: error: cannot convert value of type 'String' to expected argument type 'Double'
66 |         let jitterRange = base * jitterFactor
67 |         let jittered = Double.random(
68 |             in: max(0, base - jitterRange) ... min(base + jitterRange, Double(maxDelayNanos))
   |                                                         `- error: cannot convert value of type 'String' to expected argument type 'Double'
69 |         )
70 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:68:29: error: cannot convert value of type 'Duration' to expected argument type 'Double'
66 |         let jitterRange = base * jitterFactor
67 |         let jittered = Double.random(
68 |             in: max(0, base - jitterRange) ... min(base + jitterRange, Double(maxDelayNanos))
   |                             `- error: cannot convert value of type 'Duration' to expected argument type 'Double'
69 |         )
70 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/FibonacciDelayStrategy.swift:20:19: error: cannot find type 'DispatchTimeInterval' in scope
18 |     /// Each retry multiplies this value by
19 |     /// the corresponding Fibonacci number.
20 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 |     // MARK: - IRetryDelayStrategy
[8/20] Compiling Typhoon RetryPolicyService.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:60:35: error: cannot find type 'DispatchTimeInterval' in scope
 58 |
 59 |     /// Optional maximum total duration allowed for all retry attempts.
 60 |     private let maxTotalDuration: DispatchTimeInterval?
    |                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |
 62 |     /// An optional logger used to record retry attempts and related events.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:76:27: error: cannot find type 'DispatchTimeInterval' in scope
 74 |     public init(
 75 |         strategy: RetryPolicyStrategy,
 76 |         maxTotalDuration: DispatchTimeInterval? = nil,
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 77 |         logger: ILogger? = nil
 78 |     ) {
[9/20] Compiling Typhoon IRetryDelayStrategy.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:60:35: error: cannot find type 'DispatchTimeInterval' in scope
 58 |
 59 |     /// Optional maximum total duration allowed for all retry attempts.
 60 |     private let maxTotalDuration: DispatchTimeInterval?
    |                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |
 62 |     /// An optional logger used to record retry attempts and related events.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:76:27: error: cannot find type 'DispatchTimeInterval' in scope
 74 |     public init(
 75 |         strategy: RetryPolicyStrategy,
 76 |         maxTotalDuration: DispatchTimeInterval? = nil,
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 77 |         logger: ILogger? = nil
 78 |     ) {
[10/20] Compiling Typhoon ILogger.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[11/20] Compiling Typhoon RetryPolicyError.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[12/20] Compiling Typhoon ChainDelayStrategy.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ConstantDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 |     ///
13 |     /// This value does not change based on the retry index.
14 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     // MARK: - IRetryDelayStrategy
[13/20] Compiling Typhoon ConstantDelayStrategy.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ConstantDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 |     ///
13 |     /// This value does not change based on the retry index.
14 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     // MARK: - IRetryDelayStrategy
[14/20] Compiling Typhoon RetryIterator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
 18 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 19 |     ///   ``constant(retry:duration:)`` with Swift's `Duration` type instead.
 20 |     case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 21 |
 22 |     /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
 28 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 29 |     ///   ``linear(retry:duration:)`` with Swift's `Duration` type instead.
 30 |     case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 31 |
 32 |     /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
 38 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 39 |     ///   ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
 40 |     case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 41 |
 42 |     /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
 55 |         retry: UInt,
 56 |         jitterFactor: Double = 0.1,
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
    |                      `- error: cannot find type 'DispatchTimeInterval' in scope
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |     )
 61 |
[15/20] Compiling Typhoon RetrySequence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
 18 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 19 |     ///   ``constant(retry:duration:)`` with Swift's `Duration` type instead.
 20 |     case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 21 |
 22 |     /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
 28 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 29 |     ///   ``linear(retry:duration:)`` with Swift's `Duration` type instead.
 30 |     case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 31 |
 32 |     /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
 38 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 39 |     ///   ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
 40 |     case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 41 |
 42 |     /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
 55 |         retry: UInt,
 56 |         jitterFactor: Double = 0.1,
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
    |                      `- error: cannot find type 'DispatchTimeInterval' in scope
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |     )
 61 |
[16/20] Compiling Typhoon DispatchTimeInterval+Double.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:8:11: error: cannot find type 'DispatchTimeInterval' in scope
 6 | import Foundation
 7 |
 8 | extension DispatchTimeInterval {
   |           `- error: cannot find type 'DispatchTimeInterval' in scope
 9 |     /// Converts a `DispatchTimeInterval` value into nanoseconds represented as `UInt64`.
10 |     ///
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:31:47: error: cannot find type 'DispatchTimeInterval' in scope
29 |
30 |     @available(iOS 16, macOS 13, tvOS 16, watchOS 9, *)
31 |     static func from(_ duration: Duration) -> DispatchTimeInterval {
   |                                               `- error: cannot find type 'DispatchTimeInterval' in scope
32 |         let seconds = duration.components.seconds
33 |         let nanos = duration.components.attoseconds / 1_000_000_000
[17/20] Compiling Typhoon Logger+ILogger.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:8:11: error: cannot find type 'DispatchTimeInterval' in scope
 6 | import Foundation
 7 |
 8 | extension DispatchTimeInterval {
   |           `- error: cannot find type 'DispatchTimeInterval' in scope
 9 |     /// Converts a `DispatchTimeInterval` value into nanoseconds represented as `UInt64`.
10 |     ///
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:31:47: error: cannot find type 'DispatchTimeInterval' in scope
29 |
30 |     @available(iOS 16, macOS 13, tvOS 16, watchOS 9, *)
31 |     static func from(_ duration: Duration) -> DispatchTimeInterval {
   |                                               `- error: cannot find type 'DispatchTimeInterval' in scope
32 |         let seconds = duration.components.seconds
33 |         let nanos = duration.components.attoseconds / 1_000_000_000
[18/20] Compiling Typhoon URLSession+RetryPolicy.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:8:11: error: cannot find type 'DispatchTimeInterval' in scope
 6 | import Foundation
 7 |
 8 | extension DispatchTimeInterval {
   |           `- error: cannot find type 'DispatchTimeInterval' in scope
 9 |     /// Converts a `DispatchTimeInterval` value into nanoseconds represented as `UInt64`.
10 |     ///
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:31:47: error: cannot find type 'DispatchTimeInterval' in scope
29 |
30 |     @available(iOS 16, macOS 13, tvOS 16, watchOS 9, *)
31 |     static func from(_ duration: Duration) -> DispatchTimeInterval {
   |                                               `- error: cannot find type 'DispatchTimeInterval' in scope
32 |         let seconds = duration.components.seconds
33 |         let nanos = duration.components.attoseconds / 1_000_000_000
[19/20] Compiling Typhoon RetryResult.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
 18 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 19 |     ///   ``constant(retry:duration:)`` with Swift's `Duration` type instead.
 20 |     case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 21 |
 22 |     /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
 28 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 29 |     ///   ``linear(retry:duration:)`` with Swift's `Duration` type instead.
 30 |     case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 31 |
 32 |     /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
 38 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 39 |     ///   ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
 40 |     case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 41 |
 42 |     /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
 55 |         retry: UInt,
 56 |         jitterFactor: Double = 0.1,
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
    |                      `- error: cannot find type 'DispatchTimeInterval' in scope
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |     )
 61 |
[20/20] Compiling Typhoon IRetryPolicyService.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
 18 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 19 |     ///   ``constant(retry:duration:)`` with Swift's `Duration` type instead.
 20 |     case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 21 |
 22 |     /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
 28 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 29 |     ///   ``linear(retry:duration:)`` with Swift's `Duration` type instead.
 30 |     case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 31 |
 32 |     /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
 38 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 39 |     ///   ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
 40 |     case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 41 |
 42 |     /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
 55 |         retry: UInt,
 56 |         jitterFactor: Double = 0.1,
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
    |                      `- error: cannot find type 'DispatchTimeInterval' in scope
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |     )
 61 |
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:276d66a16377d3ee059b2e3429cbc1154d9f01e42871e5d702fd5d8b9044d93d
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/17] Emitting module Typhoon
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:8:11: error: cannot find type 'DispatchTimeInterval' in scope
 6 | import Foundation
 7 |
 8 | extension DispatchTimeInterval {
   |           `- error: cannot find type 'DispatchTimeInterval' in scope
 9 |     /// Converts a `DispatchTimeInterval` value into nanoseconds represented as `UInt64`.
10 |     ///
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:60:35: error: cannot find type 'DispatchTimeInterval' in scope
 58 |
 59 |     /// Optional maximum total duration allowed for all retry attempts.
 60 |     private let maxTotalDuration: DispatchTimeInterval?
    |                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |
 62 |     /// An optional logger used to record retry attempts and related events.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:76:27: error: cannot find type 'DispatchTimeInterval' in scope
 74 |     public init(
 75 |         strategy: RetryPolicyStrategy,
 76 |         maxTotalDuration: DispatchTimeInterval? = nil,
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 77 |         logger: ILogger? = nil
 78 |     ) {
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
 18 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 19 |     ///   ``constant(retry:duration:)`` with Swift's `Duration` type instead.
 20 |     case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 21 |
 22 |     /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
 28 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 29 |     ///   ``linear(retry:duration:)`` with Swift's `Duration` type instead.
 30 |     case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 31 |
 32 |     /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
 38 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 39 |     ///   ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
 40 |     case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 41 |
 42 |     /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
 55 |         retry: UInt,
 56 |         jitterFactor: Double = 0.1,
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
    |                      `- error: cannot find type 'DispatchTimeInterval' in scope
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |     )
 61 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ConstantDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 |     ///
13 |     /// This value does not change based on the retry index.
14 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     // MARK: - IRetryDelayStrategy
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 |     ///
13 |     /// This value acts as the base interval for exponential backoff.
14 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     /// The exponential growth multiplier.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:32:22: error: cannot find type 'DispatchTimeInterval' in scope
30 |     ///
31 |     /// If specified, the computed delay will never exceed this value.
32 |     let maxInterval: DispatchTimeInterval?
   |                      `- error: cannot find type 'DispatchTimeInterval' in scope
33 |
34 |     // MARK: Initialization
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:37:19: error: cannot find type 'DispatchTimeInterval' in scope
35 |
36 |     init(
37 |         duration: DispatchTimeInterval,
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
38 |         multiplier: Double = 2.0,
39 |         jitterFactor: Double = 0.1,
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:40:22: error: cannot find type 'DispatchTimeInterval' in scope
38 |         multiplier: Double = 2.0,
39 |         jitterFactor: Double = 0.1,
40 |         maxInterval: DispatchTimeInterval? = .seconds(60)
   |                      `- error: cannot find type 'DispatchTimeInterval' in scope
41 |     ) {
42 |         self.duration = duration
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/FibonacciDelayStrategy.swift:20:19: error: cannot find type 'DispatchTimeInterval' in scope
18 |     /// Each retry multiplies this value by
19 |     /// the corresponding Fibonacci number.
20 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 |     // MARK: - IRetryDelayStrategy
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/LinearDelayStrategy.swift:17:19: error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     /// The base delay interval.
17 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
18 |
19 |     // MARK: IRetryDelayStrategy
[3/19] Compiling Typhoon RetryResult.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
 18 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 19 |     ///   ``constant(retry:duration:)`` with Swift's `Duration` type instead.
 20 |     case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 21 |
 22 |     /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
 28 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 29 |     ///   ``linear(retry:duration:)`` with Swift's `Duration` type instead.
 30 |     case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 31 |
 32 |     /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
 38 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 39 |     ///   ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
 40 |     case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 41 |
 42 |     /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
 55 |         retry: UInt,
 56 |         jitterFactor: Double = 0.1,
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
    |                      `- error: cannot find type 'DispatchTimeInterval' in scope
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |     )
 61 |
[4/19] Compiling Typhoon IRetryPolicyService.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
 18 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 19 |     ///   ``constant(retry:duration:)`` with Swift's `Duration` type instead.
 20 |     case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 21 |
 22 |     /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
 28 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 29 |     ///   ``linear(retry:duration:)`` with Swift's `Duration` type instead.
 30 |     case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 31 |
 32 |     /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
 38 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 39 |     ///   ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
 40 |     case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 41 |
 42 |     /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
 55 |         retry: UInt,
 56 |         jitterFactor: Double = 0.1,
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
    |                      `- error: cannot find type 'DispatchTimeInterval' in scope
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |     )
 61 |
[5/19] Compiling Typhoon LinearDelayStrategy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/LinearDelayStrategy.swift:17:19: error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     /// The base delay interval.
17 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
18 |
19 |     // MARK: IRetryDelayStrategy
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
 18 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 19 |     ///   ``constant(retry:duration:)`` with Swift's `Duration` type instead.
 20 |     case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 21 |
 22 |     /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
 28 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 29 |     ///   ``linear(retry:duration:)`` with Swift's `Duration` type instead.
 30 |     case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 31 |
 32 |     /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
 38 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 39 |     ///   ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
 40 |     case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 41 |
 42 |     /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
 55 |         retry: UInt,
 56 |         jitterFactor: Double = 0.1,
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
    |                      `- error: cannot find type 'DispatchTimeInterval' in scope
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |     )
 61 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:72:35: error: '_' can only appear in a pattern or on the left side of an assignment
 70 |     public var retries: UInt {
 71 |         switch self {
 72 |         case let .constant(retry, _):
    |                                   `- error: '_' can only appear in a pattern or on the left side of an assignment
 73 |             retry
 74 |         case let .exponential(retry, _, _, _, _):
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:94:51: error: cannot find 'DispatchTimeInterval' in scope
 92 |     ///   - duration: The initial duration between retries.
 93 |     static func constant(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
 94 |         .constant(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                                                   `- error: cannot find 'DispatchTimeInterval' in scope
 95 |     }
 96 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:94:18: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
 92 |     ///   - duration: The initial duration between retries.
 93 |     static func constant(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
 94 |         .constant(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                  `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
 95 |     }
 96 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:107:49: error: cannot find 'DispatchTimeInterval' in scope
105 |     ///               the linear backoff interval.
106 |     static func linear(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
107 |         .linear(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                                                 `- error: cannot find 'DispatchTimeInterval' in scope
108 |     }
109 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:107:16: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
105 |     ///               the linear backoff interval.
106 |     static func linear(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
107 |         .linear(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
108 |     }
109 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:120:52: error: cannot find 'DispatchTimeInterval' in scope
118 |     ///               the Fibonacci backoff interval.
119 |     static func fibonacci(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
120 |         .fibonacci(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                                                    `- error: cannot find 'DispatchTimeInterval' in scope
121 |     }
122 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:120:19: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
118 |     ///               the Fibonacci backoff interval.
119 |     static func fibonacci(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
120 |         .fibonacci(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                   `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
121 |     }
122 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:141:44: error: cannot find 'DispatchTimeInterval' in scope
139 |             retry: retry,
140 |             jitterFactor: jitterFactor,
141 |             maxInterval: maxInterval.map { DispatchTimeInterval.from($0) },
    |                                            `- error: cannot find 'DispatchTimeInterval' in scope
142 |             multiplier: multiplier,
143 |             dispatchDuration: DispatchTimeInterval.from(duration)
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:143:31: error: cannot find 'DispatchTimeInterval' in scope
141 |             maxInterval: maxInterval.map { DispatchTimeInterval.from($0) },
142 |             multiplier: multiplier,
143 |             dispatchDuration: DispatchTimeInterval.from(duration)
    |                               `- error: cannot find 'DispatchTimeInterval' in scope
144 |         )
145 |     }
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:138:21: error: incorrect argument label in call (have 'retry:jitterFactor:maxInterval:multiplier:dispatchDuration:', expected 'retry:jitterFactor:maxInterval:multiplier:duration:')
136 |         duration: Duration
137 |     ) -> RetryPolicyStrategy {
138 |         .exponential(
    |                     `- error: incorrect argument label in call (have 'retry:jitterFactor:maxInterval:multiplier:dispatchDuration:', expected 'retry:jitterFactor:maxInterval:multiplier:duration:')
139 |             retry: retry,
140 |             jitterFactor: jitterFactor,
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:153:31: error: '_' can only appear in a pattern or on the left side of an assignment
151 |     var strategy: IRetryDelayStrategy {
152 |         switch self {
153 |         case let .exponential(_, jitterFactor, maxInterval, multiplier, duration):
    |                               `- error: '_' can only appear in a pattern or on the left side of an assignment
154 |             ExponentialDelayStrategy(
155 |                 duration: duration,
[6/19] Compiling Typhoon RetryPolicyStrategy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/LinearDelayStrategy.swift:17:19: error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     /// The base delay interval.
17 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
18 |
19 |     // MARK: IRetryDelayStrategy
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
 18 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 19 |     ///   ``constant(retry:duration:)`` with Swift's `Duration` type instead.
 20 |     case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 21 |
 22 |     /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
 28 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 29 |     ///   ``linear(retry:duration:)`` with Swift's `Duration` type instead.
 30 |     case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 31 |
 32 |     /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
 38 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 39 |     ///   ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
 40 |     case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 41 |
 42 |     /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
 55 |         retry: UInt,
 56 |         jitterFactor: Double = 0.1,
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
    |                      `- error: cannot find type 'DispatchTimeInterval' in scope
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |     )
 61 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:72:35: error: '_' can only appear in a pattern or on the left side of an assignment
 70 |     public var retries: UInt {
 71 |         switch self {
 72 |         case let .constant(retry, _):
    |                                   `- error: '_' can only appear in a pattern or on the left side of an assignment
 73 |             retry
 74 |         case let .exponential(retry, _, _, _, _):
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:94:51: error: cannot find 'DispatchTimeInterval' in scope
 92 |     ///   - duration: The initial duration between retries.
 93 |     static func constant(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
 94 |         .constant(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                                                   `- error: cannot find 'DispatchTimeInterval' in scope
 95 |     }
 96 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:94:18: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
 92 |     ///   - duration: The initial duration between retries.
 93 |     static func constant(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
 94 |         .constant(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                  `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
 95 |     }
 96 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:107:49: error: cannot find 'DispatchTimeInterval' in scope
105 |     ///               the linear backoff interval.
106 |     static func linear(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
107 |         .linear(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                                                 `- error: cannot find 'DispatchTimeInterval' in scope
108 |     }
109 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:107:16: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
105 |     ///               the linear backoff interval.
106 |     static func linear(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
107 |         .linear(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
108 |     }
109 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:120:52: error: cannot find 'DispatchTimeInterval' in scope
118 |     ///               the Fibonacci backoff interval.
119 |     static func fibonacci(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
120 |         .fibonacci(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                                                    `- error: cannot find 'DispatchTimeInterval' in scope
121 |     }
122 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:120:19: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
118 |     ///               the Fibonacci backoff interval.
119 |     static func fibonacci(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
120 |         .fibonacci(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
    |                   `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
121 |     }
122 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:141:44: error: cannot find 'DispatchTimeInterval' in scope
139 |             retry: retry,
140 |             jitterFactor: jitterFactor,
141 |             maxInterval: maxInterval.map { DispatchTimeInterval.from($0) },
    |                                            `- error: cannot find 'DispatchTimeInterval' in scope
142 |             multiplier: multiplier,
143 |             dispatchDuration: DispatchTimeInterval.from(duration)
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:143:31: error: cannot find 'DispatchTimeInterval' in scope
141 |             maxInterval: maxInterval.map { DispatchTimeInterval.from($0) },
142 |             multiplier: multiplier,
143 |             dispatchDuration: DispatchTimeInterval.from(duration)
    |                               `- error: cannot find 'DispatchTimeInterval' in scope
144 |         )
145 |     }
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:138:21: error: incorrect argument label in call (have 'retry:jitterFactor:maxInterval:multiplier:dispatchDuration:', expected 'retry:jitterFactor:maxInterval:multiplier:duration:')
136 |         duration: Duration
137 |     ) -> RetryPolicyStrategy {
138 |         .exponential(
    |                     `- error: incorrect argument label in call (have 'retry:jitterFactor:maxInterval:multiplier:dispatchDuration:', expected 'retry:jitterFactor:maxInterval:multiplier:duration:')
139 |             retry: retry,
140 |             jitterFactor: jitterFactor,
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:153:31: error: '_' can only appear in a pattern or on the left side of an assignment
151 |     var strategy: IRetryDelayStrategy {
152 |         switch self {
153 |         case let .exponential(_, jitterFactor, maxInterval, multiplier, duration):
    |                               `- error: '_' can only appear in a pattern or on the left side of an assignment
154 |             ExponentialDelayStrategy(
155 |                 duration: duration,
[7/19] Compiling Typhoon RetryIterator.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
 18 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 19 |     ///   ``constant(retry:duration:)`` with Swift's `Duration` type instead.
 20 |     case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 21 |
 22 |     /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
 28 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 29 |     ///   ``linear(retry:duration:)`` with Swift's `Duration` type instead.
 30 |     case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 31 |
 32 |     /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
 38 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 39 |     ///   ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
 40 |     case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 41 |
 42 |     /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
 55 |         retry: UInt,
 56 |         jitterFactor: Double = 0.1,
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
    |                      `- error: cannot find type 'DispatchTimeInterval' in scope
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |     )
 61 |
[8/19] Compiling Typhoon RetrySequence.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
 18 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 19 |     ///   ``constant(retry:duration:)`` with Swift's `Duration` type instead.
 20 |     case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 21 |
 22 |     /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
 28 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 29 |     ///   ``linear(retry:duration:)`` with Swift's `Duration` type instead.
 30 |     case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 31 |
 32 |     /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
 38 |     /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
 39 |     ///   ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
 40 |     case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
    |                                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 41 |
 42 |     /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
 55 |         retry: UInt,
 56 |         jitterFactor: Double = 0.1,
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
    |                      `- error: cannot find type 'DispatchTimeInterval' in scope
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
 57 |         maxInterval: DispatchTimeInterval? = .seconds(60),
 58 |         multiplier: Double = 2,
 59 |         dispatchDuration: DispatchTimeInterval
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |     )
 61 |
[9/19] Compiling Typhoon RetryPolicyService.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:60:35: error: cannot find type 'DispatchTimeInterval' in scope
 58 |
 59 |     /// Optional maximum total duration allowed for all retry attempts.
 60 |     private let maxTotalDuration: DispatchTimeInterval?
    |                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |
 62 |     /// An optional logger used to record retry attempts and related events.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:76:27: error: cannot find type 'DispatchTimeInterval' in scope
 74 |     public init(
 75 |         strategy: RetryPolicyStrategy,
 76 |         maxTotalDuration: DispatchTimeInterval? = nil,
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 77 |         logger: ILogger? = nil
 78 |     ) {
[10/19] Compiling Typhoon IRetryDelayStrategy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:60:35: error: cannot find type 'DispatchTimeInterval' in scope
 58 |
 59 |     /// Optional maximum total duration allowed for all retry attempts.
 60 |     private let maxTotalDuration: DispatchTimeInterval?
    |                                   `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |
 62 |     /// An optional logger used to record retry attempts and related events.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:76:27: error: cannot find type 'DispatchTimeInterval' in scope
 74 |     public init(
 75 |         strategy: RetryPolicyStrategy,
 76 |         maxTotalDuration: DispatchTimeInterval? = nil,
    |                           `- error: cannot find type 'DispatchTimeInterval' in scope
 77 |         logger: ILogger? = nil
 78 |     ) {
[11/19] Compiling Typhoon ChainDelayStrategy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ConstantDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 |     ///
13 |     /// This value does not change based on the retry index.
14 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     // MARK: - IRetryDelayStrategy
[12/19] Compiling Typhoon ConstantDelayStrategy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ConstantDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 |     ///
13 |     /// This value does not change based on the retry index.
14 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     // MARK: - IRetryDelayStrategy
[13/19] Compiling Typhoon ILogger.swift
[14/19] Compiling Typhoon RetryPolicyError.swift
[15/19] Compiling Typhoon ExponentialDelayStrategy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 |     ///
13 |     /// This value acts as the base interval for exponential backoff.
14 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     /// The exponential growth multiplier.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:32:22: error: cannot find type 'DispatchTimeInterval' in scope
30 |     ///
31 |     /// If specified, the computed delay will never exceed this value.
32 |     let maxInterval: DispatchTimeInterval?
   |                      `- error: cannot find type 'DispatchTimeInterval' in scope
33 |
34 |     // MARK: Initialization
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:37:19: error: cannot find type 'DispatchTimeInterval' in scope
35 |
36 |     init(
37 |         duration: DispatchTimeInterval,
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
38 |         multiplier: Double = 2.0,
39 |         jitterFactor: Double = 0.1,
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:40:22: error: cannot find type 'DispatchTimeInterval' in scope
38 |         multiplier: Double = 2.0,
39 |         jitterFactor: Double = 0.1,
40 |         maxInterval: DispatchTimeInterval? = .seconds(60)
   |                      `- error: cannot find type 'DispatchTimeInterval' in scope
41 |     ) {
42 |         self.duration = duration
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:68:57: error: cannot convert value of type 'String' to expected argument type 'Double'
66 |         let jitterRange = base * jitterFactor
67 |         let jittered = Double.random(
68 |             in: max(0, base - jitterRange) ... min(base + jitterRange, Double(maxDelayNanos))
   |                                                         `- error: cannot convert value of type 'String' to expected argument type 'Double'
69 |         )
70 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:68:29: error: cannot convert value of type 'Duration' to expected argument type 'Double'
66 |         let jitterRange = base * jitterFactor
67 |         let jittered = Double.random(
68 |             in: max(0, base - jitterRange) ... min(base + jitterRange, Double(maxDelayNanos))
   |                             `- error: cannot convert value of type 'Duration' to expected argument type 'Double'
69 |         )
70 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/FibonacciDelayStrategy.swift:20:19: error: cannot find type 'DispatchTimeInterval' in scope
18 |     /// Each retry multiplies this value by
19 |     /// the corresponding Fibonacci number.
20 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 |     // MARK: - IRetryDelayStrategy
[16/19] Compiling Typhoon FibonacciDelayStrategy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 |     ///
13 |     /// This value acts as the base interval for exponential backoff.
14 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 |     /// The exponential growth multiplier.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:32:22: error: cannot find type 'DispatchTimeInterval' in scope
30 |     ///
31 |     /// If specified, the computed delay will never exceed this value.
32 |     let maxInterval: DispatchTimeInterval?
   |                      `- error: cannot find type 'DispatchTimeInterval' in scope
33 |
34 |     // MARK: Initialization
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:37:19: error: cannot find type 'DispatchTimeInterval' in scope
35 |
36 |     init(
37 |         duration: DispatchTimeInterval,
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
38 |         multiplier: Double = 2.0,
39 |         jitterFactor: Double = 0.1,
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:40:22: error: cannot find type 'DispatchTimeInterval' in scope
38 |         multiplier: Double = 2.0,
39 |         jitterFactor: Double = 0.1,
40 |         maxInterval: DispatchTimeInterval? = .seconds(60)
   |                      `- error: cannot find type 'DispatchTimeInterval' in scope
41 |     ) {
42 |         self.duration = duration
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:68:57: error: cannot convert value of type 'String' to expected argument type 'Double'
66 |         let jitterRange = base * jitterFactor
67 |         let jittered = Double.random(
68 |             in: max(0, base - jitterRange) ... min(base + jitterRange, Double(maxDelayNanos))
   |                                                         `- error: cannot convert value of type 'String' to expected argument type 'Double'
69 |         )
70 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:68:29: error: cannot convert value of type 'Duration' to expected argument type 'Double'
66 |         let jitterRange = base * jitterFactor
67 |         let jittered = Double.random(
68 |             in: max(0, base - jitterRange) ... min(base + jitterRange, Double(maxDelayNanos))
   |                             `- error: cannot convert value of type 'Duration' to expected argument type 'Double'
69 |         )
70 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/FibonacciDelayStrategy.swift:20:19: error: cannot find type 'DispatchTimeInterval' in scope
18 |     /// Each retry multiplies this value by
19 |     /// the corresponding Fibonacci number.
20 |     let duration: DispatchTimeInterval
   |                   `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 |     // MARK: - IRetryDelayStrategy
[17/19] Compiling Typhoon DispatchTimeInterval+Double.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:8:11: error: cannot find type 'DispatchTimeInterval' in scope
 6 | import Foundation
 7 |
 8 | extension DispatchTimeInterval {
   |           `- error: cannot find type 'DispatchTimeInterval' in scope
 9 |     /// Converts a `DispatchTimeInterval` value into nanoseconds represented as `UInt64`.
10 |     ///
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:31:47: error: cannot find type 'DispatchTimeInterval' in scope
29 |
30 |     @available(iOS 16, macOS 13, tvOS 16, watchOS 9, *)
31 |     static func from(_ duration: Duration) -> DispatchTimeInterval {
   |                                               `- error: cannot find type 'DispatchTimeInterval' in scope
32 |         let seconds = duration.components.seconds
33 |         let nanos = duration.components.attoseconds / 1_000_000_000
[18/19] Compiling Typhoon Logger+ILogger.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:8:11: error: cannot find type 'DispatchTimeInterval' in scope
 6 | import Foundation
 7 |
 8 | extension DispatchTimeInterval {
   |           `- error: cannot find type 'DispatchTimeInterval' in scope
 9 |     /// Converts a `DispatchTimeInterval` value into nanoseconds represented as `UInt64`.
10 |     ///
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:31:47: error: cannot find type 'DispatchTimeInterval' in scope
29 |
30 |     @available(iOS 16, macOS 13, tvOS 16, watchOS 9, *)
31 |     static func from(_ duration: Duration) -> DispatchTimeInterval {
   |                                               `- error: cannot find type 'DispatchTimeInterval' in scope
32 |         let seconds = duration.components.seconds
33 |         let nanos = duration.components.attoseconds / 1_000_000_000
[19/19] Compiling Typhoon URLSession+RetryPolicy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:8:11: error: cannot find type 'DispatchTimeInterval' in scope
 6 | import Foundation
 7 |
 8 | extension DispatchTimeInterval {
   |           `- error: cannot find type 'DispatchTimeInterval' in scope
 9 |     /// Converts a `DispatchTimeInterval` value into nanoseconds represented as `UInt64`.
10 |     ///
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:31:47: error: cannot find type 'DispatchTimeInterval' in scope
29 |
30 |     @available(iOS 16, macOS 13, tvOS 16, watchOS 9, *)
31 |     static func from(_ duration: Duration) -> DispatchTimeInterval {
   |                                               `- error: cannot find type 'DispatchTimeInterval' in scope
32 |         let seconds = duration.components.seconds
33 |         let nanos = duration.components.attoseconds / 1_000_000_000
BUILD FAILURE 6.1 wasm