This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import SwiftUI | |
| {% for type in types.all %} | |
| {% if not type.name|hasSuffix:"CodingKeys" %} | |
| {% if type.parentName == "Components.Schemas" %} | |
| public typealias {{ type.localName }} = Components.Schemas.{{ type.localName }} | |
| {% endif %} | |
| {% endif %} | |
| {% endfor %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| // MARK: - CurrentValueStream | |
| public final class CurrentValueStream<T>: AsyncSequence, @unchecked Sendable { | |
| public typealias Element = T | |
| private var _value: T | |
| private var unfair_lock: os_unfair_lock_s = .init() | |
| private var continuations: [UUID: AsyncStream<T>.Continuation] = [:] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| VERSION="1.5.2" | |
| SDKVERSION="17.0" | |
| MINIOSVERSION="10.0" | |
| ########################################################################### | |
| # | |
| # Don't change anything under this line! | |
| # |