@holochain/client 0.20.0-dev.2 → 0.20.0-rc.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 +9 -30
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +1 -1
package/lib/api/admin/types.d.ts
CHANGED
|
@@ -344,25 +344,6 @@ export interface CellProvisioning {
|
|
|
344
344
|
strategy: CellProvisioningStrategy;
|
|
345
345
|
deferred?: boolean;
|
|
346
346
|
}
|
|
347
|
-
/**
|
|
348
|
-
* @public
|
|
349
|
-
*/
|
|
350
|
-
export type Location = {
|
|
351
|
-
/**
|
|
352
|
-
* Expect file to be part of this bundle
|
|
353
|
-
*/
|
|
354
|
-
bundled: string;
|
|
355
|
-
} | {
|
|
356
|
-
/**
|
|
357
|
-
* Get file from local filesystem (not bundled)
|
|
358
|
-
*/
|
|
359
|
-
path: string;
|
|
360
|
-
} | {
|
|
361
|
-
/**
|
|
362
|
-
* Get file from URL
|
|
363
|
-
*/
|
|
364
|
-
url: string;
|
|
365
|
-
};
|
|
366
347
|
/**
|
|
367
348
|
* @public
|
|
368
349
|
*/
|
|
@@ -379,10 +360,11 @@ export type DnaVersionFlexible = {
|
|
|
379
360
|
* @public
|
|
380
361
|
*/
|
|
381
362
|
export type AppRoleDnaManifest = {
|
|
382
|
-
|
|
363
|
+
path?: string;
|
|
383
364
|
modifiers?: Partial<DnaModifiers>;
|
|
384
|
-
|
|
385
|
-
|
|
365
|
+
installed_hash?: DnaHash;
|
|
366
|
+
clone_limit?: number;
|
|
367
|
+
};
|
|
386
368
|
/**
|
|
387
369
|
* @public
|
|
388
370
|
*/
|
|
@@ -395,7 +377,7 @@ export type AppRoleManifest = {
|
|
|
395
377
|
* @public
|
|
396
378
|
*/
|
|
397
379
|
export type AppManifest = {
|
|
398
|
-
manifest_version:
|
|
380
|
+
manifest_version: "0";
|
|
399
381
|
name: string;
|
|
400
382
|
description?: string;
|
|
401
383
|
roles: Array<AppRoleManifest>;
|
|
@@ -662,10 +644,6 @@ export type InstallAppDnaPayload = {
|
|
|
662
644
|
role_name: RoleName;
|
|
663
645
|
membrane_proof?: MembraneProof;
|
|
664
646
|
};
|
|
665
|
-
/**
|
|
666
|
-
* @public
|
|
667
|
-
*/
|
|
668
|
-
export type ZomeLocation = Location;
|
|
669
647
|
/**
|
|
670
648
|
* @public
|
|
671
649
|
*/
|
|
@@ -677,9 +655,10 @@ export interface ZomeDependency {
|
|
|
677
655
|
*/
|
|
678
656
|
export type ZomeManifest = {
|
|
679
657
|
name: string;
|
|
658
|
+
path: string;
|
|
680
659
|
hash?: string;
|
|
681
660
|
dependencies?: ZomeDependency[];
|
|
682
|
-
}
|
|
661
|
+
};
|
|
683
662
|
/**
|
|
684
663
|
* @public
|
|
685
664
|
*/
|
|
@@ -708,9 +687,9 @@ export type CoordinatorSource = {
|
|
|
708
687
|
*/
|
|
709
688
|
export type DnaManifest = {
|
|
710
689
|
/**
|
|
711
|
-
*
|
|
690
|
+
* No finalized version yet, hence only "0" is supported.
|
|
712
691
|
*/
|
|
713
|
-
manifest_version:
|
|
692
|
+
manifest_version: "0";
|
|
714
693
|
/**
|
|
715
694
|
* The friendly "name" of a Holochain DNA.
|
|
716
695
|
*/
|
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED