├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── Cartfile ├── Example ├── Common │ ├── Company │ │ ├── CompanyCellViewModel.swift │ │ ├── CompanyInteractor.swift │ │ ├── CompanyPresenter.swift │ │ ├── CompanyTableViewCell.swift │ │ ├── CompanyViewController.swift │ │ └── CompanyWireframe.swift │ ├── Employee │ │ ├── EmployeeCellViewModel.swift │ │ ├── EmployeeInteractor.swift │ │ ├── EmployeePresenter.swift │ │ ├── EmployeeTableViewCell.swift │ │ ├── EmployeeViewController.swift │ │ └── EmployeeWireframe.swift │ ├── Model │ │ ├── Company.swift │ │ ├── Employee.swift │ │ └── Identifier.swift │ ├── Settings │ │ ├── SettingsManager.swift │ │ └── SettingsViewController.swift │ └── Views │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard ├── CoreData │ ├── Podfile │ ├── SyncKitCoreData.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── SyncKitCoreData │ │ ├── SyncKitCoreData │ │ │ ├── Info.plist │ │ │ └── SyncKitCoreData.h │ │ └── SyncKitCoreDataFramework.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── SyncKitCoreData.xcscheme │ ├── SyncKitCoreDataExample │ │ ├── SyncKitCoreDataExample.xcodeproj │ │ │ └── project.pbxproj │ │ ├── SyncKitCoreDataExample │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Company │ │ │ │ └── CoreData │ │ │ │ │ ├── CoreDataCompanyInteractor.swift │ │ │ │ │ ├── CoreDataCompanyWireframe.swift │ │ │ │ │ └── Shared │ │ │ │ │ ├── CoreDataSharedCompanyInteractor.swift │ │ │ │ │ └── CoreDataSharedCompanyWireframe.swift │ │ │ ├── Employee │ │ │ │ └── CoreData │ │ │ │ │ ├── CoreDataEmployeeInteractor.swift │ │ │ │ │ └── CoreDataEmployeeWireframe.swift │ │ │ ├── Info.plist │ │ │ ├── Model │ │ │ │ └── CoreData │ │ │ │ │ ├── QSCompany+CoreDataClass.swift │ │ │ │ │ ├── QSCompany+CoreDataProperties.swift │ │ │ │ │ ├── QSEmployee+CoreDataClass.swift │ │ │ │ │ ├── QSEmployee+CoreDataProperties.swift │ │ │ │ │ └── QSExample.xcdatamodeld │ │ │ │ │ └── Example.xcdatamodel │ │ │ │ │ └── contents │ │ │ └── SyncKitCoreDataExample.entitlements │ │ └── SyncKitCoreDataExampleTests │ │ │ ├── Array+OrderInsensitiveCompare.swift │ │ │ ├── CloudKitSynchronizerTests.swift │ │ │ ├── CoreDataAdapterTests.swift │ │ │ ├── DefaultCoreDataAdapterDelegateTests.swift │ │ │ ├── DefaultCoreDataStackProviderTests.swift │ │ │ ├── Encrypted │ │ │ ├── EncryptedModel.xcdatamodeld │ │ │ │ └── EncryptedModel.xcdatamodel │ │ │ │ │ └── contents │ │ │ ├── EntityWithEncryptedFields+CoreDataClass.swift │ │ │ └── EntityWithEncryptedFields+CoreDataProperties.swift │ │ │ ├── FetchDatabaseChangesOperationTests.swift │ │ │ ├── FetchZoneChangesOperationTests.swift │ │ │ ├── Info.plist │ │ │ ├── IntPrimaryKey │ │ │ ├── IntPrimaryKeyModel.xcdatamodeld │ │ │ │ └── IntPrimaryKeyModel.xcdatamodel │ │ │ │ │ └── contents │ │ │ ├── QSCompany_Int+CoreDataClass.swift │ │ │ ├── QSCompany_Int+CoreDataProperties.swift │ │ │ ├── QSEmployee_Int+CoreDataClass.swift │ │ │ └── QSEmployee_Int+CoreDataProperties.swift │ │ │ ├── Mocks │ │ │ ├── MockAdapterProvider.swift │ │ │ ├── MockCloudKitDatabase.swift │ │ │ ├── MockCloudKitSynchronizerDelegate.swift │ │ │ ├── MockKeyValueStore.swift │ │ │ ├── MockManagedObjectContext.swift │ │ │ ├── MockModelAdapter.swift │ │ │ └── QSObject.swift │ │ │ ├── ModifyRecordsOperationTests.swift │ │ │ ├── QSCloudKitSynchronizerOperationTests.swift │ │ │ ├── QSCompany.1739C6A5-C07E-48A5-B83E-AB07694F23DF │ │ │ ├── RecordProcessingDelegate.swift │ │ │ ├── TestError.swift │ │ │ ├── TestUtilities.swift │ │ │ ├── Transformable │ │ │ ├── QSNamesTransformer.swift │ │ │ ├── QSTestEntity+CoreDataClass.swift │ │ │ ├── QSTestEntity+CoreDataProperties.swift │ │ │ ├── QSTestEntity2+CoreDataClass.swift │ │ │ ├── QSTestEntity2+CoreDataProperties.swift │ │ │ ├── QSTestEntity3+CoreDataClass.swift │ │ │ ├── QSTestEntity3+CoreDataProperties.swift │ │ │ └── QSTransformableTestModel.xcdatamodeld │ │ │ │ └── QSTransformableTestModel.xcdatamodel │ │ │ │ └── contents │ │ │ ├── UUIDPrimaryKey │ │ │ ├── QSCompany_UUID+CoreDataClass.swift │ │ │ ├── QSCompany_UUID+CoreDataProperties.swift │ │ │ ├── QSEmployee_UUID+CoreDataClass.swift │ │ │ ├── QSEmployee_UUID+CoreDataProperties.swift │ │ │ └── UUIDPrimaryKeyModel.xcdatamodeld │ │ │ │ └── UUIDPrimaryKeyModel.xcdatamodel │ │ │ │ └── contents │ │ │ └── serverChangeToken.AQAAAWPa1DUC │ └── WatchApp │ │ ├── App │ │ ├── dummy.swift │ │ └── main.swift │ │ └── WatchApp.xcodeproj │ │ └── project.pbxproj ├── Realm │ ├── Podfile │ ├── SyncKitRealm.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── SyncKitRealm │ │ ├── SyncKitRealm │ │ │ ├── Info.plist │ │ │ └── SyncKitRealm.h │ │ └── SyncKitRealmFramework.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── SyncKitRealm.xcscheme │ └── SyncKitRealmExample │ │ ├── SyncKitRealmExample.xcodeproj │ │ └── project.pbxproj │ │ ├── SyncKitRealmExample │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Company │ │ │ └── Realm │ │ │ │ ├── RealmCompanyInteractor.swift │ │ │ │ ├── RealmCompanyWireframe.swift │ │ │ │ ├── RealmSharedCompanyInteractor.swift │ │ │ │ └── RealmSharedCompanyWireframe.swift │ │ ├── Employee │ │ │ └── Realm │ │ │ │ ├── RealmEmployeeInteractor.swift │ │ │ │ └── RealmEmployeeWireframe.swift │ │ ├── Info.plist │ │ ├── Model │ │ │ └── Realm │ │ │ │ ├── QSCompany.swift │ │ │ │ └── QSEmployee.swift │ │ └── SyncKitRealmExample.entitlements │ │ ├── SyncKitRealmExampleTests │ │ ├── EntityWithEncryptedFields.swift │ │ ├── Info.plist │ │ ├── IntPrimaryKeyObjects.swift │ │ ├── ObjectIdKeyObjects.swift │ │ ├── QSCompany.1739C6A5-C07E-48A5-B83E-AB07694F23DF │ │ ├── RecordProcessingDelegate.swift │ │ ├── SyncKitRealmSwiftTests.swift │ │ ├── TestUtilities.swift │ │ ├── Transformable │ │ │ └── QSTransformableTestModel.xcdatamodeld │ │ │ │ └── QSTransformableTestModel.xcdatamodel │ │ │ │ └── contents │ │ └── serverChangeToken.AQAAAWPa1DUC │ │ └── SyncKitRealmExampleTodayExtension │ │ ├── Base.lproj │ │ └── MainInterface.storyboard │ │ ├── Info.plist │ │ ├── SyncKitRealmExampleTodayExtension.entitlements │ │ └── TodayViewController.swift └── RealmSwift │ ├── Podfile │ ├── Podfile.lock │ ├── SyncKitRealmSwift.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── SyncKitRealmSwift │ ├── SyncKitRealmSwift │ │ ├── Info.plist │ │ └── SyncKitRealmSwift.h │ └── SyncKitRealmSwiftFramework.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ └── xcschemes │ │ └── SyncKitRealmSwift.xcscheme │ └── SyncKitRealmSwiftExample │ ├── SyncKitRealmSwiftExample copy-Info.plist │ ├── SyncKitRealmSwiftExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── SyncKitRealmSwiftExample.xcscheme │ │ └── SyncKitRealmSwiftExample_Int.xcscheme │ ├── SyncKitRealmSwiftExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Company │ │ └── Realm │ │ │ ├── RealmCompanyInteractor.swift │ │ │ ├── RealmCompanyInteractor_Int.swift │ │ │ ├── RealmCompanyWireframe.swift │ │ │ ├── RealmSharedCompanyInteractor.swift │ │ │ └── RealmSharedCompanyWireframe.swift │ ├── Employee │ │ └── Realm │ │ │ ├── RealmEmployeeInteractor.swift │ │ │ ├── RealmEmployeeInteractor_Int.swift │ │ │ └── RealmEmployeeWireframe.swift │ ├── Info.plist │ ├── Model │ │ └── Realm │ │ │ ├── IntPrimaryKeyObjects.swift │ │ │ ├── ObjectIdKeyObjects.swift │ │ │ ├── QSCompany.swift │ │ │ └── QSEmployee.swift │ └── SyncKitRealmSwiftExample.entitlements │ └── SyncKitRealmSwiftExampleTests │ ├── EntityWithEncryptedFields.swift │ ├── Info.plist │ ├── QSCompany.1739C6A5-C07E-48A5-B83E-AB07694F23DF │ ├── RecordProcessingDelegate.swift │ ├── SyncKitRealmSwiftTests.swift │ ├── TestUtilities.swift │ ├── Transformable │ └── QSTransformableTestModel.xcdatamodeld │ │ └── QSTransformableTestModel.xcdatamodel │ │ └── contents │ └── serverChangeToken.AQAAAWPa1DUC ├── LICENSE ├── Package.swift ├── README.md ├── SyncKit.podspec ├── SyncKit ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── CoreData │ ├── CloudKitSynchronizer+CoreData.swift │ ├── Core │ ├── CoreDataAdapter+ModelAdapter.swift │ ├── CoreDataAdapter+Notifications.swift │ ├── CoreDataAdapter+Private.swift │ ├── CoreDataAdapter.swift │ ├── CoreDataMultiFetchedResultsController.swift │ ├── CoreDataStack.swift │ ├── DefaultCoreDataAdapterDelegate.swift │ ├── DefaultCoreDataAdapterProvider.swift │ ├── DefaultCoreDataStackProvider.swift │ ├── NSManagedObjectContext+Fetch.swift │ ├── PrimaryKeyValue.swift │ ├── QSCloudKitSyncModel.xcdatamodeld │ │ ├── .xccurrentversion │ │ ├── QSCloudKitSyncModel 2.xcdatamodel │ │ │ └── contents │ │ ├── QSCloudKitSyncModel 3.xcdatamodel │ │ │ └── contents │ │ └── QSCloudKitSyncModel.xcdatamodel │ │ │ └── contents │ ├── QSManagedObjectContext.swift │ ├── QSPendingRelationship+CoreDataClass.swift │ ├── QSPendingRelationship+CoreDataProperties.swift │ ├── QSRecord+CoreDataClass.swift │ ├── QSRecord+CoreDataProperties.swift │ ├── QSServerToken+CoreDataClass.swift │ ├── QSServerToken+CoreDataProperties.swift │ ├── QSSyncedEntity+CoreDataClass.swift │ └── QSSyncedEntity+CoreDataProperties.swift │ ├── QSSynchronizer │ ├── BackupDetection.swift │ ├── CloudKitDatabase.swift │ ├── CloudKitSynchronizer+Private.swift │ ├── CloudKitSynchronizer+Sharing.swift │ ├── CloudKitSynchronizer+Subscriptions.swift │ ├── CloudKitSynchronizer+Sync.swift │ ├── CloudKitSynchronizer.swift │ ├── KeyValueStore.swift │ ├── ModelAdapter.swift │ ├── Operations │ │ ├── CloudKitSynchronizerOperation.swift │ │ ├── FetchDatabaseChangesOperation.swift │ │ ├── FetchZoneChangesOperation.swift │ │ └── ModifyRecordsOperation.swift │ ├── PrimaryKey.swift │ ├── QSCoder.swift │ ├── SyncedEntityState.swift │ └── TempFileManager.swift │ ├── Realm │ ├── CloudKitSynchronizer+MultiRealmResultsController.swift │ ├── CloudKitSynchronizer+Realm.swift │ ├── Core │ ├── DefaultRealmProvider.swift │ ├── DefaultRealmSwiftAdapterProvider.swift │ ├── MultiRealmResultsController.swift │ ├── PendingRelationship.swift │ ├── RLMSupport.swift │ ├── RealmAdapter.swift │ ├── Record.swift │ ├── ServerToken.swift │ └── SyncedEntity.swift │ └── RealmSwift │ ├── Core │ ├── DefaultRealmProvider.swift │ ├── DefaultRealmSwiftAdapterProvider.swift │ ├── MultiRealmResultsController.swift │ ├── PendingRelationship.swift │ ├── QSCloudKitSynchronizer+MultiRealmResultsController.swift │ ├── QSCloudKitSynchronizer+RealmSwift.swift │ ├── RealmSwiftAdapter.swift │ ├── Record.swift │ ├── ServerToken.swift │ └── SyncedEntity.swift └── _config.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Cartfile -------------------------------------------------------------------------------- /Example/Common/Company/CompanyCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Company/CompanyCellViewModel.swift -------------------------------------------------------------------------------- /Example/Common/Company/CompanyInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Company/CompanyInteractor.swift -------------------------------------------------------------------------------- /Example/Common/Company/CompanyPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Company/CompanyPresenter.swift -------------------------------------------------------------------------------- /Example/Common/Company/CompanyTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Company/CompanyTableViewCell.swift -------------------------------------------------------------------------------- /Example/Common/Company/CompanyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Company/CompanyViewController.swift -------------------------------------------------------------------------------- /Example/Common/Company/CompanyWireframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Company/CompanyWireframe.swift -------------------------------------------------------------------------------- /Example/Common/Employee/EmployeeCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Employee/EmployeeCellViewModel.swift -------------------------------------------------------------------------------- /Example/Common/Employee/EmployeeInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Employee/EmployeeInteractor.swift -------------------------------------------------------------------------------- /Example/Common/Employee/EmployeePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Employee/EmployeePresenter.swift -------------------------------------------------------------------------------- /Example/Common/Employee/EmployeeTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Employee/EmployeeTableViewCell.swift -------------------------------------------------------------------------------- /Example/Common/Employee/EmployeeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Employee/EmployeeViewController.swift -------------------------------------------------------------------------------- /Example/Common/Employee/EmployeeWireframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Employee/EmployeeWireframe.swift -------------------------------------------------------------------------------- /Example/Common/Model/Company.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Model/Company.swift -------------------------------------------------------------------------------- /Example/Common/Model/Employee.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Model/Employee.swift -------------------------------------------------------------------------------- /Example/Common/Model/Identifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Model/Identifier.swift -------------------------------------------------------------------------------- /Example/Common/Settings/SettingsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Settings/SettingsManager.swift -------------------------------------------------------------------------------- /Example/Common/Settings/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Settings/SettingsViewController.swift -------------------------------------------------------------------------------- /Example/Common/Views/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Views/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Common/Views/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Common/Views/Main.storyboard -------------------------------------------------------------------------------- /Example/CoreData/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/Podfile -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreData.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreData.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreData.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreData.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreData/SyncKitCoreData/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreData/SyncKitCoreData/Info.plist -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreData/SyncKitCoreData/SyncKitCoreData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreData/SyncKitCoreData/SyncKitCoreData.h -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreData/SyncKitCoreDataFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreData/SyncKitCoreDataFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreData/SyncKitCoreDataFramework.xcodeproj/xcshareddata/xcschemes/SyncKitCoreData.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreData/SyncKitCoreDataFramework.xcodeproj/xcshareddata/xcschemes/SyncKitCoreData.xcscheme -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Company/CoreData/CoreDataCompanyInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Company/CoreData/CoreDataCompanyInteractor.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Company/CoreData/CoreDataCompanyWireframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Company/CoreData/CoreDataCompanyWireframe.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Company/CoreData/Shared/CoreDataSharedCompanyInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Company/CoreData/Shared/CoreDataSharedCompanyInteractor.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Company/CoreData/Shared/CoreDataSharedCompanyWireframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Company/CoreData/Shared/CoreDataSharedCompanyWireframe.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Employee/CoreData/CoreDataEmployeeInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Employee/CoreData/CoreDataEmployeeInteractor.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Employee/CoreData/CoreDataEmployeeWireframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Employee/CoreData/CoreDataEmployeeWireframe.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Info.plist -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Model/CoreData/QSCompany+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Model/CoreData/QSCompany+CoreDataClass.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Model/CoreData/QSCompany+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Model/CoreData/QSCompany+CoreDataProperties.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Model/CoreData/QSEmployee+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Model/CoreData/QSEmployee+CoreDataClass.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Model/CoreData/QSEmployee+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Model/CoreData/QSEmployee+CoreDataProperties.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Model/CoreData/QSExample.xcdatamodeld/Example.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/Model/CoreData/QSExample.xcdatamodeld/Example.xcdatamodel/contents -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/SyncKitCoreDataExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExample/SyncKitCoreDataExample.entitlements -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Array+OrderInsensitiveCompare.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Array+OrderInsensitiveCompare.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/CloudKitSynchronizerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/CloudKitSynchronizerTests.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/CoreDataAdapterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/CoreDataAdapterTests.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/DefaultCoreDataAdapterDelegateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/DefaultCoreDataAdapterDelegateTests.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/DefaultCoreDataStackProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/DefaultCoreDataStackProviderTests.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Encrypted/EncryptedModel.xcdatamodeld/EncryptedModel.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Encrypted/EncryptedModel.xcdatamodeld/EncryptedModel.xcdatamodel/contents -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Encrypted/EntityWithEncryptedFields+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Encrypted/EntityWithEncryptedFields+CoreDataClass.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Encrypted/EntityWithEncryptedFields+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Encrypted/EntityWithEncryptedFields+CoreDataProperties.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/FetchDatabaseChangesOperationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/FetchDatabaseChangesOperationTests.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/FetchZoneChangesOperationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/FetchZoneChangesOperationTests.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/IntPrimaryKey/IntPrimaryKeyModel.xcdatamodeld/IntPrimaryKeyModel.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/IntPrimaryKey/IntPrimaryKeyModel.xcdatamodeld/IntPrimaryKeyModel.xcdatamodel/contents -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/IntPrimaryKey/QSCompany_Int+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/IntPrimaryKey/QSCompany_Int+CoreDataClass.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/IntPrimaryKey/QSCompany_Int+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/IntPrimaryKey/QSCompany_Int+CoreDataProperties.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/IntPrimaryKey/QSEmployee_Int+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/IntPrimaryKey/QSEmployee_Int+CoreDataClass.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/IntPrimaryKey/QSEmployee_Int+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/IntPrimaryKey/QSEmployee_Int+CoreDataProperties.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Mocks/MockAdapterProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Mocks/MockAdapterProvider.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Mocks/MockCloudKitDatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Mocks/MockCloudKitDatabase.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Mocks/MockCloudKitSynchronizerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Mocks/MockCloudKitSynchronizerDelegate.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Mocks/MockKeyValueStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Mocks/MockKeyValueStore.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Mocks/MockManagedObjectContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Mocks/MockManagedObjectContext.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Mocks/MockModelAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Mocks/MockModelAdapter.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Mocks/QSObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Mocks/QSObject.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/ModifyRecordsOperationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/ModifyRecordsOperationTests.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/QSCloudKitSynchronizerOperationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/QSCloudKitSynchronizerOperationTests.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/QSCompany.1739C6A5-C07E-48A5-B83E-AB07694F23DF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/QSCompany.1739C6A5-C07E-48A5-B83E-AB07694F23DF -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/RecordProcessingDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/RecordProcessingDelegate.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/TestError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/TestError.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/TestUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/TestUtilities.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSNamesTransformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSNamesTransformer.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSTestEntity+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSTestEntity+CoreDataClass.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSTestEntity+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSTestEntity+CoreDataProperties.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSTestEntity2+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSTestEntity2+CoreDataClass.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSTestEntity2+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSTestEntity2+CoreDataProperties.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSTestEntity3+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSTestEntity3+CoreDataClass.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSTestEntity3+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSTestEntity3+CoreDataProperties.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSTransformableTestModel.xcdatamodeld/QSTransformableTestModel.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/Transformable/QSTransformableTestModel.xcdatamodeld/QSTransformableTestModel.xcdatamodel/contents -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/UUIDPrimaryKey/QSCompany_UUID+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/UUIDPrimaryKey/QSCompany_UUID+CoreDataClass.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/UUIDPrimaryKey/QSCompany_UUID+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/UUIDPrimaryKey/QSCompany_UUID+CoreDataProperties.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/UUIDPrimaryKey/QSEmployee_UUID+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/UUIDPrimaryKey/QSEmployee_UUID+CoreDataClass.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/UUIDPrimaryKey/QSEmployee_UUID+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/UUIDPrimaryKey/QSEmployee_UUID+CoreDataProperties.swift -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/UUIDPrimaryKey/UUIDPrimaryKeyModel.xcdatamodeld/UUIDPrimaryKeyModel.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/UUIDPrimaryKey/UUIDPrimaryKeyModel.xcdatamodeld/UUIDPrimaryKeyModel.xcdatamodel/contents -------------------------------------------------------------------------------- /Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/serverChangeToken.AQAAAWPa1DUC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/SyncKitCoreDataExample/SyncKitCoreDataExampleTests/serverChangeToken.AQAAAWPa1DUC -------------------------------------------------------------------------------- /Example/CoreData/WatchApp/App/dummy.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/CoreData/WatchApp/App/main.swift: -------------------------------------------------------------------------------- 1 | import SyncKit 2 | -------------------------------------------------------------------------------- /Example/CoreData/WatchApp/WatchApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/CoreData/WatchApp/WatchApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Realm/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/Podfile -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealm.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealm.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealm.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealm.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealm/SyncKitRealm/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealm/SyncKitRealm/Info.plist -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealm/SyncKitRealm/SyncKitRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealm/SyncKitRealm/SyncKitRealm.h -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealm/SyncKitRealmFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealm/SyncKitRealmFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealm/SyncKitRealmFramework.xcodeproj/xcshareddata/xcschemes/SyncKitRealm.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealm/SyncKitRealmFramework.xcodeproj/xcshareddata/xcschemes/SyncKitRealm.xcscheme -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Company/Realm/RealmCompanyInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Company/Realm/RealmCompanyInteractor.swift -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Company/Realm/RealmCompanyWireframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Company/Realm/RealmCompanyWireframe.swift -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Company/Realm/RealmSharedCompanyInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Company/Realm/RealmSharedCompanyInteractor.swift -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Company/Realm/RealmSharedCompanyWireframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Company/Realm/RealmSharedCompanyWireframe.swift -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Employee/Realm/RealmEmployeeInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Employee/Realm/RealmEmployeeInteractor.swift -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Employee/Realm/RealmEmployeeWireframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Employee/Realm/RealmEmployeeWireframe.swift -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Info.plist -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Model/Realm/QSCompany.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Model/Realm/QSCompany.swift -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Model/Realm/QSEmployee.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExample/Model/Realm/QSEmployee.swift -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExample/SyncKitRealmExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExample/SyncKitRealmExample.entitlements -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/EntityWithEncryptedFields.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/EntityWithEncryptedFields.swift -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/IntPrimaryKeyObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/IntPrimaryKeyObjects.swift -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/ObjectIdKeyObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/ObjectIdKeyObjects.swift -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/QSCompany.1739C6A5-C07E-48A5-B83E-AB07694F23DF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/QSCompany.1739C6A5-C07E-48A5-B83E-AB07694F23DF -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/RecordProcessingDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/RecordProcessingDelegate.swift -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/SyncKitRealmSwiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/SyncKitRealmSwiftTests.swift -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/TestUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/TestUtilities.swift -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/Transformable/QSTransformableTestModel.xcdatamodeld/QSTransformableTestModel.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/Transformable/QSTransformableTestModel.xcdatamodeld/QSTransformableTestModel.xcdatamodel/contents -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/serverChangeToken.AQAAAWPa1DUC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTests/serverChangeToken.AQAAAWPa1DUC -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTodayExtension/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTodayExtension/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTodayExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTodayExtension/Info.plist -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTodayExtension/SyncKitRealmExampleTodayExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTodayExtension/SyncKitRealmExampleTodayExtension.entitlements -------------------------------------------------------------------------------- /Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTodayExtension/TodayViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/Realm/SyncKitRealmExample/SyncKitRealmExampleTodayExtension/TodayViewController.swift -------------------------------------------------------------------------------- /Example/RealmSwift/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/Podfile -------------------------------------------------------------------------------- /Example/RealmSwift/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/Podfile.lock -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwift.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwift.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwift.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwift.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwift/SyncKitRealmSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwift/SyncKitRealmSwift/Info.plist -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwift/SyncKitRealmSwift/SyncKitRealmSwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwift/SyncKitRealmSwift/SyncKitRealmSwift.h -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwift/SyncKitRealmSwiftFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwift/SyncKitRealmSwiftFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwift/SyncKitRealmSwiftFramework.xcodeproj/xcshareddata/xcschemes/SyncKitRealmSwift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwift/SyncKitRealmSwiftFramework.xcodeproj/xcshareddata/xcschemes/SyncKitRealmSwift.xcscheme -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample copy-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample copy-Info.plist -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample.xcodeproj/xcshareddata/xcschemes/SyncKitRealmSwiftExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample.xcodeproj/xcshareddata/xcschemes/SyncKitRealmSwiftExample.xcscheme -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample.xcodeproj/xcshareddata/xcschemes/SyncKitRealmSwiftExample_Int.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample.xcodeproj/xcshareddata/xcschemes/SyncKitRealmSwiftExample_Int.xcscheme -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Company/Realm/RealmCompanyInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Company/Realm/RealmCompanyInteractor.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Company/Realm/RealmCompanyInteractor_Int.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Company/Realm/RealmCompanyInteractor_Int.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Company/Realm/RealmCompanyWireframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Company/Realm/RealmCompanyWireframe.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Company/Realm/RealmSharedCompanyInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Company/Realm/RealmSharedCompanyInteractor.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Company/Realm/RealmSharedCompanyWireframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Company/Realm/RealmSharedCompanyWireframe.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Employee/Realm/RealmEmployeeInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Employee/Realm/RealmEmployeeInteractor.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Employee/Realm/RealmEmployeeInteractor_Int.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Employee/Realm/RealmEmployeeInteractor_Int.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Employee/Realm/RealmEmployeeWireframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Employee/Realm/RealmEmployeeWireframe.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Info.plist -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Model/Realm/IntPrimaryKeyObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Model/Realm/IntPrimaryKeyObjects.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Model/Realm/ObjectIdKeyObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Model/Realm/ObjectIdKeyObjects.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Model/Realm/QSCompany.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Model/Realm/QSCompany.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Model/Realm/QSEmployee.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/Model/Realm/QSEmployee.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample/SyncKitRealmSwiftExample.entitlements -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/EntityWithEncryptedFields.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/EntityWithEncryptedFields.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/QSCompany.1739C6A5-C07E-48A5-B83E-AB07694F23DF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/QSCompany.1739C6A5-C07E-48A5-B83E-AB07694F23DF -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/RecordProcessingDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/RecordProcessingDelegate.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/SyncKitRealmSwiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/SyncKitRealmSwiftTests.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/TestUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/TestUtilities.swift -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/Transformable/QSTransformableTestModel.xcdatamodeld/QSTransformableTestModel.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/Transformable/QSTransformableTestModel.xcdatamodeld/QSTransformableTestModel.xcdatamodel/contents -------------------------------------------------------------------------------- /Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/serverChangeToken.AQAAAWPa1DUC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Example/RealmSwift/SyncKitRealmSwiftExample/SyncKitRealmSwiftExampleTests/serverChangeToken.AQAAAWPa1DUC -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/README.md -------------------------------------------------------------------------------- /SyncKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit.podspec -------------------------------------------------------------------------------- /SyncKit/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SyncKit/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/CloudKitSynchronizer+CoreData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/CloudKitSynchronizer+CoreData.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/Core: -------------------------------------------------------------------------------- 1 | ../QSSynchronizer -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/CoreDataAdapter+ModelAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/CoreDataAdapter+ModelAdapter.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/CoreDataAdapter+Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/CoreDataAdapter+Notifications.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/CoreDataAdapter+Private.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/CoreDataAdapter+Private.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/CoreDataAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/CoreDataAdapter.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/CoreDataMultiFetchedResultsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/CoreDataMultiFetchedResultsController.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/CoreDataStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/CoreDataStack.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/DefaultCoreDataAdapterDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/DefaultCoreDataAdapterDelegate.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/DefaultCoreDataAdapterProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/DefaultCoreDataAdapterProvider.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/DefaultCoreDataStackProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/DefaultCoreDataStackProvider.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/NSManagedObjectContext+Fetch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/NSManagedObjectContext+Fetch.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/PrimaryKeyValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/PrimaryKeyValue.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/QSCloudKitSyncModel.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/QSCloudKitSyncModel.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/QSCloudKitSyncModel.xcdatamodeld/QSCloudKitSyncModel 2.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/QSCloudKitSyncModel.xcdatamodeld/QSCloudKitSyncModel 2.xcdatamodel/contents -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/QSCloudKitSyncModel.xcdatamodeld/QSCloudKitSyncModel 3.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/QSCloudKitSyncModel.xcdatamodeld/QSCloudKitSyncModel 3.xcdatamodel/contents -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/QSCloudKitSyncModel.xcdatamodeld/QSCloudKitSyncModel.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/QSCloudKitSyncModel.xcdatamodeld/QSCloudKitSyncModel.xcdatamodel/contents -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/QSManagedObjectContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/QSManagedObjectContext.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/QSPendingRelationship+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/QSPendingRelationship+CoreDataClass.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/QSPendingRelationship+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/QSPendingRelationship+CoreDataProperties.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/QSRecord+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/QSRecord+CoreDataClass.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/QSRecord+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/QSRecord+CoreDataProperties.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/QSServerToken+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/QSServerToken+CoreDataClass.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/QSServerToken+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/QSServerToken+CoreDataProperties.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/QSSyncedEntity+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/QSSyncedEntity+CoreDataClass.swift -------------------------------------------------------------------------------- /SyncKit/Classes/CoreData/QSSyncedEntity+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/CoreData/QSSyncedEntity+CoreDataProperties.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/BackupDetection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/BackupDetection.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/CloudKitDatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/CloudKitDatabase.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/CloudKitSynchronizer+Private.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/CloudKitSynchronizer+Private.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/CloudKitSynchronizer+Sharing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/CloudKitSynchronizer+Sharing.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/CloudKitSynchronizer+Subscriptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/CloudKitSynchronizer+Subscriptions.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/CloudKitSynchronizer+Sync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/CloudKitSynchronizer+Sync.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/CloudKitSynchronizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/CloudKitSynchronizer.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/KeyValueStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/KeyValueStore.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/ModelAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/ModelAdapter.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/Operations/CloudKitSynchronizerOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/Operations/CloudKitSynchronizerOperation.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/Operations/FetchDatabaseChangesOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/Operations/FetchDatabaseChangesOperation.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/Operations/FetchZoneChangesOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/Operations/FetchZoneChangesOperation.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/Operations/ModifyRecordsOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/Operations/ModifyRecordsOperation.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/PrimaryKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/PrimaryKey.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/QSCoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/QSCoder.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/SyncedEntityState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/SyncedEntityState.swift -------------------------------------------------------------------------------- /SyncKit/Classes/QSSynchronizer/TempFileManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/QSSynchronizer/TempFileManager.swift -------------------------------------------------------------------------------- /SyncKit/Classes/Realm/CloudKitSynchronizer+MultiRealmResultsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/Realm/CloudKitSynchronizer+MultiRealmResultsController.swift -------------------------------------------------------------------------------- /SyncKit/Classes/Realm/CloudKitSynchronizer+Realm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/Realm/CloudKitSynchronizer+Realm.swift -------------------------------------------------------------------------------- /SyncKit/Classes/Realm/Core: -------------------------------------------------------------------------------- 1 | ../QSSynchronizer -------------------------------------------------------------------------------- /SyncKit/Classes/Realm/DefaultRealmProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/Realm/DefaultRealmProvider.swift -------------------------------------------------------------------------------- /SyncKit/Classes/Realm/DefaultRealmSwiftAdapterProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/Realm/DefaultRealmSwiftAdapterProvider.swift -------------------------------------------------------------------------------- /SyncKit/Classes/Realm/MultiRealmResultsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/Realm/MultiRealmResultsController.swift -------------------------------------------------------------------------------- /SyncKit/Classes/Realm/PendingRelationship.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/Realm/PendingRelationship.swift -------------------------------------------------------------------------------- /SyncKit/Classes/Realm/RLMSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/Realm/RLMSupport.swift -------------------------------------------------------------------------------- /SyncKit/Classes/Realm/RealmAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/Realm/RealmAdapter.swift -------------------------------------------------------------------------------- /SyncKit/Classes/Realm/Record.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/Realm/Record.swift -------------------------------------------------------------------------------- /SyncKit/Classes/Realm/ServerToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/Realm/ServerToken.swift -------------------------------------------------------------------------------- /SyncKit/Classes/Realm/SyncedEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/Realm/SyncedEntity.swift -------------------------------------------------------------------------------- /SyncKit/Classes/RealmSwift/Core: -------------------------------------------------------------------------------- 1 | ../QSSynchronizer -------------------------------------------------------------------------------- /SyncKit/Classes/RealmSwift/DefaultRealmProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/RealmSwift/DefaultRealmProvider.swift -------------------------------------------------------------------------------- /SyncKit/Classes/RealmSwift/DefaultRealmSwiftAdapterProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/RealmSwift/DefaultRealmSwiftAdapterProvider.swift -------------------------------------------------------------------------------- /SyncKit/Classes/RealmSwift/MultiRealmResultsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/RealmSwift/MultiRealmResultsController.swift -------------------------------------------------------------------------------- /SyncKit/Classes/RealmSwift/PendingRelationship.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/RealmSwift/PendingRelationship.swift -------------------------------------------------------------------------------- /SyncKit/Classes/RealmSwift/QSCloudKitSynchronizer+MultiRealmResultsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/RealmSwift/QSCloudKitSynchronizer+MultiRealmResultsController.swift -------------------------------------------------------------------------------- /SyncKit/Classes/RealmSwift/QSCloudKitSynchronizer+RealmSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/RealmSwift/QSCloudKitSynchronizer+RealmSwift.swift -------------------------------------------------------------------------------- /SyncKit/Classes/RealmSwift/RealmSwiftAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/RealmSwift/RealmSwiftAdapter.swift -------------------------------------------------------------------------------- /SyncKit/Classes/RealmSwift/Record.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/RealmSwift/Record.swift -------------------------------------------------------------------------------- /SyncKit/Classes/RealmSwift/ServerToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/RealmSwift/ServerToken.swift -------------------------------------------------------------------------------- /SyncKit/Classes/RealmSwift/SyncedEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/SyncKit/Classes/RealmSwift/SyncedEntity.swift -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mentrena/SyncKit/HEAD/_config.yml --------------------------------------------------------------------------------