Skip to content

Commit c26354d

Browse files
committed
Merge branch 'hotfixes/fix_record_accessibility'
2 parents 0131cc9 + 92f56f8 commit c26354d

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

Sources/Record.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ public protocol APIObject {
2121
public struct Record<Object: APIObject>: Decodable {
2222

2323
/// The date when the response has been generated
24-
let timestamp: Date
24+
public let timestamp: Date
2525

2626
/// The elements of the record
27-
let elements: [Object]
27+
public let elements: [Object]
2828

2929
public enum CodingKeys: CodingKey {
3030
case timestamp
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
4-
<dict>
5-
<key>BuildSystemType</key>
6-
<string>Latest</string>
7-
</dict>
4+
<dict/>
85
</plist>

0 commit comments

Comments
 (0)