{"id":48777868,"url":"https://github.com/zlovtnik/oracle-bip-client","last_synced_at":"2026-04-13T13:08:20.721Z","repository":{"id":262713879,"uuid":"887946539","full_name":"zlovtnik/oracle-bip-client","owner":"zlovtnik","description":"Oracle Business Intelligence Publisher client","archived":false,"fork":false,"pushed_at":"2025-05-17T00:10:06.000Z","size":79,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-17T01:21:02.778Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/zlovtnik.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}},"created_at":"2024-11-13T14:54:56.000Z","updated_at":"2025-05-17T00:10:09.000Z","dependencies_parsed_at":"2025-01-18T16:28:51.911Z","dependency_job_id":"5385ad4d-8bef-4522-9c13-8e0ee8b700e8","html_url":"https://github.com/zlovtnik/oracle-bip-client","commit_stats":null,"previous_names":["zlovtnik/oracle-bip-client"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zlovtnik/oracle-bip-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zlovtnik%2Foracle-bip-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zlovtnik%2Foracle-bip-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zlovtnik%2Foracle-bip-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zlovtnik%2Foracle-bip-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zlovtnik","download_url":"https://codeload.github.com/zlovtnik/oracle-bip-client/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zlovtnik%2Foracle-bip-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31753635,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T09:16:15.125Z","status":"ssl_error","status_checked_at":"2026-04-13T09:16:05.023Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2026-04-13T13:08:20.091Z","updated_at":"2026-04-13T13:08:20.699Z","avatar_url":"https://github.com/zlovtnik.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# 🚀 ORACLE-BIP-CLIENT 🚀\n\n*A modern client library for Oracle Business Intelligence Publisher*\n\n[![Version](https://img.shields.io/badge/version-1.0.0-blue.svg)](https://github.com/yourusername/oracle-bip-client)\n[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)\n\n\u003c/div\u003e\n\n## 📡 Overview\n\n`oracle-bip-client` is a powerful and intuitive client library for interacting with Oracle Business Intelligence Publisher (BIP). It simplifies the process of generating reports, managing data models, and integrating Oracle BIP into your applications.\n\n```\n  ___ ___ ___ ___ _    ___   ___ ___ ___   ___ _    ___ ___ _  _ _____\n / _ \\| _ \\ _ \\/ __| |  | __| | _ )_ _| _ \\ / __| |  |_ _| __| \\| |_   _|\n| (_) |   /  _/ (__| |__| _|  | _ \\| ||  _/ | (__| |__ | || _|| .` | | |\n \\___/|_|_\\_| \\___|____|___| |___/___|_|   \\___|____|___|___|_|\\_| |_|\n```\n\n## ⚡ Features\n\n- 🔄 **Simple API Integration**: Connect to BIP servers with minimal configuration\n- 📊 **Report Generation**: Create, customize, and export reports in multiple formats (PDF, Excel, HTML, etc.)\n- 🔌 **Seamless Authentication**: Support for various authentication methods\n- 🛠️ **Extensive Customization**: Fine-tune report parameters and delivery options\n- 📈 **Data Model Management**: Interface with BIP data models programmatically\n\n## 🚀 Installation\n\n```bash\nnpm install oracle-bip-client\n# or\nyarn add oracle-bip-client\n```\n\n## 🎮 Quick Start\n\n```javascript\nconst OracleBIP = require('oracle-bip-client');\n\n// Initialize client\nconst bipClient = new OracleBIP.Client({\n  baseUrl: 'https://your-bip-server.example.com',\n  credentials: {\n    username: 'your_username',\n    password: 'your_password'\n  }\n});\n\n// Generate a report\nasync function generateReport() {\n  const report = await bipClient.reports.run({\n    reportPath: '/path/to/your/report',\n    format: 'pdf',\n    parameters: {\n      DEPARTMENT_ID: 10,\n      START_DATE: '2025-01-01'\n    }\n  });\n  \n  console.log(`Report generated: ${report.outputUrl}`);\n}\n\ngenerateReport();\n```\n\n## 🧩 Advanced Usage\n\nCheck our [documentation](https://github.com/yourusername/oracle-bip-client/wiki) for advanced usage examples including:\n\n- Custom authentication handlers\n- Report scheduling and delivery\n- Template management\n- Data model operations\n- Event-driven report generation\n\n## 🔧 Configuration Options\n\n| Option | Type | Description |\n|--------|------|-------------|\n| `baseUrl` | String | BIP server URL |\n| `credentials` | Object | Authentication credentials |\n| `timeout` | Number | Request timeout in ms |\n| `version` | String | API version |\n| `cacheEnabled` | Boolean | Enable response caching |\n\n## 📦 Project Structure\n\n```\noracle-bip-client/\n├── lib/\n│   ├── client.js         # Main client implementation\n│   ├── auth/             # Authentication handlers\n│   ├── reports/          # Report management\n│   ├── datamodels/       # Data model operations\n│   └── utils/            # Helper utilities\n├── examples/             # Example implementations\n├── tests/                # Test suite\n└── docs/                 # Documentation\n```\n\n## 💻 Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## 📜 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🙏 Acknowledgements\n\n- Oracle Business Intelligence team for their comprehensive API\n- All contributors who have helped shape this project\n\n---\n\n\u003cdiv align=\"center\"\u003e\n\n*Built with ❤️ for the developer community*\n\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzlovtnik%2Foracle-bip-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzlovtnik%2Foracle-bip-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzlovtnik%2Foracle-bip-client/lists"}