Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/stupid-eyes-mate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@credebl/ssi-mobile": major
"@credebl/digilocker-mobile": major
---

fix: nvmrc and changelog entry
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

30 changes: 30 additions & 0 deletions packages/digilocker/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# @credebl/digilocker-mobile

[![npm](https://img.shields.io/npm/v/@credebl/digilocker-mobile.svg)](https://www.npmjs.com/package/@credebl/digilocker-mobile)


## Installing

```sh
npm install @credebl/digilocker-mobile

# or

yarn add @credebl/digilocker-mobile

# or

pnpm add @credebl/digilocker-mobile
```

## Peer Dependencies

- We also need to add the peer dependencies of this package to our App.

```
"dependencies": {
...
"react-native": "*",
...
}
```
5 changes: 0 additions & 5 deletions packages/ssi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,3 @@

- 73355e1: chore: add changeset to release packages

## 1.0.1

### Patch Changes

- fix: presentation exchange handling when multiple mdocs in presentation definition
4 changes: 2 additions & 2 deletions packages/ssi/src/openid/metadata.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import type { SdJwtVcRecord, W3cCredentialRecord } from '@credo-ts/core'
import type { OpenId4VciCredentialSupported, OpenId4VciIssuerMetadataDisplay } from '@credo-ts/openid4vc'
import type { EndpointMetadataResult } from '@sphereon/oid4vci-common'

export interface OpenId4VcCredentialMetadata {
credential: {
Expand All @@ -17,7 +16,8 @@ export const openId4VcCredentialMetadataKey = '_Adeya/openId4VcCredentialMetadat

export function extractOpenId4VcCredentialMetadata(
credentialMetadata: OpenId4VciCredentialSupported,
serverMetadata: EndpointMetadataResult
// biome-ignore lint/suspicious/noExplicitAny: We need to use any here because the type is not exported from the package.
serverMetadata: any
): OpenId4VcCredentialMetadata {
return {
credential: {
Expand Down