@sphereon/ssi-sdk.data-store 0.23.5-unstable.52 → 0.23.5-unstable.55

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.
@@ -10,6 +10,13 @@ export type PresentationDefinitionItem = {
10
10
  lastUpdatedAt: Date;
11
11
  };
12
12
  export type NonPersistedPresentationDefinitionItem = Omit<PresentationDefinitionItem, 'id' | 'createdAt' | 'lastUpdatedAt'>;
13
+ export type PersistablePresentationDefinitionItem = {
14
+ definitionId?: string;
15
+ tenantId?: string;
16
+ version?: string;
17
+ purpose?: string;
18
+ definitionPayload: IPresentationDefinition;
19
+ };
13
20
  export type PartialPresentationDefinitionItem = Partial<PresentationDefinitionItem>;
14
21
  export type PresentationDefinitionItemFilter = Partial<Omit<PresentationDefinitionItem, 'definitionPayload'>>;
15
22
  //# sourceMappingURL=presentationDefinition.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"presentationDefinition.d.ts","sourceRoot":"","sources":["../../../src/types/presentationDefinition/presentationDefinition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAA;AAEvD,MAAM,MAAM,0BAA0B,GAAG;IACvC,EAAE,EAAE,MAAM,CAAA;IACV,YAAY,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,iBAAiB,EAAE,uBAAuB,CAAA;IAC1C,SAAS,EAAE,IAAI,CAAA;IACf,aAAa,EAAE,IAAI,CAAA;CACpB,CAAA;AAED,MAAM,MAAM,sCAAsC,GAAG,IAAI,CAAC,0BAA0B,EAAE,IAAI,GAAG,WAAW,GAAG,eAAe,CAAC,CAAA;AAC3H,MAAM,MAAM,iCAAiC,GAAG,OAAO,CAAC,0BAA0B,CAAC,CAAA;AACnF,MAAM,MAAM,gCAAgC,GAAG,OAAO,CAAC,IAAI,CAAC,0BAA0B,EAAE,mBAAmB,CAAC,CAAC,CAAA"}
1
+ {"version":3,"file":"presentationDefinition.d.ts","sourceRoot":"","sources":["../../../src/types/presentationDefinition/presentationDefinition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAA;AAEvD,MAAM,MAAM,0BAA0B,GAAG;IACvC,EAAE,EAAE,MAAM,CAAA;IACV,YAAY,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,iBAAiB,EAAE,uBAAuB,CAAA;IAC1C,SAAS,EAAE,IAAI,CAAA;IACf,aAAa,EAAE,IAAI,CAAA;CACpB,CAAA;AAED,MAAM,MAAM,sCAAsC,GAAG,IAAI,CAAC,0BAA0B,EAAE,IAAI,GAAG,WAAW,GAAG,eAAe,CAAC,CAAA;AAE3H,MAAM,MAAM,qCAAqC,GAAG;IAClD,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,iBAAiB,EAAE,uBAAuB,CAAA;CAC3C,CAAA;AACD,MAAM,MAAM,iCAAiC,GAAG,OAAO,CAAC,0BAA0B,CAAC,CAAA;AACnF,MAAM,MAAM,gCAAgC,GAAG,OAAO,CAAC,IAAI,CAAC,0BAA0B,EAAE,mBAAmB,CAAC,CAAC,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sphereon/ssi-sdk.data-store",
3
- "version": "0.23.5-unstable.52+386bd5cb",
3
+ "version": "0.23.5-unstable.55+d2a47a6f",
4
4
  "source": "src/index.ts",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@sphereon/pex": "^3.3.3",
18
- "@sphereon/ssi-sdk.core": "0.23.5-unstable.52+386bd5cb",
19
- "@sphereon/ssi-types": "0.23.5-unstable.52+386bd5cb",
18
+ "@sphereon/ssi-sdk.core": "0.23.5-unstable.55+d2a47a6f",
19
+ "@sphereon/ssi-types": "0.23.5-unstable.55+d2a47a6f",
20
20
  "@veramo/core": "4.2.0",
21
21
  "@veramo/utils": "4.2.0",
22
22
  "class-validator": "^0.14.0",
@@ -46,5 +46,5 @@
46
46
  "PostgreSQL",
47
47
  "Contact Store"
48
48
  ],
49
- "gitHead": "386bd5cbd152dc599784e2547b5e750e4ffb8dd1"
49
+ "gitHead": "d2a47a6fd578c50fa1b75ebb481a084b00855c94"
50
50
  }
@@ -12,5 +12,13 @@ export type PresentationDefinitionItem = {
12
12
  }
13
13
 
14
14
  export type NonPersistedPresentationDefinitionItem = Omit<PresentationDefinitionItem, 'id' | 'createdAt' | 'lastUpdatedAt'>
15
+
16
+ export type PersistablePresentationDefinitionItem = {
17
+ definitionId?: string
18
+ tenantId?: string
19
+ version?: string
20
+ purpose?: string
21
+ definitionPayload: IPresentationDefinition
22
+ }
15
23
  export type PartialPresentationDefinitionItem = Partial<PresentationDefinitionItem>
16
24
  export type PresentationDefinitionItemFilter = Partial<Omit<PresentationDefinitionItem, 'definitionPayload'>>