@verana-labs/vs-agent-model 1.10.0-dev.1 → 1.10.0-dev.6

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.
Files changed (2) hide show
  1. package/build/types.d.ts +12 -0
  2. package/package.json +1 -1
package/build/types.d.ts CHANGED
@@ -32,6 +32,14 @@ export interface CredentialIssuanceResponse {
32
32
  jsonSchemaCredentialId?: string;
33
33
  credential?: Record<string, unknown>;
34
34
  }
35
+ export interface CredentialRevocationRequest {
36
+ format: 'jsonld' | 'anoncreds';
37
+ anoncredsRevocationRegistryDefinitionId?: string;
38
+ anoncredsRevocationRegistryIndex?: number;
39
+ }
40
+ export interface CredentialRevocationResponse {
41
+ status: number;
42
+ }
35
43
  export interface ImportCredentialTypeOptions {
36
44
  id: string;
37
45
  data: {
@@ -116,6 +124,10 @@ export interface OutOfBandInvitationSchema {
116
124
  services: Array<OutOfBandDidCommService | string>;
117
125
  imageUrl?: string;
118
126
  }
127
+ export interface ReceiveInvitationResult {
128
+ outOfBandId: string;
129
+ connectionId?: string;
130
+ }
119
131
  export interface ConnectionInvitationSchema {
120
132
  id?: string;
121
133
  '@type': string;
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "default": "./build/utils/ecs.js"
15
15
  }
16
16
  },
17
- "version": "1.10.0-dev.1",
17
+ "version": "1.10.0-dev.6",
18
18
  "repository": {
19
19
  "type": "git",
20
20
  "url": "https://github.com/verana-labs/vs-agent"