@sphereon/ssi-sdk.data-store 0.34.1-feature.disable.test.8 → 0.34.1-next.29
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 +957 -480
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +111 -26
- package/dist/index.d.ts +111 -26
- package/dist/index.js +903 -426
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
- package/src/__tests__/statusList.entities.test.ts +58 -1
- package/src/__tests__/statusList.store.test.ts +64 -1
- package/src/entities/statusList/BitstringStatusListEntryEntity.ts +60 -0
- package/src/entities/statusList/StatusList2021EntryEntity.ts +4 -3
- package/src/entities/statusList/StatusListEntities.ts +54 -5
- package/src/index.ts +12 -2
- package/src/migrations/generic/12-CreateBitstringStatusList.ts +52 -0
- package/src/migrations/generic/index.ts +2 -1
- package/src/migrations/postgres/1741895823000-CreateBitstringStatusList.ts +53 -0
- package/src/migrations/sqlite/1741895823001-CreateBitstringStatusList.ts +145 -0
- package/src/statusList/IStatusListStore.ts +14 -11
- package/src/statusList/StatusListStore.ts +73 -35
- package/src/types/statusList/IAbstractStatusListStore.ts +54 -4
- package/src/types/statusList/statusList.ts +50 -2
- package/src/utils/statusList/MappingUtils.ts +71 -30
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import typeorm, { BaseEntity as BaseEntity$8, FindOptionsOrder, FindOptionsWhere, DataSource, Repository, MigrationInterface, QueryRunner } from 'typeorm';
|
|
2
2
|
import { ManagedIdentifierOptsOrResult } from '@sphereon/ssi-sdk-ext.identifier-resolution';
|
|
3
3
|
import { IIdentifier } from '@veramo/core';
|
|
4
|
-
import { HasherSync, DcqlQueryREST, IIssuer, StatusListDriverType, StatusListCredentialIdMode, CredentialProofFormat, StatusListCredential, StatusListIndexingDirection, StatusPurpose2021,
|
|
4
|
+
import { HasherSync, DcqlQueryREST, StatusListType, IIssuer, StatusListDriverType, StatusListCredentialIdMode, CredentialProofFormat, StatusListCredential, StatusListIndexingDirection, StatusPurpose2021, RequireOneOf, ICredentialStatus, LoggingEventType, LogLevel, System, SubSystem, ActionType, ActionSubType, InitiatorType, SystemCorrelationIdType, OrPromise, OriginalVerifiableCredential, OriginalVerifiablePresentation } from '@sphereon/ssi-types';
|
|
5
5
|
import { AuditLoggingEvent, ActivityLoggingEvent, PartialAuditLoggingEvent, PartialActivityLoggingEvent, PartyCorrelationType, CredentialType } from '@sphereon/ssi-sdk.core';
|
|
6
6
|
import { IPresentationDefinition } from '@sphereon/pex';
|
|
7
7
|
|
|
@@ -754,27 +754,42 @@ declare class StatusListEntryEntity extends BaseEntity$8 {
|
|
|
754
754
|
value?: string;
|
|
755
755
|
}
|
|
756
756
|
|
|
757
|
-
declare
|
|
757
|
+
declare class BitstringStatusListEntryEntity extends StatusListEntryEntity {
|
|
758
|
+
statusPurpose: string;
|
|
759
|
+
bitsPerStatus?: number;
|
|
760
|
+
statusMessage?: Array<BitstringStatusMessage>;
|
|
761
|
+
statusReference?: string | string[];
|
|
762
|
+
}
|
|
758
763
|
|
|
764
|
+
declare const BaseEntity$7: typeof typeorm.BaseEntity;
|
|
759
765
|
declare abstract class StatusListEntity extends BaseEntity$7 {
|
|
760
766
|
id: string;
|
|
761
767
|
correlationId: string;
|
|
762
768
|
length: number;
|
|
769
|
+
type: StatusListType;
|
|
763
770
|
issuer: string | IIssuer;
|
|
764
771
|
driverType: StatusListDriverType;
|
|
765
772
|
credentialIdMode: StatusListCredentialIdMode;
|
|
766
773
|
proofFormat: CredentialProofFormat;
|
|
767
774
|
statusListCredential?: StatusListCredential;
|
|
768
|
-
statusListEntries: StatusListEntryEntity[];
|
|
769
775
|
}
|
|
770
776
|
declare class StatusList2021Entity extends StatusListEntity {
|
|
771
777
|
indexingDirection: StatusListIndexingDirection;
|
|
772
778
|
statusPurpose: StatusPurpose2021;
|
|
779
|
+
statusListEntries: StatusListEntryEntity[];
|
|
773
780
|
}
|
|
774
781
|
declare class OAuthStatusListEntity extends StatusListEntity {
|
|
775
782
|
bitsPerStatus: number;
|
|
776
783
|
expiresAt?: Date;
|
|
777
784
|
}
|
|
785
|
+
declare class BitstringStatusListEntity extends StatusListEntity {
|
|
786
|
+
statusPurpose: string | string[];
|
|
787
|
+
bitsPerStatus?: number;
|
|
788
|
+
validFrom?: Date;
|
|
789
|
+
validUntil?: Date;
|
|
790
|
+
ttl?: number;
|
|
791
|
+
statusListEntries: BitstringStatusListEntryEntity[];
|
|
792
|
+
}
|
|
778
793
|
|
|
779
794
|
interface IStatusListEntity {
|
|
780
795
|
id: string;
|
|
@@ -786,6 +801,7 @@ interface IStatusListEntity {
|
|
|
786
801
|
type: StatusListType;
|
|
787
802
|
proofFormat: CredentialProofFormat;
|
|
788
803
|
statusListCredential?: StatusListCredential;
|
|
804
|
+
bitsPerStatus?: number;
|
|
789
805
|
}
|
|
790
806
|
interface IStatusList2021Entity extends IStatusListEntity {
|
|
791
807
|
indexingDirection: StatusListIndexingDirection;
|
|
@@ -795,6 +811,13 @@ interface IOAuthStatusListEntity extends IStatusListEntity {
|
|
|
795
811
|
bitsPerStatus: number;
|
|
796
812
|
expiresAt?: Date;
|
|
797
813
|
}
|
|
814
|
+
interface IBitstringStatusListEntity extends IStatusListEntity {
|
|
815
|
+
statusPurpose: BitstringStatusPurpose | Array<BitstringStatusPurpose>;
|
|
816
|
+
bitsPerStatus?: number;
|
|
817
|
+
validFrom?: Date;
|
|
818
|
+
validUntil?: Date;
|
|
819
|
+
ttl?: number;
|
|
820
|
+
}
|
|
798
821
|
type IStatusListEntryEntity = RequireOneOf<{
|
|
799
822
|
statusList: StatusListEntity;
|
|
800
823
|
statusListId: string;
|
|
@@ -804,6 +827,39 @@ type IStatusListEntryEntity = RequireOneOf<{
|
|
|
804
827
|
credentialId?: string;
|
|
805
828
|
correlationId?: string;
|
|
806
829
|
}, 'statusList' | 'statusListId'>;
|
|
830
|
+
type BitstringStatusPurpose = 'revocation' | 'suspension' | 'refresh' | 'message' | string;
|
|
831
|
+
type BitstringStatusMessage = {
|
|
832
|
+
status: string;
|
|
833
|
+
message?: string;
|
|
834
|
+
[x: string]: any;
|
|
835
|
+
};
|
|
836
|
+
interface BitstringStatusListEntryCredentialStatus extends ICredentialStatus {
|
|
837
|
+
type: 'BitstringStatusListEntry';
|
|
838
|
+
statusPurpose: BitstringStatusPurpose | Array<BitstringStatusPurpose>;
|
|
839
|
+
statusListIndex: string;
|
|
840
|
+
statusListCredential: string;
|
|
841
|
+
bitsPerStatus?: number;
|
|
842
|
+
statusMessage?: Array<BitstringStatusMessage>;
|
|
843
|
+
statusReference?: string | Array<string>;
|
|
844
|
+
}
|
|
845
|
+
type BitstringStatusListArgs = {
|
|
846
|
+
statusPurpose: BitstringStatusPurpose;
|
|
847
|
+
bitsPerStatus: number;
|
|
848
|
+
ttl?: number;
|
|
849
|
+
validFrom?: Date;
|
|
850
|
+
validUntil?: Date;
|
|
851
|
+
};
|
|
852
|
+
interface IBitstringStatusListEntryEntity {
|
|
853
|
+
statusListId: string;
|
|
854
|
+
statusListIndex: number;
|
|
855
|
+
credentialId?: string;
|
|
856
|
+
credentialHash?: string;
|
|
857
|
+
entryCorrelationId?: string;
|
|
858
|
+
statusPurpose: string;
|
|
859
|
+
bitsPerStatus?: number;
|
|
860
|
+
statusMessage?: Array<BitstringStatusMessage>;
|
|
861
|
+
statusReference?: string | Array<string>;
|
|
862
|
+
}
|
|
807
863
|
|
|
808
864
|
type FindStatusListArgs = FindOptionsWhere<IStatusList2021Entity | IOAuthStatusListEntity>[];
|
|
809
865
|
type FindStatusListEntryArgs = FindOptionsWhere<IStatusListEntryEntity>[] | FindOptionsWhere<IStatusListEntryEntity>;
|
|
@@ -830,7 +886,7 @@ interface IGetStatusListEntriesArgs {
|
|
|
830
886
|
statusListId: string;
|
|
831
887
|
filter?: FindStatusListEntryArgs;
|
|
832
888
|
}
|
|
833
|
-
type IAddStatusListEntryArgs = IStatusListEntryEntity;
|
|
889
|
+
type IAddStatusListEntryArgs = IStatusListEntryEntity | IBitstringStatusListEntryEntity;
|
|
834
890
|
interface IGetStatusListArgs {
|
|
835
891
|
id?: string;
|
|
836
892
|
correlationId?: string;
|
|
@@ -839,8 +895,38 @@ type IRemoveStatusListArgs = IGetStatusListArgs;
|
|
|
839
895
|
interface IGetStatusListsArgs {
|
|
840
896
|
filter?: FindStatusListArgs;
|
|
841
897
|
}
|
|
842
|
-
|
|
843
|
-
|
|
898
|
+
interface IBaseStatusListArgs {
|
|
899
|
+
id: string;
|
|
900
|
+
correlationId: string;
|
|
901
|
+
driverType: StatusListDriverType;
|
|
902
|
+
credentialIdMode: StatusListCredentialIdMode;
|
|
903
|
+
length: number;
|
|
904
|
+
issuer: string | IIssuer;
|
|
905
|
+
type: StatusListType;
|
|
906
|
+
proofFormat: CredentialProofFormat;
|
|
907
|
+
statusListCredential?: StatusListCredential;
|
|
908
|
+
bitsPerStatus?: number;
|
|
909
|
+
}
|
|
910
|
+
type IStatusList2021Args = IBaseStatusListArgs & {
|
|
911
|
+
type: StatusListType.StatusList2021;
|
|
912
|
+
indexingDirection: StatusListIndexingDirection;
|
|
913
|
+
statusPurpose: StatusPurpose2021;
|
|
914
|
+
};
|
|
915
|
+
type IOAuthStatusListArgs = IBaseStatusListArgs & {
|
|
916
|
+
type: StatusListType.OAuthStatusList;
|
|
917
|
+
bitsPerStatus: number;
|
|
918
|
+
expiresAt?: Date;
|
|
919
|
+
};
|
|
920
|
+
type IBitstringStatusListArgs = IBaseStatusListArgs & {
|
|
921
|
+
type: StatusListType.BitstringStatusList;
|
|
922
|
+
statusPurpose: BitstringStatusPurpose | BitstringStatusPurpose[];
|
|
923
|
+
bitsPerStatus?: number;
|
|
924
|
+
validFrom?: Date;
|
|
925
|
+
validUntil?: Date;
|
|
926
|
+
ttl?: number;
|
|
927
|
+
};
|
|
928
|
+
type IAddStatusListArgs = IStatusList2021Args | IOAuthStatusListArgs | IBitstringStatusListArgs;
|
|
929
|
+
type IUpdateStatusListIndexArgs = IAddStatusListArgs;
|
|
844
930
|
|
|
845
931
|
type NonPersistedAuditLoggingEvent = Omit<AuditLoggingEvent, 'id' | 'type'>;
|
|
846
932
|
type NonPersistedActivityLoggingEvent = Omit<ActivityLoggingEvent, 'id' | 'type'>;
|
|
@@ -1422,20 +1508,19 @@ declare class IssuanceBrandingStore extends AbstractIssuanceBrandingStore {
|
|
|
1422
1508
|
}
|
|
1423
1509
|
|
|
1424
1510
|
interface IStatusListStore {
|
|
1425
|
-
getStatusList(args: IGetStatusListArgs): Promise<IStatusListEntity>;
|
|
1426
|
-
getStatusLists(args: IGetStatusListsArgs): Promise<Array<IStatusListEntity>>;
|
|
1511
|
+
getStatusList(args: IGetStatusListArgs): Promise<IStatusListEntity | IBitstringStatusListEntity>;
|
|
1512
|
+
getStatusLists(args: IGetStatusListsArgs): Promise<Array<IStatusListEntity | IBitstringStatusListEntity>>;
|
|
1427
1513
|
removeStatusList(args: IRemoveStatusListArgs): Promise<boolean>;
|
|
1428
|
-
addStatusList(args: IAddStatusListArgs): Promise<IStatusListEntity>;
|
|
1429
|
-
updateStatusList(args: IUpdateStatusListIndexArgs): Promise<IStatusListEntity>;
|
|
1514
|
+
addStatusList(args: IAddStatusListArgs): Promise<IStatusListEntity | IBitstringStatusListEntity>;
|
|
1515
|
+
updateStatusList(args: IUpdateStatusListIndexArgs): Promise<IStatusListEntity | IBitstringStatusListEntity>;
|
|
1430
1516
|
availableStatusListEntries(args: IStatusListEntryAvailableArgs): Promise<number[]>;
|
|
1431
|
-
addStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity>;
|
|
1432
|
-
updateStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity>;
|
|
1433
|
-
getStatusListEntryByIndex(args: IGetStatusListEntryByIndexArgs): Promise<StatusListEntryEntity | undefined>;
|
|
1434
|
-
getStatusListEntryByCredentialId(args: IGetStatusListEntryByCredentialIdArgs): Promise<StatusListEntryEntity | undefined>;
|
|
1517
|
+
addStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity | IBitstringStatusListEntryEntity>;
|
|
1518
|
+
updateStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity | IBitstringStatusListEntryEntity>;
|
|
1519
|
+
getStatusListEntryByIndex(args: IGetStatusListEntryByIndexArgs): Promise<StatusListEntryEntity | BitstringStatusListEntryEntity | undefined>;
|
|
1520
|
+
getStatusListEntryByCredentialId(args: IGetStatusListEntryByCredentialIdArgs): Promise<StatusListEntryEntity | BitstringStatusListEntryEntity | undefined>;
|
|
1435
1521
|
removeStatusListEntryByIndex(args: IGetStatusListEntryByIndexArgs): Promise<boolean>;
|
|
1436
1522
|
removeStatusListEntryByCredentialId(args: IGetStatusListEntryByCredentialIdArgs): Promise<boolean>;
|
|
1437
|
-
getStatusListEntries(args: IGetStatusListEntriesArgs): Promise<IStatusListEntryEntity
|
|
1438
|
-
getStatusList(args: IGetStatusListArgs): Promise<IStatusListEntity>;
|
|
1523
|
+
getStatusListEntries(args: IGetStatusListEntriesArgs): Promise<Array<IStatusListEntryEntity | IBitstringStatusListEntryEntity>>;
|
|
1439
1524
|
}
|
|
1440
1525
|
|
|
1441
1526
|
declare class StatusListStore implements IStatusListStore {
|
|
@@ -1451,22 +1536,22 @@ declare class StatusListStore implements IStatusListStore {
|
|
|
1451
1536
|
* @param args
|
|
1452
1537
|
*/
|
|
1453
1538
|
availableStatusListEntries(args: IStatusListEntryAvailableArgs): Promise<number[]>;
|
|
1454
|
-
addStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity>;
|
|
1455
|
-
updateStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity>;
|
|
1456
|
-
getStatusListEntryByIndex({ statusListId, statusListCorrelationId, statusListIndex, entryCorrelationId, errorOnNotFound, }: IGetStatusListEntryByIndexArgs): Promise<StatusListEntryEntity | undefined>;
|
|
1457
|
-
getStatusListEntryByCredentialId(args: IGetStatusListEntryByCredentialIdArgs): Promise<StatusListEntryEntity | undefined>;
|
|
1539
|
+
addStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity | IBitstringStatusListEntryEntity>;
|
|
1540
|
+
updateStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity | IBitstringStatusListEntryEntity>;
|
|
1541
|
+
getStatusListEntryByIndex({ statusListId, statusListCorrelationId, statusListIndex, entryCorrelationId, errorOnNotFound, }: IGetStatusListEntryByIndexArgs): Promise<StatusListEntryEntity | BitstringStatusListEntryEntity | undefined>;
|
|
1542
|
+
getStatusListEntryByCredentialId(args: IGetStatusListEntryByCredentialIdArgs): Promise<StatusListEntryEntity | BitstringStatusListEntryEntity | undefined>;
|
|
1458
1543
|
removeStatusListEntryByCredentialId(args: IGetStatusListEntryByCredentialIdArgs): Promise<boolean>;
|
|
1459
1544
|
removeStatusListEntryByIndex(args: IGetStatusListEntryByIndexArgs): Promise<boolean>;
|
|
1460
|
-
getStatusListEntries(args: IGetStatusListEntriesArgs): Promise<
|
|
1461
|
-
getStatusList(args: IGetStatusListArgs): Promise<IStatusListEntity>;
|
|
1545
|
+
getStatusListEntries(args: IGetStatusListEntriesArgs): Promise<Array<IStatusListEntryEntity | IBitstringStatusListEntryEntity>>;
|
|
1462
1546
|
private getStatusListEntity;
|
|
1463
|
-
|
|
1547
|
+
getStatusList(args: IGetStatusListArgs): Promise<IStatusListEntity | IBitstringStatusListEntity>;
|
|
1548
|
+
getStatusLists(args: IGetStatusListsArgs): Promise<Array<IStatusListEntity | IBitstringStatusListEntity>>;
|
|
1464
1549
|
addStatusList(args: IAddStatusListArgs): Promise<IStatusListEntity>;
|
|
1465
|
-
updateStatusList(args: IUpdateStatusListIndexArgs): Promise<IStatusListEntity>;
|
|
1550
|
+
updateStatusList(args: IUpdateStatusListIndexArgs): Promise<IStatusListEntity | IBitstringStatusListEntity>;
|
|
1466
1551
|
removeStatusList(args: IRemoveStatusListArgs): Promise<boolean>;
|
|
1467
1552
|
private getDS;
|
|
1468
1553
|
getStatusListRepo(type?: StatusListType): Promise<Repository<StatusListEntity>>;
|
|
1469
|
-
getStatusListEntryRepo(): Promise<Repository<StatusListEntryEntity>>;
|
|
1554
|
+
getStatusListEntryRepo(type?: StatusListType): Promise<Repository<StatusListEntryEntity | BitstringStatusListEntryEntity>>;
|
|
1470
1555
|
}
|
|
1471
1556
|
|
|
1472
1557
|
declare abstract class AbstractEventLoggerStore {
|
|
@@ -1727,4 +1812,4 @@ declare const DataStoreDigitalCredentialEntities: (typeof DigitalCredentialEntit
|
|
|
1727
1812
|
declare const DataStoreMachineStateEntities: (typeof MachineStateInfoEntity)[];
|
|
1728
1813
|
declare const DataStoreEntities: (typeof BaseConfigEntity | typeof ConnectionEntity | typeof PartyEntity | typeof IdentityMetadataItemEntity | typeof CorrelationIdentifierEntity | typeof PartyRelationshipEntity | typeof PartyTypeEntity | typeof BaseContactEntity | typeof ElectronicAddressEntity | typeof PhysicalAddressEntity | typeof ContactMetadataItemEntity | typeof CredentialBrandingEntity | typeof ImageAttributesEntity | typeof ImageDimensionsEntity | typeof BaseLocaleBrandingEntity | typeof IssuerBrandingEntity | typeof TextAttributesEntity | typeof CredentialClaimsEntity | typeof PresentationDefinitionItemEntity | typeof StatusListEntity | typeof StatusListEntryEntity | typeof AuditEventEntity | typeof DigitalCredentialEntity | typeof MachineStateInfoEntity)[];
|
|
1729
1814
|
|
|
1730
|
-
export { AbstractContactStore, AbstractDigitalCredentialStore, AbstractEventLoggerStore, AbstractIssuanceBrandingStore, AbstractPDStore, type AddCredentialArgs, type AddDefinitionArgs, type AddElectronicAddressArgs, type AddIdentityArgs, type AddPartyArgs, type AddPartyTypeArgs, type AddPhysicalAddressArgs, type AddRelationshipArgs, AuditEventEntity, BackgroundAttributesEntity, BaseConfigEntity, BaseContactEntity, BaseLocaleBrandingEntity, type Connection, type ConnectionConfig, ConnectionEntity, ConnectionType, type Contact, ContactMetadataItemEntity, ContactStore, type CorrelationIdentifier, CorrelationIdentifierEntity, CorrelationIdentifierType, CredentialBrandingEntity, CredentialClaimsEntity, CredentialCorrelationType, CredentialDocumentFormat, CredentialLocaleBrandingEntity, CredentialRole, CredentialStateType, DataStoreContactEntities, DataStoreContactMigrations, DataStoreDigitalCredentialEntities, DataStoreDigitalCredentialMigrations, DataStoreEntities, DataStoreEventLoggerEntities, DataStoreEventLoggerMigrations, DataStoreIssuanceBrandingEntities, DataStoreIssuanceBrandingMigrations, DataStoreMachineStateEntities, DataStoreMachineStateMigrations, DataStoreMigrations, DataStoreOid4vcStateEntities, DataStorePresentationDefinitionEntities, DataStorePresentationDefinitionMigrations, DataStoreStatusListEntities, DataStoreStatusListMigrations, type DeleteDefinitionArgs, type DeleteDefinitionsArgs, type DidAuthConfig, DidAuthConfigEntity, type DigitalCredential, DigitalCredentialEntity, DigitalCredentialStore, DocumentType, type ElectronicAddress, ElectronicAddressEntity, type ElectronicAddressType, EventLoggerStore, type FindActivityLoggingEventArgs, type FindAuditLoggingEventArgs, type FindCredentialBrandingArgs, type FindCredentialLocaleBrandingArgs, type FindDefinitionArgs, type FindDigitalCredentialArgs, type FindElectronicAddressArgs, type FindIdentityArgs, type FindIssuerBrandingArgs, type FindIssuerLocaleBrandingArgs, type FindMachineStatesFilterArgs, type FindPartyArgs, type FindPartyTypeArgs, type FindPhysicalAddressArgs, type FindRelationshipArgs, type FindStatusListArgs, type FindStatusListEntryArgs, type GetActivityEventsArgs, type GetAuditEventsArgs, type GetCredentialArgs, type GetCredentialsArgs, type GetCredentialsResponse, type GetDefinitionArgs, type GetDefinitionsArgs, type GetElectronicAddressArgs, type GetElectronicAddressesArgs, type GetIdentitiesArgs, type GetIdentityArgs, type GetPartiesArgs, type GetPartyArgs, type GetPartyTypeArgs, type GetPartyTypesArgs, type GetPhysicalAddressArgs, type GetPhysicalAddressesArgs, type GetRelationshipArgs, type GetRelationshipsArgs, type HasDefinitionArgs, type HasDefinitionsArgs, IAbstractMachineStateStore, type IAddCredentialBrandingArgs, type IAddCredentialLocaleBrandingArgs, type IAddIssuerBrandingArgs, type IAddIssuerLocaleBrandingArgs, type IAddStatusListArgs, type IAddStatusListEntryArgs, type IBackgroundAttributes, type IBasicBackgroundAttributes, type IBasicCredentialBranding, type IBasicCredentialClaim, type IBasicCredentialLocaleBranding, type IBasicImageAttributes, type IBasicImageDimensions, type IBasicIssuerBranding, type IBasicIssuerLocaleBranding, type IBasicTextAttributes, type ICredentialBranding, type ICredentialBrandingFilter, type ICredentialClaim, type ICredentialLocaleBranding, type ICredentialLocaleBrandingFilter, type IGetCredentialBrandingArgs, type IGetCredentialLocaleBrandingArgs, type IGetIssuerBrandingArgs, type IGetIssuerLocaleBrandingArgs, type IGetStatusListArgs, type IGetStatusListEntriesArgs, type IGetStatusListEntryByCredentialIdArgs, type IGetStatusListEntryByIndexArgs, type IGetStatusListsArgs, type IImageAttributes, type IImageDimensions, type IIssuerBranding, type IIssuerBrandingFilter, type IIssuerLocaleBranding, type IIssuerLocaleBrandingFilter, type ILocaleBranding, type IMetadataEntity, type IOAuthStatusListEntity, type IPartialBackgroundAttributes, type IPartialCredentialBranding, type IPartialCredentialClaim, type IPartialCredentialLocaleBranding, type IPartialImageAttributes, type IPartialImageDimensions, type IPartialIssuerBranding, type IPartialIssuerLocaleBranding, type IPartialTextAttributes, type IRemoveCredentialBrandingArgs, type IRemoveCredentialLocaleBrandingArgs, type IRemoveIssuerBrandingArgs, type IRemoveIssuerLocaleBrandingArgs, type IRemoveStatusListArgs, type IStatusList2021Entity, type IStatusListEntity, type IStatusListEntryAvailableArgs, type IStatusListEntryEntity, type ITextAttributes, type IUpdateCredentialBrandingArgs, type IUpdateCredentialLocaleBrandingArgs, type IUpdateIssuerBrandingArgs, type IUpdateIssuerLocaleBrandingArgs, type IUpdateStatusListIndexArgs, type Identity, IdentityEntity, IdentityMetadataItemEntity, IdentityOrigin, ImageAttributesEntity, ImageDimensionsEntity, IssuanceBrandingStore, IssuerBrandingEntity, IssuerLocaleBrandingEntity, MachineStateInfoEntity, MachineStateStore, type MetadataItem, type MetadataTypes, type NaturalPerson, type NonPersistedActivityLoggingEvent, type NonPersistedAuditLoggingEvent, type NonPersistedConnection, type NonPersistedConnectionConfig, type NonPersistedContact, type NonPersistedCorrelationIdentifier, type NonPersistedDidAuthConfig, type NonPersistedDigitalCredential, type NonPersistedElectronicAddress, type NonPersistedIdentity, type NonPersistedMetadataItem, type NonPersistedNaturalPerson, type NonPersistedOpenIdConfig, type NonPersistedOrganization, type NonPersistedParty, type NonPersistedPartyRelationship, type NonPersistedPartyType, type NonPersistedPhysicalAddress, type NonPersistedPresentationDefinitionItem, OAuthStatusListEntity, Oid4vcStateEntity, type OpenIdConfig, OpenIdConfigEntity, type Organization, PDStore, type PartialConnection, type PartialConnectionConfig, type PartialContact, type PartialCorrelationIdentifier, type PartialDidAuthConfig, type PartialElectronicAddress, type PartialIdentity, type PartialMetadataItem, type PartialNaturalPerson, type PartialOpenIdConfig, type PartialOrganization, type PartialParty, type PartialPartyRelationship, type PartialPartyType, type PartialPhysicalAddress, type PartialPresentationDefinitionItem, type Party, PartyEntity, PartyOrigin, type PartyRelationship, type PartyType, PartyTypeType, type PhysicalAddress, PhysicalAddressEntity, type PhysicalAddressType, type PresentationDefinitionItem, PresentationDefinitionItemEntity, type PresentationDefinitionItemFilter, RegulationType, type RemoveCredentialArgs, type RemoveElectronicAddressArgs, type RemoveIdentityArgs, type RemovePartyArgs, type RemovePartyTypeArgs, type RemovePhysicalAddressArgs, type RemoveRelationshipArgs, StatusList2021Entity, StatusListEntity, StatusListEntryEntity, StatusListStore, type StoreActivityEventArgs, type StoreAuditEventArgs, type StoreFindMachineStatesArgs, type StoreMachineStateDeleteArgs, type StoreMachineStateDeleteExpiredArgs, type StoreMachineStateGetArgs, type StoreMachineStateInfo, type StoreMachineStatePersistArgs, type StoreMachineStatesFindActiveArgs, TextAttributesEntity, type UpdateCredentialStateArgs, type UpdateDefinitionArgs, type UpdateElectronicAddressArgs, type UpdateIdentityArgs, type UpdatePartyArgs, type UpdatePartyTypeArgs, type UpdatePhysicalAddressArgs, type UpdateRelationshipArgs, type ValidationConstraint, activityEventEntityFrom, activityEventFrom, auditEventEntityFrom, auditEventFrom, backgroundAttributesEntityFrom, configFrom, connectionEntityFrom, connectionFrom, contactEntityFrom, contactFrom, contactMetadataItemEntityFrom, correlationIdentifierEntityFrom, correlationIdentifierFrom, credentialBrandingEntityFrom, credentialBrandingFrom, credentialClaimsEntityFrom, credentialLocaleBrandingEntityFrom, didAuthConfigEntityFrom, didAuthConfigFrom, digitalCredentialFrom, digitalCredentialsFrom, electronicAddressEntityFrom, electronicAddressFrom, ensureRawDocument, identityEntityFrom, identityFrom, identityMetadataItemEntityFrom, imageAttributesEntityFrom, imageDimensionsEntityFrom, isDidAuthConfig, isHex, isNaturalPerson, isOpenIdConfig, isOrganization, isPresentationDefinitionEqual, issuerBrandingEntityFrom, issuerBrandingFrom, issuerLocaleBrandingEntityFrom, localeBrandingFrom, metadataItemFrom, naturalPersonEntityFrom, naturalPersonFrom, nonPersistedDigitalCredentialEntityFromAddArgs, openIdConfigEntityFrom, openIdConfigFrom, organizationEntityFrom, organizationFrom, parseRawDocument, partyEntityFrom, partyFrom, partyRelationshipEntityFrom, partyRelationshipFrom, partyTypeEntityFrom, partyTypeFrom, physicalAddressEntityFrom, physicalAddressFrom, presentationDefinitionEntityItemFrom, presentationDefinitionItemFrom, textAttributesEntityFrom };
|
|
1815
|
+
export { AbstractContactStore, AbstractDigitalCredentialStore, AbstractEventLoggerStore, AbstractIssuanceBrandingStore, AbstractPDStore, type AddCredentialArgs, type AddDefinitionArgs, type AddElectronicAddressArgs, type AddIdentityArgs, type AddPartyArgs, type AddPartyTypeArgs, type AddPhysicalAddressArgs, type AddRelationshipArgs, AuditEventEntity, BackgroundAttributesEntity, BaseConfigEntity, BaseContactEntity, BaseLocaleBrandingEntity, type BitstringStatusListArgs, BitstringStatusListEntity, type BitstringStatusListEntryCredentialStatus, BitstringStatusListEntryEntity, type BitstringStatusMessage, type BitstringStatusPurpose, type Connection, type ConnectionConfig, ConnectionEntity, ConnectionType, type Contact, ContactMetadataItemEntity, ContactStore, type CorrelationIdentifier, CorrelationIdentifierEntity, CorrelationIdentifierType, CredentialBrandingEntity, CredentialClaimsEntity, CredentialCorrelationType, CredentialDocumentFormat, CredentialLocaleBrandingEntity, CredentialRole, CredentialStateType, DataStoreContactEntities, DataStoreContactMigrations, DataStoreDigitalCredentialEntities, DataStoreDigitalCredentialMigrations, DataStoreEntities, DataStoreEventLoggerEntities, DataStoreEventLoggerMigrations, DataStoreIssuanceBrandingEntities, DataStoreIssuanceBrandingMigrations, DataStoreMachineStateEntities, DataStoreMachineStateMigrations, DataStoreMigrations, DataStoreOid4vcStateEntities, DataStorePresentationDefinitionEntities, DataStorePresentationDefinitionMigrations, DataStoreStatusListEntities, DataStoreStatusListMigrations, type DeleteDefinitionArgs, type DeleteDefinitionsArgs, type DidAuthConfig, DidAuthConfigEntity, type DigitalCredential, DigitalCredentialEntity, DigitalCredentialStore, DocumentType, type ElectronicAddress, ElectronicAddressEntity, type ElectronicAddressType, EventLoggerStore, type FindActivityLoggingEventArgs, type FindAuditLoggingEventArgs, type FindCredentialBrandingArgs, type FindCredentialLocaleBrandingArgs, type FindDefinitionArgs, type FindDigitalCredentialArgs, type FindElectronicAddressArgs, type FindIdentityArgs, type FindIssuerBrandingArgs, type FindIssuerLocaleBrandingArgs, type FindMachineStatesFilterArgs, type FindPartyArgs, type FindPartyTypeArgs, type FindPhysicalAddressArgs, type FindRelationshipArgs, type FindStatusListArgs, type FindStatusListEntryArgs, type GetActivityEventsArgs, type GetAuditEventsArgs, type GetCredentialArgs, type GetCredentialsArgs, type GetCredentialsResponse, type GetDefinitionArgs, type GetDefinitionsArgs, type GetElectronicAddressArgs, type GetElectronicAddressesArgs, type GetIdentitiesArgs, type GetIdentityArgs, type GetPartiesArgs, type GetPartyArgs, type GetPartyTypeArgs, type GetPartyTypesArgs, type GetPhysicalAddressArgs, type GetPhysicalAddressesArgs, type GetRelationshipArgs, type GetRelationshipsArgs, type HasDefinitionArgs, type HasDefinitionsArgs, IAbstractMachineStateStore, type IAddCredentialBrandingArgs, type IAddCredentialLocaleBrandingArgs, type IAddIssuerBrandingArgs, type IAddIssuerLocaleBrandingArgs, type IAddStatusListArgs, type IAddStatusListEntryArgs, type IBackgroundAttributes, type IBasicBackgroundAttributes, type IBasicCredentialBranding, type IBasicCredentialClaim, type IBasicCredentialLocaleBranding, type IBasicImageAttributes, type IBasicImageDimensions, type IBasicIssuerBranding, type IBasicIssuerLocaleBranding, type IBasicTextAttributes, type IBitstringStatusListArgs, type IBitstringStatusListEntity, type IBitstringStatusListEntryEntity, type ICredentialBranding, type ICredentialBrandingFilter, type ICredentialClaim, type ICredentialLocaleBranding, type ICredentialLocaleBrandingFilter, type IGetCredentialBrandingArgs, type IGetCredentialLocaleBrandingArgs, type IGetIssuerBrandingArgs, type IGetIssuerLocaleBrandingArgs, type IGetStatusListArgs, type IGetStatusListEntriesArgs, type IGetStatusListEntryByCredentialIdArgs, type IGetStatusListEntryByIndexArgs, type IGetStatusListsArgs, type IImageAttributes, type IImageDimensions, type IIssuerBranding, type IIssuerBrandingFilter, type IIssuerLocaleBranding, type IIssuerLocaleBrandingFilter, type ILocaleBranding, type IMetadataEntity, type IOAuthStatusListArgs, type IOAuthStatusListEntity, type IPartialBackgroundAttributes, type IPartialCredentialBranding, type IPartialCredentialClaim, type IPartialCredentialLocaleBranding, type IPartialImageAttributes, type IPartialImageDimensions, type IPartialIssuerBranding, type IPartialIssuerLocaleBranding, type IPartialTextAttributes, type IRemoveCredentialBrandingArgs, type IRemoveCredentialLocaleBrandingArgs, type IRemoveIssuerBrandingArgs, type IRemoveIssuerLocaleBrandingArgs, type IRemoveStatusListArgs, type IStatusList2021Args, type IStatusList2021Entity, type IStatusListEntity, type IStatusListEntryAvailableArgs, type IStatusListEntryEntity, type ITextAttributes, type IUpdateCredentialBrandingArgs, type IUpdateCredentialLocaleBrandingArgs, type IUpdateIssuerBrandingArgs, type IUpdateIssuerLocaleBrandingArgs, type IUpdateStatusListIndexArgs, type Identity, IdentityEntity, IdentityMetadataItemEntity, IdentityOrigin, ImageAttributesEntity, ImageDimensionsEntity, IssuanceBrandingStore, IssuerBrandingEntity, IssuerLocaleBrandingEntity, MachineStateInfoEntity, MachineStateStore, type MetadataItem, type MetadataTypes, type NaturalPerson, type NonPersistedActivityLoggingEvent, type NonPersistedAuditLoggingEvent, type NonPersistedConnection, type NonPersistedConnectionConfig, type NonPersistedContact, type NonPersistedCorrelationIdentifier, type NonPersistedDidAuthConfig, type NonPersistedDigitalCredential, type NonPersistedElectronicAddress, type NonPersistedIdentity, type NonPersistedMetadataItem, type NonPersistedNaturalPerson, type NonPersistedOpenIdConfig, type NonPersistedOrganization, type NonPersistedParty, type NonPersistedPartyRelationship, type NonPersistedPartyType, type NonPersistedPhysicalAddress, type NonPersistedPresentationDefinitionItem, OAuthStatusListEntity, Oid4vcStateEntity, type OpenIdConfig, OpenIdConfigEntity, type Organization, PDStore, type PartialConnection, type PartialConnectionConfig, type PartialContact, type PartialCorrelationIdentifier, type PartialDidAuthConfig, type PartialElectronicAddress, type PartialIdentity, type PartialMetadataItem, type PartialNaturalPerson, type PartialOpenIdConfig, type PartialOrganization, type PartialParty, type PartialPartyRelationship, type PartialPartyType, type PartialPhysicalAddress, type PartialPresentationDefinitionItem, type Party, PartyEntity, PartyOrigin, type PartyRelationship, type PartyType, PartyTypeType, type PhysicalAddress, PhysicalAddressEntity, type PhysicalAddressType, type PresentationDefinitionItem, PresentationDefinitionItemEntity, type PresentationDefinitionItemFilter, RegulationType, type RemoveCredentialArgs, type RemoveElectronicAddressArgs, type RemoveIdentityArgs, type RemovePartyArgs, type RemovePartyTypeArgs, type RemovePhysicalAddressArgs, type RemoveRelationshipArgs, StatusList2021Entity, StatusListEntity, StatusListEntryEntity, StatusListStore, type StoreActivityEventArgs, type StoreAuditEventArgs, type StoreFindMachineStatesArgs, type StoreMachineStateDeleteArgs, type StoreMachineStateDeleteExpiredArgs, type StoreMachineStateGetArgs, type StoreMachineStateInfo, type StoreMachineStatePersistArgs, type StoreMachineStatesFindActiveArgs, TextAttributesEntity, type UpdateCredentialStateArgs, type UpdateDefinitionArgs, type UpdateElectronicAddressArgs, type UpdateIdentityArgs, type UpdatePartyArgs, type UpdatePartyTypeArgs, type UpdatePhysicalAddressArgs, type UpdateRelationshipArgs, type ValidationConstraint, activityEventEntityFrom, activityEventFrom, auditEventEntityFrom, auditEventFrom, backgroundAttributesEntityFrom, configFrom, connectionEntityFrom, connectionFrom, contactEntityFrom, contactFrom, contactMetadataItemEntityFrom, correlationIdentifierEntityFrom, correlationIdentifierFrom, credentialBrandingEntityFrom, credentialBrandingFrom, credentialClaimsEntityFrom, credentialLocaleBrandingEntityFrom, didAuthConfigEntityFrom, didAuthConfigFrom, digitalCredentialFrom, digitalCredentialsFrom, electronicAddressEntityFrom, electronicAddressFrom, ensureRawDocument, identityEntityFrom, identityFrom, identityMetadataItemEntityFrom, imageAttributesEntityFrom, imageDimensionsEntityFrom, isDidAuthConfig, isHex, isNaturalPerson, isOpenIdConfig, isOrganization, isPresentationDefinitionEqual, issuerBrandingEntityFrom, issuerBrandingFrom, issuerLocaleBrandingEntityFrom, localeBrandingFrom, metadataItemFrom, naturalPersonEntityFrom, naturalPersonFrom, nonPersistedDigitalCredentialEntityFromAddArgs, openIdConfigEntityFrom, openIdConfigFrom, organizationEntityFrom, organizationFrom, parseRawDocument, partyEntityFrom, partyFrom, partyRelationshipEntityFrom, partyRelationshipFrom, partyTypeEntityFrom, partyTypeFrom, physicalAddressEntityFrom, physicalAddressFrom, presentationDefinitionEntityItemFrom, presentationDefinitionItemFrom, textAttributesEntityFrom };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import typeorm, { BaseEntity as BaseEntity$8, FindOptionsOrder, FindOptionsWhere, DataSource, Repository, MigrationInterface, QueryRunner } from 'typeorm';
|
|
2
2
|
import { ManagedIdentifierOptsOrResult } from '@sphereon/ssi-sdk-ext.identifier-resolution';
|
|
3
3
|
import { IIdentifier } from '@veramo/core';
|
|
4
|
-
import { HasherSync, DcqlQueryREST, IIssuer, StatusListDriverType, StatusListCredentialIdMode, CredentialProofFormat, StatusListCredential, StatusListIndexingDirection, StatusPurpose2021,
|
|
4
|
+
import { HasherSync, DcqlQueryREST, StatusListType, IIssuer, StatusListDriverType, StatusListCredentialIdMode, CredentialProofFormat, StatusListCredential, StatusListIndexingDirection, StatusPurpose2021, RequireOneOf, ICredentialStatus, LoggingEventType, LogLevel, System, SubSystem, ActionType, ActionSubType, InitiatorType, SystemCorrelationIdType, OrPromise, OriginalVerifiableCredential, OriginalVerifiablePresentation } from '@sphereon/ssi-types';
|
|
5
5
|
import { AuditLoggingEvent, ActivityLoggingEvent, PartialAuditLoggingEvent, PartialActivityLoggingEvent, PartyCorrelationType, CredentialType } from '@sphereon/ssi-sdk.core';
|
|
6
6
|
import { IPresentationDefinition } from '@sphereon/pex';
|
|
7
7
|
|
|
@@ -754,27 +754,42 @@ declare class StatusListEntryEntity extends BaseEntity$8 {
|
|
|
754
754
|
value?: string;
|
|
755
755
|
}
|
|
756
756
|
|
|
757
|
-
declare
|
|
757
|
+
declare class BitstringStatusListEntryEntity extends StatusListEntryEntity {
|
|
758
|
+
statusPurpose: string;
|
|
759
|
+
bitsPerStatus?: number;
|
|
760
|
+
statusMessage?: Array<BitstringStatusMessage>;
|
|
761
|
+
statusReference?: string | string[];
|
|
762
|
+
}
|
|
758
763
|
|
|
764
|
+
declare const BaseEntity$7: typeof typeorm.BaseEntity;
|
|
759
765
|
declare abstract class StatusListEntity extends BaseEntity$7 {
|
|
760
766
|
id: string;
|
|
761
767
|
correlationId: string;
|
|
762
768
|
length: number;
|
|
769
|
+
type: StatusListType;
|
|
763
770
|
issuer: string | IIssuer;
|
|
764
771
|
driverType: StatusListDriverType;
|
|
765
772
|
credentialIdMode: StatusListCredentialIdMode;
|
|
766
773
|
proofFormat: CredentialProofFormat;
|
|
767
774
|
statusListCredential?: StatusListCredential;
|
|
768
|
-
statusListEntries: StatusListEntryEntity[];
|
|
769
775
|
}
|
|
770
776
|
declare class StatusList2021Entity extends StatusListEntity {
|
|
771
777
|
indexingDirection: StatusListIndexingDirection;
|
|
772
778
|
statusPurpose: StatusPurpose2021;
|
|
779
|
+
statusListEntries: StatusListEntryEntity[];
|
|
773
780
|
}
|
|
774
781
|
declare class OAuthStatusListEntity extends StatusListEntity {
|
|
775
782
|
bitsPerStatus: number;
|
|
776
783
|
expiresAt?: Date;
|
|
777
784
|
}
|
|
785
|
+
declare class BitstringStatusListEntity extends StatusListEntity {
|
|
786
|
+
statusPurpose: string | string[];
|
|
787
|
+
bitsPerStatus?: number;
|
|
788
|
+
validFrom?: Date;
|
|
789
|
+
validUntil?: Date;
|
|
790
|
+
ttl?: number;
|
|
791
|
+
statusListEntries: BitstringStatusListEntryEntity[];
|
|
792
|
+
}
|
|
778
793
|
|
|
779
794
|
interface IStatusListEntity {
|
|
780
795
|
id: string;
|
|
@@ -786,6 +801,7 @@ interface IStatusListEntity {
|
|
|
786
801
|
type: StatusListType;
|
|
787
802
|
proofFormat: CredentialProofFormat;
|
|
788
803
|
statusListCredential?: StatusListCredential;
|
|
804
|
+
bitsPerStatus?: number;
|
|
789
805
|
}
|
|
790
806
|
interface IStatusList2021Entity extends IStatusListEntity {
|
|
791
807
|
indexingDirection: StatusListIndexingDirection;
|
|
@@ -795,6 +811,13 @@ interface IOAuthStatusListEntity extends IStatusListEntity {
|
|
|
795
811
|
bitsPerStatus: number;
|
|
796
812
|
expiresAt?: Date;
|
|
797
813
|
}
|
|
814
|
+
interface IBitstringStatusListEntity extends IStatusListEntity {
|
|
815
|
+
statusPurpose: BitstringStatusPurpose | Array<BitstringStatusPurpose>;
|
|
816
|
+
bitsPerStatus?: number;
|
|
817
|
+
validFrom?: Date;
|
|
818
|
+
validUntil?: Date;
|
|
819
|
+
ttl?: number;
|
|
820
|
+
}
|
|
798
821
|
type IStatusListEntryEntity = RequireOneOf<{
|
|
799
822
|
statusList: StatusListEntity;
|
|
800
823
|
statusListId: string;
|
|
@@ -804,6 +827,39 @@ type IStatusListEntryEntity = RequireOneOf<{
|
|
|
804
827
|
credentialId?: string;
|
|
805
828
|
correlationId?: string;
|
|
806
829
|
}, 'statusList' | 'statusListId'>;
|
|
830
|
+
type BitstringStatusPurpose = 'revocation' | 'suspension' | 'refresh' | 'message' | string;
|
|
831
|
+
type BitstringStatusMessage = {
|
|
832
|
+
status: string;
|
|
833
|
+
message?: string;
|
|
834
|
+
[x: string]: any;
|
|
835
|
+
};
|
|
836
|
+
interface BitstringStatusListEntryCredentialStatus extends ICredentialStatus {
|
|
837
|
+
type: 'BitstringStatusListEntry';
|
|
838
|
+
statusPurpose: BitstringStatusPurpose | Array<BitstringStatusPurpose>;
|
|
839
|
+
statusListIndex: string;
|
|
840
|
+
statusListCredential: string;
|
|
841
|
+
bitsPerStatus?: number;
|
|
842
|
+
statusMessage?: Array<BitstringStatusMessage>;
|
|
843
|
+
statusReference?: string | Array<string>;
|
|
844
|
+
}
|
|
845
|
+
type BitstringStatusListArgs = {
|
|
846
|
+
statusPurpose: BitstringStatusPurpose;
|
|
847
|
+
bitsPerStatus: number;
|
|
848
|
+
ttl?: number;
|
|
849
|
+
validFrom?: Date;
|
|
850
|
+
validUntil?: Date;
|
|
851
|
+
};
|
|
852
|
+
interface IBitstringStatusListEntryEntity {
|
|
853
|
+
statusListId: string;
|
|
854
|
+
statusListIndex: number;
|
|
855
|
+
credentialId?: string;
|
|
856
|
+
credentialHash?: string;
|
|
857
|
+
entryCorrelationId?: string;
|
|
858
|
+
statusPurpose: string;
|
|
859
|
+
bitsPerStatus?: number;
|
|
860
|
+
statusMessage?: Array<BitstringStatusMessage>;
|
|
861
|
+
statusReference?: string | Array<string>;
|
|
862
|
+
}
|
|
807
863
|
|
|
808
864
|
type FindStatusListArgs = FindOptionsWhere<IStatusList2021Entity | IOAuthStatusListEntity>[];
|
|
809
865
|
type FindStatusListEntryArgs = FindOptionsWhere<IStatusListEntryEntity>[] | FindOptionsWhere<IStatusListEntryEntity>;
|
|
@@ -830,7 +886,7 @@ interface IGetStatusListEntriesArgs {
|
|
|
830
886
|
statusListId: string;
|
|
831
887
|
filter?: FindStatusListEntryArgs;
|
|
832
888
|
}
|
|
833
|
-
type IAddStatusListEntryArgs = IStatusListEntryEntity;
|
|
889
|
+
type IAddStatusListEntryArgs = IStatusListEntryEntity | IBitstringStatusListEntryEntity;
|
|
834
890
|
interface IGetStatusListArgs {
|
|
835
891
|
id?: string;
|
|
836
892
|
correlationId?: string;
|
|
@@ -839,8 +895,38 @@ type IRemoveStatusListArgs = IGetStatusListArgs;
|
|
|
839
895
|
interface IGetStatusListsArgs {
|
|
840
896
|
filter?: FindStatusListArgs;
|
|
841
897
|
}
|
|
842
|
-
|
|
843
|
-
|
|
898
|
+
interface IBaseStatusListArgs {
|
|
899
|
+
id: string;
|
|
900
|
+
correlationId: string;
|
|
901
|
+
driverType: StatusListDriverType;
|
|
902
|
+
credentialIdMode: StatusListCredentialIdMode;
|
|
903
|
+
length: number;
|
|
904
|
+
issuer: string | IIssuer;
|
|
905
|
+
type: StatusListType;
|
|
906
|
+
proofFormat: CredentialProofFormat;
|
|
907
|
+
statusListCredential?: StatusListCredential;
|
|
908
|
+
bitsPerStatus?: number;
|
|
909
|
+
}
|
|
910
|
+
type IStatusList2021Args = IBaseStatusListArgs & {
|
|
911
|
+
type: StatusListType.StatusList2021;
|
|
912
|
+
indexingDirection: StatusListIndexingDirection;
|
|
913
|
+
statusPurpose: StatusPurpose2021;
|
|
914
|
+
};
|
|
915
|
+
type IOAuthStatusListArgs = IBaseStatusListArgs & {
|
|
916
|
+
type: StatusListType.OAuthStatusList;
|
|
917
|
+
bitsPerStatus: number;
|
|
918
|
+
expiresAt?: Date;
|
|
919
|
+
};
|
|
920
|
+
type IBitstringStatusListArgs = IBaseStatusListArgs & {
|
|
921
|
+
type: StatusListType.BitstringStatusList;
|
|
922
|
+
statusPurpose: BitstringStatusPurpose | BitstringStatusPurpose[];
|
|
923
|
+
bitsPerStatus?: number;
|
|
924
|
+
validFrom?: Date;
|
|
925
|
+
validUntil?: Date;
|
|
926
|
+
ttl?: number;
|
|
927
|
+
};
|
|
928
|
+
type IAddStatusListArgs = IStatusList2021Args | IOAuthStatusListArgs | IBitstringStatusListArgs;
|
|
929
|
+
type IUpdateStatusListIndexArgs = IAddStatusListArgs;
|
|
844
930
|
|
|
845
931
|
type NonPersistedAuditLoggingEvent = Omit<AuditLoggingEvent, 'id' | 'type'>;
|
|
846
932
|
type NonPersistedActivityLoggingEvent = Omit<ActivityLoggingEvent, 'id' | 'type'>;
|
|
@@ -1422,20 +1508,19 @@ declare class IssuanceBrandingStore extends AbstractIssuanceBrandingStore {
|
|
|
1422
1508
|
}
|
|
1423
1509
|
|
|
1424
1510
|
interface IStatusListStore {
|
|
1425
|
-
getStatusList(args: IGetStatusListArgs): Promise<IStatusListEntity>;
|
|
1426
|
-
getStatusLists(args: IGetStatusListsArgs): Promise<Array<IStatusListEntity>>;
|
|
1511
|
+
getStatusList(args: IGetStatusListArgs): Promise<IStatusListEntity | IBitstringStatusListEntity>;
|
|
1512
|
+
getStatusLists(args: IGetStatusListsArgs): Promise<Array<IStatusListEntity | IBitstringStatusListEntity>>;
|
|
1427
1513
|
removeStatusList(args: IRemoveStatusListArgs): Promise<boolean>;
|
|
1428
|
-
addStatusList(args: IAddStatusListArgs): Promise<IStatusListEntity>;
|
|
1429
|
-
updateStatusList(args: IUpdateStatusListIndexArgs): Promise<IStatusListEntity>;
|
|
1514
|
+
addStatusList(args: IAddStatusListArgs): Promise<IStatusListEntity | IBitstringStatusListEntity>;
|
|
1515
|
+
updateStatusList(args: IUpdateStatusListIndexArgs): Promise<IStatusListEntity | IBitstringStatusListEntity>;
|
|
1430
1516
|
availableStatusListEntries(args: IStatusListEntryAvailableArgs): Promise<number[]>;
|
|
1431
|
-
addStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity>;
|
|
1432
|
-
updateStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity>;
|
|
1433
|
-
getStatusListEntryByIndex(args: IGetStatusListEntryByIndexArgs): Promise<StatusListEntryEntity | undefined>;
|
|
1434
|
-
getStatusListEntryByCredentialId(args: IGetStatusListEntryByCredentialIdArgs): Promise<StatusListEntryEntity | undefined>;
|
|
1517
|
+
addStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity | IBitstringStatusListEntryEntity>;
|
|
1518
|
+
updateStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity | IBitstringStatusListEntryEntity>;
|
|
1519
|
+
getStatusListEntryByIndex(args: IGetStatusListEntryByIndexArgs): Promise<StatusListEntryEntity | BitstringStatusListEntryEntity | undefined>;
|
|
1520
|
+
getStatusListEntryByCredentialId(args: IGetStatusListEntryByCredentialIdArgs): Promise<StatusListEntryEntity | BitstringStatusListEntryEntity | undefined>;
|
|
1435
1521
|
removeStatusListEntryByIndex(args: IGetStatusListEntryByIndexArgs): Promise<boolean>;
|
|
1436
1522
|
removeStatusListEntryByCredentialId(args: IGetStatusListEntryByCredentialIdArgs): Promise<boolean>;
|
|
1437
|
-
getStatusListEntries(args: IGetStatusListEntriesArgs): Promise<IStatusListEntryEntity
|
|
1438
|
-
getStatusList(args: IGetStatusListArgs): Promise<IStatusListEntity>;
|
|
1523
|
+
getStatusListEntries(args: IGetStatusListEntriesArgs): Promise<Array<IStatusListEntryEntity | IBitstringStatusListEntryEntity>>;
|
|
1439
1524
|
}
|
|
1440
1525
|
|
|
1441
1526
|
declare class StatusListStore implements IStatusListStore {
|
|
@@ -1451,22 +1536,22 @@ declare class StatusListStore implements IStatusListStore {
|
|
|
1451
1536
|
* @param args
|
|
1452
1537
|
*/
|
|
1453
1538
|
availableStatusListEntries(args: IStatusListEntryAvailableArgs): Promise<number[]>;
|
|
1454
|
-
addStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity>;
|
|
1455
|
-
updateStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity>;
|
|
1456
|
-
getStatusListEntryByIndex({ statusListId, statusListCorrelationId, statusListIndex, entryCorrelationId, errorOnNotFound, }: IGetStatusListEntryByIndexArgs): Promise<StatusListEntryEntity | undefined>;
|
|
1457
|
-
getStatusListEntryByCredentialId(args: IGetStatusListEntryByCredentialIdArgs): Promise<StatusListEntryEntity | undefined>;
|
|
1539
|
+
addStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity | IBitstringStatusListEntryEntity>;
|
|
1540
|
+
updateStatusListEntry(args: IAddStatusListEntryArgs): Promise<IStatusListEntryEntity | IBitstringStatusListEntryEntity>;
|
|
1541
|
+
getStatusListEntryByIndex({ statusListId, statusListCorrelationId, statusListIndex, entryCorrelationId, errorOnNotFound, }: IGetStatusListEntryByIndexArgs): Promise<StatusListEntryEntity | BitstringStatusListEntryEntity | undefined>;
|
|
1542
|
+
getStatusListEntryByCredentialId(args: IGetStatusListEntryByCredentialIdArgs): Promise<StatusListEntryEntity | BitstringStatusListEntryEntity | undefined>;
|
|
1458
1543
|
removeStatusListEntryByCredentialId(args: IGetStatusListEntryByCredentialIdArgs): Promise<boolean>;
|
|
1459
1544
|
removeStatusListEntryByIndex(args: IGetStatusListEntryByIndexArgs): Promise<boolean>;
|
|
1460
|
-
getStatusListEntries(args: IGetStatusListEntriesArgs): Promise<
|
|
1461
|
-
getStatusList(args: IGetStatusListArgs): Promise<IStatusListEntity>;
|
|
1545
|
+
getStatusListEntries(args: IGetStatusListEntriesArgs): Promise<Array<IStatusListEntryEntity | IBitstringStatusListEntryEntity>>;
|
|
1462
1546
|
private getStatusListEntity;
|
|
1463
|
-
|
|
1547
|
+
getStatusList(args: IGetStatusListArgs): Promise<IStatusListEntity | IBitstringStatusListEntity>;
|
|
1548
|
+
getStatusLists(args: IGetStatusListsArgs): Promise<Array<IStatusListEntity | IBitstringStatusListEntity>>;
|
|
1464
1549
|
addStatusList(args: IAddStatusListArgs): Promise<IStatusListEntity>;
|
|
1465
|
-
updateStatusList(args: IUpdateStatusListIndexArgs): Promise<IStatusListEntity>;
|
|
1550
|
+
updateStatusList(args: IUpdateStatusListIndexArgs): Promise<IStatusListEntity | IBitstringStatusListEntity>;
|
|
1466
1551
|
removeStatusList(args: IRemoveStatusListArgs): Promise<boolean>;
|
|
1467
1552
|
private getDS;
|
|
1468
1553
|
getStatusListRepo(type?: StatusListType): Promise<Repository<StatusListEntity>>;
|
|
1469
|
-
getStatusListEntryRepo(): Promise<Repository<StatusListEntryEntity>>;
|
|
1554
|
+
getStatusListEntryRepo(type?: StatusListType): Promise<Repository<StatusListEntryEntity | BitstringStatusListEntryEntity>>;
|
|
1470
1555
|
}
|
|
1471
1556
|
|
|
1472
1557
|
declare abstract class AbstractEventLoggerStore {
|
|
@@ -1727,4 +1812,4 @@ declare const DataStoreDigitalCredentialEntities: (typeof DigitalCredentialEntit
|
|
|
1727
1812
|
declare const DataStoreMachineStateEntities: (typeof MachineStateInfoEntity)[];
|
|
1728
1813
|
declare const DataStoreEntities: (typeof BaseConfigEntity | typeof ConnectionEntity | typeof PartyEntity | typeof IdentityMetadataItemEntity | typeof CorrelationIdentifierEntity | typeof PartyRelationshipEntity | typeof PartyTypeEntity | typeof BaseContactEntity | typeof ElectronicAddressEntity | typeof PhysicalAddressEntity | typeof ContactMetadataItemEntity | typeof CredentialBrandingEntity | typeof ImageAttributesEntity | typeof ImageDimensionsEntity | typeof BaseLocaleBrandingEntity | typeof IssuerBrandingEntity | typeof TextAttributesEntity | typeof CredentialClaimsEntity | typeof PresentationDefinitionItemEntity | typeof StatusListEntity | typeof StatusListEntryEntity | typeof AuditEventEntity | typeof DigitalCredentialEntity | typeof MachineStateInfoEntity)[];
|
|
1729
1814
|
|
|
1730
|
-
export { AbstractContactStore, AbstractDigitalCredentialStore, AbstractEventLoggerStore, AbstractIssuanceBrandingStore, AbstractPDStore, type AddCredentialArgs, type AddDefinitionArgs, type AddElectronicAddressArgs, type AddIdentityArgs, type AddPartyArgs, type AddPartyTypeArgs, type AddPhysicalAddressArgs, type AddRelationshipArgs, AuditEventEntity, BackgroundAttributesEntity, BaseConfigEntity, BaseContactEntity, BaseLocaleBrandingEntity, type Connection, type ConnectionConfig, ConnectionEntity, ConnectionType, type Contact, ContactMetadataItemEntity, ContactStore, type CorrelationIdentifier, CorrelationIdentifierEntity, CorrelationIdentifierType, CredentialBrandingEntity, CredentialClaimsEntity, CredentialCorrelationType, CredentialDocumentFormat, CredentialLocaleBrandingEntity, CredentialRole, CredentialStateType, DataStoreContactEntities, DataStoreContactMigrations, DataStoreDigitalCredentialEntities, DataStoreDigitalCredentialMigrations, DataStoreEntities, DataStoreEventLoggerEntities, DataStoreEventLoggerMigrations, DataStoreIssuanceBrandingEntities, DataStoreIssuanceBrandingMigrations, DataStoreMachineStateEntities, DataStoreMachineStateMigrations, DataStoreMigrations, DataStoreOid4vcStateEntities, DataStorePresentationDefinitionEntities, DataStorePresentationDefinitionMigrations, DataStoreStatusListEntities, DataStoreStatusListMigrations, type DeleteDefinitionArgs, type DeleteDefinitionsArgs, type DidAuthConfig, DidAuthConfigEntity, type DigitalCredential, DigitalCredentialEntity, DigitalCredentialStore, DocumentType, type ElectronicAddress, ElectronicAddressEntity, type ElectronicAddressType, EventLoggerStore, type FindActivityLoggingEventArgs, type FindAuditLoggingEventArgs, type FindCredentialBrandingArgs, type FindCredentialLocaleBrandingArgs, type FindDefinitionArgs, type FindDigitalCredentialArgs, type FindElectronicAddressArgs, type FindIdentityArgs, type FindIssuerBrandingArgs, type FindIssuerLocaleBrandingArgs, type FindMachineStatesFilterArgs, type FindPartyArgs, type FindPartyTypeArgs, type FindPhysicalAddressArgs, type FindRelationshipArgs, type FindStatusListArgs, type FindStatusListEntryArgs, type GetActivityEventsArgs, type GetAuditEventsArgs, type GetCredentialArgs, type GetCredentialsArgs, type GetCredentialsResponse, type GetDefinitionArgs, type GetDefinitionsArgs, type GetElectronicAddressArgs, type GetElectronicAddressesArgs, type GetIdentitiesArgs, type GetIdentityArgs, type GetPartiesArgs, type GetPartyArgs, type GetPartyTypeArgs, type GetPartyTypesArgs, type GetPhysicalAddressArgs, type GetPhysicalAddressesArgs, type GetRelationshipArgs, type GetRelationshipsArgs, type HasDefinitionArgs, type HasDefinitionsArgs, IAbstractMachineStateStore, type IAddCredentialBrandingArgs, type IAddCredentialLocaleBrandingArgs, type IAddIssuerBrandingArgs, type IAddIssuerLocaleBrandingArgs, type IAddStatusListArgs, type IAddStatusListEntryArgs, type IBackgroundAttributes, type IBasicBackgroundAttributes, type IBasicCredentialBranding, type IBasicCredentialClaim, type IBasicCredentialLocaleBranding, type IBasicImageAttributes, type IBasicImageDimensions, type IBasicIssuerBranding, type IBasicIssuerLocaleBranding, type IBasicTextAttributes, type ICredentialBranding, type ICredentialBrandingFilter, type ICredentialClaim, type ICredentialLocaleBranding, type ICredentialLocaleBrandingFilter, type IGetCredentialBrandingArgs, type IGetCredentialLocaleBrandingArgs, type IGetIssuerBrandingArgs, type IGetIssuerLocaleBrandingArgs, type IGetStatusListArgs, type IGetStatusListEntriesArgs, type IGetStatusListEntryByCredentialIdArgs, type IGetStatusListEntryByIndexArgs, type IGetStatusListsArgs, type IImageAttributes, type IImageDimensions, type IIssuerBranding, type IIssuerBrandingFilter, type IIssuerLocaleBranding, type IIssuerLocaleBrandingFilter, type ILocaleBranding, type IMetadataEntity, type IOAuthStatusListEntity, type IPartialBackgroundAttributes, type IPartialCredentialBranding, type IPartialCredentialClaim, type IPartialCredentialLocaleBranding, type IPartialImageAttributes, type IPartialImageDimensions, type IPartialIssuerBranding, type IPartialIssuerLocaleBranding, type IPartialTextAttributes, type IRemoveCredentialBrandingArgs, type IRemoveCredentialLocaleBrandingArgs, type IRemoveIssuerBrandingArgs, type IRemoveIssuerLocaleBrandingArgs, type IRemoveStatusListArgs, type IStatusList2021Entity, type IStatusListEntity, type IStatusListEntryAvailableArgs, type IStatusListEntryEntity, type ITextAttributes, type IUpdateCredentialBrandingArgs, type IUpdateCredentialLocaleBrandingArgs, type IUpdateIssuerBrandingArgs, type IUpdateIssuerLocaleBrandingArgs, type IUpdateStatusListIndexArgs, type Identity, IdentityEntity, IdentityMetadataItemEntity, IdentityOrigin, ImageAttributesEntity, ImageDimensionsEntity, IssuanceBrandingStore, IssuerBrandingEntity, IssuerLocaleBrandingEntity, MachineStateInfoEntity, MachineStateStore, type MetadataItem, type MetadataTypes, type NaturalPerson, type NonPersistedActivityLoggingEvent, type NonPersistedAuditLoggingEvent, type NonPersistedConnection, type NonPersistedConnectionConfig, type NonPersistedContact, type NonPersistedCorrelationIdentifier, type NonPersistedDidAuthConfig, type NonPersistedDigitalCredential, type NonPersistedElectronicAddress, type NonPersistedIdentity, type NonPersistedMetadataItem, type NonPersistedNaturalPerson, type NonPersistedOpenIdConfig, type NonPersistedOrganization, type NonPersistedParty, type NonPersistedPartyRelationship, type NonPersistedPartyType, type NonPersistedPhysicalAddress, type NonPersistedPresentationDefinitionItem, OAuthStatusListEntity, Oid4vcStateEntity, type OpenIdConfig, OpenIdConfigEntity, type Organization, PDStore, type PartialConnection, type PartialConnectionConfig, type PartialContact, type PartialCorrelationIdentifier, type PartialDidAuthConfig, type PartialElectronicAddress, type PartialIdentity, type PartialMetadataItem, type PartialNaturalPerson, type PartialOpenIdConfig, type PartialOrganization, type PartialParty, type PartialPartyRelationship, type PartialPartyType, type PartialPhysicalAddress, type PartialPresentationDefinitionItem, type Party, PartyEntity, PartyOrigin, type PartyRelationship, type PartyType, PartyTypeType, type PhysicalAddress, PhysicalAddressEntity, type PhysicalAddressType, type PresentationDefinitionItem, PresentationDefinitionItemEntity, type PresentationDefinitionItemFilter, RegulationType, type RemoveCredentialArgs, type RemoveElectronicAddressArgs, type RemoveIdentityArgs, type RemovePartyArgs, type RemovePartyTypeArgs, type RemovePhysicalAddressArgs, type RemoveRelationshipArgs, StatusList2021Entity, StatusListEntity, StatusListEntryEntity, StatusListStore, type StoreActivityEventArgs, type StoreAuditEventArgs, type StoreFindMachineStatesArgs, type StoreMachineStateDeleteArgs, type StoreMachineStateDeleteExpiredArgs, type StoreMachineStateGetArgs, type StoreMachineStateInfo, type StoreMachineStatePersistArgs, type StoreMachineStatesFindActiveArgs, TextAttributesEntity, type UpdateCredentialStateArgs, type UpdateDefinitionArgs, type UpdateElectronicAddressArgs, type UpdateIdentityArgs, type UpdatePartyArgs, type UpdatePartyTypeArgs, type UpdatePhysicalAddressArgs, type UpdateRelationshipArgs, type ValidationConstraint, activityEventEntityFrom, activityEventFrom, auditEventEntityFrom, auditEventFrom, backgroundAttributesEntityFrom, configFrom, connectionEntityFrom, connectionFrom, contactEntityFrom, contactFrom, contactMetadataItemEntityFrom, correlationIdentifierEntityFrom, correlationIdentifierFrom, credentialBrandingEntityFrom, credentialBrandingFrom, credentialClaimsEntityFrom, credentialLocaleBrandingEntityFrom, didAuthConfigEntityFrom, didAuthConfigFrom, digitalCredentialFrom, digitalCredentialsFrom, electronicAddressEntityFrom, electronicAddressFrom, ensureRawDocument, identityEntityFrom, identityFrom, identityMetadataItemEntityFrom, imageAttributesEntityFrom, imageDimensionsEntityFrom, isDidAuthConfig, isHex, isNaturalPerson, isOpenIdConfig, isOrganization, isPresentationDefinitionEqual, issuerBrandingEntityFrom, issuerBrandingFrom, issuerLocaleBrandingEntityFrom, localeBrandingFrom, metadataItemFrom, naturalPersonEntityFrom, naturalPersonFrom, nonPersistedDigitalCredentialEntityFromAddArgs, openIdConfigEntityFrom, openIdConfigFrom, organizationEntityFrom, organizationFrom, parseRawDocument, partyEntityFrom, partyFrom, partyRelationshipEntityFrom, partyRelationshipFrom, partyTypeEntityFrom, partyTypeFrom, physicalAddressEntityFrom, physicalAddressFrom, presentationDefinitionEntityItemFrom, presentationDefinitionItemFrom, textAttributesEntityFrom };
|
|
1815
|
+
export { AbstractContactStore, AbstractDigitalCredentialStore, AbstractEventLoggerStore, AbstractIssuanceBrandingStore, AbstractPDStore, type AddCredentialArgs, type AddDefinitionArgs, type AddElectronicAddressArgs, type AddIdentityArgs, type AddPartyArgs, type AddPartyTypeArgs, type AddPhysicalAddressArgs, type AddRelationshipArgs, AuditEventEntity, BackgroundAttributesEntity, BaseConfigEntity, BaseContactEntity, BaseLocaleBrandingEntity, type BitstringStatusListArgs, BitstringStatusListEntity, type BitstringStatusListEntryCredentialStatus, BitstringStatusListEntryEntity, type BitstringStatusMessage, type BitstringStatusPurpose, type Connection, type ConnectionConfig, ConnectionEntity, ConnectionType, type Contact, ContactMetadataItemEntity, ContactStore, type CorrelationIdentifier, CorrelationIdentifierEntity, CorrelationIdentifierType, CredentialBrandingEntity, CredentialClaimsEntity, CredentialCorrelationType, CredentialDocumentFormat, CredentialLocaleBrandingEntity, CredentialRole, CredentialStateType, DataStoreContactEntities, DataStoreContactMigrations, DataStoreDigitalCredentialEntities, DataStoreDigitalCredentialMigrations, DataStoreEntities, DataStoreEventLoggerEntities, DataStoreEventLoggerMigrations, DataStoreIssuanceBrandingEntities, DataStoreIssuanceBrandingMigrations, DataStoreMachineStateEntities, DataStoreMachineStateMigrations, DataStoreMigrations, DataStoreOid4vcStateEntities, DataStorePresentationDefinitionEntities, DataStorePresentationDefinitionMigrations, DataStoreStatusListEntities, DataStoreStatusListMigrations, type DeleteDefinitionArgs, type DeleteDefinitionsArgs, type DidAuthConfig, DidAuthConfigEntity, type DigitalCredential, DigitalCredentialEntity, DigitalCredentialStore, DocumentType, type ElectronicAddress, ElectronicAddressEntity, type ElectronicAddressType, EventLoggerStore, type FindActivityLoggingEventArgs, type FindAuditLoggingEventArgs, type FindCredentialBrandingArgs, type FindCredentialLocaleBrandingArgs, type FindDefinitionArgs, type FindDigitalCredentialArgs, type FindElectronicAddressArgs, type FindIdentityArgs, type FindIssuerBrandingArgs, type FindIssuerLocaleBrandingArgs, type FindMachineStatesFilterArgs, type FindPartyArgs, type FindPartyTypeArgs, type FindPhysicalAddressArgs, type FindRelationshipArgs, type FindStatusListArgs, type FindStatusListEntryArgs, type GetActivityEventsArgs, type GetAuditEventsArgs, type GetCredentialArgs, type GetCredentialsArgs, type GetCredentialsResponse, type GetDefinitionArgs, type GetDefinitionsArgs, type GetElectronicAddressArgs, type GetElectronicAddressesArgs, type GetIdentitiesArgs, type GetIdentityArgs, type GetPartiesArgs, type GetPartyArgs, type GetPartyTypeArgs, type GetPartyTypesArgs, type GetPhysicalAddressArgs, type GetPhysicalAddressesArgs, type GetRelationshipArgs, type GetRelationshipsArgs, type HasDefinitionArgs, type HasDefinitionsArgs, IAbstractMachineStateStore, type IAddCredentialBrandingArgs, type IAddCredentialLocaleBrandingArgs, type IAddIssuerBrandingArgs, type IAddIssuerLocaleBrandingArgs, type IAddStatusListArgs, type IAddStatusListEntryArgs, type IBackgroundAttributes, type IBasicBackgroundAttributes, type IBasicCredentialBranding, type IBasicCredentialClaim, type IBasicCredentialLocaleBranding, type IBasicImageAttributes, type IBasicImageDimensions, type IBasicIssuerBranding, type IBasicIssuerLocaleBranding, type IBasicTextAttributes, type IBitstringStatusListArgs, type IBitstringStatusListEntity, type IBitstringStatusListEntryEntity, type ICredentialBranding, type ICredentialBrandingFilter, type ICredentialClaim, type ICredentialLocaleBranding, type ICredentialLocaleBrandingFilter, type IGetCredentialBrandingArgs, type IGetCredentialLocaleBrandingArgs, type IGetIssuerBrandingArgs, type IGetIssuerLocaleBrandingArgs, type IGetStatusListArgs, type IGetStatusListEntriesArgs, type IGetStatusListEntryByCredentialIdArgs, type IGetStatusListEntryByIndexArgs, type IGetStatusListsArgs, type IImageAttributes, type IImageDimensions, type IIssuerBranding, type IIssuerBrandingFilter, type IIssuerLocaleBranding, type IIssuerLocaleBrandingFilter, type ILocaleBranding, type IMetadataEntity, type IOAuthStatusListArgs, type IOAuthStatusListEntity, type IPartialBackgroundAttributes, type IPartialCredentialBranding, type IPartialCredentialClaim, type IPartialCredentialLocaleBranding, type IPartialImageAttributes, type IPartialImageDimensions, type IPartialIssuerBranding, type IPartialIssuerLocaleBranding, type IPartialTextAttributes, type IRemoveCredentialBrandingArgs, type IRemoveCredentialLocaleBrandingArgs, type IRemoveIssuerBrandingArgs, type IRemoveIssuerLocaleBrandingArgs, type IRemoveStatusListArgs, type IStatusList2021Args, type IStatusList2021Entity, type IStatusListEntity, type IStatusListEntryAvailableArgs, type IStatusListEntryEntity, type ITextAttributes, type IUpdateCredentialBrandingArgs, type IUpdateCredentialLocaleBrandingArgs, type IUpdateIssuerBrandingArgs, type IUpdateIssuerLocaleBrandingArgs, type IUpdateStatusListIndexArgs, type Identity, IdentityEntity, IdentityMetadataItemEntity, IdentityOrigin, ImageAttributesEntity, ImageDimensionsEntity, IssuanceBrandingStore, IssuerBrandingEntity, IssuerLocaleBrandingEntity, MachineStateInfoEntity, MachineStateStore, type MetadataItem, type MetadataTypes, type NaturalPerson, type NonPersistedActivityLoggingEvent, type NonPersistedAuditLoggingEvent, type NonPersistedConnection, type NonPersistedConnectionConfig, type NonPersistedContact, type NonPersistedCorrelationIdentifier, type NonPersistedDidAuthConfig, type NonPersistedDigitalCredential, type NonPersistedElectronicAddress, type NonPersistedIdentity, type NonPersistedMetadataItem, type NonPersistedNaturalPerson, type NonPersistedOpenIdConfig, type NonPersistedOrganization, type NonPersistedParty, type NonPersistedPartyRelationship, type NonPersistedPartyType, type NonPersistedPhysicalAddress, type NonPersistedPresentationDefinitionItem, OAuthStatusListEntity, Oid4vcStateEntity, type OpenIdConfig, OpenIdConfigEntity, type Organization, PDStore, type PartialConnection, type PartialConnectionConfig, type PartialContact, type PartialCorrelationIdentifier, type PartialDidAuthConfig, type PartialElectronicAddress, type PartialIdentity, type PartialMetadataItem, type PartialNaturalPerson, type PartialOpenIdConfig, type PartialOrganization, type PartialParty, type PartialPartyRelationship, type PartialPartyType, type PartialPhysicalAddress, type PartialPresentationDefinitionItem, type Party, PartyEntity, PartyOrigin, type PartyRelationship, type PartyType, PartyTypeType, type PhysicalAddress, PhysicalAddressEntity, type PhysicalAddressType, type PresentationDefinitionItem, PresentationDefinitionItemEntity, type PresentationDefinitionItemFilter, RegulationType, type RemoveCredentialArgs, type RemoveElectronicAddressArgs, type RemoveIdentityArgs, type RemovePartyArgs, type RemovePartyTypeArgs, type RemovePhysicalAddressArgs, type RemoveRelationshipArgs, StatusList2021Entity, StatusListEntity, StatusListEntryEntity, StatusListStore, type StoreActivityEventArgs, type StoreAuditEventArgs, type StoreFindMachineStatesArgs, type StoreMachineStateDeleteArgs, type StoreMachineStateDeleteExpiredArgs, type StoreMachineStateGetArgs, type StoreMachineStateInfo, type StoreMachineStatePersistArgs, type StoreMachineStatesFindActiveArgs, TextAttributesEntity, type UpdateCredentialStateArgs, type UpdateDefinitionArgs, type UpdateElectronicAddressArgs, type UpdateIdentityArgs, type UpdatePartyArgs, type UpdatePartyTypeArgs, type UpdatePhysicalAddressArgs, type UpdateRelationshipArgs, type ValidationConstraint, activityEventEntityFrom, activityEventFrom, auditEventEntityFrom, auditEventFrom, backgroundAttributesEntityFrom, configFrom, connectionEntityFrom, connectionFrom, contactEntityFrom, contactFrom, contactMetadataItemEntityFrom, correlationIdentifierEntityFrom, correlationIdentifierFrom, credentialBrandingEntityFrom, credentialBrandingFrom, credentialClaimsEntityFrom, credentialLocaleBrandingEntityFrom, didAuthConfigEntityFrom, didAuthConfigFrom, digitalCredentialFrom, digitalCredentialsFrom, electronicAddressEntityFrom, electronicAddressFrom, ensureRawDocument, identityEntityFrom, identityFrom, identityMetadataItemEntityFrom, imageAttributesEntityFrom, imageDimensionsEntityFrom, isDidAuthConfig, isHex, isNaturalPerson, isOpenIdConfig, isOrganization, isPresentationDefinitionEqual, issuerBrandingEntityFrom, issuerBrandingFrom, issuerLocaleBrandingEntityFrom, localeBrandingFrom, metadataItemFrom, naturalPersonEntityFrom, naturalPersonFrom, nonPersistedDigitalCredentialEntityFromAddArgs, openIdConfigEntityFrom, openIdConfigFrom, organizationEntityFrom, organizationFrom, parseRawDocument, partyEntityFrom, partyFrom, partyRelationshipEntityFrom, partyRelationshipFrom, partyTypeEntityFrom, partyTypeFrom, physicalAddressEntityFrom, physicalAddressFrom, presentationDefinitionEntityItemFrom, presentationDefinitionItemFrom, textAttributesEntityFrom };
|