@roomle/embedding-lib 5.34.0-debug.2 → 5.34.0-debug.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,29 +1,3 @@
1
- ## 5.34.0-debug.2 (2026-01-01)
1
+ ## 5.34.0-debug.4 (2026-01-07)
2
2
 
3
- * chore: adjust docs path ([6c2b018](https://github.com/roomle-dev/roomle-ui/commit/6c2b018))
4
- * chore: adjust paths and so on ([14d3a6f](https://github.com/roomle-dev/roomle-ui/commit/14d3a6f))
5
- * chore: adjust to new stuff ([8cdbebf](https://github.com/roomle-dev/roomle-ui/commit/8cdbebf))
6
- * chore: another idea ([69da390](https://github.com/roomle-dev/roomle-ui/commit/69da390))
7
- * chore: apply code review ([837f420](https://github.com/roomle-dev/roomle-ui/commit/837f420))
8
- * chore: apply suggestions from code review ([f6378a5](https://github.com/roomle-dev/roomle-ui/commit/f6378a5))
9
- * chore: before AI ([107509c](https://github.com/roomle-dev/roomle-ui/commit/107509c))
10
- * chore: commit before AI does stuff ([c873c5a](https://github.com/roomle-dev/roomle-ui/commit/c873c5a))
11
- * chore: lint ([441b65f](https://github.com/roomle-dev/roomle-ui/commit/441b65f))
12
- * chore(wip): make it more correct ([f8196d6](https://github.com/roomle-dev/roomle-ui/commit/f8196d6))
13
- * chore: remove too much docs ([a2db53c](https://github.com/roomle-dev/roomle-ui/commit/a2db53c))
14
- * chore(wip): update formatting ([5feebc7](https://github.com/roomle-dev/roomle-ui/commit/5feebc7))
15
- * chore: use new setupHi ([5087543](https://github.com/roomle-dev/roomle-ui/commit/5087543))
16
- * fix: correct package.json entries ([8158c41](https://github.com/roomle-dev/roomle-ui/commit/8158c41))
17
- * fix: failing test ([ddf58c5](https://github.com/roomle-dev/roomle-ui/commit/ddf58c5))
18
- * fix: make tests work ([e84ea45](https://github.com/roomle-dev/roomle-ui/commit/e84ea45))
19
- * fix: test and lint should work ([2c84943](https://github.com/roomle-dev/roomle-ui/commit/2c84943))
20
- * Merge branch 'feat/embedding-lib-exports' of github.com:roomle-dev/roomle-ui into feat/embedding-lib ([0c9be8e](https://github.com/roomle-dev/roomle-ui/commit/0c9be8e))
21
- * Merge branch 'master' into feat/embedding-lib-exports ([faab691](https://github.com/roomle-dev/roomle-ui/commit/faab691))
22
- * Merge branch 'master' into feat/embedding-lib-exports ([72ab3e0](https://github.com/roomle-dev/roomle-ui/commit/72ab3e0))
23
- * Merge pull request #2113 from roomle-dev/feat/embedding-lib-exports-suggestion-2 ([7075571](https://github.com/roomle-dev/roomle-ui/commit/7075571)), closes [#2113](https://github.com/roomle-dev/roomle-ui/issues/2113)
24
- * Merge pull request #2129 from roomle-dev/fix/npm-release-with-oidc-token ([106d576](https://github.com/roomle-dev/roomle-ui/commit/106d576)), closes [#2129](https://github.com/roomle-dev/roomle-ui/issues/2129)
25
- * cd: remove dry-run flag ([c42e057](https://github.com/roomle-dev/roomle-ui/commit/c42e057))
26
- * cd: test eslint-plugin-roomle release ([1642b74](https://github.com/roomle-dev/roomle-ui/commit/1642b74))
27
- * cd: use github hosted runner to allow npm oidc token auth ([ac66586](https://github.com/roomle-dev/roomle-ui/commit/ac66586))
28
- * style: fix formatting ([b929262](https://github.com/roomle-dev/roomle-ui/commit/b929262))
29
- * feat: embedding lib hi exports ([0521bf8](https://github.com/roomle-dev/roomle-ui/commit/0521bf8))
3
+ * fix: correct package.json ([3896adc](https://github.com/roomle-dev/roomle-ui/commit/3896adc))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roomle/embedding-lib",
3
- "version": "5.34.0-debug.2",
3
+ "version": "5.34.0-debug.4",
4
4
  "description": "This is a small library which can be used to communicate with the Roomle Configurator. ES modules only (browser-compatible).",
5
5
  "type": "module",
6
6
  "main": "./roomle-embedding-lib.js",
@@ -16,11 +16,11 @@
16
16
  "./min": {
17
17
  "import": "./roomle-embedding-lib.min.js"
18
18
  },
19
- "./homag-intelligence": {
19
+ "./hi": {
20
20
  "import": "./hi.js",
21
21
  "types": "./hi.d.ts"
22
22
  },
23
- "./homag-intelligence/min": {
23
+ "./hi/min": {
24
24
  "import": "./hi.min.js"
25
25
  },
26
26
  "./plugins": {
@@ -7,7 +7,7 @@
7
7
  *
8
8
  * @example
9
9
  * ```typescript
10
- * import { createHiLibraryCallbacks, libLoadArticleCatalog } from '@roomle/embedding-lib/homag-intelligence';
10
+ * import { createHiLibraryCallbacks, libLoadArticleCatalog } from '@roomle/embedding-lib/hi';
11
11
  * ```
12
12
  */
13
13
  export { createHiLibraryCallbacks } from './homag-intelligence/hi-callbacks';