pdf-oxide-wasm 0.3.59 → 0.3.61
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/pdf_oxide_bg.js +95 -95
- package/bundler/pdf_oxide_bg.wasm +0 -0
- package/bundler/pdf_oxide_bg.wasm.d.ts +18 -18
- package/nodejs/pdf_oxide.js +95 -95
- package/nodejs/pdf_oxide_bg.wasm +0 -0
- package/nodejs/pdf_oxide_bg.wasm.d.ts +18 -18
- package/package.json +1 -1
- package/web/pdf_oxide.d.ts +18 -18
- package/web/pdf_oxide.js +95 -95
- package/web/pdf_oxide_bg.wasm +0 -0
- package/web/pdf_oxide_bg.wasm.d.ts +18 -18
package/bundler/pdf_oxide_bg.js
CHANGED
|
@@ -45,7 +45,7 @@ export class ArtifactStyle {
|
|
|
45
45
|
*/
|
|
46
46
|
bold() {
|
|
47
47
|
const ptr = this.__destroy_into_raw();
|
|
48
|
-
const ret = wasm.
|
|
48
|
+
const ret = wasm.artifactstyle_bold(ptr);
|
|
49
49
|
return ArtifactStyle.__wrap(ret);
|
|
50
50
|
}
|
|
51
51
|
/**
|
|
@@ -57,7 +57,7 @@ export class ArtifactStyle {
|
|
|
57
57
|
*/
|
|
58
58
|
color(r, g, b) {
|
|
59
59
|
const ptr = this.__destroy_into_raw();
|
|
60
|
-
const ret = wasm.
|
|
60
|
+
const ret = wasm.artifactstyle_color(ptr, r, g, b);
|
|
61
61
|
return ArtifactStyle.__wrap(ret);
|
|
62
62
|
}
|
|
63
63
|
/**
|
|
@@ -70,14 +70,14 @@ export class ArtifactStyle {
|
|
|
70
70
|
const ptr = this.__destroy_into_raw();
|
|
71
71
|
const ptr0 = passStringToWasm0(name, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
72
72
|
const len0 = WASM_VECTOR_LEN;
|
|
73
|
-
const ret = wasm.
|
|
73
|
+
const ret = wasm.artifactstyle_font(ptr, ptr0, len0, size);
|
|
74
74
|
return ArtifactStyle.__wrap(ret);
|
|
75
75
|
}
|
|
76
76
|
/**
|
|
77
77
|
* Create a new artifact style.
|
|
78
78
|
*/
|
|
79
79
|
constructor() {
|
|
80
|
-
const ret = wasm.
|
|
80
|
+
const ret = wasm.artifactstyle_new();
|
|
81
81
|
this.__wbg_ptr = ret;
|
|
82
82
|
ArtifactStyleFinalization.register(this, this.__wbg_ptr, this);
|
|
83
83
|
return this;
|
|
@@ -112,7 +112,7 @@ export class Dss {
|
|
|
112
112
|
* @returns {number}
|
|
113
113
|
*/
|
|
114
114
|
get certCount() {
|
|
115
|
-
const ret = wasm.
|
|
115
|
+
const ret = wasm.dss_certCount(this.__wbg_ptr);
|
|
116
116
|
return ret >>> 0;
|
|
117
117
|
}
|
|
118
118
|
/**
|
|
@@ -120,7 +120,7 @@ export class Dss {
|
|
|
120
120
|
* @returns {number}
|
|
121
121
|
*/
|
|
122
122
|
get crlCount() {
|
|
123
|
-
const ret = wasm.
|
|
123
|
+
const ret = wasm.dss_crlCount(this.__wbg_ptr);
|
|
124
124
|
return ret >>> 0;
|
|
125
125
|
}
|
|
126
126
|
/**
|
|
@@ -131,7 +131,7 @@ export class Dss {
|
|
|
131
131
|
getCert(i) {
|
|
132
132
|
try {
|
|
133
133
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
134
|
-
wasm.
|
|
134
|
+
wasm.dss_getCert(retptr, this.__wbg_ptr, i);
|
|
135
135
|
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
136
136
|
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
137
137
|
let v1;
|
|
@@ -152,7 +152,7 @@ export class Dss {
|
|
|
152
152
|
getCrl(i) {
|
|
153
153
|
try {
|
|
154
154
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
155
|
-
wasm.
|
|
155
|
+
wasm.dss_getCrl(retptr, this.__wbg_ptr, i);
|
|
156
156
|
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
157
157
|
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
158
158
|
let v1;
|
|
@@ -173,7 +173,7 @@ export class Dss {
|
|
|
173
173
|
getOcsp(i) {
|
|
174
174
|
try {
|
|
175
175
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
176
|
-
wasm.
|
|
176
|
+
wasm.dss_getOcsp(retptr, this.__wbg_ptr, i);
|
|
177
177
|
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
178
178
|
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
179
179
|
let v1;
|
|
@@ -191,7 +191,7 @@ export class Dss {
|
|
|
191
191
|
* @returns {number}
|
|
192
192
|
*/
|
|
193
193
|
get ocspCount() {
|
|
194
|
-
const ret = wasm.
|
|
194
|
+
const ret = wasm.dss_ocspCount(this.__wbg_ptr);
|
|
195
195
|
return ret >>> 0;
|
|
196
196
|
}
|
|
197
197
|
/**
|
|
@@ -201,7 +201,7 @@ export class Dss {
|
|
|
201
201
|
get vri() {
|
|
202
202
|
try {
|
|
203
203
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
204
|
-
wasm.
|
|
204
|
+
wasm.dss_vri(retptr, this.__wbg_ptr);
|
|
205
205
|
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
206
206
|
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
207
207
|
var v1 = getArrayJsValueFromWasm0(r0, r1).slice();
|
|
@@ -260,7 +260,7 @@ export class RevocationMaterial {
|
|
|
260
260
|
addCert(der) {
|
|
261
261
|
const ptr0 = passArray8ToWasm0(der, wasm.__wbindgen_export);
|
|
262
262
|
const len0 = WASM_VECTOR_LEN;
|
|
263
|
-
wasm.
|
|
263
|
+
wasm.revocationmaterial_addCert(this.__wbg_ptr, ptr0, len0);
|
|
264
264
|
}
|
|
265
265
|
/**
|
|
266
266
|
* Add a DER CRL.
|
|
@@ -269,7 +269,7 @@ export class RevocationMaterial {
|
|
|
269
269
|
addCrl(der) {
|
|
270
270
|
const ptr0 = passArray8ToWasm0(der, wasm.__wbindgen_export);
|
|
271
271
|
const len0 = WASM_VECTOR_LEN;
|
|
272
|
-
wasm.
|
|
272
|
+
wasm.revocationmaterial_addCrl(this.__wbg_ptr, ptr0, len0);
|
|
273
273
|
}
|
|
274
274
|
/**
|
|
275
275
|
* Add a DER OCSP response.
|
|
@@ -278,13 +278,13 @@ export class RevocationMaterial {
|
|
|
278
278
|
addOcsp(der) {
|
|
279
279
|
const ptr0 = passArray8ToWasm0(der, wasm.__wbindgen_export);
|
|
280
280
|
const len0 = WASM_VECTOR_LEN;
|
|
281
|
-
wasm.
|
|
281
|
+
wasm.revocationmaterial_addOcsp(this.__wbg_ptr, ptr0, len0);
|
|
282
282
|
}
|
|
283
283
|
/**
|
|
284
284
|
* Create an empty revocation-material set.
|
|
285
285
|
*/
|
|
286
286
|
constructor() {
|
|
287
|
-
const ret = wasm.
|
|
287
|
+
const ret = wasm.revocationmaterial_new();
|
|
288
288
|
this.__wbg_ptr = ret;
|
|
289
289
|
RevocationMaterialFinalization.register(this, this.__wbg_ptr, this);
|
|
290
290
|
return this;
|
|
@@ -6564,11 +6564,11 @@ export function splitByBookmarks(src_bytes, title_prefix, ignore_case, level, in
|
|
|
6564
6564
|
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
6565
6565
|
}
|
|
6566
6566
|
}
|
|
6567
|
-
export function
|
|
6567
|
+
export function __wbg_Error_ef53bc310eb298a0(arg0, arg1) {
|
|
6568
6568
|
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
6569
6569
|
return addHeapObject(ret);
|
|
6570
6570
|
}
|
|
6571
|
-
export function
|
|
6571
|
+
export function __wbg_Number_6b506e6536831eaa(arg0) {
|
|
6572
6572
|
const ret = Number(getObject(arg0));
|
|
6573
6573
|
return ret;
|
|
6574
6574
|
}
|
|
@@ -6579,68 +6579,68 @@ export function __wbg_String_8564e559799eccda(arg0, arg1) {
|
|
|
6579
6579
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
6580
6580
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
6581
6581
|
}
|
|
6582
|
-
export function
|
|
6582
|
+
export function __wbg___wbindgen_bigint_get_as_i64_38130e98eecd467d(arg0, arg1) {
|
|
6583
6583
|
const v = getObject(arg1);
|
|
6584
6584
|
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
6585
6585
|
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
6586
6586
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
6587
6587
|
}
|
|
6588
|
-
export function
|
|
6588
|
+
export function __wbg___wbindgen_boolean_get_1a45e2c38d4d41b9(arg0) {
|
|
6589
6589
|
const v = getObject(arg0);
|
|
6590
6590
|
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
6591
6591
|
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
6592
6592
|
}
|
|
6593
|
-
export function
|
|
6593
|
+
export function __wbg___wbindgen_debug_string_0accd80f45e5faa2(arg0, arg1) {
|
|
6594
6594
|
const ret = debugString(getObject(arg1));
|
|
6595
6595
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
6596
6596
|
const len1 = WASM_VECTOR_LEN;
|
|
6597
6597
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
6598
6598
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
6599
6599
|
}
|
|
6600
|
-
export function
|
|
6600
|
+
export function __wbg___wbindgen_in_70a403a56e771704(arg0, arg1) {
|
|
6601
6601
|
const ret = getObject(arg0) in getObject(arg1);
|
|
6602
6602
|
return ret;
|
|
6603
6603
|
}
|
|
6604
|
-
export function
|
|
6604
|
+
export function __wbg___wbindgen_is_bigint_6ffd6468a9bc44b9(arg0) {
|
|
6605
6605
|
const ret = typeof(getObject(arg0)) === 'bigint';
|
|
6606
6606
|
return ret;
|
|
6607
6607
|
}
|
|
6608
|
-
export function
|
|
6608
|
+
export function __wbg___wbindgen_is_function_754e9f305ff6029e(arg0) {
|
|
6609
6609
|
const ret = typeof(getObject(arg0)) === 'function';
|
|
6610
6610
|
return ret;
|
|
6611
6611
|
}
|
|
6612
|
-
export function
|
|
6612
|
+
export function __wbg___wbindgen_is_null_87c3bfe968c6a5ad(arg0) {
|
|
6613
6613
|
const ret = getObject(arg0) === null;
|
|
6614
6614
|
return ret;
|
|
6615
6615
|
}
|
|
6616
|
-
export function
|
|
6616
|
+
export function __wbg___wbindgen_is_object_56732c2bc353f41d(arg0) {
|
|
6617
6617
|
const val = getObject(arg0);
|
|
6618
6618
|
const ret = typeof(val) === 'object' && val !== null;
|
|
6619
6619
|
return ret;
|
|
6620
6620
|
}
|
|
6621
|
-
export function
|
|
6621
|
+
export function __wbg___wbindgen_is_string_c236cabd84a4d769(arg0) {
|
|
6622
6622
|
const ret = typeof(getObject(arg0)) === 'string';
|
|
6623
6623
|
return ret;
|
|
6624
6624
|
}
|
|
6625
|
-
export function
|
|
6625
|
+
export function __wbg___wbindgen_is_undefined_67b456be8673d3d7(arg0) {
|
|
6626
6626
|
const ret = getObject(arg0) === undefined;
|
|
6627
6627
|
return ret;
|
|
6628
6628
|
}
|
|
6629
|
-
export function
|
|
6629
|
+
export function __wbg___wbindgen_jsval_eq_1068e624fa87f6ab(arg0, arg1) {
|
|
6630
6630
|
const ret = getObject(arg0) === getObject(arg1);
|
|
6631
6631
|
return ret;
|
|
6632
6632
|
}
|
|
6633
|
-
export function
|
|
6633
|
+
export function __wbg___wbindgen_jsval_loose_eq_2c56564c75129511(arg0, arg1) {
|
|
6634
6634
|
const ret = getObject(arg0) == getObject(arg1);
|
|
6635
6635
|
return ret;
|
|
6636
6636
|
}
|
|
6637
|
-
export function
|
|
6637
|
+
export function __wbg___wbindgen_number_get_9bb1761122181af2(arg0, arg1) {
|
|
6638
6638
|
const obj = getObject(arg1);
|
|
6639
6639
|
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
6640
6640
|
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
6641
6641
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
6642
6642
|
}
|
|
6643
|
-
export function
|
|
6643
|
+
export function __wbg___wbindgen_string_get_72bdf95d3ae505b1(arg0, arg1) {
|
|
6644
6644
|
const obj = getObject(arg1);
|
|
6645
6645
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
6646
6646
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
@@ -6648,20 +6648,23 @@ export function __wbg___wbindgen_string_get_d109740c0d18f4d7(arg0, arg1) {
|
|
|
6648
6648
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
6649
6649
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
6650
6650
|
}
|
|
6651
|
-
export function
|
|
6651
|
+
export function __wbg___wbindgen_throw_1506f2235d1bdba0(arg0, arg1) {
|
|
6652
6652
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
6653
6653
|
}
|
|
6654
|
-
export function
|
|
6654
|
+
export function __wbg_call_8a89609d89f6608a() { return handleError(function (arg0, arg1) {
|
|
6655
6655
|
const ret = getObject(arg0).call(getObject(arg1));
|
|
6656
6656
|
return addHeapObject(ret);
|
|
6657
6657
|
}, arguments); }
|
|
6658
|
-
export function
|
|
6658
|
+
export function __wbg_debug_6d96d354ecb8cdb3(arg0, arg1, arg2, arg3) {
|
|
6659
6659
|
console.debug(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
6660
6660
|
}
|
|
6661
|
-
export function
|
|
6661
|
+
export function __wbg_done_60cf307fcc680536(arg0) {
|
|
6662
6662
|
const ret = getObject(arg0).done;
|
|
6663
6663
|
return ret;
|
|
6664
6664
|
}
|
|
6665
|
+
export function __wbg_error_9ad1450feb5d541d(arg0, arg1, arg2, arg3) {
|
|
6666
|
+
console.error(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
6667
|
+
}
|
|
6665
6668
|
export function __wbg_error_a6fa202b58aa1cd3(arg0, arg1) {
|
|
6666
6669
|
let deferred0_0;
|
|
6667
6670
|
let deferred0_1;
|
|
@@ -6673,40 +6676,37 @@ export function __wbg_error_a6fa202b58aa1cd3(arg0, arg1) {
|
|
|
6673
6676
|
wasm.__wbindgen_export4(deferred0_0, deferred0_1, 1);
|
|
6674
6677
|
}
|
|
6675
6678
|
}
|
|
6676
|
-
export function
|
|
6677
|
-
console.error(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
6678
|
-
}
|
|
6679
|
-
export function __wbg_fromCodePoint_a42ea1d19a55f2d5() { return handleError(function (arg0) {
|
|
6679
|
+
export function __wbg_fromCodePoint_5c5781da87ec0bc3() { return handleError(function (arg0) {
|
|
6680
6680
|
const ret = String.fromCodePoint(arg0 >>> 0);
|
|
6681
6681
|
return addHeapObject(ret);
|
|
6682
6682
|
}, arguments); }
|
|
6683
|
-
export function
|
|
6683
|
+
export function __wbg_from_d300fe49deab18f5(arg0) {
|
|
6684
6684
|
const ret = Array.from(getObject(arg0));
|
|
6685
6685
|
return addHeapObject(ret);
|
|
6686
6686
|
}
|
|
6687
6687
|
export function __wbg_getRandomValues_76dfc69825c9c552() { return handleError(function (arg0, arg1) {
|
|
6688
6688
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
6689
6689
|
}, arguments); }
|
|
6690
|
-
export function
|
|
6690
|
+
export function __wbg_getRandomValues_8aa3112c6615eef6() { return handleError(function (arg0, arg1) {
|
|
6691
6691
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
6692
6692
|
}, arguments); }
|
|
6693
|
-
export function
|
|
6693
|
+
export function __wbg_getTime_00b3f7db575e4ef5(arg0) {
|
|
6694
6694
|
const ret = getObject(arg0).getTime();
|
|
6695
6695
|
return ret;
|
|
6696
6696
|
}
|
|
6697
|
-
export function
|
|
6697
|
+
export function __wbg_getTimezoneOffset_08e2892156231088(arg0) {
|
|
6698
6698
|
const ret = getObject(arg0).getTimezoneOffset();
|
|
6699
6699
|
return ret;
|
|
6700
6700
|
}
|
|
6701
|
-
export function
|
|
6701
|
+
export function __wbg_get_1f8f054ddbaa7db2() { return handleError(function (arg0, arg1) {
|
|
6702
6702
|
const ret = Reflect.get(getObject(arg0), getObject(arg1));
|
|
6703
6703
|
return addHeapObject(ret);
|
|
6704
6704
|
}, arguments); }
|
|
6705
|
-
export function
|
|
6705
|
+
export function __wbg_get_2b48c7d0d006a781(arg0, arg1) {
|
|
6706
6706
|
const ret = getObject(arg0)[arg1 >>> 0];
|
|
6707
6707
|
return addHeapObject(ret);
|
|
6708
6708
|
}
|
|
6709
|
-
export function
|
|
6709
|
+
export function __wbg_get_unchecked_33f6e5c9e2f2d6b2(arg0, arg1) {
|
|
6710
6710
|
const ret = getObject(arg0)[arg1 >>> 0];
|
|
6711
6711
|
return addHeapObject(ret);
|
|
6712
6712
|
}
|
|
@@ -6714,10 +6714,10 @@ export function __wbg_get_with_ref_key_6412cf3094599694(arg0, arg1) {
|
|
|
6714
6714
|
const ret = getObject(arg0)[getObject(arg1)];
|
|
6715
6715
|
return addHeapObject(ret);
|
|
6716
6716
|
}
|
|
6717
|
-
export function
|
|
6717
|
+
export function __wbg_info_5cfb3f6c22c53cf9(arg0, arg1, arg2, arg3) {
|
|
6718
6718
|
console.info(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
6719
6719
|
}
|
|
6720
|
-
export function
|
|
6720
|
+
export function __wbg_instanceof_ArrayBuffer_8f49811467741499(arg0) {
|
|
6721
6721
|
let result;
|
|
6722
6722
|
try {
|
|
6723
6723
|
result = getObject(arg0) instanceof ArrayBuffer;
|
|
@@ -6727,7 +6727,7 @@ export function __wbg_instanceof_ArrayBuffer_53db37b06f6b9afe(arg0) {
|
|
|
6727
6727
|
const ret = result;
|
|
6728
6728
|
return ret;
|
|
6729
6729
|
}
|
|
6730
|
-
export function
|
|
6730
|
+
export function __wbg_instanceof_Uint8Array_86f30649f63ef9c2(arg0) {
|
|
6731
6731
|
let result;
|
|
6732
6732
|
try {
|
|
6733
6733
|
result = getObject(arg0) instanceof Uint8Array;
|
|
@@ -6737,38 +6737,30 @@ export function __wbg_instanceof_Uint8Array_abd07d4bd221d50b(arg0) {
|
|
|
6737
6737
|
const ret = result;
|
|
6738
6738
|
return ret;
|
|
6739
6739
|
}
|
|
6740
|
-
export function
|
|
6740
|
+
export function __wbg_isArray_67c2c9c4313f4448(arg0) {
|
|
6741
6741
|
const ret = Array.isArray(getObject(arg0));
|
|
6742
6742
|
return ret;
|
|
6743
6743
|
}
|
|
6744
|
-
export function
|
|
6744
|
+
export function __wbg_isSafeInteger_66acec27e09e99a7(arg0) {
|
|
6745
6745
|
const ret = Number.isSafeInteger(getObject(arg0));
|
|
6746
6746
|
return ret;
|
|
6747
6747
|
}
|
|
6748
|
-
export function
|
|
6748
|
+
export function __wbg_iterator_8732428d309e270e() {
|
|
6749
6749
|
const ret = Symbol.iterator;
|
|
6750
6750
|
return addHeapObject(ret);
|
|
6751
6751
|
}
|
|
6752
|
-
export function
|
|
6752
|
+
export function __wbg_length_4a591ecaa01354d9(arg0) {
|
|
6753
6753
|
const ret = getObject(arg0).length;
|
|
6754
6754
|
return ret;
|
|
6755
6755
|
}
|
|
6756
|
-
export function
|
|
6756
|
+
export function __wbg_length_66f1a4b2e9026940(arg0) {
|
|
6757
6757
|
const ret = getObject(arg0).length;
|
|
6758
6758
|
return ret;
|
|
6759
6759
|
}
|
|
6760
|
-
export function
|
|
6760
|
+
export function __wbg_log_d5e0f90a3ac097e3(arg0, arg1, arg2, arg3) {
|
|
6761
6761
|
console.log(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
6762
6762
|
}
|
|
6763
|
-
export function
|
|
6764
|
-
const ret = new Object();
|
|
6765
|
-
return addHeapObject(ret);
|
|
6766
|
-
}
|
|
6767
|
-
export function __wbg_new_070df68d66325372() {
|
|
6768
|
-
const ret = new Map();
|
|
6769
|
-
return addHeapObject(ret);
|
|
6770
|
-
}
|
|
6771
|
-
export function __wbg_new_0_2722fcdb71a888a6() {
|
|
6763
|
+
export function __wbg_new_0_445c13a750296eb6() {
|
|
6772
6764
|
const ret = new Date();
|
|
6773
6765
|
return addHeapObject(ret);
|
|
6774
6766
|
}
|
|
@@ -6776,50 +6768,58 @@ export function __wbg_new_227d7c05414eb861() {
|
|
|
6776
6768
|
const ret = new Error();
|
|
6777
6769
|
return addHeapObject(ret);
|
|
6778
6770
|
}
|
|
6779
|
-
export function
|
|
6780
|
-
const ret = new
|
|
6771
|
+
export function __wbg_new_578aeef4b6b94378(arg0) {
|
|
6772
|
+
const ret = new Uint8Array(getObject(arg0));
|
|
6781
6773
|
return addHeapObject(ret);
|
|
6782
6774
|
}
|
|
6783
|
-
export function
|
|
6784
|
-
const ret = new
|
|
6775
|
+
export function __wbg_new_622fc80556be2e26() {
|
|
6776
|
+
const ret = new Map();
|
|
6785
6777
|
return addHeapObject(ret);
|
|
6786
6778
|
}
|
|
6787
|
-
export function
|
|
6779
|
+
export function __wbg_new_6d75fd236f920a62(arg0) {
|
|
6788
6780
|
const ret = new Date(getObject(arg0));
|
|
6789
6781
|
return addHeapObject(ret);
|
|
6790
6782
|
}
|
|
6791
|
-
export function
|
|
6783
|
+
export function __wbg_new_ce1ab61c1c2b300d() {
|
|
6784
|
+
const ret = new Object();
|
|
6785
|
+
return addHeapObject(ret);
|
|
6786
|
+
}
|
|
6787
|
+
export function __wbg_new_d90091b82fdf5b91() {
|
|
6788
|
+
const ret = new Array();
|
|
6789
|
+
return addHeapObject(ret);
|
|
6790
|
+
}
|
|
6791
|
+
export function __wbg_new_from_slice_18fa1f71286d66b8(arg0, arg1) {
|
|
6792
6792
|
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
6793
6793
|
return addHeapObject(ret);
|
|
6794
6794
|
}
|
|
6795
|
-
export function
|
|
6795
|
+
export function __wbg_next_9e03acdf51c4960d(arg0) {
|
|
6796
6796
|
const ret = getObject(arg0).next;
|
|
6797
6797
|
return addHeapObject(ret);
|
|
6798
6798
|
}
|
|
6799
|
-
export function
|
|
6799
|
+
export function __wbg_next_eb8ca7351fa27906() { return handleError(function (arg0) {
|
|
6800
6800
|
const ret = getObject(arg0).next();
|
|
6801
6801
|
return addHeapObject(ret);
|
|
6802
6802
|
}, arguments); }
|
|
6803
|
-
export function
|
|
6803
|
+
export function __wbg_prototypesetcall_3249fc62a0fafa30(arg0, arg1, arg2) {
|
|
6804
6804
|
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), getObject(arg2));
|
|
6805
6805
|
}
|
|
6806
|
-
export function
|
|
6806
|
+
export function __wbg_push_a6822215aa43e71c(arg0, arg1) {
|
|
6807
6807
|
const ret = getObject(arg0).push(getObject(arg1));
|
|
6808
6808
|
return ret;
|
|
6809
6809
|
}
|
|
6810
|
+
export function __wbg_set_52b1e1eb5bed906a(arg0, arg1, arg2) {
|
|
6811
|
+
const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
|
|
6812
|
+
return addHeapObject(ret);
|
|
6813
|
+
}
|
|
6810
6814
|
export function __wbg_set_6be42768c690e380(arg0, arg1, arg2) {
|
|
6811
6815
|
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
6812
6816
|
}
|
|
6813
|
-
export function
|
|
6814
|
-
getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
|
|
6815
|
-
}
|
|
6816
|
-
export function __wbg_set_a0e911be3da02782() { return handleError(function (arg0, arg1, arg2) {
|
|
6817
|
+
export function __wbg_set_6e30c9374c26414c() { return handleError(function (arg0, arg1, arg2) {
|
|
6817
6818
|
const ret = Reflect.set(getObject(arg0), getObject(arg1), getObject(arg2));
|
|
6818
6819
|
return ret;
|
|
6819
6820
|
}, arguments); }
|
|
6820
|
-
export function
|
|
6821
|
-
|
|
6822
|
-
return addHeapObject(ret);
|
|
6821
|
+
export function __wbg_set_dca99999bba88a9a(arg0, arg1, arg2) {
|
|
6822
|
+
getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
|
|
6823
6823
|
}
|
|
6824
6824
|
export function __wbg_stack_3b0d974bbf31e44f(arg0, arg1) {
|
|
6825
6825
|
const ret = getObject(arg1).stack;
|
|
@@ -6828,11 +6828,11 @@ export function __wbg_stack_3b0d974bbf31e44f(arg0, arg1) {
|
|
|
6828
6828
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
6829
6829
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
6830
6830
|
}
|
|
6831
|
-
export function
|
|
6831
|
+
export function __wbg_value_f3625092ee4b37f4(arg0) {
|
|
6832
6832
|
const ret = getObject(arg0).value;
|
|
6833
6833
|
return addHeapObject(ret);
|
|
6834
6834
|
}
|
|
6835
|
-
export function
|
|
6835
|
+
export function __wbg_warn_c49a7a9581bf8bea(arg0, arg1, arg2, arg3) {
|
|
6836
6836
|
console.warn(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
6837
6837
|
}
|
|
6838
6838
|
export function __wbg_wasmsignature_new(arg0) {
|
|
@@ -6866,21 +6866,27 @@ export function __wbindgen_object_clone_ref(arg0) {
|
|
|
6866
6866
|
export function __wbindgen_object_drop_ref(arg0) {
|
|
6867
6867
|
takeObject(arg0);
|
|
6868
6868
|
}
|
|
6869
|
-
const WasmArtifactFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6870
|
-
? { register: () => {}, unregister: () => {} }
|
|
6871
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmartifact_free(ptr, 1));
|
|
6872
6869
|
const ArtifactStyleFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6873
6870
|
? { register: () => {}, unregister: () => {} }
|
|
6874
6871
|
: new FinalizationRegistry(ptr => wasm.__wbg_artifactstyle_free(ptr, 1));
|
|
6872
|
+
const DssFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6873
|
+
? { register: () => {}, unregister: () => {} }
|
|
6874
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_dss_free(ptr, 1));
|
|
6875
|
+
const RevocationMaterialFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6876
|
+
? { register: () => {}, unregister: () => {} }
|
|
6877
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_revocationmaterial_free(ptr, 1));
|
|
6878
|
+
const StreamingTableFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6879
|
+
? { register: () => {}, unregister: () => {} }
|
|
6880
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_streamingtable_free(ptr, 1));
|
|
6881
|
+
const WasmArtifactFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6882
|
+
? { register: () => {}, unregister: () => {} }
|
|
6883
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmartifact_free(ptr, 1));
|
|
6875
6884
|
const WasmCertificateFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6876
6885
|
? { register: () => {}, unregister: () => {} }
|
|
6877
6886
|
: new FinalizationRegistry(ptr => wasm.__wbg_wasmcertificate_free(ptr, 1));
|
|
6878
6887
|
const WasmDocumentBuilderFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6879
6888
|
? { register: () => {}, unregister: () => {} }
|
|
6880
6889
|
: new FinalizationRegistry(ptr => wasm.__wbg_wasmdocumentbuilder_free(ptr, 1));
|
|
6881
|
-
const DssFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6882
|
-
? { register: () => {}, unregister: () => {} }
|
|
6883
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_dss_free(ptr, 1));
|
|
6884
6890
|
const WasmEmbeddedFontFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6885
6891
|
? { register: () => {}, unregister: () => {} }
|
|
6886
6892
|
: new FinalizationRegistry(ptr => wasm.__wbg_wasmembeddedfont_free(ptr, 1));
|
|
@@ -6911,15 +6917,9 @@ const WasmPdfDocumentFinalization = (typeof FinalizationRegistry === 'undefined'
|
|
|
6911
6917
|
const WasmPdfPageRegionFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6912
6918
|
? { register: () => {}, unregister: () => {} }
|
|
6913
6919
|
: new FinalizationRegistry(ptr => wasm.__wbg_wasmpdfpageregion_free(ptr, 1));
|
|
6914
|
-
const RevocationMaterialFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6915
|
-
? { register: () => {}, unregister: () => {} }
|
|
6916
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_revocationmaterial_free(ptr, 1));
|
|
6917
6920
|
const WasmSignatureFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6918
6921
|
? { register: () => {}, unregister: () => {} }
|
|
6919
6922
|
: new FinalizationRegistry(ptr => wasm.__wbg_wasmsignature_free(ptr, 1));
|
|
6920
|
-
const StreamingTableFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6921
|
-
? { register: () => {}, unregister: () => {} }
|
|
6922
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_streamingtable_free(ptr, 1));
|
|
6923
6923
|
const WasmTimestampFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6924
6924
|
? { register: () => {}, unregister: () => {} }
|
|
6925
6925
|
: new FinalizationRegistry(ptr => wasm.__wbg_wasmtimestamp_free(ptr, 1));
|
|
Binary file
|
|
@@ -17,25 +17,38 @@ export const __wbg_wasmpdfdocument_free: (a: number, b: number) => void;
|
|
|
17
17
|
export const __wbg_wasmpdfpageregion_free: (a: number, b: number) => void;
|
|
18
18
|
export const __wbg_wasmsignature_free: (a: number, b: number) => void;
|
|
19
19
|
export const __wbg_wasmtimestamp_free: (a: number, b: number) => void;
|
|
20
|
+
export const artifactstyle_bold: (a: number) => number;
|
|
21
|
+
export const artifactstyle_color: (a: number, b: number, c: number, d: number) => number;
|
|
22
|
+
export const artifactstyle_font: (a: number, b: number, c: number, d: number) => number;
|
|
23
|
+
export const artifactstyle_new: () => number;
|
|
20
24
|
export const cryptoCbom: (a: number) => void;
|
|
21
25
|
export const cryptoInventory: (a: number) => void;
|
|
22
26
|
export const cryptoPolicy: (a: number) => void;
|
|
27
|
+
export const dss_certCount: (a: number) => number;
|
|
28
|
+
export const dss_crlCount: (a: number) => number;
|
|
29
|
+
export const dss_getCert: (a: number, b: number, c: number) => void;
|
|
30
|
+
export const dss_getCrl: (a: number, b: number, c: number) => void;
|
|
31
|
+
export const dss_getOcsp: (a: number, b: number, c: number) => void;
|
|
32
|
+
export const dss_ocspCount: (a: number) => number;
|
|
33
|
+
export const dss_vri: (a: number, b: number) => void;
|
|
23
34
|
export const generateBarcodeSvg: (a: number, b: number, c: number, d: number) => void;
|
|
24
35
|
export const generateQrSvg: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
25
36
|
export const hasDocumentTimestamp: (a: number, b: number) => number;
|
|
26
37
|
export const modelManifest: (a: number) => void;
|
|
27
38
|
export const planSplitByBookmarks: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => void;
|
|
28
39
|
export const prefetchAvailable: () => number;
|
|
40
|
+
export const revocationmaterial_addCert: (a: number, b: number, c: number) => void;
|
|
41
|
+
export const revocationmaterial_addCrl: (a: number, b: number, c: number) => void;
|
|
42
|
+
export const revocationmaterial_addOcsp: (a: number, b: number, c: number) => void;
|
|
43
|
+
export const revocationmaterial_new: () => number;
|
|
29
44
|
export const setCryptoPolicy: (a: number, b: number, c: number) => void;
|
|
30
45
|
export const setLogLevel: (a: number, b: number, c: number) => void;
|
|
31
46
|
export const signPdfBytes: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => void;
|
|
32
47
|
export const signPdfBytesPades: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number, l: number) => void;
|
|
33
48
|
export const splitByBookmarks: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => void;
|
|
34
|
-
export const streamingtable_batchCount: (a: number) => number;
|
|
35
49
|
export const streamingtable_columnCount: (a: number) => number;
|
|
36
50
|
export const streamingtable_finish: (a: number, b: number) => void;
|
|
37
51
|
export const streamingtable_flush: (a: number) => void;
|
|
38
|
-
export const streamingtable_pendingRowCount: (a: number) => number;
|
|
39
52
|
export const streamingtable_pushRow: (a: number, b: number, c: number, d: number) => void;
|
|
40
53
|
export const streamingtable_pushRowSpan: (a: number, b: number, c: number) => void;
|
|
41
54
|
export const wasmartifact_center: (a: number, b: number) => number;
|
|
@@ -44,10 +57,6 @@ export const wasmartifact_new: () => number;
|
|
|
44
57
|
export const wasmartifact_right: (a: number, b: number) => number;
|
|
45
58
|
export const wasmartifact_withOffset: (a: number, b: number) => number;
|
|
46
59
|
export const wasmartifact_withStyle: (a: number, b: number) => number;
|
|
47
|
-
export const wasmartifactstyle_bold: (a: number) => number;
|
|
48
|
-
export const wasmartifactstyle_color: (a: number, b: number, c: number, d: number) => number;
|
|
49
|
-
export const wasmartifactstyle_font: (a: number, b: number, c: number, d: number) => number;
|
|
50
|
-
export const wasmartifactstyle_new: () => number;
|
|
51
60
|
export const wasmcertificate_isValid: (a: number, b: number) => void;
|
|
52
61
|
export const wasmcertificate_issuer: (a: number, b: number) => void;
|
|
53
62
|
export const wasmcertificate_load: (a: number, b: number, c: number) => void;
|
|
@@ -73,11 +82,6 @@ export const wasmdocumentbuilder_subject: (a: number, b: number, c: number, d: n
|
|
|
73
82
|
export const wasmdocumentbuilder_taggedPdfUa1: (a: number, b: number) => void;
|
|
74
83
|
export const wasmdocumentbuilder_title: (a: number, b: number, c: number, d: number) => void;
|
|
75
84
|
export const wasmdocumentbuilder_toBytesEncrypted: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
76
|
-
export const wasmdss_certCount: (a: number) => number;
|
|
77
|
-
export const wasmdss_getCert: (a: number, b: number, c: number) => void;
|
|
78
|
-
export const wasmdss_getCrl: (a: number, b: number, c: number) => void;
|
|
79
|
-
export const wasmdss_getOcsp: (a: number, b: number, c: number) => void;
|
|
80
|
-
export const wasmdss_vri: (a: number, b: number) => void;
|
|
81
85
|
export const wasmembeddedfont_fromBytes: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
82
86
|
export const wasmembeddedfont_name: (a: number, b: number) => void;
|
|
83
87
|
export const wasmfluentpagebuilder_at: (a: number, b: number, c: number, d: number) => void;
|
|
@@ -269,10 +273,6 @@ export const wasmpdfpageregion_extractText: (a: number, b: number) => void;
|
|
|
269
273
|
export const wasmpdfpageregion_extractTextLines: (a: number, b: number) => void;
|
|
270
274
|
export const wasmpdfpageregion_extractTextOcr: (a: number, b: number, c: number) => void;
|
|
271
275
|
export const wasmpdfpageregion_extractWords: (a: number, b: number) => void;
|
|
272
|
-
export const wasmrevocationmaterial_addCert: (a: number, b: number, c: number) => void;
|
|
273
|
-
export const wasmrevocationmaterial_addCrl: (a: number, b: number, c: number) => void;
|
|
274
|
-
export const wasmrevocationmaterial_addOcsp: (a: number, b: number, c: number) => void;
|
|
275
|
-
export const wasmrevocationmaterial_new: () => number;
|
|
276
276
|
export const wasmsignature_contactInfo: (a: number, b: number) => void;
|
|
277
277
|
export const wasmsignature_coversWholeDocument: (a: number) => number;
|
|
278
278
|
export const wasmsignature_location: (a: number, b: number) => void;
|
|
@@ -290,8 +290,8 @@ export const wasmtimestamp_serial: (a: number, b: number) => void;
|
|
|
290
290
|
export const wasmtimestamp_time: (a: number) => bigint;
|
|
291
291
|
export const wasmtimestamp_tsaName: (a: number, b: number) => void;
|
|
292
292
|
export const wasmtimestamp_verify: (a: number, b: number) => void;
|
|
293
|
-
export const
|
|
294
|
-
export const
|
|
293
|
+
export const streamingtable_batchCount: (a: number) => number;
|
|
294
|
+
export const streamingtable_pendingRowCount: (a: number) => number;
|
|
295
295
|
export const wasmocrconfig_new: () => number;
|
|
296
296
|
export const wasmpdfdocument_saveToBytes: (a: number, b: number) => void;
|
|
297
297
|
export const wasmfooter_center: (a: number, b: number) => number;
|
|
@@ -304,8 +304,8 @@ export const wasmfooter_new: () => number;
|
|
|
304
304
|
export const wasmheader_new: () => number;
|
|
305
305
|
export const __wbg_wasmocrengine_free: (a: number, b: number) => void;
|
|
306
306
|
export const disableLogging: () => void;
|
|
307
|
-
export const __wbg_wasmfooter_free: (a: number, b: number) => void;
|
|
308
307
|
export const __wbg_wasmheader_free: (a: number, b: number) => void;
|
|
308
|
+
export const __wbg_wasmfooter_free: (a: number, b: number) => void;
|
|
309
309
|
export const lut_inverse_interp16: (a: number, b: number, c: number) => number;
|
|
310
310
|
export const qcms_profile_precache_output_transform: (a: number) => void;
|
|
311
311
|
export const lut_interp_linear16: (a: number, b: number, c: number) => number;
|