{"id":24787685,"url":"https://github.com/jsfraz/whisper_openapi_client_dart","last_synced_at":"2025-09-01T17:34:28.364Z","repository":{"id":244224284,"uuid":"814621824","full_name":"jsfraz/whisper_openapi_client_dart","owner":"jsfraz","description":"Whisper app OpenAPI 3 generated library.","archived":false,"fork":false,"pushed_at":"2025-02-01T16:28:24.000Z","size":25992,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-01T16:28:31.326Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jsfraz.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-13T11:17:11.000Z","updated_at":"2025-02-01T16:28:28.000Z","dependencies_parsed_at":"2024-06-21T15:58:03.662Z","dependency_job_id":"55cc3b4d-e8c8-4654-ae40-495725bbdc07","html_url":"https://github.com/jsfraz/whisper_openapi_client_dart","commit_stats":null,"previous_names":["jsfraz/whisper_openapi_client","jsfraz/whisper_openapi_client_dart"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsfraz%2Fwhisper_openapi_client_dart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsfraz%2Fwhisper_openapi_client_dart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsfraz%2Fwhisper_openapi_client_dart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsfraz%2Fwhisper_openapi_client_dart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jsfraz","download_url":"https://codeload.github.com/jsfraz/whisper_openapi_client_dart/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245258222,"owners_count":20585977,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-29T16:13:16.445Z","updated_at":"2025-09-01T17:34:28.354Z","avatar_url":"https://github.com/jsfraz.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# whisper_openapi_client_dart\nSecure private self-hosted end-to-end encryption messaging server.\n\nThis Dart package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 1.0.0\n- Generator version: 7.15.0\n- Build package: org.openapitools.codegen.languages.DartClientCodegen\nFor more information, please visit [https://josefraz.cz](https://josefraz.cz)\n\n## Requirements\n\nDart 2.12 or later\n\n## Installation \u0026 Usage\n\n### Github\nIf this Dart package is published to Github, add the following dependency to your pubspec.yaml\n```\ndependencies:\n  whisper_openapi_client_dart:\n    git: https://github.com/GIT_USER_ID/GIT_REPO_ID.git\n```\n\n### Local\nTo use the package in your local drive, add the following dependency to your pubspec.yaml\n```\ndependencies:\n  whisper_openapi_client_dart:\n    path: /path/to/whisper_openapi_client_dart\n```\n\n## Tests\n\nTODO\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```dart\nimport 'package:whisper_openapi_client_dart/api.dart';\n\n\nfinal api_instance = AuthenticationApi();\nfinal authUserInput = AuthUserInput(); // AuthUserInput | \n\ntry {\n    final result = api_instance.authUser(authUserInput);\n    print(result);\n} catch (e) {\n    print('Exception when calling AuthenticationApi-\u003eauthUser: $e\\n');\n}\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *http://localhost:8080*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*AuthenticationApi* | [**authUser**](doc//AuthenticationApi.md#authuser) | **POST** /api/auth | User auth\n*AuthenticationApi* | [**createUser**](doc//AuthenticationApi.md#createuser) | **POST** /api/auth/register | Register new user\n*AuthenticationApi* | [**refreshUserAccessToken**](doc//AuthenticationApi.md#refreshuseraccesstoken) | **POST** /api/auth/refresh | Refresh access token.\n*FirebaseApi* | [**setFirebaseToken**](doc//FirebaseApi.md#setfirebasetoken) | **PATCH** /api/firebase/token | Set client Firebase token\n*InviteApi* | [**createInvite**](doc//InviteApi.md#createinvite) | **POST** /api/invite | Create registration invite\n*InviteApi* | [**getAllInvites**](doc//InviteApi.md#getallinvites) | **GET** /api/invite/all | Get all active registration invites\n*UserApi* | [**deleteMe**](doc//UserApi.md#deleteme) | **DELETE** /api/user/me | Delete my account\n*UserApi* | [**deleteUsers**](doc//UserApi.md#deleteusers) | **PATCH** /api/user | Delete users\n*UserApi* | [**getAllUsers**](doc//UserApi.md#getallusers) | **GET** /api/user/all | Get all users except the user\n*UserApi* | [**getUserById**](doc//UserApi.md#getuserbyid) | **GET** /api/user | Get user by ID\n*UserApi* | [**searchUsers**](doc//UserApi.md#searchusers) | **GET** /api/user/search | Search users\n*WebSocketAuthenticationApi* | [**webSocketAuth**](doc//WebSocketAuthenticationApi.md#websocketauth) | **POST** /api/wsauth | WebSocket auth\n\n\n## Documentation For Models\n\n - [AuthUserInput](doc//AuthUserInput.md)\n - [CreateInviteInput](doc//CreateInviteInput.md)\n - [CreateUserInput](doc//CreateUserInput.md)\n - [DeleteUsersInput](doc//DeleteUsersInput.md)\n - [ModelsAuthResponse](doc//ModelsAuthResponse.md)\n - [ModelsInvite](doc//ModelsInvite.md)\n - [ModelsRefreshResponse](doc//ModelsRefreshResponse.md)\n - [ModelsUser](doc//ModelsUser.md)\n - [ModelsWsAuthResponse](doc//ModelsWsAuthResponse.md)\n - [RefreshUserAccessTokenInput](doc//RefreshUserAccessTokenInput.md)\n - [SetFirebaseTokenInput](doc//SetFirebaseTokenInput.md)\n\n\n## Documentation For Authorization\n\n\nAuthentication schemes defined for the API:\n### bearerAuth\n\n- **Type**: HTTP Bearer authentication\n\n\n## Author\n\nrazj@josefraz.cz\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsfraz%2Fwhisper_openapi_client_dart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjsfraz%2Fwhisper_openapi_client_dart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsfraz%2Fwhisper_openapi_client_dart/lists"}