File tree Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change
1
+ # Unreleased
2
+ - [ fixed] Add an NS_SWIFT_NAME for FIRSnapshotMetadata
3
+
1
4
# 2017-10-03 -- v0.8.0
2
5
- Initial public release.
Original file line number Diff line number Diff line change @@ -275,10 +275,23 @@ func transactions() {
275
275
276
276
func types( ) {
277
277
// Just highlighting the types of everything, though devs can/will often omit them.
278
- let _: Firestore ;
278
+ // This list comes from:
279
+ //
280
+ // grep -r ^FIR_SWIFT_NAME Firestore/Source/Public | sed 's/.*(/let _: /; s/)/;/'
279
281
let _: CollectionReference ;
282
+ let _: DocumentChange ;
283
+ let _: DocumentListenOptions ;
280
284
let _: DocumentReference ;
281
- let _: Query ;
282
285
let _: DocumentSnapshot ;
286
+ let _: FieldPath ;
287
+ let _: FieldValue ;
288
+ let _: Firestore ;
289
+ let _: FirestoreSettings ;
290
+ let _: GeoPoint ;
291
+ let _: QueryListenOptions ;
292
+ let _: Query ;
283
293
let _: QuerySnapshot ;
294
+ let _: SnapshotMetadata ;
295
+ let _: Transaction ;
296
+ let _: WriteBatch ;
284
297
}
Original file line number Diff line number Diff line change 16
16
17
17
#import < Foundation/Foundation.h>
18
18
19
+ #import " FIRFirestoreSwiftNameSupport.h"
20
+
19
21
NS_ASSUME_NONNULL_BEGIN
20
22
21
23
/* * Metadata about a snapshot, describing the state of the snapshot. */
24
+ FIR_SWIFT_NAME (SnapshotMetadata)
22
25
@interface FIRSnapshotMetadata : NSObject
23
26
24
27
- (instancetype )init NS_UNAVAILABLE;
You can’t perform that action at this time.
0 commit comments