@holochain/client 0.18.0-rc.2 → 0.18.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/lib/hdk/dht-ops.d.ts +8 -8
- package/package.json +1 -1
package/lib/hdk/dht-ops.d.ts
CHANGED
|
@@ -91,14 +91,14 @@ export type ChainIntegrityWarrant = {
|
|
|
91
91
|
action: ActionHashAndSig;
|
|
92
92
|
/** Whether to run app or sys validation */
|
|
93
93
|
validation_type: ValidationType;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
94
|
+
};
|
|
95
|
+
} | {
|
|
96
|
+
/** Proof of chain fork. */
|
|
97
|
+
ChainFork: {
|
|
98
|
+
/** Author of the chain which is forked */
|
|
99
|
+
chain_author: AgentPubKey;
|
|
100
|
+
/** Two actions of the same seq number which prove the fork */
|
|
101
|
+
action_pair: [ActionHashAndSig, ActionHashAndSig];
|
|
102
102
|
};
|
|
103
103
|
};
|
|
104
104
|
/**
|
package/package.json
CHANGED