├── .github └── workflows │ ├── ci.yml │ ├── deploy_docs.yml │ ├── publish.yml │ └── update_lexicons.yml ├── .gitignore ├── LICENSE ├── README.md ├── RELEASING.md ├── api-gen-runtime-internal ├── .gitignore ├── api │ └── api-gen-runtime-internal.api ├── build.gradle.kts ├── gradle.properties └── src │ └── commonMain │ └── kotlin │ └── sh │ └── christian │ └── ozone │ └── api │ └── xrpc │ ├── ChildSerializerLocator.kt │ ├── XrpcConfiguration.kt │ ├── XrpcRequest.kt │ ├── XrpcSubscriptionFrame.kt │ ├── XrpcSubscriptionParseException.kt │ └── XrpcSubscriptionResponse.kt ├── api-gen-runtime ├── .gitignore ├── api │ └── api-gen-runtime.api ├── build.gradle.kts ├── gradle.properties └── src │ ├── commonMain │ └── kotlin │ │ └── sh │ │ └── christian │ │ └── ozone │ │ └── api │ │ ├── model │ │ ├── AtpEnum.kt │ │ ├── Blob.kt │ │ ├── JsonContent.kt │ │ └── Timestamp.kt │ │ ├── response │ │ ├── AtpErrorDescription.kt │ │ ├── AtpException.kt │ │ ├── AtpResponse.kt │ │ └── StatusCode.kt │ │ ├── runtime │ │ ├── AtIdentifierSerializer.kt │ │ ├── BlobSerializer.kt │ │ ├── JsonContentSerializer.kt │ │ ├── LenientInstantIso8601Serializer.kt │ │ ├── StringEnumSerializer.kt │ │ └── buildXrpcJsonConfiguration.kt │ │ ├── stringTypes.kt │ │ └── xrpc │ │ ├── XrpcDefaults.kt │ │ ├── defaultHttpClient.kt │ │ └── defaultHttpEngine.kt │ ├── iosMain │ └── kotlin │ │ └── sh │ │ └── christian │ │ └── ozone │ │ └── api │ │ ├── model │ │ └── JsonContent.ios.kt │ │ ├── runtime │ │ └── JsonContentSerializer.ios.kt │ │ └── xrpc │ │ └── defaultHttpEngine.ios.kt │ ├── jsMain │ └── kotlin │ │ └── sh │ │ └── christian │ │ └── ozone │ │ └── api │ │ ├── model │ │ └── JsonContent.js.kt │ │ ├── runtime │ │ └── JsonContentSerializer.js.kt │ │ └── xrpc │ │ └── defaultHttpEngine.js.kt │ └── jvmMain │ └── kotlin │ └── sh │ └── christian │ └── ozone │ └── api │ ├── model │ └── JsonContent.jvm.kt │ ├── runtime │ └── JsonContentSerializer.jvm.kt │ └── xrpc │ └── defaultHttpEngine.jvm.kt ├── app ├── android │ ├── .gitignore │ ├── build.gradle.kts │ └── src │ │ └── androidMain │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── kotlin │ │ └── sh │ │ │ └── christian │ │ │ └── ozone │ │ │ ├── MainActivity.kt │ │ │ └── StatusBarTheme.kt │ │ └── res │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── ic_launcher_background.xml │ │ └── strings.xml ├── common │ ├── .gitignore │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── sh │ │ │ └── christian │ │ │ └── ozone │ │ │ ├── api │ │ │ └── dispatching.android.kt │ │ │ ├── ui │ │ │ ├── DynamicDarkMode.android.kt │ │ │ └── compose │ │ │ │ ├── OnBackPressedModifier.android.kt │ │ │ │ ├── SystemInsets.android.kt │ │ │ │ └── ZoomableImage.android.kt │ │ │ └── util │ │ │ └── time.android.kt │ │ ├── commonMain │ │ ├── composeResources │ │ │ └── font │ │ │ │ ├── Rubik-Black.ttf │ │ │ │ ├── Rubik-BlackItalic.ttf │ │ │ │ ├── Rubik-Bold.ttf │ │ │ │ ├── Rubik-BoldItalic.ttf │ │ │ │ ├── Rubik-ExtraBold.ttf │ │ │ │ ├── Rubik-ExtraBoldItalic.ttf │ │ │ │ ├── Rubik-Light.ttf │ │ │ │ ├── Rubik-LightItalic.ttf │ │ │ │ ├── Rubik-Medium.ttf │ │ │ │ ├── Rubik-MediumItalic.ttf │ │ │ │ ├── Rubik-Normal.ttf │ │ │ │ ├── Rubik-NormalItalic.ttf │ │ │ │ ├── Rubik-SemiBold.ttf │ │ │ │ ├── Rubik-SemiBoldItalic.ttf │ │ │ │ └── Syne.ttf │ │ └── kotlin │ │ │ └── sh │ │ │ └── christian │ │ │ └── ozone │ │ │ ├── api │ │ │ ├── ApiProvider.kt │ │ │ ├── NetworkWorker.kt │ │ │ ├── ServerRepository.kt │ │ │ └── dispatching.kt │ │ │ ├── app │ │ │ ├── AppScreen.kt │ │ │ ├── AppState.kt │ │ │ ├── AppWorkflow.kt │ │ │ ├── Supervisor.kt │ │ │ └── initWorkflow.kt │ │ │ ├── compose │ │ │ ├── ComposePostOutput.kt │ │ │ ├── ComposePostProps.kt │ │ │ ├── ComposePostScreen.kt │ │ │ ├── ComposePostState.kt │ │ │ └── ComposePostWorkflow.kt │ │ │ ├── di │ │ │ ├── AppComponent.kt │ │ │ └── SingleInApp.kt │ │ │ ├── error │ │ │ ├── ErrorOutput.kt │ │ │ ├── ErrorProps.kt │ │ │ ├── ErrorScreen.kt │ │ │ └── ErrorWorkflow.kt │ │ │ ├── home │ │ │ ├── HomeOutput.kt │ │ │ ├── HomeProps.kt │ │ │ ├── HomeScreen.kt │ │ │ ├── HomeState.kt │ │ │ ├── HomeSubDestination.kt │ │ │ └── HomeWorkflow.kt │ │ │ ├── login │ │ │ ├── LoginGradientBrush.kt │ │ │ ├── LoginOutput.kt │ │ │ ├── LoginRepository.kt │ │ │ ├── LoginScreen.kt │ │ │ ├── LoginState.kt │ │ │ ├── LoginWorkflow.kt │ │ │ └── auth │ │ │ │ ├── AuthInfo.kt │ │ │ │ ├── Credentials.kt │ │ │ │ ├── Server.kt │ │ │ │ └── ServerInfo.kt │ │ │ ├── model │ │ │ ├── Delta.kt │ │ │ ├── Label.kt │ │ │ ├── LitePost.kt │ │ │ ├── Moment.kt │ │ │ ├── Notification.kt │ │ │ ├── Profile.kt │ │ │ ├── Reference.kt │ │ │ ├── Thread.kt │ │ │ ├── Timeline.kt │ │ │ ├── TimelinePost.kt │ │ │ ├── TimelinePostFeature.kt │ │ │ ├── TimelinePostLink.kt │ │ │ ├── TimelinePostReason.kt │ │ │ ├── TimelinePostReply.kt │ │ │ └── TimelineReference.kt │ │ │ ├── notifications │ │ │ ├── NotificationsOutput.kt │ │ │ ├── NotificationsRepository.kt │ │ │ ├── NotificationsScreen.kt │ │ │ ├── NotificationsState.kt │ │ │ ├── NotificationsWorkflow.kt │ │ │ └── type │ │ │ │ ├── FollowRow.kt │ │ │ │ ├── JoinedStarterPackRow.kt │ │ │ │ ├── LikeRow.kt │ │ │ │ ├── MentionRow.kt │ │ │ │ ├── NotificationRowScaffold.kt │ │ │ │ ├── QuoteRow.kt │ │ │ │ ├── ReplyRow.kt │ │ │ │ ├── RepostRow.kt │ │ │ │ ├── UnverifiedRow.kt │ │ │ │ └── VerifiedRow.kt │ │ │ ├── profile │ │ │ ├── ProfileProps.kt │ │ │ ├── ProfileScreen.kt │ │ │ ├── ProfileState.kt │ │ │ └── ProfileWorkflow.kt │ │ │ ├── settings │ │ │ ├── SettingsOutput.kt │ │ │ ├── SettingsScreen.kt │ │ │ ├── SettingsState.kt │ │ │ └── SettingsWorkflow.kt │ │ │ ├── thread │ │ │ ├── ThreadProps.kt │ │ │ ├── ThreadScreen.kt │ │ │ ├── ThreadState.kt │ │ │ └── ThreadWorkflow.kt │ │ │ ├── timeline │ │ │ ├── TimelineOutput.kt │ │ │ ├── TimelineProps.kt │ │ │ ├── TimelineRepository.kt │ │ │ ├── TimelineScreen.kt │ │ │ ├── TimelineState.kt │ │ │ ├── TimelineWorkflow.kt │ │ │ └── components │ │ │ │ ├── PostActions.kt │ │ │ │ ├── PostDate.kt │ │ │ │ ├── PostFeature.kt │ │ │ │ ├── PostHeadline.kt │ │ │ │ ├── PostReasonLine.kt │ │ │ │ ├── PostReplyLine.kt │ │ │ │ ├── PostStatistics.kt │ │ │ │ ├── PostText.kt │ │ │ │ ├── ThreadPostItem.kt │ │ │ │ ├── TimelinePostItem.kt │ │ │ │ └── feature │ │ │ │ ├── BlockedPostPost.kt │ │ │ │ ├── FeatureContainer.kt │ │ │ │ ├── InvisiblePostPost.kt │ │ │ │ ├── PostExternal.kt │ │ │ │ ├── PostImages.kt │ │ │ │ ├── UnknownPostPost.kt │ │ │ │ └── VisiblePostPost.kt │ │ │ ├── ui │ │ │ ├── Color.kt │ │ │ ├── DynamicDarkMode.kt │ │ │ ├── Theme.kt │ │ │ ├── Type.kt │ │ │ ├── compose │ │ │ │ ├── AutofillModifier.kt │ │ │ │ ├── AvatarImage.kt │ │ │ │ ├── BannerImage.kt │ │ │ │ ├── ForegroundModifier.kt │ │ │ │ ├── ImageOverlayScreen.kt │ │ │ │ ├── InfiniteListHandler.kt │ │ │ │ ├── OnBackPressedModifier.kt │ │ │ │ ├── OverImageIconButton.kt │ │ │ │ ├── Overlay.kt │ │ │ │ ├── PostImage.kt │ │ │ │ ├── StablePainter.kt │ │ │ │ ├── Statistic.kt │ │ │ │ ├── SystemInsets.kt │ │ │ │ ├── TextOverlayScreen.kt │ │ │ │ ├── TimeDelta.kt │ │ │ │ ├── VerifiedCheck.kt │ │ │ │ ├── ZoomableImage.kt │ │ │ │ ├── type.kt │ │ │ │ └── urlImagePainter.kt │ │ │ ├── icons │ │ │ │ ├── AlternateEmail.kt │ │ │ │ ├── ChatBubbleOutline.kt │ │ │ │ ├── LocalActivity.kt │ │ │ │ ├── Repeat.kt │ │ │ │ ├── Reply.kt │ │ │ │ ├── Visibility.kt │ │ │ │ └── VisibilityOff.kt │ │ │ └── workflow │ │ │ │ ├── ConfirmRendering.kt │ │ │ │ ├── EmptyScreen.kt │ │ │ │ ├── OverlayRendering.kt │ │ │ │ ├── ViewRendering.kt │ │ │ │ └── WorkflowRendering.kt │ │ │ ├── user │ │ │ ├── MyProfileRepository.kt │ │ │ ├── UserDatabase.kt │ │ │ └── UserReference.kt │ │ │ └── util │ │ │ ├── ImmutableListSerializer.kt │ │ │ ├── RemoteData.kt │ │ │ ├── collections.kt │ │ │ ├── json.kt │ │ │ ├── strings.kt │ │ │ ├── time.kt │ │ │ ├── ui.kt │ │ │ └── url.kt │ │ ├── iosMain │ │ └── kotlin │ │ │ └── sh │ │ │ └── christian │ │ │ └── ozone │ │ │ ├── api │ │ │ └── dispatching.ios.kt │ │ │ ├── ui │ │ │ ├── DynamicDarkMode.ios.kt │ │ │ └── compose │ │ │ │ ├── OnBackPressedModifier.ios.kt │ │ │ │ ├── SystemInsets.ios.kt │ │ │ │ └── ZoomableImage.ios.kt │ │ │ └── util │ │ │ └── time.ios.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── sh │ │ │ └── christian │ │ │ └── ozone │ │ │ ├── api │ │ │ └── dispatching.js.kt │ │ │ ├── ui │ │ │ ├── DynamicDarkMode.js.kt │ │ │ └── compose │ │ │ │ ├── OnBackPressedModifier.js.kt │ │ │ │ ├── SystemInsets.js.kt │ │ │ │ └── ZoomableImage.js.kt │ │ │ └── util │ │ │ └── time.js.kt │ │ └── jvmMain │ │ └── kotlin │ │ └── sh │ │ └── christian │ │ └── ozone │ │ ├── api │ │ └── dispatching.jvm.kt │ │ ├── ui │ │ ├── DynamicDarkMode.jvm.kt │ │ └── compose │ │ │ ├── OnBackPressedModifier.jvm.kt │ │ │ ├── SystemInsets.jvm.kt │ │ │ └── ZoomableImage.jvm.kt │ │ └── util │ │ └── time.jvm.kt ├── desktop │ ├── .gitignore │ ├── build.gradle.kts │ └── src │ │ └── jvmMain │ │ └── kotlin │ │ └── sh │ │ └── christian │ │ └── ozone │ │ ├── DesktopAppPlacement.kt │ │ └── Main.kt ├── ios │ ├── .gitignore │ ├── build.gradle.kts │ └── src │ │ └── iosMain │ │ └── kotlin │ │ └── sh │ │ └── christian │ │ └── ozone │ │ └── MainViewController.kt ├── iosApp │ ├── .gitignore │ ├── ozone.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ozone.xcscheme │ └── ozone │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── launcher.png │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ └── .keep │ │ └── ozoneApp.swift ├── store │ ├── .gitignore │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── sh │ │ │ └── christian │ │ │ └── ozone │ │ │ └── store │ │ │ └── Storage.android.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── sh │ │ │ └── christian │ │ │ └── ozone │ │ │ └── store │ │ │ ├── PersistentStorage.kt │ │ │ ├── Preference.kt │ │ │ └── settings │ │ │ ├── NullableSettingsPreference.kt │ │ │ ├── SettingsPreference.kt │ │ │ └── SettingsStorage.kt │ │ ├── iosMain │ │ └── kotlin │ │ │ └── sh │ │ │ └── christian │ │ │ └── ozone │ │ │ └── store │ │ │ └── Storage.ios.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── sh │ │ │ └── christian │ │ │ └── ozone │ │ │ └── store │ │ │ └── Storage.js.kt │ │ └── jvmMain │ │ └── kotlin │ │ └── sh │ │ └── christian │ │ └── ozone │ │ └── store │ │ └── Storage.jvm.kt └── web │ ├── .gitignore │ ├── build.gradle.kts │ ├── src │ └── jsMain │ │ ├── kotlin │ │ └── sh │ │ │ └── christian │ │ │ └── ozone │ │ │ └── Main.kt │ │ └── resources │ │ ├── index.html │ │ └── styles.css │ └── webpack.config.d │ └── serverConfig.js ├── bluesky ├── .gitignore ├── api │ └── bluesky.api ├── build.gradle.kts ├── gradle.properties └── src │ ├── commonMain │ └── kotlin │ │ └── sh │ │ └── christian │ │ └── ozone │ │ ├── BlueskyJson.kt │ │ └── api │ │ ├── AuthenticatedXrpcBlueskyApi.kt │ │ └── BlueskyAuthPlugin.kt │ └── commonTest │ └── kotlin │ └── sh │ └── christian │ └── ozone │ └── api │ ├── AtpErrorsTest.kt │ ├── AuthenticatedXrpcBlueskyApiTest.kt │ └── mockEngine.kt ├── generator ├── .gitignore ├── build.gradle.kts ├── gradle.properties ├── settings.gradle.kts └── src │ └── main │ └── kotlin │ └── sh │ └── christian │ └── ozone │ └── api │ ├── generator │ ├── ApiConfiguration.kt │ ├── ApiReturnType.kt │ ├── DefaultsConfiguration.kt │ ├── LexiconApiGenerator.kt │ ├── LexiconClassFileCreator.kt │ ├── LexiconProcessingEnvironment.kt │ ├── TypeNames.kt │ ├── builder │ │ ├── GeneratorContext.kt │ │ ├── LexiconDataClassesGenerator.kt │ │ ├── Requirement.kt │ │ ├── SealedRelationship.kt │ │ ├── SimpleProperty.kt │ │ ├── TypesGenerator.kt │ │ ├── XrpcBodyGenerator.kt │ │ ├── XrpcQueryParamsGenerator.kt │ │ ├── enums.kt │ │ ├── primitives.kt │ │ ├── requirements.kt │ │ └── util.kt │ └── memberNames.kt │ ├── gradle │ ├── LexiconGeneratorExtension.kt │ ├── LexiconGeneratorPlugin.kt │ └── LexiconGeneratorTask.kt │ └── lexicon │ ├── grammar.kt │ ├── moshi.kt │ └── parse.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jetstream ├── .gitignore ├── api │ └── jetstream.api ├── build.gradle.kts ├── gradle.properties ├── schemas │ └── app │ │ └── bsky │ │ └── jetstream │ │ └── subscribe.json └── src │ ├── commonMain │ └── kotlin │ │ └── sh │ │ └── christian │ │ └── ozone │ │ └── jetstream │ │ ├── JetstreamApi.kt │ │ ├── JetstreamHost.kt │ │ ├── JetstreamInterface.kt │ │ ├── subscribeEvent.kt │ │ └── zstd.kt │ ├── jsMain │ ├── kotlin │ │ └── sh │ │ │ └── christian │ │ │ └── ozone │ │ │ └── jetstream │ │ │ ├── ZstdCodec.kt │ │ │ ├── strings.kt │ │ │ └── zstd.js.kt │ └── resources │ │ └── files │ │ └── zstd_dictionary.bin │ └── jvmMain │ ├── kotlin │ └── sh │ │ └── christian │ │ └── ozone │ │ └── jetstream │ │ └── zstd.jvm.kt │ └── resources │ └── files │ └── zstd_dictionary.bin ├── kotlin-js-store └── yarn.lock ├── lexicons ├── .gitignore ├── build.gradle.kts ├── gradle.properties └── schemas │ ├── app │ └── bsky │ │ ├── actor │ │ ├── defs.json │ │ ├── getPreferences.json │ │ ├── getProfile.json │ │ ├── getProfiles.json │ │ ├── getSuggestions.json │ │ ├── profile.json │ │ ├── putPreferences.json │ │ ├── searchActors.json │ │ ├── searchActorsTypeahead.json │ │ └── status.json │ │ ├── ageassurance │ │ ├── begin.json │ │ ├── defs.json │ │ ├── getConfig.json │ │ └── getState.json │ │ ├── bookmark │ │ ├── createBookmark.json │ │ ├── defs.json │ │ ├── deleteBookmark.json │ │ └── getBookmarks.json │ │ ├── embed │ │ ├── defs.json │ │ ├── external.json │ │ ├── images.json │ │ ├── record.json │ │ ├── recordWithMedia.json │ │ └── video.json │ │ ├── feed │ │ ├── defs.json │ │ ├── describeFeedGenerator.json │ │ ├── generator.json │ │ ├── getActorFeeds.json │ │ ├── getActorLikes.json │ │ ├── getAuthorFeed.json │ │ ├── getFeed.json │ │ ├── getFeedGenerator.json │ │ ├── getFeedGenerators.json │ │ ├── getFeedSkeleton.json │ │ ├── getLikes.json │ │ ├── getListFeed.json │ │ ├── getPostThread.json │ │ ├── getPosts.json │ │ ├── getQuotes.json │ │ ├── getRepostedBy.json │ │ ├── getSuggestedFeeds.json │ │ ├── getTimeline.json │ │ ├── like.json │ │ ├── post.json │ │ ├── postgate.json │ │ ├── repost.json │ │ ├── searchPosts.json │ │ ├── sendInteractions.json │ │ └── threadgate.json │ │ ├── graph │ │ ├── block.json │ │ ├── defs.json │ │ ├── follow.json │ │ ├── getActorStarterPacks.json │ │ ├── getBlocks.json │ │ ├── getFollowers.json │ │ ├── getFollows.json │ │ ├── getKnownFollowers.json │ │ ├── getList.json │ │ ├── getListBlocks.json │ │ ├── getListMutes.json │ │ ├── getLists.json │ │ ├── getListsWithMembership.json │ │ ├── getMutes.json │ │ ├── getRelationships.json │ │ ├── getStarterPack.json │ │ ├── getStarterPacks.json │ │ ├── getStarterPacksWithMembership.json │ │ ├── getSuggestedFollowsByActor.json │ │ ├── list.json │ │ ├── listblock.json │ │ ├── listitem.json │ │ ├── muteActor.json │ │ ├── muteActorList.json │ │ ├── muteThread.json │ │ ├── searchStarterPacks.json │ │ ├── starterpack.json │ │ ├── unmuteActor.json │ │ ├── unmuteActorList.json │ │ ├── unmuteThread.json │ │ └── verification.json │ │ ├── labeler │ │ ├── defs.json │ │ ├── getServices.json │ │ └── service.json │ │ ├── notification │ │ ├── declaration.json │ │ ├── defs.json │ │ ├── getPreferences.json │ │ ├── getUnreadCount.json │ │ ├── listActivitySubscriptions.json │ │ ├── listNotifications.json │ │ ├── putActivitySubscription.json │ │ ├── putPreferences.json │ │ ├── putPreferencesV2.json │ │ ├── registerPush.json │ │ ├── unregisterPush.json │ │ └── updateSeen.json │ │ ├── richtext │ │ └── facet.json │ │ ├── unspecced │ │ ├── defs.json │ │ ├── getAgeAssuranceState.json │ │ ├── getConfig.json │ │ ├── getOnboardingSuggestedStarterPacks.json │ │ ├── getOnboardingSuggestedStarterPacksSkeleton.json │ │ ├── getPopularFeedGenerators.json │ │ ├── getPostThreadOtherV2.json │ │ ├── getPostThreadV2.json │ │ ├── getSuggestedFeeds.json │ │ ├── getSuggestedFeedsSkeleton.json │ │ ├── getSuggestedStarterPacks.json │ │ ├── getSuggestedStarterPacksSkeleton.json │ │ ├── getSuggestedUsers.json │ │ ├── getSuggestedUsersSkeleton.json │ │ ├── getSuggestionsSkeleton.json │ │ ├── getTaggedSuggestions.json │ │ ├── getTrendingTopics.json │ │ ├── getTrends.json │ │ ├── getTrendsSkeleton.json │ │ ├── initAgeAssurance.json │ │ ├── searchActorsSkeleton.json │ │ ├── searchPostsSkeleton.json │ │ └── searchStarterPacksSkeleton.json │ │ └── video │ │ ├── defs.json │ │ ├── getJobStatus.json │ │ ├── getUploadLimits.json │ │ └── uploadVideo.json │ ├── chat │ └── bsky │ │ ├── actor │ │ ├── declaration.json │ │ ├── defs.json │ │ ├── deleteAccount.json │ │ └── exportAccountData.json │ │ ├── convo │ │ ├── acceptConvo.json │ │ ├── addReaction.json │ │ ├── defs.json │ │ ├── deleteMessageForSelf.json │ │ ├── getConvo.json │ │ ├── getConvoAvailability.json │ │ ├── getConvoForMembers.json │ │ ├── getLog.json │ │ ├── getMessages.json │ │ ├── leaveConvo.json │ │ ├── listConvos.json │ │ ├── muteConvo.json │ │ ├── removeReaction.json │ │ ├── sendMessage.json │ │ ├── sendMessageBatch.json │ │ ├── unmuteConvo.json │ │ ├── updateAllRead.json │ │ └── updateRead.json │ │ └── moderation │ │ ├── getActorMetadata.json │ │ ├── getMessageContext.json │ │ └── updateActorAccess.json │ ├── com │ └── atproto │ │ ├── admin │ │ ├── defs.json │ │ ├── deleteAccount.json │ │ ├── disableAccountInvites.json │ │ ├── disableInviteCodes.json │ │ ├── enableAccountInvites.json │ │ ├── getAccountInfo.json │ │ ├── getAccountInfos.json │ │ ├── getInviteCodes.json │ │ ├── getSubjectStatus.json │ │ ├── searchAccounts.json │ │ ├── sendEmail.json │ │ ├── updateAccountEmail.json │ │ ├── updateAccountHandle.json │ │ ├── updateAccountPassword.json │ │ ├── updateAccountSigningKey.json │ │ └── updateSubjectStatus.json │ │ ├── identity │ │ ├── defs.json │ │ ├── getRecommendedDidCredentials.json │ │ ├── refreshIdentity.json │ │ ├── requestPlcOperationSignature.json │ │ ├── resolveDid.json │ │ ├── resolveHandle.json │ │ ├── resolveIdentity.json │ │ ├── signPlcOperation.json │ │ ├── submitPlcOperation.json │ │ └── updateHandle.json │ │ ├── label │ │ ├── defs.json │ │ ├── queryLabels.json │ │ └── subscribeLabels.json │ │ ├── lexicon │ │ ├── resolveLexicon.json │ │ └── schema.json │ │ ├── moderation │ │ ├── createReport.json │ │ └── defs.json │ │ ├── repo │ │ ├── applyWrites.json │ │ ├── createRecord.json │ │ ├── defs.json │ │ ├── deleteRecord.json │ │ ├── describeRepo.json │ │ ├── getRecord.json │ │ ├── importRepo.json │ │ ├── listMissingBlobs.json │ │ ├── listRecords.json │ │ ├── putRecord.json │ │ ├── strongRef.json │ │ └── uploadBlob.json │ │ ├── server │ │ ├── activateAccount.json │ │ ├── checkAccountStatus.json │ │ ├── confirmEmail.json │ │ ├── createAccount.json │ │ ├── createAppPassword.json │ │ ├── createInviteCode.json │ │ ├── createInviteCodes.json │ │ ├── createSession.json │ │ ├── deactivateAccount.json │ │ ├── defs.json │ │ ├── deleteAccount.json │ │ ├── deleteSession.json │ │ ├── describeServer.json │ │ ├── getAccountInviteCodes.json │ │ ├── getServiceAuth.json │ │ ├── getSession.json │ │ ├── listAppPasswords.json │ │ ├── refreshSession.json │ │ ├── requestAccountDelete.json │ │ ├── requestEmailConfirmation.json │ │ ├── requestEmailUpdate.json │ │ ├── requestPasswordReset.json │ │ ├── reserveSigningKey.json │ │ ├── resetPassword.json │ │ ├── revokeAppPassword.json │ │ └── updateEmail.json │ │ ├── sync │ │ ├── defs.json │ │ ├── getBlob.json │ │ ├── getBlocks.json │ │ ├── getCheckout.json │ │ ├── getHead.json │ │ ├── getHostStatus.json │ │ ├── getLatestCommit.json │ │ ├── getRecord.json │ │ ├── getRepo.json │ │ ├── getRepoStatus.json │ │ ├── listBlobs.json │ │ ├── listHosts.json │ │ ├── listRepos.json │ │ ├── listReposByCollection.json │ │ ├── notifyOfUpdate.json │ │ ├── requestCrawl.json │ │ └── subscribeRepos.json │ │ └── temp │ │ ├── addReservedHandle.json │ │ ├── checkHandleAvailability.json │ │ ├── checkSignupQueue.json │ │ ├── dereferenceScope.json │ │ ├── fetchLabels.json │ │ ├── requestPhoneVerification.json │ │ └── revokeAccountCredentials.json │ └── tools │ └── ozone │ ├── communication │ ├── createTemplate.json │ ├── defs.json │ ├── deleteTemplate.json │ ├── listTemplates.json │ └── updateTemplate.json │ ├── hosting │ └── getAccountHistory.json │ ├── moderation │ ├── cancelScheduledActions.json │ ├── defs.json │ ├── emitEvent.json │ ├── getAccountTimeline.json │ ├── getEvent.json │ ├── getRecord.json │ ├── getRecords.json │ ├── getRepo.json │ ├── getReporterStats.json │ ├── getRepos.json │ ├── getSubjects.json │ ├── listScheduledActions.json │ ├── queryEvents.json │ ├── queryStatuses.json │ ├── scheduleAction.json │ └── searchRepos.json │ ├── report │ └── defs.json │ ├── safelink │ ├── addRule.json │ ├── defs.json │ ├── queryEvents.json │ ├── queryRules.json │ ├── removeRule.json │ └── updateRule.json │ ├── server │ └── getConfig.json │ ├── set │ ├── addValues.json │ ├── defs.json │ ├── deleteSet.json │ ├── deleteValues.json │ ├── getValues.json │ ├── querySets.json │ └── upsertSet.json │ ├── setting │ ├── defs.json │ ├── listOptions.json │ ├── removeOptions.json │ └── upsertOption.json │ ├── signature │ ├── defs.json │ ├── findCorrelation.json │ ├── findRelatedAccounts.json │ └── searchAccounts.json │ ├── team │ ├── addMember.json │ ├── defs.json │ ├── deleteMember.json │ ├── listMembers.json │ └── updateMember.json │ └── verification │ ├── defs.json │ ├── grantVerifications.json │ ├── listVerifications.json │ └── revokeVerifications.json ├── oauth ├── .gitignore ├── api │ └── oauth.api ├── build.gradle.kts ├── gradle.properties └── src │ └── commonMain │ └── kotlin │ └── sh │ └── christian │ └── ozone │ └── oauth │ ├── DpopKeyPair.kt │ ├── DpopKeyPairSerializer.kt │ ├── OAuthApi.kt │ ├── OAuthAuthorizationRequest.kt │ ├── OAuthClient.kt │ ├── OAuthCodeChallengeMethod.kt │ ├── OAuthCodeChallengeMethodSelector.kt │ ├── OAuthScope.kt │ ├── OAuthToken.kt │ ├── base64url.kt │ └── network │ ├── OAuthAuthorizationServer.kt │ ├── OAuthParRequest.kt │ ├── OAuthParResponse.kt │ └── OAuthTokenResponse.kt ├── scripts ├── bump_version.sh └── release.sh └── settings.gradle.kts /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/.github/workflows/deploy_docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/update_lexicons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/.github/workflows/update_lexicons.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/RELEASING.md -------------------------------------------------------------------------------- /api-gen-runtime-internal/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /api-gen-runtime-internal/api/api-gen-runtime-internal.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime-internal/api/api-gen-runtime-internal.api -------------------------------------------------------------------------------- /api-gen-runtime-internal/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime-internal/build.gradle.kts -------------------------------------------------------------------------------- /api-gen-runtime-internal/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime-internal/gradle.properties -------------------------------------------------------------------------------- /api-gen-runtime-internal/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/ChildSerializerLocator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime-internal/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/ChildSerializerLocator.kt -------------------------------------------------------------------------------- /api-gen-runtime-internal/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/XrpcConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime-internal/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/XrpcConfiguration.kt -------------------------------------------------------------------------------- /api-gen-runtime-internal/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/XrpcRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime-internal/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/XrpcRequest.kt -------------------------------------------------------------------------------- /api-gen-runtime-internal/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/XrpcSubscriptionFrame.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime-internal/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/XrpcSubscriptionFrame.kt -------------------------------------------------------------------------------- /api-gen-runtime-internal/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/XrpcSubscriptionParseException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime-internal/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/XrpcSubscriptionParseException.kt -------------------------------------------------------------------------------- /api-gen-runtime-internal/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/XrpcSubscriptionResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime-internal/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/XrpcSubscriptionResponse.kt -------------------------------------------------------------------------------- /api-gen-runtime/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /api-gen-runtime/api/api-gen-runtime.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/api/api-gen-runtime.api -------------------------------------------------------------------------------- /api-gen-runtime/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/build.gradle.kts -------------------------------------------------------------------------------- /api-gen-runtime/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/gradle.properties -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/model/AtpEnum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/model/AtpEnum.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/model/Blob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/model/Blob.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/model/JsonContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/model/JsonContent.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/model/Timestamp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/model/Timestamp.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/response/AtpErrorDescription.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/response/AtpErrorDescription.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/response/AtpException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/response/AtpException.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/response/AtpResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/response/AtpResponse.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/response/StatusCode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/response/StatusCode.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/runtime/AtIdentifierSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/runtime/AtIdentifierSerializer.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/runtime/BlobSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/runtime/BlobSerializer.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/runtime/JsonContentSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/runtime/JsonContentSerializer.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/runtime/LenientInstantIso8601Serializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/runtime/LenientInstantIso8601Serializer.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/runtime/StringEnumSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/runtime/StringEnumSerializer.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/runtime/buildXrpcJsonConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/runtime/buildXrpcJsonConfiguration.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/stringTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/stringTypes.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/XrpcDefaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/XrpcDefaults.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/defaultHttpClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/defaultHttpClient.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/defaultHttpEngine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/commonMain/kotlin/sh/christian/ozone/api/xrpc/defaultHttpEngine.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/iosMain/kotlin/sh/christian/ozone/api/model/JsonContent.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/iosMain/kotlin/sh/christian/ozone/api/model/JsonContent.ios.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/iosMain/kotlin/sh/christian/ozone/api/runtime/JsonContentSerializer.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/iosMain/kotlin/sh/christian/ozone/api/runtime/JsonContentSerializer.ios.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/iosMain/kotlin/sh/christian/ozone/api/xrpc/defaultHttpEngine.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/iosMain/kotlin/sh/christian/ozone/api/xrpc/defaultHttpEngine.ios.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/jsMain/kotlin/sh/christian/ozone/api/model/JsonContent.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/jsMain/kotlin/sh/christian/ozone/api/model/JsonContent.js.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/jsMain/kotlin/sh/christian/ozone/api/runtime/JsonContentSerializer.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/jsMain/kotlin/sh/christian/ozone/api/runtime/JsonContentSerializer.js.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/jsMain/kotlin/sh/christian/ozone/api/xrpc/defaultHttpEngine.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/jsMain/kotlin/sh/christian/ozone/api/xrpc/defaultHttpEngine.js.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/jvmMain/kotlin/sh/christian/ozone/api/model/JsonContent.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/jvmMain/kotlin/sh/christian/ozone/api/model/JsonContent.jvm.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/jvmMain/kotlin/sh/christian/ozone/api/runtime/JsonContentSerializer.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/jvmMain/kotlin/sh/christian/ozone/api/runtime/JsonContentSerializer.jvm.kt -------------------------------------------------------------------------------- /api-gen-runtime/src/jvmMain/kotlin/sh/christian/ozone/api/xrpc/defaultHttpEngine.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/api-gen-runtime/src/jvmMain/kotlin/sh/christian/ozone/api/xrpc/defaultHttpEngine.jvm.kt -------------------------------------------------------------------------------- /app/android/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ -------------------------------------------------------------------------------- /app/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/build.gradle.kts -------------------------------------------------------------------------------- /app/android/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /app/android/src/androidMain/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/android/src/androidMain/kotlin/sh/christian/ozone/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/kotlin/sh/christian/ozone/MainActivity.kt -------------------------------------------------------------------------------- /app/android/src/androidMain/kotlin/sh/christian/ozone/StatusBarTheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/kotlin/sh/christian/ozone/StatusBarTheme.kt -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/android/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/android/src/androidMain/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/android/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/android/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /app/common/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ -------------------------------------------------------------------------------- /app/common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/build.gradle.kts -------------------------------------------------------------------------------- /app/common/src/androidMain/kotlin/sh/christian/ozone/api/dispatching.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/androidMain/kotlin/sh/christian/ozone/api/dispatching.android.kt -------------------------------------------------------------------------------- /app/common/src/androidMain/kotlin/sh/christian/ozone/ui/DynamicDarkMode.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/androidMain/kotlin/sh/christian/ozone/ui/DynamicDarkMode.android.kt -------------------------------------------------------------------------------- /app/common/src/androidMain/kotlin/sh/christian/ozone/ui/compose/OnBackPressedModifier.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/androidMain/kotlin/sh/christian/ozone/ui/compose/OnBackPressedModifier.android.kt -------------------------------------------------------------------------------- /app/common/src/androidMain/kotlin/sh/christian/ozone/ui/compose/SystemInsets.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/androidMain/kotlin/sh/christian/ozone/ui/compose/SystemInsets.android.kt -------------------------------------------------------------------------------- /app/common/src/androidMain/kotlin/sh/christian/ozone/ui/compose/ZoomableImage.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/androidMain/kotlin/sh/christian/ozone/ui/compose/ZoomableImage.android.kt -------------------------------------------------------------------------------- /app/common/src/androidMain/kotlin/sh/christian/ozone/util/time.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/androidMain/kotlin/sh/christian/ozone/util/time.android.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/composeResources/font/Rubik-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/composeResources/font/Rubik-Black.ttf -------------------------------------------------------------------------------- /app/common/src/commonMain/composeResources/font/Rubik-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/composeResources/font/Rubik-BlackItalic.ttf -------------------------------------------------------------------------------- /app/common/src/commonMain/composeResources/font/Rubik-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/composeResources/font/Rubik-Bold.ttf -------------------------------------------------------------------------------- /app/common/src/commonMain/composeResources/font/Rubik-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/composeResources/font/Rubik-BoldItalic.ttf -------------------------------------------------------------------------------- /app/common/src/commonMain/composeResources/font/Rubik-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/composeResources/font/Rubik-ExtraBold.ttf -------------------------------------------------------------------------------- /app/common/src/commonMain/composeResources/font/Rubik-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/composeResources/font/Rubik-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /app/common/src/commonMain/composeResources/font/Rubik-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/composeResources/font/Rubik-Light.ttf -------------------------------------------------------------------------------- /app/common/src/commonMain/composeResources/font/Rubik-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/composeResources/font/Rubik-LightItalic.ttf -------------------------------------------------------------------------------- /app/common/src/commonMain/composeResources/font/Rubik-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/composeResources/font/Rubik-Medium.ttf -------------------------------------------------------------------------------- /app/common/src/commonMain/composeResources/font/Rubik-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/composeResources/font/Rubik-MediumItalic.ttf -------------------------------------------------------------------------------- /app/common/src/commonMain/composeResources/font/Rubik-Normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/composeResources/font/Rubik-Normal.ttf -------------------------------------------------------------------------------- /app/common/src/commonMain/composeResources/font/Rubik-NormalItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/composeResources/font/Rubik-NormalItalic.ttf -------------------------------------------------------------------------------- /app/common/src/commonMain/composeResources/font/Rubik-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/composeResources/font/Rubik-SemiBold.ttf -------------------------------------------------------------------------------- /app/common/src/commonMain/composeResources/font/Rubik-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/composeResources/font/Rubik-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /app/common/src/commonMain/composeResources/font/Syne.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/composeResources/font/Syne.ttf -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/api/ApiProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/api/ApiProvider.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/api/NetworkWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/api/NetworkWorker.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/api/ServerRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/api/ServerRepository.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/api/dispatching.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/api/dispatching.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/app/AppScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/app/AppScreen.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/app/AppState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/app/AppState.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/app/AppWorkflow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/app/AppWorkflow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/app/Supervisor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/app/Supervisor.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/app/initWorkflow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/app/initWorkflow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/compose/ComposePostOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/compose/ComposePostOutput.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/compose/ComposePostProps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/compose/ComposePostProps.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/compose/ComposePostScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/compose/ComposePostScreen.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/compose/ComposePostState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/compose/ComposePostState.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/compose/ComposePostWorkflow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/compose/ComposePostWorkflow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/di/AppComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/di/AppComponent.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/di/SingleInApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/di/SingleInApp.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/error/ErrorOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/error/ErrorOutput.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/error/ErrorProps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/error/ErrorProps.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/error/ErrorScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/error/ErrorScreen.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/error/ErrorWorkflow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/error/ErrorWorkflow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/home/HomeOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/home/HomeOutput.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/home/HomeProps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/home/HomeProps.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/home/HomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/home/HomeScreen.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/home/HomeState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/home/HomeState.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/home/HomeSubDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/home/HomeSubDestination.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/home/HomeWorkflow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/home/HomeWorkflow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/login/LoginGradientBrush.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/login/LoginGradientBrush.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/login/LoginOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/login/LoginOutput.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/login/LoginRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/login/LoginRepository.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/login/LoginScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/login/LoginScreen.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/login/LoginState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/login/LoginState.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/login/LoginWorkflow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/login/LoginWorkflow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/login/auth/AuthInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/login/auth/AuthInfo.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/login/auth/Credentials.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/login/auth/Credentials.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/login/auth/Server.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/login/auth/Server.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/login/auth/ServerInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/login/auth/ServerInfo.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/model/Delta.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/model/Delta.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/model/Label.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/model/Label.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/model/LitePost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/model/LitePost.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/model/Moment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/model/Moment.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/model/Notification.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/model/Notification.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/model/Profile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/model/Profile.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/model/Reference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/model/Reference.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/model/Thread.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/model/Thread.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/model/Timeline.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/model/Timeline.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/model/TimelinePost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/model/TimelinePost.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/model/TimelinePostFeature.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/model/TimelinePostFeature.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/model/TimelinePostLink.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/model/TimelinePostLink.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/model/TimelinePostReason.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/model/TimelinePostReason.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/model/TimelinePostReply.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/model/TimelinePostReply.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/model/TimelineReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/model/TimelineReference.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/NotificationsOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/NotificationsOutput.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/NotificationsRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/NotificationsRepository.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/NotificationsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/NotificationsScreen.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/NotificationsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/NotificationsState.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/NotificationsWorkflow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/NotificationsWorkflow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/FollowRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/FollowRow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/JoinedStarterPackRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/JoinedStarterPackRow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/LikeRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/LikeRow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/MentionRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/MentionRow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/NotificationRowScaffold.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/NotificationRowScaffold.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/QuoteRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/QuoteRow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/ReplyRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/ReplyRow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/RepostRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/RepostRow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/UnverifiedRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/UnverifiedRow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/VerifiedRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/notifications/type/VerifiedRow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/profile/ProfileProps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/profile/ProfileProps.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/profile/ProfileScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/profile/ProfileScreen.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/profile/ProfileState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/profile/ProfileState.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/profile/ProfileWorkflow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/profile/ProfileWorkflow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/settings/SettingsOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/settings/SettingsOutput.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/settings/SettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/settings/SettingsScreen.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/settings/SettingsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/settings/SettingsState.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/settings/SettingsWorkflow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/settings/SettingsWorkflow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/thread/ThreadProps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/thread/ThreadProps.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/thread/ThreadScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/thread/ThreadScreen.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/thread/ThreadState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/thread/ThreadState.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/thread/ThreadWorkflow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/thread/ThreadWorkflow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/TimelineOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/TimelineOutput.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/TimelineProps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/TimelineProps.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/TimelineRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/TimelineRepository.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/TimelineScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/TimelineScreen.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/TimelineState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/TimelineState.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/TimelineWorkflow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/TimelineWorkflow.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostActions.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostDate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostDate.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostFeature.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostFeature.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostHeadline.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostHeadline.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostReasonLine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostReasonLine.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostReplyLine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostReplyLine.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostStatistics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostStatistics.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/PostText.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/ThreadPostItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/ThreadPostItem.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/TimelinePostItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/TimelinePostItem.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/feature/BlockedPostPost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/feature/BlockedPostPost.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/feature/FeatureContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/feature/FeatureContainer.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/feature/InvisiblePostPost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/feature/InvisiblePostPost.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/feature/PostExternal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/feature/PostExternal.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/feature/PostImages.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/feature/PostImages.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/feature/UnknownPostPost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/feature/UnknownPostPost.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/feature/VisiblePostPost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/timeline/components/feature/VisiblePostPost.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/Color.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/DynamicDarkMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/DynamicDarkMode.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/Theme.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/Type.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/AutofillModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/AutofillModifier.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/AvatarImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/AvatarImage.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/BannerImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/BannerImage.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/ForegroundModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/ForegroundModifier.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/ImageOverlayScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/ImageOverlayScreen.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/InfiniteListHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/InfiniteListHandler.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/OnBackPressedModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/OnBackPressedModifier.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/OverImageIconButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/OverImageIconButton.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/Overlay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/Overlay.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/PostImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/PostImage.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/StablePainter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/StablePainter.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/Statistic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/Statistic.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/SystemInsets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/SystemInsets.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/TextOverlayScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/TextOverlayScreen.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/TimeDelta.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/TimeDelta.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/VerifiedCheck.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/VerifiedCheck.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/ZoomableImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/ZoomableImage.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/type.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/urlImagePainter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/compose/urlImagePainter.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/icons/AlternateEmail.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/icons/AlternateEmail.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/icons/ChatBubbleOutline.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/icons/ChatBubbleOutline.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/icons/LocalActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/icons/LocalActivity.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/icons/Repeat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/icons/Repeat.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/icons/Reply.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/icons/Reply.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/icons/Visibility.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/icons/Visibility.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/icons/VisibilityOff.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/icons/VisibilityOff.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/workflow/ConfirmRendering.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/workflow/ConfirmRendering.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/workflow/EmptyScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/workflow/EmptyScreen.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/workflow/OverlayRendering.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/workflow/OverlayRendering.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/workflow/ViewRendering.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/workflow/ViewRendering.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/ui/workflow/WorkflowRendering.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/ui/workflow/WorkflowRendering.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/user/MyProfileRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/user/MyProfileRepository.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/user/UserDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/user/UserDatabase.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/user/UserReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/user/UserReference.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/util/ImmutableListSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/util/ImmutableListSerializer.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/util/RemoteData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/util/RemoteData.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/util/collections.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/util/collections.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/util/json.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/util/json.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/util/strings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/util/strings.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/util/time.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/util/time.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/util/ui.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/util/ui.kt -------------------------------------------------------------------------------- /app/common/src/commonMain/kotlin/sh/christian/ozone/util/url.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/commonMain/kotlin/sh/christian/ozone/util/url.kt -------------------------------------------------------------------------------- /app/common/src/iosMain/kotlin/sh/christian/ozone/api/dispatching.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/iosMain/kotlin/sh/christian/ozone/api/dispatching.ios.kt -------------------------------------------------------------------------------- /app/common/src/iosMain/kotlin/sh/christian/ozone/ui/DynamicDarkMode.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/iosMain/kotlin/sh/christian/ozone/ui/DynamicDarkMode.ios.kt -------------------------------------------------------------------------------- /app/common/src/iosMain/kotlin/sh/christian/ozone/ui/compose/OnBackPressedModifier.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/iosMain/kotlin/sh/christian/ozone/ui/compose/OnBackPressedModifier.ios.kt -------------------------------------------------------------------------------- /app/common/src/iosMain/kotlin/sh/christian/ozone/ui/compose/SystemInsets.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/iosMain/kotlin/sh/christian/ozone/ui/compose/SystemInsets.ios.kt -------------------------------------------------------------------------------- /app/common/src/iosMain/kotlin/sh/christian/ozone/ui/compose/ZoomableImage.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/iosMain/kotlin/sh/christian/ozone/ui/compose/ZoomableImage.ios.kt -------------------------------------------------------------------------------- /app/common/src/iosMain/kotlin/sh/christian/ozone/util/time.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/iosMain/kotlin/sh/christian/ozone/util/time.ios.kt -------------------------------------------------------------------------------- /app/common/src/jsMain/kotlin/sh/christian/ozone/api/dispatching.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/jsMain/kotlin/sh/christian/ozone/api/dispatching.js.kt -------------------------------------------------------------------------------- /app/common/src/jsMain/kotlin/sh/christian/ozone/ui/DynamicDarkMode.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/jsMain/kotlin/sh/christian/ozone/ui/DynamicDarkMode.js.kt -------------------------------------------------------------------------------- /app/common/src/jsMain/kotlin/sh/christian/ozone/ui/compose/OnBackPressedModifier.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/jsMain/kotlin/sh/christian/ozone/ui/compose/OnBackPressedModifier.js.kt -------------------------------------------------------------------------------- /app/common/src/jsMain/kotlin/sh/christian/ozone/ui/compose/SystemInsets.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/jsMain/kotlin/sh/christian/ozone/ui/compose/SystemInsets.js.kt -------------------------------------------------------------------------------- /app/common/src/jsMain/kotlin/sh/christian/ozone/ui/compose/ZoomableImage.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/jsMain/kotlin/sh/christian/ozone/ui/compose/ZoomableImage.js.kt -------------------------------------------------------------------------------- /app/common/src/jsMain/kotlin/sh/christian/ozone/util/time.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/jsMain/kotlin/sh/christian/ozone/util/time.js.kt -------------------------------------------------------------------------------- /app/common/src/jvmMain/kotlin/sh/christian/ozone/api/dispatching.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/jvmMain/kotlin/sh/christian/ozone/api/dispatching.jvm.kt -------------------------------------------------------------------------------- /app/common/src/jvmMain/kotlin/sh/christian/ozone/ui/DynamicDarkMode.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/jvmMain/kotlin/sh/christian/ozone/ui/DynamicDarkMode.jvm.kt -------------------------------------------------------------------------------- /app/common/src/jvmMain/kotlin/sh/christian/ozone/ui/compose/OnBackPressedModifier.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/jvmMain/kotlin/sh/christian/ozone/ui/compose/OnBackPressedModifier.jvm.kt -------------------------------------------------------------------------------- /app/common/src/jvmMain/kotlin/sh/christian/ozone/ui/compose/SystemInsets.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/jvmMain/kotlin/sh/christian/ozone/ui/compose/SystemInsets.jvm.kt -------------------------------------------------------------------------------- /app/common/src/jvmMain/kotlin/sh/christian/ozone/ui/compose/ZoomableImage.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/jvmMain/kotlin/sh/christian/ozone/ui/compose/ZoomableImage.jvm.kt -------------------------------------------------------------------------------- /app/common/src/jvmMain/kotlin/sh/christian/ozone/util/time.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/common/src/jvmMain/kotlin/sh/christian/ozone/util/time.jvm.kt -------------------------------------------------------------------------------- /app/desktop/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ -------------------------------------------------------------------------------- /app/desktop/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/desktop/build.gradle.kts -------------------------------------------------------------------------------- /app/desktop/src/jvmMain/kotlin/sh/christian/ozone/DesktopAppPlacement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/desktop/src/jvmMain/kotlin/sh/christian/ozone/DesktopAppPlacement.kt -------------------------------------------------------------------------------- /app/desktop/src/jvmMain/kotlin/sh/christian/ozone/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/desktop/src/jvmMain/kotlin/sh/christian/ozone/Main.kt -------------------------------------------------------------------------------- /app/ios/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ -------------------------------------------------------------------------------- /app/ios/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/ios/build.gradle.kts -------------------------------------------------------------------------------- /app/ios/src/iosMain/kotlin/sh/christian/ozone/MainViewController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/ios/src/iosMain/kotlin/sh/christian/ozone/MainViewController.kt -------------------------------------------------------------------------------- /app/iosApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/iosApp/.gitignore -------------------------------------------------------------------------------- /app/iosApp/ozone.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/iosApp/ozone.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /app/iosApp/ozone.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/iosApp/ozone.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /app/iosApp/ozone.xcodeproj/xcshareddata/xcschemes/ozone.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/iosApp/ozone.xcodeproj/xcshareddata/xcschemes/ozone.xcscheme -------------------------------------------------------------------------------- /app/iosApp/ozone/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/iosApp/ozone/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /app/iosApp/ozone/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/iosApp/ozone/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/iosApp/ozone/Assets.xcassets/AppIcon.appiconset/launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/iosApp/ozone/Assets.xcassets/AppIcon.appiconset/launcher.png -------------------------------------------------------------------------------- /app/iosApp/ozone/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/iosApp/ozone/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/iosApp/ozone/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/iosApp/ozone/ContentView.swift -------------------------------------------------------------------------------- /app/iosApp/ozone/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/iosApp/ozone/Info.plist -------------------------------------------------------------------------------- /app/iosApp/ozone/Preview Content/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/iosApp/ozone/ozoneApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/iosApp/ozone/ozoneApp.swift -------------------------------------------------------------------------------- /app/store/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /app/store/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/store/build.gradle.kts -------------------------------------------------------------------------------- /app/store/src/androidMain/kotlin/sh/christian/ozone/store/Storage.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/store/src/androidMain/kotlin/sh/christian/ozone/store/Storage.android.kt -------------------------------------------------------------------------------- /app/store/src/commonMain/kotlin/sh/christian/ozone/store/PersistentStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/store/src/commonMain/kotlin/sh/christian/ozone/store/PersistentStorage.kt -------------------------------------------------------------------------------- /app/store/src/commonMain/kotlin/sh/christian/ozone/store/Preference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/store/src/commonMain/kotlin/sh/christian/ozone/store/Preference.kt -------------------------------------------------------------------------------- /app/store/src/commonMain/kotlin/sh/christian/ozone/store/settings/NullableSettingsPreference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/store/src/commonMain/kotlin/sh/christian/ozone/store/settings/NullableSettingsPreference.kt -------------------------------------------------------------------------------- /app/store/src/commonMain/kotlin/sh/christian/ozone/store/settings/SettingsPreference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/store/src/commonMain/kotlin/sh/christian/ozone/store/settings/SettingsPreference.kt -------------------------------------------------------------------------------- /app/store/src/commonMain/kotlin/sh/christian/ozone/store/settings/SettingsStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/store/src/commonMain/kotlin/sh/christian/ozone/store/settings/SettingsStorage.kt -------------------------------------------------------------------------------- /app/store/src/iosMain/kotlin/sh/christian/ozone/store/Storage.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/store/src/iosMain/kotlin/sh/christian/ozone/store/Storage.ios.kt -------------------------------------------------------------------------------- /app/store/src/jsMain/kotlin/sh/christian/ozone/store/Storage.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/store/src/jsMain/kotlin/sh/christian/ozone/store/Storage.js.kt -------------------------------------------------------------------------------- /app/store/src/jvmMain/kotlin/sh/christian/ozone/store/Storage.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/store/src/jvmMain/kotlin/sh/christian/ozone/store/Storage.jvm.kt -------------------------------------------------------------------------------- /app/web/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ -------------------------------------------------------------------------------- /app/web/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/web/build.gradle.kts -------------------------------------------------------------------------------- /app/web/src/jsMain/kotlin/sh/christian/ozone/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/web/src/jsMain/kotlin/sh/christian/ozone/Main.kt -------------------------------------------------------------------------------- /app/web/src/jsMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/web/src/jsMain/resources/index.html -------------------------------------------------------------------------------- /app/web/src/jsMain/resources/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/web/src/jsMain/resources/styles.css -------------------------------------------------------------------------------- /app/web/webpack.config.d/serverConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/app/web/webpack.config.d/serverConfig.js -------------------------------------------------------------------------------- /bluesky/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /bluesky/api/bluesky.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/bluesky/api/bluesky.api -------------------------------------------------------------------------------- /bluesky/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/bluesky/build.gradle.kts -------------------------------------------------------------------------------- /bluesky/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/bluesky/gradle.properties -------------------------------------------------------------------------------- /bluesky/src/commonMain/kotlin/sh/christian/ozone/BlueskyJson.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/bluesky/src/commonMain/kotlin/sh/christian/ozone/BlueskyJson.kt -------------------------------------------------------------------------------- /bluesky/src/commonMain/kotlin/sh/christian/ozone/api/AuthenticatedXrpcBlueskyApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/bluesky/src/commonMain/kotlin/sh/christian/ozone/api/AuthenticatedXrpcBlueskyApi.kt -------------------------------------------------------------------------------- /bluesky/src/commonMain/kotlin/sh/christian/ozone/api/BlueskyAuthPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/bluesky/src/commonMain/kotlin/sh/christian/ozone/api/BlueskyAuthPlugin.kt -------------------------------------------------------------------------------- /bluesky/src/commonTest/kotlin/sh/christian/ozone/api/AtpErrorsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/bluesky/src/commonTest/kotlin/sh/christian/ozone/api/AtpErrorsTest.kt -------------------------------------------------------------------------------- /bluesky/src/commonTest/kotlin/sh/christian/ozone/api/AuthenticatedXrpcBlueskyApiTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/bluesky/src/commonTest/kotlin/sh/christian/ozone/api/AuthenticatedXrpcBlueskyApiTest.kt -------------------------------------------------------------------------------- /bluesky/src/commonTest/kotlin/sh/christian/ozone/api/mockEngine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/bluesky/src/commonTest/kotlin/sh/christian/ozone/api/mockEngine.kt -------------------------------------------------------------------------------- /generator/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /.kotlin/ -------------------------------------------------------------------------------- /generator/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/build.gradle.kts -------------------------------------------------------------------------------- /generator/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/gradle.properties -------------------------------------------------------------------------------- /generator/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/settings.gradle.kts -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/ApiConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/ApiConfiguration.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/ApiReturnType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/ApiReturnType.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/DefaultsConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/DefaultsConfiguration.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/LexiconApiGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/LexiconApiGenerator.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/LexiconClassFileCreator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/LexiconClassFileCreator.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/LexiconProcessingEnvironment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/LexiconProcessingEnvironment.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/TypeNames.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/TypeNames.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/GeneratorContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/GeneratorContext.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/LexiconDataClassesGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/LexiconDataClassesGenerator.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/Requirement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/Requirement.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/SealedRelationship.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/SealedRelationship.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/SimpleProperty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/SimpleProperty.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/TypesGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/TypesGenerator.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/XrpcBodyGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/XrpcBodyGenerator.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/XrpcQueryParamsGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/XrpcQueryParamsGenerator.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/enums.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/enums.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/primitives.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/primitives.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/requirements.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/requirements.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/builder/util.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/generator/memberNames.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/generator/memberNames.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/gradle/LexiconGeneratorExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/gradle/LexiconGeneratorExtension.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/gradle/LexiconGeneratorPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/gradle/LexiconGeneratorPlugin.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/gradle/LexiconGeneratorTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/gradle/LexiconGeneratorTask.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/lexicon/grammar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/lexicon/grammar.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/lexicon/moshi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/lexicon/moshi.kt -------------------------------------------------------------------------------- /generator/src/main/kotlin/sh/christian/ozone/api/lexicon/parse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/generator/src/main/kotlin/sh/christian/ozone/api/lexicon/parse.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jetstream/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /jetstream/api/jetstream.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/jetstream/api/jetstream.api -------------------------------------------------------------------------------- /jetstream/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/jetstream/build.gradle.kts -------------------------------------------------------------------------------- /jetstream/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/jetstream/gradle.properties -------------------------------------------------------------------------------- /jetstream/schemas/app/bsky/jetstream/subscribe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/jetstream/schemas/app/bsky/jetstream/subscribe.json -------------------------------------------------------------------------------- /jetstream/src/commonMain/kotlin/sh/christian/ozone/jetstream/JetstreamApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/jetstream/src/commonMain/kotlin/sh/christian/ozone/jetstream/JetstreamApi.kt -------------------------------------------------------------------------------- /jetstream/src/commonMain/kotlin/sh/christian/ozone/jetstream/JetstreamHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/jetstream/src/commonMain/kotlin/sh/christian/ozone/jetstream/JetstreamHost.kt -------------------------------------------------------------------------------- /jetstream/src/commonMain/kotlin/sh/christian/ozone/jetstream/JetstreamInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/jetstream/src/commonMain/kotlin/sh/christian/ozone/jetstream/JetstreamInterface.kt -------------------------------------------------------------------------------- /jetstream/src/commonMain/kotlin/sh/christian/ozone/jetstream/subscribeEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/jetstream/src/commonMain/kotlin/sh/christian/ozone/jetstream/subscribeEvent.kt -------------------------------------------------------------------------------- /jetstream/src/commonMain/kotlin/sh/christian/ozone/jetstream/zstd.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/jetstream/src/commonMain/kotlin/sh/christian/ozone/jetstream/zstd.kt -------------------------------------------------------------------------------- /jetstream/src/jsMain/kotlin/sh/christian/ozone/jetstream/ZstdCodec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/jetstream/src/jsMain/kotlin/sh/christian/ozone/jetstream/ZstdCodec.kt -------------------------------------------------------------------------------- /jetstream/src/jsMain/kotlin/sh/christian/ozone/jetstream/strings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/jetstream/src/jsMain/kotlin/sh/christian/ozone/jetstream/strings.kt -------------------------------------------------------------------------------- /jetstream/src/jsMain/kotlin/sh/christian/ozone/jetstream/zstd.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/jetstream/src/jsMain/kotlin/sh/christian/ozone/jetstream/zstd.js.kt -------------------------------------------------------------------------------- /jetstream/src/jsMain/resources/files/zstd_dictionary.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/jetstream/src/jsMain/resources/files/zstd_dictionary.bin -------------------------------------------------------------------------------- /jetstream/src/jvmMain/kotlin/sh/christian/ozone/jetstream/zstd.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/jetstream/src/jvmMain/kotlin/sh/christian/ozone/jetstream/zstd.jvm.kt -------------------------------------------------------------------------------- /jetstream/src/jvmMain/resources/files/zstd_dictionary.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/jetstream/src/jvmMain/resources/files/zstd_dictionary.bin -------------------------------------------------------------------------------- /kotlin-js-store/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/kotlin-js-store/yarn.lock -------------------------------------------------------------------------------- /lexicons/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /lexicons/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/build.gradle.kts -------------------------------------------------------------------------------- /lexicons/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/gradle.properties -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/actor/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/actor/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/actor/getPreferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/actor/getPreferences.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/actor/getProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/actor/getProfile.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/actor/getProfiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/actor/getProfiles.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/actor/getSuggestions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/actor/getSuggestions.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/actor/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/actor/profile.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/actor/putPreferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/actor/putPreferences.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/actor/searchActors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/actor/searchActors.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/actor/searchActorsTypeahead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/actor/searchActorsTypeahead.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/actor/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/actor/status.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/ageassurance/begin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/ageassurance/begin.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/ageassurance/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/ageassurance/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/ageassurance/getConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/ageassurance/getConfig.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/ageassurance/getState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/ageassurance/getState.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/bookmark/createBookmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/bookmark/createBookmark.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/bookmark/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/bookmark/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/bookmark/deleteBookmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/bookmark/deleteBookmark.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/bookmark/getBookmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/bookmark/getBookmarks.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/embed/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/embed/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/embed/external.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/embed/external.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/embed/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/embed/images.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/embed/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/embed/record.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/embed/recordWithMedia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/embed/recordWithMedia.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/embed/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/embed/video.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/describeFeedGenerator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/describeFeedGenerator.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/generator.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/getActorFeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/getActorFeeds.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/getActorLikes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/getActorLikes.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/getAuthorFeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/getAuthorFeed.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/getFeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/getFeed.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/getFeedGenerator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/getFeedGenerator.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/getFeedGenerators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/getFeedGenerators.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/getFeedSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/getFeedSkeleton.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/getLikes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/getLikes.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/getListFeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/getListFeed.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/getPostThread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/getPostThread.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/getPosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/getPosts.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/getQuotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/getQuotes.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/getRepostedBy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/getRepostedBy.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/getSuggestedFeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/getSuggestedFeeds.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/getTimeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/getTimeline.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/like.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/like.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/post.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/postgate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/postgate.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/repost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/repost.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/searchPosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/searchPosts.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/sendInteractions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/sendInteractions.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/feed/threadgate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/feed/threadgate.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/block.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/follow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/follow.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getActorStarterPacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getActorStarterPacks.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getBlocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getBlocks.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getFollowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getFollowers.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getFollows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getFollows.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getKnownFollowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getKnownFollowers.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getList.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getListBlocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getListBlocks.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getListMutes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getListMutes.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getLists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getLists.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getListsWithMembership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getListsWithMembership.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getMutes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getMutes.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getRelationships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getRelationships.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getStarterPack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getStarterPack.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getStarterPacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getStarterPacks.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getStarterPacksWithMembership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getStarterPacksWithMembership.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/getSuggestedFollowsByActor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/getSuggestedFollowsByActor.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/list.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/listblock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/listblock.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/listitem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/listitem.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/muteActor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/muteActor.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/muteActorList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/muteActorList.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/muteThread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/muteThread.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/searchStarterPacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/searchStarterPacks.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/starterpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/starterpack.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/unmuteActor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/unmuteActor.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/unmuteActorList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/unmuteActorList.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/unmuteThread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/unmuteThread.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/graph/verification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/graph/verification.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/labeler/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/labeler/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/labeler/getServices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/labeler/getServices.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/labeler/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/labeler/service.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/notification/declaration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/notification/declaration.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/notification/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/notification/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/notification/getPreferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/notification/getPreferences.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/notification/getUnreadCount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/notification/getUnreadCount.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/notification/listActivitySubscriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/notification/listActivitySubscriptions.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/notification/listNotifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/notification/listNotifications.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/notification/putActivitySubscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/notification/putActivitySubscription.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/notification/putPreferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/notification/putPreferences.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/notification/putPreferencesV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/notification/putPreferencesV2.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/notification/registerPush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/notification/registerPush.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/notification/unregisterPush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/notification/unregisterPush.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/notification/updateSeen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/notification/updateSeen.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/richtext/facet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/richtext/facet.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getAgeAssuranceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getAgeAssuranceState.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getConfig.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getOnboardingSuggestedStarterPacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getOnboardingSuggestedStarterPacks.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getOnboardingSuggestedStarterPacksSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getOnboardingSuggestedStarterPacksSkeleton.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getPopularFeedGenerators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getPopularFeedGenerators.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getPostThreadOtherV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getPostThreadOtherV2.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getPostThreadV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getPostThreadV2.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getSuggestedFeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getSuggestedFeeds.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getSuggestedFeedsSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getSuggestedFeedsSkeleton.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getSuggestedStarterPacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getSuggestedStarterPacks.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getSuggestedUsers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getSuggestedUsers.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getSuggestedUsersSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getSuggestedUsersSkeleton.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getSuggestionsSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getSuggestionsSkeleton.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getTaggedSuggestions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getTaggedSuggestions.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getTrendingTopics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getTrendingTopics.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getTrends.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getTrends.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/getTrendsSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/getTrendsSkeleton.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/initAgeAssurance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/initAgeAssurance.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/searchActorsSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/searchActorsSkeleton.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/searchPostsSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/searchPostsSkeleton.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/unspecced/searchStarterPacksSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/unspecced/searchStarterPacksSkeleton.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/video/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/video/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/video/getJobStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/video/getJobStatus.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/video/getUploadLimits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/video/getUploadLimits.json -------------------------------------------------------------------------------- /lexicons/schemas/app/bsky/video/uploadVideo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/app/bsky/video/uploadVideo.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/actor/declaration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/actor/declaration.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/actor/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/actor/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/actor/deleteAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/actor/deleteAccount.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/actor/exportAccountData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/actor/exportAccountData.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/acceptConvo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/acceptConvo.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/addReaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/addReaction.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/deleteMessageForSelf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/deleteMessageForSelf.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/getConvo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/getConvo.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/getConvoAvailability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/getConvoAvailability.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/getConvoForMembers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/getConvoForMembers.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/getLog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/getLog.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/getMessages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/getMessages.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/leaveConvo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/leaveConvo.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/listConvos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/listConvos.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/muteConvo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/muteConvo.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/removeReaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/removeReaction.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/sendMessage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/sendMessage.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/sendMessageBatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/sendMessageBatch.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/unmuteConvo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/unmuteConvo.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/updateAllRead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/updateAllRead.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/convo/updateRead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/convo/updateRead.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/moderation/getActorMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/moderation/getActorMetadata.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/moderation/getMessageContext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/moderation/getMessageContext.json -------------------------------------------------------------------------------- /lexicons/schemas/chat/bsky/moderation/updateActorAccess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/chat/bsky/moderation/updateActorAccess.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/deleteAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/deleteAccount.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/disableAccountInvites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/disableAccountInvites.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/disableInviteCodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/disableInviteCodes.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/enableAccountInvites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/enableAccountInvites.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/getAccountInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/getAccountInfo.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/getAccountInfos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/getAccountInfos.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/getInviteCodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/getInviteCodes.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/getSubjectStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/getSubjectStatus.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/searchAccounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/searchAccounts.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/sendEmail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/sendEmail.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/updateAccountEmail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/updateAccountEmail.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/updateAccountHandle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/updateAccountHandle.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/updateAccountPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/updateAccountPassword.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/updateAccountSigningKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/updateAccountSigningKey.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/admin/updateSubjectStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/admin/updateSubjectStatus.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/identity/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/identity/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/identity/getRecommendedDidCredentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/identity/getRecommendedDidCredentials.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/identity/refreshIdentity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/identity/refreshIdentity.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/identity/requestPlcOperationSignature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/identity/requestPlcOperationSignature.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/identity/resolveDid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/identity/resolveDid.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/identity/resolveHandle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/identity/resolveHandle.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/identity/resolveIdentity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/identity/resolveIdentity.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/identity/signPlcOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/identity/signPlcOperation.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/identity/submitPlcOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/identity/submitPlcOperation.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/identity/updateHandle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/identity/updateHandle.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/label/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/label/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/label/queryLabels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/label/queryLabels.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/label/subscribeLabels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/label/subscribeLabels.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/lexicon/resolveLexicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/lexicon/resolveLexicon.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/lexicon/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/lexicon/schema.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/moderation/createReport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/moderation/createReport.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/moderation/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/moderation/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/repo/applyWrites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/repo/applyWrites.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/repo/createRecord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/repo/createRecord.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/repo/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/repo/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/repo/deleteRecord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/repo/deleteRecord.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/repo/describeRepo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/repo/describeRepo.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/repo/getRecord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/repo/getRecord.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/repo/importRepo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/repo/importRepo.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/repo/listMissingBlobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/repo/listMissingBlobs.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/repo/listRecords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/repo/listRecords.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/repo/putRecord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/repo/putRecord.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/repo/strongRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/repo/strongRef.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/repo/uploadBlob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/repo/uploadBlob.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/activateAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/activateAccount.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/checkAccountStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/checkAccountStatus.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/confirmEmail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/confirmEmail.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/createAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/createAccount.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/createAppPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/createAppPassword.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/createInviteCode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/createInviteCode.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/createInviteCodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/createInviteCodes.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/createSession.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/createSession.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/deactivateAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/deactivateAccount.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/deleteAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/deleteAccount.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/deleteSession.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/deleteSession.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/describeServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/describeServer.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/getAccountInviteCodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/getAccountInviteCodes.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/getServiceAuth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/getServiceAuth.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/getSession.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/getSession.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/listAppPasswords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/listAppPasswords.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/refreshSession.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/refreshSession.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/requestAccountDelete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/requestAccountDelete.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/requestEmailConfirmation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/requestEmailConfirmation.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/requestEmailUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/requestEmailUpdate.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/requestPasswordReset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/requestPasswordReset.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/reserveSigningKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/reserveSigningKey.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/resetPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/resetPassword.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/revokeAppPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/revokeAppPassword.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/server/updateEmail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/server/updateEmail.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/getBlob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/getBlob.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/getBlocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/getBlocks.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/getCheckout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/getCheckout.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/getHead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/getHead.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/getHostStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/getHostStatus.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/getLatestCommit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/getLatestCommit.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/getRecord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/getRecord.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/getRepo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/getRepo.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/getRepoStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/getRepoStatus.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/listBlobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/listBlobs.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/listHosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/listHosts.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/listRepos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/listRepos.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/listReposByCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/listReposByCollection.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/notifyOfUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/notifyOfUpdate.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/requestCrawl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/requestCrawl.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/sync/subscribeRepos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/sync/subscribeRepos.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/temp/addReservedHandle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/temp/addReservedHandle.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/temp/checkHandleAvailability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/temp/checkHandleAvailability.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/temp/checkSignupQueue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/temp/checkSignupQueue.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/temp/dereferenceScope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/temp/dereferenceScope.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/temp/fetchLabels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/temp/fetchLabels.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/temp/requestPhoneVerification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/temp/requestPhoneVerification.json -------------------------------------------------------------------------------- /lexicons/schemas/com/atproto/temp/revokeAccountCredentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/com/atproto/temp/revokeAccountCredentials.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/communication/createTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/communication/createTemplate.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/communication/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/communication/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/communication/deleteTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/communication/deleteTemplate.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/communication/listTemplates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/communication/listTemplates.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/communication/updateTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/communication/updateTemplate.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/hosting/getAccountHistory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/hosting/getAccountHistory.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/cancelScheduledActions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/cancelScheduledActions.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/emitEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/emitEvent.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/getAccountTimeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/getAccountTimeline.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/getEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/getEvent.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/getRecord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/getRecord.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/getRecords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/getRecords.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/getRepo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/getRepo.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/getReporterStats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/getReporterStats.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/getRepos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/getRepos.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/getSubjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/getSubjects.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/listScheduledActions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/listScheduledActions.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/queryEvents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/queryEvents.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/queryStatuses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/queryStatuses.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/scheduleAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/scheduleAction.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/moderation/searchRepos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/moderation/searchRepos.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/report/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/report/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/safelink/addRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/safelink/addRule.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/safelink/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/safelink/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/safelink/queryEvents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/safelink/queryEvents.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/safelink/queryRules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/safelink/queryRules.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/safelink/removeRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/safelink/removeRule.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/safelink/updateRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/safelink/updateRule.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/server/getConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/server/getConfig.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/set/addValues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/set/addValues.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/set/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/set/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/set/deleteSet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/set/deleteSet.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/set/deleteValues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/set/deleteValues.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/set/getValues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/set/getValues.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/set/querySets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/set/querySets.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/set/upsertSet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/set/upsertSet.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/setting/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/setting/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/setting/listOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/setting/listOptions.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/setting/removeOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/setting/removeOptions.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/setting/upsertOption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/setting/upsertOption.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/signature/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/signature/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/signature/findCorrelation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/signature/findCorrelation.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/signature/findRelatedAccounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/signature/findRelatedAccounts.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/signature/searchAccounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/signature/searchAccounts.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/team/addMember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/team/addMember.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/team/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/team/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/team/deleteMember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/team/deleteMember.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/team/listMembers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/team/listMembers.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/team/updateMember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/team/updateMember.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/verification/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/verification/defs.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/verification/grantVerifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/verification/grantVerifications.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/verification/listVerifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/verification/listVerifications.json -------------------------------------------------------------------------------- /lexicons/schemas/tools/ozone/verification/revokeVerifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/lexicons/schemas/tools/ozone/verification/revokeVerifications.json -------------------------------------------------------------------------------- /oauth/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /oauth/api/oauth.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/api/oauth.api -------------------------------------------------------------------------------- /oauth/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/build.gradle.kts -------------------------------------------------------------------------------- /oauth/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/gradle.properties -------------------------------------------------------------------------------- /oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/DpopKeyPair.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/DpopKeyPair.kt -------------------------------------------------------------------------------- /oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/DpopKeyPairSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/DpopKeyPairSerializer.kt -------------------------------------------------------------------------------- /oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/OAuthApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/OAuthApi.kt -------------------------------------------------------------------------------- /oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/OAuthAuthorizationRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/OAuthAuthorizationRequest.kt -------------------------------------------------------------------------------- /oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/OAuthClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/OAuthClient.kt -------------------------------------------------------------------------------- /oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/OAuthCodeChallengeMethod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/OAuthCodeChallengeMethod.kt -------------------------------------------------------------------------------- /oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/OAuthCodeChallengeMethodSelector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/OAuthCodeChallengeMethodSelector.kt -------------------------------------------------------------------------------- /oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/OAuthScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/OAuthScope.kt -------------------------------------------------------------------------------- /oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/OAuthToken.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/OAuthToken.kt -------------------------------------------------------------------------------- /oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/base64url.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/base64url.kt -------------------------------------------------------------------------------- /oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/network/OAuthAuthorizationServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/network/OAuthAuthorizationServer.kt -------------------------------------------------------------------------------- /oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/network/OAuthParRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/network/OAuthParRequest.kt -------------------------------------------------------------------------------- /oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/network/OAuthParResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/network/OAuthParResponse.kt -------------------------------------------------------------------------------- /oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/network/OAuthTokenResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/oauth/src/commonMain/kotlin/sh/christian/ozone/oauth/network/OAuthTokenResponse.kt -------------------------------------------------------------------------------- /scripts/bump_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/scripts/bump_version.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiandeange/ozone/HEAD/settings.gradle.kts --------------------------------------------------------------------------------