├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .spi.yml ├── Examples ├── CaseStudies │ ├── Animations.swift │ ├── App.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── DynamicQuery.swift │ ├── Info.plist │ ├── Internal │ │ ├── CaseStudy.swift │ │ └── Text+Template.swift │ ├── ObservableModelDemo.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── README.md │ ├── SwiftDataTemplateDemo.swift │ ├── SwiftUIDemo.swift │ ├── TransactionDemo.swift │ └── UIKitDemo.swift ├── CaseStudiesTests │ └── CaseStudiesTests.swift ├── CloudKitDemo │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── CloudKitDemo.entitlements │ ├── CloudKitDemoApp.swift │ ├── CountersListFeature.swift │ ├── Info.plist │ └── Schema.swift ├── Examples.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ ├── CaseStudies.xcscheme │ │ ├── Reminders.xcscheme │ │ └── SyncUps.xcscheme ├── README.md ├── Reminders │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Helpers.swift │ ├── Info.plist │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── README.md │ ├── ReminderForm.swift │ ├── ReminderRow.swift │ ├── Reminders.entitlements │ ├── RemindersApp.swift │ ├── RemindersDetail.swift │ ├── RemindersListForm.swift │ ├── RemindersListRow.swift │ ├── RemindersLists.swift │ ├── Schema.swift │ ├── SearchReminders.swift │ ├── TagRow.swift │ └── TagsForm.swift ├── RemindersTests │ ├── Internal.swift │ ├── Reminders.xctestplan │ ├── RemindersDetailsTests.swift │ ├── RemindersListsTests.swift │ └── SearchRemindersTests.swift ├── SyncUpTests │ ├── Internal.swift │ └── SyncUpFormTests.swift └── SyncUps │ ├── App.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── Themes │ │ ├── Contents.json │ │ ├── appIndigo.colorset │ │ └── Contents.json │ │ ├── appMagenta.colorset │ │ └── Contents.json │ │ ├── appOrange.colorset │ │ └── Contents.json │ │ ├── appPurple.colorset │ │ └── Contents.json │ │ ├── appTeal.colorset │ │ └── Contents.json │ │ ├── appYellow.colorset │ │ └── Contents.json │ │ ├── bubblegum.colorset │ │ └── Contents.json │ │ ├── buttercup.colorset │ │ └── Contents.json │ │ ├── lavender.colorset │ │ └── Contents.json │ │ ├── navy.colorset │ │ └── Contents.json │ │ ├── oxblood.colorset │ │ └── Contents.json │ │ ├── periwinkle.colorset │ │ └── Contents.json │ │ ├── poppy.colorset │ │ └── Contents.json │ │ ├── seafoam.colorset │ │ └── Contents.json │ │ ├── sky.colorset │ │ └── Contents.json │ │ └── tan.colorset │ │ └── Contents.json │ ├── Dependencies │ ├── OpenSettings.swift │ ├── SoundEffectClient.swift │ └── SpeechClient.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── README.md │ ├── RecordMeeting.swift │ ├── Resources │ └── ding.wav │ ├── Schema.swift │ ├── SyncUpDetail.swift │ ├── SyncUpForm.swift │ ├── SyncUps.entitlements │ ├── SyncUpsApp.swift │ └── SyncUpsList.swift ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── Package@swift-6.0.swift ├── README.md ├── Sources ├── SQLiteData │ ├── CloudKit │ │ ├── CloudKit+StructuredQueries.swift │ │ ├── CloudKitSharing.swift │ │ ├── DefaultSyncEngine.swift │ │ ├── IdentifierStringConvertible.swift │ │ ├── Internal │ │ │ ├── CloudContainer.swift │ │ │ ├── CloudDatabase.swift │ │ │ ├── CloudKitFunctions.swift │ │ │ ├── DataManager.swift │ │ │ ├── DatetimeGenerator.swift │ │ │ ├── DefaultNotificationCenter.swift │ │ │ ├── ForeignKey.swift │ │ │ ├── IsolatedWeakVar.swift │ │ │ ├── Logging.swift │ │ │ ├── Metadatabase.swift │ │ │ ├── MockCloudContainer.swift │ │ │ ├── MockCloudDatabase.swift │ │ │ ├── MockSyncEngine.swift │ │ │ ├── PendingRecordZoneChange.swift │ │ │ ├── Pragmas.swift │ │ │ ├── RecordType.swift │ │ │ ├── SQLiteSchema.swift │ │ │ ├── StateSerialization.swift │ │ │ ├── SyncEngine.Event.swift │ │ │ ├── SyncEngineProtocol+Live.swift │ │ │ ├── SyncEngineProtocol.swift │ │ │ ├── TableInfo.swift │ │ │ ├── Triggers.swift │ │ │ ├── UnsyncedRecordID.swift │ │ │ ├── UserDatabase.swift │ │ │ └── _SendableMetatype.swift │ │ ├── PrimaryKeyMigration.swift │ │ ├── SyncEngine.swift │ │ ├── SyncEngineDelegate.swift │ │ └── SyncMetadata.swift │ ├── Documentation.docc │ │ ├── Articles │ │ │ ├── AddingToGRDB.md │ │ │ ├── CloudKit.md │ │ │ ├── CloudKitSharing.md │ │ │ ├── ComparisonWithSwiftData.md │ │ │ ├── DynamicQueries.md │ │ │ ├── Fetching.md │ │ │ ├── ManuallyMigratingPrimaryKeys.md │ │ │ ├── MigrationGuides.md │ │ │ ├── MigrationGuides │ │ │ │ └── MigratingTo1.4.md │ │ │ ├── Observing.md │ │ │ └── PreparingDatabase.md │ │ ├── Extensions │ │ │ ├── Database.md │ │ │ ├── Fetch.md │ │ │ ├── FetchAll.md │ │ │ ├── FetchCursor.md │ │ │ ├── FetchKeyRequest.md │ │ │ ├── FetchOne.md │ │ │ ├── IdentifierStringConvertible.md │ │ │ └── SystemFieldsRepresentation.md │ │ ├── Resources │ │ │ ├── sync-diagram-many-to-many-refactor.png │ │ │ ├── sync-diagram-many-to-many.png │ │ │ ├── sync-diagram-one-to-at-most-one-unique.png │ │ │ ├── sync-diagram-one-to-many.png │ │ │ └── sync-diagram-root-record.png │ │ └── SQLiteData.md │ ├── Fetch.swift │ ├── FetchAll.swift │ ├── FetchKeyRequest.swift │ ├── FetchOne.swift │ ├── FetchSubscription.swift │ ├── Internal │ │ ├── Exports.swift │ │ ├── FetchKey+SwiftUI.swift │ │ ├── FetchKey.swift │ │ ├── ISO8601.swift │ │ └── StatementKey.swift │ ├── StructuredQueries+GRDB │ │ ├── CustomFunctions.swift │ │ ├── DefaultDatabase.swift │ │ ├── QueryCursor.swift │ │ ├── SQLiteFunctionDecoder.swift │ │ ├── SQLiteQueryDecoder.swift │ │ ├── Seed.swift │ │ ├── Statement+GRDB.swift │ │ └── Table+GRDB.swift │ └── Traits │ │ └── Tagged.swift └── SQLiteDataTestSupport │ └── AssertQuery.swift └── Tests └── SQLiteDataTests ├── AssertQueryTests.swift ├── CloudKitTests ├── AccountLifecycleTests.swift ├── AppLifecycleTests.swift ├── AssetsTests.swift ├── AttachedMetadatabaseTests.swift ├── CloudKitTests.swift ├── FetchRecordZoneChangesTests.swift ├── FetchedDatabaseChangesTests.swift ├── ForeignKeyConstraintTests.swift ├── MergeConflictTests.swift ├── MetadataTests.swift ├── MockCloudDatabaseTests.swift ├── NewTableSyncTests.swift ├── NextRecordZoneChangeBatchTests.swift ├── RecordTypeTests.swift ├── ReferenceViolationTests.swift ├── SchemaChangeTests.swift ├── SharingPermissionsTests.swift ├── SharingTests.swift ├── SyncEngineDelegateTests.swift ├── SyncEngineLifecycleTests.swift ├── SyncEngineTests.swift ├── SyncEngineValidationTests.swift ├── TriggerTests.swift ├── UnattachedSyncEngineTests.swift └── UserlandTests.swift ├── CompileTimeTests.swift ├── CustomFunctionTests.swift ├── DatabaseFunctionTests.swift ├── FetchAllTests.swift ├── FetchOneTests.swift ├── FetchSubscriptionTests.swift ├── FetchTests.swift ├── IntegrationTests.swift ├── Internal ├── BaseCloudKitTests.swift ├── CloudKit+CustomDump.swift ├── CloudKitTestHelpers.swift ├── PrintTimestampsScope.swift ├── Schema.swift ├── TestScopes.swift └── UserDatabaseHelpers.swift ├── MigrationTests.swift ├── PrimaryKeyMigrationTests.swift └── QueryCursorTests.swift /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/.spi.yml -------------------------------------------------------------------------------- /Examples/CaseStudies/Animations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/Animations.swift -------------------------------------------------------------------------------- /Examples/CaseStudies/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/App.swift -------------------------------------------------------------------------------- /Examples/CaseStudies/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/CaseStudies/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/CaseStudies/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/CaseStudies/DynamicQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/DynamicQuery.swift -------------------------------------------------------------------------------- /Examples/CaseStudies/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/Info.plist -------------------------------------------------------------------------------- /Examples/CaseStudies/Internal/CaseStudy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/Internal/CaseStudy.swift -------------------------------------------------------------------------------- /Examples/CaseStudies/Internal/Text+Template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/Internal/Text+Template.swift -------------------------------------------------------------------------------- /Examples/CaseStudies/ObservableModelDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/ObservableModelDemo.swift -------------------------------------------------------------------------------- /Examples/CaseStudies/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/CaseStudies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/README.md -------------------------------------------------------------------------------- /Examples/CaseStudies/SwiftDataTemplateDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/SwiftDataTemplateDemo.swift -------------------------------------------------------------------------------- /Examples/CaseStudies/SwiftUIDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/SwiftUIDemo.swift -------------------------------------------------------------------------------- /Examples/CaseStudies/TransactionDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/TransactionDemo.swift -------------------------------------------------------------------------------- /Examples/CaseStudies/UIKitDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudies/UIKitDemo.swift -------------------------------------------------------------------------------- /Examples/CaseStudiesTests/CaseStudiesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CaseStudiesTests/CaseStudiesTests.swift -------------------------------------------------------------------------------- /Examples/CloudKitDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CloudKitDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/CloudKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CloudKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/CloudKitDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CloudKitDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/CloudKitDemo/CloudKitDemo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CloudKitDemo/CloudKitDemo.entitlements -------------------------------------------------------------------------------- /Examples/CloudKitDemo/CloudKitDemoApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CloudKitDemo/CloudKitDemoApp.swift -------------------------------------------------------------------------------- /Examples/CloudKitDemo/CountersListFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CloudKitDemo/CountersListFeature.swift -------------------------------------------------------------------------------- /Examples/CloudKitDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CloudKitDemo/Info.plist -------------------------------------------------------------------------------- /Examples/CloudKitDemo/Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/CloudKitDemo/Schema.swift -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Examples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Examples.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Examples.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/xcshareddata/xcschemes/CaseStudies.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Examples.xcodeproj/xcshareddata/xcschemes/CaseStudies.xcscheme -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/xcshareddata/xcschemes/Reminders.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Examples.xcodeproj/xcshareddata/xcschemes/Reminders.xcscheme -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/xcshareddata/xcschemes/SyncUps.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Examples.xcodeproj/xcshareddata/xcschemes/SyncUps.xcscheme -------------------------------------------------------------------------------- /Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/README.md -------------------------------------------------------------------------------- /Examples/Reminders/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/Reminders/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/Reminders/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/Reminders/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/Helpers.swift -------------------------------------------------------------------------------- /Examples/Reminders/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/Info.plist -------------------------------------------------------------------------------- /Examples/Reminders/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/Reminders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/README.md -------------------------------------------------------------------------------- /Examples/Reminders/ReminderForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/ReminderForm.swift -------------------------------------------------------------------------------- /Examples/Reminders/ReminderRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/ReminderRow.swift -------------------------------------------------------------------------------- /Examples/Reminders/Reminders.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/Reminders.entitlements -------------------------------------------------------------------------------- /Examples/Reminders/RemindersApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/RemindersApp.swift -------------------------------------------------------------------------------- /Examples/Reminders/RemindersDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/RemindersDetail.swift -------------------------------------------------------------------------------- /Examples/Reminders/RemindersListForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/RemindersListForm.swift -------------------------------------------------------------------------------- /Examples/Reminders/RemindersListRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/RemindersListRow.swift -------------------------------------------------------------------------------- /Examples/Reminders/RemindersLists.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/RemindersLists.swift -------------------------------------------------------------------------------- /Examples/Reminders/Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/Schema.swift -------------------------------------------------------------------------------- /Examples/Reminders/SearchReminders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/SearchReminders.swift -------------------------------------------------------------------------------- /Examples/Reminders/TagRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/TagRow.swift -------------------------------------------------------------------------------- /Examples/Reminders/TagsForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/Reminders/TagsForm.swift -------------------------------------------------------------------------------- /Examples/RemindersTests/Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/RemindersTests/Internal.swift -------------------------------------------------------------------------------- /Examples/RemindersTests/Reminders.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/RemindersTests/Reminders.xctestplan -------------------------------------------------------------------------------- /Examples/RemindersTests/RemindersDetailsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/RemindersTests/RemindersDetailsTests.swift -------------------------------------------------------------------------------- /Examples/RemindersTests/RemindersListsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/RemindersTests/RemindersListsTests.swift -------------------------------------------------------------------------------- /Examples/RemindersTests/SearchRemindersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/RemindersTests/SearchRemindersTests.swift -------------------------------------------------------------------------------- /Examples/SyncUpTests/Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUpTests/Internal.swift -------------------------------------------------------------------------------- /Examples/SyncUpTests/SyncUpFormTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUpTests/SyncUpFormTests.swift -------------------------------------------------------------------------------- /Examples/SyncUps/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/App.swift -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/appIndigo.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/appIndigo.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/appMagenta.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/appMagenta.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/appOrange.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/appOrange.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/appPurple.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/appPurple.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/appTeal.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/appTeal.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/appYellow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/appYellow.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/bubblegum.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/bubblegum.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/buttercup.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/buttercup.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/lavender.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/lavender.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/navy.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/navy.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/oxblood.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/oxblood.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/periwinkle.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/periwinkle.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/poppy.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/poppy.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/seafoam.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/seafoam.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/sky.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/sky.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Assets.xcassets/Themes/tan.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Assets.xcassets/Themes/tan.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/Dependencies/OpenSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Dependencies/OpenSettings.swift -------------------------------------------------------------------------------- /Examples/SyncUps/Dependencies/SoundEffectClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Dependencies/SoundEffectClient.swift -------------------------------------------------------------------------------- /Examples/SyncUps/Dependencies/SpeechClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Dependencies/SpeechClient.swift -------------------------------------------------------------------------------- /Examples/SyncUps/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Info.plist -------------------------------------------------------------------------------- /Examples/SyncUps/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/SyncUps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/README.md -------------------------------------------------------------------------------- /Examples/SyncUps/RecordMeeting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/RecordMeeting.swift -------------------------------------------------------------------------------- /Examples/SyncUps/Resources/ding.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Resources/ding.wav -------------------------------------------------------------------------------- /Examples/SyncUps/Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/Schema.swift -------------------------------------------------------------------------------- /Examples/SyncUps/SyncUpDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/SyncUpDetail.swift -------------------------------------------------------------------------------- /Examples/SyncUps/SyncUpForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/SyncUpForm.swift -------------------------------------------------------------------------------- /Examples/SyncUps/SyncUps.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/SyncUps.entitlements -------------------------------------------------------------------------------- /Examples/SyncUps/SyncUpsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/SyncUpsApp.swift -------------------------------------------------------------------------------- /Examples/SyncUps/SyncUpsList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Examples/SyncUps/SyncUpsList.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Package.swift -------------------------------------------------------------------------------- /Package@swift-6.0.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Package@swift-6.0.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/CloudKit+StructuredQueries.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/CloudKit+StructuredQueries.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/CloudKitSharing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/CloudKitSharing.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/DefaultSyncEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/DefaultSyncEngine.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/IdentifierStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/IdentifierStringConvertible.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/CloudContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/CloudContainer.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/CloudDatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/CloudDatabase.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/CloudKitFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/CloudKitFunctions.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/DataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/DataManager.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/DatetimeGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/DatetimeGenerator.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/DefaultNotificationCenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/DefaultNotificationCenter.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/ForeignKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/ForeignKey.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/IsolatedWeakVar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/IsolatedWeakVar.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/Logging.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/Metadatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/Metadatabase.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/MockCloudContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/MockCloudContainer.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/MockCloudDatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/MockCloudDatabase.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/MockSyncEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/MockSyncEngine.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/PendingRecordZoneChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/PendingRecordZoneChange.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/Pragmas.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/Pragmas.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/RecordType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/RecordType.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/SQLiteSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/SQLiteSchema.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/StateSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/StateSerialization.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/SyncEngine.Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/SyncEngine.Event.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/SyncEngineProtocol+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/SyncEngineProtocol+Live.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/SyncEngineProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/SyncEngineProtocol.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/TableInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/TableInfo.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/Triggers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/Triggers.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/UnsyncedRecordID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/UnsyncedRecordID.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/UserDatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/UserDatabase.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/Internal/_SendableMetatype.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/Internal/_SendableMetatype.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/PrimaryKeyMigration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/PrimaryKeyMigration.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/SyncEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/SyncEngine.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/SyncEngineDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/SyncEngineDelegate.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/CloudKit/SyncMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/CloudKit/SyncMetadata.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Articles/AddingToGRDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Articles/AddingToGRDB.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Articles/CloudKit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Articles/CloudKit.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Articles/CloudKitSharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Articles/CloudKitSharing.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Articles/ComparisonWithSwiftData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Articles/ComparisonWithSwiftData.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Articles/DynamicQueries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Articles/DynamicQueries.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Articles/Fetching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Articles/Fetching.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Articles/ManuallyMigratingPrimaryKeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Articles/ManuallyMigratingPrimaryKeys.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Articles/MigrationGuides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Articles/MigrationGuides.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Articles/MigrationGuides/MigratingTo1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Articles/MigrationGuides/MigratingTo1.4.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Articles/Observing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Articles/Observing.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Articles/PreparingDatabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Articles/PreparingDatabase.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Extensions/Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Extensions/Database.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Extensions/Fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Extensions/Fetch.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Extensions/FetchAll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Extensions/FetchAll.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Extensions/FetchCursor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Extensions/FetchCursor.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Extensions/FetchKeyRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Extensions/FetchKeyRequest.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Extensions/FetchOne.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Extensions/FetchOne.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Extensions/IdentifierStringConvertible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Extensions/IdentifierStringConvertible.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Extensions/SystemFieldsRepresentation.md: -------------------------------------------------------------------------------- 1 | # ``CloudKit/CKRecord/SystemFieldsRepresentation`` 2 | -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Resources/sync-diagram-many-to-many-refactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Resources/sync-diagram-many-to-many-refactor.png -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Resources/sync-diagram-many-to-many.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Resources/sync-diagram-many-to-many.png -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Resources/sync-diagram-one-to-at-most-one-unique.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Resources/sync-diagram-one-to-at-most-one-unique.png -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Resources/sync-diagram-one-to-many.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Resources/sync-diagram-one-to-many.png -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/Resources/sync-diagram-root-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/Resources/sync-diagram-root-record.png -------------------------------------------------------------------------------- /Sources/SQLiteData/Documentation.docc/SQLiteData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Documentation.docc/SQLiteData.md -------------------------------------------------------------------------------- /Sources/SQLiteData/Fetch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Fetch.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/FetchAll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/FetchAll.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/FetchKeyRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/FetchKeyRequest.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/FetchOne.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/FetchOne.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/FetchSubscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/FetchSubscription.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/Internal/Exports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Internal/Exports.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/Internal/FetchKey+SwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Internal/FetchKey+SwiftUI.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/Internal/FetchKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Internal/FetchKey.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/Internal/ISO8601.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Internal/ISO8601.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/Internal/StatementKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Internal/StatementKey.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/StructuredQueries+GRDB/CustomFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/StructuredQueries+GRDB/CustomFunctions.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/StructuredQueries+GRDB/DefaultDatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/StructuredQueries+GRDB/DefaultDatabase.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/StructuredQueries+GRDB/QueryCursor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/StructuredQueries+GRDB/QueryCursor.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/StructuredQueries+GRDB/SQLiteFunctionDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/StructuredQueries+GRDB/SQLiteFunctionDecoder.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/StructuredQueries+GRDB/SQLiteQueryDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/StructuredQueries+GRDB/SQLiteQueryDecoder.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/StructuredQueries+GRDB/Seed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/StructuredQueries+GRDB/Seed.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/StructuredQueries+GRDB/Statement+GRDB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/StructuredQueries+GRDB/Statement+GRDB.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/StructuredQueries+GRDB/Table+GRDB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/StructuredQueries+GRDB/Table+GRDB.swift -------------------------------------------------------------------------------- /Sources/SQLiteData/Traits/Tagged.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteData/Traits/Tagged.swift -------------------------------------------------------------------------------- /Sources/SQLiteDataTestSupport/AssertQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Sources/SQLiteDataTestSupport/AssertQuery.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/AssertQueryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/AssertQueryTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/AccountLifecycleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/AccountLifecycleTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/AppLifecycleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/AppLifecycleTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/AssetsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/AssetsTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/AttachedMetadatabaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/AttachedMetadatabaseTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/CloudKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/CloudKitTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/FetchRecordZoneChangesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/FetchRecordZoneChangesTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/FetchedDatabaseChangesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/FetchedDatabaseChangesTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/ForeignKeyConstraintTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/ForeignKeyConstraintTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/MergeConflictTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/MergeConflictTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/MetadataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/MetadataTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/MockCloudDatabaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/MockCloudDatabaseTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/NewTableSyncTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/NewTableSyncTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/NextRecordZoneChangeBatchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/NextRecordZoneChangeBatchTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/RecordTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/RecordTypeTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/ReferenceViolationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/ReferenceViolationTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/SchemaChangeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/SchemaChangeTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/SharingPermissionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/SharingPermissionsTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/SharingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/SharingTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/SyncEngineDelegateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/SyncEngineDelegateTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/SyncEngineLifecycleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/SyncEngineLifecycleTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/SyncEngineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/SyncEngineTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/SyncEngineValidationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/SyncEngineValidationTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/TriggerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/TriggerTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/UnattachedSyncEngineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/UnattachedSyncEngineTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CloudKitTests/UserlandTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CloudKitTests/UserlandTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CompileTimeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CompileTimeTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/CustomFunctionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/CustomFunctionTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/DatabaseFunctionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/DatabaseFunctionTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/FetchAllTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/FetchAllTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/FetchOneTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/FetchOneTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/FetchSubscriptionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/FetchSubscriptionTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/FetchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/FetchTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/IntegrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/IntegrationTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/Internal/BaseCloudKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/Internal/BaseCloudKitTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/Internal/CloudKit+CustomDump.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/Internal/CloudKit+CustomDump.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/Internal/CloudKitTestHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/Internal/CloudKitTestHelpers.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/Internal/PrintTimestampsScope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/Internal/PrintTimestampsScope.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/Internal/Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/Internal/Schema.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/Internal/TestScopes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/Internal/TestScopes.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/Internal/UserDatabaseHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/Internal/UserDatabaseHelpers.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/MigrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/MigrationTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/PrimaryKeyMigrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/PrimaryKeyMigrationTests.swift -------------------------------------------------------------------------------- /Tests/SQLiteDataTests/QueryCursorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/sqlite-data/HEAD/Tests/SQLiteDataTests/QueryCursorTests.swift --------------------------------------------------------------------------------