openxiangda 2.0.0-alpha.85 → 2.0.0-alpha.86
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openxiangda",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.86",
|
|
4
4
|
"description": "Unified OpenXiangda 2.0 CLI, SDK, React runtime, NestJS integration and AI skill distribution.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -49,12 +49,12 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"dayjs": "1.11.18",
|
|
51
51
|
"docx-preview": "0.3.7",
|
|
52
|
-
"openxiangda-cli": "2.0.0-alpha.
|
|
52
|
+
"openxiangda-cli": "2.0.0-alpha.163",
|
|
53
53
|
"openxiangda-contracts": "2.0.0-alpha.82",
|
|
54
54
|
"openxiangda-devkit-core": "2.0.0-alpha.105",
|
|
55
55
|
"openxiangda-mcp": "2.0.0-alpha.105",
|
|
56
|
-
"openxiangda-nest": "2.0.0-alpha.
|
|
57
|
-
"openxiangda-skill-kit": "2.0.0-alpha.
|
|
56
|
+
"openxiangda-nest": "2.0.0-alpha.94",
|
|
57
|
+
"openxiangda-skill-kit": "2.0.0-alpha.129",
|
|
58
58
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
@@ -10,14 +10,14 @@ Treat requirement discovery, architecture, authorization, development, testing a
|
|
|
10
10
|
Before a workspace exists, use this Skill's exact npm version:
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
-
pnpm dlx openxiangda@2.0.0-alpha.
|
|
14
|
-
pnpm dlx openxiangda@2.0.0-alpha.
|
|
13
|
+
pnpm dlx openxiangda@2.0.0-alpha.86 login --base-url <platform>
|
|
14
|
+
pnpm dlx openxiangda@2.0.0-alpha.86 create <directory>
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
Inside an application, use only its locked executable through `pnpm openxiangda`. Never invoke a bare global `openxiangda`, because that executable may belong to stable 1.x. Moving tags such as `latest` and `alpha` are forbidden. To install or refresh this same Skill from the package, run:
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
pnpm dlx openxiangda@2.0.0-alpha.
|
|
20
|
+
pnpm dlx openxiangda@2.0.0-alpha.86 skill install --force
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
Use this order:
|
|
@@ -248,6 +248,17 @@ caller creates it once together with the idempotency key and reuses both on
|
|
|
248
248
|
every retry. Platform-created record timestamps remain the source of truth
|
|
249
249
|
when no separate business time is required.
|
|
250
250
|
|
|
251
|
+
The Nest SDK automatically carries the platform Gateway `x-request-id` from a
|
|
252
|
+
verified Named Action into its nested Data API, directory, workflow, and
|
|
253
|
+
notification calls. Do not generate or replace that header in application
|
|
254
|
+
code. If a strict authorization projection is temporarily unavailable, keep
|
|
255
|
+
the complete command and `idempotencyKey` unchanged when retrying after the
|
|
256
|
+
platform reports recovery: the Native transaction receipt returns the already
|
|
257
|
+
committed items with `replayed: true` and does not repeat mutations or events.
|
|
258
|
+
`OPENXIANGDA_AUTHORIZATION_PROJECTION_NOT_READY` is a fail-closed, retryable
|
|
259
|
+
platform readiness response; it is not evidence that an earlier idempotent
|
|
260
|
+
business transaction was rolled back. Diagnose it with the returned request id.
|
|
261
|
+
|
|
251
262
|
When declaring a lower-level transaction directly, use only the current
|
|
252
263
|
contract:
|
|
253
264
|
|