@rivetkit/rivetkit-wasm 2.3.0-rc.5 → 2.3.0-rc.7
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/package.json
CHANGED
package/pkg/rivetkit_wasm.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
export function awaitPromise(promise: Promise<any>): Promise<any>;
|
|
3
4
|
export function bridgeRivetErrorPrefix(): string;
|
|
5
|
+
export function uint8ArrayFromBytes(bytes: Uint8Array): Uint8Array;
|
|
4
6
|
export function start(): void;
|
|
5
7
|
export function roundTripBytes(bytes: Uint8Array): Uint8Array;
|
|
6
|
-
export function awaitPromise(promise: Promise<any>): Promise<any>;
|
|
7
|
-
export function uint8ArrayFromBytes(bytes: Uint8Array): Uint8Array;
|
|
8
8
|
export class ActorContext {
|
|
9
9
|
free(): void;
|
|
10
10
|
keepAwake(promise: Promise<any>): void;
|
|
@@ -27,6 +27,7 @@ export class ActorContext {
|
|
|
27
27
|
beginWebsocketCallback(): number;
|
|
28
28
|
dirtyHibernatableConns(): Array<any>;
|
|
29
29
|
kv(): Kv;
|
|
30
|
+
waitForTrackedShutdownWork(): Promise<boolean>;
|
|
30
31
|
takePendingHibernationChanges(): Array<any>;
|
|
31
32
|
key(): any;
|
|
32
33
|
constructor();
|
|
@@ -176,6 +177,7 @@ export interface InitOutput {
|
|
|
176
177
|
readonly actorcontext_state: (a: number) => [number, number];
|
|
177
178
|
readonly actorcontext_takePendingHibernationChanges: (a: number) => any;
|
|
178
179
|
readonly actorcontext_verifyInspectorAuth: (a: number, b: number, c: number) => any;
|
|
180
|
+
readonly actorcontext_waitForTrackedShutdownWork: (a: number) => any;
|
|
179
181
|
readonly actorcontext_waitUntil: (a: number, b: any) => void;
|
|
180
182
|
readonly actorfactory_new: (a: any, b: any) => [number, number, number];
|
|
181
183
|
readonly awaitPromise: (a: any) => any;
|
|
@@ -244,9 +246,9 @@ export interface InitOutput {
|
|
|
244
246
|
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
245
247
|
readonly __wbindgen_export_6: WebAssembly.Table;
|
|
246
248
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
247
|
-
readonly
|
|
248
|
-
readonly
|
|
249
|
-
readonly
|
|
249
|
+
readonly closure1594_externref_shim: (a: number, b: number, c: any) => void;
|
|
250
|
+
readonly closure1964_externref_shim: (a: number, b: number, c: any) => void;
|
|
251
|
+
readonly closure2187_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
250
252
|
readonly __wbindgen_start: () => void;
|
|
251
253
|
}
|
|
252
254
|
|
package/pkg/rivetkit_wasm.js
CHANGED
|
@@ -221,6 +221,15 @@ function _assertClass(instance, klass) {
|
|
|
221
221
|
throw new Error(`expected instance of ${klass.name}`);
|
|
222
222
|
}
|
|
223
223
|
}
|
|
224
|
+
/**
|
|
225
|
+
* @param {Promise<any>} promise
|
|
226
|
+
* @returns {Promise<any>}
|
|
227
|
+
*/
|
|
228
|
+
export function awaitPromise(promise) {
|
|
229
|
+
const ret = wasm.awaitPromise(promise);
|
|
230
|
+
return ret;
|
|
231
|
+
}
|
|
232
|
+
|
|
224
233
|
/**
|
|
225
234
|
* @returns {string}
|
|
226
235
|
*/
|
|
@@ -237,53 +246,44 @@ export function bridgeRivetErrorPrefix() {
|
|
|
237
246
|
}
|
|
238
247
|
}
|
|
239
248
|
|
|
240
|
-
export function start() {
|
|
241
|
-
wasm.start();
|
|
242
|
-
}
|
|
243
|
-
|
|
244
249
|
/**
|
|
245
250
|
* @param {Uint8Array} bytes
|
|
246
251
|
* @returns {Uint8Array}
|
|
247
252
|
*/
|
|
248
|
-
export function
|
|
253
|
+
export function uint8ArrayFromBytes(bytes) {
|
|
249
254
|
const ptr0 = passArray8ToWasm0(bytes, wasm.__wbindgen_malloc);
|
|
250
255
|
const len0 = WASM_VECTOR_LEN;
|
|
251
|
-
const ret = wasm.
|
|
252
|
-
|
|
253
|
-
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
254
|
-
return v2;
|
|
256
|
+
const ret = wasm.uint8ArrayFromBytes(ptr0, len0);
|
|
257
|
+
return ret;
|
|
255
258
|
}
|
|
256
259
|
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
* @returns {Promise<any>}
|
|
260
|
-
*/
|
|
261
|
-
export function awaitPromise(promise) {
|
|
262
|
-
const ret = wasm.awaitPromise(promise);
|
|
263
|
-
return ret;
|
|
260
|
+
export function start() {
|
|
261
|
+
wasm.start();
|
|
264
262
|
}
|
|
265
263
|
|
|
266
264
|
/**
|
|
267
265
|
* @param {Uint8Array} bytes
|
|
268
266
|
* @returns {Uint8Array}
|
|
269
267
|
*/
|
|
270
|
-
export function
|
|
268
|
+
export function roundTripBytes(bytes) {
|
|
271
269
|
const ptr0 = passArray8ToWasm0(bytes, wasm.__wbindgen_malloc);
|
|
272
270
|
const len0 = WASM_VECTOR_LEN;
|
|
273
|
-
const ret = wasm.
|
|
274
|
-
|
|
271
|
+
const ret = wasm.roundTripBytes(ptr0, len0);
|
|
272
|
+
var v2 = getArrayU8FromWasm0(ret[0], ret[1]).slice();
|
|
273
|
+
wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
|
|
274
|
+
return v2;
|
|
275
275
|
}
|
|
276
276
|
|
|
277
277
|
function __wbg_adapter_46(arg0, arg1, arg2) {
|
|
278
|
-
wasm.
|
|
278
|
+
wasm.closure1594_externref_shim(arg0, arg1, arg2);
|
|
279
279
|
}
|
|
280
280
|
|
|
281
281
|
function __wbg_adapter_55(arg0, arg1, arg2) {
|
|
282
|
-
wasm.
|
|
282
|
+
wasm.closure1964_externref_shim(arg0, arg1, arg2);
|
|
283
283
|
}
|
|
284
284
|
|
|
285
|
-
function
|
|
286
|
-
wasm.
|
|
285
|
+
function __wbg_adapter_225(arg0, arg1, arg2, arg3) {
|
|
286
|
+
wasm.closure2187_externref_shim(arg0, arg1, arg2, arg3);
|
|
287
287
|
}
|
|
288
288
|
|
|
289
289
|
const __wbindgen_enum_BinaryType = ["blob", "arraybuffer"];
|
|
@@ -450,6 +450,13 @@ export class ActorContext {
|
|
|
450
450
|
const ret = wasm.actorcontext_kv(this.__wbg_ptr);
|
|
451
451
|
return Kv.__wrap(ret);
|
|
452
452
|
}
|
|
453
|
+
/**
|
|
454
|
+
* @returns {Promise<boolean>}
|
|
455
|
+
*/
|
|
456
|
+
waitForTrackedShutdownWork() {
|
|
457
|
+
const ret = wasm.actorcontext_waitForTrackedShutdownWork(this.__wbg_ptr);
|
|
458
|
+
return ret;
|
|
459
|
+
}
|
|
453
460
|
/**
|
|
454
461
|
* @returns {Array<any>}
|
|
455
462
|
*/
|
|
@@ -1555,7 +1562,7 @@ function __wbg_get_imports() {
|
|
|
1555
1562
|
const a = state0.a;
|
|
1556
1563
|
state0.a = 0;
|
|
1557
1564
|
try {
|
|
1558
|
-
return
|
|
1565
|
+
return __wbg_adapter_225(a, state0.b, arg0, arg1);
|
|
1559
1566
|
} finally {
|
|
1560
1567
|
state0.a = a;
|
|
1561
1568
|
}
|
|
@@ -1767,24 +1774,24 @@ function __wbg_get_imports() {
|
|
|
1767
1774
|
const ret = false;
|
|
1768
1775
|
return ret;
|
|
1769
1776
|
};
|
|
1770
|
-
imports.wbg.
|
|
1771
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
1777
|
+
imports.wbg.__wbindgen_closure_wrapper3736 = function(arg0, arg1, arg2) {
|
|
1778
|
+
const ret = makeMutClosure(arg0, arg1, 1595, __wbg_adapter_46);
|
|
1772
1779
|
return ret;
|
|
1773
1780
|
};
|
|
1774
|
-
imports.wbg.
|
|
1775
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
1781
|
+
imports.wbg.__wbindgen_closure_wrapper3738 = function(arg0, arg1, arg2) {
|
|
1782
|
+
const ret = makeMutClosure(arg0, arg1, 1595, __wbg_adapter_46);
|
|
1776
1783
|
return ret;
|
|
1777
1784
|
};
|
|
1778
|
-
imports.wbg.
|
|
1779
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
1785
|
+
imports.wbg.__wbindgen_closure_wrapper3740 = function(arg0, arg1, arg2) {
|
|
1786
|
+
const ret = makeMutClosure(arg0, arg1, 1595, __wbg_adapter_46);
|
|
1780
1787
|
return ret;
|
|
1781
1788
|
};
|
|
1782
|
-
imports.wbg.
|
|
1783
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
1789
|
+
imports.wbg.__wbindgen_closure_wrapper3742 = function(arg0, arg1, arg2) {
|
|
1790
|
+
const ret = makeMutClosure(arg0, arg1, 1595, __wbg_adapter_46);
|
|
1784
1791
|
return ret;
|
|
1785
1792
|
};
|
|
1786
|
-
imports.wbg.
|
|
1787
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
1793
|
+
imports.wbg.__wbindgen_closure_wrapper4686 = function(arg0, arg1, arg2) {
|
|
1794
|
+
const ret = makeMutClosure(arg0, arg1, 1965, __wbg_adapter_55);
|
|
1788
1795
|
return ret;
|
|
1789
1796
|
};
|
|
1790
1797
|
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
|
Binary file
|
|
@@ -42,6 +42,7 @@ export const actorcontext_sql: (a: number) => number;
|
|
|
42
42
|
export const actorcontext_state: (a: number) => [number, number];
|
|
43
43
|
export const actorcontext_takePendingHibernationChanges: (a: number) => any;
|
|
44
44
|
export const actorcontext_verifyInspectorAuth: (a: number, b: number, c: number) => any;
|
|
45
|
+
export const actorcontext_waitForTrackedShutdownWork: (a: number) => any;
|
|
45
46
|
export const actorcontext_waitUntil: (a: number, b: any) => void;
|
|
46
47
|
export const actorfactory_new: (a: any, b: any) => [number, number, number];
|
|
47
48
|
export const awaitPromise: (a: any) => any;
|
|
@@ -110,7 +111,7 @@ export const __wbindgen_export_4: WebAssembly.Table;
|
|
|
110
111
|
export const __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
111
112
|
export const __wbindgen_export_6: WebAssembly.Table;
|
|
112
113
|
export const __externref_table_dealloc: (a: number) => void;
|
|
113
|
-
export const
|
|
114
|
-
export const
|
|
115
|
-
export const
|
|
114
|
+
export const closure1594_externref_shim: (a: number, b: number, c: any) => void;
|
|
115
|
+
export const closure1964_externref_shim: (a: number, b: number, c: any) => void;
|
|
116
|
+
export const closure2187_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
116
117
|
export const __wbindgen_start: () => void;
|