@keyhive/keyhive 0.0.0-alpha.55e → 0.0.0-alpha.56b
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 +1 -1
- package/pkg/keyhive_wasm.d.ts +3 -0
- package/pkg/keyhive_wasm_bg.js +92 -69
- package/pkg/keyhive_wasm_bg.wasm +0 -0
- package/pkg/keyhive_wasm_bg.wasm.d.ts +140 -137
- package/pkg/package.json +1 -1
- package/pkg-node/keyhive_wasm.d.ts +3 -0
- package/pkg-node/keyhive_wasm.js +92 -69
- package/pkg-node/keyhive_wasm_bg.wasm +0 -0
- package/pkg-node/keyhive_wasm_bg.wasm.d.ts +140 -137
- package/pkg-node/package.json +1 -1
- package/pkg-slim/keyhive_wasm.d.ts +143 -137
- package/pkg-slim/keyhive_wasm.js +92 -69
- package/pkg-slim/keyhive_wasm_bg.wasm +0 -0
- package/pkg-slim/keyhive_wasm_bg.wasm.base64.js +1 -1
- package/pkg-slim/keyhive_wasm_bg.wasm.d.ts +140 -137
- package/pkg-slim/package.json +1 -1
|
@@ -142,6 +142,7 @@ export class Document {
|
|
|
142
142
|
* Upcasts; to the JS-import type for [`JsDocument`].
|
|
143
143
|
*/
|
|
144
144
|
__wasm_refgen_toJsDocument(): Document;
|
|
145
|
+
members(): Promise<Capability[]>;
|
|
145
146
|
toAgent(): Agent;
|
|
146
147
|
toMembered(): Membered;
|
|
147
148
|
toPeer(): Peer;
|
|
@@ -306,6 +307,7 @@ export class Keyhive {
|
|
|
306
307
|
reachableDocs(): Promise<Summary[]>;
|
|
307
308
|
receiveContactCard(contact_card: ContactCard): Promise<Individual>;
|
|
308
309
|
revokeMember(to_revoke: Agent, retain_all_other_members: boolean, membered: Membered): Promise<SignedRevocation[]>;
|
|
310
|
+
revokedMembersForDoc(doc_id: DocumentId): Promise<Membership[]>;
|
|
309
311
|
rotatePrekey(prekey: ShareKey): Promise<ShareKey>;
|
|
310
312
|
stats(): Promise<Stats>;
|
|
311
313
|
toArchive(): Promise<Archive>;
|
|
@@ -393,6 +395,7 @@ export class SignedDelegation {
|
|
|
393
395
|
verify(): boolean;
|
|
394
396
|
readonly delegation: Delegation;
|
|
395
397
|
readonly signature: Uint8Array;
|
|
398
|
+
readonly subjectId: Identifier;
|
|
396
399
|
readonly verifyingKey: Uint8Array;
|
|
397
400
|
}
|
|
398
401
|
|
|
@@ -474,61 +477,48 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
474
477
|
|
|
475
478
|
export interface InitOutput {
|
|
476
479
|
readonly memory: WebAssembly.Memory;
|
|
477
|
-
readonly
|
|
478
|
-
readonly
|
|
479
|
-
readonly
|
|
480
|
-
readonly
|
|
481
|
-
readonly
|
|
482
|
-
readonly
|
|
483
|
-
readonly
|
|
484
|
-
readonly __wbg_delegation_free: (a: number, b: number) => void;
|
|
485
|
-
readonly __wbg_history_free: (a: number, b: number) => void;
|
|
486
|
-
readonly __wbg_membership_free: (a: number, b: number) => void;
|
|
487
|
-
readonly __wbg_revocation_free: (a: number, b: number) => void;
|
|
488
|
-
readonly __wbg_signeddelegation_free: (a: number, b: number) => void;
|
|
489
|
-
readonly __wbg_summary_free: (a: number, b: number) => void;
|
|
490
|
-
readonly capability_can: (a: number) => number;
|
|
491
|
-
readonly capability_proof: (a: number) => number;
|
|
492
|
-
readonly capability_who: (a: number) => number;
|
|
493
|
-
readonly changeid___wasm_refgen_toJsChangeId: (a: number) => number;
|
|
494
|
-
readonly changeid_bytes: (a: number) => [number, number];
|
|
495
|
-
readonly changeid_new: (a: number, b: number) => number;
|
|
496
|
-
readonly delegation_after: (a: number) => number;
|
|
497
|
-
readonly delegation_can: (a: number) => number;
|
|
498
|
-
readonly delegation_delegate: (a: number) => number;
|
|
499
|
-
readonly delegation_proof: (a: number) => number;
|
|
500
|
-
readonly history_contentRefs: (a: number) => [number, number];
|
|
501
|
-
readonly history_delegations: (a: number) => [number, number];
|
|
502
|
-
readonly history_revocations: (a: number) => [number, number];
|
|
503
|
-
readonly membership_can: (a: number) => number;
|
|
504
|
-
readonly membership_who: (a: number) => number;
|
|
505
|
-
readonly revocation_after: (a: number) => number;
|
|
506
|
-
readonly revocation_proof: (a: number) => number;
|
|
507
|
-
readonly revocation_revoked: (a: number) => number;
|
|
508
|
-
readonly revocation_subject_id: (a: number) => number;
|
|
480
|
+
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
481
|
+
readonly document___wasm_refgen_toJsDocument: (a: number) => number;
|
|
482
|
+
readonly document_doc_id: (a: number) => number;
|
|
483
|
+
readonly document_members: (a: number) => any;
|
|
484
|
+
readonly document_toAgent: (a: number) => number;
|
|
485
|
+
readonly document_toMembered: (a: number) => number;
|
|
486
|
+
readonly document_toPeer: (a: number) => number;
|
|
509
487
|
readonly setPanicHook: () => void;
|
|
510
|
-
readonly
|
|
511
|
-
readonly
|
|
512
|
-
readonly
|
|
513
|
-
readonly signeddelegation_verifyingKey: (a: number) => [number, number];
|
|
514
|
-
readonly summary_access: (a: number) => number;
|
|
515
|
-
readonly summary_doc: (a: number) => number;
|
|
516
|
-
readonly __wbg_ciphertextstore_free: (a: number, b: number) => void;
|
|
517
|
-
readonly __wbg_invocation_free: (a: number, b: number) => void;
|
|
518
|
-
readonly ciphertextstore_newFromWebStorage: (a: any) => number;
|
|
519
|
-
readonly ciphertextstore_newInMemory: () => number;
|
|
488
|
+
readonly document_id: (a: number) => number;
|
|
489
|
+
readonly __wbg_access_free: (a: number, b: number) => void;
|
|
490
|
+
readonly __wbg_archive_free: (a: number, b: number) => void;
|
|
520
491
|
readonly __wbg_cannotparseidentifier_free: (a: number, b: number) => void;
|
|
521
|
-
readonly
|
|
492
|
+
readonly __wbg_contactcard_free: (a: number, b: number) => void;
|
|
493
|
+
readonly __wbg_groupid_free: (a: number, b: number) => void;
|
|
522
494
|
readonly __wbg_identifier_free: (a: number, b: number) => void;
|
|
495
|
+
readonly __wbg_membership_free: (a: number, b: number) => void;
|
|
496
|
+
readonly __wbg_signed_free: (a: number, b: number) => void;
|
|
523
497
|
readonly __wbg_stats_free: (a: number, b: number) => void;
|
|
524
|
-
readonly
|
|
525
|
-
readonly
|
|
526
|
-
readonly
|
|
527
|
-
readonly
|
|
528
|
-
readonly
|
|
498
|
+
readonly access_toString: (a: number) => [number, number];
|
|
499
|
+
readonly access_tryFromString: (a: number, b: number) => number;
|
|
500
|
+
readonly archive_toBytes: (a: number) => [number, number, number, number];
|
|
501
|
+
readonly archive_tryToKeyhive: (a: number, b: number, c: number, d: any) => any;
|
|
502
|
+
readonly archive_try_from_bytes: (a: number, b: number) => [number, number, number];
|
|
503
|
+
readonly contactcard_fromJson: (a: number, b: number) => [number, number, number];
|
|
504
|
+
readonly contactcard_id: (a: number) => number;
|
|
505
|
+
readonly contactcard_individualId: (a: number) => number;
|
|
506
|
+
readonly contactcard_op: (a: number) => number;
|
|
507
|
+
readonly contactcard_shareKey: (a: number) => number;
|
|
508
|
+
readonly contactcard_signature: (a: number) => [number, number];
|
|
509
|
+
readonly contactcard_toJson: (a: number) => [number, number, number, number];
|
|
510
|
+
readonly groupid_toString: (a: number) => [number, number];
|
|
529
511
|
readonly identifier_new: (a: number, b: number) => [number, number, number];
|
|
530
512
|
readonly identifier_publicId: () => number;
|
|
531
513
|
readonly identifier_toBytes: (a: number) => [number, number];
|
|
514
|
+
readonly membership_can: (a: number) => number;
|
|
515
|
+
readonly membership_who: (a: number) => number;
|
|
516
|
+
readonly signed_fromBytes: (a: number, b: number) => [number, number, number];
|
|
517
|
+
readonly signed_payload: (a: number) => [number, number];
|
|
518
|
+
readonly signed_signature: (a: number) => [number, number];
|
|
519
|
+
readonly signed_toBytes: (a: number) => [number, number, number, number];
|
|
520
|
+
readonly signed_verify: (a: number) => number;
|
|
521
|
+
readonly signed_verifyingKey: (a: number) => [number, number];
|
|
532
522
|
readonly stats_activePrekeyCount: (a: number) => bigint;
|
|
533
523
|
readonly stats_cgkaOperations: (a: number) => bigint;
|
|
534
524
|
readonly stats_delegations: (a: number) => bigint;
|
|
@@ -550,79 +540,13 @@ export interface InitOutput {
|
|
|
550
540
|
readonly stats_revocations: (a: number) => bigint;
|
|
551
541
|
readonly stats_totalOps: (a: number) => bigint;
|
|
552
542
|
readonly stats_totalPendingOps: (a: number) => bigint;
|
|
553
|
-
readonly encrypted_toBytes: (a: number) => [number, number];
|
|
554
|
-
readonly __wbg_doccontentrefs_free: (a: number, b: number) => void;
|
|
555
|
-
readonly __wbg_signedrevocation_free: (a: number, b: number) => void;
|
|
556
|
-
readonly doccontentrefs_addChangeId: (a: number, b: number) => any;
|
|
557
|
-
readonly doccontentrefs_change_hashes: (a: number) => any;
|
|
558
|
-
readonly doccontentrefs_docId: (a: number) => number;
|
|
559
|
-
readonly doccontentrefs_new: (a: number, b: number, c: number) => [number, number, number];
|
|
560
|
-
readonly signedrevocation_delegation: (a: number) => number;
|
|
561
|
-
readonly signedrevocation_signature: (a: number) => [number, number];
|
|
562
|
-
readonly signedrevocation_verify: (a: number) => number;
|
|
563
|
-
readonly signedrevocation_verifyingKey: (a: number) => [number, number];
|
|
564
|
-
readonly __wbg_access_free: (a: number, b: number) => void;
|
|
565
|
-
readonly __wbg_cannotparseed25519signingkey_free: (a: number, b: number) => void;
|
|
566
|
-
readonly __wbg_cgkaoperation_free: (a: number, b: number) => void;
|
|
567
|
-
readonly __wbg_contactcard_free: (a: number, b: number) => void;
|
|
568
|
-
readonly __wbg_documentid_free: (a: number, b: number) => void;
|
|
569
|
-
readonly __wbg_event_free: (a: number, b: number) => void;
|
|
570
|
-
readonly __wbg_generatewebcryptoerror_free: (a: number, b: number) => void;
|
|
571
|
-
readonly __wbg_groupid_free: (a: number, b: number) => void;
|
|
572
|
-
readonly __wbg_signed_free: (a: number, b: number) => void;
|
|
573
|
-
readonly __wbg_signedcgkaoperation_free: (a: number, b: number) => void;
|
|
574
|
-
readonly __wbg_signer_free: (a: number, b: number) => void;
|
|
575
|
-
readonly access_toString: (a: number) => [number, number];
|
|
576
|
-
readonly access_tryFromString: (a: number, b: number) => number;
|
|
577
|
-
readonly cgkaoperation_variant: (a: number) => [number, number];
|
|
578
|
-
readonly contactcard_fromJson: (a: number, b: number) => [number, number, number];
|
|
579
|
-
readonly contactcard_id: (a: number) => number;
|
|
580
|
-
readonly contactcard_op: (a: number) => number;
|
|
581
|
-
readonly contactcard_shareKey: (a: number) => number;
|
|
582
|
-
readonly contactcard_signature: (a: number) => [number, number];
|
|
583
|
-
readonly contactcard_toJson: (a: number) => [number, number, number, number];
|
|
584
|
-
readonly documentid_new: (a: number, b: number) => [number, number, number];
|
|
585
|
-
readonly documentid_toBytes: (a: number) => [number, number];
|
|
586
|
-
readonly documentid_toJsValue: (a: number) => any;
|
|
587
|
-
readonly documentid_toString: (a: number) => [number, number];
|
|
588
|
-
readonly event_isDelegated: (a: number) => number;
|
|
589
|
-
readonly event_isRevoked: (a: number) => number;
|
|
590
|
-
readonly event_toBytes: (a: number) => [number, number, number, number];
|
|
591
|
-
readonly event_tryIntoSignedDelegation: (a: number) => number;
|
|
592
|
-
readonly event_tryIntoSignedRevocation: (a: number) => number;
|
|
593
|
-
readonly event_variant: (a: number) => [number, number];
|
|
594
|
-
readonly generatewebcryptoerror_message: (a: number) => [number, number];
|
|
595
|
-
readonly groupid_toString: (a: number) => [number, number];
|
|
596
|
-
readonly signed_fromBytes: (a: number, b: number) => [number, number, number];
|
|
597
|
-
readonly signed_payload: (a: number) => [number, number];
|
|
598
|
-
readonly signed_signature: (a: number) => [number, number];
|
|
599
|
-
readonly signed_toBytes: (a: number) => [number, number, number, number];
|
|
600
|
-
readonly signed_verify: (a: number) => number;
|
|
601
|
-
readonly signed_verifyingKey: (a: number) => [number, number];
|
|
602
|
-
readonly signedcgkaoperation_delegation: (a: number) => number;
|
|
603
|
-
readonly signedcgkaoperation_signature: (a: number) => [number, number];
|
|
604
|
-
readonly signedcgkaoperation_verify: (a: number) => number;
|
|
605
|
-
readonly signedcgkaoperation_verifyingKey: (a: number) => [number, number];
|
|
606
|
-
readonly signer_clone: (a: number) => number;
|
|
607
|
-
readonly signer_generate: () => any;
|
|
608
|
-
readonly signer_generateMemory: () => number;
|
|
609
|
-
readonly signer_generateWebCrypto: () => any;
|
|
610
|
-
readonly signer_memorySignerFromBytes: (a: number, b: number) => [number, number, number];
|
|
611
|
-
readonly signer_trySign: (a: number, b: number, c: number) => any;
|
|
612
|
-
readonly signer_variant: (a: number) => [number, number];
|
|
613
|
-
readonly signer_verifyingKey: (a: number) => [number, number];
|
|
614
|
-
readonly signer_webCryptoSigner: (a: any) => any;
|
|
615
|
-
readonly contactcard_individualId: (a: number) => number;
|
|
616
543
|
readonly __wbg_agent_free: (a: number, b: number) => void;
|
|
617
544
|
readonly __wbg_allagentevents_free: (a: number, b: number) => void;
|
|
618
|
-
readonly
|
|
619
|
-
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
620
|
-
readonly __wbg_group_free: (a: number, b: number) => void;
|
|
545
|
+
readonly __wbg_ciphertextstore_free: (a: number, b: number) => void;
|
|
621
546
|
readonly __wbg_individual_free: (a: number, b: number) => void;
|
|
622
|
-
readonly
|
|
547
|
+
readonly __wbg_invocation_free: (a: number, b: number) => void;
|
|
623
548
|
readonly __wbg_keyhive_free: (a: number, b: number) => void;
|
|
624
549
|
readonly __wbg_peer_free: (a: number, b: number) => void;
|
|
625
|
-
readonly __wbg_sharekey_free: (a: number, b: number) => void;
|
|
626
550
|
readonly agent_id: (a: number) => number;
|
|
627
551
|
readonly agent_isDocument: (a: number) => number;
|
|
628
552
|
readonly agent_isGroup: (a: number) => number;
|
|
@@ -637,23 +561,12 @@ export interface InitOutput {
|
|
|
637
561
|
readonly allagentevents_events: (a: number) => any;
|
|
638
562
|
readonly allagentevents_membershipSources: (a: number) => any;
|
|
639
563
|
readonly allagentevents_prekeySources: (a: number) => any;
|
|
640
|
-
readonly
|
|
641
|
-
readonly
|
|
642
|
-
readonly
|
|
643
|
-
readonly document___wasm_refgen_toJsDocument: (a: number) => number;
|
|
644
|
-
readonly document_doc_id: (a: number) => number;
|
|
645
|
-
readonly document_toAgent: (a: number) => number;
|
|
646
|
-
readonly document_toMembered: (a: number) => number;
|
|
647
|
-
readonly document_toPeer: (a: number) => number;
|
|
648
|
-
readonly group___wasm_refgen_toJsGroup: (a: number) => number;
|
|
649
|
-
readonly group_members: (a: number) => any;
|
|
650
|
-
readonly group_toAgent: (a: number) => number;
|
|
651
|
-
readonly group_toMembered: (a: number) => number;
|
|
652
|
-
readonly group_toPeer: (a: number) => number;
|
|
564
|
+
readonly ciphertextstore_newFromWebStorage: (a: any) => number;
|
|
565
|
+
readonly ciphertextstore_newInMemory: () => number;
|
|
566
|
+
readonly individual_id: (a: number) => number;
|
|
653
567
|
readonly individual_pickPrekey: (a: number, b: number) => any;
|
|
654
568
|
readonly individual_toAgent: (a: number) => number;
|
|
655
569
|
readonly individual_toPeer: (a: number) => number;
|
|
656
|
-
readonly individualid_bytes: (a: number) => [number, number];
|
|
657
570
|
readonly keyhive_accessForDoc: (a: number, b: number, c: number) => any;
|
|
658
571
|
readonly keyhive_addMember: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
659
572
|
readonly keyhive_allAgentEvents: (a: number) => any;
|
|
@@ -684,6 +597,7 @@ export interface InitOutput {
|
|
|
684
597
|
readonly keyhive_reachableDocs: (a: number) => any;
|
|
685
598
|
readonly keyhive_receiveContactCard: (a: number, b: number) => any;
|
|
686
599
|
readonly keyhive_revokeMember: (a: number, b: number, c: number, d: number) => any;
|
|
600
|
+
readonly keyhive_revokedMembersForDoc: (a: number, b: number) => any;
|
|
687
601
|
readonly keyhive_rotatePrekey: (a: number, b: number) => any;
|
|
688
602
|
readonly keyhive_stats: (a: number) => any;
|
|
689
603
|
readonly keyhive_toArchive: (a: number) => any;
|
|
@@ -697,21 +611,113 @@ export interface InitOutput {
|
|
|
697
611
|
readonly peer_isGroup: (a: number) => number;
|
|
698
612
|
readonly peer_isIndividual: (a: number) => number;
|
|
699
613
|
readonly peer_toString: (a: number) => [number, number];
|
|
700
|
-
readonly document_id: (a: number) => number;
|
|
701
|
-
readonly group_groupId: (a: number) => number;
|
|
702
|
-
readonly group_id: (a: number) => number;
|
|
703
|
-
readonly individual_id: (a: number) => number;
|
|
704
614
|
readonly individual_individualId: (a: number) => number;
|
|
705
615
|
readonly peer_id: (a: number) => number;
|
|
706
|
-
readonly
|
|
707
|
-
readonly
|
|
708
|
-
readonly
|
|
616
|
+
readonly __wbg_cannotparseed25519signingkey_free: (a: number, b: number) => void;
|
|
617
|
+
readonly __wbg_cgkaoperation_free: (a: number, b: number) => void;
|
|
618
|
+
readonly __wbg_documentid_free: (a: number, b: number) => void;
|
|
619
|
+
readonly __wbg_event_free: (a: number, b: number) => void;
|
|
620
|
+
readonly __wbg_generatewebcryptoerror_free: (a: number, b: number) => void;
|
|
621
|
+
readonly __wbg_signer_free: (a: number, b: number) => void;
|
|
622
|
+
readonly cgkaoperation_variant: (a: number) => [number, number];
|
|
623
|
+
readonly documentid_new: (a: number, b: number) => [number, number, number];
|
|
624
|
+
readonly documentid_toBytes: (a: number) => [number, number];
|
|
625
|
+
readonly documentid_toJsValue: (a: number) => any;
|
|
626
|
+
readonly documentid_toString: (a: number) => [number, number];
|
|
627
|
+
readonly event_isDelegated: (a: number) => number;
|
|
628
|
+
readonly event_isRevoked: (a: number) => number;
|
|
629
|
+
readonly event_toBytes: (a: number) => [number, number, number, number];
|
|
630
|
+
readonly event_tryIntoSignedDelegation: (a: number) => number;
|
|
631
|
+
readonly event_tryIntoSignedRevocation: (a: number) => number;
|
|
632
|
+
readonly event_variant: (a: number) => [number, number];
|
|
633
|
+
readonly generatewebcryptoerror_message: (a: number) => [number, number];
|
|
634
|
+
readonly signer_clone: (a: number) => number;
|
|
635
|
+
readonly signer_generate: () => any;
|
|
636
|
+
readonly signer_generateMemory: () => number;
|
|
637
|
+
readonly signer_generateWebCrypto: () => any;
|
|
638
|
+
readonly signer_memorySignerFromBytes: (a: number, b: number) => [number, number, number];
|
|
639
|
+
readonly signer_trySign: (a: number, b: number, c: number) => any;
|
|
640
|
+
readonly signer_variant: (a: number) => [number, number];
|
|
641
|
+
readonly signer_verifyingKey: (a: number) => [number, number];
|
|
642
|
+
readonly signer_webCryptoSigner: (a: any) => any;
|
|
643
|
+
readonly __wbg_signedcgkaoperation_free: (a: number, b: number) => void;
|
|
644
|
+
readonly signedcgkaoperation_delegation: (a: number) => number;
|
|
645
|
+
readonly signedcgkaoperation_signature: (a: number) => [number, number];
|
|
646
|
+
readonly signedcgkaoperation_verify: (a: number) => number;
|
|
647
|
+
readonly signedcgkaoperation_verifyingKey: (a: number) => [number, number];
|
|
648
|
+
readonly __wbg_capability_free: (a: number, b: number) => void;
|
|
649
|
+
readonly __wbg_group_free: (a: number, b: number) => void;
|
|
650
|
+
readonly __wbg_membered_free: (a: number, b: number) => void;
|
|
651
|
+
readonly __wbg_revocation_free: (a: number, b: number) => void;
|
|
652
|
+
readonly capability_can: (a: number) => number;
|
|
653
|
+
readonly capability_proof: (a: number) => number;
|
|
654
|
+
readonly capability_who: (a: number) => number;
|
|
655
|
+
readonly group___wasm_refgen_toJsGroup: (a: number) => number;
|
|
656
|
+
readonly group_groupId: (a: number) => number;
|
|
657
|
+
readonly group_members: (a: number) => any;
|
|
658
|
+
readonly group_toAgent: (a: number) => number;
|
|
659
|
+
readonly group_toMembered: (a: number) => number;
|
|
660
|
+
readonly group_toPeer: (a: number) => number;
|
|
661
|
+
readonly revocation_after: (a: number) => number;
|
|
662
|
+
readonly revocation_proof: (a: number) => number;
|
|
663
|
+
readonly revocation_revoked: (a: number) => number;
|
|
664
|
+
readonly revocation_subject_id: (a: number) => number;
|
|
665
|
+
readonly group_id: (a: number) => number;
|
|
666
|
+
readonly __wbg_doccontentrefs_free: (a: number, b: number) => void;
|
|
667
|
+
readonly __wbg_encrypted_free: (a: number, b: number) => void;
|
|
668
|
+
readonly __wbg_individualid_free: (a: number, b: number) => void;
|
|
669
|
+
readonly __wbg_signeddelegation_free: (a: number, b: number) => void;
|
|
670
|
+
readonly __wbg_signedrevocation_free: (a: number, b: number) => void;
|
|
671
|
+
readonly doccontentrefs_addChangeId: (a: number, b: number) => any;
|
|
672
|
+
readonly doccontentrefs_change_hashes: (a: number) => any;
|
|
673
|
+
readonly doccontentrefs_docId: (a: number) => number;
|
|
674
|
+
readonly doccontentrefs_new: (a: number, b: number, c: number) => [number, number, number];
|
|
675
|
+
readonly encrypted_ciphertext: (a: number) => [number, number];
|
|
676
|
+
readonly encrypted_content_ref: (a: number) => [number, number];
|
|
677
|
+
readonly encrypted_nonce: (a: number) => [number, number];
|
|
678
|
+
readonly encrypted_pcs_key_hash: (a: number) => [number, number];
|
|
679
|
+
readonly encrypted_pred_refs: (a: number) => [number, number];
|
|
680
|
+
readonly individualid_bytes: (a: number) => [number, number];
|
|
681
|
+
readonly signeddelegation_delegation: (a: number) => number;
|
|
682
|
+
readonly signeddelegation_signature: (a: number) => [number, number];
|
|
683
|
+
readonly signeddelegation_subjectId: (a: number) => number;
|
|
684
|
+
readonly signeddelegation_verify: (a: number) => number;
|
|
685
|
+
readonly signeddelegation_verifyingKey: (a: number) => [number, number];
|
|
686
|
+
readonly signedrevocation_delegation: (a: number) => number;
|
|
687
|
+
readonly signedrevocation_signature: (a: number) => [number, number];
|
|
688
|
+
readonly signedrevocation_verify: (a: number) => number;
|
|
689
|
+
readonly signedrevocation_verifyingKey: (a: number) => [number, number];
|
|
690
|
+
readonly encrypted_toBytes: (a: number) => [number, number];
|
|
691
|
+
readonly __wbg_changeid_free: (a: number, b: number) => void;
|
|
692
|
+
readonly __wbg_delegation_free: (a: number, b: number) => void;
|
|
693
|
+
readonly __wbg_encryptedcontentwithupdate_free: (a: number, b: number) => void;
|
|
694
|
+
readonly __wbg_sharekey_free: (a: number, b: number) => void;
|
|
695
|
+
readonly __wbg_signedinvocation_free: (a: number, b: number) => void;
|
|
696
|
+
readonly __wbg_summary_free: (a: number, b: number) => void;
|
|
697
|
+
readonly changeid___wasm_refgen_toJsChangeId: (a: number) => number;
|
|
698
|
+
readonly changeid_bytes: (a: number) => [number, number];
|
|
699
|
+
readonly changeid_new: (a: number, b: number) => number;
|
|
700
|
+
readonly delegation_after: (a: number) => number;
|
|
701
|
+
readonly delegation_can: (a: number) => number;
|
|
702
|
+
readonly delegation_delegate: (a: number) => number;
|
|
703
|
+
readonly delegation_proof: (a: number) => number;
|
|
704
|
+
readonly encryptedcontentwithupdate_encrypted_content: (a: number) => number;
|
|
705
|
+
readonly encryptedcontentwithupdate_update_op: (a: number) => number;
|
|
706
|
+
readonly summary_access: (a: number) => number;
|
|
707
|
+
readonly summary_doc: (a: number) => number;
|
|
708
|
+
readonly __wbg_history_free: (a: number, b: number) => void;
|
|
709
|
+
readonly history_contentRefs: (a: number) => [number, number];
|
|
710
|
+
readonly history_delegations: (a: number) => [number, number];
|
|
711
|
+
readonly history_revocations: (a: number) => [number, number];
|
|
712
|
+
readonly wasm_bindgen__convert__closures_____invoke__h3280982d348b8ce7: (a: number, b: number, c: any) => [number, number];
|
|
713
|
+
readonly wasm_bindgen__convert__closures_____invoke__hed1b57a71ca47f43: (a: number, b: number, c: any, d: any) => void;
|
|
709
714
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
710
715
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
711
716
|
readonly __wbindgen_exn_store: (a: number) => void;
|
|
712
717
|
readonly __externref_table_alloc: () => number;
|
|
713
718
|
readonly __wbindgen_externrefs: WebAssembly.Table;
|
|
714
719
|
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
720
|
+
readonly __wbindgen_destroy_closure: (a: number, b: number) => void;
|
|
715
721
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
716
722
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
717
723
|
readonly __wbindgen_start: () => void;
|