@sphereon/pex-models
Advanced tools
Comparing version 1.2.1 to 1.2.2
@@ -1,2 +0,2 @@ | ||
import { IssuanceV1 } from './issuanceV1'; | ||
import { Issuance } from './issuance'; | ||
import { Schema } from './schema'; | ||
@@ -10,4 +10,4 @@ import { ConstraintsV1 } from './constraintsV1'; | ||
schema: Array<Schema>; | ||
issuance?: Array<IssuanceV1>; | ||
issuance?: Array<Issuance>; | ||
constraints?: ConstraintsV1; | ||
} |
@@ -0,1 +1,2 @@ | ||
import { Issuance } from './issuance'; | ||
import { ConstraintsV2 } from './constraintsV2'; | ||
@@ -7,4 +8,4 @@ export interface InputDescriptorV2 { | ||
group?: Array<string>; | ||
issuance?: Array<string>; | ||
issuance?: Array<Issuance>; | ||
constraints?: ConstraintsV2; | ||
} |
@@ -16,3 +16,3 @@ export * from './callback'; | ||
export * from './inputDescriptorV2'; | ||
export * from './issuanceV1'; | ||
export * from './issuance'; | ||
export * from './issue'; | ||
@@ -19,0 +19,0 @@ export * from './jwtObject'; |
@@ -32,3 +32,3 @@ "use strict"; | ||
__exportStar(require("./inputDescriptorV2"), exports); | ||
__exportStar(require("./issuanceV1"), exports); | ||
__exportStar(require("./issuance"), exports); | ||
__exportStar(require("./issue"), exports); | ||
@@ -35,0 +35,0 @@ __exportStar(require("./jwtObject"), exports); |
@@ -12,3 +12,3 @@ /** | ||
*/ | ||
import { IssuanceV1 } from './issuanceV1'; | ||
import { Issuance } from './issuance'; | ||
import { Schema } from './schema'; | ||
@@ -42,5 +42,5 @@ import { ConstraintsV1 } from './constraintsV1'; | ||
schema: Array<Schema>; | ||
issuance?: Array<IssuanceV1>; | ||
issuance?: Array<Issuance>; | ||
constraints?: ConstraintsV1; | ||
} | ||
@@ -12,2 +12,3 @@ /** | ||
*/ | ||
import { Issuance } from './issuance'; | ||
import { ConstraintsV2 } from './constraintsV2'; | ||
@@ -36,8 +37,5 @@ | ||
group?: Array<string>; | ||
/** | ||
* Issuance URL(s). Although not spec compliant, used by for instance Entra Verified ID for Credential Manifests | ||
*/ | ||
issuance?: Array<string>; | ||
issuance?: Array<Issuance>; | ||
constraints?: ConstraintsV2; | ||
} | ||
@@ -16,3 +16,3 @@ export * from './callback'; | ||
export * from './inputDescriptorV2'; | ||
export * from './issuanceV1'; | ||
export * from './issuance'; | ||
export * from './issue'; | ||
@@ -19,0 +19,0 @@ export * from './jwtObject'; |
{ | ||
"name": "@sphereon/pex-models", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"description": "Presentation Exchange v1 and v2 typescript models", | ||
@@ -15,3 +15,3 @@ "author": "Sphereon", | ||
"repository": "https://github.com/Sphereon-Opensource/pex-openapi.git", | ||
"license": "Apache 2", | ||
"license": "Apache-2.0", | ||
"main": "./dist/index.js", | ||
@@ -18,0 +18,0 @@ "typings": "./dist/index.d.ts", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
72498
1619