{"id":51135597,"url":"https://github.com/bmlt-enabled/bmlt-server-typescript-client","last_synced_at":"2026-06-25T17:30:56.812Z","repository":{"id":61859884,"uuid":"555657744","full_name":"bmlt-enabled/bmlt-server-typescript-client","owner":"bmlt-enabled","description":"Typescript Client for BMLT Admin API ","archived":false,"fork":false,"pushed_at":"2025-12-13T19:18:26.000Z","size":206,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-15T13:33:31.101Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/bmlt-server-client","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bmlt-enabled.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-10-22T02:51:01.000Z","updated_at":"2025-12-13T18:58:20.000Z","dependencies_parsed_at":"2026-01-04T06:11:41.535Z","dependency_job_id":null,"html_url":"https://github.com/bmlt-enabled/bmlt-server-typescript-client","commit_stats":{"total_commits":10,"total_committers":3,"mean_commits":"3.3333333333333335","dds":0.5,"last_synced_commit":"85883188d094b4947c4d5249e964af58995aa9f8"},"previous_names":["bmlt-enabled/bmlt-server-typescript-client","bmlt-enabled/bmlt-root-server-typescript-client"],"tags_count":35,"template":false,"template_full_name":null,"purl":"pkg:github/bmlt-enabled/bmlt-server-typescript-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmlt-enabled%2Fbmlt-server-typescript-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmlt-enabled%2Fbmlt-server-typescript-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmlt-enabled%2Fbmlt-server-typescript-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmlt-enabled%2Fbmlt-server-typescript-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bmlt-enabled","download_url":"https://codeload.github.com/bmlt-enabled/bmlt-server-typescript-client/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmlt-enabled%2Fbmlt-server-typescript-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34786225,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-25T02:00:05.521Z","response_time":101,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":"2026-06-25T17:30:56.693Z","updated_at":"2026-06-25T17:30:56.806Z","avatar_url":"https://github.com/bmlt-enabled.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bmlt-server-client@1.4.0\n\nA TypeScript SDK client for the localhost API.\n\n## Usage\n\nFirst, install the SDK from npm.\n\n```bash\nnpm install bmlt-server-client --save\n```\n\nNext, try it out.\n\n\n```ts\nimport {\n  Configuration,\n  RootServerApi,\n} from 'bmlt-server-client';\nimport type { AuthLogoutRequest } from 'bmlt-server-client';\n\nasync function example() {\n  console.log(\"🚀 Testing bmlt-server-client SDK...\");\n  const config = new Configuration({ \n    // To configure OAuth2 access token for authorization: bmltToken password\n    accessToken: \"YOUR ACCESS TOKEN\",\n  });\n  const api = new RootServerApi(config);\n\n  try {\n    const data = await api.authLogout();\n    console.log(data);\n  } catch (error) {\n    console.error(error);\n  }\n}\n\n// Run the test\nexample().catch(console.error);\n```\n\n\n## Documentation\n\n### API Endpoints\n\nAll URIs are relative to *http://localhost:8000/main_server*\n\n| Class | Method | HTTP request | Description\n| ----- | ------ | ------------ | -------------\n*RootServerApi* | [**authLogout**](docs/RootServerApi.md#authlogout) | **POST** /api/v1/auth/logout | Revokes a token\n*RootServerApi* | [**authRefresh**](docs/RootServerApi.md#authrefresh) | **POST** /api/v1/auth/refresh | Revokes and issues a new token\n*RootServerApi* | [**authToken**](docs/RootServerApi.md#authtoken) | **POST** /api/v1/auth/token | Creates a token\n*RootServerApi* | [**createErrorTest**](docs/RootServerApi.md#createerrortest) | **POST** /api/v1/errortest | Tests some errors\n*RootServerApi* | [**createFormat**](docs/RootServerApi.md#createformat) | **POST** /api/v1/formats | Creates a format\n*RootServerApi* | [**createMeeting**](docs/RootServerApi.md#createmeeting) | **POST** /api/v1/meetings | Creates a meeting\n*RootServerApi* | [**createServiceBody**](docs/RootServerApi.md#createservicebody) | **POST** /api/v1/servicebodies | Creates a service body\n*RootServerApi* | [**createUser**](docs/RootServerApi.md#createuser) | **POST** /api/v1/users | Creates a user\n*RootServerApi* | [**deleteFormat**](docs/RootServerApi.md#deleteformat) | **DELETE** /api/v1/formats/{formatId} | Deletes a format\n*RootServerApi* | [**deleteMeeting**](docs/RootServerApi.md#deletemeeting) | **DELETE** /api/v1/meetings/{meetingId} | Deletes a meeting\n*RootServerApi* | [**deleteServiceBody**](docs/RootServerApi.md#deleteservicebody) | **DELETE** /api/v1/servicebodies/{serviceBodyId} | Deletes a service body\n*RootServerApi* | [**deleteUser**](docs/RootServerApi.md#deleteuser) | **DELETE** /api/v1/users/{userId} | Deletes a user\n*RootServerApi* | [**getFormat**](docs/RootServerApi.md#getformat) | **GET** /api/v1/formats/{formatId} | Retrieves a format\n*RootServerApi* | [**getFormats**](docs/RootServerApi.md#getformats) | **GET** /api/v1/formats | Retrieves formats\n*RootServerApi* | [**getLaravelLog**](docs/RootServerApi.md#getlaravellog) | **GET** /api/v1/logs/laravel | Retrieves laravel log\n*RootServerApi* | [**getMeeting**](docs/RootServerApi.md#getmeeting) | **GET** /api/v1/meetings/{meetingId} | Retrieves a meeting\n*RootServerApi* | [**getMeetingChanges**](docs/RootServerApi.md#getmeetingchanges) | **GET** /api/v1/meetings/{meetingId}/changes | Retrieve changes for a meeting\n*RootServerApi* | [**getMeetings**](docs/RootServerApi.md#getmeetings) | **GET** /api/v1/meetings | Retrieves meetings\n*RootServerApi* | [**getRootServer**](docs/RootServerApi.md#getrootserver) | **GET** /api/v1/rootservers/{rootServerId} | Retrieves a root server\n*RootServerApi* | [**getRootServers**](docs/RootServerApi.md#getrootservers) | **GET** /api/v1/rootservers | Retrieves root servers\n*RootServerApi* | [**getServiceBodies**](docs/RootServerApi.md#getservicebodies) | **GET** /api/v1/servicebodies | Retrieves service bodies\n*RootServerApi* | [**getServiceBody**](docs/RootServerApi.md#getservicebody) | **GET** /api/v1/servicebodies/{serviceBodyId} | Retrieves a service body\n*RootServerApi* | [**getServiceBodyEditors**](docs/RootServerApi.md#getservicebodyeditors) | **GET** /api/v1/servicebodies/{serviceBodyId}/editors | Retrieves the editors assigned to a service body\n*RootServerApi* | [**getSettings**](docs/RootServerApi.md#getsettings) | **GET** /api/v1/settings | Retrieves all settings\n*RootServerApi* | [**getUser**](docs/RootServerApi.md#getuser) | **GET** /api/v1/users/{userId} | Retrieves a single user\n*RootServerApi* | [**getUsers**](docs/RootServerApi.md#getusers) | **GET** /api/v1/users | Retrieves users\n*RootServerApi* | [**partialUpdateUser**](docs/RootServerApi.md#partialupdateuser) | **PATCH** /api/v1/users/{userId} | Patches a user\n*RootServerApi* | [**patchFormat**](docs/RootServerApi.md#patchformat) | **PATCH** /api/v1/formats/{formatId} | Patches a format\n*RootServerApi* | [**patchMeeting**](docs/RootServerApi.md#patchmeeting) | **PATCH** /api/v1/meetings/{meetingId} | Patches a meeting\n*RootServerApi* | [**patchServiceBody**](docs/RootServerApi.md#patchservicebody) | **PATCH** /api/v1/servicebodies/{serviceBodyId} | Patches a service body\n*RootServerApi* | [**updateFormat**](docs/RootServerApi.md#updateformat) | **PUT** /api/v1/formats/{formatId} | Updates a format\n*RootServerApi* | [**updateMeeting**](docs/RootServerApi.md#updatemeeting) | **PUT** /api/v1/meetings/{meetingId} | Updates a meeting\n*RootServerApi* | [**updateServiceBody**](docs/RootServerApi.md#updateservicebody) | **PUT** /api/v1/servicebodies/{serviceBodyId} | Updates a Service Body\n*RootServerApi* | [**updateSettings**](docs/RootServerApi.md#updatesettings) | **PATCH** /api/v1/settings | Update settings\n*RootServerApi* | [**updateUser**](docs/RootServerApi.md#updateuser) | **PUT** /api/v1/users/{userId} | Update single user\n\n\n### Models\n\n- [AuthenticationError](docs/AuthenticationError.md)\n- [AuthorizationError](docs/AuthorizationError.md)\n- [ConflictError](docs/ConflictError.md)\n- [ErrorTest](docs/ErrorTest.md)\n- [Format](docs/Format.md)\n- [FormatBase](docs/FormatBase.md)\n- [FormatCreate](docs/FormatCreate.md)\n- [FormatPartialUpdate](docs/FormatPartialUpdate.md)\n- [FormatTranslation](docs/FormatTranslation.md)\n- [FormatUpdate](docs/FormatUpdate.md)\n- [Meeting](docs/Meeting.md)\n- [MeetingBase](docs/MeetingBase.md)\n- [MeetingChangeResource](docs/MeetingChangeResource.md)\n- [MeetingCreate](docs/MeetingCreate.md)\n- [MeetingPartialUpdate](docs/MeetingPartialUpdate.md)\n- [MeetingUpdate](docs/MeetingUpdate.md)\n- [NotFoundError](docs/NotFoundError.md)\n- [RootServer](docs/RootServer.md)\n- [RootServerBase](docs/RootServerBase.md)\n- [RootServerBaseStatistics](docs/RootServerBaseStatistics.md)\n- [RootServerBaseStatisticsMeetings](docs/RootServerBaseStatisticsMeetings.md)\n- [RootServerBaseStatisticsServiceBodies](docs/RootServerBaseStatisticsServiceBodies.md)\n- [ServerError](docs/ServerError.md)\n- [ServiceBody](docs/ServiceBody.md)\n- [ServiceBodyBase](docs/ServiceBodyBase.md)\n- [ServiceBodyCreate](docs/ServiceBodyCreate.md)\n- [ServiceBodyEditor](docs/ServiceBodyEditor.md)\n- [ServiceBodyPartialUpdate](docs/ServiceBodyPartialUpdate.md)\n- [ServiceBodyUpdate](docs/ServiceBodyUpdate.md)\n- [SettingsBase](docs/SettingsBase.md)\n- [SettingsObject](docs/SettingsObject.md)\n- [SettingsUpdate](docs/SettingsUpdate.md)\n- [Token](docs/Token.md)\n- [TokenCredentials](docs/TokenCredentials.md)\n- [User](docs/User.md)\n- [UserBase](docs/UserBase.md)\n- [UserCreate](docs/UserCreate.md)\n- [UserPartialUpdate](docs/UserPartialUpdate.md)\n- [UserUpdate](docs/UserUpdate.md)\n- [ValidationError](docs/ValidationError.md)\n\n### Authorization\n\n\nAuthentication schemes defined for the API:\n\u003ca id=\"bmltToken-password\"\u003e\u003c/a\u003e\n#### bmltToken password\n\n\n- **Type**: OAuth\n- **Flow**: password\n- **Authorization URL**: \n- **Scopes**: N/A\n\n## About\n\nThis TypeScript SDK client supports the [Fetch API](https://fetch.spec.whatwg.org/)\nand is automatically generated by the\n[OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: `1.0.0`\n- Package version: `1.4.0`\n- Generator version: `7.23.0-SNAPSHOT`\n- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`\n\nThe generated npm module supports the following:\n\n- Environments\n  * Node.js\n  * Webpack\n  * Browserify\n- Language levels\n  * ES5 - you must have a Promises/A+ library installed\n  * ES6\n- Module systems\n  * CommonJS\n  * ES6 module system\n\n\n## Development\n\n### Building\n\nTo build the TypeScript source code, you need to have Node.js and npm installed.\nAfter cloning the repository, navigate to the project directory and run:\n\n```bash\nnpm install\nnpm run build\n```\n\n### Publishing\n\nOnce you've built the package, you can publish it to npm:\n\n```bash\nnpm publish\n```\n\n## License\n\n[MIT](https://github.com/bmlt-enabled/bmlt-root-server/blob/main/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbmlt-enabled%2Fbmlt-server-typescript-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbmlt-enabled%2Fbmlt-server-typescript-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbmlt-enabled%2Fbmlt-server-typescript-client/lists"}