@quillmark/wasm 0.77.0 → 0.79.0

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/bundler/wasm.d.ts CHANGED
@@ -141,7 +141,7 @@ export interface QuillSchema {
141
141
 
142
142
  /**
143
143
  * Identity snapshot mirroring the `quill:` section of `Quill.yaml`.
144
- * The schema lives on `Quill.schema`; the example on `Quill.example`.
144
+ * The schema lives on `Quill.schema`.
145
145
  * Extra `quill:` keys appear as `unknown`.
146
146
  */
147
147
  export interface QuillMetadata {
@@ -212,6 +212,7 @@ export interface Diagnostic {
212
212
  code?: string;
213
213
  message: string;
214
214
  location?: Location;
215
+ path?: string;
215
216
  hint?: string;
216
217
  sourceChain: string[];
217
218
  }
@@ -513,10 +514,6 @@ export class Quill {
513
514
  * Auto-generated annotated Markdown blueprint for LLM consumers.
514
515
  */
515
516
  readonly blueprint: string;
516
- /**
517
- * Bundled example document, or `undefined` if none was declared.
518
- */
519
- readonly example: string | undefined;
520
517
  /**
521
518
  * Identity snapshot of the `quill:` section of `Quill.yaml`, plus
522
519
  * `supportedFormats` and any custom `quill:` keys.
@@ -595,26 +595,6 @@ export class Quill {
595
595
  wasm.__wbindgen_export4(deferred1_0, deferred1_1, 1);
596
596
  }
597
597
  }
598
- /**
599
- * Bundled example document, or `undefined` if none was declared.
600
- * @returns {string | undefined}
601
- */
602
- get example() {
603
- try {
604
- const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
605
- wasm.quill_example(retptr, this.__wbg_ptr);
606
- var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
607
- var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
608
- let v1;
609
- if (r0 !== 0) {
610
- v1 = getStringFromWasm0(r0, r1).slice();
611
- wasm.__wbindgen_export4(r0, r1 * 1, 1);
612
- }
613
- return v1;
614
- } finally {
615
- wasm.__wbindgen_add_to_stack_pointer(16);
616
- }
617
- }
618
598
  /**
619
599
  * The schema-aware form view of `doc`.
620
600
  *
Binary file
@@ -32,7 +32,6 @@ export const quill_backendId: (a: number, b: number) => void;
32
32
  export const quill_blankCard: (a: number, b: number, c: number, d: number) => void;
33
33
  export const quill_blankMain: (a: number, b: number) => void;
34
34
  export const quill_blueprint: (a: number, b: number) => void;
35
- export const quill_example: (a: number, b: number) => void;
36
35
  export const quill_form: (a: number, b: number, c: number) => void;
37
36
  export const quill_metadata: (a: number) => number;
38
37
  export const quill_open: (a: number, b: number, c: number) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quillmark/wasm",
3
- "version": "0.77.0",
3
+ "version": "0.79.0",
4
4
  "description": "WebAssembly bindings for quillmark",
5
5
  "type": "module",
6
6
  "license": "MIT OR Apache-2.0",
@@ -9,7 +9,7 @@
9
9
  },
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "git+https://github.com/nibsbin/quillmark.git"
12
+ "url": "git+https://github.com/quillmark-org/quillmark.git"
13
13
  },
14
14
  "files": [
15
15
  "bundler/wasm_bg.wasm",