Skip to content

Commit 0081afe

Browse files
committed
Ran rake generate
1 parent fd51128 commit 0081afe

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

Fakes/Fakes/Networking.generated.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,9 @@ extension Order {
323323
parentID: .fake(),
324324
customerID: .fake(),
325325
orderKey: .fake(),
326+
isEditable: .fake(),
327+
needsPayment: .fake(),
328+
needsProcessing: .fake(),
326329
number: .fake(),
327330
status: .fake(),
328331
currency: .fake(),

Networking/Networking/Model/Copiable/Models+Copiable.generated.swift

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,9 @@ extension Order {
242242
parentID: CopiableProp<Int64> = .copy,
243243
customerID: CopiableProp<Int64> = .copy,
244244
orderKey: CopiableProp<String> = .copy,
245+
isEditable: CopiableProp<Bool> = .copy,
246+
needsPayment: CopiableProp<Bool> = .copy,
247+
needsProcessing: CopiableProp<Bool> = .copy,
245248
number: CopiableProp<String> = .copy,
246249
status: CopiableProp<OrderStatusEnum> = .copy,
247250
currency: CopiableProp<String> = .copy,
@@ -273,6 +276,9 @@ extension Order {
273276
let parentID = parentID ?? self.parentID
274277
let customerID = customerID ?? self.customerID
275278
let orderKey = orderKey ?? self.orderKey
279+
let isEditable = isEditable ?? self.isEditable
280+
let needsPayment = needsPayment ?? self.needsPayment
281+
let needsProcessing = needsProcessing ?? self.needsProcessing
276282
let number = number ?? self.number
277283
let status = status ?? self.status
278284
let currency = currency ?? self.currency
@@ -305,6 +311,9 @@ extension Order {
305311
parentID: parentID,
306312
customerID: customerID,
307313
orderKey: orderKey,
314+
isEditable: isEditable,
315+
needsPayment: needsPayment,
316+
needsProcessing: needsProcessing,
308317
number: number,
309318
status: status,
310319
currency: currency,

0 commit comments

Comments
 (0)