@aelionsdk/transaction 0.1.0-beta.1 → 1.1.0-rc.1
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 +27 -4
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,7 +1,30 @@
|
|
|
1
|
-
#
|
|
1
|
+
# `@aelionsdk/transaction`
|
|
2
2
|
|
|
3
|
-
Atomic
|
|
3
|
+
Atomic Project transactions, editing commands, inverses and bounded history for
|
|
4
|
+
AelionSDK.
|
|
4
5
|
|
|
5
|
-
Install
|
|
6
|
+
## Install
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
```bash
|
|
9
|
+
npm install @aelionsdk/transaction@next
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
`next` currently resolves to `1.1.0-rc.1`. Product applications should edit
|
|
13
|
+
through an `@aelionsdk/sdk` Session; direct use is intended for custom hosts and
|
|
14
|
+
engine integrations.
|
|
15
|
+
|
|
16
|
+
## Public surface
|
|
17
|
+
|
|
18
|
+
- production timeline editing commands;
|
|
19
|
+
- atomic transaction execution and inverse generation;
|
|
20
|
+
- undo/redo history;
|
|
21
|
+
- affected ranges and change sets;
|
|
22
|
+
- interactive transaction lifecycle.
|
|
23
|
+
|
|
24
|
+
Submit edits through transactions instead of mutating Project snapshots.
|
|
25
|
+
Interactive drags should commit or cancel explicitly so they occupy one history
|
|
26
|
+
entry and do not leave partial state.
|
|
27
|
+
|
|
28
|
+
See the [transaction guide](https://foyonaczy.github.io/AelionSDK/concepts/transactions/)
|
|
29
|
+
and [API reference](https://foyonaczy.github.io/AelionSDK/api/aelionsdk/transaction/overview/).
|
|
30
|
+
Licensed under MIT.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aelionsdk/transaction",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.1.0-rc.1",
|
|
4
4
|
"description": "Atomic project transactions, inverses and change sets for AelionSDK",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
"!dist/.tsbuildinfo"
|
|
28
28
|
],
|
|
29
29
|
"engines": {
|
|
30
|
-
"node": ">=
|
|
30
|
+
"node": ">=24 <25"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public",
|
|
34
34
|
"provenance": true
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@aelionsdk/core": "
|
|
38
|
-
"@aelionsdk/project-schema": "
|
|
37
|
+
"@aelionsdk/core": "1.1.0-rc.1",
|
|
38
|
+
"@aelionsdk/project-schema": "1.1.0-rc.1"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "tsc -b",
|