Skip to content

Commit

Permalink
chore: fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nklomp committed Aug 11, 2024
1 parent e2cc7f6 commit 9e673b8
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
OpenId4VCIVersion,
ProofOfPossession,
} from '@sphereon/oid4vci-common'
import { CredentialOfferSession } from '@sphereon/oid4vci-common/dist'
import { CredentialOfferSession } from '@sphereon/oid4vci-common'
import { CredentialSupportedBuilderV1_13, VcIssuer, VcIssuerBuilder } from '@sphereon/oid4vci-issuer'
import { MemoryStates } from '@sphereon/oid4vci-issuer'
import { CredentialDataSupplierResult } from '@sphereon/oid4vci-issuer/dist/types'
Expand Down
2 changes: 1 addition & 1 deletion packages/client/lib/CredentialRequestClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
UniformCredentialRequest,
URL_NOT_VALID,
} from '@sphereon/oid4vci-common';
import { ExperimentalSubjectIssuance } from '@sphereon/oid4vci-common/dist/experimental/holder-vci';
import { ExperimentalSubjectIssuance } from '@sphereon/oid4vci-common';
import { CredentialFormat } from '@sphereon/ssi-types';
import Debug from 'debug';

Expand Down
4 changes: 2 additions & 2 deletions packages/issuer/lib/VcIssuer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ import {
TYP_ERROR,
URIState,
} from '@sphereon/oid4vci-common'
import { CredentialEventNames, CredentialOfferEventNames, EVENTS } from '@sphereon/oid4vci-common/dist/events'
import { CredentialIssuerMetadataOptsV1_0_13 } from '@sphereon/oid4vci-common/dist/types/v1_0_13.types'
import { CredentialEventNames, CredentialOfferEventNames, EVENTS } from '@sphereon/oid4vci-common'
import { CredentialIssuerMetadataOptsV1_0_13 } from '@sphereon/oid4vci-common'
import { CompactSdJwtVc, CredentialMapper, InitiatorType, SubSystem, System, W3CVerifiableCredential } from '@sphereon/ssi-types'

import { assertValidPinNumber, createCredentialOfferObject, createCredentialOfferURIFromObject } from './functions'
Expand Down
2 changes: 1 addition & 1 deletion packages/issuer/lib/builder/VcIssuerBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
TxCode,
URIState,
} from '@sphereon/oid4vci-common'
import { CredentialIssuerMetadataOptsV1_0_13 } from '@sphereon/oid4vci-common/dist/types/v1_0_13.types'
import { CredentialIssuerMetadataOptsV1_0_13 } from '@sphereon/oid4vci-common'

import { VcIssuer } from '../VcIssuer'
import { MemoryStates } from '../state-manager'
Expand Down
2 changes: 1 addition & 1 deletion packages/issuer/lib/state-manager/LookupStateManager.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// noinspection ES6MissingAwait

import { IStateManager } from '@sphereon/oid4vci-common'
import { StateType } from '@sphereon/oid4vci-common/dist/types/StateManager.types'
import { StateType } from '@sphereon/oid4vci-common'

export class LookupStateManager<K extends StateType, V extends StateType> implements IStateManager<V> {
constructor(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { W3CVerifiableCredential } from '@sphereon/ssi-types';
import { BaseJWK } from 'common/dist';
import { BaseJWK } from 'common';

import { ExperimentalSubjectIssuance } from '../experimental/holder-vci';

Expand Down
2 changes: 1 addition & 1 deletion packages/oid4vci-common/lib/types/v1_0_13.types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { JWK } from 'common/dist';
import { JWK } from 'common';

import { ExperimentalSubjectIssuance } from '../experimental/holder-vci';

Expand Down

0 comments on commit 9e673b8

Please sign in to comment.