{"id":50735390,"url":"https://github.com/wyre-technology/node-iqms","last_synced_at":"2026-06-10T13:01:21.734Z","repository":{"id":355523320,"uuid":"1225043548","full_name":"wyre-technology/node-iqms","owner":"wyre-technology","description":"Node.js / TypeScript client library for IQMS / DELMIAworks (EnterpriseIQ) — Oracle read driver and optional WebAPI write driver","archived":false,"fork":false,"pushed_at":"2026-06-09T02:00:50.000Z","size":389,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-09T03:18:33.591Z","etag":null,"topics":["delmiaworks","enterpriseiq","erp","iqms","manufacturing","msp","oracle","sdk","typescript"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/wyre-technology.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2026-04-29T22:22:25.000Z","updated_at":"2026-06-09T02:00:53.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/wyre-technology/node-iqms","commit_stats":null,"previous_names":["wyre-technology/node-iqms"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/wyre-technology/node-iqms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fnode-iqms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fnode-iqms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fnode-iqms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fnode-iqms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wyre-technology","download_url":"https://codeload.github.com/wyre-technology/node-iqms/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wyre-technology%2Fnode-iqms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34153483,"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-10T02:00:07.152Z","response_time":89,"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":["delmiaworks","enterpriseiq","erp","iqms","manufacturing","msp","oracle","sdk","typescript"],"created_at":"2026-06-10T13:01:20.926Z","updated_at":"2026-06-10T13:01:21.723Z","avatar_url":"https://github.com/wyre-technology.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `@wyre-technology/node-iqms`\n\nNode.js / TypeScript client library for **IQMS / DELMIAworks** (EnterpriseIQ),\nthe manufacturing ERP from Dassault Systèmes.\n\n\u003e **Status:** Scaffolding. Oracle queries are written from public partner\n\u003e documentation and have **not** been validated against a live EnterpriseIQ\n\u003e instance. The WebAPI driver is a stub. See [CONTRIBUTING.md](./CONTRIBUTING.md).\n\n## Why two drivers\n\nEnterpriseIQ has two realistic integration surfaces, and most shops need both:\n\n| Driver | Capability | Availability |\n|--------|-----------|--------------|\n| **Oracle** | Read-only queries against the EIQ schema | Universal — every install has it |\n| **WebAPI** | Transactional writes (create work orders, post production, inventory adjustments) | Licensed add-on; not every customer owns it |\n\n`IqmsClient` exposes a single resource surface and routes each call to the\nappropriate driver. If a write is attempted without WebAPI configured, the\nclient throws a clear `DriverNotConfiguredError`.\n\n## Install\n\n```bash\nnpm install @wyre-technology/node-iqms\n```\n\nConfigure `.npmrc` so npm can resolve the `@wyre-technology` scope from\nGitHub Packages:\n\n```\n@wyre-technology:registry=https://npm.pkg.github.com\n//npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}\n```\n\nThe `oracledb` package requires the **Oracle Instant Client** to be installed\non the host running the SDK. See [Oracle's installation guide](https://node-oracledb.readthedocs.io/en/latest/user_guide/installation.html).\n\n## Quick start\n\n```ts\nimport { IqmsClient } from '@wyre-technology/node-iqms';\n\nconst client = new IqmsClient({\n  oracle: {\n    user: 'eiq_readonly',\n    password: process.env.IQMS_ORACLE_PASSWORD!,\n    connectString: 'eiq-db.example.com:1521/EIQ',\n  },\n  // Optional — omit to run in read-only mode\n  webapi: {\n    baseUrl: 'https://eiq-app.example.com/webapi',\n    username: 'integration-svc',\n    password: process.env.IQMS_WEBAPI_PASSWORD!,\n  },\n});\n\nconst openWorkOrders = await client.workorders.list({ status: 'open', limit: 50 });\nconst wo = await client.workorders.get(12345);\n```\n\n## Errors\n\n```ts\nimport {\n  IqmsError,\n  AuthenticationError,\n  NotFoundError,\n  DriverNotConfiguredError,\n  NotImplementedError,\n  OracleError,\n} from '@wyre-technology/node-iqms';\n```\n\n## License\n\nApache-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwyre-technology%2Fnode-iqms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwyre-technology%2Fnode-iqms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwyre-technology%2Fnode-iqms/lists"}