openxiangda-skill-kit 2.0.0-alpha.128 → 2.0.0-alpha.129
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
|
@@ -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
|
|