{"id":24203286,"url":"https://github.com/syucream/holaspirit-client-typescript-fetch","last_synced_at":"2026-04-06T11:02:41.645Z","repository":{"id":272220041,"uuid":"915869349","full_name":"syucream/holaspirit-client-typescript-fetch","owner":"syucream","description":"A TypeScript client for the Holaspirit API, generated from the official OpenAPI specification using openapi-fetch.","archived":false,"fork":false,"pushed_at":"2026-03-30T09:40:58.000Z","size":41,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-30T11:36:01.383Z","etag":null,"topics":["holaspirit","openapi"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/holaspirit-client-typescript-fetch","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/syucream.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-01-13T02:01:21.000Z","updated_at":"2025-03-26T16:31:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"f9b8f247-75ec-45b4-bf59-0baad1d0b712","html_url":"https://github.com/syucream/holaspirit-client-typescript-fetch","commit_stats":null,"previous_names":["syucream/holaspirit-client-typescript-fetch"],"tags_count":57,"template":false,"template_full_name":null,"purl":"pkg:github/syucream/holaspirit-client-typescript-fetch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syucream%2Fholaspirit-client-typescript-fetch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syucream%2Fholaspirit-client-typescript-fetch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syucream%2Fholaspirit-client-typescript-fetch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syucream%2Fholaspirit-client-typescript-fetch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/syucream","download_url":"https://codeload.github.com/syucream/holaspirit-client-typescript-fetch/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syucream%2Fholaspirit-client-typescript-fetch/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31313838,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["holaspirit","openapi"],"created_at":"2025-01-13T22:21:42.922Z","updated_at":"2026-04-02T19:00:20.447Z","avatar_url":"https://github.com/syucream.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Holaspirit TypeScript Client\n\nA TypeScript client for the Holaspirit API, generated from the official OpenAPI specification using [openapi-fetch](https://github.com/openapi-ts/openapi-typescript).\n\n## Installation\n\n```bash\nnpm install holaspirit-client-typescript-fetch\n```\n\n## Usage\n\n```typescript\nimport createHolaspiritClient from 'holaspirit-client-typescript-fetch';\n\n// Create a client instance\nconst client = createHolaspiritClient('https://app.holaspirit.com');\n\n// Example: Get organizations\nconst { data, error } = await client.GET('/api/organizations');\nif (error) {\n  console.error('Error fetching organizations:', error);\n} else {\n  console.log('Organizations:', data);\n}\n```\n\n## Technical Stack\n\n- TypeScript\n- [openapi-fetch](https://github.com/openapi-ts/openapi-typescript) - Type-safe API client generator\n- [openapi-typescript](https://github.com/openapi-ts/openapi-typescript) - OpenAPI to TypeScript type generator\n\n## Development\n\n1. Clone the repository\n2. Install dependencies:\n   ```bash\n   npm install\n   ```\n3. Generate the client code:\n   ```bash\n   npm run generate\n   ```\n4. Build the project:\n   ```bash\n   npm run build\n   ```\n\n### Code Quality\n\nThe project uses ESLint and Prettier for code quality and formatting:\n\n- `npm run lint` - Check code style and potential issues\n- `npm run fix` - Automatically fix code style issues\n\nIndividual commands are also available:\n- `npm run lint:eslint` - Run ESLint checks only\n- `npm run lint:prettier` - Run Prettier checks only\n- `npm run fix:eslint` - Run ESLint auto-fix\n- `npm run fix:prettier` - Run Prettier auto-fix\n\n### Continuous Integration\n\nThe project uses GitHub Actions for CI:\n\n- Pull Request Checks:\n  - Runs linting on all pull requests\n  - Ensures code quality before merging\n\n- Main Branch CI:\n  - Runs on merges to main\n  - Generates client code from the latest OpenAPI spec\n  - Builds the project\n  - Uploads build artifacts\n\n## Publishing\n\nThis package is published to GitHub Packages. To publish a new version:\n\n1. Update the version in `package.json`\n2. Make sure you're authenticated with GitHub Packages\n3. Run:\n   ```bash\n   npm publish\n   ```\n\n## License\n\nMIT ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyucream%2Fholaspirit-client-typescript-fetch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsyucream%2Fholaspirit-client-typescript-fetch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyucream%2Fholaspirit-client-typescript-fetch/lists"}