The Swift Package Index logo.Swift Package Index

Build Information

Successful build of StripeKit, reference master (44a0e6), with Swift 6.2 for macOS (SPM) on 17 Jun 2025 17:56:32 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/kyleishie/stripekit.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/kyleishie/stripekit
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 44a0e64 Implemented External Accounts Partially Implemented Accounts
Cloned https://github.com/kyleishie/stripekit.git
Revision (git rev-parse @):
44a0e648fadf14ed34a95f7ed8b8490c276cd7cb
SUCCESS checkout https://github.com/kyleishie/stripekit.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/kyleishie/stripekit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/8] Write sources
[1/8] Write StripeKitHarness-entitlement.plist
[3/8] Write sources
[4/8] Write swift-version-1EA4D86E10B52AF.txt
[6/29] Emitting module RESTClient
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/Extensions/URLSessionConfiguration.swift:13:5: warning: 'public' modifier is redundant for static property declared in a public extension
11 | public extension URLSessionConfiguration {
12 |
13 |     public static var restJSONAPI : URLSessionConfiguration {
   |     `- warning: 'public' modifier is redundant for static property declared in a public extension
14 |
15 |         let sessionConfig = URLSessionConfiguration.ephemeral
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/Extensions/URLSessionConfiguration.swift:27:5: warning: 'public' modifier is redundant for static method declared in a public extension
25 |     }
26 |
27 |     public static func authenticatedRESTJSONApi(withBearer token: String) -> URLSessionConfiguration {
   |     `- warning: 'public' modifier is redundant for static method declared in a public extension
28 |         let sessionConfig = URLSessionConfiguration.ephemeral
29 |         sessionConfig.allowsCellularAccess = true
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient+DataTask.swift:17: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
 15 |      Note that this method requires a response body for successful requests.  If it is possible for the body to be nil use dataTask<T : Codable & ExpressibleByNilLiteral>(_:, with:, completionHandler:).
 16 |      */
 17 |     open func dataTask<T : Decodable>(_ type: T.Type, with request: URLRequest, completionHandler: ((Result<T, Error>) -> Void)? = nil) -> URLSessionDataTask {
    |     `- 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
 18 |         return dataTask(T?.self, with: request, completionHandler: { result in
 19 |             switch result {
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient+DataTask.swift:40: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
 38 |      This method allows for the poosibility of a nil response body when the request is successful, however, additional unwrapping is required.
 39 |      */
 40 |     open func dataTask<T : Decodable & ExpressibleByNilLiteral>(_ type: T.Type, with request: URLRequest, completionHandler: ((Result<T, Error>) -> Void)? = nil) -> URLSessionDataTask {
    |     `- 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
 41 |
 42 |         var request = request
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient+DataTask.swift:99: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
 97 |         Note that this method blocks until the task completes and calls it's completion handler at which time a value may be returned or an error may be thrown.
 98 |     */
 99 |     open func performSyncDataTask<T : Decodable>(_ type: T.Type, with request: URLRequest) throws -> 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
100 |
101 |         var res : Result<T, Error>? = nil
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient.swift:13:14: warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 11 | open class RESTClient<Error> where Error : Swift.Error & Decodable {
 12 |
 13 |     open let baseURL : URL
    |              `- warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 14 |
 15 |     private(set) var session : URLSession
[7/31] Compiling RESTClient _CreationContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient.swift:13:14: warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 11 | open class RESTClient<Error> where Error : Swift.Error & Decodable {
 12 |
 13 |     open let baseURL : URL
    |              `- warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 14 |
 15 |     private(set) var session : URLSession
[8/31] Compiling RESTClient _EditingContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient.swift:13:14: warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 11 | open class RESTClient<Error> where Error : Swift.Error & Decodable {
 12 |
 13 |     open let baseURL : URL
    |              `- warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 14 |
 15 |     private(set) var session : URLSession
[9/31] Compiling RESTClient URLSessionConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/Extensions/URLSessionConfiguration.swift:13:5: warning: 'public' modifier is redundant for static property declared in a public extension
11 | public extension URLSessionConfiguration {
12 |
13 |     public static var restJSONAPI : URLSessionConfiguration {
   |     `- warning: 'public' modifier is redundant for static property declared in a public extension
14 |
15 |         let sessionConfig = URLSessionConfiguration.ephemeral
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/Extensions/URLSessionConfiguration.swift:27:5: warning: 'public' modifier is redundant for static method declared in a public extension
25 |     }
26 |
27 |     public static func authenticatedRESTJSONApi(withBearer token: String) -> URLSessionConfiguration {
   |     `- warning: 'public' modifier is redundant for static method declared in a public extension
28 |         let sessionConfig = URLSessionConfiguration.ephemeral
29 |         sessionConfig.allowsCellularAccess = true
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient.swift:13:14: warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 11 | open class RESTClient<Error> where Error : Swift.Error & Decodable {
 12 |
 13 |     open let baseURL : URL
    |              `- warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 14 |
 15 |     private(set) var session : URLSession
[10/31] Compiling RESTClient RESTClient+Async.swift
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/Extensions/URLSessionConfiguration.swift:13:5: warning: 'public' modifier is redundant for static property declared in a public extension
11 | public extension URLSessionConfiguration {
12 |
13 |     public static var restJSONAPI : URLSessionConfiguration {
   |     `- warning: 'public' modifier is redundant for static property declared in a public extension
14 |
15 |         let sessionConfig = URLSessionConfiguration.ephemeral
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/Extensions/URLSessionConfiguration.swift:27:5: warning: 'public' modifier is redundant for static method declared in a public extension
25 |     }
26 |
27 |     public static func authenticatedRESTJSONApi(withBearer token: String) -> URLSessionConfiguration {
   |     `- warning: 'public' modifier is redundant for static method declared in a public extension
28 |         let sessionConfig = URLSessionConfiguration.ephemeral
29 |         sessionConfig.allowsCellularAccess = true
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient.swift:13:14: warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 11 | open class RESTClient<Error> where Error : Swift.Error & Decodable {
 12 |
 13 |     open let baseURL : URL
    |              `- warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 14 |
 15 |     private(set) var session : URLSession
[11/31] Compiling RESTClient HTTPMethod.swift
[12/31] Compiling RESTClient HTTPStatus.swift
[13/31] Compiling RESTClient Dictionary+URLQueryItem.swift
[14/31] Compiling RESTClient EnumCollection.swift
[15/31] Compiling RESTClient Result.swift
[16/31] Compiling RESTClient _Context.swift
[17/31] Compiling RESTClient RESTClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient.swift:13:14: warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 11 | open class RESTClient<Error> where Error : Swift.Error & Decodable {
 12 |
 13 |     open let baseURL : URL
    |              `- warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 14 |
 15 |     private(set) var session : URLSession
[18/31] Compiling RESTClient Resource.swift
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient.swift:13:14: warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 11 | open class RESTClient<Error> where Error : Swift.Error & Decodable {
 12 |
 13 |     open let baseURL : URL
    |              `- warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 14 |
 15 |     private(set) var session : URLSession
[19/31] Compiling RESTClient RESTClient+DataTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient+DataTask.swift:17: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
 15 |      Note that this method requires a response body for successful requests.  If it is possible for the body to be nil use dataTask<T : Codable & ExpressibleByNilLiteral>(_:, with:, completionHandler:).
 16 |      */
 17 |     open func dataTask<T : Decodable>(_ type: T.Type, with request: URLRequest, completionHandler: ((Result<T, Error>) -> Void)? = nil) -> URLSessionDataTask {
    |     `- 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
 18 |         return dataTask(T?.self, with: request, completionHandler: { result in
 19 |             switch result {
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient+DataTask.swift:40: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
 38 |      This method allows for the poosibility of a nil response body when the request is successful, however, additional unwrapping is required.
 39 |      */
 40 |     open func dataTask<T : Decodable & ExpressibleByNilLiteral>(_ type: T.Type, with request: URLRequest, completionHandler: ((Result<T, Error>) -> Void)? = nil) -> URLSessionDataTask {
    |     `- 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
 41 |
 42 |         var request = request
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient+DataTask.swift:99: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
 97 |         Note that this method blocks until the task completes and calls it's completion handler at which time a value may be returned or an error may be thrown.
 98 |     */
 99 |     open func performSyncDataTask<T : Decodable>(_ type: T.Type, with request: URLRequest) throws -> 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
100 |
101 |         var res : Result<T, Error>? = nil
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient+DataTask.swift:48:34: warning: capture of non-sendable type 'T.Type' in an isolated closure
 46 |
 47 |             guard let response = response as? HTTPURLResponse else {
 48 |                 completionHandler?(.systemFailure(error!))
    |                                  `- warning: capture of non-sendable type 'T.Type' in an isolated closure
 49 |                 return
 50 |             }
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient+DataTask.swift:40:107: warning: capture of non-sendable type 'T.Type' in an isolated closure
 38 |      This method allows for the poosibility of a nil response body when the request is successful, however, additional unwrapping is required.
 39 |      */
 40 |     open func dataTask<T : Decodable & ExpressibleByNilLiteral>(_ type: T.Type, with request: URLRequest, completionHandler: ((Result<T, Error>) -> Void)? = nil) -> URLSessionDataTask {
    |                                                                                                           `- warning: capture of non-sendable type 'T.Type' in an isolated closure
 41 |
 42 |         var request = request
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient.swift:13:14: warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 11 | open class RESTClient<Error> where Error : Swift.Error & Decodable {
 12 |
 13 |     open let baseURL : URL
    |              `- warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 14 |
 15 |     private(set) var session : URLSession
[20/31] Compiling RESTClient RESTClient+Sync.swift
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient+DataTask.swift:17: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
 15 |      Note that this method requires a response body for successful requests.  If it is possible for the body to be nil use dataTask<T : Codable & ExpressibleByNilLiteral>(_:, with:, completionHandler:).
 16 |      */
 17 |     open func dataTask<T : Decodable>(_ type: T.Type, with request: URLRequest, completionHandler: ((Result<T, Error>) -> Void)? = nil) -> URLSessionDataTask {
    |     `- 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
 18 |         return dataTask(T?.self, with: request, completionHandler: { result in
 19 |             switch result {
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient+DataTask.swift:40: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
 38 |      This method allows for the poosibility of a nil response body when the request is successful, however, additional unwrapping is required.
 39 |      */
 40 |     open func dataTask<T : Decodable & ExpressibleByNilLiteral>(_ type: T.Type, with request: URLRequest, completionHandler: ((Result<T, Error>) -> Void)? = nil) -> URLSessionDataTask {
    |     `- 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
 41 |
 42 |         var request = request
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient+DataTask.swift:99: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
 97 |         Note that this method blocks until the task completes and calls it's completion handler at which time a value may be returned or an error may be thrown.
 98 |     */
 99 |     open func performSyncDataTask<T : Decodable>(_ type: T.Type, with request: URLRequest) throws -> 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
100 |
101 |         var res : Result<T, Error>? = nil
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient+DataTask.swift:48:34: warning: capture of non-sendable type 'T.Type' in an isolated closure
 46 |
 47 |             guard let response = response as? HTTPURLResponse else {
 48 |                 completionHandler?(.systemFailure(error!))
    |                                  `- warning: capture of non-sendable type 'T.Type' in an isolated closure
 49 |                 return
 50 |             }
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient+DataTask.swift:40:107: warning: capture of non-sendable type 'T.Type' in an isolated closure
 38 |      This method allows for the poosibility of a nil response body when the request is successful, however, additional unwrapping is required.
 39 |      */
 40 |     open func dataTask<T : Decodable & ExpressibleByNilLiteral>(_ type: T.Type, with request: URLRequest, completionHandler: ((Result<T, Error>) -> Void)? = nil) -> URLSessionDataTask {
    |                                                                                                           `- warning: capture of non-sendable type 'T.Type' in an isolated closure
 41 |
 42 |         var request = request
/Users/admin/builder/spi-builder-workspace/Sources/RESTClient/RESTClient.swift:13:14: warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 11 | open class RESTClient<Error> where Error : Swift.Error & Decodable {
 12 |
 13 |     open let baseURL : URL
    |              `- warning: 'let' properties are implicitly 'final'; use 'public' instead of 'open'
 14 |
 15 |     private(set) var session : URLSession
[21/31] Compiling RESTClient FormURLEncoder.swift
[22/31] Compiling RESTClient JSONEncoder.swift
[23/31] Compiling RESTClient Accept.swift
[24/31] Compiling RESTClient URLRequest+CodableBody.swift
[25/31] Compiling RESTClient URLRequest+Convenience.swift
[26/31] Compiling RESTClient AuthorizationHeader.swift
[27/31] Compiling RESTClient Codable+DynamicCoder.swift
[28/31] Compiling RESTClient ContentType.swift
[29/86] Compiling StripeKit AccountCreationContext.swift
[30/86] Compiling StripeKit Balance.swift
[31/86] Compiling StripeKit Fee.swift
[32/86] Compiling StripeKit Funds.swift
[33/86] Compiling StripeKit SourcesTypes.swift
[34/86] Compiling StripeKit Card.swift
[35/92] Compiling StripeKit Plan.swift
[36/92] Compiling StripeKit _PlanCreationContext.swift
[37/92] Compiling StripeKit _PlanEditingContext.swift
[38/92] Compiling StripeKit List+Product.swift
[39/92] Compiling StripeKit Product+Create.swift
[40/92] Compiling StripeKit Product+List.swift
[41/92] Compiling StripeKit Product+Update.swift
[42/92] Compiling StripeKit Product.swift
[43/92] Compiling StripeKit _ProductCreationContext.swift
[44/92] Compiling StripeKit _ProductEditingContext.swift
[45/92] Compiling StripeKit Mandate.swift
[46/92] Compiling StripeKit Source+Attach.swift
[47/92] Compiling StripeKit ExternalAccountUpdateContext.swift
[48/92] Compiling StripeKit List+ExternalAccount.swift
[49/92] Compiling StripeKit List+Plan.swift
[50/92] Compiling StripeKit Plan+Create.swift
[51/92] Compiling StripeKit Plan+List.swift
[52/92] Compiling StripeKit Plan+Update.swift
[53/92] Compiling StripeKit _CustomerEditingContext.swift
[54/92] Compiling StripeKit Discount.swift
[55/92] Compiling StripeKit ExternalAccount+Create.swift
[56/92] Compiling StripeKit ExternalAccount+List.swift
[57/92] Compiling StripeKit ExternalAccount.swift
[58/92] Compiling StripeKit ExternalAccountCreationContext.swift
[59/92] Compiling StripeKit Subscription.swift
[60/92] Compiling StripeKit _SubscriptionCreationContext.swift
[61/92] Compiling StripeKit _SubsctiprionEditingContext.swift
[62/92] Compiling StripeKit SubscriptionItem.swift
[63/92] Compiling StripeKit SubscriptionItemCreationContext.swift
[64/92] Compiling StripeKit SubscriptionItemEditingContext.swift
[65/92] Compiling StripeKit Coupon.swift
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:35:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
33 |     public struct Source : Resource, Codable, MetadataContainer, Listable {
34 |
35 |         public let number : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'number' case to silence this warning
   |                    `- note: make the property mutable instead
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:36:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
34 |
35 |         public let number : String? = nil
36 |         public let expMonth : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'expMonth' case to silence this warning
   |                    `- note: make the property mutable instead
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:37:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
35 |         public let number : String? = nil
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'expYear' case to silence this warning
   |                    `- note: make the property mutable instead
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:38:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'cvc' case to silence this warning
   |                    `- note: make the property mutable instead
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:39:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'currency' case to silence this warning
   |                    `- note: make the property mutable instead
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:40:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'name' case to silence this warning
   |                    `- note: make the property mutable instead
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:41:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressLine1' case to silence this warning
   |                    `- note: make the property mutable instead
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:42:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressLine2' case to silence this warning
   |                    `- note: make the property mutable instead
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:43:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressCity' case to silence this warning
   |                    `- note: make the property mutable instead
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:44:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressState' case to silence this warning
   |                    `- note: make the property mutable instead
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:45:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressZip' case to silence this warning
   |                    `- note: make the property mutable instead
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:46:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addresCountry' case to silence this warning
   |                    `- note: make the property mutable instead
47 |         public let metadata: Metadata? = nil
48 |         public let defaultForCurrency: Currency? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:47:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'metadata' case to silence this warning
   |                    `- note: make the property mutable instead
48 |         public let defaultForCurrency: Currency? = nil
49 |
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:48:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
48 |         public let defaultForCurrency: Currency? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'defaultForCurrency' case to silence this warning
   |                    `- note: make the property mutable instead
49 |
50 |     }
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:67:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
65 |     public let address : Address
66 |     public let name : String
67 |     public let phone : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'phone' case to silence this warning
   |                `- note: make the property mutable instead
68 |
69 | }
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:73:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
71 | public struct Address : Codable {
72 |
73 |     public let line1 : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'line1' case to silence this warning
   |                `- note: make the property mutable instead
74 |     public let city : String? = nil
75 |     public let country : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:74:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
72 |
73 |     public let line1 : String? = nil
74 |     public let city : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'city' case to silence this warning
   |                `- note: make the property mutable instead
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:75:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
73 |     public let line1 : String? = nil
74 |     public let city : String? = nil
75 |     public let country : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'country' case to silence this warning
   |                `- note: make the property mutable instead
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:76:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
74 |     public let city : String? = nil
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'line2' case to silence this warning
   |                `- note: make the property mutable instead
77 |     public let postalCode : String? = nil
78 |     public let state : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:77:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'postalCode' case to silence this warning
   |                `- note: make the property mutable instead
78 |     public let state : String? = nil
79 |
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:78:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
78 |     public let state : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'state' case to silence this warning
   |                `- note: make the property mutable instead
79 |
80 | }
[66/92] Compiling StripeKit Customer+Create.swift
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:35:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
33 |     public struct Source : Resource, Codable, MetadataContainer, Listable {
34 |
35 |         public let number : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'number' case to silence this warning
   |                    `- note: make the property mutable instead
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:36:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
34 |
35 |         public let number : String? = nil
36 |         public let expMonth : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'expMonth' case to silence this warning
   |                    `- note: make the property mutable instead
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:37:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
35 |         public let number : String? = nil
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'expYear' case to silence this warning
   |                    `- note: make the property mutable instead
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:38:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'cvc' case to silence this warning
   |                    `- note: make the property mutable instead
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:39:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'currency' case to silence this warning
   |                    `- note: make the property mutable instead
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:40:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'name' case to silence this warning
   |                    `- note: make the property mutable instead
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:41:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressLine1' case to silence this warning
   |                    `- note: make the property mutable instead
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:42:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressLine2' case to silence this warning
   |                    `- note: make the property mutable instead
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:43:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressCity' case to silence this warning
   |                    `- note: make the property mutable instead
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:44:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressState' case to silence this warning
   |                    `- note: make the property mutable instead
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:45:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressZip' case to silence this warning
   |                    `- note: make the property mutable instead
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:46:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addresCountry' case to silence this warning
   |                    `- note: make the property mutable instead
47 |         public let metadata: Metadata? = nil
48 |         public let defaultForCurrency: Currency? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:47:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'metadata' case to silence this warning
   |                    `- note: make the property mutable instead
48 |         public let defaultForCurrency: Currency? = nil
49 |
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:48:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
48 |         public let defaultForCurrency: Currency? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'defaultForCurrency' case to silence this warning
   |                    `- note: make the property mutable instead
49 |
50 |     }
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:67:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
65 |     public let address : Address
66 |     public let name : String
67 |     public let phone : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'phone' case to silence this warning
   |                `- note: make the property mutable instead
68 |
69 | }
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:73:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
71 | public struct Address : Codable {
72 |
73 |     public let line1 : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'line1' case to silence this warning
   |                `- note: make the property mutable instead
74 |     public let city : String? = nil
75 |     public let country : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:74:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
72 |
73 |     public let line1 : String? = nil
74 |     public let city : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'city' case to silence this warning
   |                `- note: make the property mutable instead
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:75:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
73 |     public let line1 : String? = nil
74 |     public let city : String? = nil
75 |     public let country : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'country' case to silence this warning
   |                `- note: make the property mutable instead
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:76:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
74 |     public let city : String? = nil
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'line2' case to silence this warning
   |                `- note: make the property mutable instead
77 |     public let postalCode : String? = nil
78 |     public let state : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:77:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'postalCode' case to silence this warning
   |                `- note: make the property mutable instead
78 |     public let state : String? = nil
79 |
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:78:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
78 |     public let state : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'state' case to silence this warning
   |                `- note: make the property mutable instead
79 |
80 | }
[67/92] Compiling StripeKit Customer+List.swift
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:35:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
33 |     public struct Source : Resource, Codable, MetadataContainer, Listable {
34 |
35 |         public let number : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'number' case to silence this warning
   |                    `- note: make the property mutable instead
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:36:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
34 |
35 |         public let number : String? = nil
36 |         public let expMonth : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'expMonth' case to silence this warning
   |                    `- note: make the property mutable instead
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:37:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
35 |         public let number : String? = nil
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'expYear' case to silence this warning
   |                    `- note: make the property mutable instead
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:38:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'cvc' case to silence this warning
   |                    `- note: make the property mutable instead
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:39:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'currency' case to silence this warning
   |                    `- note: make the property mutable instead
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:40:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'name' case to silence this warning
   |                    `- note: make the property mutable instead
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:41:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressLine1' case to silence this warning
   |                    `- note: make the property mutable instead
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:42:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressLine2' case to silence this warning
   |                    `- note: make the property mutable instead
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:43:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressCity' case to silence this warning
   |                    `- note: make the property mutable instead
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:44:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressState' case to silence this warning
   |                    `- note: make the property mutable instead
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:45:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressZip' case to silence this warning
   |                    `- note: make the property mutable instead
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:46:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addresCountry' case to silence this warning
   |                    `- note: make the property mutable instead
47 |         public let metadata: Metadata? = nil
48 |         public let defaultForCurrency: Currency? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:47:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'metadata' case to silence this warning
   |                    `- note: make the property mutable instead
48 |         public let defaultForCurrency: Currency? = nil
49 |
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:48:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
48 |         public let defaultForCurrency: Currency? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'defaultForCurrency' case to silence this warning
   |                    `- note: make the property mutable instead
49 |
50 |     }
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:67:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
65 |     public let address : Address
66 |     public let name : String
67 |     public let phone : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'phone' case to silence this warning
   |                `- note: make the property mutable instead
68 |
69 | }
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:73:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
71 | public struct Address : Codable {
72 |
73 |     public let line1 : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'line1' case to silence this warning
   |                `- note: make the property mutable instead
74 |     public let city : String? = nil
75 |     public let country : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:74:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
72 |
73 |     public let line1 : String? = nil
74 |     public let city : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'city' case to silence this warning
   |                `- note: make the property mutable instead
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:75:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
73 |     public let line1 : String? = nil
74 |     public let city : String? = nil
75 |     public let country : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'country' case to silence this warning
   |                `- note: make the property mutable instead
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:76:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
74 |     public let city : String? = nil
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'line2' case to silence this warning
   |                `- note: make the property mutable instead
77 |     public let postalCode : String? = nil
78 |     public let state : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:77:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'postalCode' case to silence this warning
   |                `- note: make the property mutable instead
78 |     public let state : String? = nil
79 |
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:78:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
78 |     public let state : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'state' case to silence this warning
   |                `- note: make the property mutable instead
79 |
80 | }
[68/92] Compiling StripeKit Customer+Update.swift
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:35:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
33 |     public struct Source : Resource, Codable, MetadataContainer, Listable {
34 |
35 |         public let number : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'number' case to silence this warning
   |                    `- note: make the property mutable instead
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:36:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
34 |
35 |         public let number : String? = nil
36 |         public let expMonth : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'expMonth' case to silence this warning
   |                    `- note: make the property mutable instead
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:37:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
35 |         public let number : String? = nil
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'expYear' case to silence this warning
   |                    `- note: make the property mutable instead
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:38:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'cvc' case to silence this warning
   |                    `- note: make the property mutable instead
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:39:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'currency' case to silence this warning
   |                    `- note: make the property mutable instead
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:40:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'name' case to silence this warning
   |                    `- note: make the property mutable instead
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:41:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressLine1' case to silence this warning
   |                    `- note: make the property mutable instead
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:42:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressLine2' case to silence this warning
   |                    `- note: make the property mutable instead
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:43:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressCity' case to silence this warning
   |                    `- note: make the property mutable instead
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:44:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressState' case to silence this warning
   |                    `- note: make the property mutable instead
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:45:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressZip' case to silence this warning
   |                    `- note: make the property mutable instead
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:46:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addresCountry' case to silence this warning
   |                    `- note: make the property mutable instead
47 |         public let metadata: Metadata? = nil
48 |         public let defaultForCurrency: Currency? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:47:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'metadata' case to silence this warning
   |                    `- note: make the property mutable instead
48 |         public let defaultForCurrency: Currency? = nil
49 |
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:48:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
48 |         public let defaultForCurrency: Currency? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'defaultForCurrency' case to silence this warning
   |                    `- note: make the property mutable instead
49 |
50 |     }
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:67:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
65 |     public let address : Address
66 |     public let name : String
67 |     public let phone : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'phone' case to silence this warning
   |                `- note: make the property mutable instead
68 |
69 | }
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:73:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
71 | public struct Address : Codable {
72 |
73 |     public let line1 : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'line1' case to silence this warning
   |                `- note: make the property mutable instead
74 |     public let city : String? = nil
75 |     public let country : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:74:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
72 |
73 |     public let line1 : String? = nil
74 |     public let city : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'city' case to silence this warning
   |                `- note: make the property mutable instead
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:75:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
73 |     public let line1 : String? = nil
74 |     public let city : String? = nil
75 |     public let country : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'country' case to silence this warning
   |                `- note: make the property mutable instead
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:76:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
74 |     public let city : String? = nil
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'line2' case to silence this warning
   |                `- note: make the property mutable instead
77 |     public let postalCode : String? = nil
78 |     public let state : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:77:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'postalCode' case to silence this warning
   |                `- note: make the property mutable instead
78 |     public let state : String? = nil
79 |
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:78:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
78 |     public let state : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'state' case to silence this warning
   |                `- note: make the property mutable instead
79 |
80 | }
[69/92] Compiling StripeKit Customer.swift
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:35:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
33 |     public struct Source : Resource, Codable, MetadataContainer, Listable {
34 |
35 |         public let number : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'number' case to silence this warning
   |                    `- note: make the property mutable instead
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:36:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
34 |
35 |         public let number : String? = nil
36 |         public let expMonth : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'expMonth' case to silence this warning
   |                    `- note: make the property mutable instead
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:37:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
35 |         public let number : String? = nil
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'expYear' case to silence this warning
   |                    `- note: make the property mutable instead
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:38:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'cvc' case to silence this warning
   |                    `- note: make the property mutable instead
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:39:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'currency' case to silence this warning
   |                    `- note: make the property mutable instead
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:40:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'name' case to silence this warning
   |                    `- note: make the property mutable instead
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:41:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressLine1' case to silence this warning
   |                    `- note: make the property mutable instead
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:42:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressLine2' case to silence this warning
   |                    `- note: make the property mutable instead
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:43:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressCity' case to silence this warning
   |                    `- note: make the property mutable instead
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:44:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressState' case to silence this warning
   |                    `- note: make the property mutable instead
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:45:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressZip' case to silence this warning
   |                    `- note: make the property mutable instead
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:46:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addresCountry' case to silence this warning
   |                    `- note: make the property mutable instead
47 |         public let metadata: Metadata? = nil
48 |         public let defaultForCurrency: Currency? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:47:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'metadata' case to silence this warning
   |                    `- note: make the property mutable instead
48 |         public let defaultForCurrency: Currency? = nil
49 |
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:48:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
48 |         public let defaultForCurrency: Currency? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'defaultForCurrency' case to silence this warning
   |                    `- note: make the property mutable instead
49 |
50 |     }
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:67:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
65 |     public let address : Address
66 |     public let name : String
67 |     public let phone : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'phone' case to silence this warning
   |                `- note: make the property mutable instead
68 |
69 | }
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:73:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
71 | public struct Address : Codable {
72 |
73 |     public let line1 : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'line1' case to silence this warning
   |                `- note: make the property mutable instead
74 |     public let city : String? = nil
75 |     public let country : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:74:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
72 |
73 |     public let line1 : String? = nil
74 |     public let city : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'city' case to silence this warning
   |                `- note: make the property mutable instead
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:75:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
73 |     public let line1 : String? = nil
74 |     public let city : String? = nil
75 |     public let country : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'country' case to silence this warning
   |                `- note: make the property mutable instead
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:76:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
74 |     public let city : String? = nil
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'line2' case to silence this warning
   |                `- note: make the property mutable instead
77 |     public let postalCode : String? = nil
78 |     public let state : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:77:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'postalCode' case to silence this warning
   |                `- note: make the property mutable instead
78 |     public let state : String? = nil
79 |
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:78:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
78 |     public let state : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'state' case to silence this warning
   |                `- note: make the property mutable instead
79 |
80 | }
[70/92] Compiling StripeKit List+Customer.swift
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:35:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
33 |     public struct Source : Resource, Codable, MetadataContainer, Listable {
34 |
35 |         public let number : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'number' case to silence this warning
   |                    `- note: make the property mutable instead
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:36:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
34 |
35 |         public let number : String? = nil
36 |         public let expMonth : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'expMonth' case to silence this warning
   |                    `- note: make the property mutable instead
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:37:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
35 |         public let number : String? = nil
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'expYear' case to silence this warning
   |                    `- note: make the property mutable instead
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:38:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
36 |         public let expMonth : String? = nil
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'cvc' case to silence this warning
   |                    `- note: make the property mutable instead
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:39:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
37 |         public let expYear : String? = nil
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'currency' case to silence this warning
   |                    `- note: make the property mutable instead
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:40:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
38 |         public let cvc : String? = nil
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'name' case to silence this warning
   |                    `- note: make the property mutable instead
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:41:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
39 |         public let currency : Currency? = nil
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressLine1' case to silence this warning
   |                    `- note: make the property mutable instead
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:42:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
40 |         public let name : String? = nil
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressLine2' case to silence this warning
   |                    `- note: make the property mutable instead
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:43:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
41 |         public let addressLine1 : String? = nil
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressCity' case to silence this warning
   |                    `- note: make the property mutable instead
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:44:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
42 |         public let addressLine2 : String? = nil
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressState' case to silence this warning
   |                    `- note: make the property mutable instead
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:45:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
43 |         public let addressCity : String? = nil
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addressZip' case to silence this warning
   |                    `- note: make the property mutable instead
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:46:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
44 |         public let addressState : String? = nil
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'addresCountry' case to silence this warning
   |                    `- note: make the property mutable instead
47 |         public let metadata: Metadata? = nil
48 |         public let defaultForCurrency: Currency? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:47:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
45 |         public let addressZip : String? = nil
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'metadata' case to silence this warning
   |                    `- note: make the property mutable instead
48 |         public let defaultForCurrency: Currency? = nil
49 |
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:48:20: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
46 |         public let addresCountry : String? = nil
47 |         public let metadata: Metadata? = nil
48 |         public let defaultForCurrency: Currency? = nil
   |                    |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                    |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'defaultForCurrency' case to silence this warning
   |                    `- note: make the property mutable instead
49 |
50 |     }
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:67:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
65 |     public let address : Address
66 |     public let name : String
67 |     public let phone : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'phone' case to silence this warning
   |                `- note: make the property mutable instead
68 |
69 | }
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:73:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
71 | public struct Address : Codable {
72 |
73 |     public let line1 : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'line1' case to silence this warning
   |                `- note: make the property mutable instead
74 |     public let city : String? = nil
75 |     public let country : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:74:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
72 |
73 |     public let line1 : String? = nil
74 |     public let city : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'city' case to silence this warning
   |                `- note: make the property mutable instead
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:75:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
73 |     public let line1 : String? = nil
74 |     public let city : String? = nil
75 |     public let country : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'country' case to silence this warning
   |                `- note: make the property mutable instead
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:76:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
74 |     public let city : String? = nil
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'line2' case to silence this warning
   |                `- note: make the property mutable instead
77 |     public let postalCode : String? = nil
78 |     public let state : String? = nil
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:77:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
75 |     public let country : String? = nil
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'postalCode' case to silence this warning
   |                `- note: make the property mutable instead
78 |     public let state : String? = nil
79 |
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Resources/Customer/Customer.swift:78:16: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
76 |     public let line2 : String? = nil
77 |     public let postalCode : String? = nil
78 |     public let state : String? = nil
   |                |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
   |                |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'state' case to silence this warning
   |                `- note: make the property mutable instead
79 |
80 | }
[71/92] Compiling StripeKit Source+Create.swift
[72/92] Compiling StripeKit Source.swift
[73/92] Compiling StripeKit SourceCreationContext.swift
[74/92] Compiling StripeKit SourceEditingContext.swift
[75/92] Compiling StripeKit Subscription+Create.swift
[76/92] Compiling StripeKit Subscription+Update.swift
[77/92] Emitting module StripeKit
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Extensions/URLSessionConfiguration+Stripe.swift:12:5: warning: 'public' modifier is redundant for static method declared in a public extension
10 | public extension URLSessionConfiguration {
11 |
12 |     public static func stripeApi(withBearer token: String) -> URLSessionConfiguration {
   |     `- warning: 'public' modifier is redundant for static method declared in a public extension
13 |         let sessionConfig = URLSessionConfiguration.ephemeral
14 |         sessionConfig.allowsCellularAccess = true
[78/92] Compiling StripeKit EnumCollection.swift
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Extensions/URLSessionConfiguration+Stripe.swift:12:5: warning: 'public' modifier is redundant for static method declared in a public extension
10 | public extension URLSessionConfiguration {
11 |
12 |     public static func stripeApi(withBearer token: String) -> URLSessionConfiguration {
   |     `- warning: 'public' modifier is redundant for static method declared in a public extension
13 |         let sessionConfig = URLSessionConfiguration.ephemeral
14 |         sessionConfig.allowsCellularAccess = true
[79/92] Compiling StripeKit Query+Stripe.swift
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Extensions/URLSessionConfiguration+Stripe.swift:12:5: warning: 'public' modifier is redundant for static method declared in a public extension
10 | public extension URLSessionConfiguration {
11 |
12 |     public static func stripeApi(withBearer token: String) -> URLSessionConfiguration {
   |     `- warning: 'public' modifier is redundant for static method declared in a public extension
13 |         let sessionConfig = URLSessionConfiguration.ephemeral
14 |         sessionConfig.allowsCellularAccess = true
[80/92] Compiling StripeKit Resource.swift
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Extensions/URLSessionConfiguration+Stripe.swift:12:5: warning: 'public' modifier is redundant for static method declared in a public extension
10 | public extension URLSessionConfiguration {
11 |
12 |     public static func stripeApi(withBearer token: String) -> URLSessionConfiguration {
   |     `- warning: 'public' modifier is redundant for static method declared in a public extension
13 |         let sessionConfig = URLSessionConfiguration.ephemeral
14 |         sessionConfig.allowsCellularAccess = true
[81/92] Compiling StripeKit URLSessionConfiguration+Stripe.swift
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Extensions/URLSessionConfiguration+Stripe.swift:12:5: warning: 'public' modifier is redundant for static method declared in a public extension
10 | public extension URLSessionConfiguration {
11 |
12 |     public static func stripeApi(withBearer token: String) -> URLSessionConfiguration {
   |     `- warning: 'public' modifier is redundant for static method declared in a public extension
13 |         let sessionConfig = URLSessionConfiguration.ephemeral
14 |         sessionConfig.allowsCellularAccess = true
[82/92] Compiling StripeKit Account+Create.swift
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Extensions/URLSessionConfiguration+Stripe.swift:12:5: warning: 'public' modifier is redundant for static method declared in a public extension
10 | public extension URLSessionConfiguration {
11 |
12 |     public static func stripeApi(withBearer token: String) -> URLSessionConfiguration {
   |     `- warning: 'public' modifier is redundant for static method declared in a public extension
13 |         let sessionConfig = URLSessionConfiguration.ephemeral
14 |         sessionConfig.allowsCellularAccess = true
[83/92] Compiling StripeKit Account.swift
/Users/admin/builder/spi-builder-workspace/Sources/StripeKit/Extensions/URLSessionConfiguration+Stripe.swift:12:5: warning: 'public' modifier is redundant for static method declared in a public extension
10 | public extension URLSessionConfiguration {
11 |
12 |     public static func stripeApi(withBearer token: String) -> URLSessionConfiguration {
   |     `- warning: 'public' modifier is redundant for static method declared in a public extension
13 |         let sessionConfig = URLSessionConfiguration.ephemeral
14 |         sessionConfig.allowsCellularAccess = true
[84/92] Compiling StripeKit StripeKit.swift
[85/92] Compiling StripeKit Currency.swift
[86/92] Compiling StripeKit DeleteConfirmation.swift
[87/92] Compiling StripeKit List.swift
[88/92] Compiling StripeKit Metadata.swift
[89/92] Compiling StripeKit StripeError.swift
[90/94] Compiling StripeKitHarness main.swift
/Users/admin/builder/spi-builder-workspace/Sources/StripeKitHarness/main.swift:89:11: warning: expression implicitly coerced from 'Account?' to 'Any'
87 |     let account = try Account.create(type: .custom, email: "kyle@kyleishie.com")
88 |
89 |     print(account)
   |           |- warning: expression implicitly coerced from 'Account?' to 'Any'
   |           |- note: provide a default value to avoid this warning
   |           |- note: force-unwrap the value to avoid this warning
   |           `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
90 |
91 | } catch {
[91/94] Emitting module StripeKitHarness
/Users/admin/builder/spi-builder-workspace/Sources/StripeKitHarness/main.swift:89:11: warning: expression implicitly coerced from 'Account?' to 'Any'
87 |     let account = try Account.create(type: .custom, email: "kyle@kyleishie.com")
88 |
89 |     print(account)
   |           |- warning: expression implicitly coerced from 'Account?' to 'Any'
   |           |- note: provide a default value to avoid this warning
   |           |- note: force-unwrap the value to avoid this warning
   |           `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
90 |
91 | } catch {
[91/94] Write Objects.LinkFileList
[92/94] Linking StripeKitHarness
[93/94] Applying StripeKitHarness
Build complete! (6.89s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "StripeKit",
  "name" : "StripeKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "StripeKit",
      "targets" : [
        "StripeKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "RESTClient",
      "targets" : [
        "RESTClient"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "StripeKitHarness",
      "targets" : [
        "StripeKitHarness"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "StripeKitTests",
      "module_type" : "SwiftTarget",
      "name" : "StripeKitTests",
      "path" : "Tests/StripeKitTests",
      "sources" : [
        "StripeKitTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "StripeKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "StripeKitHarness",
      "module_type" : "SwiftTarget",
      "name" : "StripeKitHarness",
      "path" : "Sources/StripeKitHarness",
      "product_memberships" : [
        "StripeKitHarness"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "StripeKit"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "StripeKit",
      "module_type" : "SwiftTarget",
      "name" : "StripeKit",
      "path" : "Sources/StripeKit",
      "product_memberships" : [
        "StripeKit",
        "StripeKitHarness"
      ],
      "sources" : [
        "Extensions/EnumCollection.swift",
        "Extensions/Query+Stripe.swift",
        "Extensions/Resource.swift",
        "Extensions/URLSessionConfiguration+Stripe.swift",
        "Resources/Account/Account+Create.swift",
        "Resources/Account/Account.swift",
        "Resources/Account/AccountCreationContext.swift",
        "Resources/Balance/Balance.swift",
        "Resources/Balance/Fee.swift",
        "Resources/Balance/Funds.swift",
        "Resources/Balance/SourcesTypes.swift",
        "Resources/Card/Card.swift",
        "Resources/Coupon.swift",
        "Resources/Customer/Customer+Create.swift",
        "Resources/Customer/Customer+List.swift",
        "Resources/Customer/Customer+Update.swift",
        "Resources/Customer/Customer.swift",
        "Resources/Customer/List+Customer.swift",
        "Resources/Customer/_CustomerEditingContext.swift",
        "Resources/Discount.swift",
        "Resources/ExternalAccount/ExternalAccount+Create.swift",
        "Resources/ExternalAccount/ExternalAccount+List.swift",
        "Resources/ExternalAccount/ExternalAccount.swift",
        "Resources/ExternalAccount/ExternalAccountCreationContext.swift",
        "Resources/ExternalAccount/ExternalAccountUpdateContext.swift",
        "Resources/ExternalAccount/List+ExternalAccount.swift",
        "Resources/Plan/List+Plan.swift",
        "Resources/Plan/Plan+Create.swift",
        "Resources/Plan/Plan+List.swift",
        "Resources/Plan/Plan+Update.swift",
        "Resources/Plan/Plan.swift",
        "Resources/Plan/_PlanCreationContext.swift",
        "Resources/Plan/_PlanEditingContext.swift",
        "Resources/Product/List+Product.swift",
        "Resources/Product/Product+Create.swift",
        "Resources/Product/Product+List.swift",
        "Resources/Product/Product+Update.swift",
        "Resources/Product/Product.swift",
        "Resources/Product/_ProductCreationContext.swift",
        "Resources/Product/_ProductEditingContext.swift",
        "Resources/Source/Mandate.swift",
        "Resources/Source/Source+Attach.swift",
        "Resources/Source/Source+Create.swift",
        "Resources/Source/Source.swift",
        "Resources/Source/SourceCreationContext.swift",
        "Resources/Source/SourceEditingContext.swift",
        "Resources/Subscription/Subscription+Create.swift",
        "Resources/Subscription/Subscription+Update.swift",
        "Resources/Subscription/Subscription.swift",
        "Resources/Subscription/_SubscriptionCreationContext.swift",
        "Resources/Subscription/_SubsctiprionEditingContext.swift",
        "Resources/SubscriptionItem/SubscriptionItem.swift",
        "Resources/SubscriptionItem/SubscriptionItemCreationContext.swift",
        "Resources/SubscriptionItem/SubscriptionItemEditingContext.swift",
        "StripeKit.swift",
        "Types/Currency.swift",
        "Types/DeleteConfirmation.swift",
        "Types/List.swift",
        "Types/Metadata.swift",
        "Types/StripeError.swift"
      ],
      "target_dependencies" : [
        "RESTClient"
      ],
      "type" : "library"
    },
    {
      "c99name" : "RESTClient",
      "module_type" : "SwiftTarget",
      "name" : "RESTClient",
      "path" : "Sources/RESTClient",
      "product_memberships" : [
        "StripeKit",
        "RESTClient",
        "StripeKitHarness"
      ],
      "sources" : [
        "Encoders/FormURLEncoder.swift",
        "Encoders/JSONEncoder.swift",
        "Extensions/Accept.swift",
        "Extensions/AuthorizationHeader.swift",
        "Extensions/Codable+DynamicCoder.swift",
        "Extensions/ContentType.swift",
        "Extensions/Dictionary+URLQueryItem.swift",
        "Extensions/EnumCollection.swift",
        "Extensions/HTTPMethod.swift",
        "Extensions/HTTPStatus.swift",
        "Extensions/URLRequest+CodableBody.swift",
        "Extensions/URLRequest+Convenience.swift",
        "Extensions/URLSessionConfiguration.swift",
        "RESTClient+Async.swift",
        "RESTClient+DataTask.swift",
        "RESTClient+Sync.swift",
        "RESTClient.swift",
        "Resource.swift",
        "Result.swift",
        "_Context.swift",
        "_CreationContext.swift",
        "_EditingContext.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.