Build Information
Successful build of SoracomAPI, reference master (8f7794), with Swift 6.2 for macOS (SPM) on 20 Jun 2025 11:03:31 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/soracom/soracom-sdk-swift.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/soracom/soracom-sdk-swift
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 8f77942 Update README.md (final update)
Submodule path 'Whatever/swaggen/SwagGen': checked out '73bd65e6950d2cc0fb5c43283727a1093a5adb52'
Submodule 'Whatever/swaggen/SwagGen' (https://github.com/masonmark/SwagGen) registered for path 'Whatever/swaggen/SwagGen'
Cloning into '/Users/admin/builder/spi-builder-workspace/Whatever/swaggen/SwagGen'...
Cloned https://github.com/soracom/soracom-sdk-swift.git
Revision (git rev-parse @):
8f779425aa675d62b5a87de33a0b7ffd5868bac9
SUCCESS checkout https://github.com/soracom/soracom-sdk-swift.git at master
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/soracom/soracom-sdk-swift.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/7] Write sources
[1/7] Write SoracomAPIDemo-entitlement.plist
[1/7] Write sources
[3/7] Write swift-version-1EA4D86E10B52AF.txt
[5/224] Compiling SoracomAPI SmsForwardingReport.swift
[6/224] Compiling SoracomAPI SmsForwardingRequest.swift
[7/224] Compiling SoracomAPI SoracomBeamStats.swift
[8/224] Compiling SoracomAPI Subscriber.swift
[9/224] Compiling SoracomAPI SupportTokenResponse.swift
[10/224] Compiling SoracomAPI Tag.swift
[11/224] Compiling SoracomAPI TagUpdateRequest.swift
[12/224] Compiling SoracomAPI UpdateEventHandlerRequest.swift
[13/224] Compiling SoracomAPI UpdatePasswordRequest.swift
[14/224] Compiling SoracomAPI UpdatePermissionRequest.swift
[15/224] Compiling SoracomAPI UpdateSpeedClassRequest.swift
[16/224] Compiling SoracomAPI UpdateUserRequest.swift
[17/224] Compiling SoracomAPI UserDetailResponse.swift
[18/224] Compiling SoracomAPI VerifyEmailChangeTokenRequest.swift
[19/224] Compiling SoracomAPI VerifyOperatorsRequest.swift
[20/224] Compiling SoracomAPI VerifyPasswordResetTokenRequest.swift
[21/224] Compiling SoracomAPI VerifySubscriberTransferTokenRequest.swift
[22/224] Compiling SoracomAPI VerifySubscriberTransferTokenResponse.swift
[23/224] Compiling SoracomAPI VirtualPrivateGateway.swift
[24/224] Compiling SoracomAPI VpcPeeringConnection.swift
[25/224] Compiling SoracomAPI Auth.swift
[26/224] Compiling SoracomAPI IssuePasswordResetToken.swift
[27/224] Compiling SoracomAPI VerifyPasswordResetToken.swift
[28/224] Compiling SoracomAPI ExportBilling.swift
[29/248] Compiling SoracomAPI CreateEventHandlerRequest.swift
[30/248] Compiling SoracomAPI CreateGroupRequest.swift
[31/248] Compiling SoracomAPI CreateOrUpdateRoleRequest.swift
[32/248] Compiling SoracomAPI CreateRoleResponse.swift
[33/248] Compiling SoracomAPI CreateSubscriberResponse.swift
[34/248] Compiling SoracomAPI CreateUserPasswordRequest.swift
[35/248] Compiling SoracomAPI CreateUserRequest.swift
[36/248] Compiling SoracomAPI CreateVirtualPrivateGatewayRequest.swift
[37/248] Compiling SoracomAPI CreateVpcPeeringConnectionRequest.swift
[38/248] Compiling SoracomAPI CredentialsModel.swift
[39/248] Compiling SoracomAPI CreditCard.swift
[40/248] Compiling SoracomAPI DailyBill.swift
[41/248] Compiling SoracomAPI DailyBillResponse.swift
[42/248] Compiling SoracomAPI DataEntry.swift
[43/248] Compiling SoracomAPI DataSourceResourceMetadata.swift
[44/248] Compiling SoracomAPI DataTrafficStats.swift
[45/248] Compiling SoracomAPI DataTrafficStatsMap.swift
[46/248] Compiling SoracomAPI Device.swift
[47/248] Compiling SoracomAPI DeviceObjectModel.swift
[48/248] Compiling SoracomAPI EnableMFAOTPResponse.swift
[49/248] Compiling SoracomAPI ErrorType.swift
[50/248] Compiling SoracomAPI EstimatedOrderItemModel.swift
[51/248] Compiling SoracomAPI EstimatedOrderModel.swift
[52/248] Compiling SoracomAPI EventHandlerModel.swift
[53/248] Emitting module SoracomAPI
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[54/248] Compiling SoracomAPI APIError.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[55/248] Compiling SoracomAPI APIOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[56/248] Compiling SoracomAPI API.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[57/248] Compiling SoracomAPI AnyCodable.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[58/248] Compiling SoracomAPI Coding.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[59/248] Compiling SoracomAPI APICallError.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[60/248] Compiling SoracomAPI APICallErrorMessage.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[61/248] Compiling SoracomAPI APIKeyResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[62/248] Compiling SoracomAPI ActionConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[63/248] Compiling SoracomAPI ActionConfigProperty.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[64/248] Compiling SoracomAPI AirStatsResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[65/248] Compiling SoracomAPI AttachRoleRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[66/248] Compiling SoracomAPI AttributeUpdate.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[67/248] Compiling SoracomAPI AuthKeyResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[68/248] Compiling SoracomAPI AuthRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[69/248] Compiling SoracomAPI AuthResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[70/248] Compiling SoracomAPI BeamCounts.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[71/248] Compiling SoracomAPI BeamStatsResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[72/248] Compiling SoracomAPI Config.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[73/248] Compiling SoracomAPI CouponResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[74/248] Compiling SoracomAPI CreateAndUpdateCredentialsModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[75/248] Compiling SoracomAPI CreateCouponRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[76/248] Compiling SoracomAPI CreateCouponResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[77/248] Compiling SoracomAPI CreateEstimatedOrderRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/APIOperation.swift:40:12: warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
38 | **Notes:** APIOperation is implemented as a synchronous operation, intended to be run on a background thread (normally by NSOperationQueue). You can manually `start()` one if you wish, but because Request handlers call back to the main thread, you cannot start an APIOperation on the main thread (it will deadlock). They must be started in a background thread.
39 | */
40 | open class APIOperation: Operation {
| `- warning: class 'APIOperation' must restate inherited '@unchecked Sendable' conformance
41 |
42 |
[78/248] Compiling SoracomAPI ListOrderedSubscriberResponse.swift
[79/248] Compiling SoracomAPI ListPaymentStatementResponse.swift
[80/248] Compiling SoracomAPI ListProductResponse.swift
[81/248] Compiling SoracomAPI ListRolesResponse.swift
[82/248] Compiling SoracomAPI ListShippingAddressResponse.swift
[83/248] Compiling SoracomAPI ListSubOperatorsResponse.swift
[84/248] Compiling SoracomAPI LogEntry.swift
[85/248] Compiling SoracomAPI LoraData.swift
[86/248] Compiling SoracomAPI LoraDevice.swift
[87/248] Compiling SoracomAPI LoraGateway.swift
[88/248] Compiling SoracomAPI LoraNetworkSet.swift
[89/248] Compiling SoracomAPI MFAAuthenticationRequest.swift
[90/248] Compiling SoracomAPI MFAIssueRevokingTokenRequest.swift
[91/248] Compiling SoracomAPI MFARevokingTokenVerifyRequest.swift
[92/248] Compiling SoracomAPI MFAStatusOfUseResponse.swift
[93/248] Compiling SoracomAPI Map.swift
[94/248] Compiling SoracomAPI MonthlyBill.swift
[95/248] Compiling SoracomAPI ObjectInstance.swift
[96/248] Compiling SoracomAPI OpenGateRequest.swift
[97/248] Compiling SoracomAPI OperatorMFAVerifyingResponse.swift
[98/248] Compiling SoracomAPI OrderItemModel.swift
[99/248] Compiling SoracomAPI OrderedSubscriber.swift
[100/248] Compiling SoracomAPI PaymentAmount.swift
[101/248] Compiling SoracomAPI PaymentDescription.swift
[102/248] Compiling SoracomAPI ImeiLock.swift
[103/248] Compiling SoracomAPI InitRequest.swift
[104/248] Compiling SoracomAPI InsertAirStatsRequest.swift
[105/248] Compiling SoracomAPI InsertBeamStatsRequest.swift
[106/248] Compiling SoracomAPI IpAddressMapEntry.swift
[107/248] Compiling SoracomAPI IssueEmailChangeTokenRequest.swift
[108/248] Compiling SoracomAPI IssuePasswordResetTokenRequest.swift
[109/248] Compiling SoracomAPI IssueSubscriberTransferTokenRequest.swift
[110/248] Compiling SoracomAPI IssueSubscriberTransferTokenResponse.swift
[111/248] Compiling SoracomAPI JunctionInspectionConfiguration.swift
[112/248] Compiling SoracomAPI JunctionMirroringConfiguration.swift
[113/248] Compiling SoracomAPI JunctionMirroringPeer.swift
[114/248] Compiling SoracomAPI JunctionRedirectionConfiguration.swift
[115/248] Compiling SoracomAPI LagoonRegistrationRequest.swift
[116/248] Compiling SoracomAPI LagoonRegistrationResponse.swift
[117/248] Compiling SoracomAPI LagoonUser.swift
[118/248] Compiling SoracomAPI LagoonUserCreationRequest.swift
[119/248] Compiling SoracomAPI LagoonUserCreationResponse.swift
[120/248] Compiling SoracomAPI LagoonUserEmailUpdatingRequest.swift
[121/248] Compiling SoracomAPI LagoonUserPasswordUpdatingRequest.swift
[122/248] Compiling SoracomAPI LagoonUserPermissionUpdatingRequest.swift
[123/248] Compiling SoracomAPI LastSeen.swift
[124/248] Compiling SoracomAPI ListCouponResponse.swift
[125/248] Compiling SoracomAPI ListOrderResponse.swift
[126/365] Compiling SoracomAPI ExpiryTime.swift
[127/365] Compiling SoracomAPI ExportRequest.swift
[128/365] Compiling SoracomAPI FileExportResponse.swift
[129/365] Compiling SoracomAPI FunnelConfiguration.swift
[130/365] Compiling SoracomAPI FunnelDestination.swift
[131/365] Compiling SoracomAPI GatePeer.swift
[132/365] Compiling SoracomAPI GenerateOperatorsAuthKeyResponse.swift
[133/365] Compiling SoracomAPI GenerateTokenRequest.swift
[134/365] Compiling SoracomAPI GenerateTokenResponse.swift
[135/365] Compiling SoracomAPI GenerateUserAuthKeyResponse.swift
[136/365] Compiling SoracomAPI GetBillingHistoryResponse.swift
[137/365] Compiling SoracomAPI GetExportedFileResponse.swift
[138/365] Compiling SoracomAPI GetLatestBill.swift
[139/365] Compiling SoracomAPI GetOperatorResponse.swift
[140/365] Compiling SoracomAPI GetOrderResponse.swift
[141/365] Compiling SoracomAPI GetPaymentMethodResult.swift
[142/365] Compiling SoracomAPI GetPaymentTransactionResult.swift
[143/365] Compiling SoracomAPI GetShippingAddressResponse.swift
[144/365] Compiling SoracomAPI GetSignupTokenRequest.swift
[145/365] Compiling SoracomAPI GetSignupTokenResponse.swift
[146/365] Compiling SoracomAPI GetUserPasswordResponse.swift
[147/365] Compiling SoracomAPI GetUserPermissionResponse.swift
[148/365] Compiling SoracomAPI Group.swift
[149/365] Compiling SoracomAPI GroupConfigurationUpdateRequest.swift
[150/388] Compiling SoracomAPI ReadDeviceResources.swift
[151/388] Compiling SoracomAPI SetDeviceGroup.swift
[152/388] Compiling SoracomAPI UnobserveDeviceResource.swift
[153/388] Compiling SoracomAPI UnobserveDeviceResources.swift
[154/388] Compiling SoracomAPI UnsetDeviceGroup.swift
[155/388] Compiling SoracomAPI WriteDeviceResource.swift
[156/388] Compiling SoracomAPI CreateDeviceObjectModel.swift
[157/388] Compiling SoracomAPI DeleteDeviceObjectModel.swift
[158/388] Compiling SoracomAPI GetDeviceObjectModel.swift
[159/388] Compiling SoracomAPI ListDeviceObjectModels.swift
[160/388] Compiling SoracomAPI SetDeviceObjectModelScope.swift
[161/388] Compiling SoracomAPI UpdateDeviceObjectModel.swift
[162/388] Compiling SoracomAPI CreateEventHandler.swift
[163/388] Compiling SoracomAPI DeleteEventHandler.swift
[164/388] Compiling SoracomAPI DeleteIgnoreEventHandler.swift
[165/388] Compiling SoracomAPI GetEventHandler.swift
[166/388] Compiling SoracomAPI ListEventHandlers.swift
[167/388] Compiling SoracomAPI ListEventHandlersBySubscriber.swift
[168/388] Compiling SoracomAPI SetIgnoreEventHandler.swift
[169/388] Compiling SoracomAPI UpdateEventHandler.swift
[170/388] Compiling SoracomAPI GetExportedFile.swift
[171/388] Compiling SoracomAPI CreateGroup.swift
[172/388] Compiling SoracomAPI DeleteConfigurationParameter.swift
[173/388] Compiling SoracomAPI DeleteGroup.swift
[174/388] Compiling SoracomAPI ExportLatestBilling.swift
[175/388] Compiling SoracomAPI GetBilling.swift
[176/388] Compiling SoracomAPI GetBillingHistory.swift
[177/388] Compiling SoracomAPI GetBillingPerDay.swift
[178/388] Compiling SoracomAPI GetLatestBilling.swift
[179/388] Compiling SoracomAPI CreateSandboxCoupon.swift
[180/388] Compiling SoracomAPI CreateCredential.swift
[181/388] Compiling SoracomAPI DeleteCredential.swift
[182/388] Compiling SoracomAPI ListCredentials.swift
[183/388] Compiling SoracomAPI UpdateCredential.swift
[184/388] Compiling SoracomAPI DeleteDataEntry.swift
[185/388] Compiling SoracomAPI GetDataEntries.swift
[186/388] Compiling SoracomAPI GetDataEntry.swift
[187/388] Compiling SoracomAPI ListDataSourceResources.swift
[188/388] Compiling SoracomAPI CreateDevice.swift
[189/388] Compiling SoracomAPI DeleteDevice.swift
[190/388] Compiling SoracomAPI DeleteDeviceTag.swift
[191/388] Compiling SoracomAPI ExecuteDeviceResource.swift
[192/388] Compiling SoracomAPI GetDevice.swift
[193/388] Compiling SoracomAPI ListDevices.swift
[194/388] Compiling SoracomAPI ObserveDeviceResource.swift
[195/388] Compiling SoracomAPI ObserveDeviceResources.swift
[196/388] Compiling SoracomAPI PutDeviceTags.swift
[197/388] Compiling SoracomAPI ReadDeviceResource.swift
[198/388] Compiling SoracomAPI PaymentStatementResponse.swift
[199/388] Compiling SoracomAPI ProductModel.swift
[200/388] Compiling SoracomAPI PutIpAddressMapEntryRequest.swift
[201/388] Compiling SoracomAPI RegisterGatePeerRequest.swift
[202/388] Compiling SoracomAPI RegisterLoraDeviceRequest.swift
[203/388] Compiling SoracomAPI RegisterOperatorsRequest.swift
[204/388] Compiling SoracomAPI RegisterPayerInformationModel.swift
[205/388] Compiling SoracomAPI RegisterSubscribersRequest.swift
[206/388] Compiling SoracomAPI ResourceInstance.swift
[207/388] Compiling SoracomAPI RoleResponse.swift
[208/388] Compiling SoracomAPI RuleConfig.swift
[209/388] Compiling SoracomAPI RuleConfigProperty.swift
[210/388] Compiling SoracomAPI SessionEvent.swift
[211/388] Compiling SoracomAPI SessionStatus.swift
[212/388] Compiling SoracomAPI SetDeviceObjectModelScopeRequest.swift
[213/388] Compiling SoracomAPI SetGroupRequest.swift
[214/388] Compiling SoracomAPI SetImeiLockRequest.swift
[215/388] Compiling SoracomAPI SetNetworkSetRequest.swift
[216/388] Compiling SoracomAPI SetUserPermissionRequest.swift
[217/388] Compiling SoracomAPI ShippingAddressModel.swift
[218/388] Compiling SoracomAPI ShippingCostModel.swift
[219/388] Compiling SoracomAPI SigfoxData.swift
[220/388] Compiling SoracomAPI SigfoxDevice.swift
[221/388] Compiling SoracomAPI SigfoxRegistrationRequest.swift
[222/434] Compiling SoracomAPI DeleteGroupTag.swift
[223/434] Compiling SoracomAPI GetGroup.swift
[224/434] Compiling SoracomAPI ListGroups.swift
[225/434] Compiling SoracomAPI ListSubscribersInGroup.swift
[226/434] Compiling SoracomAPI PutConfigurationParameters.swift
[227/434] Compiling SoracomAPI PutGroupTags.swift
[228/434] Compiling SoracomAPI CreateLagoonUser.swift
[229/434] Compiling SoracomAPI DeleteLagoonUser.swift
[230/434] Compiling SoracomAPI ListLagoonUsers.swift
[231/434] Compiling SoracomAPI RegisterLagoon.swift
[232/434] Compiling SoracomAPI TerminateLagoon.swift
[233/434] Compiling SoracomAPI UpdateLagoonUserEmail.swift
[234/434] Compiling SoracomAPI UpdateLagoonUserPassword.swift
[235/434] Compiling SoracomAPI UpdateLagoonUserPermission.swift
[236/434] Compiling SoracomAPI GetLogs.swift
[237/434] Compiling SoracomAPI DeleteLoraDeviceTag.swift
[238/434] Compiling SoracomAPI DisableTerminationOnLoraDevice.swift
[239/434] Compiling SoracomAPI EnableTerminationOnLoraDevice.swift
[240/434] Compiling SoracomAPI GetDataFromLoraDevice.swift
[241/434] Compiling SoracomAPI GetLoraDevice.swift
[242/434] Compiling SoracomAPI ListLoraDevices.swift
[243/434] Compiling SoracomAPI PutLoraDeviceTags.swift
[244/434] Compiling SoracomAPI RegisterLoraDevice.swift
[245/434] Compiling SoracomAPI SendDataToLoraDevice.swift
[246/434] Compiling SoracomAPI EnableMFA.swift
[247/434] Compiling SoracomAPI GenerateAuthToken.swift
[248/434] Compiling SoracomAPI GenerateOperatorAuthKey.swift
[249/434] Compiling SoracomAPI GenerateSupportToken.swift
[250/434] Compiling SoracomAPI GetMFAStatus.swift
[251/434] Compiling SoracomAPI GetOperator.swift
[252/434] Compiling SoracomAPI GetSignupToken.swift
[253/434] Compiling SoracomAPI InitializeOperator.swift
[254/434] Compiling SoracomAPI IssueEmailChangeToken.swift
[255/434] Compiling SoracomAPI IssueMFARevokingToken.swift
[256/434] Compiling SoracomAPI ListOperatorAuthKeys.swift
[257/434] Compiling SoracomAPI RevokeMFA.swift
[258/434] Compiling SoracomAPI UpdateOperatorPassword.swift
[259/434] Compiling SoracomAPI VerifyEmailChangeToken.swift
[260/434] Compiling SoracomAPI VerifyMFA.swift
[261/434] Compiling SoracomAPI VerifyMFARevokingToken.swift
[262/434] Compiling SoracomAPI VerifyOperator.swift
[263/434] Compiling SoracomAPI CancelOrder.swift
[264/434] Compiling SoracomAPI ConfirmOrder.swift
[265/434] Compiling SoracomAPI CreateQuotation.swift
[266/434] Compiling SoracomAPI GetOrder.swift
[267/434] Compiling SoracomAPI ListOrderedSubscribers.swift
[268/434] Compiling SoracomAPI ListOrders.swift
[269/434] Compiling SoracomAPI ListProducts.swift
[270/434] Compiling SoracomAPI SetLoraDeviceGroup.swift
[271/434] Compiling SoracomAPI TerminateLoraDevice.swift
[272/434] Compiling SoracomAPI UnsetLoraDeviceGroup.swift
[273/434] Compiling SoracomAPI DeleteLoraGatewayTag.swift
[274/434] Compiling SoracomAPI DisableTerminationOnLoraGateway.swift
[275/434] Compiling SoracomAPI EnableTerminationOnLoraGateway.swift
[276/434] Compiling SoracomAPI GetLoraGateway.swift
[277/434] Compiling SoracomAPI ListLoraGateways.swift
[278/434] Compiling SoracomAPI PutLoraGatewayTags.swift
[279/434] Compiling SoracomAPI SetLoraNetworkSet.swift
[280/434] Compiling SoracomAPI TerminateLoraGateway.swift
[281/434] Compiling SoracomAPI UnsetLoraNetworkSet.swift
[282/434] Compiling SoracomAPI AddPermissionToLoraNetworkSet.swift
[283/434] Compiling SoracomAPI CreateLoraNetworkSet.swift
[284/434] Compiling SoracomAPI DeleteLoraNetworkSet.swift
[285/434] Compiling SoracomAPI DeleteLoraNetworkSetTag.swift
[286/434] Compiling SoracomAPI GetLoraNetworkSet.swift
[287/434] Compiling SoracomAPI ListGatewaysInLoraNetworkSet.swift
[288/434] Compiling SoracomAPI ListLoraNetworkSets.swift
[289/434] Compiling SoracomAPI PutLoraNetworkSetTags.swift
[290/434] Compiling SoracomAPI RevokePermissionFromLoraNetworkSet.swift
[291/434] Compiling SoracomAPI CreateOperator.swift
[292/434] Compiling SoracomAPI DeleteOperatorAuthKey.swift
[293/434] Compiling SoracomAPI DeleteSandboxOperator.swift
[294/434] Compiling SoracomAPI DeactivateSubscriber.swift
[295/434] Compiling SoracomAPI DeleteSubscriberSession.swift
[296/434] Compiling SoracomAPI DeleteSubscriberTag.swift
[297/434] Compiling SoracomAPI DeleteSubscriberTransferToken.swift
[298/434] Compiling SoracomAPI DisableTermination.swift
[299/434] Compiling SoracomAPI EnableTermination.swift
[300/434] Compiling SoracomAPI GetDataFromSubscriber.swift
[301/434] Compiling SoracomAPI GetSubscriber.swift
[302/434] Compiling SoracomAPI IssueSubscriberTransferToken.swift
[303/434] Compiling SoracomAPI ListSessionEvents.swift
[304/434] Compiling SoracomAPI ListSubscribers.swift
[305/434] Compiling SoracomAPI PutSubscriberTags.swift
[306/434] Compiling SoracomAPI RegisterSubscriber.swift
[307/434] Compiling SoracomAPI ReportLocalInfo.swift
[308/434] Compiling SoracomAPI SendSms.swift
[309/434] Compiling SoracomAPI SetExpiryTime.swift
[310/434] Compiling SoracomAPI SetGroup.swift
[311/434] Compiling SoracomAPI SetImeiLock.swift
[312/434] Compiling SoracomAPI SetSubscriberToStandby.swift
[313/434] Compiling SoracomAPI SuspendSubscriber.swift
[314/434] Compiling SoracomAPI TerminateSubscriber.swift
[315/434] Compiling SoracomAPI UnsetExpiryTime.swift
[316/434] Compiling SoracomAPI UnsetGroup.swift
[317/434] Compiling SoracomAPI RegisterOrderedSim.swift
[318/434] Compiling SoracomAPI ActivatePaymentMethod.swift
[319/434] Compiling SoracomAPI ExportPaymentStatement.swift
[320/434] Compiling SoracomAPI GetPayerInformation.swift
[321/434] Compiling SoracomAPI GetPaymentMethod.swift
[322/434] Compiling SoracomAPI GetPaymentTransaction.swift
[323/434] Compiling SoracomAPI ListCoupons.swift
[324/434] Compiling SoracomAPI ListPaymentStatements.swift
[325/434] Compiling SoracomAPI RegisterCoupon.swift
[326/434] Compiling SoracomAPI RegisterPayerInformation.swift
[327/434] Compiling SoracomAPI RegisterWebPayPaymentMethod.swift
[328/434] Compiling SoracomAPI SearchSubscribers.swift
[329/434] Compiling SoracomAPI AttachRole.swift
[330/434] Compiling SoracomAPI CreateRole.swift
[331/434] Compiling SoracomAPI DeleteRole.swift
[332/434] Compiling SoracomAPI DetachRole.swift
[333/434] Compiling SoracomAPI GetRole.swift
[334/434] Compiling SoracomAPI ListRoleAttachedUsers.swift
[335/434] Compiling SoracomAPI ListRoles.swift
[336/434] Compiling SoracomAPI ListUserRoles.swift
[337/434] Compiling SoracomAPI UpdateRole.swift
[338/434] Compiling SoracomAPI CreateShippingAddress.swift
[339/434] Compiling SoracomAPI DeleteShippingAddress.swift
[340/434] Compiling SoracomAPI GetShippingAddress.swift
[341/434] Compiling SoracomAPI ListShippingAddresses.swift
[342/434] Compiling SoracomAPI UpdateShippingAddress.swift
[343/434] Compiling SoracomAPI DeleteSigfoxDeviceTag.swift
[344/434] Compiling SoracomAPI DisableTerminationOnSigfoxDevice.swift
[345/434] Compiling SoracomAPI EnableTerminationOnSigfoxDevice.swift
[346/434] Compiling SoracomAPI GetDataFromSigfoxDevice.swift
[347/434] Compiling SoracomAPI GetSigfoxDevice.swift
[348/434] Compiling SoracomAPI ListSigfoxDevices.swift
[349/434] Compiling SoracomAPI PutSigfoxDeviceTags.swift
[350/434] Compiling SoracomAPI RegisterSigfoxDevice.swift
[351/434] Compiling SoracomAPI SendDataToSigfoxDevice.swift
[352/434] Compiling SoracomAPI SetSigfoxDeviceGroup.swift
[353/434] Compiling SoracomAPI TerminateSigfoxDevice.swift
[354/434] Compiling SoracomAPI UnsetSigfoxDeviceGroup.swift
[355/434] Compiling SoracomAPI ExportAirStats.swift
[356/434] Compiling SoracomAPI ExportBeamStats.swift
[357/434] Compiling SoracomAPI GetAirStats.swift
[358/434] Compiling SoracomAPI GetBeamStats.swift
[359/434] Compiling SoracomAPI InsertAirStats.swift
[360/434] Compiling SoracomAPI InsertBeamStats.swift
[361/434] Compiling SoracomAPI ActivateSubscriber.swift
[362/434] Compiling SoracomAPI CreateSandboxSubscriber.swift
[363/434] Compiling SoracomAPI UnsetImeiLock.swift
[364/434] Compiling SoracomAPI UpdateSpeedClass.swift
[365/434] Compiling SoracomAPI VerifySubscriberTransferToken.swift
[366/434] Compiling SoracomAPI CreateUser.swift
[367/434] Compiling SoracomAPI CreateUserPassword.swift
[368/434] Compiling SoracomAPI DeleteUser.swift
[369/434] Compiling SoracomAPI DeleteUserAuthKey.swift
[370/434] Compiling SoracomAPI DeleteUserPassword.swift
[371/434] Compiling SoracomAPI GenerateUserAuthKey.swift
[372/434] Compiling SoracomAPI GetUser.swift
[373/434] Compiling SoracomAPI GetUserAuthKey.swift
[374/434] Compiling SoracomAPI GetUserPermission.swift
[375/434] Compiling SoracomAPI HasUserPassword.swift
[376/434] Compiling SoracomAPI ListUserAuthKeys.swift
[377/434] Compiling SoracomAPI ListUsers.swift
[378/434] Compiling SoracomAPI UpdateUser.swift
[379/434] Compiling SoracomAPI UpdateUserPassword.swift
[380/434] Compiling SoracomAPI UpdateUserPermission.swift
[381/434] Compiling SoracomAPI CloseGate.swift
[382/434] Compiling SoracomAPI CreateMirroringPeer.swift
[383/434] Compiling SoracomAPI CreateVirtualPrivateGateway.swift
[384/434] Compiling SoracomAPI CreateVpcPeeringConnection.swift
[385/434] Compiling SoracomAPI DeleteMirroringPeer.swift
[386/434] Compiling SoracomAPI BeamCounts+Extras.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[387/434] Compiling SoracomAPI CredentialsModel+Extras.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[388/434] Compiling SoracomAPI CreditCard+Extras.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[389/434] Compiling SoracomAPI NoResponseBody.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[390/434] Compiling SoracomAPI Subscriber+Extras.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[391/434] Compiling SoracomAPI Tag+Extras.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[392/434] Compiling SoracomAPI TagUpdateRequest+Extras.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[393/434] Compiling SoracomAPI Request+Auth.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[394/434] Compiling SoracomAPI Request+Group.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[395/434] Compiling SoracomAPI Request+Operator.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[396/434] Compiling SoracomAPI Request+Subscriber.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[397/434] Compiling SoracomAPI Request.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[398/434] Compiling SoracomAPI RequestQueue.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[399/434] Compiling SoracomAPI RequestResponseFormatter.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[400/434] Compiling SoracomAPI Response.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[401/434] Compiling SoracomAPI SoracomCredentials.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[402/434] Compiling SoracomAPI Codable+SoracomAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[403/434] Compiling SoracomAPI Data+SoracomAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[404/434] Compiling SoracomAPI Keychain.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[405/434] Compiling SoracomAPI Metrics.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[406/434] Compiling SoracomAPI NSDate+SoracomAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[407/434] Compiling SoracomAPI String+SoracomAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[408/434] Compiling SoracomAPI TextStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Models/TagUpdateRequest+Extras.swift:14:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
12 | }
13 |
14 | extension Array: ExpressibleByDictionaryLiteral where Element == TagUpdateRequest {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
15 |
16 | public init(dictionaryLiteral elements: (String, String)...) {
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/Request.swift:508:5: warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
506 | /// Return attractive and understandable end-user-facing textual representations of the API request. Intended for debugging and learning. (And maybe verbose logging?)
507 |
508 | open var description: String {
| `- warning: non-'@objc' property declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
509 | let f = RequestResponseFormatter()
510 | return f.formatRequest(self)
[409/434] Compiling SoracomAPI DeleteVirtualPrivateGatewayIpAddressMapEntry.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[410/434] Compiling SoracomAPI DeleteVpcPeeringConnection.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[411/434] Compiling SoracomAPI GetVirtualPrivateGateway.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[412/434] Compiling SoracomAPI ListGatePeers.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[413/434] Compiling SoracomAPI ListVirtualPrivateGatewayIpAddressMapEntries.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[414/434] Compiling SoracomAPI ListVirtualPrivateGateways.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[415/434] Compiling SoracomAPI OpenGate.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[416/434] Compiling SoracomAPI PutVirtualPrivateGatewayIpAddressMapEntry.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[417/434] Compiling SoracomAPI RegisterGatePeer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[418/434] Compiling SoracomAPI SetInspectionConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[419/434] Compiling SoracomAPI SetRedirectionConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[420/434] Compiling SoracomAPI TerminateVirtualPrivateGateway.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[421/434] Compiling SoracomAPI UnregisterGatePeer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[422/434] Compiling SoracomAPI UnsetInspectionConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[423/434] Compiling SoracomAPI UnsetRedirectionConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[424/434] Compiling SoracomAPI UpdateMirroringPeer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[425/434] Compiling SoracomAPI ResponseDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[426/434] Compiling SoracomAPI Client.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[427/434] Compiling SoracomAPI Constants.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[428/434] Compiling SoracomAPI Enums.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[429/434] Compiling SoracomAPI HTTPMethod.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[430/434] Compiling SoracomAPI JSONComparison.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[431/434] Compiling SoracomAPI AuthRequest+Extras.swift
/Users/admin/builder/spi-builder-workspace/Sources/SoracomAPI/AutoGeneratedCode/ResponseDecoder.swift:5:5: warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
3 | extension Response {
4 |
5 | open func parse() -> T? {
| `- warning: non-'@objc' instance method declared in extension cannot be overridden; use 'public' instead; this will be an error in a future Swift language mode
6 |
7 | guard HTTPStatus == baseRequest.expectedHTTPStatus else {
[432/440] Compiling SoracomAPIDemo main.swift
[433/440] Compiling SoracomAPIDemo Strings.swift
[434/440] Compiling SoracomAPIDemo SimpleMenu.swift
[435/440] Emitting module SoracomAPIDemo
[436/440] Compiling SoracomAPIDemo InputReader.swift
[437/440] Compiling SoracomAPIDemo CLIDemo.swift
[437/440] Write Objects.LinkFileList
[438/440] Linking SoracomAPIDemo
[439/440] Applying SoracomAPIDemo
Build complete! (10.91s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "SoracomAPI",
"name" : "SoracomAPI",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "SoracomAPI",
"targets" : [
"SoracomAPI"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SoracomAPIDemo",
"targets" : [
"SoracomAPIDemo"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "SoracomAPITests",
"module_type" : "SwiftTarget",
"name" : "SoracomAPITests",
"path" : "Tests/SoracomAPITests",
"sources" : [
"APIErrorTests.swift",
"APIOperationTests.swift",
"APIStructuresTests.swift",
"BaseTestCase.swift",
"BaseTestCaseTests.swift",
"CredentialTests.swift",
"DevelopmentEnvironmentTests.swift",
"Fixtures.swift",
"IssueDebuggingTests.swift",
"JSONComparisonTests.swift",
"KeychainTests.swift",
"ListOrdersTests.swift",
"ModelExtensionTests.swift",
"NSDate+SoracomAPITests.swift",
"OrdersTests.swift",
"RegisterSIMTests.swift",
"Request+AuthTests.swift",
"Request+CredentialsTests.swift",
"Request+GroupTests.swift",
"Request+SandboxTests.swift",
"Request+SubscriberTests.swift",
"RequestTests.swift",
"ResponseTests.swift",
"SerializationTests.swift",
"SoracomCredentialsTests.swift",
"SubscriberTests.swift",
"TagUpdateRequestTests.swift"
],
"target_dependencies" : [
"SoracomAPI"
],
"type" : "test"
},
{
"c99name" : "SoracomAPIDemo",
"module_type" : "SwiftTarget",
"name" : "SoracomAPIDemo",
"path" : "Sources/SoracomAPIDemo",
"product_memberships" : [
"SoracomAPIDemo"
],
"sources" : [
"CLIDemo.swift",
"InputReader.swift",
"SimpleMenu.swift",
"Strings.swift",
"main.swift"
],
"target_dependencies" : [
"SoracomAPI"
],
"type" : "executable"
},
{
"c99name" : "SoracomAPI",
"module_type" : "SwiftTarget",
"name" : "SoracomAPI",
"path" : "Sources/SoracomAPI",
"product_memberships" : [
"SoracomAPI",
"SoracomAPIDemo"
],
"sources" : [
"APIError.swift",
"APIOperation.swift",
"AutoGeneratedCode/API.swift",
"AutoGeneratedCode/AnyCodable.swift",
"AutoGeneratedCode/Coding.swift",
"AutoGeneratedCode/Models/APICallError.swift",
"AutoGeneratedCode/Models/APICallErrorMessage.swift",
"AutoGeneratedCode/Models/APIKeyResponse.swift",
"AutoGeneratedCode/Models/ActionConfig.swift",
"AutoGeneratedCode/Models/ActionConfigProperty.swift",
"AutoGeneratedCode/Models/AirStatsResponse.swift",
"AutoGeneratedCode/Models/AttachRoleRequest.swift",
"AutoGeneratedCode/Models/AttributeUpdate.swift",
"AutoGeneratedCode/Models/AuthKeyResponse.swift",
"AutoGeneratedCode/Models/AuthRequest.swift",
"AutoGeneratedCode/Models/AuthResponse.swift",
"AutoGeneratedCode/Models/BeamCounts.swift",
"AutoGeneratedCode/Models/BeamStatsResponse.swift",
"AutoGeneratedCode/Models/Config.swift",
"AutoGeneratedCode/Models/CouponResponse.swift",
"AutoGeneratedCode/Models/CreateAndUpdateCredentialsModel.swift",
"AutoGeneratedCode/Models/CreateCouponRequest.swift",
"AutoGeneratedCode/Models/CreateCouponResponse.swift",
"AutoGeneratedCode/Models/CreateEstimatedOrderRequest.swift",
"AutoGeneratedCode/Models/CreateEventHandlerRequest.swift",
"AutoGeneratedCode/Models/CreateGroupRequest.swift",
"AutoGeneratedCode/Models/CreateOrUpdateRoleRequest.swift",
"AutoGeneratedCode/Models/CreateRoleResponse.swift",
"AutoGeneratedCode/Models/CreateSubscriberResponse.swift",
"AutoGeneratedCode/Models/CreateUserPasswordRequest.swift",
"AutoGeneratedCode/Models/CreateUserRequest.swift",
"AutoGeneratedCode/Models/CreateVirtualPrivateGatewayRequest.swift",
"AutoGeneratedCode/Models/CreateVpcPeeringConnectionRequest.swift",
"AutoGeneratedCode/Models/CredentialsModel.swift",
"AutoGeneratedCode/Models/CreditCard.swift",
"AutoGeneratedCode/Models/DailyBill.swift",
"AutoGeneratedCode/Models/DailyBillResponse.swift",
"AutoGeneratedCode/Models/DataEntry.swift",
"AutoGeneratedCode/Models/DataSourceResourceMetadata.swift",
"AutoGeneratedCode/Models/DataTrafficStats.swift",
"AutoGeneratedCode/Models/DataTrafficStatsMap.swift",
"AutoGeneratedCode/Models/Device.swift",
"AutoGeneratedCode/Models/DeviceObjectModel.swift",
"AutoGeneratedCode/Models/EnableMFAOTPResponse.swift",
"AutoGeneratedCode/Models/ErrorType.swift",
"AutoGeneratedCode/Models/EstimatedOrderItemModel.swift",
"AutoGeneratedCode/Models/EstimatedOrderModel.swift",
"AutoGeneratedCode/Models/EventHandlerModel.swift",
"AutoGeneratedCode/Models/ExpiryTime.swift",
"AutoGeneratedCode/Models/ExportRequest.swift",
"AutoGeneratedCode/Models/FileExportResponse.swift",
"AutoGeneratedCode/Models/FunnelConfiguration.swift",
"AutoGeneratedCode/Models/FunnelDestination.swift",
"AutoGeneratedCode/Models/GatePeer.swift",
"AutoGeneratedCode/Models/GenerateOperatorsAuthKeyResponse.swift",
"AutoGeneratedCode/Models/GenerateTokenRequest.swift",
"AutoGeneratedCode/Models/GenerateTokenResponse.swift",
"AutoGeneratedCode/Models/GenerateUserAuthKeyResponse.swift",
"AutoGeneratedCode/Models/GetBillingHistoryResponse.swift",
"AutoGeneratedCode/Models/GetExportedFileResponse.swift",
"AutoGeneratedCode/Models/GetLatestBill.swift",
"AutoGeneratedCode/Models/GetOperatorResponse.swift",
"AutoGeneratedCode/Models/GetOrderResponse.swift",
"AutoGeneratedCode/Models/GetPaymentMethodResult.swift",
"AutoGeneratedCode/Models/GetPaymentTransactionResult.swift",
"AutoGeneratedCode/Models/GetShippingAddressResponse.swift",
"AutoGeneratedCode/Models/GetSignupTokenRequest.swift",
"AutoGeneratedCode/Models/GetSignupTokenResponse.swift",
"AutoGeneratedCode/Models/GetUserPasswordResponse.swift",
"AutoGeneratedCode/Models/GetUserPermissionResponse.swift",
"AutoGeneratedCode/Models/Group.swift",
"AutoGeneratedCode/Models/GroupConfigurationUpdateRequest.swift",
"AutoGeneratedCode/Models/ImeiLock.swift",
"AutoGeneratedCode/Models/InitRequest.swift",
"AutoGeneratedCode/Models/InsertAirStatsRequest.swift",
"AutoGeneratedCode/Models/InsertBeamStatsRequest.swift",
"AutoGeneratedCode/Models/IpAddressMapEntry.swift",
"AutoGeneratedCode/Models/IssueEmailChangeTokenRequest.swift",
"AutoGeneratedCode/Models/IssuePasswordResetTokenRequest.swift",
"AutoGeneratedCode/Models/IssueSubscriberTransferTokenRequest.swift",
"AutoGeneratedCode/Models/IssueSubscriberTransferTokenResponse.swift",
"AutoGeneratedCode/Models/JunctionInspectionConfiguration.swift",
"AutoGeneratedCode/Models/JunctionMirroringConfiguration.swift",
"AutoGeneratedCode/Models/JunctionMirroringPeer.swift",
"AutoGeneratedCode/Models/JunctionRedirectionConfiguration.swift",
"AutoGeneratedCode/Models/LagoonRegistrationRequest.swift",
"AutoGeneratedCode/Models/LagoonRegistrationResponse.swift",
"AutoGeneratedCode/Models/LagoonUser.swift",
"AutoGeneratedCode/Models/LagoonUserCreationRequest.swift",
"AutoGeneratedCode/Models/LagoonUserCreationResponse.swift",
"AutoGeneratedCode/Models/LagoonUserEmailUpdatingRequest.swift",
"AutoGeneratedCode/Models/LagoonUserPasswordUpdatingRequest.swift",
"AutoGeneratedCode/Models/LagoonUserPermissionUpdatingRequest.swift",
"AutoGeneratedCode/Models/LastSeen.swift",
"AutoGeneratedCode/Models/ListCouponResponse.swift",
"AutoGeneratedCode/Models/ListOrderResponse.swift",
"AutoGeneratedCode/Models/ListOrderedSubscriberResponse.swift",
"AutoGeneratedCode/Models/ListPaymentStatementResponse.swift",
"AutoGeneratedCode/Models/ListProductResponse.swift",
"AutoGeneratedCode/Models/ListRolesResponse.swift",
"AutoGeneratedCode/Models/ListShippingAddressResponse.swift",
"AutoGeneratedCode/Models/ListSubOperatorsResponse.swift",
"AutoGeneratedCode/Models/LogEntry.swift",
"AutoGeneratedCode/Models/LoraData.swift",
"AutoGeneratedCode/Models/LoraDevice.swift",
"AutoGeneratedCode/Models/LoraGateway.swift",
"AutoGeneratedCode/Models/LoraNetworkSet.swift",
"AutoGeneratedCode/Models/MFAAuthenticationRequest.swift",
"AutoGeneratedCode/Models/MFAIssueRevokingTokenRequest.swift",
"AutoGeneratedCode/Models/MFARevokingTokenVerifyRequest.swift",
"AutoGeneratedCode/Models/MFAStatusOfUseResponse.swift",
"AutoGeneratedCode/Models/Map.swift",
"AutoGeneratedCode/Models/MonthlyBill.swift",
"AutoGeneratedCode/Models/ObjectInstance.swift",
"AutoGeneratedCode/Models/OpenGateRequest.swift",
"AutoGeneratedCode/Models/OperatorMFAVerifyingResponse.swift",
"AutoGeneratedCode/Models/OrderItemModel.swift",
"AutoGeneratedCode/Models/OrderedSubscriber.swift",
"AutoGeneratedCode/Models/PaymentAmount.swift",
"AutoGeneratedCode/Models/PaymentDescription.swift",
"AutoGeneratedCode/Models/PaymentStatementResponse.swift",
"AutoGeneratedCode/Models/ProductModel.swift",
"AutoGeneratedCode/Models/PutIpAddressMapEntryRequest.swift",
"AutoGeneratedCode/Models/RegisterGatePeerRequest.swift",
"AutoGeneratedCode/Models/RegisterLoraDeviceRequest.swift",
"AutoGeneratedCode/Models/RegisterOperatorsRequest.swift",
"AutoGeneratedCode/Models/RegisterPayerInformationModel.swift",
"AutoGeneratedCode/Models/RegisterSubscribersRequest.swift",
"AutoGeneratedCode/Models/ResourceInstance.swift",
"AutoGeneratedCode/Models/RoleResponse.swift",
"AutoGeneratedCode/Models/RuleConfig.swift",
"AutoGeneratedCode/Models/RuleConfigProperty.swift",
"AutoGeneratedCode/Models/SessionEvent.swift",
"AutoGeneratedCode/Models/SessionStatus.swift",
"AutoGeneratedCode/Models/SetDeviceObjectModelScopeRequest.swift",
"AutoGeneratedCode/Models/SetGroupRequest.swift",
"AutoGeneratedCode/Models/SetImeiLockRequest.swift",
"AutoGeneratedCode/Models/SetNetworkSetRequest.swift",
"AutoGeneratedCode/Models/SetUserPermissionRequest.swift",
"AutoGeneratedCode/Models/ShippingAddressModel.swift",
"AutoGeneratedCode/Models/ShippingCostModel.swift",
"AutoGeneratedCode/Models/SigfoxData.swift",
"AutoGeneratedCode/Models/SigfoxDevice.swift",
"AutoGeneratedCode/Models/SigfoxRegistrationRequest.swift",
"AutoGeneratedCode/Models/SmsForwardingReport.swift",
"AutoGeneratedCode/Models/SmsForwardingRequest.swift",
"AutoGeneratedCode/Models/SoracomBeamStats.swift",
"AutoGeneratedCode/Models/Subscriber.swift",
"AutoGeneratedCode/Models/SupportTokenResponse.swift",
"AutoGeneratedCode/Models/Tag.swift",
"AutoGeneratedCode/Models/TagUpdateRequest.swift",
"AutoGeneratedCode/Models/UpdateEventHandlerRequest.swift",
"AutoGeneratedCode/Models/UpdatePasswordRequest.swift",
"AutoGeneratedCode/Models/UpdatePermissionRequest.swift",
"AutoGeneratedCode/Models/UpdateSpeedClassRequest.swift",
"AutoGeneratedCode/Models/UpdateUserRequest.swift",
"AutoGeneratedCode/Models/UserDetailResponse.swift",
"AutoGeneratedCode/Models/VerifyEmailChangeTokenRequest.swift",
"AutoGeneratedCode/Models/VerifyOperatorsRequest.swift",
"AutoGeneratedCode/Models/VerifyPasswordResetTokenRequest.swift",
"AutoGeneratedCode/Models/VerifySubscriberTransferTokenRequest.swift",
"AutoGeneratedCode/Models/VerifySubscriberTransferTokenResponse.swift",
"AutoGeneratedCode/Models/VirtualPrivateGateway.swift",
"AutoGeneratedCode/Models/VpcPeeringConnection.swift",
"AutoGeneratedCode/Requests/Auth/Auth.swift",
"AutoGeneratedCode/Requests/Auth/IssuePasswordResetToken.swift",
"AutoGeneratedCode/Requests/Auth/VerifyPasswordResetToken.swift",
"AutoGeneratedCode/Requests/Billing/ExportBilling.swift",
"AutoGeneratedCode/Requests/Billing/ExportLatestBilling.swift",
"AutoGeneratedCode/Requests/Billing/GetBilling.swift",
"AutoGeneratedCode/Requests/Billing/GetBillingHistory.swift",
"AutoGeneratedCode/Requests/Billing/GetBillingPerDay.swift",
"AutoGeneratedCode/Requests/Billing/GetLatestBilling.swift",
"AutoGeneratedCode/Requests/Coupon/CreateSandboxCoupon.swift",
"AutoGeneratedCode/Requests/Credential/CreateCredential.swift",
"AutoGeneratedCode/Requests/Credential/DeleteCredential.swift",
"AutoGeneratedCode/Requests/Credential/ListCredentials.swift",
"AutoGeneratedCode/Requests/Credential/UpdateCredential.swift",
"AutoGeneratedCode/Requests/DataEntry/DeleteDataEntry.swift",
"AutoGeneratedCode/Requests/DataEntry/GetDataEntries.swift",
"AutoGeneratedCode/Requests/DataEntry/GetDataEntry.swift",
"AutoGeneratedCode/Requests/DataEntry/ListDataSourceResources.swift",
"AutoGeneratedCode/Requests/Device/CreateDevice.swift",
"AutoGeneratedCode/Requests/Device/DeleteDevice.swift",
"AutoGeneratedCode/Requests/Device/DeleteDeviceTag.swift",
"AutoGeneratedCode/Requests/Device/ExecuteDeviceResource.swift",
"AutoGeneratedCode/Requests/Device/GetDevice.swift",
"AutoGeneratedCode/Requests/Device/ListDevices.swift",
"AutoGeneratedCode/Requests/Device/ObserveDeviceResource.swift",
"AutoGeneratedCode/Requests/Device/ObserveDeviceResources.swift",
"AutoGeneratedCode/Requests/Device/PutDeviceTags.swift",
"AutoGeneratedCode/Requests/Device/ReadDeviceResource.swift",
"AutoGeneratedCode/Requests/Device/ReadDeviceResources.swift",
"AutoGeneratedCode/Requests/Device/SetDeviceGroup.swift",
"AutoGeneratedCode/Requests/Device/UnobserveDeviceResource.swift",
"AutoGeneratedCode/Requests/Device/UnobserveDeviceResources.swift",
"AutoGeneratedCode/Requests/Device/UnsetDeviceGroup.swift",
"AutoGeneratedCode/Requests/Device/WriteDeviceResource.swift",
"AutoGeneratedCode/Requests/DeviceObjectModel/CreateDeviceObjectModel.swift",
"AutoGeneratedCode/Requests/DeviceObjectModel/DeleteDeviceObjectModel.swift",
"AutoGeneratedCode/Requests/DeviceObjectModel/GetDeviceObjectModel.swift",
"AutoGeneratedCode/Requests/DeviceObjectModel/ListDeviceObjectModels.swift",
"AutoGeneratedCode/Requests/DeviceObjectModel/SetDeviceObjectModelScope.swift",
"AutoGeneratedCode/Requests/DeviceObjectModel/UpdateDeviceObjectModel.swift",
"AutoGeneratedCode/Requests/EventHandler/CreateEventHandler.swift",
"AutoGeneratedCode/Requests/EventHandler/DeleteEventHandler.swift",
"AutoGeneratedCode/Requests/EventHandler/DeleteIgnoreEventHandler.swift",
"AutoGeneratedCode/Requests/EventHandler/GetEventHandler.swift",
"AutoGeneratedCode/Requests/EventHandler/ListEventHandlers.swift",
"AutoGeneratedCode/Requests/EventHandler/ListEventHandlersBySubscriber.swift",
"AutoGeneratedCode/Requests/EventHandler/SetIgnoreEventHandler.swift",
"AutoGeneratedCode/Requests/EventHandler/UpdateEventHandler.swift",
"AutoGeneratedCode/Requests/Files/GetExportedFile.swift",
"AutoGeneratedCode/Requests/Group/CreateGroup.swift",
"AutoGeneratedCode/Requests/Group/DeleteConfigurationParameter.swift",
"AutoGeneratedCode/Requests/Group/DeleteGroup.swift",
"AutoGeneratedCode/Requests/Group/DeleteGroupTag.swift",
"AutoGeneratedCode/Requests/Group/GetGroup.swift",
"AutoGeneratedCode/Requests/Group/ListGroups.swift",
"AutoGeneratedCode/Requests/Group/ListSubscribersInGroup.swift",
"AutoGeneratedCode/Requests/Group/PutConfigurationParameters.swift",
"AutoGeneratedCode/Requests/Group/PutGroupTags.swift",
"AutoGeneratedCode/Requests/Lagoon/CreateLagoonUser.swift",
"AutoGeneratedCode/Requests/Lagoon/DeleteLagoonUser.swift",
"AutoGeneratedCode/Requests/Lagoon/ListLagoonUsers.swift",
"AutoGeneratedCode/Requests/Lagoon/RegisterLagoon.swift",
"AutoGeneratedCode/Requests/Lagoon/TerminateLagoon.swift",
"AutoGeneratedCode/Requests/Lagoon/UpdateLagoonUserEmail.swift",
"AutoGeneratedCode/Requests/Lagoon/UpdateLagoonUserPassword.swift",
"AutoGeneratedCode/Requests/Lagoon/UpdateLagoonUserPermission.swift",
"AutoGeneratedCode/Requests/Log/GetLogs.swift",
"AutoGeneratedCode/Requests/LoraDevice/DeleteLoraDeviceTag.swift",
"AutoGeneratedCode/Requests/LoraDevice/DisableTerminationOnLoraDevice.swift",
"AutoGeneratedCode/Requests/LoraDevice/EnableTerminationOnLoraDevice.swift",
"AutoGeneratedCode/Requests/LoraDevice/GetDataFromLoraDevice.swift",
"AutoGeneratedCode/Requests/LoraDevice/GetLoraDevice.swift",
"AutoGeneratedCode/Requests/LoraDevice/ListLoraDevices.swift",
"AutoGeneratedCode/Requests/LoraDevice/PutLoraDeviceTags.swift",
"AutoGeneratedCode/Requests/LoraDevice/RegisterLoraDevice.swift",
"AutoGeneratedCode/Requests/LoraDevice/SendDataToLoraDevice.swift",
"AutoGeneratedCode/Requests/LoraDevice/SetLoraDeviceGroup.swift",
"AutoGeneratedCode/Requests/LoraDevice/TerminateLoraDevice.swift",
"AutoGeneratedCode/Requests/LoraDevice/UnsetLoraDeviceGroup.swift",
"AutoGeneratedCode/Requests/LoraGateway/DeleteLoraGatewayTag.swift",
"AutoGeneratedCode/Requests/LoraGateway/DisableTerminationOnLoraGateway.swift",
"AutoGeneratedCode/Requests/LoraGateway/EnableTerminationOnLoraGateway.swift",
"AutoGeneratedCode/Requests/LoraGateway/GetLoraGateway.swift",
"AutoGeneratedCode/Requests/LoraGateway/ListLoraGateways.swift",
"AutoGeneratedCode/Requests/LoraGateway/PutLoraGatewayTags.swift",
"AutoGeneratedCode/Requests/LoraGateway/SetLoraNetworkSet.swift",
"AutoGeneratedCode/Requests/LoraGateway/TerminateLoraGateway.swift",
"AutoGeneratedCode/Requests/LoraGateway/UnsetLoraNetworkSet.swift",
"AutoGeneratedCode/Requests/LoraNetworkSet/AddPermissionToLoraNetworkSet.swift",
"AutoGeneratedCode/Requests/LoraNetworkSet/CreateLoraNetworkSet.swift",
"AutoGeneratedCode/Requests/LoraNetworkSet/DeleteLoraNetworkSet.swift",
"AutoGeneratedCode/Requests/LoraNetworkSet/DeleteLoraNetworkSetTag.swift",
"AutoGeneratedCode/Requests/LoraNetworkSet/GetLoraNetworkSet.swift",
"AutoGeneratedCode/Requests/LoraNetworkSet/ListGatewaysInLoraNetworkSet.swift",
"AutoGeneratedCode/Requests/LoraNetworkSet/ListLoraNetworkSets.swift",
"AutoGeneratedCode/Requests/LoraNetworkSet/PutLoraNetworkSetTags.swift",
"AutoGeneratedCode/Requests/LoraNetworkSet/RevokePermissionFromLoraNetworkSet.swift",
"AutoGeneratedCode/Requests/Operator/CreateOperator.swift",
"AutoGeneratedCode/Requests/Operator/DeleteOperatorAuthKey.swift",
"AutoGeneratedCode/Requests/Operator/DeleteSandboxOperator.swift",
"AutoGeneratedCode/Requests/Operator/EnableMFA.swift",
"AutoGeneratedCode/Requests/Operator/GenerateAuthToken.swift",
"AutoGeneratedCode/Requests/Operator/GenerateOperatorAuthKey.swift",
"AutoGeneratedCode/Requests/Operator/GenerateSupportToken.swift",
"AutoGeneratedCode/Requests/Operator/GetMFAStatus.swift",
"AutoGeneratedCode/Requests/Operator/GetOperator.swift",
"AutoGeneratedCode/Requests/Operator/GetSignupToken.swift",
"AutoGeneratedCode/Requests/Operator/InitializeOperator.swift",
"AutoGeneratedCode/Requests/Operator/IssueEmailChangeToken.swift",
"AutoGeneratedCode/Requests/Operator/IssueMFARevokingToken.swift",
"AutoGeneratedCode/Requests/Operator/ListOperatorAuthKeys.swift",
"AutoGeneratedCode/Requests/Operator/RevokeMFA.swift",
"AutoGeneratedCode/Requests/Operator/UpdateOperatorPassword.swift",
"AutoGeneratedCode/Requests/Operator/VerifyEmailChangeToken.swift",
"AutoGeneratedCode/Requests/Operator/VerifyMFA.swift",
"AutoGeneratedCode/Requests/Operator/VerifyMFARevokingToken.swift",
"AutoGeneratedCode/Requests/Operator/VerifyOperator.swift",
"AutoGeneratedCode/Requests/Order/CancelOrder.swift",
"AutoGeneratedCode/Requests/Order/ConfirmOrder.swift",
"AutoGeneratedCode/Requests/Order/CreateQuotation.swift",
"AutoGeneratedCode/Requests/Order/GetOrder.swift",
"AutoGeneratedCode/Requests/Order/ListOrderedSubscribers.swift",
"AutoGeneratedCode/Requests/Order/ListOrders.swift",
"AutoGeneratedCode/Requests/Order/ListProducts.swift",
"AutoGeneratedCode/Requests/Order/RegisterOrderedSim.swift",
"AutoGeneratedCode/Requests/Payment/ActivatePaymentMethod.swift",
"AutoGeneratedCode/Requests/Payment/ExportPaymentStatement.swift",
"AutoGeneratedCode/Requests/Payment/GetPayerInformation.swift",
"AutoGeneratedCode/Requests/Payment/GetPaymentMethod.swift",
"AutoGeneratedCode/Requests/Payment/GetPaymentTransaction.swift",
"AutoGeneratedCode/Requests/Payment/ListCoupons.swift",
"AutoGeneratedCode/Requests/Payment/ListPaymentStatements.swift",
"AutoGeneratedCode/Requests/Payment/RegisterCoupon.swift",
"AutoGeneratedCode/Requests/Payment/RegisterPayerInformation.swift",
"AutoGeneratedCode/Requests/Payment/RegisterWebPayPaymentMethod.swift",
"AutoGeneratedCode/Requests/Query/SearchSubscribers.swift",
"AutoGeneratedCode/Requests/Role/AttachRole.swift",
"AutoGeneratedCode/Requests/Role/CreateRole.swift",
"AutoGeneratedCode/Requests/Role/DeleteRole.swift",
"AutoGeneratedCode/Requests/Role/DetachRole.swift",
"AutoGeneratedCode/Requests/Role/GetRole.swift",
"AutoGeneratedCode/Requests/Role/ListRoleAttachedUsers.swift",
"AutoGeneratedCode/Requests/Role/ListRoles.swift",
"AutoGeneratedCode/Requests/Role/ListUserRoles.swift",
"AutoGeneratedCode/Requests/Role/UpdateRole.swift",
"AutoGeneratedCode/Requests/ShippingAddress/CreateShippingAddress.swift",
"AutoGeneratedCode/Requests/ShippingAddress/DeleteShippingAddress.swift",
"AutoGeneratedCode/Requests/ShippingAddress/GetShippingAddress.swift",
"AutoGeneratedCode/Requests/ShippingAddress/ListShippingAddresses.swift",
"AutoGeneratedCode/Requests/ShippingAddress/UpdateShippingAddress.swift",
"AutoGeneratedCode/Requests/SigfoxDevice/DeleteSigfoxDeviceTag.swift",
"AutoGeneratedCode/Requests/SigfoxDevice/DisableTerminationOnSigfoxDevice.swift",
"AutoGeneratedCode/Requests/SigfoxDevice/EnableTerminationOnSigfoxDevice.swift",
"AutoGeneratedCode/Requests/SigfoxDevice/GetDataFromSigfoxDevice.swift",
"AutoGeneratedCode/Requests/SigfoxDevice/GetSigfoxDevice.swift",
"AutoGeneratedCode/Requests/SigfoxDevice/ListSigfoxDevices.swift",
"AutoGeneratedCode/Requests/SigfoxDevice/PutSigfoxDeviceTags.swift",
"AutoGeneratedCode/Requests/SigfoxDevice/RegisterSigfoxDevice.swift",
"AutoGeneratedCode/Requests/SigfoxDevice/SendDataToSigfoxDevice.swift",
"AutoGeneratedCode/Requests/SigfoxDevice/SetSigfoxDeviceGroup.swift",
"AutoGeneratedCode/Requests/SigfoxDevice/TerminateSigfoxDevice.swift",
"AutoGeneratedCode/Requests/SigfoxDevice/UnsetSigfoxDeviceGroup.swift",
"AutoGeneratedCode/Requests/Stats/ExportAirStats.swift",
"AutoGeneratedCode/Requests/Stats/ExportBeamStats.swift",
"AutoGeneratedCode/Requests/Stats/GetAirStats.swift",
"AutoGeneratedCode/Requests/Stats/GetBeamStats.swift",
"AutoGeneratedCode/Requests/Stats/InsertAirStats.swift",
"AutoGeneratedCode/Requests/Stats/InsertBeamStats.swift",
"AutoGeneratedCode/Requests/Subscriber/ActivateSubscriber.swift",
"AutoGeneratedCode/Requests/Subscriber/CreateSandboxSubscriber.swift",
"AutoGeneratedCode/Requests/Subscriber/DeactivateSubscriber.swift",
"AutoGeneratedCode/Requests/Subscriber/DeleteSubscriberSession.swift",
"AutoGeneratedCode/Requests/Subscriber/DeleteSubscriberTag.swift",
"AutoGeneratedCode/Requests/Subscriber/DeleteSubscriberTransferToken.swift",
"AutoGeneratedCode/Requests/Subscriber/DisableTermination.swift",
"AutoGeneratedCode/Requests/Subscriber/EnableTermination.swift",
"AutoGeneratedCode/Requests/Subscriber/GetDataFromSubscriber.swift",
"AutoGeneratedCode/Requests/Subscriber/GetSubscriber.swift",
"AutoGeneratedCode/Requests/Subscriber/IssueSubscriberTransferToken.swift",
"AutoGeneratedCode/Requests/Subscriber/ListSessionEvents.swift",
"AutoGeneratedCode/Requests/Subscriber/ListSubscribers.swift",
"AutoGeneratedCode/Requests/Subscriber/PutSubscriberTags.swift",
"AutoGeneratedCode/Requests/Subscriber/RegisterSubscriber.swift",
"AutoGeneratedCode/Requests/Subscriber/ReportLocalInfo.swift",
"AutoGeneratedCode/Requests/Subscriber/SendSms.swift",
"AutoGeneratedCode/Requests/Subscriber/SetExpiryTime.swift",
"AutoGeneratedCode/Requests/Subscriber/SetGroup.swift",
"AutoGeneratedCode/Requests/Subscriber/SetImeiLock.swift",
"AutoGeneratedCode/Requests/Subscriber/SetSubscriberToStandby.swift",
"AutoGeneratedCode/Requests/Subscriber/SuspendSubscriber.swift",
"AutoGeneratedCode/Requests/Subscriber/TerminateSubscriber.swift",
"AutoGeneratedCode/Requests/Subscriber/UnsetExpiryTime.swift",
"AutoGeneratedCode/Requests/Subscriber/UnsetGroup.swift",
"AutoGeneratedCode/Requests/Subscriber/UnsetImeiLock.swift",
"AutoGeneratedCode/Requests/Subscriber/UpdateSpeedClass.swift",
"AutoGeneratedCode/Requests/Subscriber/VerifySubscriberTransferToken.swift",
"AutoGeneratedCode/Requests/User/CreateUser.swift",
"AutoGeneratedCode/Requests/User/CreateUserPassword.swift",
"AutoGeneratedCode/Requests/User/DeleteUser.swift",
"AutoGeneratedCode/Requests/User/DeleteUserAuthKey.swift",
"AutoGeneratedCode/Requests/User/DeleteUserPassword.swift",
"AutoGeneratedCode/Requests/User/GenerateUserAuthKey.swift",
"AutoGeneratedCode/Requests/User/GetUser.swift",
"AutoGeneratedCode/Requests/User/GetUserAuthKey.swift",
"AutoGeneratedCode/Requests/User/GetUserPermission.swift",
"AutoGeneratedCode/Requests/User/HasUserPassword.swift",
"AutoGeneratedCode/Requests/User/ListUserAuthKeys.swift",
"AutoGeneratedCode/Requests/User/ListUsers.swift",
"AutoGeneratedCode/Requests/User/UpdateUser.swift",
"AutoGeneratedCode/Requests/User/UpdateUserPassword.swift",
"AutoGeneratedCode/Requests/User/UpdateUserPermission.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/CloseGate.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/CreateMirroringPeer.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/CreateVirtualPrivateGateway.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/CreateVpcPeeringConnection.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/DeleteMirroringPeer.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/DeleteVirtualPrivateGatewayIpAddressMapEntry.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/DeleteVpcPeeringConnection.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/GetVirtualPrivateGateway.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/ListGatePeers.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/ListVirtualPrivateGatewayIpAddressMapEntries.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/ListVirtualPrivateGateways.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/OpenGate.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/PutVirtualPrivateGatewayIpAddressMapEntry.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/RegisterGatePeer.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/SetInspectionConfiguration.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/SetRedirectionConfiguration.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/TerminateVirtualPrivateGateway.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/UnregisterGatePeer.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/UnsetInspectionConfiguration.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/UnsetRedirectionConfiguration.swift",
"AutoGeneratedCode/Requests/VirtualPrivateGateway/UpdateMirroringPeer.swift",
"AutoGeneratedCode/ResponseDecoder.swift",
"Client.swift",
"Constants.swift",
"Enums.swift",
"HTTPMethod.swift",
"JSONComparison.swift",
"Models/AuthRequest+Extras.swift",
"Models/BeamCounts+Extras.swift",
"Models/CredentialsModel+Extras.swift",
"Models/CreditCard+Extras.swift",
"Models/NoResponseBody.swift",
"Models/Subscriber+Extras.swift",
"Models/Tag+Extras.swift",
"Models/TagUpdateRequest+Extras.swift",
"Request+Auth.swift",
"Request+Group.swift",
"Request+Operator.swift",
"Request+Subscriber.swift",
"Request.swift",
"RequestQueue.swift",
"RequestResponseFormatter.swift",
"Response.swift",
"SoracomCredentials.swift",
"Utility/Codable+SoracomAPI.swift",
"Utility/Data+SoracomAPI.swift",
"Utility/Keychain.swift",
"Utility/Metrics.swift",
"Utility/NSDate+SoracomAPI.swift",
"Utility/String+SoracomAPI.swift",
"Utility/TextStyle.swift"
],
"type" : "library"
}
],
"tools_version" : "4.2"
}
Done.