├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── action-issue.md │ ├── bug_report.md │ └── feature-request-or-feature-change.md ├── .gitignore ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ ├── Open-Jellycore-Package.xcscheme │ ├── Open-Jellycore.xcscheme │ ├── Open-JellycoreTests.xcscheme │ └── jelly.xcscheme ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── Open-Jellycore │ ├── Core │ │ ├── Compiler │ │ │ ├── Action │ │ │ │ ├── Action.swift │ │ │ │ ├── ActionPreset.swift │ │ │ │ └── Parameters │ │ │ │ │ └── ParameterProtocol.swift │ │ │ ├── Compiler.swift │ │ │ ├── Core Nodes │ │ │ │ ├── Classes │ │ │ │ │ ├── BlockNode.swift │ │ │ │ │ ├── CommentNode.swift │ │ │ │ │ ├── ConditionalNode.swift │ │ │ │ │ ├── FlagNode.swift │ │ │ │ │ ├── FunctionCallNode.swift │ │ │ │ │ ├── FunctionDefinitionNode.swift │ │ │ │ │ ├── ImportNode.swift │ │ │ │ │ ├── MacroDefinitionNode.swift │ │ │ │ │ ├── MagicVariableNode.swift │ │ │ │ │ ├── MenuNode.swift │ │ │ │ │ ├── PrimitiveNodes.swift │ │ │ │ │ ├── RepeatEachNode.swift │ │ │ │ │ ├── RepeatNode.swift │ │ │ │ │ ├── ReturnStatementNode.swift │ │ │ │ │ └── VariableAssignmentNode.swift │ │ │ │ ├── Enums │ │ │ │ │ └── CoreNodeType.swift │ │ │ │ └── Protocol │ │ │ │ │ ├── CoreNode.swift │ │ │ │ │ └── CorePrimitiveNode.swift │ │ │ ├── Lookup Tables │ │ │ │ ├── Apps │ │ │ │ │ ├── Actions │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── Actions_AddToListParameter.swift │ │ │ │ │ │ │ ├── Actions_CombineListsParameter.swift │ │ │ │ │ │ │ ├── Actions_FilterListParameter.swift │ │ │ │ │ │ │ ├── Actions_FormatCurrencyParameter.swift │ │ │ │ │ │ │ ├── Actions_GenerateUUIDParameter.swift │ │ │ │ │ │ │ ├── Actions_HapticFeedbackParameter.swift │ │ │ │ │ │ │ ├── Actions_IsAudioPlayingParameter.swift │ │ │ │ │ │ │ ├── Actions_IsSilentModeOnParameter.swift │ │ │ │ │ │ │ ├── Actions_RemoveEmojiParameter.swift │ │ │ │ │ │ │ ├── Actions_ReverseListParameter.swift │ │ │ │ │ │ │ ├── Actions_ShuffleListParameter.swift │ │ │ │ │ │ │ ├── Actions_SortListParameter.swift │ │ │ │ │ │ │ ├── ApplyCaptureDateParameter.swift │ │ │ │ │ │ │ ├── ClampNumberParameter.swift │ │ │ │ │ │ │ ├── CreateURLParameter.swift │ │ │ │ │ │ │ ├── DateToUnixTimeParameter.swift │ │ │ │ │ │ │ ├── EditURLParameter.swift │ │ │ │ │ │ │ ├── FormatDateDifferenceParameter.swift │ │ │ │ │ │ │ ├── GetAudioPlaybackDestinationParameter.swift │ │ │ │ │ │ │ ├── GetBatteryStateParameter.swift │ │ │ │ │ │ │ ├── GetEmojisParameter.swift │ │ │ │ │ │ │ ├── GetFileIconParameter.swift │ │ │ │ │ │ │ ├── GetFilePathParameter.swift │ │ │ │ │ │ │ ├── GetMusicPlaylistsParameter.swift │ │ │ │ │ │ │ ├── GetRunningAppsParameter.swift │ │ │ │ │ │ │ ├── GetTitleOfURLParameter.swift │ │ │ │ │ │ │ ├── GetUniformTypeIdentifierParameter.swift │ │ │ │ │ │ │ ├── GetUserDetailsParameter.swift │ │ │ │ │ │ │ ├── HideShortcutsAppParameter.swift │ │ │ │ │ │ │ ├── IsBluetoothOnParameter.swift │ │ │ │ │ │ │ ├── IsConnectedToVPNParameter.swift │ │ │ │ │ │ │ ├── IsDarkModeParameter.swift │ │ │ │ │ │ │ ├── IsLowPowerModeParameter.swift │ │ │ │ │ │ │ ├── RandomBooleanParameter.swift │ │ │ │ │ │ │ ├── RandomColorParameter.swift │ │ │ │ │ │ │ ├── RandomDateTimeParameter.swift │ │ │ │ │ │ │ ├── RandomEmojiParameter.swift │ │ │ │ │ │ │ ├── RandomFloatingPointNumberParameter.swift │ │ │ │ │ │ │ ├── RandomTextParameter.swift │ │ │ │ │ │ │ ├── RemoveDuplicateLinesParameter.swift │ │ │ │ │ │ │ ├── RemoveDuplicatesFromListParameter.swift │ │ │ │ │ │ │ ├── RemoveEmptyLinesParameter.swift │ │ │ │ │ │ │ ├── RemoveFromListParameter.swift │ │ │ │ │ │ │ ├── RemoveNonPrintableCharactersParameter.swift │ │ │ │ │ │ │ ├── SampleColorParameter.swift │ │ │ │ │ │ │ ├── SendFeedbackParameter.swift │ │ │ │ │ │ │ ├── SetFileCreationModificationDateParameter.swift │ │ │ │ │ │ │ ├── SpellOutNumberParameter.swift │ │ │ │ │ │ │ ├── TransformTextParameter.swift │ │ │ │ │ │ │ ├── TransformTextWithJavaScriptParameter.swift │ │ │ │ │ │ │ ├── TrimWhitespaceParameter.swift │ │ │ │ │ │ │ ├── TruncateListParameter.swift │ │ │ │ │ │ │ ├── UnixTimeToDateParameter.swift │ │ │ │ │ │ │ └── WriteTextParameter.swift │ │ │ │ │ │ ├── ActionsLookupTable.swift │ │ │ │ │ │ ├── Enums │ │ │ │ │ │ │ ├── Actions_Jelly_HapticFeedbackType.swift │ │ │ │ │ │ │ ├── Jelly_BatteryStateType.swift │ │ │ │ │ │ │ ├── Jelly_EditURLAction.swift │ │ │ │ │ │ │ ├── Jelly_FilePathType.swift │ │ │ │ │ │ │ ├── Jelly_FilterCondition.swift │ │ │ │ │ │ │ ├── Jelly_RemoveFromListAction.swift │ │ │ │ │ │ │ ├── Jelly_SetFileDateType.swift │ │ │ │ │ │ │ ├── Jelly_SortType_.swift │ │ │ │ │ │ │ ├── Jelly_Transformation.swift │ │ │ │ │ │ │ └── Jelly_UserDetailsType.swift │ │ │ │ │ │ └── Objects │ │ │ │ │ │ │ ├── Jelly_ActionsLocale.swift │ │ │ │ │ │ │ └── Jelly_Currency.swift │ │ │ │ │ ├── Apollo │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── OpenHomeParameter.swift │ │ │ │ │ │ │ ├── OpenMultiredditParameter.swift │ │ │ │ │ │ │ ├── OpenSubredditParameter.swift │ │ │ │ │ │ │ └── OpenUserParameter.swift │ │ │ │ │ │ └── ApolloLookupTable.swift │ │ │ │ │ ├── CARROT │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ └── CurrentForecastParameter.swift │ │ │ │ │ │ ├── CARROTLookupTable.swift │ │ │ │ │ │ └── Enums │ │ │ │ │ │ │ ├── Jelly_DataType.swift │ │ │ │ │ │ │ ├── Jelly_ForecastType.swift │ │ │ │ │ │ │ └── Jelly_TimeThreshold.swift │ │ │ │ │ ├── DataJar │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── CheckIfValueExistsParameter.swift │ │ │ │ │ │ │ ├── DataJar_SetValueParameter.swift │ │ │ │ │ │ │ ├── DeleteValueParameter.swift │ │ │ │ │ │ │ ├── GetChildCountParameter.swift │ │ │ │ │ │ │ ├── GetKeysParameter.swift │ │ │ │ │ │ │ ├── GetTypeOfValueParameter.swift │ │ │ │ │ │ │ ├── GetValueParameter.swift │ │ │ │ │ │ │ ├── InsertValueInArrayParameter.swift │ │ │ │ │ │ │ └── ViewValueParameter.swift │ │ │ │ │ │ ├── DataJarLookupTable.swift │ │ │ │ │ │ └── Enums │ │ │ │ │ │ │ ├── Jelly_ArrayValueInsertionPoint.swift │ │ │ │ │ │ │ ├── Jelly_DeleteStrategy.swift │ │ │ │ │ │ │ ├── Jelly_GetKeysSource.swift │ │ │ │ │ │ │ ├── Jelly_OverwriteStrategy.swift │ │ │ │ │ │ │ └── Jelly_ValueConversionMode.swift │ │ │ │ │ ├── Drafts │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── CaptureParameter.swift │ │ │ │ │ │ │ ├── DictateDraftParameter.swift │ │ │ │ │ │ │ ├── FileDraftParameter.swift │ │ │ │ │ │ │ ├── GetCurrentDraftParameter.swift │ │ │ │ │ │ │ ├── GetDraftByUUIDParameter.swift │ │ │ │ │ │ │ ├── GetDraftParameter.swift │ │ │ │ │ │ │ ├── LoWoradWorkspaceParameter.swift │ │ │ │ │ │ │ ├── MarkdownToHTMLParameter.swift │ │ │ │ │ │ │ ├── OpenDraftParameter.swift │ │ │ │ │ │ │ ├── ProcessTemplateParameter.swift │ │ │ │ │ │ │ ├── QueryDraftsParameter.swift │ │ │ │ │ │ │ ├── QueryWorkspaceParameter.swift │ │ │ │ │ │ │ ├── RunActionOnDraftParameter.swift │ │ │ │ │ │ │ ├── RunActionParameter.swift │ │ │ │ │ │ │ ├── SetDraftParameter.swift │ │ │ │ │ │ │ ├── ShowCaptureParameter.swift │ │ │ │ │ │ │ └── ViewDraftParameter.swift │ │ │ │ │ │ ├── DraftsLookupTable.swift │ │ │ │ │ │ ├── Enums │ │ │ │ │ │ │ ├── Jelly_DraftMarkdownParser.swift │ │ │ │ │ │ │ ├── Jelly_DraftQueryFlaggedStatus.swift │ │ │ │ │ │ │ ├── Jelly_DraftQuerySort.swift │ │ │ │ │ │ │ ├── Jelly_DraftResponseFolder.swift │ │ │ │ │ │ │ ├── Jelly_DraftUpdateFlaggedStatus.swift │ │ │ │ │ │ │ ├── Jelly_DraftUpdateFolder.swift │ │ │ │ │ │ │ ├── Jelly_DraftWriteType.swift │ │ │ │ │ │ │ └── Jelly_ShowHideStatus.swift │ │ │ │ │ │ └── Objects │ │ │ │ │ │ │ ├── Jelly_Action.swift │ │ │ │ │ │ │ ├── Jelly_ActionGroup.swift │ │ │ │ │ │ │ ├── Jelly_Draft.swift │ │ │ │ │ │ │ ├── Jelly_DraftsLocal.swift │ │ │ │ │ │ │ ├── Jelly_GrammarType.swift │ │ │ │ │ │ │ └── Jelly_Workspace.swift │ │ │ │ │ ├── FocusedWork │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── EndFocusSessionParameter.swift │ │ │ │ │ │ │ ├── GetCurrentFocusSessionParameter.swift │ │ │ │ │ │ │ ├── GetFocusSessionsParameter.swift │ │ │ │ │ │ │ ├── GetLastFinishedFocusSessionParameter.swift │ │ │ │ │ │ │ ├── PauseFocusSessionParameter.swift │ │ │ │ │ │ │ ├── RestartStageParameter.swift │ │ │ │ │ │ │ ├── ResumeFocusSessionParameter.swift │ │ │ │ │ │ │ ├── SetTimerVolumeLevelParameter.swift │ │ │ │ │ │ │ ├── SkipStageParameter.swift │ │ │ │ │ │ │ └── StartFocusSessionParameter.swift │ │ │ │ │ │ ├── Enums │ │ │ │ │ │ │ ├── Jelly_ProductivityRating.swift │ │ │ │ │ │ │ ├── Jelly_SkipEndSession.swift │ │ │ │ │ │ │ ├── Jelly_StageType.swift │ │ │ │ │ │ │ └── Jelly_TimerCountStyle.swift │ │ │ │ │ │ ├── FocusedWorkLookupTable.swift │ │ │ │ │ │ └── Objects │ │ │ │ │ │ │ └── Jelly_FocusSession.swift │ │ │ │ │ ├── GizmoPack │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── AddWalletPassParameter.swift │ │ │ │ │ │ │ ├── CombineListsParameter.swift │ │ │ │ │ │ │ ├── CreateWalletPassParameter.swift │ │ │ │ │ │ │ ├── EncodeHexParameter.swift │ │ │ │ │ │ │ ├── EncodePlistParameter.swift │ │ │ │ │ │ │ ├── FileInfoParameter.swift │ │ │ │ │ │ │ ├── FilterDictionariesParameter.swift │ │ │ │ │ │ │ ├── FuzzyFinderParameter.swift │ │ │ │ │ │ │ ├── GenerateCSVParameter.swift │ │ │ │ │ │ │ ├── HashDataParameter.swift │ │ │ │ │ │ │ ├── OverwriteFileParameter.swift │ │ │ │ │ │ │ ├── ParseCSVParameter.swift │ │ │ │ │ │ │ ├── ParseDateParameter.swift │ │ │ │ │ │ │ ├── QueryDocumentParameter.swift │ │ │ │ │ │ │ ├── QueryJSONParameter.swift │ │ │ │ │ │ │ ├── QueryRecordsParameter.swift │ │ │ │ │ │ │ ├── RandomDataParameter.swift │ │ │ │ │ │ │ ├── ShortcutMetadataParameter.swift │ │ │ │ │ │ │ ├── SignJWTParameter.swift │ │ │ │ │ │ │ ├── SnapshotMapParameter.swift │ │ │ │ │ │ │ ├── TrimFileParameter.swift │ │ │ │ │ │ │ └── UniversalVariablesParameter.swift │ │ │ │ │ │ ├── Enums │ │ │ │ │ │ │ ├── Jelly_BinaryOutputEncoding.swift │ │ │ │ │ │ │ ├── Jelly_CSVDelimiter.swift │ │ │ │ │ │ │ ├── Jelly_CombineListsOperation.swift │ │ │ │ │ │ │ ├── Jelly_DocumentQueryType.swift │ │ │ │ │ │ │ ├── Jelly_EncodeDecode.swift │ │ │ │ │ │ │ ├── Jelly_EncodeHexOperation.swift │ │ │ │ │ │ │ ├── Jelly_FilterDictionariesOperation.swift │ │ │ │ │ │ │ ├── Jelly_HashDataAlgorithm.swift │ │ │ │ │ │ │ ├── Jelly_JSONQueryType.swift │ │ │ │ │ │ │ ├── Jelly_JWTAlgorithm.swift │ │ │ │ │ │ │ ├── Jelly_MapPointsOfInterest.swift │ │ │ │ │ │ │ ├── Jelly_MapType.swift │ │ │ │ │ │ │ ├── Jelly_ParseCSVDelimiter.swift │ │ │ │ │ │ │ ├── Jelly_PassBarcodeFormat.swift │ │ │ │ │ │ │ ├── Jelly_PassTransitType.swift │ │ │ │ │ │ │ ├── Jelly_PassType.swift │ │ │ │ │ │ │ ├── Jelly_PlistFormat.swift │ │ │ │ │ │ │ ├── Jelly_QueryDocumentOutput.swift │ │ │ │ │ │ │ ├── Jelly_QueryRecordsOutput.swift │ │ │ │ │ │ │ ├── Jelly_TrimFileCharacterClass.swift │ │ │ │ │ │ │ ├── Jelly_TrimFileKeepDrop.swift │ │ │ │ │ │ │ ├── Jelly_TrimFilePosition.swift │ │ │ │ │ │ │ ├── Jelly_UniversalVariableOperation.swift │ │ │ │ │ │ │ ├── Jelly_UniversalVariablesDatabase.swift │ │ │ │ │ │ │ ├── Jelly_UniversalVariablesListPosition.swift │ │ │ │ │ │ │ └── Jelly_UserInterfaceStyle.swift │ │ │ │ │ │ ├── GizmoPackLookupTable.swift │ │ │ │ │ │ └── Objects │ │ │ │ │ │ │ └── Jelly_DateLocale.swift │ │ │ │ │ ├── Jellycuts │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── GrabJellycutParameter.swift │ │ │ │ │ │ │ ├── ImportObjectsParameter.swift │ │ │ │ │ │ │ └── ImportShortcutParameter.swift │ │ │ │ │ │ └── JellycutsLookupTable.swift │ │ │ │ │ ├── LinkBin │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── AddLinkFromClipboardParameter.swift │ │ │ │ │ │ │ ├── AddLinkParameter.swift │ │ │ │ │ │ │ ├── CopyLastLinksIntoClipboardParameter.swift │ │ │ │ │ │ │ ├── DoubleColumnWidgetParameter.swift │ │ │ │ │ │ │ ├── GetAllLinksForSelectedLabelParameter.swift │ │ │ │ │ │ │ └── SearchForLinksParameter.swift │ │ │ │ │ │ ├── Enums │ │ │ │ │ │ │ ├── Jelly_ShortcutLinkOrderCriteria.swift │ │ │ │ │ │ │ └── Jelly_ShortcutLinkSortCriteria.swift │ │ │ │ │ │ ├── LinkBinLookupTable.swift │ │ │ │ │ │ └── Objects │ │ │ │ │ │ │ └── Jelly_ShortcutLabel.swift │ │ │ │ │ ├── Nudget │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── AddExpenseParameter.swift │ │ │ │ │ │ │ ├── ViewBudgetLeftParameter.swift │ │ │ │ │ │ │ ├── ViewInsightsParameter.swift │ │ │ │ │ │ │ └── ViewSingleInsightParameter.swift │ │ │ │ │ │ ├── Enums │ │ │ │ │ │ │ ├── Jelly_InsightType.swift │ │ │ │ │ │ │ └── Jelly_WidgetSegment.swift │ │ │ │ │ │ ├── NudgetLookupTable.swift │ │ │ │ │ │ └── Objects │ │ │ │ │ │ │ ├── Jelly_Insight.swift │ │ │ │ │ │ │ └── Jelly_NudgetTag.swift │ │ │ │ │ ├── OtterRSS │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── DiscoverFeedsParameter.swift │ │ │ │ │ │ │ ├── ExportOPMLParameter.swift │ │ │ │ │ │ │ ├── ListFeedsParameter.swift │ │ │ │ │ │ │ ├── ListFoldersParameter.swift │ │ │ │ │ │ │ └── SubscribeFeedParameter.swift │ │ │ │ │ │ └── OtterRSSLookupTable.swift │ │ │ │ │ ├── Progress │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── DecreaseNumberTrackerParameter.swift │ │ │ │ │ │ │ ├── GetNumberTrackerValueParameter.swift │ │ │ │ │ │ │ ├── GetTrackerParameter.swift │ │ │ │ │ │ │ ├── IncreaseNumberTrackerParameter.swift │ │ │ │ │ │ │ ├── UpdateNumberTrackerParameter.swift │ │ │ │ │ │ │ └── UpdateNumberTrackerTargetParameter.swift │ │ │ │ │ │ ├── Objects │ │ │ │ │ │ │ └── Jelly_Tracker.swift │ │ │ │ │ │ └── ProgressLookupTable.swift │ │ │ │ │ ├── Recurrence │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ └── CompleteItemParameter.swift │ │ │ │ │ │ ├── Objects │ │ │ │ │ │ │ └── Jelly_Item.swift │ │ │ │ │ │ └── RecurrenceLookupTable.swift │ │ │ │ │ ├── Rubyist │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── RunCodeParameter.swift │ │ │ │ │ │ │ └── RunFileParameter.swift │ │ │ │ │ │ └── RubyistLookupTable.swift │ │ │ │ │ ├── Scriptable │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── CreateFileBookmarkParameter.swift │ │ │ │ │ │ │ ├── ParameterizedRunScriptParameter.swift │ │ │ │ │ │ │ ├── RefreshAllWidgetsParameter.swift │ │ │ │ │ │ │ └── RunScriptInlineParameter.swift │ │ │ │ │ │ ├── Enums │ │ │ │ │ │ │ └── Jelly_WidgetInteractAction.swift │ │ │ │ │ │ └── ScriptableLookupTable.swift │ │ │ │ │ ├── Shortcuts │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── AddFrameToGIFParameter.swift │ │ │ │ │ │ │ ├── AddNewCalendarParameter.swift │ │ │ │ │ │ │ ├── AddToPlaylistParameter.swift │ │ │ │ │ │ │ ├── AddToReadingListParameter.swift │ │ │ │ │ │ │ ├── AddUpNextParameter.swift │ │ │ │ │ │ │ ├── AdjustDateParameter.swift │ │ │ │ │ │ │ ├── AirdropParameter.swift │ │ │ │ │ │ │ ├── AlertParameter.swift │ │ │ │ │ │ │ ├── AppDetailParameter.swift │ │ │ │ │ │ │ ├── AppearanceDetailParameter.swift │ │ │ │ │ │ │ ├── AppendFileParameter.swift │ │ │ │ │ │ │ ├── AppendNoteParameter.swift │ │ │ │ │ │ │ ├── ArticleDetailParameter.swift │ │ │ │ │ │ │ ├── ArtistDetailParameter.swift │ │ │ │ │ │ │ ├── AskForInputParameter.swift │ │ │ │ │ │ │ ├── AttendeeDetailParameter.swift │ │ │ │ │ │ │ ├── BatteryLevelParameter.swift │ │ │ │ │ │ │ ├── CalculateParameter.swift │ │ │ │ │ │ │ ├── CallParameter.swift │ │ │ │ │ │ │ ├── CellularDetailsParameter.swift │ │ │ │ │ │ │ ├── ChangeCaseParameter.swift │ │ │ │ │ │ │ ├── ChangeWallpaperParameter.swift │ │ │ │ │ │ │ ├── ChooseParameter.swift │ │ │ │ │ │ │ ├── ClearUpNextParameter.swift │ │ │ │ │ │ │ ├── CombineImageParameter.swift │ │ │ │ │ │ │ ├── CombineTextParameter.swift │ │ │ │ │ │ │ ├── ConditionDetailParameter.swift │ │ │ │ │ │ │ ├── ConnectToServersParameter.swift │ │ │ │ │ │ │ ├── ContactDetailParameter.swift │ │ │ │ │ │ │ ├── ContentGraphParameter.swift │ │ │ │ │ │ │ ├── ContinueInShortcutsParameter.swift │ │ │ │ │ │ │ ├── ConvertImageFinderParameter.swift │ │ │ │ │ │ │ ├── ConvertImageParameter.swift │ │ │ │ │ │ │ ├── CorrectSpellingParameter.swift │ │ │ │ │ │ │ ├── CountParameter.swift │ │ │ │ │ │ │ ├── CreateAlbumParameter.swift │ │ │ │ │ │ │ ├── CreateFolderParameter.swift │ │ │ │ │ │ │ ├── CreateNoteParameter.swift │ │ │ │ │ │ │ ├── CreatePDFParameter.swift │ │ │ │ │ │ │ ├── CreatePlaylistParameter.swift │ │ │ │ │ │ │ ├── CreateQRParameter.swift │ │ │ │ │ │ │ ├── CropImageParameter.swift │ │ │ │ │ │ │ ├── DateParameter.swift │ │ │ │ │ │ │ ├── DebugShortcutParameter.swift │ │ │ │ │ │ │ ├── DecodeParameter.swift │ │ │ │ │ │ │ ├── DecodeURLParameter.swift │ │ │ │ │ │ │ ├── DeleteFileParameter.swift │ │ │ │ │ │ │ ├── DeletePhotosParameter.swift │ │ │ │ │ │ │ ├── DetectLanguageParameter.swift │ │ │ │ │ │ │ ├── DeviceDetailsParameter.swift │ │ │ │ │ │ │ ├── DictateTextParameter.swift │ │ │ │ │ │ │ ├── DictionaryParameter.swift │ │ │ │ │ │ │ ├── DownloadURLParameter.swift │ │ │ │ │ │ │ ├── EjectDiskParameter.swift │ │ │ │ │ │ │ ├── EmojiNameParameter.swift │ │ │ │ │ │ │ ├── EncodeAudioParameter.swift │ │ │ │ │ │ │ ├── EncodeMediaParameter.swift │ │ │ │ │ │ │ ├── EncodeParameter.swift │ │ │ │ │ │ │ ├── EncodeURLParameter.swift │ │ │ │ │ │ │ ├── EventDetailParameter.swift │ │ │ │ │ │ │ ├── ExitParameter.swift │ │ │ │ │ │ │ ├── ExpandURLParameter.swift │ │ │ │ │ │ │ ├── ExtractArchiveParameter.swift │ │ │ │ │ │ │ ├── ExtractTextFromImageParameter.swift │ │ │ │ │ │ │ ├── FacetimeParameter.swift │ │ │ │ │ │ │ ├── FileDetailParameter.swift │ │ │ │ │ │ │ ├── FileParameter.swift │ │ │ │ │ │ │ ├── FilterArticlesParameter.swift │ │ │ │ │ │ │ ├── FilterAttendeesParameter.swift │ │ │ │ │ │ │ ├── FilterCalendarParameter.swift │ │ │ │ │ │ │ ├── FilterContactsParameter.swift │ │ │ │ │ │ │ ├── FilterFilesParameter.swift │ │ │ │ │ │ │ ├── FilterImagesParameter.swift │ │ │ │ │ │ │ ├── FilterLocationsParameter.swift │ │ │ │ │ │ │ ├── FilterMusicParameter.swift │ │ │ │ │ │ │ ├── FilterNotesParameter.swift │ │ │ │ │ │ │ ├── FilterPhotosParameter.swift │ │ │ │ │ │ │ ├── FilterRemindersParameter.swift │ │ │ │ │ │ │ ├── FindWindowsParameter.swift │ │ │ │ │ │ │ ├── FlipImageParameter.swift │ │ │ │ │ │ │ ├── FormatDateParameter.swift │ │ │ │ │ │ │ ├── FormatNumberParameter.swift │ │ │ │ │ │ │ ├── FormatSizeParameter.swift │ │ │ │ │ │ │ ├── GetAddressFromParameter.swift │ │ │ │ │ │ │ ├── GetArticleParameter.swift │ │ │ │ │ │ │ ├── GetClassParameter.swift │ │ │ │ │ │ │ ├── GetClipboardParameter.swift │ │ │ │ │ │ │ ├── GetContactsFromParameter.swift │ │ │ │ │ │ │ ├── GetCurrentConditionsParameter.swift │ │ │ │ │ │ │ ├── GetCurrentFocusParameter.swift │ │ │ │ │ │ │ ├── GetCurrentSongParameter.swift │ │ │ │ │ │ │ ├── GetDateFromParameter.swift │ │ │ │ │ │ │ ├── GetDictionaryFromParameter.swift │ │ │ │ │ │ │ ├── GetEmailFromParameter.swift │ │ │ │ │ │ │ ├── GetFileLinkParameter.swift │ │ │ │ │ │ │ ├── GetFileOfTypeParameter.swift │ │ │ │ │ │ │ ├── GetFileParameter.swift │ │ │ │ │ │ │ ├── GetFolderContentsParameter.swift │ │ │ │ │ │ │ ├── GetForecastParameter.swift │ │ │ │ │ │ │ ├── GetFramesParameter.swift │ │ │ │ │ │ │ ├── GetHeadersParameter.swift │ │ │ │ │ │ │ ├── GetIPParameter.swift │ │ │ │ │ │ │ ├── GetImagesFromParameter.swift │ │ │ │ │ │ │ ├── GetItemFromListParameter.swift │ │ │ │ │ │ │ ├── GetLastBurstParameter.swift │ │ │ │ │ │ │ ├── GetLastImportParameter.swift │ │ │ │ │ │ │ ├── GetLastLivePhotoParameter.swift │ │ │ │ │ │ │ ├── GetLastPhotoParameter.swift │ │ │ │ │ │ │ ├── GetLastScreenshotParameter.swift │ │ │ │ │ │ │ ├── GetLastVideoParameter.swift │ │ │ │ │ │ │ ├── GetLocationParameter.swift │ │ │ │ │ │ │ ├── GetMatchGroupParameter.swift │ │ │ │ │ │ │ ├── GetNameParameter.swift │ │ │ │ │ │ │ ├── GetNumbersFromParameter.swift │ │ │ │ │ │ │ ├── GetPageRSSParameter.swift │ │ │ │ │ │ │ ├── GetParentDirectoryParameter.swift │ │ │ │ │ │ │ ├── GetPhonesFromParameter.swift │ │ │ │ │ │ │ ├── GetPlaylistParameter.swift │ │ │ │ │ │ │ ├── GetPodcastEpisodesParameter.swift │ │ │ │ │ │ │ ├── GetPodcastsParameter.swift │ │ │ │ │ │ │ ├── GetRSSItemsParameter.swift │ │ │ │ │ │ │ ├── GetScreenContextParameter.swift │ │ │ │ │ │ │ ├── GetSelectedFilesParameter.swift │ │ │ │ │ │ │ ├── GetShortcutsParameter.swift │ │ │ │ │ │ │ ├── GetTextFromPDFParameter.swift │ │ │ │ │ │ │ ├── GetTextFromParameter.swift │ │ │ │ │ │ │ ├── GetTimeBetweenParameter.swift │ │ │ │ │ │ │ ├── GetTypeParameter.swift │ │ │ │ │ │ │ ├── GetURLParameter.swift │ │ │ │ │ │ │ ├── GetURLSFromInputParameter.swift │ │ │ │ │ │ │ ├── GetUpcomingRemindersParameter.swift │ │ │ │ │ │ │ ├── GetallalarmsParameter.swift │ │ │ │ │ │ │ ├── HandoffPlaybackParameter.swift │ │ │ │ │ │ │ ├── HashParameter.swift │ │ │ │ │ │ │ ├── HideAllAppsParameter.swift │ │ │ │ │ │ │ ├── HideAppParameter.swift │ │ │ │ │ │ │ ├── HtmlFromRichTextParameter.swift │ │ │ │ │ │ │ ├── ImageDetailParameter.swift │ │ │ │ │ │ │ ├── ImageFromPDFParameter.swift │ │ │ │ │ │ │ ├── ImportAudioFilesParameter.swift │ │ │ │ │ │ │ ├── JavascriptForAutomationParameter.swift │ │ │ │ │ │ │ ├── KeysFromParameter.swift │ │ │ │ │ │ │ ├── LabelFileParameter.swift │ │ │ │ │ │ │ ├── ListParameter.swift │ │ │ │ │ │ │ ├── LocationDetailParameter.swift │ │ │ │ │ │ │ ├── LogWorkoutParameter.swift │ │ │ │ │ │ │ ├── LowPowerModeParameter.swift │ │ │ │ │ │ │ ├── MakeArchiveParameter.swift │ │ │ │ │ │ │ ├── MakeDiskImageParameter.swift │ │ │ │ │ │ │ ├── MakeGIFParameter.swift │ │ │ │ │ │ │ ├── MarkdownFromRichParameter.swift │ │ │ │ │ │ │ ├── MarkupParameter.swift │ │ │ │ │ │ │ ├── MaskImageParameter.swift │ │ │ │ │ │ │ ├── MatchTextParameter.swift │ │ │ │ │ │ │ ├── MathParameter.swift │ │ │ │ │ │ │ ├── MountDiskImageParameter.swift │ │ │ │ │ │ │ ├── MoveFileParameter.swift │ │ │ │ │ │ │ ├── MoveWindowParameter.swift │ │ │ │ │ │ │ ├── MovenotestofolderParameter.swift │ │ │ │ │ │ │ ├── MusicDetailParameter.swift │ │ │ │ │ │ │ ├── NoteDetailParameter.swift │ │ │ │ │ │ │ ├── NothingParameter.swift │ │ │ │ │ │ │ ├── NumberParameter.swift │ │ │ │ │ │ │ ├── OpenAppParameter.swift │ │ │ │ │ │ │ ├── OpenInParameter.swift │ │ │ │ │ │ │ ├── OpenShortcutParameter.swift │ │ │ │ │ │ │ ├── OpenURLParameter.swift │ │ │ │ │ │ │ ├── OutputParameter.swift │ │ │ │ │ │ │ ├── OverlayImageParameter.swift │ │ │ │ │ │ │ ├── OverlayTextParameter.swift │ │ │ │ │ │ │ ├── PageDetailParameter.swift │ │ │ │ │ │ │ ├── PlayMusicParameter.swift │ │ │ │ │ │ │ ├── PlayParameter.swift │ │ │ │ │ │ │ ├── PlayPodcastParameter.swift │ │ │ │ │ │ │ ├── PlaySoundParameter.swift │ │ │ │ │ │ │ ├── PodcastDetailParameter.swift │ │ │ │ │ │ │ ├── PodcastEpisodeDetailParameter.swift │ │ │ │ │ │ │ ├── PrependFileParameter.swift │ │ │ │ │ │ │ ├── PrintDocumentParameter.swift │ │ │ │ │ │ │ ├── ProductDetailParameter.swift │ │ │ │ │ │ │ ├── QuicklookParameter.swift │ │ │ │ │ │ │ ├── QuitAllAppsParameter.swift │ │ │ │ │ │ │ ├── QuitAppParameter.swift │ │ │ │ │ │ │ ├── RandomNumberParameter.swift │ │ │ │ │ │ │ ├── RecordAudioParameter.swift │ │ │ │ │ │ │ ├── ReminderDetailParameter.swift │ │ │ │ │ │ │ ├── RemoveEventsParameter.swift │ │ │ │ │ │ │ ├── RemoveFromAlbumParameter.swift │ │ │ │ │ │ │ ├── RemoveRemindersParameter.swift │ │ │ │ │ │ │ ├── RenameFileParameter.swift │ │ │ │ │ │ │ ├── ReplaceTextParameter.swift │ │ │ │ │ │ │ ├── ResizeImageParameter.swift │ │ │ │ │ │ │ ├── ResizeWindowParameter.swift │ │ │ │ │ │ │ ├── RevealFileParameter.swift │ │ │ │ │ │ │ ├── RichTextFromHTMLParameter.swift │ │ │ │ │ │ │ ├── RichTextFromMarkdownParameter.swift │ │ │ │ │ │ │ ├── RotateImageParameter.swift │ │ │ │ │ │ │ ├── RoundParameter.swift │ │ │ │ │ │ │ ├── RunAppleScriptParameter.swift │ │ │ │ │ │ │ ├── RunJavascriptOnWebpageParameter.swift │ │ │ │ │ │ │ ├── RunSSHParameter.swift │ │ │ │ │ │ │ ├── RunShellScriptParameter.swift │ │ │ │ │ │ │ ├── RunShortcutParameter.swift │ │ │ │ │ │ │ ├── SampleDetailParameter.swift │ │ │ │ │ │ │ ├── SaveFileDropboxParameter.swift │ │ │ │ │ │ │ ├── SaveFileParameter.swift │ │ │ │ │ │ │ ├── SaveToCameraRollParameter.swift │ │ │ │ │ │ │ ├── ScanQRParameter.swift │ │ │ │ │ │ │ ├── SearchAppStoreParameter.swift │ │ │ │ │ │ │ ├── SearchItunesParameter.swift │ │ │ │ │ │ │ ├── SearchPodcastsParameter.swift │ │ │ │ │ │ │ ├── SearchWebParameter.swift │ │ │ │ │ │ │ ├── SeekParameter.swift │ │ │ │ │ │ │ ├── SelectContactParameter.swift │ │ │ │ │ │ │ ├── SelectFileParameter.swift │ │ │ │ │ │ │ ├── SelectPhoneParameter.swift │ │ │ │ │ │ │ ├── SelectPhotoParameter.swift │ │ │ │ │ │ │ ├── SelectSongParameter.swift │ │ │ │ │ │ │ ├── SelectedEmailParameter.swift │ │ │ │ │ │ │ ├── SendMessageParameter.swift │ │ │ │ │ │ │ ├── SendNotificationParameter.swift │ │ │ │ │ │ │ ├── SetAirplaneModeParameter.swift │ │ │ │ │ │ │ ├── SetAppearanceParameter.swift │ │ │ │ │ │ │ ├── SetBluetoothParameter.swift │ │ │ │ │ │ │ ├── SetBrightnessParameter.swift │ │ │ │ │ │ │ ├── SetCellularParameter.swift │ │ │ │ │ │ │ ├── SetClipboardParameter.swift │ │ │ │ │ │ │ ├── SetDNDParameter.swift │ │ │ │ │ │ │ ├── SetFlashlightParameter.swift │ │ │ │ │ │ │ ├── SetMediaDestinationParameter.swift │ │ │ │ │ │ │ ├── SetNameParameter.swift │ │ │ │ │ │ │ ├── SetOrientationLockParameter.swift │ │ │ │ │ │ │ ├── SetValueParameter.swift │ │ │ │ │ │ │ ├── SetVoiceDataParameter.swift │ │ │ │ │ │ │ ├── SetVolumeParameter.swift │ │ │ │ │ │ │ ├── SetWiFiParameter.swift │ │ │ │ │ │ │ ├── ShareEXTParameter.swift │ │ │ │ │ │ │ ├── ShareParameter.swift │ │ │ │ │ │ │ ├── ShazamDetailParameter.swift │ │ │ │ │ │ │ ├── ShazamItParameter.swift │ │ │ │ │ │ │ ├── ShortcutDetailParameter.swift │ │ │ │ │ │ │ ├── ShowDefinitionParameter.swift │ │ │ │ │ │ │ ├── ShowInCalendarParameter.swift │ │ │ │ │ │ │ ├── ShowInStoreParameter.swift │ │ │ │ │ │ │ ├── ShowNoteParameter.swift │ │ │ │ │ │ │ ├── ShowReminderListParameter.swift │ │ │ │ │ │ │ ├── ShowResultParameter.swift │ │ │ │ │ │ │ ├── ShowWebPageParameter.swift │ │ │ │ │ │ │ ├── SiriDonationParameter.swift │ │ │ │ │ │ │ ├── SkipBackParameter.swift │ │ │ │ │ │ │ ├── SkipForwardParameter.swift │ │ │ │ │ │ │ ├── SpeakTextParameter.swift │ │ │ │ │ │ │ ├── SplitPDFParameter.swift │ │ │ │ │ │ │ ├── SplitScreenParameter.swift │ │ │ │ │ │ │ ├── SplitTextParameter.swift │ │ │ │ │ │ │ ├── SpokenAudioFromTextParameter.swift │ │ │ │ │ │ │ ├── StartScreensaverParameter.swift │ │ │ │ │ │ │ ├── StartWorkoutParameter.swift │ │ │ │ │ │ │ ├── StatisticParameter.swift │ │ │ │ │ │ │ ├── StockDetailParameter.swift │ │ │ │ │ │ │ ├── StockQuoteParameter.swift │ │ │ │ │ │ │ ├── SubscribeToPodcastParameter.swift │ │ │ │ │ │ │ ├── TakePhotoParameter.swift │ │ │ │ │ │ │ ├── TakeScreenshotParameter.swift │ │ │ │ │ │ │ ├── TakeVideoParameter.swift │ │ │ │ │ │ │ ├── TextParameter.swift │ │ │ │ │ │ │ ├── TimerParameter.swift │ │ │ │ │ │ │ ├── ToggleAirplaneModeParameter.swift │ │ │ │ │ │ │ ├── ToggleAppearanceParameter.swift │ │ │ │ │ │ │ ├── ToggleFlashlightParameter.swift │ │ │ │ │ │ │ ├── ToggleLowPowerModeParameter.swift │ │ │ │ │ │ │ ├── ToggleOrientationLockParameter.swift │ │ │ │ │ │ │ ├── TranslateTextParameter.swift │ │ │ │ │ │ │ ├── TrimVideoParameter.swift │ │ │ │ │ │ │ ├── UploadPhotosParameter.swift │ │ │ │ │ │ │ ├── UrlComponentParameter.swift │ │ │ │ │ │ │ ├── UrlContentsParameter.swift │ │ │ │ │ │ │ ├── UrlParameter.swift │ │ │ │ │ │ │ ├── UserActivityParameter.swift │ │ │ │ │ │ │ ├── ValueForParameter.swift │ │ │ │ │ │ │ ├── ValuesFromParameter.swift │ │ │ │ │ │ │ ├── VibrateParameter.swift │ │ │ │ │ │ │ ├── VideoFromGifParameter.swift │ │ │ │ │ │ │ ├── WaitParameter.swift │ │ │ │ │ │ │ ├── WaitToReturnParameter.swift │ │ │ │ │ │ │ ├── WatchMeDoParameter.swift │ │ │ │ │ │ │ ├── WifiDetailsParameter.swift │ │ │ │ │ │ │ └── XCallbackURLParameter.swift │ │ │ │ │ │ ├── Enums │ │ │ │ │ │ │ ├── Jelly_InputMode.swift │ │ │ │ │ │ │ ├── Jelly_RatMode.swift │ │ │ │ │ │ │ ├── Jelly_Shell.swift │ │ │ │ │ │ │ ├── Jelly_WFAdjustOperation.swift │ │ │ │ │ │ │ ├── Jelly_WFArchiveFormat.swift │ │ │ │ │ │ │ ├── Jelly_WFAttribute.swift │ │ │ │ │ │ │ ├── Jelly_WFCameraCaptureDevice.swift │ │ │ │ │ │ │ ├── Jelly_WFCameraCaptureQuality.swift │ │ │ │ │ │ │ ├── Jelly_WFCaseType.swift │ │ │ │ │ │ │ ├── Jelly_WFCellularDetail.swift │ │ │ │ │ │ │ ├── Jelly_WFConfiguration.swift │ │ │ │ │ │ │ ├── Jelly_WFContentItemPropertyName.swift │ │ │ │ │ │ │ ├── Jelly_WFCountType.swift │ │ │ │ │ │ │ ├── Jelly_WFCountry.swift │ │ │ │ │ │ │ ├── Jelly_WFDateFormatStyle.swift │ │ │ │ │ │ │ ├── Jelly_WFDateSpecifier.swift │ │ │ │ │ │ │ ├── Jelly_WFDeviceDetail.swift │ │ │ │ │ │ │ ├── Jelly_WFDictateTextStopListening.swift │ │ │ │ │ │ │ ├── Jelly_WFEntity.swift │ │ │ │ │ │ │ ├── Jelly_WFFaceTimeType.swift │ │ │ │ │ │ │ ├── Jelly_WFFileSizeFormat.swift │ │ │ │ │ │ │ ├── Jelly_WFGetGroupType.swift │ │ │ │ │ │ │ ├── Jelly_WFGetTextFromPDFTextType.swift │ │ │ │ │ │ │ ├── Jelly_WFHTTPBodyType.swift │ │ │ │ │ │ │ ├── Jelly_WFHTTPMethod.swift │ │ │ │ │ │ │ ├── Jelly_WFHashType.swift │ │ │ │ │ │ │ ├── Jelly_WFIPAddressSourceOption.swift │ │ │ │ │ │ │ ├── Jelly_WFIPAddressTypeOption.swift │ │ │ │ │ │ │ ├── Jelly_WFImageCombineMode.swift │ │ │ │ │ │ │ ├── Jelly_WFImageCropPosition.swift │ │ │ │ │ │ │ ├── Jelly_WFImageFlipDirection.swift │ │ │ │ │ │ │ ├── Jelly_WFImageFormat.swift │ │ │ │ │ │ │ ├── Jelly_WFImagePosition.swift │ │ │ │ │ │ │ ├── Jelly_WFImportAudioFilesEncoder.swift │ │ │ │ │ │ │ ├── Jelly_WFInputType.swift │ │ │ │ │ │ │ ├── Jelly_WFItemSpecifier.swift │ │ │ │ │ │ │ ├── Jelly_WFMakeImageFromPDFPageColorspace.swift │ │ │ │ │ │ │ ├── Jelly_WFMaskType.swift │ │ │ │ │ │ │ ├── Jelly_WFMediaAudioFormat.swift │ │ │ │ │ │ │ ├── Jelly_WFMediaSize.swift │ │ │ │ │ │ │ ├── Jelly_WFMediaSpeed.swift │ │ │ │ │ │ │ ├── Jelly_WFMediaType.swift │ │ │ │ │ │ │ ├── Jelly_WFNoOutputSurfaceBehavior.swift │ │ │ │ │ │ │ ├── Jelly_WFNumberFormatDecimalPlaces.swift │ │ │ │ │ │ │ ├── Jelly_WFPDFIncludedPages.swift │ │ │ │ │ │ │ ├── Jelly_WFPhotoPickerTypes.swift │ │ │ │ │ │ │ ├── Jelly_WFPickingMode.swift │ │ │ │ │ │ │ ├── Jelly_WFPlayMusicActionRepeat.swift │ │ │ │ │ │ │ ├── Jelly_WFPlayMusicActionShuffle.swift │ │ │ │ │ │ │ ├── Jelly_WFPlayPauseBehavior.swift │ │ │ │ │ │ │ ├── Jelly_WFPosition.swift │ │ │ │ │ │ │ ├── Jelly_WFQRErrorCorrectionLevel.swift │ │ │ │ │ │ │ ├── Jelly_WFRecordingCompression.swift │ │ │ │ │ │ │ ├── Jelly_WFRecordingEnd.swift │ │ │ │ │ │ │ ├── Jelly_WFRecordingStart.swift │ │ │ │ │ │ │ ├── Jelly_WFRoundMode.swift │ │ │ │ │ │ │ ├── Jelly_WFRoundTo.swift │ │ │ │ │ │ │ ├── Jelly_WFSSHAuthenticationType.swift │ │ │ │ │ │ │ ├── Jelly_WFScientificMathOperation.swift │ │ │ │ │ │ │ ├── Jelly_WFSearchWebDestination.swift │ │ │ │ │ │ │ ├── Jelly_WFSeekBehavior.swift │ │ │ │ │ │ │ ├── Jelly_WFSelectedFromLanguage.swift │ │ │ │ │ │ │ ├── Jelly_WFSelectedLanguage.swift │ │ │ │ │ │ │ ├── Jelly_WFSkipBackBehavior.swift │ │ │ │ │ │ │ ├── Jelly_WFSpeakTextLanguage.swift │ │ │ │ │ │ │ ├── Jelly_WFSpeechLanguage.swift │ │ │ │ │ │ │ ├── Jelly_WFStatisticsOperation.swift │ │ │ │ │ │ │ ├── Jelly_WFTextPosition.swift │ │ │ │ │ │ │ ├── Jelly_WFTextSeparator.swift │ │ │ │ │ │ │ ├── Jelly_WFTimeFormatStyle.swift │ │ │ │ │ │ │ ├── Jelly_WFTimeUntilUnit.swift │ │ │ │ │ │ │ ├── Jelly_WFURLComponent.swift │ │ │ │ │ │ │ ├── Jelly_WFWallpaperLocation.swift │ │ │ │ │ │ │ ├── Jelly_WFWeatherForecastType.swift │ │ │ │ │ │ │ ├── Jelly_WFWhenToPlay.swift │ │ │ │ │ │ │ ├── Jelly_WFWiFiDetail.swift │ │ │ │ │ │ │ └── Jelly_WFWorkoutReadableActivityType.swift │ │ │ │ │ │ ├── Objects │ │ │ │ │ │ │ ├── ShortcutsApp.swift │ │ │ │ │ │ │ ├── ShortcutsPlacemark.swift │ │ │ │ │ │ │ ├── ShortcutsQuantity.swift │ │ │ │ │ │ │ └── ShortcutsWorkflow.swift │ │ │ │ │ │ ├── ShortcutsLookupTable.swift │ │ │ │ │ │ └── Special Enums │ │ │ │ │ │ │ ├── Jelly_WFAppRatio.swift │ │ │ │ │ │ │ ├── Jelly_WFAskActionDefaultAnswer.swift │ │ │ │ │ │ │ ├── Jelly_WFLabelColorNumber.swift │ │ │ │ │ │ │ ├── Jelly_WFMakeImageFromPDFPageImageFormat.swift │ │ │ │ │ │ │ ├── Jelly_WFMathOperation.swift │ │ │ │ │ │ │ ├── Jelly_WFSpeakTextVoice.swift │ │ │ │ │ │ │ └── Jelly_WorkoutIdentifiers.swift │ │ │ │ │ ├── Toolbox │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── AddContactGroupParameter.swift │ │ │ │ │ │ │ ├── AddContactParameter.swift │ │ │ │ │ │ │ ├── AddMusicToLibraryParameter.swift │ │ │ │ │ │ │ ├── AddPhotoAlbumParameter.swift │ │ │ │ │ │ │ ├── AddToListParameter.swift │ │ │ │ │ │ │ ├── AddTracksToPlaylistParameter.swift │ │ │ │ │ │ │ ├── AnalyseImageParameter.swift │ │ │ │ │ │ │ ├── AuthenticateParameter.swift │ │ │ │ │ │ │ ├── AverageColourParameter.swift │ │ │ │ │ │ │ ├── BatteryStatusParameter.swift │ │ │ │ │ │ │ ├── BlurImagesParameter.swift │ │ │ │ │ │ │ ├── BookmarkFileParameter.swift │ │ │ │ │ │ │ ├── BugExampleParameter.swift │ │ │ │ │ │ │ ├── BuildURLParameter.swift │ │ │ │ │ │ │ ├── CalculateWithSoulverParameter.swift │ │ │ │ │ │ │ ├── CheckForUpdatesParameter.swift │ │ │ │ │ │ │ ├── CheckGVParameter.swift │ │ │ │ │ │ │ ├── CheckIfInstalledParameter.swift │ │ │ │ │ │ │ ├── ConsoleParameter.swift │ │ │ │ │ │ │ ├── ConvertCurrencyParameter.swift │ │ │ │ │ │ │ ├── CreateCalendarParameter.swift │ │ │ │ │ │ │ ├── CreateEventParameter.swift │ │ │ │ │ │ │ ├── CreateFoldersParameter.swift │ │ │ │ │ │ │ ├── CreateIconParameter.swift │ │ │ │ │ │ │ ├── CreateInterestHeatMapsParameter.swift │ │ │ │ │ │ │ ├── CreateMatteParameter.swift │ │ │ │ │ │ │ ├── CreateMenuParameter.swift │ │ │ │ │ │ │ ├── CreateQueryItemParameter.swift │ │ │ │ │ │ │ ├── CreateReminderParameter.swift │ │ │ │ │ │ │ ├── CreateRemindersListParameter.swift │ │ │ │ │ │ │ ├── CreateTextImageParameter.swift │ │ │ │ │ │ │ ├── CropParameter.swift │ │ │ │ │ │ │ ├── DeleteFilesInBookmarkedFolderParameter.swift │ │ │ │ │ │ │ ├── DeleteFromDictionaryParameter.swift │ │ │ │ │ │ │ ├── DetectFacesIAIHParameter.swift │ │ │ │ │ │ │ ├── DetectFacesParameter.swift │ │ │ │ │ │ │ ├── DetectQRImageParameter.swift │ │ │ │ │ │ │ ├── DeviceLanguageParameter.swift │ │ │ │ │ │ │ ├── DeviceMotionParameter.swift │ │ │ │ │ │ │ ├── DeviceStorageParameter.swift │ │ │ │ │ │ │ ├── DownloadUnsplashPhotosParameter.swift │ │ │ │ │ │ │ ├── EditBookmarkedFileParameter.swift │ │ │ │ │ │ │ ├── EditEventParameter.swift │ │ │ │ │ │ │ ├── EditFolderBookmarksParameter.swift │ │ │ │ │ │ │ ├── EditPendingNotificationsParameter.swift │ │ │ │ │ │ │ ├── EditReminderParameter.swift │ │ │ │ │ │ │ ├── EditTextParameter.swift │ │ │ │ │ │ │ ├── FilterImageParameter.swift │ │ │ │ │ │ │ ├── FilterImagesIAIHParameter.swift │ │ │ │ │ │ │ ├── FilterListParameter.swift │ │ │ │ │ │ │ ├── FindAlbumsParameter.swift │ │ │ │ │ │ │ ├── FindArtistsParameter.swift │ │ │ │ │ │ │ ├── FindBooksParameter.swift │ │ │ │ │ │ │ ├── FindGamesRawgParameter.swift │ │ │ │ │ │ │ ├── FindMoviesParameter.swift │ │ │ │ │ │ │ ├── FindPexelPhotosParameter.swift │ │ │ │ │ │ │ ├── FindPlaylistsParameter.swift │ │ │ │ │ │ │ ├── FindSongsParameter.swift │ │ │ │ │ │ │ ├── FindTvShowsParameter.swift │ │ │ │ │ │ │ ├── FindVideosParameter.swift │ │ │ │ │ │ │ ├── FormatCurrencyParameter.swift │ │ │ │ │ │ │ ├── FormatDateExtendedParameter.swift │ │ │ │ │ │ │ ├── FormatNumberAsTextParameter.swift │ │ │ │ │ │ │ ├── GenerateThumbnailsParameter.swift │ │ │ │ │ │ │ ├── GenerateUUIDParameter.swift │ │ │ │ │ │ │ ├── GetActivityParameter.swift │ │ │ │ │ │ │ ├── GetAudioOutputsParameter.swift │ │ │ │ │ │ │ ├── GetAudioParameter.swift │ │ │ │ │ │ │ ├── GetCalendarsParameter.swift │ │ │ │ │ │ │ ├── GetColoursParameter.swift │ │ │ │ │ │ │ ├── GetDetailFromTextParameter.swift │ │ │ │ │ │ │ ├── GetDetailsOfLocationParameter.swift │ │ │ │ │ │ │ ├── GetDeviceMotionIAIHParameter.swift │ │ │ │ │ │ │ ├── GetEventIDParameter.swift │ │ │ │ │ │ │ ├── GetFileURLParameter.swift │ │ │ │ │ │ │ ├── GetFilesFromBookmarkedFolderParameter.swift │ │ │ │ │ │ │ ├── GetFromDictionaryParameter.swift │ │ │ │ │ │ │ ├── GetLinksToSongParameter.swift │ │ │ │ │ │ │ ├── GetLocationFromCoordsParameter.swift │ │ │ │ │ │ │ ├── GetLocationFromTextParameter.swift │ │ │ │ │ │ │ ├── GetLocationFromW3WParameter.swift │ │ │ │ │ │ │ ├── GetMenuItemParameter.swift │ │ │ │ │ │ │ ├── GetMovieDetailsParameter.swift │ │ │ │ │ │ │ ├── GetPhotoAlbumsParameter.swift │ │ │ │ │ │ │ ├── GetPlaylistsParameter.swift │ │ │ │ │ │ │ ├── GetRecentSongsParameter.swift │ │ │ │ │ │ │ ├── GetRelativeDateParameter.swift │ │ │ │ │ │ │ ├── GetReminderIDParameter.swift │ │ │ │ │ │ │ ├── GetReminderListsParameter.swift │ │ │ │ │ │ │ ├── GetSymbolNameParameter.swift │ │ │ │ │ │ │ ├── GetTBPToolsParameter.swift │ │ │ │ │ │ │ ├── GetTextFromImageParameter.swift │ │ │ │ │ │ │ ├── GetTextFromImagesIAIHParameter.swift │ │ │ │ │ │ │ ├── GetTvShowDetailsParameter.swift │ │ │ │ │ │ │ ├── GetUTIParameter.swift │ │ │ │ │ │ │ ├── GetW3WParameter.swift │ │ │ │ │ │ │ ├── GetWorkoutsParameter.swift │ │ │ │ │ │ │ ├── GlobalVariablesParameter.swift │ │ │ │ │ │ │ ├── HapticFeedbackParameter.swift │ │ │ │ │ │ │ ├── HomeParameter.swift │ │ │ │ │ │ │ ├── InternetConnectionParameter.swift │ │ │ │ │ │ │ ├── IsAudioPlayingParameter.swift │ │ │ │ │ │ │ ├── IsDarkModeOnParameter.swift │ │ │ │ │ │ │ ├── IsPremiumUnlockedParameter.swift │ │ │ │ │ │ │ ├── IsSilentModeOnParameter.swift │ │ │ │ │ │ │ ├── IsTheSunUpParameter.swift │ │ │ │ │ │ │ ├── IsVPNConnectedParameter.swift │ │ │ │ │ │ │ ├── ListContentsOfBookmarkedFolderParameter.swift │ │ │ │ │ │ │ ├── ParseWebsiteSourceParameter.swift │ │ │ │ │ │ │ ├── PerformCalculationParameter.swift │ │ │ │ │ │ │ ├── PickColourParameter.swift │ │ │ │ │ │ │ ├── PingServerParameter.swift │ │ │ │ │ │ │ ├── PluraliseParameter.swift │ │ │ │ │ │ │ ├── PrettyPrintParameter.swift │ │ │ │ │ │ │ ├── QuickLookExtendedParameter.swift │ │ │ │ │ │ │ ├── QuickMatchTextParameter.swift │ │ │ │ │ │ │ ├── QuickMenuLegacyParameter.swift │ │ │ │ │ │ │ ├── QuickMenuParameter.swift │ │ │ │ │ │ │ ├── RateSongsParameter.swift │ │ │ │ │ │ │ ├── RecogniseObjectsInImageParameter.swift │ │ │ │ │ │ │ ├── RecogniseSpeechParameter.swift │ │ │ │ │ │ │ ├── RemoveDuplicatesParameter.swift │ │ │ │ │ │ │ ├── RemoveEmojiParameter.swift │ │ │ │ │ │ │ ├── RemoveItemsFromListParameter.swift │ │ │ │ │ │ │ ├── ResizeImageExtendedParameter.swift │ │ │ │ │ │ │ ├── ReverseListParameter.swift │ │ │ │ │ │ │ ├── SalientCropParameter.swift │ │ │ │ │ │ │ ├── SaveFilesToBookmarkedFoldersParameter.swift │ │ │ │ │ │ │ ├── ScaleImagesIAIHParameter.swift │ │ │ │ │ │ │ ├── ScanDocumentParameter.swift │ │ │ │ │ │ │ ├── ScanNFCParameter.swift │ │ │ │ │ │ │ ├── SearchForEmojiParameter.swift │ │ │ │ │ │ │ ├── SeekPlaybackParameter.swift │ │ │ │ │ │ │ ├── SetNestedDictionaryValueParameter.swift │ │ │ │ │ │ │ ├── ShuffleListParameter.swift │ │ │ │ │ │ │ ├── SmartCropParameter.swift │ │ │ │ │ │ │ ├── SmartMenuParameter.swift │ │ │ │ │ │ │ ├── SortDictionariesParameter.swift │ │ │ │ │ │ │ ├── SortListParameter.swift │ │ │ │ │ │ │ ├── TagFilesParameter.swift │ │ │ │ │ │ │ ├── Toolbox_CreatePlaylistParameter.swift │ │ │ │ │ │ │ ├── Toolbox_DeviceDetailsParameter.swift │ │ │ │ │ │ │ ├── Toolbox_PlayMusicParameter.swift │ │ │ │ │ │ │ ├── Toolbox_SplitPDFParameter.swift │ │ │ │ │ │ │ ├── TrimTextParameter.swift │ │ │ │ │ │ │ └── ViewMapParameter.swift │ │ │ │ │ │ ├── Enums │ │ │ │ │ │ │ ├── Jelly_ActivityQueryType.swift │ │ │ │ │ │ │ ├── Jelly_AddAddressType.swift │ │ │ │ │ │ │ ├── Jelly_AddToPlaylistType.swift │ │ │ │ │ │ │ ├── Jelly_AddressType.swift │ │ │ │ │ │ │ ├── Jelly_AlbumSearchMode.swift │ │ │ │ │ │ │ ├── Jelly_AlbumSortOrder.swift │ │ │ │ │ │ │ ├── Jelly_AlbumSubType.swift │ │ │ │ │ │ │ ├── Jelly_AlbumType.swift │ │ │ │ │ │ │ ├── Jelly_Apps.swift │ │ │ │ │ │ │ ├── Jelly_BMSearchMode.swift │ │ │ │ │ │ │ ├── Jelly_BMSearchType.swift │ │ │ │ │ │ │ ├── Jelly_BMSortBy.swift │ │ │ │ │ │ │ ├── Jelly_BackgroundColours.swift │ │ │ │ │ │ │ ├── Jelly_BatteryStates.swift │ │ │ │ │ │ │ ├── Jelly_BlurFilterType.swift │ │ │ │ │ │ │ ├── Jelly_BlurTypes.swift │ │ │ │ │ │ │ ├── Jelly_BookAvailability.swift │ │ │ │ │ │ │ ├── Jelly_BookType.swift │ │ │ │ │ │ │ ├── Jelly_BookmarkFolderMode.swift │ │ │ │ │ │ │ ├── Jelly_BookmarkMode.swift │ │ │ │ │ │ │ ├── Jelly_CalendarType.swift │ │ │ │ │ │ │ ├── Jelly_CheckAppMode.swift │ │ │ │ │ │ │ ├── Jelly_ColourMode.swift │ │ │ │ │ │ │ ├── Jelly_ColourTypes.swift │ │ │ │ │ │ │ ├── Jelly_CombineText.swift │ │ │ │ │ │ │ ├── Jelly_ConsoleMode.swift │ │ │ │ │ │ │ ├── Jelly_ConsoleRetrievalType.swift │ │ │ │ │ │ │ ├── Jelly_ContactAddressType.swift │ │ │ │ │ │ │ ├── Jelly_ContactGroupMode.swift │ │ │ │ │ │ │ ├── Jelly_ContactParameterType.swift │ │ │ │ │ │ │ ├── Jelly_CountType.swift │ │ │ │ │ │ │ ├── Jelly_CropType.swift │ │ │ │ │ │ │ ├── Jelly_Currencies.swift │ │ │ │ │ │ │ ├── Jelly_DateContext.swift │ │ │ │ │ │ │ ├── Jelly_DateFormat.swift │ │ │ │ │ │ │ ├── Jelly_DateOrTime.swift │ │ │ │ │ │ │ ├── Jelly_DateUnitsStyle.swift │ │ │ │ │ │ │ ├── Jelly_DefaultColours.swift │ │ │ │ │ │ │ ├── Jelly_DefaultIcons.swift │ │ │ │ │ │ │ ├── Jelly_DeleteDictType.swift │ │ │ │ │ │ │ ├── Jelly_DeviceInfoTypes.swift │ │ │ │ │ │ │ ├── Jelly_DictionaryOrCSV.swift │ │ │ │ │ │ │ ├── Jelly_EditEventType.swift │ │ │ │ │ │ │ ├── Jelly_EditFolderBookmarkMode.swift │ │ │ │ │ │ │ ├── Jelly_EditRecurringEvent.swift │ │ │ │ │ │ │ ├── Jelly_EditReminderType.swift │ │ │ │ │ │ │ ├── Jelly_EditTextMode.swift │ │ │ │ │ │ │ ├── Jelly_EditTextSource.swift │ │ │ │ │ │ │ ├── Jelly_EmailType.swift │ │ │ │ │ │ │ ├── Jelly_EmojiCategories.swift │ │ │ │ │ │ │ ├── Jelly_EmptyLineType.swift │ │ │ │ │ │ │ ├── Jelly_EventAlert.swift │ │ │ │ │ │ │ ├── Jelly_EventAvailability.swift │ │ │ │ │ │ │ ├── Jelly_FileThumbs.swift │ │ │ │ │ │ │ ├── Jelly_FileType.swift │ │ │ │ │ │ │ ├── Jelly_FileURLType.swift │ │ │ │ │ │ │ ├── Jelly_FilterListMode.swift │ │ │ │ │ │ │ ├── Jelly_FilterType.swift │ │ │ │ │ │ │ ├── Jelly_GamePlayers.swift │ │ │ │ │ │ │ ├── Jelly_GameSubtitleType.swift │ │ │ │ │ │ │ ├── Jelly_GamesGenres.swift │ │ │ │ │ │ │ ├── Jelly_GamesPlatforms.swift │ │ │ │ │ │ │ ├── Jelly_GetAllVariablesMode.swift │ │ │ │ │ │ │ ├── Jelly_GetCalendarType.swift │ │ │ │ │ │ │ ├── Jelly_GetFolderContentsMode.swift │ │ │ │ │ │ │ ├── Jelly_GetFromDictType.swift │ │ │ │ │ │ │ ├── Jelly_GlobalVariableMode.swift │ │ │ │ │ │ │ ├── Jelly_HTMLSource.swift │ │ │ │ │ │ │ ├── Jelly_HapticFeedbackType.swift │ │ │ │ │ │ │ ├── Jelly_HeatmapType.swift │ │ │ │ │ │ │ ├── Jelly_IconCreationMode.swift │ │ │ │ │ │ │ ├── Jelly_IconMaskType.swift │ │ │ │ │ │ │ ├── Jelly_IconType.swift │ │ │ │ │ │ │ ├── Jelly_JoinMode.swift │ │ │ │ │ │ │ ├── Jelly_KeepDiscard.swift │ │ │ │ │ │ │ ├── Jelly_LanguageTypes.swift │ │ │ │ │ │ │ ├── Jelly_LineBreakMode.swift │ │ │ │ │ │ │ ├── Jelly_ListContentsFilter.swift │ │ │ │ │ │ │ ├── Jelly_ListPlacement.swift │ │ │ │ │ │ │ ├── Jelly_LocationAlertType.swift │ │ │ │ │ │ │ ├── Jelly_MapSize.swift │ │ │ │ │ │ │ ├── Jelly_MatchOutput.swift │ │ │ │ │ │ │ ├── Jelly_MatteColours.swift │ │ │ │ │ │ │ ├── Jelly_MbGb.swift │ │ │ │ │ │ │ ├── Jelly_MinPhotoSize.swift │ │ │ │ │ │ │ ├── Jelly_MinVidSize.swift │ │ │ │ │ │ │ ├── Jelly_MotionType.swift │ │ │ │ │ │ │ ├── Jelly_MusicType.swift │ │ │ │ │ │ │ ├── Jelly_NFCMode.swift │ │ │ │ │ │ │ ├── Jelly_NotificationActionSet.swift │ │ │ │ │ │ │ ├── Jelly_NotificationLocationType.swift │ │ │ │ │ │ │ ├── Jelly_NotificationSoundType.swift │ │ │ │ │ │ │ ├── Jelly_NotificationTriggerType.swift │ │ │ │ │ │ │ ├── Jelly_OrderBooksBy.swift │ │ │ │ │ │ │ ├── Jelly_OrderGamesBy.swift │ │ │ │ │ │ │ ├── Jelly_OutputType.swift │ │ │ │ │ │ │ ├── Jelly_PendingNotificationMode.swift │ │ │ │ │ │ │ ├── Jelly_PexelPhotoColours.swift │ │ │ │ │ │ │ ├── Jelly_PhoneType.swift │ │ │ │ │ │ │ ├── Jelly_PhotoAlbumType.swift │ │ │ │ │ │ │ ├── Jelly_PhotoColours.swift │ │ │ │ │ │ │ ├── Jelly_PhotoFormats.swift │ │ │ │ │ │ │ ├── Jelly_PhotoOrientations.swift │ │ │ │ │ │ │ ├── Jelly_PhotoScaleType.swift │ │ │ │ │ │ │ ├── Jelly_PhotoSize.swift │ │ │ │ │ │ │ ├── Jelly_PhotoSort.swift │ │ │ │ │ │ │ ├── Jelly_PingServerOutput.swift │ │ │ │ │ │ │ ├── Jelly_PlaybackPosition.swift │ │ │ │ │ │ │ ├── Jelly_PlaylistAccessTypes.swift │ │ │ │ │ │ │ ├── Jelly_PluraliseCase.swift │ │ │ │ │ │ │ ├── Jelly_PluraliseOutput.swift │ │ │ │ │ │ │ ├── Jelly_PreviewAlignment.swift │ │ │ │ │ │ │ ├── Jelly_PreviewButtonStyle.swift │ │ │ │ │ │ │ ├── Jelly_PreviewImageMask.swift │ │ │ │ │ │ │ ├── Jelly_PreviewImageSize.swift │ │ │ │ │ │ │ ├── Jelly_PreviewThemes.swift │ │ │ │ │ │ │ ├── Jelly_QueryItemType.swift │ │ │ │ │ │ │ ├── Jelly_RawgPerspective.swift │ │ │ │ │ │ │ ├── Jelly_RawgQueryMatching.swift │ │ │ │ │ │ │ ├── Jelly_RawgSortOrder.swift │ │ │ │ │ │ │ ├── Jelly_RecentMusicType.swift │ │ │ │ │ │ │ ├── Jelly_RegexMatchType.swift │ │ │ │ │ │ │ ├── Jelly_ReminderDueType.swift │ │ │ │ │ │ │ ├── Jelly_ReminderListType.swift │ │ │ │ │ │ │ ├── Jelly_ReminderPriority.swift │ │ │ │ │ │ │ ├── Jelly_ReminderStartType.swift │ │ │ │ │ │ │ ├── Jelly_RemoveFromListMode.swift │ │ │ │ │ │ │ ├── Jelly_RepeatMode.swift │ │ │ │ │ │ │ ├── Jelly_RepeatType.swift │ │ │ │ │ │ │ ├── Jelly_ResizeMode.swift │ │ │ │ │ │ │ ├── Jelly_SaliencyType.swift │ │ │ │ │ │ │ ├── Jelly_Sampling.swift │ │ │ │ │ │ │ ├── Jelly_ScaleMode.swift │ │ │ │ │ │ │ ├── Jelly_ScanType.swift │ │ │ │ │ │ │ ├── Jelly_SetDictionaryMode.swift │ │ │ │ │ │ │ ├── Jelly_SongRating.swift │ │ │ │ │ │ │ ├── Jelly_SongRatingMode.swift │ │ │ │ │ │ │ ├── Jelly_SongSearchMode.swift │ │ │ │ │ │ │ ├── Jelly_SortAlbums.swift │ │ │ │ │ │ │ ├── Jelly_SortOrder.swift │ │ │ │ │ │ │ ├── Jelly_StorageTypes.swift │ │ │ │ │ │ │ ├── Jelly_SwitchMatchType.swift │ │ │ │ │ │ │ ├── Jelly_SymbolNameType.swift │ │ │ │ │ │ │ ├── Jelly_SystemColours.swift │ │ │ │ │ │ │ ├── Jelly_SystemSounds.swift │ │ │ │ │ │ │ ├── Jelly_TMDBGenres.swift │ │ │ │ │ │ │ ├── Jelly_TMDBSort.swift │ │ │ │ │ │ │ ├── Jelly_TagMode.swift │ │ │ │ │ │ │ ├── Jelly_TempUnits.swift │ │ │ │ │ │ │ ├── Jelly_TextAlignment.swift │ │ │ │ │ │ │ ├── Jelly_TextDetailType.swift │ │ │ │ │ │ │ ├── Jelly_TextInputType.swift │ │ │ │ │ │ │ ├── Jelly_TextType.swift │ │ │ │ │ │ │ ├── Jelly_ThumbnailType.swift │ │ │ │ │ │ │ ├── Jelly_ThumbsOutputType.swift │ │ │ │ │ │ │ ├── Jelly_TimeFormat.swift │ │ │ │ │ │ │ ├── Jelly_TmdbTvSort.swift │ │ │ │ │ │ │ ├── Jelly_TrimFrom.swift │ │ │ │ │ │ │ ├── Jelly_UptimeOutputTypes.swift │ │ │ │ │ │ │ ├── Jelly_VariableFilters.swift │ │ │ │ │ │ │ ├── Jelly_VideoOrientation.swift │ │ │ │ │ │ │ ├── Jelly_W3WLocationType.swift │ │ │ │ │ │ │ ├── Jelly_WorkoutDistanceOrder.swift │ │ │ │ │ │ │ ├── Jelly_WorkoutDurationOrder.swift │ │ │ │ │ │ │ ├── Jelly_WorkoutEnergyOrder.swift │ │ │ │ │ │ │ ├── Jelly_WorkoutSort.swift │ │ │ │ │ │ │ ├── Jelly_WorkoutTimeOrder.swift │ │ │ │ │ │ │ ├── Jelly_WorkoutUnits.swift │ │ │ │ │ │ │ └── Jelly_ZoneFormat.swift │ │ │ │ │ │ ├── Objects │ │ │ │ │ │ │ ├── Jelly_Movie.swift │ │ │ │ │ │ │ ├── Jelly_Playlist.swift │ │ │ │ │ │ │ └── Jelly_TvShow.swift │ │ │ │ │ │ └── ToolboxLookupTable.swift │ │ │ │ │ ├── WallpaperApp │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ └── GetWallpaperParameter.swift │ │ │ │ │ │ └── WallpaperAppLookupTable.swift │ │ │ │ │ ├── WidgetPack │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── ColorParameter.swift │ │ │ │ │ │ │ ├── FontParameter.swift │ │ │ │ │ │ │ ├── FormattedDateParameter.swift │ │ │ │ │ │ │ ├── GradientParameter.swift │ │ │ │ │ │ │ ├── HorizontalStackParameter.swift │ │ │ │ │ │ │ ├── ImageFileParameter.swift │ │ │ │ │ │ │ ├── ImageParameter.swift │ │ │ │ │ │ │ ├── LinkParameter.swift │ │ │ │ │ │ │ ├── ModifierAccentColorParameter.swift │ │ │ │ │ │ │ ├── ModifierBackgroundParameter.swift │ │ │ │ │ │ │ ├── ModifierBorderParameter.swift │ │ │ │ │ │ │ ├── ModifierBrightnessParameter.swift │ │ │ │ │ │ │ ├── ModifierClipShapeParameter.swift │ │ │ │ │ │ │ ├── ModifierClippedParameter.swift │ │ │ │ │ │ │ ├── ModifierColorInvertParameter.swift │ │ │ │ │ │ │ ├── ModifierContrastParameter.swift │ │ │ │ │ │ │ ├── ModifierFixedFrameParameter.swift │ │ │ │ │ │ │ ├── ModifierFixedSizeParameter.swift │ │ │ │ │ │ │ ├── ModifierFontParameter.swift │ │ │ │ │ │ │ ├── ModifierForegroundColorParameter.swift │ │ │ │ │ │ │ ├── ModifierGrayscaleParameter.swift │ │ │ │ │ │ │ ├── ModifierMaskParameter.swift │ │ │ │ │ │ │ ├── ModifierMinimumScaleFactorParameter.swift │ │ │ │ │ │ │ ├── ModifierOpacityParameter.swift │ │ │ │ │ │ │ ├── ModifierOverlayParameter.swift │ │ │ │ │ │ │ ├── ModifierPaddingParameter.swift │ │ │ │ │ │ │ ├── ModifierRelativeFrameParameter.swift │ │ │ │ │ │ │ ├── ModifierRotationParameter.swift │ │ │ │ │ │ │ ├── ModifierSaturationParameter.swift │ │ │ │ │ │ │ ├── ModifierScaledToFillParameter.swift │ │ │ │ │ │ │ ├── ModifierScaledToFitParameter.swift │ │ │ │ │ │ │ ├── ModifierShadowParameter.swift │ │ │ │ │ │ │ ├── PreviewWidgetParameter.swift │ │ │ │ │ │ │ ├── ProgressViewParameter.swift │ │ │ │ │ │ │ ├── SFSymbolParameter.swift │ │ │ │ │ │ │ ├── SerializeViewParameter.swift │ │ │ │ │ │ │ ├── SetPropertyParameter.swift │ │ │ │ │ │ │ ├── ShapeParameter.swift │ │ │ │ │ │ │ ├── SpacerParameter.swift │ │ │ │ │ │ │ ├── StackParameter.swift │ │ │ │ │ │ │ ├── UpdateWidgetParameter.swift │ │ │ │ │ │ │ ├── VerbatimTextParameter.swift │ │ │ │ │ │ │ ├── VerticalStackParameter.swift │ │ │ │ │ │ │ ├── WidgetConfigurationParameter.swift │ │ │ │ │ │ │ ├── WidgetPack_TextParameter.swift │ │ │ │ │ │ │ └── ZStackParameter.swift │ │ │ │ │ │ ├── Enums │ │ │ │ │ │ │ ├── Jelly_ColorKind.swift │ │ │ │ │ │ │ ├── Jelly_FontKind.swift │ │ │ │ │ │ │ ├── Jelly_GradientKind.swift │ │ │ │ │ │ │ ├── Jelly_ImageKind.swift │ │ │ │ │ │ │ ├── Jelly_ProgressViewKind.swift │ │ │ │ │ │ │ ├── Jelly_Property.swift │ │ │ │ │ │ │ ├── Jelly_ShapeKind.swift │ │ │ │ │ │ │ ├── Jelly_StackKind.swift │ │ │ │ │ │ │ ├── Jelly_TextKind.swift │ │ │ │ │ │ │ └── Jelly_WidgetFamily.swift │ │ │ │ │ │ ├── Objects │ │ │ │ │ │ │ ├── Jelly_Alignment.swift │ │ │ │ │ │ │ ├── Jelly_Font.swift │ │ │ │ │ │ │ ├── Jelly_FontDesign.swift │ │ │ │ │ │ │ ├── Jelly_FontWeight.swift │ │ │ │ │ │ │ ├── Jelly_HorizontalAlignment.swift │ │ │ │ │ │ │ ├── Jelly_RelativeFrameRelativeTo.swift │ │ │ │ │ │ │ ├── Jelly_SFSymbol.swift │ │ │ │ │ │ │ ├── Jelly_TextDateStyle.swift │ │ │ │ │ │ │ ├── Jelly_UnitPoint.swift │ │ │ │ │ │ │ ├── Jelly_VerticalAlignment.swift │ │ │ │ │ │ │ └── Jelly_View.swift │ │ │ │ │ │ └── WidgetPackLookupTable.swift │ │ │ │ │ ├── aShell │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── aShell_ExecuteCommandParameter.swift │ │ │ │ │ │ │ ├── aShell_GetFileParameter.swift │ │ │ │ │ │ │ └── aShell_PutFileParameter.swift │ │ │ │ │ │ ├── Enums │ │ │ │ │ │ │ └── aShell_Jelly_Enum.swift │ │ │ │ │ │ └── aShellLookupTable.swift │ │ │ │ │ └── aShellMini │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ ├── PutFileParameter.swift │ │ │ │ │ │ ├── aShellMini_ExecuteCommandParameter.swift │ │ │ │ │ │ └── aShellMini_GetFileParameter.swift │ │ │ │ │ │ ├── Enums │ │ │ │ │ │ └── aShellMini_Jelly_Enum.swift │ │ │ │ │ │ └── aShellMiniLookupTable.swift │ │ │ │ └── CompilerLookupTables.swift │ │ │ ├── Scope+Find.swift │ │ │ ├── Scope.swift │ │ │ └── Shortcuts Equivelent Models │ │ │ │ ├── ShortcutColor.swift │ │ │ │ ├── ShortcutGlyph.swift │ │ │ │ ├── ShortcutsHostVersion.swift │ │ │ │ ├── ShortcutsType.swift │ │ │ │ ├── Variable.swift │ │ │ │ ├── WFAction.swift │ │ │ │ └── WFShortcut.swift │ │ ├── Language │ │ │ ├── Aggrandizement.swift │ │ │ ├── Extensions │ │ │ │ ├── DateFormat.swift │ │ │ │ └── QuantumValue.swift │ │ │ └── Primitives │ │ │ │ ├── JellyArray.swift │ │ │ │ ├── JellyBoolean.swift │ │ │ │ ├── JellyDate.swift │ │ │ │ ├── JellyDictionary.swift │ │ │ │ ├── JellyDouble.swift │ │ │ │ ├── JellyInteger.swift │ │ │ │ ├── JellyIntegerBoolean.swift │ │ │ │ ├── JellyString.swift │ │ │ │ ├── JellyVariableReference.swift │ │ │ │ └── Protocols │ │ │ │ ├── JellyAny.swift │ │ │ │ ├── JellyEnum.swift │ │ │ │ ├── JellyObject.swift │ │ │ │ └── JellyPrimitiveType.swift │ │ └── Parser │ │ │ └── Parser.swift │ ├── Data Generation │ │ └── DocumentationGenerator.swift │ ├── Event Handler │ │ ├── EventReporter.swift │ │ └── JellycoreError.swift │ ├── Extensions │ │ ├── CodableIgnored.swift │ │ ├── Encodable+asDictionary.swift │ │ └── String+Range.swift │ └── TreeSitter │ │ ├── JellycoreTreeSitterError.swift │ │ ├── TreeSitterNode.swift │ │ └── TreeSitterTree.swift └── jelly │ └── jelly.swift ├── Tests └── Open-JellycoreTests │ ├── CoercionTests.swift │ ├── LanguageFeaturesTests.swift │ ├── LibraryTests.swift │ ├── TestHelpers.swift │ └── VariableTests.swift └── resources ├── Hello.jelly └── build.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/action-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/.github/ISSUE_TEMPLATE/action-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request-or-feature-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/.github/ISSUE_TEMPLATE/feature-request-or-feature-change.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/Open-Jellycore-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/Open-Jellycore-Package.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/Open-Jellycore.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/Open-Jellycore.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/Open-JellycoreTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/Open-JellycoreTests.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/jelly.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/jelly.xcscheme -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Action/Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Action/Action.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Action/ActionPreset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Action/ActionPreset.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Action/Parameters/ParameterProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Action/Parameters/ParameterProtocol.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Compiler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Compiler.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/BlockNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/BlockNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/CommentNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/CommentNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/ConditionalNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/ConditionalNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/FlagNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/FlagNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/FunctionCallNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/FunctionCallNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/FunctionDefinitionNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/FunctionDefinitionNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/ImportNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/ImportNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/MacroDefinitionNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/MacroDefinitionNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/MagicVariableNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/MagicVariableNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/MenuNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/MenuNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/PrimitiveNodes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/PrimitiveNodes.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/RepeatEachNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/RepeatEachNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/RepeatNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/RepeatNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/ReturnStatementNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/ReturnStatementNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/VariableAssignmentNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Classes/VariableAssignmentNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Enums/CoreNodeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Enums/CoreNodeType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Protocol/CoreNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Protocol/CoreNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Core Nodes/Protocol/CorePrimitiveNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Core Nodes/Protocol/CorePrimitiveNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/ClampNumberParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/ClampNumberParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/CreateURLParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/CreateURLParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/DateToUnixTimeParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/DateToUnixTimeParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/EditURLParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/EditURLParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/GetEmojisParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/GetEmojisParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/GetFileIconParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/GetFileIconParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/GetFilePathParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/GetFilePathParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/GetRunningAppsParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/GetRunningAppsParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/GetTitleOfURLParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/GetTitleOfURLParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/GetUserDetailsParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/GetUserDetailsParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/IsBluetoothOnParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/IsBluetoothOnParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/IsDarkModeParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/IsDarkModeParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/IsLowPowerModeParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/IsLowPowerModeParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/RandomBooleanParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/RandomBooleanParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/RandomColorParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/RandomColorParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/RandomDateTimeParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/RandomDateTimeParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/RandomEmojiParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/RandomEmojiParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/RandomTextParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/RandomTextParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/RemoveFromListParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/RemoveFromListParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/SampleColorParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/SampleColorParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/SendFeedbackParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/SendFeedbackParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/SpellOutNumberParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/SpellOutNumberParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/TransformTextParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/TransformTextParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/TrimWhitespaceParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/TrimWhitespaceParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/TruncateListParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/TruncateListParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/UnixTimeToDateParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/UnixTimeToDateParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/WriteTextParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Actions/WriteTextParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/ActionsLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/ActionsLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_BatteryStateType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_BatteryStateType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_EditURLAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_EditURLAction.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_FilePathType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_FilePathType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_FilterCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_FilterCondition.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_SetFileDateType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_SetFileDateType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_SortType_.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_SortType_.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_Transformation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_Transformation.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_UserDetailsType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Enums/Jelly_UserDetailsType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Objects/Jelly_ActionsLocale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Objects/Jelly_ActionsLocale.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Objects/Jelly_Currency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Actions/Objects/Jelly_Currency.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Apollo/Actions/OpenHomeParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Apollo/Actions/OpenHomeParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Apollo/Actions/OpenMultiredditParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Apollo/Actions/OpenMultiredditParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Apollo/Actions/OpenSubredditParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Apollo/Actions/OpenSubredditParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Apollo/Actions/OpenUserParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Apollo/Actions/OpenUserParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Apollo/ApolloLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Apollo/ApolloLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/CARROT/Actions/CurrentForecastParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/CARROT/Actions/CurrentForecastParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/CARROT/CARROTLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/CARROT/CARROTLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/CARROT/Enums/Jelly_DataType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/CARROT/Enums/Jelly_DataType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/CARROT/Enums/Jelly_ForecastType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/CARROT/Enums/Jelly_ForecastType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/CARROT/Enums/Jelly_TimeThreshold.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/CARROT/Enums/Jelly_TimeThreshold.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Actions/DeleteValueParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Actions/DeleteValueParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Actions/GetChildCountParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Actions/GetChildCountParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Actions/GetKeysParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Actions/GetKeysParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Actions/GetTypeOfValueParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Actions/GetTypeOfValueParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Actions/GetValueParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Actions/GetValueParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Actions/ViewValueParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Actions/ViewValueParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/DataJarLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/DataJarLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Enums/Jelly_DeleteStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Enums/Jelly_DeleteStrategy.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Enums/Jelly_GetKeysSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Enums/Jelly_GetKeysSource.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Enums/Jelly_OverwriteStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/DataJar/Enums/Jelly_OverwriteStrategy.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/CaptureParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/CaptureParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/DictateDraftParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/DictateDraftParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/FileDraftParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/FileDraftParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/GetDraftParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/GetDraftParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/OpenDraftParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/OpenDraftParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/QueryDraftsParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/QueryDraftsParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/RunActionParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/RunActionParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/SetDraftParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/SetDraftParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/ShowCaptureParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/ShowCaptureParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/ViewDraftParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Actions/ViewDraftParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/DraftsLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/DraftsLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Enums/Jelly_DraftQuerySort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Enums/Jelly_DraftQuerySort.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Enums/Jelly_DraftUpdateFolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Enums/Jelly_DraftUpdateFolder.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Enums/Jelly_DraftWriteType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Enums/Jelly_DraftWriteType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Enums/Jelly_ShowHideStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Enums/Jelly_ShowHideStatus.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Objects/Jelly_Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Objects/Jelly_Action.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Objects/Jelly_ActionGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Objects/Jelly_ActionGroup.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Objects/Jelly_Draft.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Objects/Jelly_Draft.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Objects/Jelly_DraftsLocal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Objects/Jelly_DraftsLocal.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Objects/Jelly_GrammarType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Objects/Jelly_GrammarType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Objects/Jelly_Workspace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Drafts/Objects/Jelly_Workspace.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/FocusedWork/Enums/Jelly_StageType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/FocusedWork/Enums/Jelly_StageType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/FocusedWork/FocusedWorkLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/FocusedWork/FocusedWorkLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/EncodeHexParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/EncodeHexParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/FileInfoParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/FileInfoParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/HashDataParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/HashDataParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/ParseCSVParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/ParseCSVParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/ParseDateParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/ParseDateParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/QueryJSONParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/QueryJSONParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/RandomDataParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/RandomDataParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/SignJWTParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/SignJWTParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/TrimFileParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Actions/TrimFileParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_CSVDelimiter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_CSVDelimiter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_EncodeDecode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_EncodeDecode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_JSONQueryType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_JSONQueryType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_JWTAlgorithm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_JWTAlgorithm.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_MapType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_MapType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_PassTransitType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_PassTransitType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_PassType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_PassType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_PlistFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Enums/Jelly_PlistFormat.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/GizmoPackLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/GizmoPackLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Objects/Jelly_DateLocale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/GizmoPack/Objects/Jelly_DateLocale.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Jellycuts/JellycutsLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Jellycuts/JellycutsLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/LinkBin/Actions/AddLinkParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/LinkBin/Actions/AddLinkParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/LinkBin/LinkBinLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/LinkBin/LinkBinLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/LinkBin/Objects/Jelly_ShortcutLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/LinkBin/Objects/Jelly_ShortcutLabel.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Nudget/Actions/AddExpenseParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Nudget/Actions/AddExpenseParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Nudget/Actions/ViewInsightsParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Nudget/Actions/ViewInsightsParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Nudget/Enums/Jelly_InsightType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Nudget/Enums/Jelly_InsightType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Nudget/Enums/Jelly_WidgetSegment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Nudget/Enums/Jelly_WidgetSegment.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Nudget/NudgetLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Nudget/NudgetLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Nudget/Objects/Jelly_Insight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Nudget/Objects/Jelly_Insight.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Nudget/Objects/Jelly_NudgetTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Nudget/Objects/Jelly_NudgetTag.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/OtterRSS/Actions/ExportOPMLParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/OtterRSS/Actions/ExportOPMLParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/OtterRSS/Actions/ListFeedsParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/OtterRSS/Actions/ListFeedsParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/OtterRSS/Actions/ListFoldersParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/OtterRSS/Actions/ListFoldersParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/OtterRSS/OtterRSSLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/OtterRSS/OtterRSSLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Progress/Actions/GetTrackerParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Progress/Actions/GetTrackerParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Progress/Objects/Jelly_Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Progress/Objects/Jelly_Tracker.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Progress/ProgressLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Progress/ProgressLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Recurrence/Objects/Jelly_Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Recurrence/Objects/Jelly_Item.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Recurrence/RecurrenceLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Recurrence/RecurrenceLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Rubyist/Actions/RunCodeParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Rubyist/Actions/RunCodeParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Rubyist/Actions/RunFileParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Rubyist/Actions/RunFileParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Rubyist/RubyistLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Rubyist/RubyistLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Scriptable/ScriptableLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Scriptable/ScriptableLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/AddUpNextParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/AddUpNextParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/AdjustDateParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/AdjustDateParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/AirdropParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/AirdropParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/AlertParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/AlertParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/AppDetailParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/AppDetailParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/AppendFileParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/AppendFileParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/AppendNoteParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/AppendNoteParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/CalculateParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/CalculateParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/CallParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/CallParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ChangeCaseParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ChangeCaseParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ChooseParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ChooseParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/CountParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/CountParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/CreateNoteParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/CreateNoteParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/CreatePDFParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/CreatePDFParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/CreateQRParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/CreateQRParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/CropImageParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/CropImageParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/DateParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/DateParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/DecodeParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/DecodeParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/DecodeURLParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/DecodeURLParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/DeleteFileParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/DeleteFileParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/DictionaryParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/DictionaryParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/EjectDiskParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/EjectDiskParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/EmojiNameParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/EmojiNameParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/EncodeParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/EncodeParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/EncodeURLParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/EncodeURLParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ExitParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ExitParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ExpandURLParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ExpandURLParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/FacetimeParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/FacetimeParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/FileDetailParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/FileDetailParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/FileParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/FileParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/FlipImageParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/FlipImageParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/FormatDateParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/FormatDateParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/FormatSizeParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/FormatSizeParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetArticleParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetArticleParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetClassParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetClassParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetFileParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetFileParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetFramesParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetFramesParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetHeadersParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetHeadersParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetIPParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetIPParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetNameParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetNameParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetPageRSSParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetPageRSSParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetTypeParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetTypeParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetURLParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/GetURLParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/HashParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/HashParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/HideAppParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/HideAppParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/KeysFromParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/KeysFromParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/LabelFileParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/LabelFileParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ListParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ListParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/LogWorkoutParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/LogWorkoutParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/MakeGIFParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/MakeGIFParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/MarkupParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/MarkupParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/MaskImageParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/MaskImageParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/MatchTextParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/MatchTextParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/MathParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/MathParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/MoveFileParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/MoveFileParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/MoveWindowParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/MoveWindowParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/NoteDetailParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/NoteDetailParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/NothingParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/NothingParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/NumberParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/NumberParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/OpenAppParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/OpenAppParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/OpenInParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/OpenInParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/OpenURLParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/OpenURLParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/OutputParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/OutputParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/PageDetailParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/PageDetailParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/PlayMusicParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/PlayMusicParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/PlayParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/PlayParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/PlaySoundParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/PlaySoundParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/QuicklookParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/QuicklookParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/QuitAppParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/QuitAppParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/RenameFileParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/RenameFileParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/RevealFileParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/RevealFileParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/RoundParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/RoundParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/RunSSHParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/RunSSHParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SaveFileParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SaveFileParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ScanQRParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ScanQRParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SearchWebParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SearchWebParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SeekParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SeekParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SelectFileParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SelectFileParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SelectSongParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SelectSongParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SetDNDParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SetDNDParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SetNameParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SetNameParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SetValueParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SetValueParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SetVolumeParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SetVolumeParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SetWiFiParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SetWiFiParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ShareEXTParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ShareEXTParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ShareParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ShareParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ShazamItParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ShazamItParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ShowNoteParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ShowNoteParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ShowResultParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ShowResultParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SkipBackParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SkipBackParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SpeakTextParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SpeakTextParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SplitPDFParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SplitPDFParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SplitTextParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/SplitTextParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/StatisticParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/StatisticParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/StockQuoteParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/StockQuoteParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/TakePhotoParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/TakePhotoParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/TakeVideoParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/TakeVideoParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/TextParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/TextParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/TimerParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/TimerParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/TrimVideoParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/TrimVideoParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/UrlParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/UrlParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ValueForParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ValueForParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ValuesFromParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/ValuesFromParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/VibrateParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/VibrateParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/WaitParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/WaitParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/WatchMeDoParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Actions/WatchMeDoParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_InputMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_InputMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_RatMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_RatMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_Shell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_Shell.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFArchiveFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFArchiveFormat.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFAttribute.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFCaseType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFCaseType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFConfiguration.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFCountType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFCountType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFCountry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFCountry.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFDateSpecifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFDateSpecifier.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFDeviceDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFDeviceDetail.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFEntity.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFFaceTimeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFFaceTimeType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFGetGroupType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFGetGroupType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFHTTPBodyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFHTTPBodyType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFHTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFHTTPMethod.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFHashType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFHashType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFImageFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFImageFormat.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFImagePosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFImagePosition.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFInputType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFInputType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFItemSpecifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFItemSpecifier.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFMaskType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFMaskType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFMediaSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFMediaSize.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFMediaSpeed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFMediaSpeed.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFMediaType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFMediaType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFPickingMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFPickingMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFPosition.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFRecordingEnd.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFRecordingEnd.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFRoundMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFRoundMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFRoundTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFRoundTo.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFSeekBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFSeekBehavior.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFTextPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFTextPosition.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFTextSeparator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFTextSeparator.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFTimeUntilUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFTimeUntilUnit.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFURLComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFURLComponent.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFWhenToPlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFWhenToPlay.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFWiFiDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Enums/Jelly_WFWiFiDetail.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Objects/ShortcutsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Objects/ShortcutsApp.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Objects/ShortcutsPlacemark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Objects/ShortcutsPlacemark.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Objects/ShortcutsQuantity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Objects/ShortcutsQuantity.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Objects/ShortcutsWorkflow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/Objects/ShortcutsWorkflow.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/ShortcutsLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Shortcuts/ShortcutsLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/AddContactParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/AddContactParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/AddToListParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/AddToListParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/AnalyseImageParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/AnalyseImageParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/AuthenticateParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/AuthenticateParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/BlurImagesParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/BlurImagesParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/BookmarkFileParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/BookmarkFileParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/BugExampleParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/BugExampleParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/BuildURLParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/BuildURLParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/CheckGVParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/CheckGVParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/ConsoleParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/ConsoleParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/CreateEventParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/CreateEventParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/CreateIconParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/CreateIconParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/CreateMatteParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/CreateMatteParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/CreateMenuParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/CreateMenuParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/CropParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/CropParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/DetectFacesParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/DetectFacesParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/DeviceMotionParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/DeviceMotionParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/EditEventParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/EditEventParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/EditReminderParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/EditReminderParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/EditTextParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/EditTextParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FilterImageParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FilterImageParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FilterListParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FilterListParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FindAlbumsParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FindAlbumsParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FindArtistsParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FindArtistsParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FindBooksParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FindBooksParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FindMoviesParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FindMoviesParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FindSongsParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FindSongsParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FindTvShowsParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FindTvShowsParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FindVideosParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/FindVideosParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GenerateUUIDParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GenerateUUIDParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetActivityParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetActivityParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetAudioParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetAudioParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetCalendarsParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetCalendarsParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetColoursParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetColoursParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetEventIDParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetEventIDParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetFileURLParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetFileURLParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetMenuItemParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetMenuItemParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetPlaylistsParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetPlaylistsParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetTBPToolsParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetTBPToolsParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetUTIParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetUTIParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetW3WParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetW3WParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetWorkoutsParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/GetWorkoutsParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/HomeParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/HomeParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/IsDarkModeOnParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/IsDarkModeOnParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/IsTheSunUpParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/IsTheSunUpParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/PickColourParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/PickColourParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/PingServerParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/PingServerParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/PluraliseParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/PluraliseParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/PrettyPrintParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/PrettyPrintParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/QuickMenuParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/QuickMenuParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/RateSongsParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/RateSongsParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/RemoveEmojiParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/RemoveEmojiParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/ReverseListParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/ReverseListParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/SalientCropParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/SalientCropParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/ScanDocumentParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/ScanDocumentParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/ScanNFCParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/ScanNFCParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/SeekPlaybackParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/SeekPlaybackParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/ShuffleListParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/ShuffleListParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/SmartCropParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/SmartCropParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/SmartMenuParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/SmartMenuParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/SortListParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/SortListParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/TagFilesParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/TagFilesParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/TrimTextParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/TrimTextParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/ViewMapParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Actions/ViewMapParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ActivityQueryType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ActivityQueryType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_AddAddressType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_AddAddressType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_AddToPlaylistType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_AddToPlaylistType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_AddressType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_AddressType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_AlbumSearchMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_AlbumSearchMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_AlbumSortOrder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_AlbumSortOrder.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_AlbumSubType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_AlbumSubType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_AlbumType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_AlbumType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_Apps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_Apps.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BMSearchMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BMSearchMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BMSearchType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BMSearchType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BMSortBy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BMSortBy.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BackgroundColours.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BackgroundColours.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BatteryStates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BatteryStates.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BlurFilterType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BlurFilterType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BlurTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BlurTypes.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BookAvailability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BookAvailability.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BookType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BookType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BookmarkMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_BookmarkMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_CalendarType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_CalendarType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_CheckAppMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_CheckAppMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ColourMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ColourMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ColourTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ColourTypes.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_CombineText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_CombineText.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ConsoleMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ConsoleMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ContactGroupMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ContactGroupMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_CountType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_CountType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_CropType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_CropType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_Currencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_Currencies.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DateContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DateContext.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DateFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DateFormat.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DateOrTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DateOrTime.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DateUnitsStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DateUnitsStyle.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DefaultColours.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DefaultColours.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DefaultIcons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DefaultIcons.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DeleteDictType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DeleteDictType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DeviceInfoTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DeviceInfoTypes.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DictionaryOrCSV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_DictionaryOrCSV.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EditEventType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EditEventType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EditReminderType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EditReminderType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EditTextMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EditTextMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EditTextSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EditTextSource.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EmailType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EmailType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EmojiCategories.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EmojiCategories.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EmptyLineType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EmptyLineType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EventAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EventAlert.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EventAvailability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_EventAvailability.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_FileThumbs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_FileThumbs.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_FileType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_FileType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_FileURLType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_FileURLType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_FilterListMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_FilterListMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_FilterType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_FilterType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_GamePlayers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_GamePlayers.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_GameSubtitleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_GameSubtitleType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_GamesGenres.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_GamesGenres.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_GamesPlatforms.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_GamesPlatforms.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_GetCalendarType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_GetCalendarType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_GetFromDictType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_GetFromDictType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_HTMLSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_HTMLSource.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_HeatmapType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_HeatmapType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_IconCreationMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_IconCreationMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_IconMaskType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_IconMaskType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_IconType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_IconType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_JoinMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_JoinMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_KeepDiscard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_KeepDiscard.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_LanguageTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_LanguageTypes.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_LineBreakMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_LineBreakMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ListPlacement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ListPlacement.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_LocationAlertType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_LocationAlertType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MapSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MapSize.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MatchOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MatchOutput.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MatteColours.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MatteColours.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MbGb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MbGb.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MinPhotoSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MinPhotoSize.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MinVidSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MinVidSize.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MotionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MotionType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MusicType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_MusicType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_NFCMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_NFCMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_OrderBooksBy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_OrderBooksBy.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_OrderGamesBy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_OrderGamesBy.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_OutputType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_OutputType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PexelPhotoColours.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PexelPhotoColours.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhoneType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhoneType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhotoAlbumType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhotoAlbumType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhotoColours.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhotoColours.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhotoFormats.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhotoFormats.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhotoOrientations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhotoOrientations.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhotoScaleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhotoScaleType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhotoSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhotoSize.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhotoSort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PhotoSort.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PingServerOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PingServerOutput.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PlaybackPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PlaybackPosition.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PluraliseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PluraliseCase.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PluraliseOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PluraliseOutput.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PreviewAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PreviewAlignment.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PreviewImageMask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PreviewImageMask.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PreviewImageSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PreviewImageSize.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PreviewThemes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_PreviewThemes.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_QueryItemType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_QueryItemType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_RawgPerspective.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_RawgPerspective.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_RawgQueryMatching.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_RawgQueryMatching.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_RawgSortOrder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_RawgSortOrder.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_RecentMusicType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_RecentMusicType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_RegexMatchType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_RegexMatchType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ReminderDueType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ReminderDueType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ReminderListType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ReminderListType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ReminderPriority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ReminderPriority.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ReminderStartType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ReminderStartType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_RepeatMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_RepeatMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_RepeatType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_RepeatType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ResizeMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ResizeMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SaliencyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SaliencyType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_Sampling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_Sampling.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ScaleMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ScaleMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ScanType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ScanType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SetDictionaryMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SetDictionaryMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SongRating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SongRating.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SongRatingMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SongRatingMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SongSearchMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SongSearchMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SortAlbums.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SortAlbums.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SortOrder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SortOrder.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_StorageTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_StorageTypes.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SwitchMatchType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SwitchMatchType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SymbolNameType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SymbolNameType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SystemColours.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SystemColours.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SystemSounds.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_SystemSounds.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TMDBGenres.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TMDBGenres.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TMDBSort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TMDBSort.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TagMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TagMode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TempUnits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TempUnits.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TextAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TextAlignment.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TextDetailType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TextDetailType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TextInputType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TextInputType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TextType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TextType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ThumbnailType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ThumbnailType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ThumbsOutputType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ThumbsOutputType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TimeFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TimeFormat.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TmdbTvSort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TmdbTvSort.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TrimFrom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_TrimFrom.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_UptimeOutputTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_UptimeOutputTypes.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_VariableFilters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_VariableFilters.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_VideoOrientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_VideoOrientation.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_W3WLocationType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_W3WLocationType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_WorkoutSort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_WorkoutSort.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_WorkoutTimeOrder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_WorkoutTimeOrder.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_WorkoutUnits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_WorkoutUnits.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ZoneFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Enums/Jelly_ZoneFormat.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Objects/Jelly_Movie.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Objects/Jelly_Movie.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Objects/Jelly_Playlist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Objects/Jelly_Playlist.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Objects/Jelly_TvShow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/Objects/Jelly_TvShow.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/ToolboxLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/Toolbox/ToolboxLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WallpaperApp/WallpaperAppLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WallpaperApp/WallpaperAppLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/ColorParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/ColorParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/FontParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/FontParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/GradientParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/GradientParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/ImageFileParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/ImageFileParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/ImageParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/ImageParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/LinkParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/LinkParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/SFSymbolParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/SFSymbolParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/ShapeParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/ShapeParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/SpacerParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/SpacerParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/StackParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/StackParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/ZStackParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Actions/ZStackParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_ColorKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_ColorKind.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_FontKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_FontKind.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_GradientKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_GradientKind.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_ImageKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_ImageKind.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_Property.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_ShapeKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_ShapeKind.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_StackKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_StackKind.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_TextKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_TextKind.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_WidgetFamily.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Enums/Jelly_WidgetFamily.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Objects/Jelly_Alignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Objects/Jelly_Alignment.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Objects/Jelly_Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Objects/Jelly_Font.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Objects/Jelly_FontDesign.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Objects/Jelly_FontDesign.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Objects/Jelly_FontWeight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Objects/Jelly_FontWeight.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Objects/Jelly_SFSymbol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Objects/Jelly_SFSymbol.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Objects/Jelly_UnitPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Objects/Jelly_UnitPoint.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Objects/Jelly_View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/Objects/Jelly_View.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/WidgetPackLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/WidgetPack/WidgetPackLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/aShell/Enums/aShell_Jelly_Enum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/aShell/Enums/aShell_Jelly_Enum.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/aShell/aShellLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/aShell/aShellLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/aShellMini/Actions/PutFileParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/aShellMini/Actions/PutFileParameter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/aShellMini/aShellMiniLookupTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/Apps/aShellMini/aShellMiniLookupTable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Lookup Tables/CompilerLookupTables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Lookup Tables/CompilerLookupTables.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Scope+Find.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Scope+Find.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Scope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Scope.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Shortcuts Equivelent Models/ShortcutColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Shortcuts Equivelent Models/ShortcutColor.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Shortcuts Equivelent Models/ShortcutGlyph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Shortcuts Equivelent Models/ShortcutGlyph.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Shortcuts Equivelent Models/ShortcutsHostVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Shortcuts Equivelent Models/ShortcutsHostVersion.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Shortcuts Equivelent Models/ShortcutsType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Shortcuts Equivelent Models/ShortcutsType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Shortcuts Equivelent Models/Variable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Shortcuts Equivelent Models/Variable.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Shortcuts Equivelent Models/WFAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Shortcuts Equivelent Models/WFAction.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Compiler/Shortcuts Equivelent Models/WFShortcut.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Compiler/Shortcuts Equivelent Models/WFShortcut.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Aggrandizement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Aggrandizement.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Extensions/DateFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Extensions/DateFormat.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Extensions/QuantumValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Extensions/QuantumValue.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Primitives/JellyArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Primitives/JellyArray.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Primitives/JellyBoolean.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Primitives/JellyBoolean.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Primitives/JellyDate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Primitives/JellyDate.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Primitives/JellyDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Primitives/JellyDictionary.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Primitives/JellyDouble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Primitives/JellyDouble.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Primitives/JellyInteger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Primitives/JellyInteger.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Primitives/JellyIntegerBoolean.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Primitives/JellyIntegerBoolean.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Primitives/JellyString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Primitives/JellyString.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Primitives/JellyVariableReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Primitives/JellyVariableReference.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Primitives/Protocols/JellyAny.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Primitives/Protocols/JellyAny.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Primitives/Protocols/JellyEnum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Primitives/Protocols/JellyEnum.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Primitives/Protocols/JellyObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Primitives/Protocols/JellyObject.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Language/Primitives/Protocols/JellyPrimitiveType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Language/Primitives/Protocols/JellyPrimitiveType.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Core/Parser/Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Core/Parser/Parser.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Data Generation/DocumentationGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Data Generation/DocumentationGenerator.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Event Handler/EventReporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Event Handler/EventReporter.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Event Handler/JellycoreError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Event Handler/JellycoreError.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Extensions/CodableIgnored.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Extensions/CodableIgnored.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Extensions/Encodable+asDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Extensions/Encodable+asDictionary.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/Extensions/String+Range.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/Extensions/String+Range.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/TreeSitter/JellycoreTreeSitterError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/TreeSitter/JellycoreTreeSitterError.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/TreeSitter/TreeSitterNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/TreeSitter/TreeSitterNode.swift -------------------------------------------------------------------------------- /Sources/Open-Jellycore/TreeSitter/TreeSitterTree.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/Open-Jellycore/TreeSitter/TreeSitterTree.swift -------------------------------------------------------------------------------- /Sources/jelly/jelly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Sources/jelly/jelly.swift -------------------------------------------------------------------------------- /Tests/Open-JellycoreTests/CoercionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Tests/Open-JellycoreTests/CoercionTests.swift -------------------------------------------------------------------------------- /Tests/Open-JellycoreTests/LanguageFeaturesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Tests/Open-JellycoreTests/LanguageFeaturesTests.swift -------------------------------------------------------------------------------- /Tests/Open-JellycoreTests/LibraryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Tests/Open-JellycoreTests/LibraryTests.swift -------------------------------------------------------------------------------- /Tests/Open-JellycoreTests/TestHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Tests/Open-JellycoreTests/TestHelpers.swift -------------------------------------------------------------------------------- /Tests/Open-JellycoreTests/VariableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/Tests/Open-JellycoreTests/VariableTests.swift -------------------------------------------------------------------------------- /resources/Hello.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/resources/Hello.jelly -------------------------------------------------------------------------------- /resources/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJelly/Open-Jellycore/HEAD/resources/build.sh --------------------------------------------------------------------------------