@sphereon/ssi-sdk.credential-store 0.34.1-fix.117 → 0.34.1-fix.141
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.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/src/index.ts +1 -1
- package/src/types/ICredentialStore.ts +1 -1
- package/src/utils/filters.ts +2 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as _sphereon_ssi_types from '@sphereon/ssi-types';
|
|
2
|
-
import { HasherSync, OriginalVerifiableCredential, OriginalVerifiablePresentation, ICredential, IPresentation, IVerifiableCredential, IVerifiablePresentation } from '@sphereon/ssi-types';
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
import { HasherSync, OriginalVerifiableCredential, OriginalVerifiablePresentation, ICredential, IPresentation, IVerifiableCredential, IVerifiablePresentation, CredentialRole } from '@sphereon/ssi-types';
|
|
3
|
+
export { CredentialRole } from '@sphereon/ssi-types';
|
|
4
|
+
import { NonPersistedDigitalCredential, DigitalCredential, UpdateCredentialStateArgs, FindDigitalCredentialArgs, AbstractDigitalCredentialStore } from '@sphereon/ssi-sdk.data-store';
|
|
5
|
+
export { CredentialCorrelationType, CredentialDocumentFormat, CredentialStateType, DigitalCredential, DocumentType, FindDigitalCredentialArgs, UpdateCredentialStateArgs } from '@sphereon/ssi-sdk.data-store';
|
|
5
6
|
import { IPluginMethodMap, IAgentContext, IAgentPlugin } from '@veramo/core';
|
|
6
7
|
|
|
7
8
|
type TClaimsColumns = 'context' | 'credentialType' | 'type' | 'value' | 'isObj' | 'id' | 'issuer' | 'subject' | 'expirationDate' | 'issuanceDate';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as _sphereon_ssi_types from '@sphereon/ssi-types';
|
|
2
|
-
import { HasherSync, OriginalVerifiableCredential, OriginalVerifiablePresentation, ICredential, IPresentation, IVerifiableCredential, IVerifiablePresentation } from '@sphereon/ssi-types';
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
import { HasherSync, OriginalVerifiableCredential, OriginalVerifiablePresentation, ICredential, IPresentation, IVerifiableCredential, IVerifiablePresentation, CredentialRole } from '@sphereon/ssi-types';
|
|
3
|
+
export { CredentialRole } from '@sphereon/ssi-types';
|
|
4
|
+
import { NonPersistedDigitalCredential, DigitalCredential, UpdateCredentialStateArgs, FindDigitalCredentialArgs, AbstractDigitalCredentialStore } from '@sphereon/ssi-sdk.data-store';
|
|
5
|
+
export { CredentialCorrelationType, CredentialDocumentFormat, CredentialStateType, DigitalCredential, DocumentType, FindDigitalCredentialArgs, UpdateCredentialStateArgs } from '@sphereon/ssi-sdk.data-store';
|
|
5
6
|
import { IPluginMethodMap, IAgentContext, IAgentPlugin } from '@veramo/core';
|
|
6
7
|
|
|
7
8
|
type TClaimsColumns = 'context' | 'credentialType' | 'type' | 'value' | 'isObj' | 'id' | 'issuer' | 'subject' | 'expirationDate' | 'issuanceDate';
|
package/dist/index.js
CHANGED
|
@@ -2008,7 +2008,8 @@ var CredentialStore = class {
|
|
|
2008
2008
|
};
|
|
2009
2009
|
|
|
2010
2010
|
// src/index.ts
|
|
2011
|
-
import {
|
|
2011
|
+
import { CredentialStateType, CredentialCorrelationType, CredentialDocumentFormat, DocumentType as DocumentType3 } from "@sphereon/ssi-sdk.data-store";
|
|
2012
|
+
import { CredentialRole } from "@sphereon/ssi-types";
|
|
2012
2013
|
|
|
2013
2014
|
// src/types/ICredentialStore.ts
|
|
2014
2015
|
import { contextHasPlugin } from "@sphereon/ssi-sdk.agent-config";
|