@reboot-dev/reboot 0.24.0 → 0.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +62 -12
- package/index.js +256 -13
- package/package.json +6 -4
- package/rbt.js +5 -2
- package/reboot_native.cc +1186 -1389
- package/reboot_native.cjs +1 -0
- package/reboot_native.d.ts +8 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/reboot_native.cjs
CHANGED
|
@@ -68,6 +68,7 @@ exports.Reboot_url = reboot_native.exports.Reboot_url;
|
|
|
68
68
|
exports.Context_auth = reboot_native.exports.Context_auth;
|
|
69
69
|
exports.Context_stateId = reboot_native.exports.Context_stateId;
|
|
70
70
|
exports.Context_cookie = reboot_native.exports.Context_cookie;
|
|
71
|
+
exports.Context_appInternal = reboot_native.exports.Context_appInternal;
|
|
71
72
|
exports.Context_iteration = reboot_native.exports.Context_iteration;
|
|
72
73
|
exports.Context_generateIdempotentStateId =
|
|
73
74
|
reboot_native.exports.Context_generateIdempotentStateId;
|
package/reboot_native.d.ts
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
// NOTE NOTE NOTE NOTE NOTE
|
|
2
|
+
//
|
|
3
|
+
// This file seems wildly out of date and inaccurate. It is not clear
|
|
4
|
+
// that it is being used by type checkers and we should either get rid
|
|
5
|
+
// of it or bring it up to date.
|
|
6
|
+
|
|
1
7
|
import { IdempotencyOptions } from "@reboot-dev/reboot-api";
|
|
2
8
|
|
|
3
9
|
import {
|
|
@@ -69,6 +75,8 @@ export namespace rbt_native {
|
|
|
69
75
|
function Reboot_down(external: NapiExternal): void;
|
|
70
76
|
function Context_stateId(external: NapiExternal): string;
|
|
71
77
|
function Context_iteration(external: NapiExternal): number;
|
|
78
|
+
function Context_cookie(external: NapiExternal): string;
|
|
79
|
+
function Context_appInternal(external: NapiExternal): boolean;
|
|
72
80
|
function Context_generateIdempotentStateId(
|
|
73
81
|
external: NapiExternal,
|
|
74
82
|
state_type: string,
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const REBOOT_VERSION = "0.
|
|
1
|
+
export declare const REBOOT_VERSION = "0.25.0";
|
package/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const REBOOT_VERSION = "0.
|
|
1
|
+
export const REBOOT_VERSION = "0.25.0";
|