@holochain/client 0.7.0 → 0.8.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/api/admin/types.d.ts +5 -5
- package/package.json +1 -1
package/lib/api/admin/types.d.ts
CHANGED
|
@@ -77,7 +77,7 @@ export declare type DumpFullStateResponse = FullStateDump;
|
|
|
77
77
|
export declare type GenerateAgentPubKeyRequest = void;
|
|
78
78
|
export declare type GenerateAgentPubKeyResponse = AgentPubKey;
|
|
79
79
|
export declare type RegisterDnaRequest = {
|
|
80
|
-
|
|
80
|
+
network_seed?: string;
|
|
81
81
|
properties?: DnaProperties;
|
|
82
82
|
} & DnaSource;
|
|
83
83
|
export declare type RegisterDnaResponse = HoloHash;
|
|
@@ -133,7 +133,7 @@ export declare type DnaVersionFlexible = {
|
|
|
133
133
|
export declare type AppRoleDnaManifest = {
|
|
134
134
|
location?: Location;
|
|
135
135
|
properties?: DnaProperties;
|
|
136
|
-
|
|
136
|
+
network_seed?: NetworkSeed;
|
|
137
137
|
version?: DnaVersionFlexible;
|
|
138
138
|
};
|
|
139
139
|
export declare type AppRoleManifest = {
|
|
@@ -156,14 +156,14 @@ export declare type AppBundleSource = {
|
|
|
156
156
|
} | {
|
|
157
157
|
path: string;
|
|
158
158
|
};
|
|
159
|
-
export declare type
|
|
159
|
+
export declare type NetworkSeed = string;
|
|
160
160
|
export declare type InstallAppBundleRequest = {
|
|
161
161
|
agent_key: AgentPubKey;
|
|
162
162
|
installed_app_id?: InstalledAppId;
|
|
163
163
|
membrane_proofs: {
|
|
164
164
|
[key: string]: MembraneProof;
|
|
165
165
|
};
|
|
166
|
-
|
|
166
|
+
network_seed?: NetworkSeed;
|
|
167
167
|
} & AppBundleSource;
|
|
168
168
|
export declare type InstallAppBundleResponse = InstalledAppInfo;
|
|
169
169
|
export declare type ListDnasRequest = void;
|
|
@@ -236,7 +236,7 @@ export declare type ZomeManifest = {
|
|
|
236
236
|
export declare type DnaManifest = {
|
|
237
237
|
manifest_version: string;
|
|
238
238
|
name: string;
|
|
239
|
-
|
|
239
|
+
network_seed?: NetworkSeed;
|
|
240
240
|
properties?: DnaProperties;
|
|
241
241
|
zomes: Array<ZomeManifest>;
|
|
242
242
|
};
|
package/package.json
CHANGED