@janssenproject/cedarling_wasm 1.14.0 → 1.15.0-nodejs
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 +39 -0
- package/cedarling_wasm.d.ts +39 -104
- package/cedarling_wasm.js +908 -779
- package/cedarling_wasm_bg.wasm +0 -0
- package/package.json +2 -6
package/cedarling_wasm.js
CHANGED
|
@@ -1,101 +1,22 @@
|
|
|
1
|
-
let wasm;
|
|
2
1
|
|
|
3
|
-
let
|
|
4
|
-
|
|
5
|
-
function getUint8ArrayMemory0() {
|
|
6
|
-
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
|
|
7
|
-
cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
|
|
8
|
-
}
|
|
9
|
-
return cachedUint8ArrayMemory0;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
13
|
-
|
|
14
|
-
cachedTextDecoder.decode();
|
|
15
|
-
|
|
16
|
-
const MAX_SAFARI_DECODE_BYTES = 2146435072;
|
|
17
|
-
let numBytesDecoded = 0;
|
|
18
|
-
function decodeText(ptr, len) {
|
|
19
|
-
numBytesDecoded += len;
|
|
20
|
-
if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
|
|
21
|
-
cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
22
|
-
cachedTextDecoder.decode();
|
|
23
|
-
numBytesDecoded = len;
|
|
24
|
-
}
|
|
25
|
-
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
function getStringFromWasm0(ptr, len) {
|
|
29
|
-
ptr = ptr >>> 0;
|
|
30
|
-
return decodeText(ptr, len);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
let WASM_VECTOR_LEN = 0;
|
|
34
|
-
|
|
35
|
-
const cachedTextEncoder = new TextEncoder();
|
|
36
|
-
|
|
37
|
-
if (!('encodeInto' in cachedTextEncoder)) {
|
|
38
|
-
cachedTextEncoder.encodeInto = function (arg, view) {
|
|
39
|
-
const buf = cachedTextEncoder.encode(arg);
|
|
40
|
-
view.set(buf);
|
|
41
|
-
return {
|
|
42
|
-
read: arg.length,
|
|
43
|
-
written: buf.length
|
|
44
|
-
};
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
function passStringToWasm0(arg, malloc, realloc) {
|
|
49
|
-
|
|
50
|
-
if (realloc === undefined) {
|
|
51
|
-
const buf = cachedTextEncoder.encode(arg);
|
|
52
|
-
const ptr = malloc(buf.length, 1) >>> 0;
|
|
53
|
-
getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
|
|
54
|
-
WASM_VECTOR_LEN = buf.length;
|
|
55
|
-
return ptr;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
let len = arg.length;
|
|
59
|
-
let ptr = malloc(len, 1) >>> 0;
|
|
60
|
-
|
|
61
|
-
const mem = getUint8ArrayMemory0();
|
|
62
|
-
|
|
63
|
-
let offset = 0;
|
|
64
|
-
|
|
65
|
-
for (; offset < len; offset++) {
|
|
66
|
-
const code = arg.charCodeAt(offset);
|
|
67
|
-
if (code > 0x7F) break;
|
|
68
|
-
mem[ptr + offset] = code;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
if (offset !== len) {
|
|
72
|
-
if (offset !== 0) {
|
|
73
|
-
arg = arg.slice(offset);
|
|
74
|
-
}
|
|
75
|
-
ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
|
|
76
|
-
const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
|
|
77
|
-
const ret = cachedTextEncoder.encodeInto(arg, view);
|
|
78
|
-
|
|
79
|
-
offset += ret.written;
|
|
80
|
-
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
|
81
|
-
}
|
|
2
|
+
let imports = {};
|
|
3
|
+
imports['__wbindgen_placeholder__'] = module.exports;
|
|
82
4
|
|
|
83
|
-
|
|
84
|
-
|
|
5
|
+
function addToExternrefTable0(obj) {
|
|
6
|
+
const idx = wasm.__externref_table_alloc();
|
|
7
|
+
wasm.__wbindgen_externrefs.set(idx, obj);
|
|
8
|
+
return idx;
|
|
85
9
|
}
|
|
86
10
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
|
|
91
|
-
cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
|
|
11
|
+
function _assertClass(instance, klass) {
|
|
12
|
+
if (!(instance instanceof klass)) {
|
|
13
|
+
throw new Error(`expected instance of ${klass.name}`);
|
|
92
14
|
}
|
|
93
|
-
return cachedDataViewMemory0;
|
|
94
15
|
}
|
|
95
16
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
17
|
+
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
|
18
|
+
? { register: () => {}, unregister: () => {} }
|
|
19
|
+
: new FinalizationRegistry(state => state.dtor(state.a, state.b));
|
|
99
20
|
|
|
100
21
|
function debugString(val) {
|
|
101
22
|
// primitive types
|
|
@@ -162,10 +83,41 @@ function debugString(val) {
|
|
|
162
83
|
return className;
|
|
163
84
|
}
|
|
164
85
|
|
|
165
|
-
function
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
86
|
+
function getArrayJsValueFromWasm0(ptr, len) {
|
|
87
|
+
ptr = ptr >>> 0;
|
|
88
|
+
const mem = getDataViewMemory0();
|
|
89
|
+
const result = [];
|
|
90
|
+
for (let i = ptr; i < ptr + 4 * len; i += 4) {
|
|
91
|
+
result.push(wasm.__wbindgen_externrefs.get(mem.getUint32(i, true)));
|
|
92
|
+
}
|
|
93
|
+
wasm.__externref_drop_slice(ptr, len);
|
|
94
|
+
return result;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
function getArrayU8FromWasm0(ptr, len) {
|
|
98
|
+
ptr = ptr >>> 0;
|
|
99
|
+
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
let cachedDataViewMemory0 = null;
|
|
103
|
+
function getDataViewMemory0() {
|
|
104
|
+
if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
|
|
105
|
+
cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
|
|
106
|
+
}
|
|
107
|
+
return cachedDataViewMemory0;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
function getStringFromWasm0(ptr, len) {
|
|
111
|
+
ptr = ptr >>> 0;
|
|
112
|
+
return decodeText(ptr, len);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
let cachedUint8ArrayMemory0 = null;
|
|
116
|
+
function getUint8ArrayMemory0() {
|
|
117
|
+
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
|
|
118
|
+
cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
|
|
119
|
+
}
|
|
120
|
+
return cachedUint8ArrayMemory0;
|
|
169
121
|
}
|
|
170
122
|
|
|
171
123
|
function handleError(f, args) {
|
|
@@ -177,15 +129,10 @@ function handleError(f, args) {
|
|
|
177
129
|
}
|
|
178
130
|
}
|
|
179
131
|
|
|
180
|
-
function
|
|
181
|
-
|
|
182
|
-
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
132
|
+
function isLikeNone(x) {
|
|
133
|
+
return x === undefined || x === null;
|
|
183
134
|
}
|
|
184
135
|
|
|
185
|
-
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
|
186
|
-
? { register: () => {}, unregister: () => {} }
|
|
187
|
-
: new FinalizationRegistry(state => state.dtor(state.a, state.b));
|
|
188
|
-
|
|
189
136
|
function makeMutClosure(arg0, arg1, dtor, f) {
|
|
190
137
|
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
191
138
|
const real = (...args) => {
|
|
@@ -213,15 +160,42 @@ function makeMutClosure(arg0, arg1, dtor, f) {
|
|
|
213
160
|
CLOSURE_DTORS.register(real, state, state);
|
|
214
161
|
return real;
|
|
215
162
|
}
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
163
|
+
|
|
164
|
+
function passStringToWasm0(arg, malloc, realloc) {
|
|
165
|
+
if (realloc === undefined) {
|
|
166
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
167
|
+
const ptr = malloc(buf.length, 1) >>> 0;
|
|
168
|
+
getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
|
|
169
|
+
WASM_VECTOR_LEN = buf.length;
|
|
170
|
+
return ptr;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
let len = arg.length;
|
|
174
|
+
let ptr = malloc(len, 1) >>> 0;
|
|
175
|
+
|
|
176
|
+
const mem = getUint8ArrayMemory0();
|
|
177
|
+
|
|
178
|
+
let offset = 0;
|
|
179
|
+
|
|
180
|
+
for (; offset < len; offset++) {
|
|
181
|
+
const code = arg.charCodeAt(offset);
|
|
182
|
+
if (code > 0x7F) break;
|
|
183
|
+
mem[ptr + offset] = code;
|
|
184
|
+
}
|
|
185
|
+
if (offset !== len) {
|
|
186
|
+
if (offset !== 0) {
|
|
187
|
+
arg = arg.slice(offset);
|
|
188
|
+
}
|
|
189
|
+
ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
|
|
190
|
+
const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
|
|
191
|
+
const ret = cachedTextEncoder.encodeInto(arg, view);
|
|
192
|
+
|
|
193
|
+
offset += ret.written;
|
|
194
|
+
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
WASM_VECTOR_LEN = offset;
|
|
198
|
+
return ptr;
|
|
225
199
|
}
|
|
226
200
|
|
|
227
201
|
function takeFromExternrefTable0(idx) {
|
|
@@ -230,32 +204,37 @@ function takeFromExternrefTable0(idx) {
|
|
|
230
204
|
return value;
|
|
231
205
|
}
|
|
232
206
|
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
for (let i = ptr; i < ptr + 4 * len; i += 4) {
|
|
238
|
-
result.push(wasm.__wbindgen_externrefs.get(mem.getUint32(i, true)));
|
|
239
|
-
}
|
|
240
|
-
wasm.__externref_drop_slice(ptr, len);
|
|
241
|
-
return result;
|
|
207
|
+
let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
208
|
+
cachedTextDecoder.decode();
|
|
209
|
+
function decodeText(ptr, len) {
|
|
210
|
+
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
242
211
|
}
|
|
243
212
|
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
213
|
+
const cachedTextEncoder = new TextEncoder();
|
|
214
|
+
|
|
215
|
+
if (!('encodeInto' in cachedTextEncoder)) {
|
|
216
|
+
cachedTextEncoder.encodeInto = function (arg, view) {
|
|
217
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
218
|
+
view.set(buf);
|
|
219
|
+
return {
|
|
220
|
+
read: arg.length,
|
|
221
|
+
written: buf.length
|
|
222
|
+
};
|
|
247
223
|
}
|
|
248
224
|
}
|
|
249
|
-
|
|
250
|
-
|
|
225
|
+
|
|
226
|
+
let WASM_VECTOR_LEN = 0;
|
|
227
|
+
|
|
228
|
+
function wasm_bindgen__convert__closures_____invoke__h7f8b71809a8d7577(arg0, arg1, arg2) {
|
|
229
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h7f8b71809a8d7577(arg0, arg1, arg2);
|
|
251
230
|
}
|
|
252
231
|
|
|
253
|
-
function
|
|
254
|
-
wasm.
|
|
232
|
+
function wasm_bindgen__convert__closures_____invoke__h8a10b0fb25c32ce7(arg0, arg1) {
|
|
233
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h8a10b0fb25c32ce7(arg0, arg1);
|
|
255
234
|
}
|
|
256
235
|
|
|
257
|
-
function
|
|
258
|
-
wasm.
|
|
236
|
+
function wasm_bindgen__convert__closures_____invoke__h3a7d0d99d266e2f8(arg0, arg1, arg2, arg3) {
|
|
237
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h3a7d0d99d266e2f8(arg0, arg1, arg2, arg3);
|
|
259
238
|
}
|
|
260
239
|
|
|
261
240
|
const __wbindgen_enum_RequestCache = ["default", "no-store", "reload", "no-cache", "force-cache", "only-if-cached"];
|
|
@@ -267,12 +246,36 @@ const __wbindgen_enum_RequestMode = ["same-origin", "no-cors", "cors", "navigate
|
|
|
267
246
|
const AuthorizeResultFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
268
247
|
? { register: () => {}, unregister: () => {} }
|
|
269
248
|
: new FinalizationRegistry(ptr => wasm.__wbg_authorizeresult_free(ptr >>> 0, 1));
|
|
249
|
+
|
|
250
|
+
const AuthorizeResultResponseFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
251
|
+
? { register: () => {}, unregister: () => {} }
|
|
252
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_authorizeresultresponse_free(ptr >>> 0, 1));
|
|
253
|
+
|
|
254
|
+
const CedarlingFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
255
|
+
? { register: () => {}, unregister: () => {} }
|
|
256
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_cedarling_free(ptr >>> 0, 1));
|
|
257
|
+
|
|
258
|
+
const DiagnosticsFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
259
|
+
? { register: () => {}, unregister: () => {} }
|
|
260
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_diagnostics_free(ptr >>> 0, 1));
|
|
261
|
+
|
|
262
|
+
const JsJsonLogicFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
263
|
+
? { register: () => {}, unregister: () => {} }
|
|
264
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_jsjsonlogic_free(ptr >>> 0, 1));
|
|
265
|
+
|
|
266
|
+
const MultiIssuerAuthorizeResultFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
267
|
+
? { register: () => {}, unregister: () => {} }
|
|
268
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_multiissuerauthorizeresult_free(ptr >>> 0, 1));
|
|
269
|
+
|
|
270
|
+
const PolicyEvaluationErrorFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
271
|
+
? { register: () => {}, unregister: () => {} }
|
|
272
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_policyevaluationerror_free(ptr >>> 0, 1));
|
|
273
|
+
|
|
270
274
|
/**
|
|
271
275
|
* A WASM wrapper for the Rust `cedarling::AuthorizeResult` struct.
|
|
272
276
|
* Represents the result of an authorization request.
|
|
273
277
|
*/
|
|
274
|
-
|
|
275
|
-
|
|
278
|
+
class AuthorizeResult {
|
|
276
279
|
static __wrap(ptr) {
|
|
277
280
|
ptr = ptr >>> 0;
|
|
278
281
|
const obj = Object.create(AuthorizeResult.prototype);
|
|
@@ -280,14 +283,12 @@ export class AuthorizeResult {
|
|
|
280
283
|
AuthorizeResultFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
281
284
|
return obj;
|
|
282
285
|
}
|
|
283
|
-
|
|
284
286
|
__destroy_into_raw() {
|
|
285
287
|
const ptr = this.__wbg_ptr;
|
|
286
288
|
this.__wbg_ptr = 0;
|
|
287
289
|
AuthorizeResultFinalization.unregister(this);
|
|
288
290
|
return ptr;
|
|
289
291
|
}
|
|
290
|
-
|
|
291
292
|
free() {
|
|
292
293
|
const ptr = this.__destroy_into_raw();
|
|
293
294
|
wasm.__wbg_authorizeresult_free(ptr, 0);
|
|
@@ -408,16 +409,13 @@ export class AuthorizeResult {
|
|
|
408
409
|
}
|
|
409
410
|
}
|
|
410
411
|
if (Symbol.dispose) AuthorizeResult.prototype[Symbol.dispose] = AuthorizeResult.prototype.free;
|
|
412
|
+
exports.AuthorizeResult = AuthorizeResult;
|
|
411
413
|
|
|
412
|
-
const AuthorizeResultResponseFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
413
|
-
? { register: () => {}, unregister: () => {} }
|
|
414
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_authorizeresultresponse_free(ptr >>> 0, 1));
|
|
415
414
|
/**
|
|
416
415
|
* A WASM wrapper for the Rust `cedar_policy::Response` struct.
|
|
417
416
|
* Represents the result of an authorization request.
|
|
418
417
|
*/
|
|
419
|
-
|
|
420
|
-
|
|
418
|
+
class AuthorizeResultResponse {
|
|
421
419
|
static __wrap(ptr) {
|
|
422
420
|
ptr = ptr >>> 0;
|
|
423
421
|
const obj = Object.create(AuthorizeResultResponse.prototype);
|
|
@@ -425,14 +423,12 @@ export class AuthorizeResultResponse {
|
|
|
425
423
|
AuthorizeResultResponseFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
426
424
|
return obj;
|
|
427
425
|
}
|
|
428
|
-
|
|
429
426
|
__destroy_into_raw() {
|
|
430
427
|
const ptr = this.__wbg_ptr;
|
|
431
428
|
this.__wbg_ptr = 0;
|
|
432
429
|
AuthorizeResultResponseFinalization.unregister(this);
|
|
433
430
|
return ptr;
|
|
434
431
|
}
|
|
435
|
-
|
|
436
432
|
free() {
|
|
437
433
|
const ptr = this.__destroy_into_raw();
|
|
438
434
|
wasm.__wbg_authorizeresultresponse_free(ptr, 0);
|
|
@@ -455,15 +451,12 @@ export class AuthorizeResultResponse {
|
|
|
455
451
|
}
|
|
456
452
|
}
|
|
457
453
|
if (Symbol.dispose) AuthorizeResultResponse.prototype[Symbol.dispose] = AuthorizeResultResponse.prototype.free;
|
|
454
|
+
exports.AuthorizeResultResponse = AuthorizeResultResponse;
|
|
458
455
|
|
|
459
|
-
const CedarlingFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
460
|
-
? { register: () => {}, unregister: () => {} }
|
|
461
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_cedarling_free(ptr >>> 0, 1));
|
|
462
456
|
/**
|
|
463
457
|
* The instance of the Cedarling application.
|
|
464
458
|
*/
|
|
465
|
-
|
|
466
|
-
|
|
459
|
+
class Cedarling {
|
|
467
460
|
static __wrap(ptr) {
|
|
468
461
|
ptr = ptr >>> 0;
|
|
469
462
|
const obj = Object.create(Cedarling.prototype);
|
|
@@ -471,14 +464,12 @@ export class Cedarling {
|
|
|
471
464
|
CedarlingFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
472
465
|
return obj;
|
|
473
466
|
}
|
|
474
|
-
|
|
475
467
|
__destroy_into_raw() {
|
|
476
468
|
const ptr = this.__wbg_ptr;
|
|
477
469
|
this.__wbg_ptr = 0;
|
|
478
470
|
CedarlingFinalization.unregister(this);
|
|
479
471
|
return ptr;
|
|
480
472
|
}
|
|
481
|
-
|
|
482
473
|
free() {
|
|
483
474
|
const ptr = this.__destroy_into_raw();
|
|
484
475
|
wasm.__wbg_cedarling_free(ptr, 0);
|
|
@@ -524,9 +515,19 @@ export class Cedarling {
|
|
|
524
515
|
return ret;
|
|
525
516
|
}
|
|
526
517
|
/**
|
|
527
|
-
*
|
|
528
|
-
*
|
|
529
|
-
* @
|
|
518
|
+
* Authorize multi-issuer request.
|
|
519
|
+
* Makes authorization decision based on multiple JWT tokens from different issuers
|
|
520
|
+
* @param {any} request
|
|
521
|
+
* @returns {Promise<MultiIssuerAuthorizeResult>}
|
|
522
|
+
*/
|
|
523
|
+
authorize_multi_issuer(request) {
|
|
524
|
+
const ret = wasm.cedarling_authorize_multi_issuer(this.__wbg_ptr, request);
|
|
525
|
+
return ret;
|
|
526
|
+
}
|
|
527
|
+
/**
|
|
528
|
+
* Get logs and remove them from the storage.
|
|
529
|
+
* Returns `Array` of `Map`
|
|
530
|
+
* @returns {Array<any>}
|
|
530
531
|
*/
|
|
531
532
|
pop_logs() {
|
|
532
533
|
const ret = wasm.cedarling_pop_logs(this.__wbg_ptr);
|
|
@@ -624,18 +625,15 @@ export class Cedarling {
|
|
|
624
625
|
}
|
|
625
626
|
}
|
|
626
627
|
if (Symbol.dispose) Cedarling.prototype[Symbol.dispose] = Cedarling.prototype.free;
|
|
628
|
+
exports.Cedarling = Cedarling;
|
|
627
629
|
|
|
628
|
-
const DiagnosticsFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
629
|
-
? { register: () => {}, unregister: () => {} }
|
|
630
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_diagnostics_free(ptr >>> 0, 1));
|
|
631
630
|
/**
|
|
632
631
|
* Diagnostics
|
|
633
632
|
* ===========
|
|
634
633
|
*
|
|
635
634
|
* Provides detailed information about how a policy decision was made, including policies that contributed to the decision and any errors encountered during evaluation.
|
|
636
635
|
*/
|
|
637
|
-
|
|
638
|
-
|
|
636
|
+
class Diagnostics {
|
|
639
637
|
static __wrap(ptr) {
|
|
640
638
|
ptr = ptr >>> 0;
|
|
641
639
|
const obj = Object.create(Diagnostics.prototype);
|
|
@@ -643,14 +641,12 @@ export class Diagnostics {
|
|
|
643
641
|
DiagnosticsFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
644
642
|
return obj;
|
|
645
643
|
}
|
|
646
|
-
|
|
647
644
|
__destroy_into_raw() {
|
|
648
645
|
const ptr = this.__wbg_ptr;
|
|
649
646
|
this.__wbg_ptr = 0;
|
|
650
647
|
DiagnosticsFinalization.unregister(this);
|
|
651
648
|
return ptr;
|
|
652
649
|
}
|
|
653
|
-
|
|
654
650
|
free() {
|
|
655
651
|
const ptr = this.__destroy_into_raw();
|
|
656
652
|
wasm.__wbg_diagnostics_free(ptr, 0);
|
|
@@ -681,20 +677,15 @@ export class Diagnostics {
|
|
|
681
677
|
}
|
|
682
678
|
}
|
|
683
679
|
if (Symbol.dispose) Diagnostics.prototype[Symbol.dispose] = Diagnostics.prototype.free;
|
|
680
|
+
exports.Diagnostics = Diagnostics;
|
|
684
681
|
|
|
685
|
-
|
|
686
|
-
? { register: () => {}, unregister: () => {} }
|
|
687
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_jsjsonlogic_free(ptr >>> 0, 1));
|
|
688
|
-
|
|
689
|
-
export class JsJsonLogic {
|
|
690
|
-
|
|
682
|
+
class JsJsonLogic {
|
|
691
683
|
__destroy_into_raw() {
|
|
692
684
|
const ptr = this.__wbg_ptr;
|
|
693
685
|
this.__wbg_ptr = 0;
|
|
694
686
|
JsJsonLogicFinalization.unregister(this);
|
|
695
687
|
return ptr;
|
|
696
688
|
}
|
|
697
|
-
|
|
698
689
|
free() {
|
|
699
690
|
const ptr = this.__destroy_into_raw();
|
|
700
691
|
wasm.__wbg_jsjsonlogic_free(ptr, 0);
|
|
@@ -719,18 +710,118 @@ export class JsJsonLogic {
|
|
|
719
710
|
}
|
|
720
711
|
}
|
|
721
712
|
if (Symbol.dispose) JsJsonLogic.prototype[Symbol.dispose] = JsJsonLogic.prototype.free;
|
|
713
|
+
exports.JsJsonLogic = JsJsonLogic;
|
|
714
|
+
|
|
715
|
+
/**
|
|
716
|
+
* A WASM wrapper for the Rust `cedarling::MultiIssuerAuthorizeResult` struct.
|
|
717
|
+
* Represents the result of a multi-issuer authorization request.
|
|
718
|
+
*/
|
|
719
|
+
class MultiIssuerAuthorizeResult {
|
|
720
|
+
static __wrap(ptr) {
|
|
721
|
+
ptr = ptr >>> 0;
|
|
722
|
+
const obj = Object.create(MultiIssuerAuthorizeResult.prototype);
|
|
723
|
+
obj.__wbg_ptr = ptr;
|
|
724
|
+
MultiIssuerAuthorizeResultFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
725
|
+
return obj;
|
|
726
|
+
}
|
|
727
|
+
__destroy_into_raw() {
|
|
728
|
+
const ptr = this.__wbg_ptr;
|
|
729
|
+
this.__wbg_ptr = 0;
|
|
730
|
+
MultiIssuerAuthorizeResultFinalization.unregister(this);
|
|
731
|
+
return ptr;
|
|
732
|
+
}
|
|
733
|
+
free() {
|
|
734
|
+
const ptr = this.__destroy_into_raw();
|
|
735
|
+
wasm.__wbg_multiissuerauthorizeresult_free(ptr, 0);
|
|
736
|
+
}
|
|
737
|
+
/**
|
|
738
|
+
* Result of Cedar policy authorization
|
|
739
|
+
* @returns {AuthorizeResultResponse}
|
|
740
|
+
*/
|
|
741
|
+
get response() {
|
|
742
|
+
const ret = wasm.__wbg_get_multiissuerauthorizeresult_response(this.__wbg_ptr);
|
|
743
|
+
return AuthorizeResultResponse.__wrap(ret);
|
|
744
|
+
}
|
|
745
|
+
/**
|
|
746
|
+
* Result of Cedar policy authorization
|
|
747
|
+
* @param {AuthorizeResultResponse} arg0
|
|
748
|
+
*/
|
|
749
|
+
set response(arg0) {
|
|
750
|
+
_assertClass(arg0, AuthorizeResultResponse);
|
|
751
|
+
var ptr0 = arg0.__destroy_into_raw();
|
|
752
|
+
wasm.__wbg_set_multiissuerauthorizeresult_response(this.__wbg_ptr, ptr0);
|
|
753
|
+
}
|
|
754
|
+
/**
|
|
755
|
+
* Result of authorization
|
|
756
|
+
* true means `ALLOW`
|
|
757
|
+
* false means `Deny`
|
|
758
|
+
* @returns {boolean}
|
|
759
|
+
*/
|
|
760
|
+
get decision() {
|
|
761
|
+
const ret = wasm.__wbg_get_multiissuerauthorizeresult_decision(this.__wbg_ptr);
|
|
762
|
+
return ret !== 0;
|
|
763
|
+
}
|
|
764
|
+
/**
|
|
765
|
+
* Result of authorization
|
|
766
|
+
* true means `ALLOW`
|
|
767
|
+
* false means `Deny`
|
|
768
|
+
* @param {boolean} arg0
|
|
769
|
+
*/
|
|
770
|
+
set decision(arg0) {
|
|
771
|
+
wasm.__wbg_set_multiissuerauthorizeresult_decision(this.__wbg_ptr, arg0);
|
|
772
|
+
}
|
|
773
|
+
/**
|
|
774
|
+
* Request ID of the authorization request
|
|
775
|
+
* @returns {string}
|
|
776
|
+
*/
|
|
777
|
+
get request_id() {
|
|
778
|
+
let deferred1_0;
|
|
779
|
+
let deferred1_1;
|
|
780
|
+
try {
|
|
781
|
+
const ret = wasm.__wbg_get_multiissuerauthorizeresult_request_id(this.__wbg_ptr);
|
|
782
|
+
deferred1_0 = ret[0];
|
|
783
|
+
deferred1_1 = ret[1];
|
|
784
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
785
|
+
} finally {
|
|
786
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
/**
|
|
790
|
+
* Request ID of the authorization request
|
|
791
|
+
* @param {string} arg0
|
|
792
|
+
*/
|
|
793
|
+
set request_id(arg0) {
|
|
794
|
+
const ptr0 = passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
795
|
+
const len0 = WASM_VECTOR_LEN;
|
|
796
|
+
wasm.__wbg_set_multiissuerauthorizeresult_request_id(this.__wbg_ptr, ptr0, len0);
|
|
797
|
+
}
|
|
798
|
+
/**
|
|
799
|
+
* Convert `MultiIssuerAuthorizeResult` to json string value
|
|
800
|
+
* @returns {string}
|
|
801
|
+
*/
|
|
802
|
+
json_string() {
|
|
803
|
+
let deferred1_0;
|
|
804
|
+
let deferred1_1;
|
|
805
|
+
try {
|
|
806
|
+
const ret = wasm.multiissuerauthorizeresult_json_string(this.__wbg_ptr);
|
|
807
|
+
deferred1_0 = ret[0];
|
|
808
|
+
deferred1_1 = ret[1];
|
|
809
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
810
|
+
} finally {
|
|
811
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
812
|
+
}
|
|
813
|
+
}
|
|
814
|
+
}
|
|
815
|
+
if (Symbol.dispose) MultiIssuerAuthorizeResult.prototype[Symbol.dispose] = MultiIssuerAuthorizeResult.prototype.free;
|
|
816
|
+
exports.MultiIssuerAuthorizeResult = MultiIssuerAuthorizeResult;
|
|
722
817
|
|
|
723
|
-
const PolicyEvaluationErrorFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
724
|
-
? { register: () => {}, unregister: () => {} }
|
|
725
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_policyevaluationerror_free(ptr >>> 0, 1));
|
|
726
818
|
/**
|
|
727
819
|
* PolicyEvaluationError
|
|
728
820
|
* =====================
|
|
729
821
|
*
|
|
730
822
|
* Represents an error that occurred when evaluating a Cedar policy.
|
|
731
823
|
*/
|
|
732
|
-
|
|
733
|
-
|
|
824
|
+
class PolicyEvaluationError {
|
|
734
825
|
static __wrap(ptr) {
|
|
735
826
|
ptr = ptr >>> 0;
|
|
736
827
|
const obj = Object.create(PolicyEvaluationError.prototype);
|
|
@@ -738,14 +829,12 @@ export class PolicyEvaluationError {
|
|
|
738
829
|
PolicyEvaluationErrorFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
739
830
|
return obj;
|
|
740
831
|
}
|
|
741
|
-
|
|
742
832
|
__destroy_into_raw() {
|
|
743
833
|
const ptr = this.__wbg_ptr;
|
|
744
834
|
this.__wbg_ptr = 0;
|
|
745
835
|
PolicyEvaluationErrorFinalization.unregister(this);
|
|
746
836
|
return ptr;
|
|
747
837
|
}
|
|
748
|
-
|
|
749
838
|
free() {
|
|
750
839
|
const ptr = this.__destroy_into_raw();
|
|
751
840
|
wasm.__wbg_policyevaluationerror_free(ptr, 0);
|
|
@@ -784,643 +873,683 @@ export class PolicyEvaluationError {
|
|
|
784
873
|
}
|
|
785
874
|
}
|
|
786
875
|
if (Symbol.dispose) PolicyEvaluationError.prototype[Symbol.dispose] = PolicyEvaluationError.prototype.free;
|
|
876
|
+
exports.PolicyEvaluationError = PolicyEvaluationError;
|
|
787
877
|
|
|
788
|
-
|
|
878
|
+
/**
|
|
879
|
+
* Create a new instance of the Cedarling application.
|
|
880
|
+
* This function can take as config parameter the eather `Map` other `Object`
|
|
881
|
+
* @param {any} config
|
|
882
|
+
* @returns {Promise<Cedarling>}
|
|
883
|
+
*/
|
|
884
|
+
function init(config) {
|
|
885
|
+
const ret = wasm.init(config);
|
|
886
|
+
return ret;
|
|
887
|
+
}
|
|
888
|
+
exports.init = init;
|
|
789
889
|
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
return await WebAssembly.instantiateStreaming(module, imports);
|
|
890
|
+
exports.__wbg_Error_52673b7de5a0ca89 = function(arg0, arg1) {
|
|
891
|
+
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
892
|
+
return ret;
|
|
893
|
+
};
|
|
795
894
|
|
|
796
|
-
|
|
797
|
-
|
|
895
|
+
exports.__wbg_Number_2d1dcfcf4ec51736 = function(arg0) {
|
|
896
|
+
const ret = Number(arg0);
|
|
897
|
+
return ret;
|
|
898
|
+
};
|
|
899
|
+
|
|
900
|
+
exports.__wbg_String_8f0eb39a4a4c2f66 = function(arg0, arg1) {
|
|
901
|
+
const ret = String(arg1);
|
|
902
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
903
|
+
const len1 = WASM_VECTOR_LEN;
|
|
904
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
905
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
906
|
+
};
|
|
907
|
+
|
|
908
|
+
exports.__wbg___wbindgen_bigint_get_as_i64_6e32f5e6aff02e1d = function(arg0, arg1) {
|
|
909
|
+
const v = arg1;
|
|
910
|
+
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
911
|
+
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
912
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
913
|
+
};
|
|
914
|
+
|
|
915
|
+
exports.__wbg___wbindgen_boolean_get_dea25b33882b895b = function(arg0) {
|
|
916
|
+
const v = arg0;
|
|
917
|
+
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
918
|
+
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
919
|
+
};
|
|
920
|
+
|
|
921
|
+
exports.__wbg___wbindgen_debug_string_adfb662ae34724b6 = function(arg0, arg1) {
|
|
922
|
+
const ret = debugString(arg1);
|
|
923
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
924
|
+
const len1 = WASM_VECTOR_LEN;
|
|
925
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
926
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
927
|
+
};
|
|
928
|
+
|
|
929
|
+
exports.__wbg___wbindgen_in_0d3e1e8f0c669317 = function(arg0, arg1) {
|
|
930
|
+
const ret = arg0 in arg1;
|
|
931
|
+
return ret;
|
|
932
|
+
};
|
|
798
933
|
|
|
799
|
-
|
|
800
|
-
|
|
934
|
+
exports.__wbg___wbindgen_is_bigint_0e1a2e3f55cfae27 = function(arg0) {
|
|
935
|
+
const ret = typeof(arg0) === 'bigint';
|
|
936
|
+
return ret;
|
|
937
|
+
};
|
|
801
938
|
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
}
|
|
939
|
+
exports.__wbg___wbindgen_is_function_8d400b8b1af978cd = function(arg0) {
|
|
940
|
+
const ret = typeof(arg0) === 'function';
|
|
941
|
+
return ret;
|
|
942
|
+
};
|
|
807
943
|
|
|
808
|
-
|
|
809
|
-
|
|
944
|
+
exports.__wbg___wbindgen_is_object_ce774f3490692386 = function(arg0) {
|
|
945
|
+
const val = arg0;
|
|
946
|
+
const ret = typeof(val) === 'object' && val !== null;
|
|
947
|
+
return ret;
|
|
948
|
+
};
|
|
810
949
|
|
|
811
|
-
|
|
812
|
-
|
|
950
|
+
exports.__wbg___wbindgen_is_string_704ef9c8fc131030 = function(arg0) {
|
|
951
|
+
const ret = typeof(arg0) === 'string';
|
|
952
|
+
return ret;
|
|
953
|
+
};
|
|
813
954
|
|
|
814
|
-
|
|
815
|
-
|
|
955
|
+
exports.__wbg___wbindgen_is_undefined_f6b95eab589e0269 = function(arg0) {
|
|
956
|
+
const ret = arg0 === undefined;
|
|
957
|
+
return ret;
|
|
958
|
+
};
|
|
816
959
|
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
}
|
|
960
|
+
exports.__wbg___wbindgen_jsval_eq_b6101cc9cef1fe36 = function(arg0, arg1) {
|
|
961
|
+
const ret = arg0 === arg1;
|
|
962
|
+
return ret;
|
|
963
|
+
};
|
|
822
964
|
|
|
823
|
-
function
|
|
824
|
-
const
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
const ret = typeof(arg0) === 'function';
|
|
869
|
-
return ret;
|
|
870
|
-
};
|
|
871
|
-
imports.wbg.__wbg___wbindgen_is_object_c818261d21f283a4 = function(arg0) {
|
|
872
|
-
const val = arg0;
|
|
873
|
-
const ret = typeof(val) === 'object' && val !== null;
|
|
874
|
-
return ret;
|
|
875
|
-
};
|
|
876
|
-
imports.wbg.__wbg___wbindgen_is_string_fbb76cb2940daafd = function(arg0) {
|
|
877
|
-
const ret = typeof(arg0) === 'string';
|
|
878
|
-
return ret;
|
|
879
|
-
};
|
|
880
|
-
imports.wbg.__wbg___wbindgen_is_undefined_2d472862bd29a478 = function(arg0) {
|
|
881
|
-
const ret = arg0 === undefined;
|
|
882
|
-
return ret;
|
|
883
|
-
};
|
|
884
|
-
imports.wbg.__wbg___wbindgen_jsval_eq_6b13ab83478b1c50 = function(arg0, arg1) {
|
|
885
|
-
const ret = arg0 === arg1;
|
|
886
|
-
return ret;
|
|
887
|
-
};
|
|
888
|
-
imports.wbg.__wbg___wbindgen_jsval_loose_eq_b664b38a2f582147 = function(arg0, arg1) {
|
|
889
|
-
const ret = arg0 == arg1;
|
|
890
|
-
return ret;
|
|
891
|
-
};
|
|
892
|
-
imports.wbg.__wbg___wbindgen_number_get_a20bf9b85341449d = function(arg0, arg1) {
|
|
893
|
-
const obj = arg1;
|
|
894
|
-
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
895
|
-
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
896
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
897
|
-
};
|
|
898
|
-
imports.wbg.__wbg___wbindgen_string_get_e4f06c90489ad01b = function(arg0, arg1) {
|
|
899
|
-
const obj = arg1;
|
|
900
|
-
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
901
|
-
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
902
|
-
var len1 = WASM_VECTOR_LEN;
|
|
903
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
904
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
905
|
-
};
|
|
906
|
-
imports.wbg.__wbg___wbindgen_throw_b855445ff6a94295 = function(arg0, arg1) {
|
|
907
|
-
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
908
|
-
};
|
|
909
|
-
imports.wbg.__wbg__wbg_cb_unref_2454a539ea5790d9 = function(arg0) {
|
|
910
|
-
arg0._wbg_cb_unref();
|
|
911
|
-
};
|
|
912
|
-
imports.wbg.__wbg_abort_28ad55c5825b004d = function(arg0, arg1) {
|
|
913
|
-
arg0.abort(arg1);
|
|
914
|
-
};
|
|
915
|
-
imports.wbg.__wbg_abort_e7eb059f72f9ed0c = function(arg0) {
|
|
916
|
-
arg0.abort();
|
|
917
|
-
};
|
|
918
|
-
imports.wbg.__wbg_append_b577eb3a177bc0fa = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
919
|
-
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
920
|
-
}, arguments) };
|
|
921
|
-
imports.wbg.__wbg_arrayBuffer_b375eccb84b4ddf3 = function() { return handleError(function (arg0) {
|
|
922
|
-
const ret = arg0.arrayBuffer();
|
|
923
|
-
return ret;
|
|
924
|
-
}, arguments) };
|
|
925
|
-
imports.wbg.__wbg_authorizeresult_new = function(arg0) {
|
|
926
|
-
const ret = AuthorizeResult.__wrap(arg0);
|
|
927
|
-
return ret;
|
|
928
|
-
};
|
|
929
|
-
imports.wbg.__wbg_call_525440f72fbfc0ea = function() { return handleError(function (arg0, arg1, arg2) {
|
|
930
|
-
const ret = arg0.call(arg1, arg2);
|
|
931
|
-
return ret;
|
|
932
|
-
}, arguments) };
|
|
933
|
-
imports.wbg.__wbg_call_e762c39fa8ea36bf = function() { return handleError(function (arg0, arg1) {
|
|
934
|
-
const ret = arg0.call(arg1);
|
|
935
|
-
return ret;
|
|
936
|
-
}, arguments) };
|
|
937
|
-
imports.wbg.__wbg_cedarling_new = function(arg0) {
|
|
938
|
-
const ret = Cedarling.__wrap(arg0);
|
|
939
|
-
return ret;
|
|
940
|
-
};
|
|
941
|
-
imports.wbg.__wbg_clearTimeout_7a42b49784aea641 = function(arg0) {
|
|
942
|
-
const ret = clearTimeout(arg0);
|
|
943
|
-
return ret;
|
|
944
|
-
};
|
|
945
|
-
imports.wbg.__wbg_crypto_574e78ad8b13b65f = function(arg0) {
|
|
946
|
-
const ret = arg0.crypto;
|
|
947
|
-
return ret;
|
|
948
|
-
};
|
|
949
|
-
imports.wbg.__wbg_debug_755c0800f64c9a88 = function(arg0) {
|
|
950
|
-
console.debug(...arg0);
|
|
951
|
-
};
|
|
952
|
-
imports.wbg.__wbg_done_2042aa2670fb1db1 = function(arg0) {
|
|
953
|
-
const ret = arg0.done;
|
|
954
|
-
return ret;
|
|
955
|
-
};
|
|
956
|
-
imports.wbg.__wbg_entries_e171b586f8f6bdbf = function(arg0) {
|
|
957
|
-
const ret = Object.entries(arg0);
|
|
958
|
-
return ret;
|
|
959
|
-
};
|
|
960
|
-
imports.wbg.__wbg_entries_eb145c4da5c811f7 = function(arg0) {
|
|
961
|
-
const ret = arg0.entries();
|
|
962
|
-
return ret;
|
|
963
|
-
};
|
|
964
|
-
imports.wbg.__wbg_error_7a6b3e62969d4270 = function(arg0) {
|
|
965
|
-
console.error(...arg0);
|
|
966
|
-
};
|
|
967
|
-
imports.wbg.__wbg_fetch_74a3e84ebd2c9a0e = function(arg0) {
|
|
968
|
-
const ret = fetch(arg0);
|
|
969
|
-
return ret;
|
|
970
|
-
};
|
|
971
|
-
imports.wbg.__wbg_fetch_f8ba0e29a9d6de0d = function(arg0, arg1) {
|
|
972
|
-
const ret = arg0.fetch(arg1);
|
|
973
|
-
return ret;
|
|
974
|
-
};
|
|
975
|
-
imports.wbg.__wbg_fromEntries_c7159f3787268c9f = function() { return handleError(function (arg0) {
|
|
976
|
-
const ret = Object.fromEntries(arg0);
|
|
977
|
-
return ret;
|
|
978
|
-
}, arguments) };
|
|
979
|
-
imports.wbg.__wbg_getRandomValues_1c61fac11405ffdc = function() { return handleError(function (arg0, arg1) {
|
|
980
|
-
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
981
|
-
}, arguments) };
|
|
982
|
-
imports.wbg.__wbg_getRandomValues_b8f5dbd5f3995a9e = function() { return handleError(function (arg0, arg1) {
|
|
983
|
-
arg0.getRandomValues(arg1);
|
|
984
|
-
}, arguments) };
|
|
985
|
-
imports.wbg.__wbg_getTime_14776bfb48a1bff9 = function(arg0) {
|
|
986
|
-
const ret = arg0.getTime();
|
|
987
|
-
return ret;
|
|
988
|
-
};
|
|
989
|
-
imports.wbg.__wbg_getTimezoneOffset_d391cb11d54969f8 = function(arg0) {
|
|
990
|
-
const ret = arg0.getTimezoneOffset();
|
|
991
|
-
return ret;
|
|
992
|
-
};
|
|
993
|
-
imports.wbg.__wbg_get_7bed016f185add81 = function(arg0, arg1) {
|
|
994
|
-
const ret = arg0[arg1 >>> 0];
|
|
995
|
-
return ret;
|
|
996
|
-
};
|
|
997
|
-
imports.wbg.__wbg_get_efcb449f58ec27c2 = function() { return handleError(function (arg0, arg1) {
|
|
998
|
-
const ret = Reflect.get(arg0, arg1);
|
|
999
|
-
return ret;
|
|
1000
|
-
}, arguments) };
|
|
1001
|
-
imports.wbg.__wbg_get_with_ref_key_1dc361bd10053bfe = function(arg0, arg1) {
|
|
1002
|
-
const ret = arg0[arg1];
|
|
1003
|
-
return ret;
|
|
1004
|
-
};
|
|
1005
|
-
imports.wbg.__wbg_has_787fafc980c3ccdb = function() { return handleError(function (arg0, arg1) {
|
|
1006
|
-
const ret = Reflect.has(arg0, arg1);
|
|
1007
|
-
return ret;
|
|
1008
|
-
}, arguments) };
|
|
1009
|
-
imports.wbg.__wbg_headers_b87d7eaba61c3278 = function(arg0) {
|
|
1010
|
-
const ret = arg0.headers;
|
|
1011
|
-
return ret;
|
|
1012
|
-
};
|
|
1013
|
-
imports.wbg.__wbg_info_f0ce824723264770 = function(arg0) {
|
|
1014
|
-
console.info(...arg0);
|
|
1015
|
-
};
|
|
1016
|
-
imports.wbg.__wbg_instanceof_ArrayBuffer_70beb1189ca63b38 = function(arg0) {
|
|
1017
|
-
let result;
|
|
1018
|
-
try {
|
|
1019
|
-
result = arg0 instanceof ArrayBuffer;
|
|
1020
|
-
} catch (_) {
|
|
1021
|
-
result = false;
|
|
1022
|
-
}
|
|
1023
|
-
const ret = result;
|
|
1024
|
-
return ret;
|
|
1025
|
-
};
|
|
1026
|
-
imports.wbg.__wbg_instanceof_Array_fca44e0f4a7f6240 = function(arg0) {
|
|
1027
|
-
let result;
|
|
1028
|
-
try {
|
|
1029
|
-
result = arg0 instanceof Array;
|
|
1030
|
-
} catch (_) {
|
|
1031
|
-
result = false;
|
|
1032
|
-
}
|
|
1033
|
-
const ret = result;
|
|
1034
|
-
return ret;
|
|
1035
|
-
};
|
|
1036
|
-
imports.wbg.__wbg_instanceof_Map_8579b5e2ab5437c7 = function(arg0) {
|
|
1037
|
-
let result;
|
|
1038
|
-
try {
|
|
1039
|
-
result = arg0 instanceof Map;
|
|
1040
|
-
} catch (_) {
|
|
1041
|
-
result = false;
|
|
1042
|
-
}
|
|
1043
|
-
const ret = result;
|
|
1044
|
-
return ret;
|
|
1045
|
-
};
|
|
1046
|
-
imports.wbg.__wbg_instanceof_Response_f4f3e87e07f3135c = function(arg0) {
|
|
1047
|
-
let result;
|
|
1048
|
-
try {
|
|
1049
|
-
result = arg0 instanceof Response;
|
|
1050
|
-
} catch (_) {
|
|
1051
|
-
result = false;
|
|
1052
|
-
}
|
|
1053
|
-
const ret = result;
|
|
1054
|
-
return ret;
|
|
1055
|
-
};
|
|
1056
|
-
imports.wbg.__wbg_instanceof_Uint8Array_20c8e73002f7af98 = function(arg0) {
|
|
1057
|
-
let result;
|
|
1058
|
-
try {
|
|
1059
|
-
result = arg0 instanceof Uint8Array;
|
|
1060
|
-
} catch (_) {
|
|
1061
|
-
result = false;
|
|
1062
|
-
}
|
|
1063
|
-
const ret = result;
|
|
1064
|
-
return ret;
|
|
1065
|
-
};
|
|
1066
|
-
imports.wbg.__wbg_isArray_96e0af9891d0945d = function(arg0) {
|
|
1067
|
-
const ret = Array.isArray(arg0);
|
|
1068
|
-
return ret;
|
|
1069
|
-
};
|
|
1070
|
-
imports.wbg.__wbg_isSafeInteger_d216eda7911dde36 = function(arg0) {
|
|
1071
|
-
const ret = Number.isSafeInteger(arg0);
|
|
1072
|
-
return ret;
|
|
1073
|
-
};
|
|
1074
|
-
imports.wbg.__wbg_iterator_e5822695327a3c39 = function() {
|
|
1075
|
-
const ret = Symbol.iterator;
|
|
1076
|
-
return ret;
|
|
1077
|
-
};
|
|
1078
|
-
imports.wbg.__wbg_keys_b4d27b02ad14f4be = function(arg0) {
|
|
1079
|
-
const ret = Object.keys(arg0);
|
|
1080
|
-
return ret;
|
|
1081
|
-
};
|
|
1082
|
-
imports.wbg.__wbg_length_69bca3cb64fc8748 = function(arg0) {
|
|
1083
|
-
const ret = arg0.length;
|
|
1084
|
-
return ret;
|
|
1085
|
-
};
|
|
1086
|
-
imports.wbg.__wbg_length_cdd215e10d9dd507 = function(arg0) {
|
|
1087
|
-
const ret = arg0.length;
|
|
1088
|
-
return ret;
|
|
1089
|
-
};
|
|
1090
|
-
imports.wbg.__wbg_log_33f7f6dbc0d0ccf4 = function(arg0) {
|
|
1091
|
-
console.log(...arg0);
|
|
1092
|
-
};
|
|
1093
|
-
imports.wbg.__wbg_msCrypto_a61aeb35a24c1329 = function(arg0) {
|
|
1094
|
-
const ret = arg0.msCrypto;
|
|
1095
|
-
return ret;
|
|
1096
|
-
};
|
|
1097
|
-
imports.wbg.__wbg_new_0_f9740686d739025c = function() {
|
|
1098
|
-
const ret = new Date();
|
|
1099
|
-
return ret;
|
|
1100
|
-
};
|
|
1101
|
-
imports.wbg.__wbg_new_1acc0b6eea89d040 = function() {
|
|
1102
|
-
const ret = new Object();
|
|
1103
|
-
return ret;
|
|
1104
|
-
};
|
|
1105
|
-
imports.wbg.__wbg_new_2531773dac38ebb3 = function() { return handleError(function () {
|
|
1106
|
-
const ret = new AbortController();
|
|
1107
|
-
return ret;
|
|
1108
|
-
}, arguments) };
|
|
1109
|
-
imports.wbg.__wbg_new_3c3d849046688a66 = function(arg0, arg1) {
|
|
1110
|
-
try {
|
|
1111
|
-
var state0 = {a: arg0, b: arg1};
|
|
1112
|
-
var cb0 = (arg0, arg1) => {
|
|
1113
|
-
const a = state0.a;
|
|
1114
|
-
state0.a = 0;
|
|
1115
|
-
try {
|
|
1116
|
-
return wasm_bindgen__convert__closures_____invoke__h4b59ba169ea05287(a, state0.b, arg0, arg1);
|
|
1117
|
-
} finally {
|
|
1118
|
-
state0.a = a;
|
|
1119
|
-
}
|
|
1120
|
-
};
|
|
1121
|
-
const ret = new Promise(cb0);
|
|
1122
|
-
return ret;
|
|
1123
|
-
} finally {
|
|
1124
|
-
state0.a = state0.b = 0;
|
|
1125
|
-
}
|
|
1126
|
-
};
|
|
1127
|
-
imports.wbg.__wbg_new_5a79be3ab53b8aa5 = function(arg0) {
|
|
1128
|
-
const ret = new Uint8Array(arg0);
|
|
1129
|
-
return ret;
|
|
1130
|
-
};
|
|
1131
|
-
imports.wbg.__wbg_new_68651c719dcda04e = function() {
|
|
1132
|
-
const ret = new Map();
|
|
1133
|
-
return ret;
|
|
1134
|
-
};
|
|
1135
|
-
imports.wbg.__wbg_new_93d9417ed3fb115d = function(arg0) {
|
|
1136
|
-
const ret = new Date(arg0);
|
|
1137
|
-
return ret;
|
|
1138
|
-
};
|
|
1139
|
-
imports.wbg.__wbg_new_9edf9838a2def39c = function() { return handleError(function () {
|
|
1140
|
-
const ret = new Headers();
|
|
1141
|
-
return ret;
|
|
1142
|
-
}, arguments) };
|
|
1143
|
-
imports.wbg.__wbg_new_e17d9f43105b08be = function() {
|
|
1144
|
-
const ret = new Array();
|
|
1145
|
-
return ret;
|
|
1146
|
-
};
|
|
1147
|
-
imports.wbg.__wbg_new_from_slice_92f4d78ca282a2d2 = function(arg0, arg1) {
|
|
1148
|
-
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
1149
|
-
return ret;
|
|
1150
|
-
};
|
|
1151
|
-
imports.wbg.__wbg_new_no_args_ee98eee5275000a4 = function(arg0, arg1) {
|
|
1152
|
-
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
1153
|
-
return ret;
|
|
1154
|
-
};
|
|
1155
|
-
imports.wbg.__wbg_new_with_args_02cbc439ce3fd7db = function(arg0, arg1, arg2, arg3) {
|
|
1156
|
-
const ret = new Function(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
1157
|
-
return ret;
|
|
1158
|
-
};
|
|
1159
|
-
imports.wbg.__wbg_new_with_length_01aa0dc35aa13543 = function(arg0) {
|
|
1160
|
-
const ret = new Uint8Array(arg0 >>> 0);
|
|
1161
|
-
return ret;
|
|
1162
|
-
};
|
|
1163
|
-
imports.wbg.__wbg_new_with_str_and_init_0ae7728b6ec367b1 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1164
|
-
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
|
1165
|
-
return ret;
|
|
1166
|
-
}, arguments) };
|
|
1167
|
-
imports.wbg.__wbg_next_020810e0ae8ebcb0 = function() { return handleError(function (arg0) {
|
|
1168
|
-
const ret = arg0.next();
|
|
1169
|
-
return ret;
|
|
1170
|
-
}, arguments) };
|
|
1171
|
-
imports.wbg.__wbg_next_2c826fe5dfec6b6a = function(arg0) {
|
|
1172
|
-
const ret = arg0.next;
|
|
1173
|
-
return ret;
|
|
1174
|
-
};
|
|
1175
|
-
imports.wbg.__wbg_node_905d3e251edff8a2 = function(arg0) {
|
|
1176
|
-
const ret = arg0.node;
|
|
1177
|
-
return ret;
|
|
1178
|
-
};
|
|
1179
|
-
imports.wbg.__wbg_policyevaluationerror_new = function(arg0) {
|
|
1180
|
-
const ret = PolicyEvaluationError.__wrap(arg0);
|
|
1181
|
-
return ret;
|
|
1182
|
-
};
|
|
1183
|
-
imports.wbg.__wbg_process_dc0fbacc7c1c06f7 = function(arg0) {
|
|
1184
|
-
const ret = arg0.process;
|
|
1185
|
-
return ret;
|
|
1186
|
-
};
|
|
1187
|
-
imports.wbg.__wbg_prototypesetcall_2a6620b6922694b2 = function(arg0, arg1, arg2) {
|
|
1188
|
-
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
1189
|
-
};
|
|
1190
|
-
imports.wbg.__wbg_push_df81a39d04db858c = function(arg0, arg1) {
|
|
1191
|
-
const ret = arg0.push(arg1);
|
|
1192
|
-
return ret;
|
|
1193
|
-
};
|
|
1194
|
-
imports.wbg.__wbg_queueMicrotask_34d692c25c47d05b = function(arg0) {
|
|
1195
|
-
const ret = arg0.queueMicrotask;
|
|
1196
|
-
return ret;
|
|
1197
|
-
};
|
|
1198
|
-
imports.wbg.__wbg_queueMicrotask_9d76cacb20c84d58 = function(arg0) {
|
|
1199
|
-
queueMicrotask(arg0);
|
|
1200
|
-
};
|
|
1201
|
-
imports.wbg.__wbg_randomFillSync_ac0988aba3254290 = function() { return handleError(function (arg0, arg1) {
|
|
1202
|
-
arg0.randomFillSync(arg1);
|
|
1203
|
-
}, arguments) };
|
|
1204
|
-
imports.wbg.__wbg_require_60cc747a6bc5215a = function() { return handleError(function () {
|
|
1205
|
-
const ret = module.require;
|
|
1206
|
-
return ret;
|
|
1207
|
-
}, arguments) };
|
|
1208
|
-
imports.wbg.__wbg_resolve_caf97c30b83f7053 = function(arg0) {
|
|
1209
|
-
const ret = Promise.resolve(arg0);
|
|
1210
|
-
return ret;
|
|
1211
|
-
};
|
|
1212
|
-
imports.wbg.__wbg_setTimeout_7bb3429662ab1e70 = function(arg0, arg1) {
|
|
1213
|
-
const ret = setTimeout(arg0, arg1);
|
|
1214
|
-
return ret;
|
|
1215
|
-
};
|
|
1216
|
-
imports.wbg.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
|
|
1217
|
-
arg0[arg1] = arg2;
|
|
1218
|
-
};
|
|
1219
|
-
imports.wbg.__wbg_set_907fb406c34a251d = function(arg0, arg1, arg2) {
|
|
1220
|
-
const ret = arg0.set(arg1, arg2);
|
|
1221
|
-
return ret;
|
|
1222
|
-
};
|
|
1223
|
-
imports.wbg.__wbg_set_body_3c365989753d61f4 = function(arg0, arg1) {
|
|
1224
|
-
arg0.body = arg1;
|
|
1225
|
-
};
|
|
1226
|
-
imports.wbg.__wbg_set_c213c871859d6500 = function(arg0, arg1, arg2) {
|
|
1227
|
-
arg0[arg1 >>> 0] = arg2;
|
|
1228
|
-
};
|
|
1229
|
-
imports.wbg.__wbg_set_c2abbebe8b9ebee1 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1230
|
-
const ret = Reflect.set(arg0, arg1, arg2);
|
|
1231
|
-
return ret;
|
|
1232
|
-
}, arguments) };
|
|
1233
|
-
imports.wbg.__wbg_set_cache_2f9deb19b92b81e3 = function(arg0, arg1) {
|
|
1234
|
-
arg0.cache = __wbindgen_enum_RequestCache[arg1];
|
|
1235
|
-
};
|
|
1236
|
-
imports.wbg.__wbg_set_credentials_f621cd2d85c0c228 = function(arg0, arg1) {
|
|
1237
|
-
arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
1238
|
-
};
|
|
1239
|
-
imports.wbg.__wbg_set_headers_6926da238cd32ee4 = function(arg0, arg1) {
|
|
1240
|
-
arg0.headers = arg1;
|
|
1241
|
-
};
|
|
1242
|
-
imports.wbg.__wbg_set_method_c02d8cbbe204ac2d = function(arg0, arg1, arg2) {
|
|
1243
|
-
arg0.method = getStringFromWasm0(arg1, arg2);
|
|
1244
|
-
};
|
|
1245
|
-
imports.wbg.__wbg_set_mode_52ef73cfa79639cb = function(arg0, arg1) {
|
|
1246
|
-
arg0.mode = __wbindgen_enum_RequestMode[arg1];
|
|
1247
|
-
};
|
|
1248
|
-
imports.wbg.__wbg_set_signal_dda2cf7ccb6bee0f = function(arg0, arg1) {
|
|
1249
|
-
arg0.signal = arg1;
|
|
1250
|
-
};
|
|
1251
|
-
imports.wbg.__wbg_signal_4db5aa055bf9eb9a = function(arg0) {
|
|
1252
|
-
const ret = arg0.signal;
|
|
1253
|
-
return ret;
|
|
1254
|
-
};
|
|
1255
|
-
imports.wbg.__wbg_static_accessor_GLOBAL_89e1d9ac6a1b250e = function() {
|
|
1256
|
-
const ret = typeof global === 'undefined' ? null : global;
|
|
1257
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1258
|
-
};
|
|
1259
|
-
imports.wbg.__wbg_static_accessor_GLOBAL_THIS_8b530f326a9e48ac = function() {
|
|
1260
|
-
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
1261
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1262
|
-
};
|
|
1263
|
-
imports.wbg.__wbg_static_accessor_SELF_6fdf4b64710cc91b = function() {
|
|
1264
|
-
const ret = typeof self === 'undefined' ? null : self;
|
|
1265
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1266
|
-
};
|
|
1267
|
-
imports.wbg.__wbg_static_accessor_WINDOW_b45bfc5a37f6cfa2 = function() {
|
|
1268
|
-
const ret = typeof window === 'undefined' ? null : window;
|
|
1269
|
-
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1270
|
-
};
|
|
1271
|
-
imports.wbg.__wbg_status_de7eed5a7a5bfd5d = function(arg0) {
|
|
1272
|
-
const ret = arg0.status;
|
|
1273
|
-
return ret;
|
|
1274
|
-
};
|
|
1275
|
-
imports.wbg.__wbg_stringify_b5fb28f6465d9c3e = function() { return handleError(function (arg0) {
|
|
1276
|
-
const ret = JSON.stringify(arg0);
|
|
1277
|
-
return ret;
|
|
1278
|
-
}, arguments) };
|
|
1279
|
-
imports.wbg.__wbg_subarray_480600f3d6a9f26c = function(arg0, arg1, arg2) {
|
|
1280
|
-
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
1281
|
-
return ret;
|
|
1282
|
-
};
|
|
1283
|
-
imports.wbg.__wbg_text_dc33c15c17bdfb52 = function() { return handleError(function (arg0) {
|
|
1284
|
-
const ret = arg0.text();
|
|
1285
|
-
return ret;
|
|
1286
|
-
}, arguments) };
|
|
1287
|
-
imports.wbg.__wbg_then_4f46f6544e6b4a28 = function(arg0, arg1) {
|
|
1288
|
-
const ret = arg0.then(arg1);
|
|
1289
|
-
return ret;
|
|
1290
|
-
};
|
|
1291
|
-
imports.wbg.__wbg_then_70d05cf780a18d77 = function(arg0, arg1, arg2) {
|
|
1292
|
-
const ret = arg0.then(arg1, arg2);
|
|
1293
|
-
return ret;
|
|
1294
|
-
};
|
|
1295
|
-
imports.wbg.__wbg_trace_15baa8999e3f2ed1 = function(arg0) {
|
|
1296
|
-
console.trace(...arg0);
|
|
1297
|
-
};
|
|
1298
|
-
imports.wbg.__wbg_url_b36d2a5008eb056f = function(arg0, arg1) {
|
|
1299
|
-
const ret = arg1.url;
|
|
1300
|
-
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1301
|
-
const len1 = WASM_VECTOR_LEN;
|
|
1302
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1303
|
-
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1304
|
-
};
|
|
1305
|
-
imports.wbg.__wbg_value_692627309814bb8c = function(arg0) {
|
|
1306
|
-
const ret = arg0.value;
|
|
1307
|
-
return ret;
|
|
1308
|
-
};
|
|
1309
|
-
imports.wbg.__wbg_versions_c01dfd4722a88165 = function(arg0) {
|
|
1310
|
-
const ret = arg0.versions;
|
|
1311
|
-
return ret;
|
|
1312
|
-
};
|
|
1313
|
-
imports.wbg.__wbg_warn_a2d80c28bcdb1933 = function(arg0) {
|
|
1314
|
-
console.warn(...arg0);
|
|
1315
|
-
};
|
|
1316
|
-
imports.wbg.__wbindgen_cast_2241b6af4c4b2941 = function(arg0, arg1) {
|
|
1317
|
-
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
1318
|
-
const ret = getStringFromWasm0(arg0, arg1);
|
|
1319
|
-
return ret;
|
|
1320
|
-
};
|
|
1321
|
-
imports.wbg.__wbindgen_cast_2fb66661e8d075cf = function(arg0, arg1) {
|
|
1322
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 553, function: Function { arguments: [Externref], shim_idx: 554, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1323
|
-
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h8bb11a3ec59bf31f, wasm_bindgen__convert__closures_____invoke__h1c715d53d5a00020);
|
|
1324
|
-
return ret;
|
|
1325
|
-
};
|
|
1326
|
-
imports.wbg.__wbindgen_cast_4625c577ab2ec9ee = function(arg0) {
|
|
1327
|
-
// Cast intrinsic for `U64 -> Externref`.
|
|
1328
|
-
const ret = BigInt.asUintN(64, arg0);
|
|
1329
|
-
return ret;
|
|
1330
|
-
};
|
|
1331
|
-
imports.wbg.__wbindgen_cast_9ae0607507abb057 = function(arg0) {
|
|
1332
|
-
// Cast intrinsic for `I64 -> Externref`.
|
|
1333
|
-
const ret = arg0;
|
|
1334
|
-
return ret;
|
|
1335
|
-
};
|
|
1336
|
-
imports.wbg.__wbindgen_cast_cb9088102bce6b30 = function(arg0, arg1) {
|
|
1337
|
-
// Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
|
|
1338
|
-
const ret = getArrayU8FromWasm0(arg0, arg1);
|
|
1339
|
-
return ret;
|
|
1340
|
-
};
|
|
1341
|
-
imports.wbg.__wbindgen_cast_d6cd19b81560fd6e = function(arg0) {
|
|
1342
|
-
// Cast intrinsic for `F64 -> Externref`.
|
|
1343
|
-
const ret = arg0;
|
|
1344
|
-
return ret;
|
|
1345
|
-
};
|
|
1346
|
-
imports.wbg.__wbindgen_cast_f0904d98c773eedb = function(arg0, arg1) {
|
|
1347
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 508, function: Function { arguments: [], shim_idx: 509, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1348
|
-
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__ha0787d3d14449f11, wasm_bindgen__convert__closures_____invoke__hf8ac7184f86fbcce);
|
|
1349
|
-
return ret;
|
|
1350
|
-
};
|
|
1351
|
-
imports.wbg.__wbindgen_init_externref_table = function() {
|
|
1352
|
-
const table = wasm.__wbindgen_externrefs;
|
|
1353
|
-
const offset = table.grow(4);
|
|
1354
|
-
table.set(0, undefined);
|
|
1355
|
-
table.set(offset + 0, undefined);
|
|
1356
|
-
table.set(offset + 1, null);
|
|
1357
|
-
table.set(offset + 2, true);
|
|
1358
|
-
table.set(offset + 3, false);
|
|
1359
|
-
;
|
|
1360
|
-
};
|
|
965
|
+
exports.__wbg___wbindgen_jsval_loose_eq_766057600fdd1b0d = function(arg0, arg1) {
|
|
966
|
+
const ret = arg0 == arg1;
|
|
967
|
+
return ret;
|
|
968
|
+
};
|
|
969
|
+
|
|
970
|
+
exports.__wbg___wbindgen_number_get_9619185a74197f95 = function(arg0, arg1) {
|
|
971
|
+
const obj = arg1;
|
|
972
|
+
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
973
|
+
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
974
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
975
|
+
};
|
|
976
|
+
|
|
977
|
+
exports.__wbg___wbindgen_string_get_a2a31e16edf96e42 = function(arg0, arg1) {
|
|
978
|
+
const obj = arg1;
|
|
979
|
+
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
980
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
981
|
+
var len1 = WASM_VECTOR_LEN;
|
|
982
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
983
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
984
|
+
};
|
|
985
|
+
|
|
986
|
+
exports.__wbg___wbindgen_throw_dd24417ed36fc46e = function(arg0, arg1) {
|
|
987
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
988
|
+
};
|
|
989
|
+
|
|
990
|
+
exports.__wbg__wbg_cb_unref_87dfb5aaa0cbcea7 = function(arg0) {
|
|
991
|
+
arg0._wbg_cb_unref();
|
|
992
|
+
};
|
|
993
|
+
|
|
994
|
+
exports.__wbg_abort_07646c894ebbf2bd = function(arg0) {
|
|
995
|
+
arg0.abort();
|
|
996
|
+
};
|
|
997
|
+
|
|
998
|
+
exports.__wbg_abort_399ecbcfd6ef3c8e = function(arg0, arg1) {
|
|
999
|
+
arg0.abort(arg1);
|
|
1000
|
+
};
|
|
1001
|
+
|
|
1002
|
+
exports.__wbg_append_c5cbdf46455cc776 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
1003
|
+
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
1004
|
+
}, arguments) };
|
|
1005
|
+
|
|
1006
|
+
exports.__wbg_arrayBuffer_c04af4fce566092d = function() { return handleError(function (arg0) {
|
|
1007
|
+
const ret = arg0.arrayBuffer();
|
|
1008
|
+
return ret;
|
|
1009
|
+
}, arguments) };
|
|
1361
1010
|
|
|
1362
|
-
|
|
1363
|
-
|
|
1011
|
+
exports.__wbg_authorizeresult_new = function(arg0) {
|
|
1012
|
+
const ret = AuthorizeResult.__wrap(arg0);
|
|
1013
|
+
return ret;
|
|
1014
|
+
};
|
|
1364
1015
|
|
|
1365
|
-
function
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
cachedUint8ArrayMemory0 = null;
|
|
1016
|
+
exports.__wbg_call_3020136f7a2d6e44 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1017
|
+
const ret = arg0.call(arg1, arg2);
|
|
1018
|
+
return ret;
|
|
1019
|
+
}, arguments) };
|
|
1370
1020
|
|
|
1021
|
+
exports.__wbg_call_abb4ff46ce38be40 = function() { return handleError(function (arg0, arg1) {
|
|
1022
|
+
const ret = arg0.call(arg1);
|
|
1023
|
+
return ret;
|
|
1024
|
+
}, arguments) };
|
|
1371
1025
|
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1026
|
+
exports.__wbg_cedarling_new = function(arg0) {
|
|
1027
|
+
const ret = Cedarling.__wrap(arg0);
|
|
1028
|
+
return ret;
|
|
1029
|
+
};
|
|
1375
1030
|
|
|
1376
|
-
function
|
|
1377
|
-
|
|
1031
|
+
exports.__wbg_clearTimeout_b716ecb44bea14ed = function(arg0) {
|
|
1032
|
+
const ret = clearTimeout(arg0);
|
|
1033
|
+
return ret;
|
|
1034
|
+
};
|
|
1378
1035
|
|
|
1036
|
+
exports.__wbg_crypto_574e78ad8b13b65f = function(arg0) {
|
|
1037
|
+
const ret = arg0.crypto;
|
|
1038
|
+
return ret;
|
|
1039
|
+
};
|
|
1379
1040
|
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
} else {
|
|
1384
|
-
console.warn('using deprecated parameters for `initSync()`; pass a single object instead')
|
|
1385
|
-
}
|
|
1386
|
-
}
|
|
1041
|
+
exports.__wbg_debug_24d884048190fccc = function(arg0) {
|
|
1042
|
+
console.debug(...arg0);
|
|
1043
|
+
};
|
|
1387
1044
|
|
|
1388
|
-
|
|
1045
|
+
exports.__wbg_done_62ea16af4ce34b24 = function(arg0) {
|
|
1046
|
+
const ret = arg0.done;
|
|
1047
|
+
return ret;
|
|
1048
|
+
};
|
|
1389
1049
|
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1050
|
+
exports.__wbg_entries_83c79938054e065f = function(arg0) {
|
|
1051
|
+
const ret = Object.entries(arg0);
|
|
1052
|
+
return ret;
|
|
1053
|
+
};
|
|
1393
1054
|
|
|
1394
|
-
|
|
1055
|
+
exports.__wbg_entries_9af46b7eaf7dfefa = function(arg0) {
|
|
1056
|
+
const ret = arg0.entries();
|
|
1057
|
+
return ret;
|
|
1058
|
+
};
|
|
1395
1059
|
|
|
1396
|
-
|
|
1397
|
-
|
|
1060
|
+
exports.__wbg_error_98d791de55bc7c97 = function(arg0) {
|
|
1061
|
+
console.error(...arg0);
|
|
1062
|
+
};
|
|
1398
1063
|
|
|
1399
|
-
|
|
1400
|
-
|
|
1064
|
+
exports.__wbg_fetch_7fb7602a1bf647ec = function(arg0) {
|
|
1065
|
+
const ret = fetch(arg0);
|
|
1066
|
+
return ret;
|
|
1067
|
+
};
|
|
1401
1068
|
|
|
1069
|
+
exports.__wbg_fetch_90447c28cc0b095e = function(arg0, arg1) {
|
|
1070
|
+
const ret = arg0.fetch(arg1);
|
|
1071
|
+
return ret;
|
|
1072
|
+
};
|
|
1402
1073
|
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1074
|
+
exports.__wbg_fromEntries_743eaaa008e6db37 = function() { return handleError(function (arg0) {
|
|
1075
|
+
const ret = Object.fromEntries(arg0);
|
|
1076
|
+
return ret;
|
|
1077
|
+
}, arguments) };
|
|
1078
|
+
|
|
1079
|
+
exports.__wbg_getRandomValues_1c61fac11405ffdc = function() { return handleError(function (arg0, arg1) {
|
|
1080
|
+
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
1081
|
+
}, arguments) };
|
|
1082
|
+
|
|
1083
|
+
exports.__wbg_getRandomValues_b8f5dbd5f3995a9e = function() { return handleError(function (arg0, arg1) {
|
|
1084
|
+
arg0.getRandomValues(arg1);
|
|
1085
|
+
}, arguments) };
|
|
1086
|
+
|
|
1087
|
+
exports.__wbg_getTime_ad1e9878a735af08 = function(arg0) {
|
|
1088
|
+
const ret = arg0.getTime();
|
|
1089
|
+
return ret;
|
|
1090
|
+
};
|
|
1091
|
+
|
|
1092
|
+
exports.__wbg_getTimezoneOffset_45389e26d6f46823 = function(arg0) {
|
|
1093
|
+
const ret = arg0.getTimezoneOffset();
|
|
1094
|
+
return ret;
|
|
1095
|
+
};
|
|
1096
|
+
|
|
1097
|
+
exports.__wbg_get_6b7bd52aca3f9671 = function(arg0, arg1) {
|
|
1098
|
+
const ret = arg0[arg1 >>> 0];
|
|
1099
|
+
return ret;
|
|
1100
|
+
};
|
|
1101
|
+
|
|
1102
|
+
exports.__wbg_get_af9dab7e9603ea93 = function() { return handleError(function (arg0, arg1) {
|
|
1103
|
+
const ret = Reflect.get(arg0, arg1);
|
|
1104
|
+
return ret;
|
|
1105
|
+
}, arguments) };
|
|
1106
|
+
|
|
1107
|
+
exports.__wbg_get_with_ref_key_1dc361bd10053bfe = function(arg0, arg1) {
|
|
1108
|
+
const ret = arg0[arg1];
|
|
1109
|
+
return ret;
|
|
1110
|
+
};
|
|
1111
|
+
|
|
1112
|
+
exports.__wbg_has_0e670569d65d3a45 = function() { return handleError(function (arg0, arg1) {
|
|
1113
|
+
const ret = Reflect.has(arg0, arg1);
|
|
1114
|
+
return ret;
|
|
1115
|
+
}, arguments) };
|
|
1116
|
+
|
|
1117
|
+
exports.__wbg_headers_654c30e1bcccc552 = function(arg0) {
|
|
1118
|
+
const ret = arg0.headers;
|
|
1119
|
+
return ret;
|
|
1120
|
+
};
|
|
1121
|
+
|
|
1122
|
+
exports.__wbg_info_e951478d580c1573 = function(arg0) {
|
|
1123
|
+
console.info(...arg0);
|
|
1124
|
+
};
|
|
1125
|
+
|
|
1126
|
+
exports.__wbg_instanceof_ArrayBuffer_f3320d2419cd0355 = function(arg0) {
|
|
1127
|
+
let result;
|
|
1128
|
+
try {
|
|
1129
|
+
result = arg0 instanceof ArrayBuffer;
|
|
1130
|
+
} catch (_) {
|
|
1131
|
+
result = false;
|
|
1132
|
+
}
|
|
1133
|
+
const ret = result;
|
|
1134
|
+
return ret;
|
|
1135
|
+
};
|
|
1136
|
+
|
|
1137
|
+
exports.__wbg_instanceof_Array_bc64f5da83077362 = function(arg0) {
|
|
1138
|
+
let result;
|
|
1139
|
+
try {
|
|
1140
|
+
result = arg0 instanceof Array;
|
|
1141
|
+
} catch (_) {
|
|
1142
|
+
result = false;
|
|
1143
|
+
}
|
|
1144
|
+
const ret = result;
|
|
1145
|
+
return ret;
|
|
1146
|
+
};
|
|
1147
|
+
|
|
1148
|
+
exports.__wbg_instanceof_Map_084be8da74364158 = function(arg0) {
|
|
1149
|
+
let result;
|
|
1150
|
+
try {
|
|
1151
|
+
result = arg0 instanceof Map;
|
|
1152
|
+
} catch (_) {
|
|
1153
|
+
result = false;
|
|
1409
1154
|
}
|
|
1155
|
+
const ret = result;
|
|
1156
|
+
return ret;
|
|
1157
|
+
};
|
|
1410
1158
|
|
|
1411
|
-
|
|
1412
|
-
|
|
1159
|
+
exports.__wbg_instanceof_Response_cd74d1c2ac92cb0b = function(arg0) {
|
|
1160
|
+
let result;
|
|
1161
|
+
try {
|
|
1162
|
+
result = arg0 instanceof Response;
|
|
1163
|
+
} catch (_) {
|
|
1164
|
+
result = false;
|
|
1413
1165
|
}
|
|
1414
|
-
const
|
|
1166
|
+
const ret = result;
|
|
1167
|
+
return ret;
|
|
1168
|
+
};
|
|
1415
1169
|
|
|
1416
|
-
|
|
1417
|
-
|
|
1170
|
+
exports.__wbg_instanceof_Uint8Array_da54ccc9d3e09434 = function(arg0) {
|
|
1171
|
+
let result;
|
|
1172
|
+
try {
|
|
1173
|
+
result = arg0 instanceof Uint8Array;
|
|
1174
|
+
} catch (_) {
|
|
1175
|
+
result = false;
|
|
1418
1176
|
}
|
|
1177
|
+
const ret = result;
|
|
1178
|
+
return ret;
|
|
1179
|
+
};
|
|
1180
|
+
|
|
1181
|
+
exports.__wbg_isArray_51fd9e6422c0a395 = function(arg0) {
|
|
1182
|
+
const ret = Array.isArray(arg0);
|
|
1183
|
+
return ret;
|
|
1184
|
+
};
|
|
1419
1185
|
|
|
1420
|
-
|
|
1186
|
+
exports.__wbg_isSafeInteger_ae7d3f054d55fa16 = function(arg0) {
|
|
1187
|
+
const ret = Number.isSafeInteger(arg0);
|
|
1188
|
+
return ret;
|
|
1189
|
+
};
|
|
1421
1190
|
|
|
1422
|
-
|
|
1423
|
-
|
|
1191
|
+
exports.__wbg_iterator_27b7c8b35ab3e86b = function() {
|
|
1192
|
+
const ret = Symbol.iterator;
|
|
1193
|
+
return ret;
|
|
1194
|
+
};
|
|
1195
|
+
|
|
1196
|
+
exports.__wbg_keys_f5c6002ff150fc6c = function(arg0) {
|
|
1197
|
+
const ret = Object.keys(arg0);
|
|
1198
|
+
return ret;
|
|
1199
|
+
};
|
|
1200
|
+
|
|
1201
|
+
exports.__wbg_length_22ac23eaec9d8053 = function(arg0) {
|
|
1202
|
+
const ret = arg0.length;
|
|
1203
|
+
return ret;
|
|
1204
|
+
};
|
|
1205
|
+
|
|
1206
|
+
exports.__wbg_length_d45040a40c570362 = function(arg0) {
|
|
1207
|
+
const ret = arg0.length;
|
|
1208
|
+
return ret;
|
|
1209
|
+
};
|
|
1210
|
+
|
|
1211
|
+
exports.__wbg_log_3f650af133a6de58 = function(arg0) {
|
|
1212
|
+
console.log(...arg0);
|
|
1213
|
+
};
|
|
1214
|
+
|
|
1215
|
+
exports.__wbg_msCrypto_a61aeb35a24c1329 = function(arg0) {
|
|
1216
|
+
const ret = arg0.msCrypto;
|
|
1217
|
+
return ret;
|
|
1218
|
+
};
|
|
1219
|
+
|
|
1220
|
+
exports.__wbg_multiissuerauthorizeresult_new = function(arg0) {
|
|
1221
|
+
const ret = MultiIssuerAuthorizeResult.__wrap(arg0);
|
|
1222
|
+
return ret;
|
|
1223
|
+
};
|
|
1224
|
+
|
|
1225
|
+
exports.__wbg_new_0_23cedd11d9b40c9d = function() {
|
|
1226
|
+
const ret = new Date();
|
|
1227
|
+
return ret;
|
|
1228
|
+
};
|
|
1229
|
+
|
|
1230
|
+
exports.__wbg_new_1ba21ce319a06297 = function() {
|
|
1231
|
+
const ret = new Object();
|
|
1232
|
+
return ret;
|
|
1233
|
+
};
|
|
1234
|
+
|
|
1235
|
+
exports.__wbg_new_25f239778d6112b9 = function() {
|
|
1236
|
+
const ret = new Array();
|
|
1237
|
+
return ret;
|
|
1238
|
+
};
|
|
1239
|
+
|
|
1240
|
+
exports.__wbg_new_3c79b3bb1b32b7d3 = function() { return handleError(function () {
|
|
1241
|
+
const ret = new Headers();
|
|
1242
|
+
return ret;
|
|
1243
|
+
}, arguments) };
|
|
1244
|
+
|
|
1245
|
+
exports.__wbg_new_6421f6084cc5bc5a = function(arg0) {
|
|
1246
|
+
const ret = new Uint8Array(arg0);
|
|
1247
|
+
return ret;
|
|
1248
|
+
};
|
|
1249
|
+
|
|
1250
|
+
exports.__wbg_new_881a222c65f168fc = function() { return handleError(function () {
|
|
1251
|
+
const ret = new AbortController();
|
|
1252
|
+
return ret;
|
|
1253
|
+
}, arguments) };
|
|
1254
|
+
|
|
1255
|
+
exports.__wbg_new_b2db8aa2650f793a = function(arg0) {
|
|
1256
|
+
const ret = new Date(arg0);
|
|
1257
|
+
return ret;
|
|
1258
|
+
};
|
|
1259
|
+
|
|
1260
|
+
exports.__wbg_new_b546ae120718850e = function() {
|
|
1261
|
+
const ret = new Map();
|
|
1262
|
+
return ret;
|
|
1263
|
+
};
|
|
1264
|
+
|
|
1265
|
+
exports.__wbg_new_ff12d2b041fb48f1 = function(arg0, arg1) {
|
|
1266
|
+
try {
|
|
1267
|
+
var state0 = {a: arg0, b: arg1};
|
|
1268
|
+
var cb0 = (arg0, arg1) => {
|
|
1269
|
+
const a = state0.a;
|
|
1270
|
+
state0.a = 0;
|
|
1271
|
+
try {
|
|
1272
|
+
return wasm_bindgen__convert__closures_____invoke__h3a7d0d99d266e2f8(a, state0.b, arg0, arg1);
|
|
1273
|
+
} finally {
|
|
1274
|
+
state0.a = a;
|
|
1275
|
+
}
|
|
1276
|
+
};
|
|
1277
|
+
const ret = new Promise(cb0);
|
|
1278
|
+
return ret;
|
|
1279
|
+
} finally {
|
|
1280
|
+
state0.a = state0.b = 0;
|
|
1281
|
+
}
|
|
1282
|
+
};
|
|
1283
|
+
|
|
1284
|
+
exports.__wbg_new_from_slice_f9c22b9153b26992 = function(arg0, arg1) {
|
|
1285
|
+
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
1286
|
+
return ret;
|
|
1287
|
+
};
|
|
1288
|
+
|
|
1289
|
+
exports.__wbg_new_no_args_cb138f77cf6151ee = function(arg0, arg1) {
|
|
1290
|
+
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
1291
|
+
return ret;
|
|
1292
|
+
};
|
|
1293
|
+
|
|
1294
|
+
exports.__wbg_new_with_args_df9e7125ffe55248 = function(arg0, arg1, arg2, arg3) {
|
|
1295
|
+
const ret = new Function(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
1296
|
+
return ret;
|
|
1297
|
+
};
|
|
1298
|
+
|
|
1299
|
+
exports.__wbg_new_with_length_aa5eaf41d35235e5 = function(arg0) {
|
|
1300
|
+
const ret = new Uint8Array(arg0 >>> 0);
|
|
1301
|
+
return ret;
|
|
1302
|
+
};
|
|
1303
|
+
|
|
1304
|
+
exports.__wbg_new_with_str_and_init_c5748f76f5108934 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1305
|
+
const ret = new Request(getStringFromWasm0(arg0, arg1), arg2);
|
|
1306
|
+
return ret;
|
|
1307
|
+
}, arguments) };
|
|
1308
|
+
|
|
1309
|
+
exports.__wbg_next_138a17bbf04e926c = function(arg0) {
|
|
1310
|
+
const ret = arg0.next;
|
|
1311
|
+
return ret;
|
|
1312
|
+
};
|
|
1313
|
+
|
|
1314
|
+
exports.__wbg_next_3cfe5c0fe2a4cc53 = function() { return handleError(function (arg0) {
|
|
1315
|
+
const ret = arg0.next();
|
|
1316
|
+
return ret;
|
|
1317
|
+
}, arguments) };
|
|
1318
|
+
|
|
1319
|
+
exports.__wbg_node_905d3e251edff8a2 = function(arg0) {
|
|
1320
|
+
const ret = arg0.node;
|
|
1321
|
+
return ret;
|
|
1322
|
+
};
|
|
1323
|
+
|
|
1324
|
+
exports.__wbg_policyevaluationerror_new = function(arg0) {
|
|
1325
|
+
const ret = PolicyEvaluationError.__wrap(arg0);
|
|
1326
|
+
return ret;
|
|
1327
|
+
};
|
|
1328
|
+
|
|
1329
|
+
exports.__wbg_process_dc0fbacc7c1c06f7 = function(arg0) {
|
|
1330
|
+
const ret = arg0.process;
|
|
1331
|
+
return ret;
|
|
1332
|
+
};
|
|
1333
|
+
|
|
1334
|
+
exports.__wbg_prototypesetcall_dfe9b766cdc1f1fd = function(arg0, arg1, arg2) {
|
|
1335
|
+
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
|
|
1336
|
+
};
|
|
1337
|
+
|
|
1338
|
+
exports.__wbg_push_7d9be8f38fc13975 = function(arg0, arg1) {
|
|
1339
|
+
const ret = arg0.push(arg1);
|
|
1340
|
+
return ret;
|
|
1341
|
+
};
|
|
1342
|
+
|
|
1343
|
+
exports.__wbg_queueMicrotask_9b549dfce8865860 = function(arg0) {
|
|
1344
|
+
const ret = arg0.queueMicrotask;
|
|
1345
|
+
return ret;
|
|
1346
|
+
};
|
|
1347
|
+
|
|
1348
|
+
exports.__wbg_queueMicrotask_fca69f5bfad613a5 = function(arg0) {
|
|
1349
|
+
queueMicrotask(arg0);
|
|
1350
|
+
};
|
|
1351
|
+
|
|
1352
|
+
exports.__wbg_randomFillSync_ac0988aba3254290 = function() { return handleError(function (arg0, arg1) {
|
|
1353
|
+
arg0.randomFillSync(arg1);
|
|
1354
|
+
}, arguments) };
|
|
1355
|
+
|
|
1356
|
+
exports.__wbg_require_60cc747a6bc5215a = function() { return handleError(function () {
|
|
1357
|
+
const ret = module.require;
|
|
1358
|
+
return ret;
|
|
1359
|
+
}, arguments) };
|
|
1360
|
+
|
|
1361
|
+
exports.__wbg_resolve_fd5bfbaa4ce36e1e = function(arg0) {
|
|
1362
|
+
const ret = Promise.resolve(arg0);
|
|
1363
|
+
return ret;
|
|
1364
|
+
};
|
|
1365
|
+
|
|
1366
|
+
exports.__wbg_setTimeout_4302406184dcc5be = function(arg0, arg1) {
|
|
1367
|
+
const ret = setTimeout(arg0, arg1);
|
|
1368
|
+
return ret;
|
|
1369
|
+
};
|
|
1370
|
+
|
|
1371
|
+
exports.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) {
|
|
1372
|
+
arg0[arg1] = arg2;
|
|
1373
|
+
};
|
|
1374
|
+
|
|
1375
|
+
exports.__wbg_set_781438a03c0c3c81 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
1376
|
+
const ret = Reflect.set(arg0, arg1, arg2);
|
|
1377
|
+
return ret;
|
|
1378
|
+
}, arguments) };
|
|
1379
|
+
|
|
1380
|
+
exports.__wbg_set_7df433eea03a5c14 = function(arg0, arg1, arg2) {
|
|
1381
|
+
arg0[arg1 >>> 0] = arg2;
|
|
1382
|
+
};
|
|
1383
|
+
|
|
1384
|
+
exports.__wbg_set_body_8e743242d6076a4f = function(arg0, arg1) {
|
|
1385
|
+
arg0.body = arg1;
|
|
1386
|
+
};
|
|
1387
|
+
|
|
1388
|
+
exports.__wbg_set_cache_0e437c7c8e838b9b = function(arg0, arg1) {
|
|
1389
|
+
arg0.cache = __wbindgen_enum_RequestCache[arg1];
|
|
1390
|
+
};
|
|
1391
|
+
|
|
1392
|
+
exports.__wbg_set_credentials_55ae7c3c106fd5be = function(arg0, arg1) {
|
|
1393
|
+
arg0.credentials = __wbindgen_enum_RequestCredentials[arg1];
|
|
1394
|
+
};
|
|
1395
|
+
|
|
1396
|
+
exports.__wbg_set_efaaf145b9377369 = function(arg0, arg1, arg2) {
|
|
1397
|
+
const ret = arg0.set(arg1, arg2);
|
|
1398
|
+
return ret;
|
|
1399
|
+
};
|
|
1400
|
+
|
|
1401
|
+
exports.__wbg_set_headers_5671cf088e114d2b = function(arg0, arg1) {
|
|
1402
|
+
arg0.headers = arg1;
|
|
1403
|
+
};
|
|
1404
|
+
|
|
1405
|
+
exports.__wbg_set_method_76c69e41b3570627 = function(arg0, arg1, arg2) {
|
|
1406
|
+
arg0.method = getStringFromWasm0(arg1, arg2);
|
|
1407
|
+
};
|
|
1408
|
+
|
|
1409
|
+
exports.__wbg_set_mode_611016a6818fc690 = function(arg0, arg1) {
|
|
1410
|
+
arg0.mode = __wbindgen_enum_RequestMode[arg1];
|
|
1411
|
+
};
|
|
1424
1412
|
|
|
1425
|
-
|
|
1426
|
-
|
|
1413
|
+
exports.__wbg_set_signal_e89be862d0091009 = function(arg0, arg1) {
|
|
1414
|
+
arg0.signal = arg1;
|
|
1415
|
+
};
|
|
1416
|
+
|
|
1417
|
+
exports.__wbg_signal_3c14fbdc89694b39 = function(arg0) {
|
|
1418
|
+
const ret = arg0.signal;
|
|
1419
|
+
return ret;
|
|
1420
|
+
};
|
|
1421
|
+
|
|
1422
|
+
exports.__wbg_static_accessor_GLOBAL_769e6b65d6557335 = function() {
|
|
1423
|
+
const ret = typeof global === 'undefined' ? null : global;
|
|
1424
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1425
|
+
};
|
|
1426
|
+
|
|
1427
|
+
exports.__wbg_static_accessor_GLOBAL_THIS_60cf02db4de8e1c1 = function() {
|
|
1428
|
+
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
1429
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1430
|
+
};
|
|
1431
|
+
|
|
1432
|
+
exports.__wbg_static_accessor_SELF_08f5a74c69739274 = function() {
|
|
1433
|
+
const ret = typeof self === 'undefined' ? null : self;
|
|
1434
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1435
|
+
};
|
|
1436
|
+
|
|
1437
|
+
exports.__wbg_static_accessor_WINDOW_a8924b26aa92d024 = function() {
|
|
1438
|
+
const ret = typeof window === 'undefined' ? null : window;
|
|
1439
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
1440
|
+
};
|
|
1441
|
+
|
|
1442
|
+
exports.__wbg_status_9bfc680efca4bdfd = function(arg0) {
|
|
1443
|
+
const ret = arg0.status;
|
|
1444
|
+
return ret;
|
|
1445
|
+
};
|
|
1446
|
+
|
|
1447
|
+
exports.__wbg_stringify_655a6390e1f5eb6b = function() { return handleError(function (arg0) {
|
|
1448
|
+
const ret = JSON.stringify(arg0);
|
|
1449
|
+
return ret;
|
|
1450
|
+
}, arguments) };
|
|
1451
|
+
|
|
1452
|
+
exports.__wbg_subarray_845f2f5bce7d061a = function(arg0, arg1, arg2) {
|
|
1453
|
+
const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0);
|
|
1454
|
+
return ret;
|
|
1455
|
+
};
|
|
1456
|
+
|
|
1457
|
+
exports.__wbg_text_51046bb33d257f63 = function() { return handleError(function (arg0) {
|
|
1458
|
+
const ret = arg0.text();
|
|
1459
|
+
return ret;
|
|
1460
|
+
}, arguments) };
|
|
1461
|
+
|
|
1462
|
+
exports.__wbg_then_429f7caf1026411d = function(arg0, arg1, arg2) {
|
|
1463
|
+
const ret = arg0.then(arg1, arg2);
|
|
1464
|
+
return ret;
|
|
1465
|
+
};
|
|
1466
|
+
|
|
1467
|
+
exports.__wbg_then_4f95312d68691235 = function(arg0, arg1) {
|
|
1468
|
+
const ret = arg0.then(arg1);
|
|
1469
|
+
return ret;
|
|
1470
|
+
};
|
|
1471
|
+
|
|
1472
|
+
exports.__wbg_trace_b213249bfc587469 = function(arg0) {
|
|
1473
|
+
console.trace(...arg0);
|
|
1474
|
+
};
|
|
1475
|
+
|
|
1476
|
+
exports.__wbg_url_b6d11838a4f95198 = function(arg0, arg1) {
|
|
1477
|
+
const ret = arg1.url;
|
|
1478
|
+
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1479
|
+
const len1 = WASM_VECTOR_LEN;
|
|
1480
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1481
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1482
|
+
};
|
|
1483
|
+
|
|
1484
|
+
exports.__wbg_value_57b7b035e117f7ee = function(arg0) {
|
|
1485
|
+
const ret = arg0.value;
|
|
1486
|
+
return ret;
|
|
1487
|
+
};
|
|
1488
|
+
|
|
1489
|
+
exports.__wbg_versions_c01dfd4722a88165 = function(arg0) {
|
|
1490
|
+
const ret = arg0.versions;
|
|
1491
|
+
return ret;
|
|
1492
|
+
};
|
|
1493
|
+
|
|
1494
|
+
exports.__wbg_warn_14a9fd75d0abe5d7 = function(arg0) {
|
|
1495
|
+
console.warn(...arg0);
|
|
1496
|
+
};
|
|
1497
|
+
|
|
1498
|
+
exports.__wbindgen_cast_0e8a9f348831646f = function(arg0, arg1) {
|
|
1499
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 510, function: Function { arguments: [], shim_idx: 511, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1500
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h3edd0da2e16650db, wasm_bindgen__convert__closures_____invoke__h8a10b0fb25c32ce7);
|
|
1501
|
+
return ret;
|
|
1502
|
+
};
|
|
1503
|
+
|
|
1504
|
+
exports.__wbindgen_cast_2241b6af4c4b2941 = function(arg0, arg1) {
|
|
1505
|
+
// Cast intrinsic for `Ref(String) -> Externref`.
|
|
1506
|
+
const ret = getStringFromWasm0(arg0, arg1);
|
|
1507
|
+
return ret;
|
|
1508
|
+
};
|
|
1509
|
+
|
|
1510
|
+
exports.__wbindgen_cast_317cf9338e91f114 = function(arg0, arg1) {
|
|
1511
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 555, function: Function { arguments: [Externref], shim_idx: 556, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1512
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h8554173f80599467, wasm_bindgen__convert__closures_____invoke__h7f8b71809a8d7577);
|
|
1513
|
+
return ret;
|
|
1514
|
+
};
|
|
1515
|
+
|
|
1516
|
+
exports.__wbindgen_cast_4625c577ab2ec9ee = function(arg0) {
|
|
1517
|
+
// Cast intrinsic for `U64 -> Externref`.
|
|
1518
|
+
const ret = BigInt.asUintN(64, arg0);
|
|
1519
|
+
return ret;
|
|
1520
|
+
};
|
|
1521
|
+
|
|
1522
|
+
exports.__wbindgen_cast_9ae0607507abb057 = function(arg0) {
|
|
1523
|
+
// Cast intrinsic for `I64 -> Externref`.
|
|
1524
|
+
const ret = arg0;
|
|
1525
|
+
return ret;
|
|
1526
|
+
};
|
|
1527
|
+
|
|
1528
|
+
exports.__wbindgen_cast_cb9088102bce6b30 = function(arg0, arg1) {
|
|
1529
|
+
// Cast intrinsic for `Ref(Slice(U8)) -> NamedExternref("Uint8Array")`.
|
|
1530
|
+
const ret = getArrayU8FromWasm0(arg0, arg1);
|
|
1531
|
+
return ret;
|
|
1532
|
+
};
|
|
1533
|
+
|
|
1534
|
+
exports.__wbindgen_cast_d6cd19b81560fd6e = function(arg0) {
|
|
1535
|
+
// Cast intrinsic for `F64 -> Externref`.
|
|
1536
|
+
const ret = arg0;
|
|
1537
|
+
return ret;
|
|
1538
|
+
};
|
|
1539
|
+
|
|
1540
|
+
exports.__wbindgen_init_externref_table = function() {
|
|
1541
|
+
const table = wasm.__wbindgen_externrefs;
|
|
1542
|
+
const offset = table.grow(4);
|
|
1543
|
+
table.set(0, undefined);
|
|
1544
|
+
table.set(offset + 0, undefined);
|
|
1545
|
+
table.set(offset + 1, null);
|
|
1546
|
+
table.set(offset + 2, true);
|
|
1547
|
+
table.set(offset + 3, false);
|
|
1548
|
+
};
|
|
1549
|
+
|
|
1550
|
+
const wasmPath = `${__dirname}/cedarling_wasm_bg.wasm`;
|
|
1551
|
+
const wasmBytes = require('fs').readFileSync(wasmPath);
|
|
1552
|
+
const wasmModule = new WebAssembly.Module(wasmBytes);
|
|
1553
|
+
const wasm = exports.__wasm = new WebAssembly.Instance(wasmModule, imports).exports;
|
|
1554
|
+
|
|
1555
|
+
wasm.__wbindgen_start();
|