├── .eslintignore ├── .github ├── ISSUE_TEMPLATE │ ├── --------bug-report.md │ └── --------feature-request.md └── workflows │ ├── auto-pull-requests.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── docker-push.yml │ ├── release-pull-request.yml │ └── release.yml ├── .gitignore ├── .graphqlrc.yml ├── .husky └── commit-msg ├── .prettierignore ├── .prettierrc ├── .yarn └── releases │ └── yarn-4.6.0.cjs ├── .yarnrc.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README_developer.md ├── apps ├── api-server │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── codegen.ts │ ├── eslint.config.mjs │ ├── jest.config.cjs │ ├── nest-cli.json │ ├── package.json │ ├── schema.gql │ ├── src │ │ ├── VERSION.ts │ │ ├── __migrations__ │ │ │ ├── mysql │ │ │ │ ├── Migration20220410135635.ts │ │ │ │ ├── Migration20220427150340.ts │ │ │ │ ├── Migration20220502053137.ts │ │ │ │ ├── Migration20220504100008.ts │ │ │ │ ├── Migration20220630151845.ts │ │ │ │ ├── Migration20220727114555.ts │ │ │ │ ├── Migration20250203062311.ts │ │ │ │ └── snapshot.json │ │ │ ├── postgresql │ │ │ │ ├── Migration20211201185931.ts │ │ │ │ ├── Migration20211207145135.ts │ │ │ │ ├── Migration20220410113820.ts │ │ │ │ ├── Migration20220427150306.ts │ │ │ │ ├── Migration20220502053114.ts │ │ │ │ ├── Migration20220504100000.ts │ │ │ │ ├── Migration20220630151907.ts │ │ │ │ ├── Migration20220727114405.ts │ │ │ │ ├── Migration20250203061811.ts │ │ │ │ └── snapshot.json │ │ │ └── sqlite │ │ │ │ ├── Migration20211201185826.ts │ │ │ │ ├── Migration20211207145304.ts │ │ │ │ ├── Migration20220409152838.ts │ │ │ │ ├── Migration20220427150211.ts │ │ │ │ ├── Migration20220502053022.ts │ │ │ │ ├── Migration20220504095931.ts │ │ │ │ ├── Migration20220630151831.ts │ │ │ │ ├── Migration20220727114545.ts │ │ │ │ └── snapshot.json │ │ ├── access-control-allow-headers │ │ │ └── access-control-allow-headers.interceptor.ts │ │ ├── access-control-allow-origin │ │ │ └── access-control-allow-origin.interceptor.ts │ │ ├── api-uploader │ │ │ └── api-uploader.controller.ts │ │ ├── app.module.ts │ │ ├── auth │ │ │ ├── auth-status.decorator.ts │ │ │ ├── auth.decorator.ts │ │ │ └── auth.guard.ts │ │ ├── config │ │ │ ├── createConfigModule.ts │ │ │ ├── parseError.ts │ │ │ ├── parseErrorFromBoolean.ts │ │ │ └── parseErrorFromInteger.ts │ │ ├── connection-manager │ │ │ └── connection-manager.service.ts │ │ ├── entities-graphql │ │ │ ├── room.ts │ │ │ ├── roomAsListItem.ts │ │ │ └── roomMessage.ts │ │ ├── enums │ │ │ ├── AnswerRollCallFailureType.ts │ │ │ ├── BaasType.ts │ │ │ ├── ChangeParticipantNameFailureType.ts │ │ │ ├── CloseRollCallFailureType.ts │ │ │ ├── CreateRoomFailureType.ts │ │ │ ├── DeleteMessageFailureType.ts │ │ │ ├── DeleteRoomAsAdminFailureType.ts │ │ │ ├── DeleteRoomFailureType.ts │ │ │ ├── EditMessageFailureType.ts │ │ │ ├── EntryToServerResultType.ts │ │ │ ├── FileListType.ts │ │ │ ├── FilePermissionType.ts │ │ │ ├── FileSourceType.ts │ │ │ ├── GetRoomConnectionFailureType.ts │ │ │ ├── GetRoomFailureType.ts │ │ │ ├── GetRoomLogFailureType.ts │ │ │ ├── GetRoomMessagesFailureType.ts │ │ │ ├── GetRoomsListFailureType.ts │ │ │ ├── JoinRoomFailureType.ts │ │ │ ├── LeaveRoomFailureType.ts │ │ │ ├── MakeMessageNotSecretFailureType.ts │ │ │ ├── OperateRoomFailureType.ts │ │ │ ├── ParticipantRoleOperation.ts │ │ │ ├── ParticipantRoleType.ts │ │ │ ├── PerformRollCallFailureType.ts │ │ │ ├── PieceLogType.ts │ │ │ ├── PrereleaseType.ts │ │ │ ├── PromoteFailureType.ts │ │ │ ├── ResetRoomMessagesFailureType.ts │ │ │ ├── RoomParameterNameType.ts │ │ │ ├── UpdateBookmarkFailureType.ts │ │ │ ├── WriteRoomPrivateMessageFailureType.ts │ │ │ ├── WriteRoomPublicMessageFailureType.ts │ │ │ ├── WriteRoomSoundEffectFailureType.ts │ │ │ ├── WritingMessageStatusInputType.ts │ │ │ └── WritingMessageStatusType.ts │ │ ├── env.ts │ │ ├── firebase-id-token │ │ │ ├── firebase-id-token.service.spec.ts │ │ │ └── firebase-id-token.service.ts │ │ ├── flocon-logger │ │ │ ├── flocon-logger.service.spec.ts │ │ │ └── flocon-logger.service.ts │ │ ├── gitTags.ts │ │ ├── graphql-codegen │ │ │ ├── gql.ts │ │ │ ├── graphql.ts │ │ │ └── index.ts │ │ ├── graphql │ │ │ ├── objects │ │ │ │ ├── fileItem.ts │ │ │ │ ├── filePath.ts │ │ │ │ ├── room.ts │ │ │ │ ├── roomMessage.ts │ │ │ │ └── serverInfo.ts │ │ │ ├── registerEnumTypes.ts │ │ │ ├── resolvers │ │ │ │ ├── allResolvers.ts │ │ │ │ ├── mutations │ │ │ │ │ ├── answerRollCall │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── changeParitipantName │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── closeRollCall │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── createFileTag │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── createRoom │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── deleteFileTag │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── deleteFiles │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── deleteMessage │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── deleteRoom │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── deleteRoomAsAdmin │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── editFileTags │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── editMessage │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── entryToServer │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── joinRoom │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── leaveRoom │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── makeMessageNotSecret │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── operateRoom │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── performRollCall │ │ │ │ │ │ ├── performRollCall.test.ts │ │ │ │ │ │ ├── performRollCall.ts │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── promoteToPlayer │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── renameFiles │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── resetMessages │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── updateBookmark │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── updateWritingMessageStatus │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── writePrivateMessage │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── writePublicMessage │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ └── writeRoomSoundEffect │ │ │ │ │ │ └── resolver.ts │ │ │ │ ├── queries │ │ │ │ │ ├── getAvailableGameSystems │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── getDiceHelpMessage │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── getFiles │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── getLog │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── getMessages │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── getMyRoles │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── getRoom │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── getRoomAsListItem │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── getRoomConnections │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ ├── getRoomsList │ │ │ │ │ │ └── resolver.ts │ │ │ │ │ └── getServerInfo │ │ │ │ │ │ └── resolver.ts │ │ │ │ ├── subsciptions │ │ │ │ │ └── roomEvent │ │ │ │ │ │ ├── payload.ts │ │ │ │ │ │ └── resolver.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils │ │ │ │ │ ├── messageAnalyzer.ts │ │ │ │ │ └── utils.ts │ │ │ └── tsTypeObject.ts │ │ ├── headers │ │ │ └── headers.interceptor.ts │ │ ├── index-error │ │ │ ├── error.html │ │ │ ├── index-error.controller.spec.ts │ │ │ └── index-error.controller.ts │ │ ├── index-ok │ │ │ ├── index-ok.controller.spec.ts │ │ │ ├── index-ok.controller.ts │ │ │ └── ok.html │ │ ├── initialize-firebase │ │ │ ├── initialize-firebase.service.spec.ts │ │ │ ├── initialize-firebase.service.stub.ts │ │ │ └── initialize-firebase.service.ts │ │ ├── log-config │ │ │ ├── log-config.service.spec.ts │ │ │ └── log-config.service.ts │ │ ├── main.ts │ │ ├── migration │ │ │ ├── migration.service.spec.ts │ │ │ └── migration.service.ts │ │ ├── mikro-orm │ │ │ ├── entities │ │ │ │ ├── file │ │ │ │ │ └── entity.ts │ │ │ │ ├── fileTag │ │ │ │ │ └── entity.ts │ │ │ │ ├── participant │ │ │ │ │ └── entity.ts │ │ │ │ ├── room │ │ │ │ │ ├── entity.ts │ │ │ │ │ ├── isBookmarked.ts │ │ │ │ │ └── role.ts │ │ │ │ ├── roomMessage │ │ │ │ │ └── entity.ts │ │ │ │ └── user │ │ │ │ │ └── entity.ts │ │ │ ├── mikro-orm.service.ts │ │ │ └── utils │ │ │ │ ├── createORM.ts │ │ │ │ ├── createORMOptions.ts │ │ │ │ ├── determineDatabaseUrl.ts │ │ │ │ └── mikro-orm.ts │ │ ├── port-config │ │ │ ├── port-config.service.spec.ts │ │ │ └── port-config.service.ts │ │ ├── prepare-app │ │ │ └── prepare-app.module.ts │ │ ├── pub-sub │ │ │ └── pub-sub.service.ts │ │ ├── run-bcryptInteractive.ts │ │ ├── run-generateFlyioDockerfile.ts │ │ ├── run-generateGitTagsTxt.ts │ │ ├── run-generateGithubReleaseName.ts │ │ ├── run-migrationCheck.ts │ │ ├── run-migrationCreate.ts │ │ ├── run-migrationDown.ts │ │ ├── run-migrationUp.ts │ │ ├── server-config │ │ │ ├── server-config.service.spec.ts │ │ │ ├── server-config.service.stub.ts │ │ │ └── server-config.service.ts │ │ ├── setup-server │ │ │ └── setup-server.service.ts │ │ ├── test │ │ │ ├── app.e2e-spec.ts │ │ │ ├── beforeAllGlobal.ts │ │ │ ├── createORMOptions.test.ts │ │ │ ├── jest-e2e.json │ │ │ └── resolvers │ │ │ │ ├── happy-birthday-254480.mp3 │ │ │ │ ├── pexels-public-domain-pictures-68147.jpg │ │ │ │ ├── resolvers.test.ts │ │ │ │ └── utils │ │ │ │ ├── dbConfig.ts │ │ │ │ ├── firebase-id-token.service.fake.ts │ │ │ │ ├── graphqlType.ts │ │ │ │ ├── maskKeys.ts │ │ │ │ ├── resources.ts │ │ │ │ ├── subscription.ts │ │ │ │ ├── testClient.ts │ │ │ │ └── testClients.ts │ │ ├── types.ts │ │ ├── uploader-enabled │ │ │ └── uploader-enabled.pipe.ts │ │ ├── utils │ │ │ ├── appConsole.ts │ │ │ ├── asyncLock.ts │ │ │ ├── convertToMaxLength100String.ts │ │ │ ├── migrations.ts │ │ │ ├── parseExecutionContext.ts │ │ │ └── thumbsDir.ts │ │ ├── web-server-config │ │ │ ├── web-server-config.service.spec.ts │ │ │ └── web-server-config.service.ts │ │ └── yargs │ │ │ ├── yargs.service.spec.ts │ │ │ ├── yargs.service.stub.ts │ │ │ └── yargs.service.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ └── tsconfig.ts-node.json └── web-server │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── .storybook │ ├── main.ts │ └── preview.ts │ ├── README.md │ ├── README_vite.md │ ├── codegen.ts │ ├── eslint.config.js │ ├── index.html │ ├── package.json │ ├── public │ ├── _redirects │ ├── assets │ │ ├── chat.mp3 │ │ ├── dice │ │ │ ├── 0-6.png │ │ │ ├── 1-6.png │ │ │ ├── 2-6.png │ │ │ ├── 3-6.png │ │ │ ├── 4-6.png │ │ │ ├── 5-6.png │ │ │ ├── 6-6.png │ │ │ └── q-6.png │ │ ├── diceroll.mp3 │ │ ├── kari.png │ │ ├── log │ │ │ ├── dice.png │ │ │ └── noname.png │ │ ├── logo.png │ │ └── roll-call.mp3 │ ├── env.txt │ ├── licenses-npm-package.txt │ ├── licenses.md │ ├── privacy_policy.md │ └── tos.md │ ├── src │ ├── VERSION.ts │ ├── atoms │ │ ├── atomWithDebounceStorage │ │ │ └── atomWithDebounceStorage.ts │ │ ├── createFetchAtom │ │ │ └── createFetchAtom.ts │ │ ├── enableTanStackRouterDevtoolsAtom │ │ │ └── enableTanStackRouterDevtoolsAtom.ts │ │ ├── fetchEnvTxtAtom │ │ │ └── fetchEnvTxtAtom.ts │ │ ├── fetchLicensesAtom │ │ │ └── fetchLicensesAtom.ts │ │ ├── fetchPrivacyPolicyAtom │ │ │ └── fetchPrivacyPolicyAtom.tsx │ │ ├── fetchTosAtom │ │ │ └── fetchTosAtom.tsx │ │ ├── hideAllOverlayActionAtom │ │ │ └── hideAllOverlayActionAtom.ts │ │ ├── panelHighlightKeysAtom │ │ │ └── panelHighlightKeysAtom.ts │ │ ├── reloadPublicFilesKeyAtom │ │ │ └── reloadPublicFilesKeyAtom.ts │ │ ├── reloadUnlistedFilesKeyAtom │ │ │ └── reloadUnlistedFilesKeyAtom.ts │ │ ├── roomConfigAtom │ │ │ ├── roomConfigAtom.ts │ │ │ └── types │ │ │ │ ├── activeBoardPanelConfig │ │ │ │ └── index.ts │ │ │ │ ├── boardConfig │ │ │ │ └── index.ts │ │ │ │ ├── boardEditorPanelConfig │ │ │ │ └── index.ts │ │ │ │ ├── characterTabConfig │ │ │ │ ├── index.ts │ │ │ │ └── utils.ts │ │ │ │ ├── characterTagFilter │ │ │ │ ├── index.ts │ │ │ │ └── utils.ts │ │ │ │ ├── charactersPanelConfig │ │ │ │ └── index.ts │ │ │ │ ├── chatPalettePanelConfig │ │ │ │ └── index.ts │ │ │ │ ├── defaultPanelPositions.ts │ │ │ │ ├── draggablePanelConfig │ │ │ │ └── index.ts │ │ │ │ ├── gameEffectPanelConfig │ │ │ │ └── index.ts │ │ │ │ ├── memoPanelConfig │ │ │ │ └── index.ts │ │ │ │ ├── messageFilter │ │ │ │ ├── index.ts │ │ │ │ └── utils.ts │ │ │ │ ├── messagePanelConfig │ │ │ │ └── index.ts │ │ │ │ ├── messageTabConfig │ │ │ │ ├── index.ts │ │ │ │ └── utils.ts │ │ │ │ ├── panelsConfig │ │ │ │ └── index.ts │ │ │ │ ├── participantsPanelConfig │ │ │ │ └── index.ts │ │ │ │ ├── pieceValuePanelConfig │ │ │ │ └── index.ts │ │ │ │ ├── rollCallPanelConfig │ │ │ │ └── index.ts │ │ │ │ └── roomConfig │ │ │ │ ├── index.ts │ │ │ │ └── resources.ts │ │ ├── storybookAtom │ │ │ └── storybookAtom.ts │ │ ├── userConfigAtom │ │ │ ├── types.ts │ │ │ ├── userConfigAtom.ts │ │ │ └── utils.ts │ │ └── webConfigAtom │ │ │ ├── fakeEnvText.ts │ │ │ ├── webConfigAtom.env.test.ts │ │ │ ├── webConfigAtom.noenv.test.ts │ │ │ └── webConfigAtom.ts │ ├── components │ │ ├── behaviors │ │ │ ├── AllContextProvider.tsx │ │ │ ├── AntdThemeConfigProvider.tsx │ │ │ └── StorybookProvider.tsx │ │ ├── globalStyles │ │ │ └── RoomGlobalStyle.tsx │ │ ├── models │ │ │ ├── auth │ │ │ │ └── SignIn │ │ │ │ │ ├── SignIn.stories.tsx │ │ │ │ │ └── SignIn.tsx │ │ │ ├── envs │ │ │ │ └── EnvsMonitor │ │ │ │ │ ├── EnvsMonitor.stories.tsx │ │ │ │ │ └── EnvsMonitor.tsx │ │ │ ├── file │ │ │ │ ├── FileBrowser │ │ │ │ │ ├── FileBrowser.stories.tsx │ │ │ │ │ └── FileBrowser.tsx │ │ │ │ ├── FileSelector │ │ │ │ │ └── FileSelector.tsx │ │ │ │ ├── FileSelectorModal │ │ │ │ │ └── FileSelectorModal.tsx │ │ │ │ ├── FileView │ │ │ │ │ └── FileView.tsx │ │ │ │ ├── IconView │ │ │ │ │ └── IconView.tsx │ │ │ │ ├── ImageView │ │ │ │ │ └── ImageView.tsx │ │ │ │ └── UploaderFileBrowser │ │ │ │ │ ├── UploaderFileBrowser.tsx │ │ │ │ │ └── utils │ │ │ │ │ └── helper.ts │ │ │ └── room │ │ │ │ └── Room │ │ │ │ ├── Room.stories.tsx │ │ │ │ ├── Room.tsx │ │ │ │ └── subcomponents │ │ │ │ ├── atoms │ │ │ │ ├── boardContextMenuAtom │ │ │ │ │ └── boardContextMenuAtom.ts │ │ │ │ ├── boardPopoverEditorAtom │ │ │ │ │ └── boardPopoverEditorAtom.ts │ │ │ │ ├── boardTooltipAtom │ │ │ │ │ └── boardTooltipAtom.ts │ │ │ │ ├── editRoomModalVisibilityAtom │ │ │ │ │ └── editRoomModalVisibilityAtom.ts │ │ │ │ ├── roomPrivateMessageInputAtom │ │ │ │ │ └── roomPrivateMessageInputAtom.ts │ │ │ │ └── roomPublicMessageInputAtom │ │ │ │ │ └── roomPublicMessageInputAtom.ts │ │ │ │ ├── components │ │ │ │ ├── Board │ │ │ │ │ ├── Board.stories.tsx │ │ │ │ │ ├── Board.tsx │ │ │ │ │ └── subcomponents │ │ │ │ │ │ └── components │ │ │ │ │ │ ├── ActiveBoardSelectorModal │ │ │ │ │ │ └── ActiveBoardSelecterModal.tsx │ │ │ │ │ │ ├── BoardConfigEditor │ │ │ │ │ │ └── BoardConfigEditor.tsx │ │ │ │ │ │ ├── CanvasOrDiceOrStringPiece │ │ │ │ │ │ └── CanvasOrDiceOrStringPiece.tsx │ │ │ │ │ │ └── ImagePiece │ │ │ │ │ │ ├── ImagePiece.tsx │ │ │ │ │ │ └── subcomponents │ │ │ │ │ │ └── NameLabel.tsx │ │ │ │ ├── BoardEditorModal │ │ │ │ │ ├── BoardEditorModal.stories.tsx │ │ │ │ │ └── BoardEditorModal.tsx │ │ │ │ ├── BoardPopover │ │ │ │ │ └── BoardPopover.tsx │ │ │ │ ├── BooleanParameterInput │ │ │ │ │ └── BooleanParameterInput.tsx │ │ │ │ ├── CharacterEditorModal │ │ │ │ │ ├── CharacterEditorModal.stories.tsx │ │ │ │ │ ├── CharacterEditorModal.tsx │ │ │ │ │ └── subcomponent │ │ │ │ │ │ └── components │ │ │ │ │ │ └── CharacterTagsSelect │ │ │ │ │ │ └── CharacterTagsSelect.tsx │ │ │ │ ├── CharacterListPanelContent │ │ │ │ │ ├── CharacterListPanelContent.stories.tsx │ │ │ │ │ ├── CharacterListPanelContent.tsx │ │ │ │ │ └── subcomponents │ │ │ │ │ │ └── components │ │ │ │ │ │ └── CharacterTabName │ │ │ │ │ │ └── CharacterTabName.tsx │ │ │ │ ├── CharacterParameterNamesEditorModal │ │ │ │ │ └── CharacterParameterNamesEditorModal.tsx │ │ │ │ ├── CharacterTagNamesEditorModal │ │ │ │ │ └── CharacterTagNamesEditorModal.tsx │ │ │ │ ├── CharacterVarInput │ │ │ │ │ └── CharacterVarInput.tsx │ │ │ │ ├── ChatInput │ │ │ │ │ ├── getSelectedCharacterType.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── subcomponents │ │ │ │ │ │ └── components │ │ │ │ │ │ └── CharacterSelector │ │ │ │ │ │ └── CharacterSelector.tsx │ │ │ │ ├── ChatPalettePanelContent │ │ │ │ │ ├── ChatPalettePanelContent.stories.tsx │ │ │ │ │ └── ChatPalettePanelContent.tsx │ │ │ │ ├── CommandEditorModal │ │ │ │ │ └── CommandEditorModal.tsx │ │ │ │ ├── DicePieceEditor │ │ │ │ │ ├── DicePieceEditor.stories.tsx │ │ │ │ │ └── DicePieceEditor.tsx │ │ │ │ ├── DicePieceEditorModal │ │ │ │ │ └── DicePieceEditorModal.tsx │ │ │ │ ├── EditRoomModal │ │ │ │ │ └── EditRoomModal.tsx │ │ │ │ ├── GameSelector │ │ │ │ │ └── GameSelector.tsx │ │ │ │ ├── ImagePieceEditor │ │ │ │ │ ├── ImagePieceEditor.stories.tsx │ │ │ │ │ └── ImagePieceEditor.tsx │ │ │ │ ├── ImagePieceModal │ │ │ │ │ └── ImagePieceModal.tsx │ │ │ │ ├── ImportBoardModal │ │ │ │ │ └── ImportBoardModal.tsx │ │ │ │ ├── ImportCharacterModal │ │ │ │ │ └── ImportCharacterModal.tsx │ │ │ │ ├── InputDie │ │ │ │ │ └── InputDie.tsx │ │ │ │ ├── KonvaDice │ │ │ │ │ └── KonvaDice.tsx │ │ │ │ ├── MemosPanelContent │ │ │ │ │ ├── MemosPanelContent.stories.tsx │ │ │ │ │ └── MemosPanelContent.tsx │ │ │ │ ├── MyCharactersSelect │ │ │ │ │ ├── MyCharactersSelect.stories.tsx │ │ │ │ │ └── MyCharactersSelect.tsx │ │ │ │ ├── Notification │ │ │ │ │ └── Notification.tsx │ │ │ │ ├── NumberParameterInput │ │ │ │ │ └── NumberParameterInput.tsx │ │ │ │ ├── OverriddenParameterNameEditor │ │ │ │ │ └── OverriddenParameterNameEditor.tsx │ │ │ │ ├── ParticipantListPanelContent │ │ │ │ │ ├── ParticipantListPanelContent.stories.tsx │ │ │ │ │ └── ParticipantListPanelContent.tsx │ │ │ │ ├── PieceEditorCloneButtonRow │ │ │ │ │ └── PieceEditorCloneButtonRow.tsx │ │ │ │ ├── PieceEditorIdRow │ │ │ │ │ └── PieceEditorIdRow.tsx │ │ │ │ ├── PieceEditorMemoRow │ │ │ │ │ └── PieceEditorMemoRow.tsx │ │ │ │ ├── PieceEditorNameRow │ │ │ │ │ └── PieceEditorNameRow.tsx │ │ │ │ ├── PieceGroup │ │ │ │ │ └── PieceGroup.tsx │ │ │ │ ├── PieceListPanelContent │ │ │ │ │ └── PieceListPanelContent.tsx │ │ │ │ ├── RectEditor │ │ │ │ │ ├── RectEditor.tsx │ │ │ │ │ └── subcomponents │ │ │ │ │ │ └── components │ │ │ │ │ │ ├── IsCellModeSelector │ │ │ │ │ │ └── IsCellModeSelector.tsx │ │ │ │ │ │ └── IsPositionLockedSelector │ │ │ │ │ │ └── IsPositionLockedSelector.tsx │ │ │ │ ├── RollCall │ │ │ │ │ ├── RollCall.stories.tsx │ │ │ │ │ ├── RollCall.tsx │ │ │ │ │ └── prettyElapsed.ts │ │ │ │ ├── RoomMenu │ │ │ │ │ ├── RoomMenu.tsx │ │ │ │ │ └── subcomponents │ │ │ │ │ │ └── components │ │ │ │ │ │ ├── GenerageLogModal │ │ │ │ │ │ ├── GenerateLogModal.tsx │ │ │ │ │ │ └── subcomponents │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ └── ChannelsFilter │ │ │ │ │ │ │ └── ChannelsFilter.tsx │ │ │ │ │ │ └── RoomVolumeBar │ │ │ │ │ │ └── RoomVolumeBar.tsx │ │ │ │ ├── RoomMessagesPanelContent │ │ │ │ │ ├── RoomMessagesPanelContent.stories.tsx │ │ │ │ │ ├── RoomMessagesPanelContent.tsx │ │ │ │ │ └── subcomponents │ │ │ │ │ │ └── components │ │ │ │ │ │ ├── MessageTabName │ │ │ │ │ │ └── MessageTabName.tsx │ │ │ │ │ │ └── RoomMessage │ │ │ │ │ │ └── RoomMessage.tsx │ │ │ │ ├── ShapePieceEditor │ │ │ │ │ ├── ShapePieceEditor.stories.tsx │ │ │ │ │ └── ShapePieceEditor.tsx │ │ │ │ ├── ShapePieceEditorModal │ │ │ │ │ └── ShapePieceEditorModal.tsx │ │ │ │ ├── SoundPlayerPanelContent │ │ │ │ │ ├── SoundPlayerPanelContent.stories.tsx │ │ │ │ │ └── SoundPlayerPanelContent.tsx │ │ │ │ ├── StringParameterInput │ │ │ │ │ └── StringParameterInput.tsx │ │ │ │ ├── StringPieceEditor │ │ │ │ │ ├── StringPieceEditor.stories.tsx │ │ │ │ │ └── StringPieceEditor.tsx │ │ │ │ ├── StringPieceEditorModal │ │ │ │ │ └── StringPieceEditorModal.tsx │ │ │ │ └── SubmitMessage │ │ │ │ │ ├── SubmitMessage.tsx │ │ │ │ │ └── subcomponents │ │ │ │ │ └── components │ │ │ │ │ ├── PrivateMessageChannelSelector │ │ │ │ │ ├── PrivateMessageChannelSelector.tsx │ │ │ │ │ └── subcomponents │ │ │ │ │ │ └── components │ │ │ │ │ │ └── ParticipantsSelect │ │ │ │ │ │ └── ParticipantsSelect.tsx │ │ │ │ │ └── PublicMessageChannelSelector │ │ │ │ │ └── PublicMessageChannelSelector.tsx │ │ │ │ ├── hooks │ │ │ │ ├── useBoard.ts │ │ │ │ ├── useBoards.ts │ │ │ │ ├── useCellConfig.ts │ │ │ │ ├── useCellRectToCompositeRect.ts │ │ │ │ ├── useCharacter.ts │ │ │ │ ├── useCharacterPiece.ts │ │ │ │ ├── useCharacterPieces.ts │ │ │ │ ├── useCharacterTagNames.ts │ │ │ │ ├── useCharacters.ts │ │ │ │ ├── useCloneImagePiece.ts │ │ │ │ ├── useDicePieces.ts │ │ │ │ ├── useImagePieces.ts │ │ │ │ ├── useIsMyCharacter.ts │ │ │ │ ├── useJoinParticipants.ts │ │ │ │ ├── useMe.ts │ │ │ │ ├── useMemos.ts │ │ │ │ ├── useMessageFilter.ts │ │ │ │ ├── useMyBoards.ts │ │ │ │ ├── useMyCharacters.ts │ │ │ │ ├── useParamNames.ts │ │ │ │ ├── useParticipants.ts │ │ │ │ ├── usePixelRectToCompositeRect.ts │ │ │ │ ├── usePlayBgm.ts │ │ │ │ ├── usePlaySoundEffect.ts │ │ │ │ ├── usePortraitPiece.ts │ │ │ │ ├── usePortraitPieces.ts │ │ │ │ ├── usePublicChannelNames.ts │ │ │ │ ├── usePushNotifications.tsx │ │ │ │ ├── useRoomConnections.ts │ │ │ │ ├── useRoomId.ts │ │ │ │ ├── useRoomMessageQueryStatus.ts │ │ │ │ ├── useRoomMessages.ts │ │ │ │ ├── useSetRoomState.ts │ │ │ │ ├── useSetRoomStateByApply.ts │ │ │ │ ├── useSetRoomStateWithImmer.ts │ │ │ │ ├── useShapePieces.ts │ │ │ │ ├── useStateEditor.test.ts │ │ │ │ ├── useStateEditor.ts │ │ │ │ ├── useStringPieces.ts │ │ │ │ ├── useUpdateWritingMessageStatus.ts │ │ │ │ └── useWritingMessageStatus.ts │ │ │ │ └── utils │ │ │ │ ├── dicePieceValue.tsx │ │ │ │ ├── generateHtml.test.ts │ │ │ │ ├── generateHtml.ts │ │ │ │ ├── message.ts │ │ │ │ ├── positionAndSizeAndRect.ts │ │ │ │ ├── roomLogGenerator.ts │ │ │ │ ├── stringPieceValue.ts │ │ │ │ └── types.ts │ │ ├── pages │ │ │ ├── IndexPage │ │ │ │ ├── IndexPage.stories.tsx │ │ │ │ └── IndexPage.tsx │ │ │ ├── ProfilePage │ │ │ │ └── ProfilePage.tsx │ │ │ ├── TextPage │ │ │ │ └── TextPage.tsx │ │ │ └── room │ │ │ │ ├── RoomCreatePage │ │ │ │ └── RoomCreatePage.tsx │ │ │ │ ├── RoomIdPage │ │ │ │ └── RoomIdPage.tsx │ │ │ │ └── RoomIndexPage │ │ │ │ └── RoomIndexPage.tsx │ │ └── ui │ │ │ ├── AlertCounter │ │ │ ├── AlertCounter.stories.tsx │ │ │ └── AlertCounter.tsx │ │ │ ├── AnimatedKonvaAsAnyProps │ │ │ └── AnimatedKonvaAsAnyProps.tsx │ │ │ ├── AwaitableButton │ │ │ └── AwaitableButton.tsx │ │ │ ├── Center │ │ │ └── Center.tsx │ │ │ ├── CollaborativeInput │ │ │ ├── CollaborativeInput.css │ │ │ ├── CollaborativeInput.stories.tsx │ │ │ └── CollaborativeInput.tsx │ │ │ ├── ColorPickerButton │ │ │ └── ColorPickerButton.tsx │ │ │ ├── CopyToClipboardButton │ │ │ └── CopyToClipboardButton.tsx │ │ │ ├── DialogFooter │ │ │ └── DialogFooter.tsx │ │ │ ├── DraggableCard │ │ │ └── DraggableCard.tsx │ │ │ ├── DraggableTabs │ │ │ └── DraggableTabs.tsx │ │ │ ├── EditorGroupHeader │ │ │ └── EditorGroupHeader.tsx │ │ │ ├── Fieldset │ │ │ ├── Fieldset.stories.tsx │ │ │ └── Fieldset.tsx │ │ │ ├── GraphQLAlert │ │ │ └── GraphQLAlert.tsx │ │ │ ├── GraphQLErrorAlert │ │ │ └── GraphQLErrorAlert.tsx │ │ │ ├── GraphQLErrorResult │ │ │ └── GraphQLErrorResult.tsx │ │ │ ├── GraphQLResult │ │ │ └── GraphQLResult.tsx │ │ │ ├── HelpMessageTooltip │ │ │ ├── HelpMessageTooltip.stories.tsx │ │ │ └── HelpMessageTooltip.tsx │ │ │ ├── InputDescription │ │ │ └── InputDescription.tsx │ │ │ ├── InputModal │ │ │ └── InputModal.tsx │ │ │ ├── Jdenticon │ │ │ └── Jdenticon.tsx │ │ │ ├── JumpToBottomVirtuoso │ │ │ └── JumpToBottomVirtuoso.tsx │ │ │ ├── Layout │ │ │ └── Layout.tsx │ │ │ ├── LazyAndPreloadImage │ │ │ └── LazyAndPreloadImage.tsx │ │ │ ├── LoadingResult │ │ │ └── LoadingResult.tsx │ │ │ ├── NewTabLinkify │ │ │ └── NewTabLinkify.tsx │ │ │ ├── NotSignInResult │ │ │ └── NotSignInResult.tsx │ │ │ ├── SuspenseWithFallback │ │ │ └── SuspenseWithFallback.tsx │ │ │ ├── Table │ │ │ ├── Table.stories.tsx │ │ │ └── Table.tsx │ │ │ ├── TextColorPicker │ │ │ └── TextColorPicker.tsx │ │ │ ├── ToggleButton │ │ │ └── ToggleButton.tsx │ │ │ ├── TomlInput │ │ │ ├── TomlInput.stories.tsx │ │ │ └── Tomllnput.tsx │ │ │ ├── UISelector │ │ │ └── UISelector.tsx │ │ │ └── VolumeBar │ │ │ └── VolumeBar.tsx │ ├── configType.ts │ ├── contexts │ │ ├── AntdThemeContext.ts │ │ └── RoomClientContext.ts │ ├── graphql-codegen │ │ ├── fragment-masking.ts │ │ ├── gql.ts │ │ ├── graphql.ts │ │ └── index.ts │ ├── graphql │ │ ├── AnswerRollCallDoc.ts │ │ ├── ChangeParticipantNameDoc.ts │ │ ├── CloseRollCallDoc.ts │ │ ├── CreateRoomDoc.ts │ │ ├── DeleteFilesDoc.ts │ │ ├── DeleteMessageDoc.ts │ │ ├── DeleteRoomAsAdminDoc.ts │ │ ├── DeleteRoomDoc.ts │ │ ├── EditMessageDoc.ts │ │ ├── EntryToServerDoc.ts │ │ ├── FilePathFragmentDoc.ts │ │ ├── GetAvailableGameSystemsDoc.ts │ │ ├── GetDiceHelpMessagesDoc.ts │ │ ├── GetFilesDoc.ts │ │ ├── GetLogDoc.ts │ │ ├── GetMyRolesDoc.ts │ │ ├── GetRoomAsListItemDoc.ts │ │ ├── GetRoomsListDoc.ts │ │ ├── GetServerInfoDoc.ts │ │ ├── JoinRoomDocs.ts │ │ ├── LeaveRoomDoc.ts │ │ ├── MakeMessageNotSecretDoc.ts │ │ ├── PerformRollCallDoc.ts │ │ ├── PromoteToPlayerDoc.ts │ │ ├── RenameFilesDoc.ts │ │ ├── ResetMessagesDoc.ts │ │ ├── UpdateBookmarkDoc.ts │ │ └── WriteRoomSoundEffectDoc.ts │ ├── hooks │ │ ├── imageHooks.ts │ │ ├── roomClientHooks.ts │ │ ├── srcHooks.ts │ │ ├── useAddNotification.ts │ │ ├── useAllContext.ts │ │ ├── useAtomSelector.ts │ │ ├── useBufferValue.ts │ │ ├── useCompositeKeyMemo.ts │ │ ├── useFirebaseStorageListAllQuery.ts │ │ ├── useFirebaseStorageUrl.ts │ │ ├── useFirebaseStorageUrlQuery.ts │ │ ├── useGetApiSemVer.ts │ │ ├── useGetMyRoles.ts │ │ ├── useImmerSetAtom.ts │ │ ├── useMyUserUid.ts │ │ ├── useOpenFirebaseStorageFile.ts │ │ ├── useOpenFloconUploaderFile.ts │ │ ├── useRoomGraphQLStatus.ts │ │ ├── useRoomState.ts │ │ ├── useRoomStateValue.ts │ │ ├── useRoomStateValueSelector.ts │ │ ├── useSetupApp.ts │ │ ├── useSetupStorybook.ts │ │ ├── useSignOut.ts │ │ ├── useSingleExecuteAsync.ts │ │ └── useWebConfig.ts │ ├── main.tsx │ ├── mocks │ │ ├── createMockUrqlClientForLayout.tsx │ │ ├── createMockUrqlClientForRoomMessage.ts │ │ ├── index.ts │ │ └── withPromise.ts │ ├── monaco │ │ ├── characterCommandLibSource.ts │ │ ├── defaultLibSource.ts │ │ ├── floconLibSource.d.ts │ │ ├── floconLibSource.ts │ │ └── typescriptLibSource.ts │ ├── resources │ │ └── text │ │ │ └── main.ts │ ├── routeTree.gen.ts │ ├── routes │ │ ├── __root.tsx │ │ ├── index.tsx │ │ ├── licenses.tsx │ │ ├── privacy_policy.tsx │ │ ├── profile.tsx │ │ ├── rooms │ │ │ ├── $id.lazy.tsx │ │ │ ├── create.tsx │ │ │ └── index.tsx │ │ ├── signin.tsx │ │ ├── text │ │ │ ├── env.tsx │ │ │ ├── privacy_policy.tsx │ │ │ └── tos.tsx │ │ └── tos.tsx │ ├── styles │ │ ├── className.ts │ │ ├── css │ │ │ └── main.scss │ │ └── index.ts │ ├── utils │ │ ├── analyzeUrl.test.ts │ │ ├── analyzeUrl.ts │ │ ├── character │ │ │ ├── characterUpdateOperation.ts │ │ │ └── command.ts │ │ ├── constants.ts │ │ ├── dotEnvParse.ts │ │ ├── extname.ts │ │ ├── file │ │ │ ├── filePath.ts │ │ │ ├── firebaseStorage.ts │ │ │ └── getFloconUploaderFile.ts │ │ ├── fileType.ts │ │ ├── filename.ts │ │ ├── firebase │ │ │ └── firebaseUserState.ts │ │ ├── keySorter.test.ts │ │ ├── keySorter.ts │ │ ├── mergeStyles.test.ts │ │ ├── mergeStyles.ts │ │ ├── moveElement.test.ts │ │ ├── moveElement.ts │ │ ├── range.ts │ │ ├── rgb.ts │ │ ├── rgba.ts │ │ ├── setStateWithImmer.ts │ │ ├── tryParseJSON.ts │ │ ├── types.ts │ │ ├── variables.ts │ │ └── zod │ │ │ └── record.ts │ ├── versioning │ │ ├── DESIGN.md │ │ ├── apiServerSatisfies.test.ts │ │ ├── apiServerSatisfies.ts │ │ └── semVerRange.ts │ └── vite-env.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.base.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── commitlint.config.js ├── docker ├── README.md ├── api-server-swap256mb │ └── Dockerfile └── api-server │ └── Dockerfile ├── package.json ├── packages ├── cache │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── index.ts │ │ └── main.ts │ ├── test │ │ └── index.test.ts │ └── tsconfig.json ├── core │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── index.ts │ │ └── internal │ │ │ ├── __test__ │ │ │ ├── fixtures.ts │ │ │ └── normalizeRoomState.ts │ │ │ ├── command │ │ │ ├── bgm.ts │ │ │ ├── bgms.ts │ │ │ ├── boolParam.ts │ │ │ ├── boolParams.ts │ │ │ ├── character.ts │ │ │ ├── filePath.ts │ │ │ ├── main.test.ts │ │ │ ├── main.ts │ │ │ ├── numParam.ts │ │ │ ├── numParams.ts │ │ │ ├── paramNames.ts │ │ │ ├── participant.ts │ │ │ ├── room.ts │ │ │ ├── stateRecord.ts │ │ │ ├── strParam.ts │ │ │ └── strParams.ts │ │ │ ├── constants.ts │ │ │ ├── env.ts │ │ │ ├── expression.test.ts │ │ │ ├── expression.ts │ │ │ ├── fake │ │ │ └── fakeFirebaseConfig.ts │ │ │ ├── firebaseConfig.ts │ │ │ ├── forceMaxLength100String.ts │ │ │ ├── indexes.ts │ │ │ ├── maxLengthString.test.ts │ │ │ ├── maxLengthString.ts │ │ │ ├── maybe.ts │ │ │ ├── ot │ │ │ ├── DESIGN.md │ │ │ ├── array.test.ts │ │ │ ├── array.ts │ │ │ ├── flocon │ │ │ │ ├── boardPosition │ │ │ │ │ ├── functions.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── compositeKey │ │ │ │ │ └── types.ts │ │ │ │ ├── filePath │ │ │ │ │ └── types.ts │ │ │ │ ├── piece │ │ │ │ │ ├── functions.ts │ │ │ │ │ ├── log.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── room │ │ │ │ │ ├── bgm │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── board │ │ │ │ │ │ ├── dicePiece │ │ │ │ │ │ │ ├── converter.ts │ │ │ │ │ │ │ ├── dieValue │ │ │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ │ ├── log.test.ts │ │ │ │ │ │ │ ├── log.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ ├── imagePiece │ │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── shapePiece │ │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── stringPiece │ │ │ │ │ │ │ ├── converter.ts │ │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ │ ├── log.test.ts │ │ │ │ │ │ │ ├── log.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── character │ │ │ │ │ │ ├── boolParam │ │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── characterPiece │ │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── command │ │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ ├── numParam │ │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── portraitPiece │ │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── strParam │ │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── converter.test.ts │ │ │ │ │ ├── converter.ts │ │ │ │ │ ├── functions.ts │ │ │ │ │ ├── log.ts │ │ │ │ │ ├── memo │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── paramName │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── participant │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── rollCall │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ ├── getOpenRollCall.test.ts │ │ │ │ │ │ ├── getOpenRollCall.ts │ │ │ │ │ │ ├── isOpenRollCall.ts │ │ │ │ │ │ ├── rollCallParticipant │ │ │ │ │ │ │ ├── functions.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── types.ts │ │ │ │ └── shape │ │ │ │ │ ├── functions.ts │ │ │ │ │ └── types.ts │ │ │ ├── generator │ │ │ │ ├── functions.test.ts │ │ │ │ ├── functions.ts │ │ │ │ ├── omitVersion.ts │ │ │ │ └── types.ts │ │ │ ├── nullableTextOperation.ts │ │ │ ├── ot.test.ts │ │ │ ├── otError.ts │ │ │ ├── paramRecordOperation.test.ts │ │ │ ├── paramRecordOperation.ts │ │ │ ├── record.ts │ │ │ ├── recordOperation.test.ts │ │ │ ├── recordOperation.ts │ │ │ ├── recordOperationElement.ts │ │ │ ├── requestedBy.ts │ │ │ ├── shape.ts │ │ │ ├── textOperation.ts │ │ │ └── util │ │ │ │ ├── array │ │ │ │ ├── arrayDiff.test.ts │ │ │ │ ├── arrayDiff.ts │ │ │ │ └── arrayTransform.ts │ │ │ │ ├── createOperation.ts │ │ │ │ ├── isValidKey.ts │ │ │ │ ├── replaceOperation.ts │ │ │ │ └── type.ts │ │ │ ├── publicChannelKey.ts │ │ │ ├── simpleId.test.ts │ │ │ ├── simpleId.ts │ │ │ ├── toml.ts │ │ │ ├── uploaderPath.test.ts │ │ │ └── uploaderPath.ts │ └── tsconfig.json ├── default-pino-transport │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── eslint-config │ ├── .prettierrc │ ├── README.md │ ├── index.mjs │ └── package.json ├── flocon-script │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── docs.md │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── ScriptError.ts │ │ ├── builtIn │ │ │ ├── Array.ts │ │ │ ├── Map.ts │ │ │ ├── Symbol.ts │ │ │ └── console.ts │ │ ├── context.ts │ │ ├── fExpression.ts │ │ ├── fPattern.ts │ │ ├── fStatement.ts │ │ ├── getRestValues.ts │ │ ├── index.ts │ │ ├── main.ts │ │ ├── range.ts │ │ ├── scriptValue │ │ │ ├── FArray.ts │ │ │ ├── FBoolean.ts │ │ │ ├── FFunction.ts │ │ │ ├── FGlobalRecord.ts │ │ │ ├── FIterator.ts │ │ │ ├── FMap.ts │ │ │ ├── FNumber.ts │ │ │ ├── FObject.ts │ │ │ ├── FRecord.ts │ │ │ ├── FRecordRef.ts │ │ │ ├── FString.ts │ │ │ ├── FSymbol.ts │ │ │ ├── FType.ts │ │ │ ├── FValue.ts │ │ │ ├── cast.ts │ │ │ ├── compare.ts │ │ │ ├── eqeq.ts │ │ │ ├── eqeqeq.ts │ │ │ ├── isTruthy.ts │ │ │ ├── toFGlobalRecord.ts │ │ │ ├── toFRecord.ts │ │ │ ├── toFValue.ts │ │ │ ├── toPrimitive.ts │ │ │ ├── toPropertyName.ts │ │ │ ├── toTypeName.ts │ │ │ ├── tryToPropertyName.ts │ │ │ └── types.ts │ │ └── utils │ │ │ ├── mapIterator.ts │ │ │ └── toJObject.ts │ ├── test │ │ ├── _basic.test.ts │ │ ├── array.test.ts │ │ ├── arrowFunction.test.ts │ │ ├── assignment.test.ts │ │ ├── binaryExpression.test.ts │ │ ├── console.test.ts │ │ ├── declaration.test.ts │ │ ├── docsmd.test.ts │ │ ├── fRecordRef.test.ts │ │ ├── for-of.test.ts │ │ ├── for.test.ts │ │ ├── if.test.ts │ │ ├── incrementAndDecrement.test.ts │ │ ├── map.test.ts │ │ ├── others.test.ts │ │ ├── security.test.ts │ │ ├── spread.test.ts │ │ ├── switch.test.ts │ │ ├── symbol.test.ts │ │ └── unaryExpression.test.ts │ └── tsconfig.json ├── graphql-documents │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── codegen.ts │ ├── eslint.config.mjs │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── graphql-codegen │ │ │ ├── gql.ts │ │ │ ├── graphql.ts │ │ │ └── index.ts │ │ └── index.ts │ └── tsconfig.json ├── logger-base │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.mjs │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── prettier-config │ ├── README.md │ ├── index.json │ └── package.json ├── rollup-config │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.mjs │ ├── index.js │ ├── index.js.map │ ├── index.ts │ ├── package.json │ └── tsconfig.json ├── sdk-react │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── jestSetup.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── index.ts │ │ └── internal │ │ │ └── hooks │ │ │ ├── useCreateRoomClient.ts │ │ │ ├── useReadonlyBehaviorEvent.test.ts │ │ │ ├── useReadonlyBehaviorEvent.ts │ │ │ ├── useRoomConnections.ts │ │ │ ├── useRoomGraphQLStatus.ts │ │ │ ├── useRoomMessageQueryStatus.test.ts │ │ │ ├── useRoomMessageQueryStatus.ts │ │ │ ├── useRoomMessages.test.ts │ │ │ ├── useRoomMessages.ts │ │ │ ├── useRoomState.ts │ │ │ ├── useUpdateWritingMessageStatus.ts │ │ │ └── useWritingMessageStatus.ts │ └── tsconfig.json ├── sdk-urql │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── index.ts │ │ └── internal │ │ │ ├── createGraphQLClient.ts │ │ │ └── createUrqlClient.ts │ └── tsconfig.json ├── sdk │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── index.ts │ │ └── internal │ │ │ ├── createRoomClient.ts │ │ │ ├── createTestRoomClient.ts │ │ │ ├── roomClient │ │ │ ├── graphqlClient.ts │ │ │ ├── roomConnections.ts │ │ │ ├── roomMessages.ts │ │ │ ├── roomState.ts │ │ │ ├── subscribeWritingMessageStatus.ts │ │ │ └── updateWritingMessageStatus.ts │ │ │ ├── rxjs │ │ │ ├── behaviorEvent.ts │ │ │ └── readonlyBehaviorEvent.ts │ │ │ ├── stateManager │ │ │ ├── create.ts │ │ │ ├── stateManager │ │ │ │ ├── stateGetter.ts │ │ │ │ ├── stateManager.test.ts │ │ │ │ ├── stateManager.ts │ │ │ │ ├── stateManagerCore.ts │ │ │ │ ├── stateManagerHistoryQueue.ts │ │ │ │ ├── syncedState,postingState,uiState.md │ │ │ │ ├── transformation.drawio │ │ │ │ └── types.ts │ │ │ └── states │ │ │ │ ├── room.ts │ │ │ │ └── types.ts │ │ │ └── types.ts │ └── tsconfig.json ├── tsconfig │ ├── package.json │ └── tsconfig.json ├── utils │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── index.ts │ │ └── internal │ │ │ ├── arrayEquals.test.ts │ │ │ ├── arrayEquals.ts │ │ │ ├── compare.ts │ │ │ ├── compositeKey.ts │ │ │ ├── delay.ts │ │ │ ├── deletableTree.test.ts │ │ │ ├── deletableTree.ts │ │ │ ├── dualKeyMap.test.ts │ │ │ ├── dualKeyMap.ts │ │ │ ├── filterInt.test.ts │ │ │ ├── filterInt.ts │ │ │ ├── groupJoinArray.test.ts │ │ │ ├── groupJoinArray.ts │ │ │ ├── groupJoinMap.test.ts │ │ │ ├── groupJoinMap.ts │ │ │ ├── groupJoinSet.test.ts │ │ │ ├── groupJoinSet.ts │ │ │ ├── iterable.ts │ │ │ ├── keyNames.test.ts │ │ │ ├── keyNames.ts │ │ │ ├── logger.ts │ │ │ ├── multiKeyMap.test.ts │ │ │ ├── multiKeyMap.ts │ │ │ ├── multiValueSet.test.ts │ │ │ ├── multiValueSet.ts │ │ │ ├── nonEmptyArray.test.ts │ │ │ ├── nonEmptyArray.ts │ │ │ ├── parseEnvListValue.test.ts │ │ │ ├── parseEnvListValue.ts │ │ │ ├── parsePinoLogLevel.ts │ │ │ ├── parseStringToBoolean.test.ts │ │ │ ├── parseStringToBoolean.ts │ │ │ ├── record.test.ts │ │ │ ├── record.ts │ │ │ ├── semver.test.ts │ │ │ ├── semver.ts │ │ │ ├── tree.test.ts │ │ │ ├── tree.ts │ │ │ └── types.ts │ └── tsconfig.json └── web-server-utils │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.mjs │ ├── jest.config.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ ├── index.ts │ └── internal │ │ ├── filteredArray.ts │ │ ├── messageSet.ts │ │ ├── privateChannelSet.ts │ │ ├── privateChannelSets.ts │ │ ├── roomChannels.ts │ │ ├── roomMessageTypes.ts │ │ ├── roomMessagesClient.ts │ │ └── utils.ts │ ├── tests │ ├── expect.ts │ ├── fixtures.ts │ ├── privateChannelSet.test.ts │ ├── privateChannelSets.test.ts │ ├── roomChannels.test.ts │ └── roomMessagesClient.test.ts │ └── tsconfig.json ├── renovate.json5 ├── websites ├── docs │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── LICENSE │ ├── README.md │ ├── babel.config.js │ ├── docs │ │ ├── client │ │ │ ├── _category_.json │ │ │ ├── chat_palette.md │ │ │ ├── command │ │ │ │ ├── _category_.json │ │ │ │ ├── guide-advanced.md │ │ │ │ └── guide.md │ │ │ ├── index.md │ │ │ ├── intro.md │ │ │ └── toml.md │ │ ├── faq.md │ │ ├── intro.md │ │ ├── public_servers.md │ │ └── server │ │ │ ├── _category_.json │ │ │ ├── details │ │ │ ├── _category_.json │ │ │ ├── api-server │ │ │ │ ├── _category_.json │ │ │ │ ├── deploy │ │ │ │ │ ├── _category_.json │ │ │ │ │ └── general.md │ │ │ │ ├── index.md │ │ │ │ └── vars.mdx │ │ │ ├── servers.md │ │ │ ├── uploader │ │ │ │ ├── _category_.json │ │ │ │ ├── embedded.md │ │ │ │ ├── firebase_storage.md │ │ │ │ └── index.md │ │ │ └── web-server │ │ │ │ ├── _category_.json │ │ │ │ ├── deploy │ │ │ │ ├── _category_.json │ │ │ │ ├── export.md │ │ │ │ └── vercel.md │ │ │ │ ├── firebase_auth.md │ │ │ │ ├── index.md │ │ │ │ └── vars.md │ │ │ ├── index.md │ │ │ └── tutorial │ │ │ ├── _category_.json │ │ │ ├── api_server.md │ │ │ ├── firebase_auth.md │ │ │ ├── index.md │ │ │ ├── outdated │ │ │ ├── _category_.json │ │ │ └── heroku.mdx │ │ │ ├── upgrade │ │ │ ├── _category_.json │ │ │ ├── api_server.md │ │ │ ├── outdated │ │ │ │ ├── _category_.json │ │ │ │ └── api_server.md │ │ │ └── web_server.md │ │ │ └── web_server.md │ ├── docusaurus.config.ts │ ├── package.json │ ├── sidebars.ts │ ├── src │ │ ├── components │ │ │ ├── AntDesign.tsx │ │ │ ├── ApiVarExample.tsx │ │ │ ├── CreateEnv.tsx │ │ │ ├── HomepageFeatures.module.css │ │ │ ├── HomepageFeatures.tsx │ │ │ ├── ToolsHeader.tsx │ │ │ └── WebVarExample.tsx │ │ ├── css │ │ │ └── custom.css │ │ └── pages │ │ │ ├── index.module.css │ │ │ ├── index.tsx │ │ │ ├── markdown-page.md │ │ │ └── tools │ │ │ ├── bcrypt.tsx │ │ │ ├── index.tsx │ │ │ └── web-server.tsx │ ├── static │ │ ├── .nojekyll │ │ └── img │ │ │ ├── docs │ │ │ ├── client │ │ │ │ ├── login1.png │ │ │ │ └── login2.png │ │ │ ├── firebase-auth │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── domain.png │ │ │ ├── firebase-config │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── 4.png │ │ │ ├── firebase-storage │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── 4.png │ │ │ ├── flyio │ │ │ │ ├── Screenshot 2022-08-26 at 01-56-55 Welcome to the Fly Global Application Platform.png │ │ │ │ ├── add_credit_card.png │ │ │ │ ├── apps.png │ │ │ │ ├── connect_to_heroku.png │ │ │ │ ├── github.png │ │ │ │ ├── hostname.png │ │ │ │ ├── sign_in.png │ │ │ │ ├── sign_up.png │ │ │ │ ├── top_page.png │ │ │ │ └── top_page_signed_in.png │ │ │ ├── heroku │ │ │ │ ├── deploy_to_heroku.png │ │ │ │ ├── heroku1.png │ │ │ │ ├── heroku2.png │ │ │ │ ├── postgres1.png │ │ │ │ ├── postgres2.png │ │ │ │ ├── postgres3.png │ │ │ │ ├── postgres4.png │ │ │ │ └── postgres5.png │ │ │ ├── netlify │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ │ ├── servers-min.png │ │ │ ├── vars │ │ │ │ └── firebase_admin │ │ │ │ │ └── 1.png │ │ │ └── vercel │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ ├── logo.png │ │ │ ├── money-svgrepo-com.svg │ │ │ ├── sample_room.min.webp │ │ │ ├── sample_room.png │ │ │ ├── server-svgrepo-com.svg │ │ │ ├── square-svgrepo-com.svg │ │ │ └── tools │ │ │ ├── firebase-auth-1.png │ │ │ ├── firebase-auth-2.png │ │ │ ├── firebase-config-1.png │ │ │ ├── firebase-config-2.png │ │ │ ├── firebase-config-3.png │ │ │ └── firebase-config-4.png │ └── tsconfig.json └── tools │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.js │ ├── index.html │ ├── package.json │ ├── src │ ├── main.css │ ├── main.tsx │ ├── routeTree.gen.ts │ ├── routes │ │ ├── __root.tsx │ │ ├── bcrypt.tsx │ │ ├── index.tsx │ │ └── web-server.tsx │ ├── styles │ │ └── LayoutContentStyle.ts │ └── vite-env.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.base.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--------bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/.github/ISSUE_TEMPLATE/--------bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--------feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/.github/ISSUE_TEMPLATE/--------feature-request.md -------------------------------------------------------------------------------- /.github/workflows/auto-pull-requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/.github/workflows/auto-pull-requests.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/docker-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/.github/workflows/docker-push.yml -------------------------------------------------------------------------------- /.github/workflows/release-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/.github/workflows/release-pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/.gitignore -------------------------------------------------------------------------------- /.graphqlrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/.graphqlrc.yml -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.6.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/.yarn/releases/yarn-4.6.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/README.md -------------------------------------------------------------------------------- /README_developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/README_developer.md -------------------------------------------------------------------------------- /apps/api-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/.gitignore -------------------------------------------------------------------------------- /apps/api-server/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /coverage/ -------------------------------------------------------------------------------- /apps/api-server/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /apps/api-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/README.md -------------------------------------------------------------------------------- /apps/api-server/codegen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/codegen.ts -------------------------------------------------------------------------------- /apps/api-server/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/eslint.config.mjs -------------------------------------------------------------------------------- /apps/api-server/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/jest.config.cjs -------------------------------------------------------------------------------- /apps/api-server/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/nest-cli.json -------------------------------------------------------------------------------- /apps/api-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/package.json -------------------------------------------------------------------------------- /apps/api-server/schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/schema.gql -------------------------------------------------------------------------------- /apps/api-server/src/VERSION.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/VERSION.ts -------------------------------------------------------------------------------- /apps/api-server/src/__migrations__/mysql/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/__migrations__/mysql/snapshot.json -------------------------------------------------------------------------------- /apps/api-server/src/__migrations__/postgresql/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/__migrations__/postgresql/snapshot.json -------------------------------------------------------------------------------- /apps/api-server/src/__migrations__/sqlite/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/__migrations__/sqlite/snapshot.json -------------------------------------------------------------------------------- /apps/api-server/src/api-uploader/api-uploader.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/api-uploader/api-uploader.controller.ts -------------------------------------------------------------------------------- /apps/api-server/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/app.module.ts -------------------------------------------------------------------------------- /apps/api-server/src/auth/auth-status.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/auth/auth-status.decorator.ts -------------------------------------------------------------------------------- /apps/api-server/src/auth/auth.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/auth/auth.decorator.ts -------------------------------------------------------------------------------- /apps/api-server/src/auth/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/auth/auth.guard.ts -------------------------------------------------------------------------------- /apps/api-server/src/config/createConfigModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/config/createConfigModule.ts -------------------------------------------------------------------------------- /apps/api-server/src/config/parseError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/config/parseError.ts -------------------------------------------------------------------------------- /apps/api-server/src/config/parseErrorFromBoolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/config/parseErrorFromBoolean.ts -------------------------------------------------------------------------------- /apps/api-server/src/config/parseErrorFromInteger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/config/parseErrorFromInteger.ts -------------------------------------------------------------------------------- /apps/api-server/src/entities-graphql/room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/entities-graphql/room.ts -------------------------------------------------------------------------------- /apps/api-server/src/entities-graphql/roomAsListItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/entities-graphql/roomAsListItem.ts -------------------------------------------------------------------------------- /apps/api-server/src/entities-graphql/roomMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/entities-graphql/roomMessage.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/AnswerRollCallFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/AnswerRollCallFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/BaasType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/BaasType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/ChangeParticipantNameFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/ChangeParticipantNameFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/CloseRollCallFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/CloseRollCallFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/CreateRoomFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/CreateRoomFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/DeleteMessageFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/DeleteMessageFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/DeleteRoomAsAdminFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/DeleteRoomAsAdminFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/DeleteRoomFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/DeleteRoomFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/EditMessageFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/EditMessageFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/EntryToServerResultType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/EntryToServerResultType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/FileListType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/FileListType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/FilePermissionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/FilePermissionType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/FileSourceType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/FileSourceType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/GetRoomConnectionFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/GetRoomConnectionFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/GetRoomFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/GetRoomFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/GetRoomLogFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/GetRoomLogFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/GetRoomMessagesFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/GetRoomMessagesFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/GetRoomsListFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/GetRoomsListFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/JoinRoomFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/JoinRoomFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/LeaveRoomFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/LeaveRoomFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/MakeMessageNotSecretFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/MakeMessageNotSecretFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/OperateRoomFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/OperateRoomFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/ParticipantRoleOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/ParticipantRoleOperation.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/ParticipantRoleType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/ParticipantRoleType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/PerformRollCallFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/PerformRollCallFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/PieceLogType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/PieceLogType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/PrereleaseType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/PrereleaseType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/PromoteFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/PromoteFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/ResetRoomMessagesFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/ResetRoomMessagesFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/RoomParameterNameType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/RoomParameterNameType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/UpdateBookmarkFailureType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/UpdateBookmarkFailureType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/WritingMessageStatusInputType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/WritingMessageStatusInputType.ts -------------------------------------------------------------------------------- /apps/api-server/src/enums/WritingMessageStatusType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/enums/WritingMessageStatusType.ts -------------------------------------------------------------------------------- /apps/api-server/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/env.ts -------------------------------------------------------------------------------- /apps/api-server/src/flocon-logger/flocon-logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/flocon-logger/flocon-logger.service.ts -------------------------------------------------------------------------------- /apps/api-server/src/gitTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/gitTags.ts -------------------------------------------------------------------------------- /apps/api-server/src/graphql-codegen/gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/graphql-codegen/gql.ts -------------------------------------------------------------------------------- /apps/api-server/src/graphql-codegen/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/graphql-codegen/graphql.ts -------------------------------------------------------------------------------- /apps/api-server/src/graphql-codegen/index.ts: -------------------------------------------------------------------------------- 1 | export * from './gql'; 2 | -------------------------------------------------------------------------------- /apps/api-server/src/graphql/objects/fileItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/graphql/objects/fileItem.ts -------------------------------------------------------------------------------- /apps/api-server/src/graphql/objects/filePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/graphql/objects/filePath.ts -------------------------------------------------------------------------------- /apps/api-server/src/graphql/objects/room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/graphql/objects/room.ts -------------------------------------------------------------------------------- /apps/api-server/src/graphql/objects/roomMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/graphql/objects/roomMessage.ts -------------------------------------------------------------------------------- /apps/api-server/src/graphql/objects/serverInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/graphql/objects/serverInfo.ts -------------------------------------------------------------------------------- /apps/api-server/src/graphql/registerEnumTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/graphql/registerEnumTypes.ts -------------------------------------------------------------------------------- /apps/api-server/src/graphql/resolvers/allResolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/graphql/resolvers/allResolvers.ts -------------------------------------------------------------------------------- /apps/api-server/src/graphql/resolvers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/graphql/resolvers/types.ts -------------------------------------------------------------------------------- /apps/api-server/src/graphql/resolvers/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/graphql/resolvers/utils/utils.ts -------------------------------------------------------------------------------- /apps/api-server/src/graphql/tsTypeObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/graphql/tsTypeObject.ts -------------------------------------------------------------------------------- /apps/api-server/src/headers/headers.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/headers/headers.interceptor.ts -------------------------------------------------------------------------------- /apps/api-server/src/index-error/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/index-error/error.html -------------------------------------------------------------------------------- /apps/api-server/src/index-error/index-error.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/index-error/index-error.controller.ts -------------------------------------------------------------------------------- /apps/api-server/src/index-ok/index-ok.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/index-ok/index-ok.controller.spec.ts -------------------------------------------------------------------------------- /apps/api-server/src/index-ok/index-ok.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/index-ok/index-ok.controller.ts -------------------------------------------------------------------------------- /apps/api-server/src/index-ok/ok.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/index-ok/ok.html -------------------------------------------------------------------------------- /apps/api-server/src/log-config/log-config.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/log-config/log-config.service.spec.ts -------------------------------------------------------------------------------- /apps/api-server/src/log-config/log-config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/log-config/log-config.service.ts -------------------------------------------------------------------------------- /apps/api-server/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/main.ts -------------------------------------------------------------------------------- /apps/api-server/src/migration/migration.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/migration/migration.service.spec.ts -------------------------------------------------------------------------------- /apps/api-server/src/migration/migration.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/migration/migration.service.ts -------------------------------------------------------------------------------- /apps/api-server/src/mikro-orm/entities/file/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/mikro-orm/entities/file/entity.ts -------------------------------------------------------------------------------- /apps/api-server/src/mikro-orm/entities/fileTag/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/mikro-orm/entities/fileTag/entity.ts -------------------------------------------------------------------------------- /apps/api-server/src/mikro-orm/entities/room/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/mikro-orm/entities/room/entity.ts -------------------------------------------------------------------------------- /apps/api-server/src/mikro-orm/entities/room/isBookmarked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/mikro-orm/entities/room/isBookmarked.ts -------------------------------------------------------------------------------- /apps/api-server/src/mikro-orm/entities/room/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/mikro-orm/entities/room/role.ts -------------------------------------------------------------------------------- /apps/api-server/src/mikro-orm/entities/user/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/mikro-orm/entities/user/entity.ts -------------------------------------------------------------------------------- /apps/api-server/src/mikro-orm/mikro-orm.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/mikro-orm/mikro-orm.service.ts -------------------------------------------------------------------------------- /apps/api-server/src/mikro-orm/utils/createORM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/mikro-orm/utils/createORM.ts -------------------------------------------------------------------------------- /apps/api-server/src/mikro-orm/utils/createORMOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/mikro-orm/utils/createORMOptions.ts -------------------------------------------------------------------------------- /apps/api-server/src/mikro-orm/utils/determineDatabaseUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/mikro-orm/utils/determineDatabaseUrl.ts -------------------------------------------------------------------------------- /apps/api-server/src/mikro-orm/utils/mikro-orm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/mikro-orm/utils/mikro-orm.ts -------------------------------------------------------------------------------- /apps/api-server/src/port-config/port-config.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/port-config/port-config.service.spec.ts -------------------------------------------------------------------------------- /apps/api-server/src/port-config/port-config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/port-config/port-config.service.ts -------------------------------------------------------------------------------- /apps/api-server/src/prepare-app/prepare-app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/prepare-app/prepare-app.module.ts -------------------------------------------------------------------------------- /apps/api-server/src/pub-sub/pub-sub.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/pub-sub/pub-sub.service.ts -------------------------------------------------------------------------------- /apps/api-server/src/run-bcryptInteractive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/run-bcryptInteractive.ts -------------------------------------------------------------------------------- /apps/api-server/src/run-generateFlyioDockerfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/run-generateFlyioDockerfile.ts -------------------------------------------------------------------------------- /apps/api-server/src/run-generateGitTagsTxt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/run-generateGitTagsTxt.ts -------------------------------------------------------------------------------- /apps/api-server/src/run-generateGithubReleaseName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/run-generateGithubReleaseName.ts -------------------------------------------------------------------------------- /apps/api-server/src/run-migrationCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/run-migrationCheck.ts -------------------------------------------------------------------------------- /apps/api-server/src/run-migrationCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/run-migrationCreate.ts -------------------------------------------------------------------------------- /apps/api-server/src/run-migrationDown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/run-migrationDown.ts -------------------------------------------------------------------------------- /apps/api-server/src/run-migrationUp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/run-migrationUp.ts -------------------------------------------------------------------------------- /apps/api-server/src/server-config/server-config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/server-config/server-config.service.ts -------------------------------------------------------------------------------- /apps/api-server/src/setup-server/setup-server.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/setup-server/setup-server.service.ts -------------------------------------------------------------------------------- /apps/api-server/src/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /apps/api-server/src/test/beforeAllGlobal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/test/beforeAllGlobal.ts -------------------------------------------------------------------------------- /apps/api-server/src/test/createORMOptions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/test/createORMOptions.test.ts -------------------------------------------------------------------------------- /apps/api-server/src/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/test/jest-e2e.json -------------------------------------------------------------------------------- /apps/api-server/src/test/resolvers/resolvers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/test/resolvers/resolvers.test.ts -------------------------------------------------------------------------------- /apps/api-server/src/test/resolvers/utils/dbConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/test/resolvers/utils/dbConfig.ts -------------------------------------------------------------------------------- /apps/api-server/src/test/resolvers/utils/graphqlType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/test/resolvers/utils/graphqlType.ts -------------------------------------------------------------------------------- /apps/api-server/src/test/resolvers/utils/maskKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/test/resolvers/utils/maskKeys.ts -------------------------------------------------------------------------------- /apps/api-server/src/test/resolvers/utils/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/test/resolvers/utils/resources.ts -------------------------------------------------------------------------------- /apps/api-server/src/test/resolvers/utils/subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/test/resolvers/utils/subscription.ts -------------------------------------------------------------------------------- /apps/api-server/src/test/resolvers/utils/testClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/test/resolvers/utils/testClient.ts -------------------------------------------------------------------------------- /apps/api-server/src/test/resolvers/utils/testClients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/test/resolvers/utils/testClients.ts -------------------------------------------------------------------------------- /apps/api-server/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/types.ts -------------------------------------------------------------------------------- /apps/api-server/src/utils/appConsole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/utils/appConsole.ts -------------------------------------------------------------------------------- /apps/api-server/src/utils/asyncLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/utils/asyncLock.ts -------------------------------------------------------------------------------- /apps/api-server/src/utils/convertToMaxLength100String.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/utils/convertToMaxLength100String.ts -------------------------------------------------------------------------------- /apps/api-server/src/utils/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/utils/migrations.ts -------------------------------------------------------------------------------- /apps/api-server/src/utils/parseExecutionContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/utils/parseExecutionContext.ts -------------------------------------------------------------------------------- /apps/api-server/src/utils/thumbsDir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/utils/thumbsDir.ts -------------------------------------------------------------------------------- /apps/api-server/src/yargs/yargs.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/yargs/yargs.service.spec.ts -------------------------------------------------------------------------------- /apps/api-server/src/yargs/yargs.service.stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/yargs/yargs.service.stub.ts -------------------------------------------------------------------------------- /apps/api-server/src/yargs/yargs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/src/yargs/yargs.service.ts -------------------------------------------------------------------------------- /apps/api-server/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/tsconfig.build.json -------------------------------------------------------------------------------- /apps/api-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/tsconfig.json -------------------------------------------------------------------------------- /apps/api-server/tsconfig.ts-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/api-server/tsconfig.ts-node.json -------------------------------------------------------------------------------- /apps/web-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/.gitignore -------------------------------------------------------------------------------- /apps/web-server/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /coverage/ -------------------------------------------------------------------------------- /apps/web-server/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /apps/web-server/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/.storybook/main.ts -------------------------------------------------------------------------------- /apps/web-server/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/.storybook/preview.ts -------------------------------------------------------------------------------- /apps/web-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/README.md -------------------------------------------------------------------------------- /apps/web-server/README_vite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/README_vite.md -------------------------------------------------------------------------------- /apps/web-server/codegen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/codegen.ts -------------------------------------------------------------------------------- /apps/web-server/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/eslint.config.js -------------------------------------------------------------------------------- /apps/web-server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/index.html -------------------------------------------------------------------------------- /apps/web-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/package.json -------------------------------------------------------------------------------- /apps/web-server/public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/_redirects -------------------------------------------------------------------------------- /apps/web-server/public/assets/chat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/assets/chat.mp3 -------------------------------------------------------------------------------- /apps/web-server/public/assets/dice/0-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/assets/dice/0-6.png -------------------------------------------------------------------------------- /apps/web-server/public/assets/dice/1-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/assets/dice/1-6.png -------------------------------------------------------------------------------- /apps/web-server/public/assets/dice/2-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/assets/dice/2-6.png -------------------------------------------------------------------------------- /apps/web-server/public/assets/dice/3-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/assets/dice/3-6.png -------------------------------------------------------------------------------- /apps/web-server/public/assets/dice/4-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/assets/dice/4-6.png -------------------------------------------------------------------------------- /apps/web-server/public/assets/dice/5-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/assets/dice/5-6.png -------------------------------------------------------------------------------- /apps/web-server/public/assets/dice/6-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/assets/dice/6-6.png -------------------------------------------------------------------------------- /apps/web-server/public/assets/dice/q-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/assets/dice/q-6.png -------------------------------------------------------------------------------- /apps/web-server/public/assets/diceroll.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/assets/diceroll.mp3 -------------------------------------------------------------------------------- /apps/web-server/public/assets/kari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/assets/kari.png -------------------------------------------------------------------------------- /apps/web-server/public/assets/log/dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/assets/log/dice.png -------------------------------------------------------------------------------- /apps/web-server/public/assets/log/noname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/assets/log/noname.png -------------------------------------------------------------------------------- /apps/web-server/public/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/assets/logo.png -------------------------------------------------------------------------------- /apps/web-server/public/assets/roll-call.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/assets/roll-call.mp3 -------------------------------------------------------------------------------- /apps/web-server/public/env.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/env.txt -------------------------------------------------------------------------------- /apps/web-server/public/licenses-npm-package.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/licenses-npm-package.txt -------------------------------------------------------------------------------- /apps/web-server/public/licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/licenses.md -------------------------------------------------------------------------------- /apps/web-server/public/privacy_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/privacy_policy.md -------------------------------------------------------------------------------- /apps/web-server/public/tos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/public/tos.md -------------------------------------------------------------------------------- /apps/web-server/src/VERSION.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/VERSION.ts -------------------------------------------------------------------------------- /apps/web-server/src/atoms/fetchTosAtom/fetchTosAtom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/atoms/fetchTosAtom/fetchTosAtom.tsx -------------------------------------------------------------------------------- /apps/web-server/src/atoms/roomConfigAtom/roomConfigAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/atoms/roomConfigAtom/roomConfigAtom.ts -------------------------------------------------------------------------------- /apps/web-server/src/atoms/storybookAtom/storybookAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/atoms/storybookAtom/storybookAtom.ts -------------------------------------------------------------------------------- /apps/web-server/src/atoms/userConfigAtom/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/atoms/userConfigAtom/types.ts -------------------------------------------------------------------------------- /apps/web-server/src/atoms/userConfigAtom/userConfigAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/atoms/userConfigAtom/userConfigAtom.ts -------------------------------------------------------------------------------- /apps/web-server/src/atoms/userConfigAtom/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/atoms/userConfigAtom/utils.ts -------------------------------------------------------------------------------- /apps/web-server/src/atoms/webConfigAtom/fakeEnvText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/atoms/webConfigAtom/fakeEnvText.ts -------------------------------------------------------------------------------- /apps/web-server/src/atoms/webConfigAtom/webConfigAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/atoms/webConfigAtom/webConfigAtom.ts -------------------------------------------------------------------------------- /apps/web-server/src/components/models/room/Room/Room.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/components/models/room/Room/Room.tsx -------------------------------------------------------------------------------- /apps/web-server/src/components/pages/TextPage/TextPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/components/pages/TextPage/TextPage.tsx -------------------------------------------------------------------------------- /apps/web-server/src/components/ui/Center/Center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/components/ui/Center/Center.tsx -------------------------------------------------------------------------------- /apps/web-server/src/components/ui/Fieldset/Fieldset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/components/ui/Fieldset/Fieldset.tsx -------------------------------------------------------------------------------- /apps/web-server/src/components/ui/InputModal/InputModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/components/ui/InputModal/InputModal.tsx -------------------------------------------------------------------------------- /apps/web-server/src/components/ui/Jdenticon/Jdenticon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/components/ui/Jdenticon/Jdenticon.tsx -------------------------------------------------------------------------------- /apps/web-server/src/components/ui/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/components/ui/Layout/Layout.tsx -------------------------------------------------------------------------------- /apps/web-server/src/components/ui/Table/Table.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/components/ui/Table/Table.stories.tsx -------------------------------------------------------------------------------- /apps/web-server/src/components/ui/Table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/components/ui/Table/Table.tsx -------------------------------------------------------------------------------- /apps/web-server/src/components/ui/TomlInput/Tomllnput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/components/ui/TomlInput/Tomllnput.tsx -------------------------------------------------------------------------------- /apps/web-server/src/components/ui/UISelector/UISelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/components/ui/UISelector/UISelector.tsx -------------------------------------------------------------------------------- /apps/web-server/src/components/ui/VolumeBar/VolumeBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/components/ui/VolumeBar/VolumeBar.tsx -------------------------------------------------------------------------------- /apps/web-server/src/configType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/configType.ts -------------------------------------------------------------------------------- /apps/web-server/src/contexts/AntdThemeContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/contexts/AntdThemeContext.ts -------------------------------------------------------------------------------- /apps/web-server/src/contexts/RoomClientContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/contexts/RoomClientContext.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql-codegen/fragment-masking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql-codegen/fragment-masking.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql-codegen/gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql-codegen/gql.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql-codegen/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql-codegen/graphql.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql-codegen/index.ts: -------------------------------------------------------------------------------- 1 | export * from './gql'; 2 | -------------------------------------------------------------------------------- /apps/web-server/src/graphql/AnswerRollCallDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/AnswerRollCallDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/ChangeParticipantNameDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/ChangeParticipantNameDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/CloseRollCallDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/CloseRollCallDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/CreateRoomDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/CreateRoomDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/DeleteFilesDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/DeleteFilesDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/DeleteMessageDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/DeleteMessageDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/DeleteRoomAsAdminDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/DeleteRoomAsAdminDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/DeleteRoomDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/DeleteRoomDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/EditMessageDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/EditMessageDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/EntryToServerDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/EntryToServerDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/FilePathFragmentDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/FilePathFragmentDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/GetAvailableGameSystemsDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/GetAvailableGameSystemsDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/GetDiceHelpMessagesDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/GetDiceHelpMessagesDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/GetFilesDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/GetFilesDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/GetLogDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/GetLogDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/GetMyRolesDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/GetMyRolesDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/GetRoomAsListItemDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/GetRoomAsListItemDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/GetRoomsListDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/GetRoomsListDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/GetServerInfoDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/GetServerInfoDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/JoinRoomDocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/JoinRoomDocs.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/LeaveRoomDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/LeaveRoomDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/MakeMessageNotSecretDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/MakeMessageNotSecretDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/PerformRollCallDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/PerformRollCallDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/PromoteToPlayerDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/PromoteToPlayerDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/RenameFilesDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/RenameFilesDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/ResetMessagesDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/ResetMessagesDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/UpdateBookmarkDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/UpdateBookmarkDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/graphql/WriteRoomSoundEffectDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/graphql/WriteRoomSoundEffectDoc.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/imageHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/imageHooks.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/roomClientHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/roomClientHooks.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/srcHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/srcHooks.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useAddNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useAddNotification.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useAllContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useAllContext.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useAtomSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useAtomSelector.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useBufferValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useBufferValue.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useCompositeKeyMemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useCompositeKeyMemo.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useFirebaseStorageListAllQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useFirebaseStorageListAllQuery.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useFirebaseStorageUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useFirebaseStorageUrl.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useFirebaseStorageUrlQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useFirebaseStorageUrlQuery.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useGetApiSemVer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useGetApiSemVer.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useGetMyRoles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useGetMyRoles.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useImmerSetAtom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useImmerSetAtom.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useMyUserUid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useMyUserUid.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useOpenFirebaseStorageFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useOpenFirebaseStorageFile.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useOpenFloconUploaderFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useOpenFloconUploaderFile.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useRoomGraphQLStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useRoomGraphQLStatus.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useRoomState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useRoomState.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useRoomStateValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useRoomStateValue.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useRoomStateValueSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useRoomStateValueSelector.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useSetupApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useSetupApp.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useSetupStorybook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useSetupStorybook.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useSignOut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useSignOut.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useSingleExecuteAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useSingleExecuteAsync.ts -------------------------------------------------------------------------------- /apps/web-server/src/hooks/useWebConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/hooks/useWebConfig.ts -------------------------------------------------------------------------------- /apps/web-server/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/main.tsx -------------------------------------------------------------------------------- /apps/web-server/src/mocks/createMockUrqlClientForLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/mocks/createMockUrqlClientForLayout.tsx -------------------------------------------------------------------------------- /apps/web-server/src/mocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/mocks/index.ts -------------------------------------------------------------------------------- /apps/web-server/src/mocks/withPromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/mocks/withPromise.ts -------------------------------------------------------------------------------- /apps/web-server/src/monaco/characterCommandLibSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/monaco/characterCommandLibSource.ts -------------------------------------------------------------------------------- /apps/web-server/src/monaco/defaultLibSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/monaco/defaultLibSource.ts -------------------------------------------------------------------------------- /apps/web-server/src/monaco/floconLibSource.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/monaco/floconLibSource.d.ts -------------------------------------------------------------------------------- /apps/web-server/src/monaco/floconLibSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/monaco/floconLibSource.ts -------------------------------------------------------------------------------- /apps/web-server/src/monaco/typescriptLibSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/monaco/typescriptLibSource.ts -------------------------------------------------------------------------------- /apps/web-server/src/resources/text/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/resources/text/main.ts -------------------------------------------------------------------------------- /apps/web-server/src/routeTree.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/routeTree.gen.ts -------------------------------------------------------------------------------- /apps/web-server/src/routes/__root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/routes/__root.tsx -------------------------------------------------------------------------------- /apps/web-server/src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/routes/index.tsx -------------------------------------------------------------------------------- /apps/web-server/src/routes/licenses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/routes/licenses.tsx -------------------------------------------------------------------------------- /apps/web-server/src/routes/privacy_policy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/routes/privacy_policy.tsx -------------------------------------------------------------------------------- /apps/web-server/src/routes/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/routes/profile.tsx -------------------------------------------------------------------------------- /apps/web-server/src/routes/rooms/$id.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/routes/rooms/$id.lazy.tsx -------------------------------------------------------------------------------- /apps/web-server/src/routes/rooms/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/routes/rooms/create.tsx -------------------------------------------------------------------------------- /apps/web-server/src/routes/rooms/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/routes/rooms/index.tsx -------------------------------------------------------------------------------- /apps/web-server/src/routes/signin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/routes/signin.tsx -------------------------------------------------------------------------------- /apps/web-server/src/routes/text/env.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/routes/text/env.tsx -------------------------------------------------------------------------------- /apps/web-server/src/routes/text/privacy_policy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/routes/text/privacy_policy.tsx -------------------------------------------------------------------------------- /apps/web-server/src/routes/text/tos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/routes/text/tos.tsx -------------------------------------------------------------------------------- /apps/web-server/src/routes/tos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/routes/tos.tsx -------------------------------------------------------------------------------- /apps/web-server/src/styles/className.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/styles/className.ts -------------------------------------------------------------------------------- /apps/web-server/src/styles/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/styles/css/main.scss -------------------------------------------------------------------------------- /apps/web-server/src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/styles/index.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/analyzeUrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/analyzeUrl.test.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/analyzeUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/analyzeUrl.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/character/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/character/command.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/constants.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/dotEnvParse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/dotEnvParse.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/extname.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/extname.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/file/filePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/file/filePath.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/file/firebaseStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/file/firebaseStorage.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/file/getFloconUploaderFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/file/getFloconUploaderFile.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/fileType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/fileType.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/filename.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/filename.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/firebase/firebaseUserState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/firebase/firebaseUserState.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/keySorter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/keySorter.test.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/keySorter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/keySorter.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/mergeStyles.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/mergeStyles.test.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/mergeStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/mergeStyles.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/moveElement.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/moveElement.test.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/moveElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/moveElement.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/range.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/rgb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/rgb.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/rgba.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/rgba.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/setStateWithImmer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/setStateWithImmer.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/tryParseJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/tryParseJSON.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/types.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/variables.ts -------------------------------------------------------------------------------- /apps/web-server/src/utils/zod/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/utils/zod/record.ts -------------------------------------------------------------------------------- /apps/web-server/src/versioning/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/versioning/DESIGN.md -------------------------------------------------------------------------------- /apps/web-server/src/versioning/apiServerSatisfies.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/versioning/apiServerSatisfies.test.ts -------------------------------------------------------------------------------- /apps/web-server/src/versioning/apiServerSatisfies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/versioning/apiServerSatisfies.ts -------------------------------------------------------------------------------- /apps/web-server/src/versioning/semVerRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/src/versioning/semVerRange.ts -------------------------------------------------------------------------------- /apps/web-server/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/web-server/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/tsconfig.app.json -------------------------------------------------------------------------------- /apps/web-server/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/tsconfig.base.json -------------------------------------------------------------------------------- /apps/web-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/tsconfig.json -------------------------------------------------------------------------------- /apps/web-server/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/tsconfig.node.json -------------------------------------------------------------------------------- /apps/web-server/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/apps/web-server/vite.config.ts -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/api-server-swap256mb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/docker/api-server-swap256mb/Dockerfile -------------------------------------------------------------------------------- /docker/api-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/docker/api-server/Dockerfile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/package.json -------------------------------------------------------------------------------- /packages/cache/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /coverage/ -------------------------------------------------------------------------------- /packages/cache/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /packages/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/cache/README.md -------------------------------------------------------------------------------- /packages/cache/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/cache/eslint.config.mjs -------------------------------------------------------------------------------- /packages/cache/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'ts-jest', 3 | }; 4 | -------------------------------------------------------------------------------- /packages/cache/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/cache/package.json -------------------------------------------------------------------------------- /packages/cache/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/cache/rollup.config.js -------------------------------------------------------------------------------- /packages/cache/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/cache/src/index.ts -------------------------------------------------------------------------------- /packages/cache/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/cache/src/main.ts -------------------------------------------------------------------------------- /packages/cache/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/cache/test/index.test.ts -------------------------------------------------------------------------------- /packages/cache/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/cache/tsconfig.json -------------------------------------------------------------------------------- /packages/core/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /coverage/ -------------------------------------------------------------------------------- /packages/core/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/README.md -------------------------------------------------------------------------------- /packages/core/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/eslint.config.mjs -------------------------------------------------------------------------------- /packages/core/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/jest.config.js -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/rollup.config.js -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/src/internal/__test__/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/__test__/fixtures.ts -------------------------------------------------------------------------------- /packages/core/src/internal/__test__/normalizeRoomState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/__test__/normalizeRoomState.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/bgm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/bgm.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/bgms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/bgms.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/boolParam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/boolParam.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/boolParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/boolParams.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/character.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/character.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/filePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/filePath.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/main.test.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/main.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/numParam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/numParam.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/numParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/numParams.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/paramNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/paramNames.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/participant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/participant.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/room.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/stateRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/stateRecord.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/strParam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/strParam.ts -------------------------------------------------------------------------------- /packages/core/src/internal/command/strParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/command/strParams.ts -------------------------------------------------------------------------------- /packages/core/src/internal/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/constants.ts -------------------------------------------------------------------------------- /packages/core/src/internal/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/env.ts -------------------------------------------------------------------------------- /packages/core/src/internal/expression.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/expression.test.ts -------------------------------------------------------------------------------- /packages/core/src/internal/expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/expression.ts -------------------------------------------------------------------------------- /packages/core/src/internal/fake/fakeFirebaseConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/fake/fakeFirebaseConfig.ts -------------------------------------------------------------------------------- /packages/core/src/internal/firebaseConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/firebaseConfig.ts -------------------------------------------------------------------------------- /packages/core/src/internal/forceMaxLength100String.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/forceMaxLength100String.ts -------------------------------------------------------------------------------- /packages/core/src/internal/indexes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/indexes.ts -------------------------------------------------------------------------------- /packages/core/src/internal/maxLengthString.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/maxLengthString.test.ts -------------------------------------------------------------------------------- /packages/core/src/internal/maxLengthString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/maxLengthString.ts -------------------------------------------------------------------------------- /packages/core/src/internal/maybe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/maybe.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/DESIGN.md -------------------------------------------------------------------------------- /packages/core/src/internal/ot/array.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/array.test.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/array.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/boardPosition/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/boardPosition/types.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/compositeKey/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/compositeKey/types.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/filePath/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/filePath/types.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/piece/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/piece/functions.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/piece/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/piece/log.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/piece/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/piece/types.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/room/bgm/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/room/bgm/functions.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/room/bgm/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/room/bgm/types.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/room/board/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/room/board/types.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/room/converter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/room/converter.test.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/room/converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/room/converter.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/room/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/room/functions.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/room/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/room/log.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/room/memo/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/room/memo/functions.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/room/memo/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/room/memo/types.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/room/rollCall/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/room/rollCall/types.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/room/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/room/types.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/shape/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/shape/functions.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/flocon/shape/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/flocon/shape/types.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/generator/functions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/generator/functions.test.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/generator/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/generator/functions.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/generator/omitVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/generator/omitVersion.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/generator/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/generator/types.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/nullableTextOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/nullableTextOperation.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/ot.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/ot.test.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/otError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/otError.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/paramRecordOperation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/paramRecordOperation.test.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/paramRecordOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/paramRecordOperation.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/record.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/recordOperation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/recordOperation.test.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/recordOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/recordOperation.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/recordOperationElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/recordOperationElement.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/requestedBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/requestedBy.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/shape.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/textOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/textOperation.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/util/array/arrayDiff.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/util/array/arrayDiff.test.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/util/array/arrayDiff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/util/array/arrayDiff.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/util/array/arrayTransform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/util/array/arrayTransform.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/util/createOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/util/createOperation.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/util/isValidKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/util/isValidKey.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/util/replaceOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/util/replaceOperation.ts -------------------------------------------------------------------------------- /packages/core/src/internal/ot/util/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/ot/util/type.ts -------------------------------------------------------------------------------- /packages/core/src/internal/publicChannelKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/publicChannelKey.ts -------------------------------------------------------------------------------- /packages/core/src/internal/simpleId.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/simpleId.test.ts -------------------------------------------------------------------------------- /packages/core/src/internal/simpleId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/simpleId.ts -------------------------------------------------------------------------------- /packages/core/src/internal/toml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/toml.ts -------------------------------------------------------------------------------- /packages/core/src/internal/uploaderPath.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/uploaderPath.test.ts -------------------------------------------------------------------------------- /packages/core/src/internal/uploaderPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/src/internal/uploaderPath.ts -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /packages/default-pino-transport/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /coverage/ -------------------------------------------------------------------------------- /packages/default-pino-transport/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /packages/default-pino-transport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/default-pino-transport/README.md -------------------------------------------------------------------------------- /packages/default-pino-transport/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/default-pino-transport/eslint.config.mjs -------------------------------------------------------------------------------- /packages/default-pino-transport/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'ts-jest', 3 | }; 4 | -------------------------------------------------------------------------------- /packages/default-pino-transport/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/default-pino-transport/package.json -------------------------------------------------------------------------------- /packages/default-pino-transport/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/default-pino-transport/rollup.config.js -------------------------------------------------------------------------------- /packages/default-pino-transport/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/default-pino-transport/src/index.ts -------------------------------------------------------------------------------- /packages/default-pino-transport/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/default-pino-transport/tsconfig.json -------------------------------------------------------------------------------- /packages/eslint-config/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /packages/eslint-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/eslint-config/README.md -------------------------------------------------------------------------------- /packages/eslint-config/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/eslint-config/index.mjs -------------------------------------------------------------------------------- /packages/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/eslint-config/package.json -------------------------------------------------------------------------------- /packages/flocon-script/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /coverage/ -------------------------------------------------------------------------------- /packages/flocon-script/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /packages/flocon-script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/README.md -------------------------------------------------------------------------------- /packages/flocon-script/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/docs.md -------------------------------------------------------------------------------- /packages/flocon-script/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/eslint.config.mjs -------------------------------------------------------------------------------- /packages/flocon-script/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'ts-jest', 3 | }; 4 | -------------------------------------------------------------------------------- /packages/flocon-script/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/package.json -------------------------------------------------------------------------------- /packages/flocon-script/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/rollup.config.js -------------------------------------------------------------------------------- /packages/flocon-script/src/ScriptError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/ScriptError.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/builtIn/Array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/builtIn/Array.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/builtIn/Map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/builtIn/Map.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/builtIn/Symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/builtIn/Symbol.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/builtIn/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/builtIn/console.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/context.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/fExpression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/fExpression.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/fPattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/fPattern.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/fStatement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/fStatement.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/getRestValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/getRestValues.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/index.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/main.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/range.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/FArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/FArray.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/FBoolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/FBoolean.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/FFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/FFunction.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/FGlobalRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/FGlobalRecord.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/FIterator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/FIterator.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/FMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/FMap.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/FNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/FNumber.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/FObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/FObject.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/FRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/FRecord.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/FRecordRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/FRecordRef.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/FString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/FString.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/FSymbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/FSymbol.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/FType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/FType.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/FValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/FValue.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/cast.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/compare.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/eqeq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/eqeq.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/eqeqeq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/eqeqeq.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/isTruthy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/isTruthy.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/toFGlobalRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/toFGlobalRecord.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/toFRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/toFRecord.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/toFValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/toFValue.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/toPrimitive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/toPrimitive.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/toPropertyName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/toPropertyName.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/toTypeName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/toTypeName.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/tryToPropertyName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/tryToPropertyName.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/scriptValue/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/scriptValue/types.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/utils/mapIterator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/utils/mapIterator.ts -------------------------------------------------------------------------------- /packages/flocon-script/src/utils/toJObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/src/utils/toJObject.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/_basic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/_basic.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/array.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/array.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/arrowFunction.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/arrowFunction.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/assignment.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/assignment.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/binaryExpression.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/binaryExpression.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/console.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/console.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/declaration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/declaration.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/docsmd.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/docsmd.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/fRecordRef.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/fRecordRef.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/for-of.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/for-of.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/for.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/for.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/if.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/if.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/incrementAndDecrement.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/incrementAndDecrement.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/map.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/map.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/others.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/others.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/security.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/security.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/spread.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/spread.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/switch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/switch.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/symbol.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/symbol.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/test/unaryExpression.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/test/unaryExpression.test.ts -------------------------------------------------------------------------------- /packages/flocon-script/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/flocon-script/tsconfig.json -------------------------------------------------------------------------------- /packages/graphql-documents/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /coverage/ -------------------------------------------------------------------------------- /packages/graphql-documents/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /packages/graphql-documents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/graphql-documents/README.md -------------------------------------------------------------------------------- /packages/graphql-documents/codegen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/graphql-documents/codegen.ts -------------------------------------------------------------------------------- /packages/graphql-documents/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/graphql-documents/eslint.config.mjs -------------------------------------------------------------------------------- /packages/graphql-documents/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/graphql-documents/package.json -------------------------------------------------------------------------------- /packages/graphql-documents/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/graphql-documents/rollup.config.js -------------------------------------------------------------------------------- /packages/graphql-documents/src/graphql-codegen/gql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/graphql-documents/src/graphql-codegen/gql.ts -------------------------------------------------------------------------------- /packages/graphql-documents/src/graphql-codegen/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/graphql-documents/src/graphql-codegen/graphql.ts -------------------------------------------------------------------------------- /packages/graphql-documents/src/graphql-codegen/index.ts: -------------------------------------------------------------------------------- 1 | export * from './gql'; 2 | -------------------------------------------------------------------------------- /packages/graphql-documents/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/graphql-documents/src/index.ts -------------------------------------------------------------------------------- /packages/graphql-documents/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/graphql-documents/tsconfig.json -------------------------------------------------------------------------------- /packages/logger-base/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /coverage/ -------------------------------------------------------------------------------- /packages/logger-base/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /packages/logger-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/logger-base/README.md -------------------------------------------------------------------------------- /packages/logger-base/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/logger-base/eslint.config.mjs -------------------------------------------------------------------------------- /packages/logger-base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/logger-base/package.json -------------------------------------------------------------------------------- /packages/logger-base/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/logger-base/rollup.config.js -------------------------------------------------------------------------------- /packages/logger-base/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/logger-base/src/index.ts -------------------------------------------------------------------------------- /packages/logger-base/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/logger-base/tsconfig.json -------------------------------------------------------------------------------- /packages/prettier-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/prettier-config/README.md -------------------------------------------------------------------------------- /packages/prettier-config/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/prettier-config/index.json -------------------------------------------------------------------------------- /packages/prettier-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/prettier-config/package.json -------------------------------------------------------------------------------- /packages/rollup-config/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /coverage/ 3 | /index.js -------------------------------------------------------------------------------- /packages/rollup-config/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /packages/rollup-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/rollup-config/README.md -------------------------------------------------------------------------------- /packages/rollup-config/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/rollup-config/eslint.config.mjs -------------------------------------------------------------------------------- /packages/rollup-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/rollup-config/index.js -------------------------------------------------------------------------------- /packages/rollup-config/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/rollup-config/index.js.map -------------------------------------------------------------------------------- /packages/rollup-config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/rollup-config/index.ts -------------------------------------------------------------------------------- /packages/rollup-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/rollup-config/package.json -------------------------------------------------------------------------------- /packages/rollup-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/rollup-config/tsconfig.json -------------------------------------------------------------------------------- /packages/sdk-react/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /coverage/ -------------------------------------------------------------------------------- /packages/sdk-react/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /packages/sdk-react/README.md: -------------------------------------------------------------------------------- 1 | # web-server SDK for React 2 | -------------------------------------------------------------------------------- /packages/sdk-react/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-react/eslint.config.mjs -------------------------------------------------------------------------------- /packages/sdk-react/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-react/jest.config.js -------------------------------------------------------------------------------- /packages/sdk-react/jestSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-react/jestSetup.js -------------------------------------------------------------------------------- /packages/sdk-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-react/package.json -------------------------------------------------------------------------------- /packages/sdk-react/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-react/rollup.config.js -------------------------------------------------------------------------------- /packages/sdk-react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-react/src/index.ts -------------------------------------------------------------------------------- /packages/sdk-react/src/internal/hooks/useRoomConnections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-react/src/internal/hooks/useRoomConnections.ts -------------------------------------------------------------------------------- /packages/sdk-react/src/internal/hooks/useRoomMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-react/src/internal/hooks/useRoomMessages.ts -------------------------------------------------------------------------------- /packages/sdk-react/src/internal/hooks/useRoomState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-react/src/internal/hooks/useRoomState.ts -------------------------------------------------------------------------------- /packages/sdk-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-react/tsconfig.json -------------------------------------------------------------------------------- /packages/sdk-urql/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /coverage/ -------------------------------------------------------------------------------- /packages/sdk-urql/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /packages/sdk-urql/README.md: -------------------------------------------------------------------------------- 1 | # web-server SDK for urql 2 | -------------------------------------------------------------------------------- /packages/sdk-urql/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-urql/eslint.config.mjs -------------------------------------------------------------------------------- /packages/sdk-urql/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'ts-jest', 3 | }; 4 | -------------------------------------------------------------------------------- /packages/sdk-urql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-urql/package.json -------------------------------------------------------------------------------- /packages/sdk-urql/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-urql/rollup.config.js -------------------------------------------------------------------------------- /packages/sdk-urql/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-urql/src/index.ts -------------------------------------------------------------------------------- /packages/sdk-urql/src/internal/createGraphQLClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-urql/src/internal/createGraphQLClient.ts -------------------------------------------------------------------------------- /packages/sdk-urql/src/internal/createUrqlClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-urql/src/internal/createUrqlClient.ts -------------------------------------------------------------------------------- /packages/sdk-urql/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk-urql/tsconfig.json -------------------------------------------------------------------------------- /packages/sdk/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /coverage/ -------------------------------------------------------------------------------- /packages/sdk/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /packages/sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/README.md -------------------------------------------------------------------------------- /packages/sdk/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/eslint.config.mjs -------------------------------------------------------------------------------- /packages/sdk/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'ts-jest', 3 | }; 4 | -------------------------------------------------------------------------------- /packages/sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/package.json -------------------------------------------------------------------------------- /packages/sdk/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/rollup.config.js -------------------------------------------------------------------------------- /packages/sdk/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/src/index.ts -------------------------------------------------------------------------------- /packages/sdk/src/internal/createRoomClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/src/internal/createRoomClient.ts -------------------------------------------------------------------------------- /packages/sdk/src/internal/createTestRoomClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/src/internal/createTestRoomClient.ts -------------------------------------------------------------------------------- /packages/sdk/src/internal/roomClient/graphqlClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/src/internal/roomClient/graphqlClient.ts -------------------------------------------------------------------------------- /packages/sdk/src/internal/roomClient/roomConnections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/src/internal/roomClient/roomConnections.ts -------------------------------------------------------------------------------- /packages/sdk/src/internal/roomClient/roomMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/src/internal/roomClient/roomMessages.ts -------------------------------------------------------------------------------- /packages/sdk/src/internal/roomClient/roomState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/src/internal/roomClient/roomState.ts -------------------------------------------------------------------------------- /packages/sdk/src/internal/rxjs/behaviorEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/src/internal/rxjs/behaviorEvent.ts -------------------------------------------------------------------------------- /packages/sdk/src/internal/rxjs/readonlyBehaviorEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/src/internal/rxjs/readonlyBehaviorEvent.ts -------------------------------------------------------------------------------- /packages/sdk/src/internal/stateManager/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/src/internal/stateManager/create.ts -------------------------------------------------------------------------------- /packages/sdk/src/internal/stateManager/states/room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/src/internal/stateManager/states/room.ts -------------------------------------------------------------------------------- /packages/sdk/src/internal/stateManager/states/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/src/internal/stateManager/states/types.ts -------------------------------------------------------------------------------- /packages/sdk/src/internal/types.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/sdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/sdk/tsconfig.json -------------------------------------------------------------------------------- /packages/tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/tsconfig/package.json -------------------------------------------------------------------------------- /packages/tsconfig/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/tsconfig/tsconfig.json -------------------------------------------------------------------------------- /packages/utils/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /coverage/ -------------------------------------------------------------------------------- /packages/utils/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /packages/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/README.md -------------------------------------------------------------------------------- /packages/utils/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/eslint.config.mjs -------------------------------------------------------------------------------- /packages/utils/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'ts-jest', 3 | }; 4 | -------------------------------------------------------------------------------- /packages/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/package.json -------------------------------------------------------------------------------- /packages/utils/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/rollup.config.js -------------------------------------------------------------------------------- /packages/utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/index.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/arrayEquals.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/arrayEquals.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/arrayEquals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/arrayEquals.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/compare.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/compositeKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/compositeKey.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/delay.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/deletableTree.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/deletableTree.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/deletableTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/deletableTree.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/dualKeyMap.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/dualKeyMap.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/dualKeyMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/dualKeyMap.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/filterInt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/filterInt.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/filterInt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/filterInt.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/groupJoinArray.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/groupJoinArray.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/groupJoinArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/groupJoinArray.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/groupJoinMap.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/groupJoinMap.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/groupJoinMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/groupJoinMap.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/groupJoinSet.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/groupJoinSet.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/groupJoinSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/groupJoinSet.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/iterable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/iterable.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/keyNames.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/keyNames.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/keyNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/keyNames.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/logger.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/multiKeyMap.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/multiKeyMap.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/multiKeyMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/multiKeyMap.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/multiValueSet.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/multiValueSet.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/multiValueSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/multiValueSet.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/nonEmptyArray.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/nonEmptyArray.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/nonEmptyArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/nonEmptyArray.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/parseEnvListValue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/parseEnvListValue.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/parseEnvListValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/parseEnvListValue.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/parsePinoLogLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/parsePinoLogLevel.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/parseStringToBoolean.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/parseStringToBoolean.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/parseStringToBoolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/parseStringToBoolean.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/record.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/record.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/record.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/semver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/semver.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/semver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/semver.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/tree.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/tree.test.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/tree.ts -------------------------------------------------------------------------------- /packages/utils/src/internal/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/src/internal/types.ts -------------------------------------------------------------------------------- /packages/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/utils/tsconfig.json -------------------------------------------------------------------------------- /packages/web-server-utils/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /coverage/ -------------------------------------------------------------------------------- /packages/web-server-utils/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /packages/web-server-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/README.md -------------------------------------------------------------------------------- /packages/web-server-utils/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/eslint.config.mjs -------------------------------------------------------------------------------- /packages/web-server-utils/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'ts-jest', 3 | }; 4 | -------------------------------------------------------------------------------- /packages/web-server-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/package.json -------------------------------------------------------------------------------- /packages/web-server-utils/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/rollup.config.js -------------------------------------------------------------------------------- /packages/web-server-utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/src/index.ts -------------------------------------------------------------------------------- /packages/web-server-utils/src/internal/filteredArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/src/internal/filteredArray.ts -------------------------------------------------------------------------------- /packages/web-server-utils/src/internal/messageSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/src/internal/messageSet.ts -------------------------------------------------------------------------------- /packages/web-server-utils/src/internal/privateChannelSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/src/internal/privateChannelSet.ts -------------------------------------------------------------------------------- /packages/web-server-utils/src/internal/roomChannels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/src/internal/roomChannels.ts -------------------------------------------------------------------------------- /packages/web-server-utils/src/internal/roomMessageTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/src/internal/roomMessageTypes.ts -------------------------------------------------------------------------------- /packages/web-server-utils/src/internal/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/src/internal/utils.ts -------------------------------------------------------------------------------- /packages/web-server-utils/tests/expect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/tests/expect.ts -------------------------------------------------------------------------------- /packages/web-server-utils/tests/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/tests/fixtures.ts -------------------------------------------------------------------------------- /packages/web-server-utils/tests/privateChannelSet.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/tests/privateChannelSet.test.ts -------------------------------------------------------------------------------- /packages/web-server-utils/tests/privateChannelSets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/tests/privateChannelSets.test.ts -------------------------------------------------------------------------------- /packages/web-server-utils/tests/roomChannels.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/tests/roomChannels.test.ts -------------------------------------------------------------------------------- /packages/web-server-utils/tests/roomMessagesClient.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/tests/roomMessagesClient.test.ts -------------------------------------------------------------------------------- /packages/web-server-utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/packages/web-server-utils/tsconfig.json -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/renovate.json5 -------------------------------------------------------------------------------- /websites/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/.gitignore -------------------------------------------------------------------------------- /websites/docs/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/.prettierignore -------------------------------------------------------------------------------- /websites/docs/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /websites/docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/LICENSE -------------------------------------------------------------------------------- /websites/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/README.md -------------------------------------------------------------------------------- /websites/docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/babel.config.js -------------------------------------------------------------------------------- /websites/docs/docs/client/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/client/_category_.json -------------------------------------------------------------------------------- /websites/docs/docs/client/chat_palette.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/client/chat_palette.md -------------------------------------------------------------------------------- /websites/docs/docs/client/command/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/client/command/_category_.json -------------------------------------------------------------------------------- /websites/docs/docs/client/command/guide-advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/client/command/guide-advanced.md -------------------------------------------------------------------------------- /websites/docs/docs/client/command/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/client/command/guide.md -------------------------------------------------------------------------------- /websites/docs/docs/client/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/client/index.md -------------------------------------------------------------------------------- /websites/docs/docs/client/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/client/intro.md -------------------------------------------------------------------------------- /websites/docs/docs/client/toml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/client/toml.md -------------------------------------------------------------------------------- /websites/docs/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/faq.md -------------------------------------------------------------------------------- /websites/docs/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/intro.md -------------------------------------------------------------------------------- /websites/docs/docs/public_servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/public_servers.md -------------------------------------------------------------------------------- /websites/docs/docs/server/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/_category_.json -------------------------------------------------------------------------------- /websites/docs/docs/server/details/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/details/_category_.json -------------------------------------------------------------------------------- /websites/docs/docs/server/details/api-server/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/details/api-server/index.md -------------------------------------------------------------------------------- /websites/docs/docs/server/details/api-server/vars.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/details/api-server/vars.mdx -------------------------------------------------------------------------------- /websites/docs/docs/server/details/servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/details/servers.md -------------------------------------------------------------------------------- /websites/docs/docs/server/details/uploader/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/details/uploader/_category_.json -------------------------------------------------------------------------------- /websites/docs/docs/server/details/uploader/embedded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/details/uploader/embedded.md -------------------------------------------------------------------------------- /websites/docs/docs/server/details/uploader/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/details/uploader/index.md -------------------------------------------------------------------------------- /websites/docs/docs/server/details/web-server/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/details/web-server/index.md -------------------------------------------------------------------------------- /websites/docs/docs/server/details/web-server/vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/details/web-server/vars.md -------------------------------------------------------------------------------- /websites/docs/docs/server/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/index.md -------------------------------------------------------------------------------- /websites/docs/docs/server/tutorial/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/tutorial/_category_.json -------------------------------------------------------------------------------- /websites/docs/docs/server/tutorial/api_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/tutorial/api_server.md -------------------------------------------------------------------------------- /websites/docs/docs/server/tutorial/firebase_auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/tutorial/firebase_auth.md -------------------------------------------------------------------------------- /websites/docs/docs/server/tutorial/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/tutorial/index.md -------------------------------------------------------------------------------- /websites/docs/docs/server/tutorial/outdated/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/tutorial/outdated/_category_.json -------------------------------------------------------------------------------- /websites/docs/docs/server/tutorial/outdated/heroku.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/tutorial/outdated/heroku.mdx -------------------------------------------------------------------------------- /websites/docs/docs/server/tutorial/upgrade/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/tutorial/upgrade/_category_.json -------------------------------------------------------------------------------- /websites/docs/docs/server/tutorial/upgrade/api_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/tutorial/upgrade/api_server.md -------------------------------------------------------------------------------- /websites/docs/docs/server/tutorial/upgrade/web_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/tutorial/upgrade/web_server.md -------------------------------------------------------------------------------- /websites/docs/docs/server/tutorial/web_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docs/server/tutorial/web_server.md -------------------------------------------------------------------------------- /websites/docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /websites/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/package.json -------------------------------------------------------------------------------- /websites/docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/sidebars.ts -------------------------------------------------------------------------------- /websites/docs/src/components/AntDesign.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/src/components/AntDesign.tsx -------------------------------------------------------------------------------- /websites/docs/src/components/ApiVarExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/src/components/ApiVarExample.tsx -------------------------------------------------------------------------------- /websites/docs/src/components/CreateEnv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/src/components/CreateEnv.tsx -------------------------------------------------------------------------------- /websites/docs/src/components/HomepageFeatures.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/src/components/HomepageFeatures.module.css -------------------------------------------------------------------------------- /websites/docs/src/components/HomepageFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/src/components/HomepageFeatures.tsx -------------------------------------------------------------------------------- /websites/docs/src/components/ToolsHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/src/components/ToolsHeader.tsx -------------------------------------------------------------------------------- /websites/docs/src/components/WebVarExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/src/components/WebVarExample.tsx -------------------------------------------------------------------------------- /websites/docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/src/css/custom.css -------------------------------------------------------------------------------- /websites/docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /websites/docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /websites/docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /websites/docs/src/pages/tools/bcrypt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/src/pages/tools/bcrypt.tsx -------------------------------------------------------------------------------- /websites/docs/src/pages/tools/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/src/pages/tools/index.tsx -------------------------------------------------------------------------------- /websites/docs/src/pages/tools/web-server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/src/pages/tools/web-server.tsx -------------------------------------------------------------------------------- /websites/docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /websites/docs/static/img/docs/client/login1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/client/login1.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/client/login2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/client/login2.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/firebase-auth/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/firebase-auth/1.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/firebase-auth/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/firebase-auth/2.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/firebase-auth/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/firebase-auth/3.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/firebase-auth/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/firebase-auth/4.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/firebase-auth/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/firebase-auth/5.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/firebase-auth/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/firebase-auth/6.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/firebase-auth/domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/firebase-auth/domain.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/firebase-config/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/firebase-config/1.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/firebase-config/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/firebase-config/2.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/firebase-config/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/firebase-config/3.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/firebase-config/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/firebase-config/4.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/firebase-storage/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/firebase-storage/1.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/firebase-storage/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/firebase-storage/2.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/firebase-storage/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/firebase-storage/3.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/firebase-storage/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/firebase-storage/4.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/flyio/add_credit_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/flyio/add_credit_card.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/flyio/apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/flyio/apps.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/flyio/connect_to_heroku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/flyio/connect_to_heroku.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/flyio/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/flyio/github.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/flyio/hostname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/flyio/hostname.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/flyio/sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/flyio/sign_in.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/flyio/sign_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/flyio/sign_up.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/flyio/top_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/flyio/top_page.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/flyio/top_page_signed_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/flyio/top_page_signed_in.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/heroku/deploy_to_heroku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/heroku/deploy_to_heroku.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/heroku/heroku1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/heroku/heroku1.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/heroku/heroku2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/heroku/heroku2.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/heroku/postgres1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/heroku/postgres1.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/heroku/postgres2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/heroku/postgres2.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/heroku/postgres3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/heroku/postgres3.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/heroku/postgres4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/heroku/postgres4.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/heroku/postgres5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/heroku/postgres5.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/netlify/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/netlify/1.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/netlify/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/netlify/2.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/netlify/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/netlify/3.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/servers-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/servers-min.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/vars/firebase_admin/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/vars/firebase_admin/1.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/vercel/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/vercel/1.png -------------------------------------------------------------------------------- /websites/docs/static/img/docs/vercel/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/docs/vercel/2.png -------------------------------------------------------------------------------- /websites/docs/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/logo.png -------------------------------------------------------------------------------- /websites/docs/static/img/money-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/money-svgrepo-com.svg -------------------------------------------------------------------------------- /websites/docs/static/img/sample_room.min.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/sample_room.min.webp -------------------------------------------------------------------------------- /websites/docs/static/img/sample_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/sample_room.png -------------------------------------------------------------------------------- /websites/docs/static/img/server-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/server-svgrepo-com.svg -------------------------------------------------------------------------------- /websites/docs/static/img/square-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/square-svgrepo-com.svg -------------------------------------------------------------------------------- /websites/docs/static/img/tools/firebase-auth-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/tools/firebase-auth-1.png -------------------------------------------------------------------------------- /websites/docs/static/img/tools/firebase-auth-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/tools/firebase-auth-2.png -------------------------------------------------------------------------------- /websites/docs/static/img/tools/firebase-config-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/tools/firebase-config-1.png -------------------------------------------------------------------------------- /websites/docs/static/img/tools/firebase-config-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/tools/firebase-config-2.png -------------------------------------------------------------------------------- /websites/docs/static/img/tools/firebase-config-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/tools/firebase-config-3.png -------------------------------------------------------------------------------- /websites/docs/static/img/tools/firebase-config-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/static/img/tools/firebase-config-4.png -------------------------------------------------------------------------------- /websites/docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/docs/tsconfig.json -------------------------------------------------------------------------------- /websites/tools/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/.eslintrc.js -------------------------------------------------------------------------------- /websites/tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/.gitignore -------------------------------------------------------------------------------- /websites/tools/.prettierignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /coverage/ -------------------------------------------------------------------------------- /websites/tools/.prettierrc: -------------------------------------------------------------------------------- 1 | "@flocon-trpg/prettier-config" -------------------------------------------------------------------------------- /websites/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/README.md -------------------------------------------------------------------------------- /websites/tools/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/eslint.config.js -------------------------------------------------------------------------------- /websites/tools/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/index.html -------------------------------------------------------------------------------- /websites/tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/package.json -------------------------------------------------------------------------------- /websites/tools/src/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } -------------------------------------------------------------------------------- /websites/tools/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/src/main.tsx -------------------------------------------------------------------------------- /websites/tools/src/routeTree.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/src/routeTree.gen.ts -------------------------------------------------------------------------------- /websites/tools/src/routes/__root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/src/routes/__root.tsx -------------------------------------------------------------------------------- /websites/tools/src/routes/bcrypt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/src/routes/bcrypt.tsx -------------------------------------------------------------------------------- /websites/tools/src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/src/routes/index.tsx -------------------------------------------------------------------------------- /websites/tools/src/routes/web-server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/src/routes/web-server.tsx -------------------------------------------------------------------------------- /websites/tools/src/styles/LayoutContentStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/src/styles/LayoutContentStyle.ts -------------------------------------------------------------------------------- /websites/tools/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /websites/tools/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/tsconfig.app.json -------------------------------------------------------------------------------- /websites/tools/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/tsconfig.base.json -------------------------------------------------------------------------------- /websites/tools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/tsconfig.json -------------------------------------------------------------------------------- /websites/tools/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/tsconfig.node.json -------------------------------------------------------------------------------- /websites/tools/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/websites/tools/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flocon-trpg/servers/HEAD/yarn.lock --------------------------------------------------------------------------------