@kreuzberg/wasm 4.0.6 → 4.0.8

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.
package/README.md CHANGED
@@ -33,6 +33,9 @@
33
33
  <a href="https://rubygems.org/gems/kreuzberg">
34
34
  <img src="https://img.shields.io/gem/v/kreuzberg?label=Ruby&color=007ec6" alt="Ruby">
35
35
  </a>
36
+ <a href="https://github.com/kreuzberg-dev/kreuzberg/pkgs/container/kreuzberg">
37
+ <img src="https://img.shields.io/badge/Docker-007ec6?logo=docker&logoColor=white" alt="Docker">
38
+ </a>
36
39
 
37
40
  <!-- Project Info -->
38
41
  <a href="https://github.com/kreuzberg-dev/kreuzberg/blob/main/LICENSE">
@@ -46,7 +49,7 @@
46
49
  <img width="1128" height="191" alt="Banner2" src="https://github.com/user-attachments/assets/419fc06c-8313-4324-b159-4b4d3cfce5c0" />
47
50
 
48
51
  <div align="center" style="margin-top: 20px;">
49
- <a href="https://discord.gg/pXxagNK2zN">
52
+ <a href="https://discord.gg/xt9WY3GnKR">
50
53
  <img height="22" src="https://img.shields.io/badge/Discord-Join%20our%20community-7289da?logo=discord&logoColor=white" alt="Discord">
51
54
  </a>
52
55
  </div>
@@ -493,6 +496,6 @@ MIT License - see LICENSE file for details.
493
496
 
494
497
  ## Support
495
498
 
496
- - **Discord Community**: [Join our Discord](https://discord.gg/pXxagNK2zN)
499
+ - **Discord Community**: [Join our Discord](https://discord.gg/xt9WY3GnKR)
497
500
  - **GitHub Issues**: [Report bugs](https://github.com/kreuzberg-dev/kreuzberg/issues)
498
501
  - **Discussions**: [Ask questions](https://github.com/kreuzberg-dev/kreuzberg/discussions)
@@ -33,6 +33,9 @@
33
33
  <a href="https://rubygems.org/gems/kreuzberg">
34
34
  <img src="https://img.shields.io/gem/v/kreuzberg?label=Ruby&color=007ec6" alt="Ruby">
35
35
  </a>
36
+ <a href="https://github.com/kreuzberg-dev/kreuzberg/pkgs/container/kreuzberg">
37
+ <img src="https://img.shields.io/badge/Docker-007ec6?logo=docker&logoColor=white" alt="Docker">
38
+ </a>
36
39
 
37
40
  <!-- Project Info -->
38
41
  <a href="https://github.com/kreuzberg-dev/kreuzberg/blob/main/LICENSE">
@@ -46,7 +49,7 @@
46
49
  <img width="1128" height="191" alt="Banner2" src="https://github.com/user-attachments/assets/419fc06c-8313-4324-b159-4b4d3cfce5c0" />
47
50
 
48
51
  <div align="center" style="margin-top: 20px;">
49
- <a href="https://discord.gg/pXxagNK2zN">
52
+ <a href="https://discord.gg/xt9WY3GnKR">
50
53
  <img height="22" src="https://img.shields.io/badge/Discord-Join%20our%20community-7289da?logo=discord&logoColor=white" alt="Discord">
51
54
  </a>
52
55
  </div>
@@ -493,6 +496,6 @@ MIT License - see LICENSE file for details.
493
496
 
494
497
  ## Support
495
498
 
496
- - **Discord Community**: [Join our Discord](https://discord.gg/pXxagNK2zN)
499
+ - **Discord Community**: [Join our Discord](https://discord.gg/xt9WY3GnKR)
497
500
  - **GitHub Issues**: [Report bugs](https://github.com/kreuzberg-dev/kreuzberg/issues)
498
501
  - **Discussions**: [Ask questions](https://github.com/kreuzberg-dev/kreuzberg/discussions)
@@ -1,18 +1,21 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
 
4
+ /**
5
+ * Get information about the WASM module
6
+ */
4
7
  export class ModuleInfo {
5
- private constructor();
6
- free(): void;
7
- [Symbol.dispose](): void;
8
- /**
9
- * Get the module name
10
- */
11
- name(): string;
12
- /**
13
- * Get the module version
14
- */
15
- version(): string;
8
+ private constructor();
9
+ free(): void;
10
+ [Symbol.dispose](): void;
11
+ /**
12
+ * Get the module name
13
+ */
14
+ name(): string;
15
+ /**
16
+ * Get the module version
17
+ */
18
+ version(): string;
16
19
  }
17
20
 
18
21
  /**