Skip to content

Commit

Permalink
Merge pull request #93 from TimoGlastra/fix/enum-type
Browse files Browse the repository at this point in the history
fix: enum type
  • Loading branch information
nklomp authored Feb 29, 2024
2 parents c0bd6b1 + c39d8e1 commit 8e592ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/common/lib/types/StateManager.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface CredentialOfferSession extends StateType {
export enum IssueStatus {
OFFER_CREATED = 'OFFER_CREATED',
OFFER_URI_RETRIEVED = 'OFFER_URI_RETRIEVED', // This state is optional. as an offer uri is optional
ACCESS_TOKEN_REQUESTED = 'ACCESS_TOKEN_CREATED', // Optional state, given the token endpoint could also be on a separate AS
ACCESS_TOKEN_REQUESTED = 'ACCESS_TOKEN_REQUESTED', // Optional state, given the token endpoint could also be on a separate AS
ACCESS_TOKEN_CREATED = 'ACCESS_TOKEN_CREATED', // Optional state, given the token endpoint could also be on a separate AS
CREDENTIAL_REQUEST_RECEIVED = 'CREDENTIAL_REQUEST_RECEIVED', // Credential request received. Next state would either be error or issued
CREDENTIAL_ISSUED = 'CREDENTIAL_ISSUED',
Expand Down

0 comments on commit 8e592ac

Please sign in to comment.