@sphereon/ssi-sdk.data-store-types 0.36.1-next.152 → 0.36.1-next.155

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/dist/index.d.cts CHANGED
@@ -62,6 +62,7 @@ interface ICredentialClaim {
62
62
  id: string;
63
63
  key: string;
64
64
  name: string;
65
+ order?: number;
65
66
  }
66
67
  interface IBasicCredentialClaim extends Omit<ICredentialClaim, 'id'> {
67
68
  }
package/dist/index.d.ts CHANGED
@@ -62,6 +62,7 @@ interface ICredentialClaim {
62
62
  id: string;
63
63
  key: string;
64
64
  name: string;
65
+ order?: number;
65
66
  }
66
67
  interface IBasicCredentialClaim extends Omit<ICredentialClaim, 'id'> {
67
68
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sphereon/ssi-sdk.data-store-types",
3
- "version": "0.36.1-next.152+c5211aa3",
3
+ "version": "0.36.1-next.155+32138ae6",
4
4
  "source": "src/index.ts",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -21,12 +21,12 @@
21
21
  "build": "tsup --config ../../tsup.config.ts --tsconfig ../../tsconfig.tsup.json"
22
22
  },
23
23
  "dependencies": {
24
- "@sphereon/ssi-sdk.core": "0.36.1-next.152+c5211aa3",
25
- "@sphereon/ssi-types": "0.36.1-next.152+c5211aa3",
24
+ "@sphereon/ssi-sdk.core": "0.36.1-next.155+32138ae6",
25
+ "@sphereon/ssi-types": "0.36.1-next.155+32138ae6",
26
26
  "dcql": "1.0.1"
27
27
  },
28
28
  "devDependencies": {
29
- "@sphereon/ssi-sdk-ext.identifier-resolution": "0.36.1-next.152+c5211aa3"
29
+ "@sphereon/ssi-sdk-ext.identifier-resolution": "0.36.1-next.155+32138ae6"
30
30
  },
31
31
  "files": [
32
32
  "dist",
@@ -47,5 +47,5 @@
47
47
  "PostgreSQL",
48
48
  "Contact Store"
49
49
  ],
50
- "gitHead": "c5211aa3e329db644e1c62cb6bbd72094b546dbd"
50
+ "gitHead": "32138ae6119b77cc823033097aa0912dd905cf07"
51
51
  }
@@ -57,6 +57,7 @@ export interface ICredentialClaim {
57
57
  id: string
58
58
  key: string
59
59
  name: string
60
+ order?: number
60
61
  }
61
62
  export interface IBasicCredentialClaim extends Omit<ICredentialClaim, 'id'> {}
62
63
  export interface IPartialCredentialClaim extends Partial<ICredentialClaim> {}