@automerge/automerge
Advanced tools
Comparing version 2.0.1 to 2.0.2-alpha.1
@@ -29,2 +29,3 @@ "use strict"; | ||
Object.defineProperty(exports, "Text", { enumerable: true, get: function () { return text_2.Text; } }); | ||
const SyncStateSymbol = Symbol("_syncstate"); | ||
const low_level_1 = require("./low_level"); | ||
@@ -31,0 +32,0 @@ const raw_string_1 = require("./raw_string"); |
@@ -20,2 +20,3 @@ var __rest = (this && this.__rest) || function (s, e) { | ||
export { Text } from "./text"; | ||
const SyncStateSymbol = Symbol("_syncstate"); | ||
import { ApiHandler, UseApi } from "./low_level"; | ||
@@ -22,0 +23,0 @@ import { RawString } from "./raw_string"; |
@@ -6,4 +6,13 @@ /** @hidden **/ | ||
export { Text } from "./text"; | ||
import type { API, Actor as ActorId, Prop, ObjID, Change, DecodedChange, Heads, MaterializeValue, JsSyncState as SyncState, SyncMessage, DecodedSyncMessage } from "@automerge/automerge-wasm"; | ||
import type { API as WasmAPI, Actor as ActorId, Prop, ObjID, Change, DecodedChange, Heads, MaterializeValue, JsSyncState, SyncMessage, DecodedSyncMessage } from "@automerge/automerge-wasm"; | ||
export type { PutPatch, DelPatch, SpliceTextPatch, InsertPatch, IncPatch, SyncMessage, } from "@automerge/automerge-wasm"; | ||
/** @hidden **/ | ||
type API = WasmAPI; | ||
declare const SyncStateSymbol: unique symbol; | ||
/** | ||
* An opaque type tracking the state of sync with a remote peer | ||
*/ | ||
type SyncState = JsSyncState & { | ||
_opaque: typeof SyncStateSymbol; | ||
}; | ||
import { type ChangeToEncode } from "./low_level"; | ||
@@ -10,0 +19,0 @@ import { Automerge } from "@automerge/automerge-wasm"; |
@@ -7,3 +7,3 @@ { | ||
], | ||
"version": "2.0.1", | ||
"version": "2.0.2-alpha.1", | ||
"description": "Javascript implementation of automerge, backed by @automerge/automerge-wasm", | ||
@@ -51,5 +51,5 @@ "homepage": "https://github.com/automerge/automerge-rs/tree/main/wrappers/javascript", | ||
"dependencies": { | ||
"@automerge/automerge-wasm": "0.1.23", | ||
"@automerge/automerge-wasm": "0.1.24", | ||
"uuid": "^9.0.0" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
226733
6077
2
+ Added@automerge/automerge-wasm@0.1.24(transitive)
- Removed@automerge/automerge-wasm@0.1.23(transitive)