diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml
index fc65ed39..13eda52f 100644
--- a/.github/workflows/continuous-integration.yml
+++ b/.github/workflows/continuous-integration.yml
@@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
- node-version: 16.x
+ node-version: 18.x
cache: yarn
# ignore scripts as indy-sdk will try to build and we don't have libindy
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 53d465db..a08c2011 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
- node-version: 16.x
+ node-version: 18.x
cache: yarn
# ignore scripts as indy-sdk will try to build and we don't have libindy
diff --git a/guides/extensions/push-notifications.md b/guides/extensions/push-notifications.md
index ffb99f82..51d41154 100644
--- a/guides/extensions/push-notifications.md
+++ b/guides/extensions/push-notifications.md
@@ -4,7 +4,7 @@ The Push Notifications plugin package provides a way for you to register your AP
:::note
-This document is for version **`0.5.x`** of the `@aries-framework/push-notifications` package, that works with `@aries-framework/core` version **`0.4.x`**. Extension packages (such as Push Notifications) are versioned separately from the core packages.
+This document is for version **`0.5.x`** of the `@credo-ts/push-notifications` package, that works with `@credo-ts/core` version **`0.4.x`**. Extension packages (such as Push Notifications) are versioned separately from the core packages.
:::
@@ -17,13 +17,13 @@ To add the Push Notifications plugin package to your existing project simply run
## npm
```sh
-npm i @aries-framework/push-notifications
+npm i @credo-ts/push-notifications
```
## Yarn
```sh
-yarn add @aries-framework/push-notifications
+yarn add @credo-ts/push-notifications
```
@@ -31,8 +31,8 @@ yarn add @aries-framework/push-notifications
## Usage
```ts
-import { PushNotificationsApnsModule, PushNotificationsFcmModule } from '@aries-framework/push-notifications'
-import { } from '@aries-framework/core'
+import { PushNotificationsApnsModule, PushNotificationsFcmModule } from '@credo-ts/push-notifications'
+import { } from '@credo-ts/core'
const agent = new Agent({
/** agent config... */,
diff --git a/guides/extensions/react-hooks.md b/guides/extensions/react-hooks.md
index f8e16a0d..7a0cae57 100644
--- a/guides/extensions/react-hooks.md
+++ b/guides/extensions/react-hooks.md
@@ -6,7 +6,7 @@ These hooks provide a simple way to query agent data in a client application, al
:::note
-This document is for version **`0.5.x`** of the `@aries-framework/react-hooks` package, that works with `@aries-framework/core` version **`0.4.x`**. Extension packages (such as React Hooks) are versioned separately from the core packages.
+This document is for version **`0.5.x`** of the `@credo-ts/react-hooks` package, that works with `@credo-ts/core` version **`0.4.x`**. Extension packages (such as React Hooks) are versioned separately from the core packages.
:::
@@ -19,13 +19,13 @@ To add the React Hooks package to your existing project simply run:
## npm
```sh
-npm i @aries-framework/react-hooks@^0.5
+npm i @credo-ts/react-hooks@^0.5
```
## Yarn
```sh
-yarn add @aries-framework/react-hooks@^0.5
+yarn add @credo-ts/react-hooks@^0.5
```
@@ -47,13 +47,13 @@ import AgentProvider, {
useProofs,
useProofById,
useProofByState,
-} from '@aries-framework/react-hooks'
+} from '@credo-ts/react-hooks'
```
First step is to wrap your entire app in our ``. The provider takes an initialized agent. The base of your app should look something like this:
```tsx
-import AgentProvider from '@aries-framework/react-hooks'
+import AgentProvider from '@credo-ts/react-hooks'
const App = () => {
const [agent, setAgent] = useState(undefined)
@@ -83,7 +83,7 @@ The `useAgent` hook returns `{ agent, loading }` so anytime you need access to a
The following is an example of how you could use the `useConnections` hook to render a full list of all a user's connections.
```ts
-import { useConnections } from '@aries-framework/react-hooks'
+import { useConnections } from '@credo-ts/react-hooks'
const MyConnectionsComponent = () => {
// all base hooks return an array of objects and a loading boolean
diff --git a/guides/extensions/redux-store.md b/guides/extensions/redux-store.md
index 70ad2b11..c460f67e 100644
--- a/guides/extensions/redux-store.md
+++ b/guides/extensions/redux-store.md
@@ -6,7 +6,7 @@ The Redux Store allows you to integrate state management for the most important
:::note
-This document is for version **`0.4.x`** of the `@aries-framework/redux-store` package, that works with `@aries-framework/core` version **`0.4.x`**. Extension packages (such as Redux Store) are versioned separately from the core packages.
+This document is for version **`0.4.x`** of the `@credo-ts/redux-store` package, that works with `@credo-ts/core` version **`0.4.x`**. Extension packages (such as Redux Store) are versioned separately from the core packages.
:::
@@ -19,13 +19,13 @@ To add the Redux Store package to your existing project simply run:
## npm
```sh
-npm i @aries-framework/redux-store
+npm i @credo-ts/redux-store
```
## Yarn
```sh
-yarn add @aries-framework/redux-store
+yarn add @credo-ts/redux-store
```
diff --git a/guides/extensions/rest.md b/guides/extensions/rest.md
index fb7b31a4..9dce81e3 100644
--- a/guides/extensions/rest.md
+++ b/guides/extensions/rest.md
@@ -10,7 +10,7 @@ The Credo REST API is the most convenient way for self-sovereign identity (SSI)
:::danger
-The `@aries-framework/rest` package has not been updated to work with the latest version (**`0.4.x`**) of `@aries-framework/core`. The documentation in this section is for version **`0.9.x`** of the `@aries-framework/rest` package, that works with `@aries-framework/core` version **`0.2.x`**. Extension packages (such as REST API) are versioned separately from the core packages.
+The `@credo-ts/rest` package has not been updated to work with the latest version (**`0.4.x`**) of `@credo-ts/core`. The documentation in this section is for version **`0.9.x`** of the `@credo-ts/rest` package, that works with `@credo-ts/core` version **`0.2.x`**. Extension packages (such as REST API) are versioned separately from the core packages.
:::
@@ -31,7 +31,7 @@ You can do this directly on your machine.
After installing and confirming that Libindy is installed, simply run:
```sh
-npx -p @aries-framework/rest afj-rest start \
+npx -p @credo-ts/rest credo-rest start \
--label "Credo Rest" \
--wallet-id "walletId" \
--wallet-key "walletKey" \
@@ -48,5 +48,5 @@ The REST API provides an OpenAPI schema that can easily be viewed using the Swag
To find out all available configuration options from the CLI, you can run the CLI command with `--help`. This will print a full list of all available options.
```sh
-npx -p @aries-framework/rest afj-rest start --help
+npx -p @credo-ts/rest afj-rest start --help
```
diff --git a/guides/features/aries.md b/guides/features/aries.md
new file mode 100644
index 00000000..6871f38a
--- /dev/null
+++ b/guides/features/aries.md
@@ -0,0 +1,42 @@
+# Hyperledger Aries and Aries Interop Profile
+
+Initially, Credo was built as an Hyperledger Aries framework, focusing on implementing the [Aries RFCs](https://github.com/hyperledger/aries-rfcs) and supporting the [Aries Interop Profile](https://github.com/hyperledger/aries-rfcs/tree/main/concepts/0302-aries-interop-profile).
+
+Support for Hyperledger Aries, DIDComm and AnonCreds is at the core of Credo, and thus if you're building an identity solution supporting these standards, Credo is a great fit.
+
+## Aries Interop Profile
+
+Credo currently has **full support for [Aries Interop Profile 1.0](https://github.com/hyperledger/aries-rfcs/tree/main/concepts/0302-aries-interop-profile#aries-interop-profile-version-10) (AIP 1)** as well as **most of the features from [Aries Interop Profile 2.0](https://github.com/hyperledger/aries-rfcs/tree/main/concepts/0302-aries-interop-profile#aries-interop-profile-version-20) (AIP 2)**
+
+The following table lists which parts of AIP 2 are supported by Credo:
+
+| Feature | Support | Notes |
+| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| [Base Requirements](https://github.com/hyperledger/aries-rfcs/tree/main/concepts/0302-aries-interop-profile#base-requirements) | ✅ | |
+| [Mediator Coordination](https://github.com/hyperledger/aries-rfcs/tree/main/concepts/0302-aries-interop-profile#mediate-mediator-coordination) | ✅ | |
+| [Indy Based Credentials](https://github.com/hyperledger/aries-rfcs/tree/main/concepts/0302-aries-interop-profile#indycred-indy-based-credentials) | ✅ | Also support for the newer ledger-agnostic [AnonCreds attachment format](https://github.com/hyperledger/aries-rfcs/tree/main/features/0771-anoncreds-attachments) |
+| [JSON-LD Based Credentials](https://github.com/hyperledger/aries-rfcs/tree/main/features/0771-anoncreds-attachments) | ✅ | |
+| [BBS+ Based Credentials](https://github.com/hyperledger/aries-rfcs/tree/main/concepts/0302-aries-interop-profile#bbscred-bbs-based-credentials) | ✅ | |
+| [Chat related features](https://github.com/hyperledger/aries-rfcs/tree/main/concepts/0302-aries-interop-profile#chat-chat-related-features) | ✅ | |
+| [DIDCommm v2 Prep](https://github.com/hyperledger/aries-rfcs/tree/main/concepts/0302-aries-interop-profile#didcommv2prep-didcomm-v2-prep) | ❌ | |
+
+## Additional Aries RFCs
+
+In addition to the Aries RFCs listed by the Aries Interop Profile, Credo also supports the following Aries RFCs:
+
+| Aries RFC | Support | Notes |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | ----- |
+| [Aries RFC 0212 Pickup V1](https://github.com/hyperledger/aries-rfcs/tree/main/features/0212-pickup) | ✅ | |
+| [Aries RFC 0685 Pickup V2](https://github.com/hyperledger/aries-rfcs/tree/main/features/0685-pickup-v2) | ✅ | |
+| [Aries RFC 0721 Revocation Notification V2](https://github.com/hyperledger/aries-rfcs/tree/be8c7bf856577745e0165e9cda0918fa554d120e/features/0721-revocation-notification-v2) | ✅ | |
+| [Aries RFC 0771: AnonCreds Attachment Format](https://github.com/hyperledger/aries-rfcs/tree/be8c7bf856577745e0165e9cda0918fa554d120e/features/0771-anoncreds-attachments) | ✅ | |
+| [Aries RFC 0794: DID Rotate V1](https://github.com/hyperledger/aries-rfcs/blob/main/features/0794-did-rotate/README.md) | ✅ | |
+
+## Divergence from Aries RFCs
+
+Although Credo tries to follow the standards as described in the Aries RFCs as much as possible, some features in Credo slightly diverge from the written spec. Below is an overview of the features that diverge from the spec, their impact and the reasons for diverging.
+
+| Feature | Impact | Reason |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| Support for `imageUrl` attribute in connection invitation and connection request | Properties that are not recognized should be ignored, meaning this shouldn't limit interoperability between agents. As the image url is self-attested it could give a false sense of trust. Better, credential based, method for visually identifying an entity are not present yet. | Even though not documented, almost all agents support this feature. Not including this feature means Credo is lacking in features in comparison to other implementations. |
+| Revocation Notification v1 uses a different `thread_id` format ( `indy::::`) than specified in the Aries RFC | Any agents adhering to the [revocation notification v1 RFC](https://github.com/hyperledger/aries-rfcs/tree/main/features/0183-revocation-notification) will not be interoperable with Credo. However, revocation notification is considered an optional portion of revocation, therefore this will not break core revocation behavior. Ideally agents should use and implement revocation notification v2. | Actual implementations (ACA-Py) of revocation notification v1 so far have implemented this different format, so this format change was made to remain interoperable. |
diff --git a/guides/features/credentials.md b/guides/features/credentials.md
new file mode 100644
index 00000000..d346ac09
--- /dev/null
+++ b/guides/features/credentials.md
@@ -0,0 +1,25 @@
+# Verifiable Credentials
+
+One of the main features of Credo is the issuance and verification of Verifiable Credentials.
+
+## W3C Verifiable Credentials
+
+[W3C Verifiable Credentials](https://www.w3.org/TR/vc-data-model/) are probably the most widely known credential format, and defined the World Wide Web Consortium (W3C).
+
+Credo currently supports the issuance and verification of W3C Verifiable Credentials according to the **Data Model v1.1**, and support both the **Linked Data Proof** and **Json Web Token (JWT)** proof formats.
+
+**Issuance of W3C JWT credentials is not supported over DIDComm**, while verification **is supported**
+
+## SD-JWT VC
+
+Selective Disclosure JWT Verifiable Credentials are a special type of JWT Verifiable Credentials, that allow for selective disclosure of the claims in the credential.
+
+Credo currently supports [SD-JWT-based Verifiable Credentials (SD-JWT VC) - Draft 01](https://www.ietf.org/archive/id/draft-ietf-oauth-sd-jwt-vc-01.html).
+
+**Issuance of SD-JWT credentials is not supported over DIDComm**, while verification **is supported**.
+
+## AnonCreds
+
+Credo supports the issuance and verification of [AnonCreds](https://hyperledger.github.io/anoncreds-spec/) credentials. AnonCreds credentials are a bit 'heavier' to implement and support than other credential formats, but allow for the best unlinkability.
+
+Issuance and verification of AnonCreds credentials is **only available over DIDComm**.
diff --git a/guides/features/dids.md b/guides/features/dids.md
new file mode 100644
index 00000000..62ea60b1
--- /dev/null
+++ b/guides/features/dids.md
@@ -0,0 +1,21 @@
+# Decentralized Identifiers
+
+[Decentralized identifiers](https://www.w3.org/TR/did-core/) are a core components of Credo, and used everywhere in the framework.
+
+The base DID implementation allows all components within the framework (whether it be credential signing, sending messages over DIDComm, or verifying a SIOPv2 ID Token) to leverage DIDs. The pluggable DID Resolver and DID Registrar interfaces allow for easy extension of the supported DID methods.
+
+In addition, any DID can be imported into the framework, meaning it can be used for signing of credentials and DIDComm, without needing a DID Registrar to register the DID.
+
+## Supported DID Methods
+
+Currently the following DID methods are supported by Credo:
+
+| Method | Note |
+| ----------- | ------------------------------------------------------------------------------------------------------------ |
+| `did:key` | |
+| `did:jwk` | |
+| `did:peer` | Not supported for OpenID4VC |
+| `did:web` | No registrar available, but you can use the `DidDocumentBuilder` to build and later import the DID Document. |
+| `did:cheqd` | Available through the `@credo-ts/cheqd` package. |
+| `did:indy` | Available through the `@credo-ts/indy-vdr` package. |
+| `did:sov` | Available through the `@credo-ts/indy-vdr` package. |
diff --git a/guides/features/index.md b/guides/features/index.md
new file mode 100644
index 00000000..ef8d22e4
--- /dev/null
+++ b/guides/features/index.md
@@ -0,0 +1,7 @@
+import DocCardList from '@theme/DocCardList';
+
+# Supported Features
+
+This section tries to list all the standards and features that are supported by Credo.
+
+
diff --git a/guides/features/openid4vc.md b/guides/features/openid4vc.md
new file mode 100644
index 00000000..37d5d522
--- /dev/null
+++ b/guides/features/openid4vc.md
@@ -0,0 +1,29 @@
+# OpenID for Verifiable Credentials
+
+Since Credo 0.4, support was added to receive credentials using OpenID for Verifiable Credential Issuance, and since 0.5 support was added for all the other OpenID for Verifiable Credential flows.
+
+This means Credo has support for [OpenID for Verifiable Credential Issuance](https://openid.net/specs/openid-4-verifiable-credential-issuance-1_0.html), [OpenID for Verifiable Presentations](https://openid.net/specs/openid-4-verifiable-presentations-1_0.html), and [Self-Issued OpenID Provider v2](https://openid.net/specs/openid-connect-self-issued-v2-1_0.html).
+
+:::caution
+
+Support for OpenID for Verifiable Credentials in Credo is still in an experimental phase, and thus is subject to breaking changes. Also, due to the early stages of these specifications, supported draft versions and flows may change and evolve. As early adopters it’s important to align with the evolving specs, and we are doing out best to keep up-to-date without breaking existing deployments.
+
+Currently, work is ongoing to update the supported versions for OpenID4VC to the latest available Draft versions:
+
+- OpenID for Verifiable Credential Issuance - Draft 12
+- OpenID for Verifiable Presentations - Draft 20
+- Self-Issued OpenID Provider - Draft 13
+
+:::
+
+## OpenID for Verifiable Credential Issuance
+
+[OpenID for Verifiable Credential Issuance - Draft 11](https://openid.net/specs/openid-4-verifiable-credential-issuance-1_0-11.html) is supported, but only the immediate issuance using the Pre-Authorized Code flow. The deferred endpoint, batch endpoints and Authorized Code Flow are not supported at the moment.
+
+## OpenID for Verifiable Presentations
+
+[OpenID for Verifiable Presentations - Implementers Draft 1 (Draft 8)](https://openid.net/specs/openid-connect-4-verifiable-presentations-1_0-ID1.html) is supported for requesting and presenting verifiable presentations as part of an authorization request and response. OpenID for Verifiable Presentations is only supported in combination with Self-Issued OpenID Provider V2.
+
+## Self-Issued OpenID Provider v2
+
+[Self-Issued OpenID Provider V2 - Implementers Draft 1 (Draft 7)](https://openid.net/specs/openid-connect-self-issued-v2-1_0-ID1.html) is supported for allowing holders of credentials to act as their own OpenID Provider, and present credentials to a verifier without the need for a third party. Both SIOPv2 authentication requests and responses with verifiable presentations (using VP Token) or without (using ID Token for e.g. DID authentication) are supported.
diff --git a/guides/getting-started/set-up/anoncreds-rs.md b/guides/getting-started/set-up/anoncreds-rs.md
deleted file mode 100644
index 86afde5a..00000000
--- a/guides/getting-started/set-up/anoncreds-rs.md
+++ /dev/null
@@ -1,102 +0,0 @@
-# AnonCreds RS
-
-[AnonCreds RS](https://github.com/hyperledger/anoncreds-rs) is a direct implementation of the [AnonCreds V1.0 specification](https://hyperledger.github.io/anoncreds-spec/) that provides functionality like; creating a schema object, creating a credential definition object, creating a credential, verifying a proof presentation and much more.
-
-:::caution
-
-Support for the AnonCreds RS library in Credo is currently experimental. We recommend new projects to use AnonCreds RS from the start, and also to migrate existing projects to AnonCreds, from the Indy Sdk. However, projects may experience some issues. If you encounter any issues, please [open an issue](https://github.com/openwallet-foundation/credo-ts/issues/new).
-
-Currently, there are few limitations to using AnonCreds RS.
-
-- When running in Node.JS, only Node.JS 18 is supported for now. See [Supported Node.JS versions for AnonCreds RS](#supported-nodejs-versions-for-anoncreds-rs)
-- Install scripts rely on bash command substitution to get the proper binaries for each system architecture and platform. Therefore, if you are under Windows, you must configure `npm` or `yarn` to use a bash-compliant shell (e.g. `npm config set script-shell "C:\\Program Files\\git\\bin\\bash.exe"`)
-
-:::
-
-### Installing AnonCreds RS
-
-When using Credo with AnonCreds RS, there are a few extra dependencies that need to be installed. We need to install `@hyperledger/anoncreds` package, which contains the interfaces, and `@hyperledger/anoncreds-rs` package which is an implementation which depends on a wrapper of anoncreds-rs. Secondly, we need to add native bindings for the specific platform `@hyperledger/anoncreds-`. Currently there are bindings for Node.JS, as `@hyperledger/anoncreds-nodejs`, and React Native as `@hyperlegder/anoncreds-react-native`.
-
-
-
-# Node.JS
-
-```console
-yarn add @aries-framework/anoncreds@^0.4.0 @aries-framework/anoncreds-rs@^0.4.0 @hyperledger/anoncreds-nodejs@^0.1.0
-```
-
-# React Native
-
-```console
-yarn add @aries-framework/anoncreds@^0.4.0 @aries-framework/anoncreds-rs@^0.4.0 @hyperledger/anoncreds-react-native@^0.1.0
-```
-
-
-
-### Adding AnonCreds RS to the agent
-
-After installing the dependencies, we should register both the `AnonCreds` and `AnonCredsRs` module on the agent.
-
-
-
-# Node.JS
-
-```typescript showLineNumbers set-up-anoncreds-rs.ts section-1
-
-```
-
-# React Native
-
-```typescript showLineNumbers set-up-anoncreds-rs-rn.ts section-1
-
-```
-
-
-
-### Configuration
-
-As you can see, the AnonCreds module takes a list of registry modules. These modules will be used to resolve the AnonCreds objects. We recommend [Indy VDR](./indy-vdr) as an AnonCreds registry for Hyperledger Indy networks, but [Indy SDK](./indy-sdk) can also be used.
-
-### Supported Node.JS versions for AnonCreds RS
-
-Due to an issue in `ref-napi` (which is used in the Node.JS bindings for AnonCreds RS), performance for AnonCreds RS in Node.JS is not as expected. A patched version for `ref-napi` has been published that fixes this issue, but this only works in Node.JS 18+.
-
-To use AnonCreds RS in Node.JS, make sure you're using Node.JS 18 and patch the `ref-napi` package to point towards `@2060.io/ref-napi` in your `package.json`:
-
-
-
-# NPM
-
-Using [NPM `overrides`](https://docs.npmjs.com/cli/v9/configuring-npm/package-json#overrides) we can point the `ref-napi` package to `@2060.io/ref-napi`.
-
-```json
-{
- "overrides": {
- "ref-napi": "npm:@2060.io/ref-napi"
- }
-}
-```
-
-# Yarn
-
-Using [Yarn `resolutions`](https://classic.yarnpkg.com/lang/en/docs/selective-version-resolutions/) we can point the `ref-napi` package to `@2060.io/ref-napi`.
-
-```json
-{
- "resolutions": {
- "ref-napi": "npm:@2060.io/ref-napi"
- }
-}
-```
-
-
-
-:::info
-
-See the following issues for more information on the performance botleneck
-
-- https://github.com/hyperledger/aries-askar/issues/76
-- https://github.com/node-ffi-napi/ref-napi/issues/72
-- https://github.com/node-ffi-napi/ref-napi/pull/73
-
-:::
diff --git a/guides/getting-started/set-up/anoncreds.md b/guides/getting-started/set-up/anoncreds.md
new file mode 100644
index 00000000..48abc917
--- /dev/null
+++ b/guides/getting-started/set-up/anoncreds.md
@@ -0,0 +1,47 @@
+# AnonCreds
+
+The AnonCreds module provides functionality for issuing and verifying [AnonCreds](https://hyperledger.github.io/anoncreds-spec/) credentials in Credo. The AnonCreds implementation is based on [AnonCreds RS](https://github.com/hyperledger/anoncreds-rs), a direct implementation of the [AnonCreds V1.0 specification](https://hyperledger.github.io/anoncreds-spec/) that provides functionality like; creating a schema object, creating a credential definition object, creating a credential, verifying a proof presentation and much more.
+
+### Installing
+
+When using Credo with AnonCreds, there are a few extra dependencies that need to be installed. We need to install `@credo-ts/anoncreds` package, which contains the interfaces, and `@hyperledger/anoncreds-` package which is an implementation which depends on a wrapper of anoncreds-rs. Currently there are bindings for Node.JS, as `@hyperledger/anoncreds-nodejs`, and React Native as `@hyperlegder/anoncreds-react-native`.
+
+
+
+# Node.JS
+
+```console
+yarn add @credo-ts/anoncreds@^0.5.0 @hyperledger/anoncreds-nodejs@^0.2.0
+```
+
+# React Native
+
+```console
+yarn add @credo-ts/anoncreds@^0.5.0 @hyperledger/anoncreds-react-native@^0.2.0
+```
+
+
+
+### Adding AnonCreds to the agent
+
+After installing the dependencies, we should register the `AnonCredsModule` on the agent.
+
+
+
+# Node.JS
+
+```typescript showLineNumbers set-up-anoncreds.ts section-1
+
+```
+
+# React Native
+
+```typescript showLineNumbers set-up-anoncreds-rn.ts section-1
+
+```
+
+
+
+### Configuration
+
+As you can see, the AnonCreds module takes a list of registry modules. These modules will be used to resolve the AnonCreds objects. [Indy VDR](./indy-vdr) can be used as an AnonCreds registry for Hyperledger Indy networks, and [Cheqd](./cheqd) can be used as an AnonCreds registry for Cheqd networks.
diff --git a/guides/getting-started/set-up/aries-askar.md b/guides/getting-started/set-up/aries-askar.md
index e6c97050..8afb10ee 100644
--- a/guides/getting-started/set-up/aries-askar.md
+++ b/guides/getting-started/set-up/aries-askar.md
@@ -2,16 +2,6 @@
[Aries Askar](https://github.com/hyperledger/aries-askar) provides secure, encrypted storage and cryptographic support for encrypting, decrypting, signing and verifying data. It also provides both the `Wallet` and `StorageService` implementations for the agent.
-:::caution
-Although Aries Askar is stable and already used in production in agents such as [Aries Cloud Agent Python](https://github.com/hyperledger/aries-cloudagent-python), support for Aries Askar in Credo is currently experimental. We recommend new projects to use Aries Askar from the start, and also to migrate existing projects to Aries Askar. However, projects may experience some issues. If you encounter any issues, please [open an issue](https://github.com/openwallet-foundation/credo-ts/issues/new).
-
-Currently, there are few limitations to using Aries Askar.
-
-- When running in Node.JS, only Node.JS 18 is supported for now. See [Supported Node.JS versions for Aries Askar](#supported-nodejs-versions-for-aries-askar)
-- Install scripts rely on bash command substitution to get the proper binaries for each system architecture and platform. Therefore, if you are under Windows, you must configure `npm` or `yarn` to use a bash-compliant shell (e.g. `npm config set script-shell "C:\\Program Files\\git\\bin\\bash.exe"`)
-
-:::
-
:::tip
If you're upgrading from the Indy SDK to Aries Askar, see [Migrating from an Indy SDK Wallet to Aries Askar](../updating/update-indy-sdk-to-askar)
@@ -20,20 +10,20 @@ If you're upgrading from the Indy SDK to Aries Askar, see [Migrating from an Ind
### Installing Aries Askar
-When using Credo with Aries Askar, there are a few extra dependencies that need to be installed. We need to install the `@aries-framework/askar` package, which implements the needed interfaces for the agent. Secondly, we need to add native bindings for the specific platform `@hyperledger/aries-askar-`. Currently there are bindings for Node.JS, as `@hyperledger/aries-askar-nodejs`, and React Native as `@hyperlegder/aries-askar-react-native`.
+When using Credo with Aries Askar, there are a few extra dependencies that need to be installed. We need to install the `@credo-ts/askar` package, which implements the needed interfaces for the agent. Secondly, we need to add native bindings for the specific platform `@hyperledger/aries-askar-`. Currently there are bindings for Node.JS, as `@hyperledger/aries-askar-nodejs`, and React Native as `@hyperlegder/aries-askar-react-native`.
# Node.JS
```console
-yarn add @aries-framework/askar@^0.4.0 @hyperledger/aries-askar-nodejs@^0.1.0
+yarn add @credo-ts/askar@^0.5.0 @hyperledger/aries-askar-nodejs@^0.2.0
```
# React Native
```console
-yarn add @aries-framework/askar@^0.4.0 @hyperledger/aries-askar-react-native@^0.1.0
+yarn add @credo-ts/askar@^0.5.0 @hyperledger/aries-askar-react-native@^0.2.0
```
@@ -57,47 +47,3 @@ After installing the dependencies, we can register the Askar Module on the agent
```
-
-### Supported Node.JS versions for Aries Askar
-
-Due to an issue in `ref-napi` (which is used in the Node.JS bindings for Aries Askar), performance for Aries Askar in Node.JS is not as expected. A patched version for `ref-napi` has been published that fixes this issue, but this only works in Node.JS 18+.
-
-To use Aries Askar in Node.JS, make sure you're using Node.JS 18 and patch the `ref-napi` package to point towards `@2060.io/ref-napi` in your `package.json`:
-
-
-
-# NPM
-
-Using [NPM `overrides`](https://docs.npmjs.com/cli/v9/configuring-npm/package-json#overrides) we can point the `ref-napi` package to `@2060.io/ref-napi`.
-
-```json
-{
- "overrides": {
- "ref-napi": "npm:@2060.io/ref-napi"
- }
-}
-```
-
-# Yarn
-
-Using [Yarn `resolutions`](https://classic.yarnpkg.com/lang/en/docs/selective-version-resolutions/) we can point the `ref-napi` package to `@2060.io/ref-napi`.
-
-```json
-{
- "resolutions": {
- "ref-napi": "npm:@2060.io/ref-napi"
- }
-}
-```
-
-
-
-:::info
-
-See the following issues for more information on the performance bottleneck
-
-- https://github.com/hyperledger/aries-askar/issues/76
-- https://github.com/node-ffi-napi/ref-napi/issues/72
-- https://github.com/node-ffi-napi/ref-napi/pull/73
-
-:::
diff --git a/guides/getting-started/set-up/cheqd/index.md b/guides/getting-started/set-up/cheqd/index.md
index a4354f66..c0bc9135 100644
--- a/guides/getting-started/set-up/cheqd/index.md
+++ b/guides/getting-started/set-up/cheqd/index.md
@@ -10,13 +10,13 @@ cheqd also has a dedicated token, $CHEQ, used for identity writes to the network
### Installing cheqd
-When using Credo with the cheqd, there's a few extra dependencies that need to be installed. We need to install the `@aries-framework/cheqd` package, which implements the needed interfaces for the agent.
+When using Credo with the cheqd, there's a few extra dependencies that need to be installed. We need to install the `@credo-ts/cheqd` package, which implements the needed interfaces for the agent.
#### React Native
To enable react-native support we need to follow the steps below
-In the package.json file add the below code snippet, which replaces the cosmjs dependencies witht he cosmjs-rn packages
+In the package.json file add the below code snippet, which replaces the cosmjs dependencies with he cosmjs-rn packages
diff --git a/guides/getting-started/set-up/index.md b/guides/getting-started/set-up/index.md
index f880360c..a29a5358 100644
--- a/guides/getting-started/set-up/index.md
+++ b/guides/getting-started/set-up/index.md
@@ -11,37 +11,34 @@ This guide assumes you have followed the [Prerequisites](./prerequisites), and y
:::caution
-Credo is still in **active development**, and as such some APIs are still experimental. **When using any experimental features, make sure to use an exact version of Credo** (`0.4.0`) instead of a range (`^0.4.0`), to prevent accidental breaking changes. If you're not leveraging any experimental features, you can use a range (`^0.4.0`) to get the latest bugfixes and features.
+Credo is still in **active development**, and as such some APIs are still experimental. **When using any experimental features, make sure to use an exact version of Credo** (`0.5.0`) instead of a range (`^0.5.0`), to prevent accidental breaking changes. If you're not leveraging any experimental features, you can use a range (`^0.5.0`) to get the latest bugfixes and features.
-For Credo `0.4.x`, **the following features are experimental**:
+For Credo `0.5.x`, **the following features are experimental**:
-- Implementing your own `AnonCredsRegistry` and AnonCreds service implementation.
-- Using the shared component libraries from `@aries-framework/aries-askar`, `@aries-framework/indy-vdr` and `@aries-framework/anoncreds-rs`
-- Using OpenID4VC from the `@aries-framework/openid4vc-client` module
-- W3C JWT Verifiable Credentials
-- Using multi-tenancy from the `@aries-framework/tenants` module
-- Using BBS+ Signatures from the `@aries-framework/bbs-signatures` module
-- Using the cheqd module from the `@aries-framework/cheqd` module
+- Using OpenID4VC from the `@credo-ts/openid4vc` module
+- SD-JWT Verifiable Credentials
+- Using multi-tenancy from the `@credo-ts/tenants` module
+- Using BBS+ Signatures from the `@credo-ts/bbs-signatures` module
+- Using the cheqd module from the `@credo-ts/cheqd` module
:::
### Installing the required dependencies
-First we have to install the minimal amount of dependencies that are required
-for configuring an Credo agent.
+First we have to install the minimal amount of dependencies that are required for configuring an Credo agent.
# Node.JS
```console
-yarn add @aries-framework/core@^0.4.0 @aries-framework/node@^0.4.0
+yarn add @credo-ts/core@^0.5.0 @credo-ts/node@^0.5.0
```
# React Native
```console
-yarn add @aries-framework/core@^0.4.0 @aries-framework/react-native@^0.4.0 react-native-fs react-native-get-random-values
+yarn add @credo-ts/core@^0.5.0 @credo-ts/react-native@^0.5.0 react-native-fs react-native-get-random-values
```
@@ -130,15 +127,16 @@ enough for your specific use cases. Please refer to the
### Adding a wallet and storage implementation
-After creating the `Agent` instance, we need to provide the agent with a wallet and storage implementation. Credo provides a few implementations out of the box, but you can also implement your own. Currently the following Wallet and Storage implementations are supported out of the box. Follow the specific guides to set up the wallet and storage implementation of your choice.
+After creating the `Agent` instance, we need to provide the agent with a wallet and storage implementation. Credo provides one implementations out of the box, but you can also implement your own. Currently a Wallet and Storage implementation using Aries Askar is supported out of the box.
-- [Aries Askar](./set-up/aries-askar) - Recommended.
-- [Indy SDK](./set-up/indy-sdk) - Legacy. Will be deprecated in the future.
+- [Aries Askar](./set-up/aries-askar)
-
+
### Setting up the transports
diff --git a/guides/getting-started/set-up/indy-sdk/index.md b/guides/getting-started/set-up/indy-sdk/index.md
deleted file mode 100644
index 10ae336d..00000000
--- a/guides/getting-started/set-up/indy-sdk/index.md
+++ /dev/null
@@ -1,69 +0,0 @@
-import DocCardList from '@theme/DocCardList';
-
-# Indy SDK
-
-[Indy SDK](https://github.com/hyperledger/indy-sdk) provides a distributed ledger based foundation for self-sovereign identity. It can provide the `Wallet` and `StorageService` implementations for the agent, as well as a way to interact with Indy ledgers and an implementation of the legacy (v0.1) [AnonCreds Specification](https://hyperledger.github.io/anoncreds-spec/)
-
-:::caution
-The Indy SDK integration in Credo is currently in maintenance mode. We recommend new projects to use [Aries Askar](../aries-askar) from the start, and also to migrate existing projects to Aries Askar.
-:::
-
-:::caution
-The AnonCreds implementation from the Indy SDK only supports the [Hyperledger Indy Legacy AnonCreds Method](https://hyperledger.github.io/anoncreds-methods-registry/#hyperledger-indy-legacy-anoncreds-method) (the pre-standardized implementation), and doesn't support the new Ledger [Agnostic AnonCreds Specification (v1.0)](https://hyperledger.github.io/anoncreds-spec/). Use the new AnonCreds Rust implementation, which is also supported by Credo, in combination with [Aries Askar](../aries-askar) and Indy VDR to replace the bevhaviour of the Indy SDK, and support the new features these libraries have to offer.
-:::
-
-### Installing the Indy SDK
-
-When using Credo with the Indy SDK, there's a few extra dependencies that need to be installed. We need to install the `@aries-framework/indy-sdk` package, which implements the needed interfaces for the agent. Secondly, we need to install the native Indy SDK library and the bindings for our specific platform. Currently there are bindings for Node.JS and React Native.
-
-To start off, install the native Indy SDK library. The setup for this depends on the platform you are using. Follow the instructions for your platform below.
-
-
-
-After the native Indy SDK library is installed, we can add the Indy SDK libraries.
-
-
-
-# Node.JS
-
-```console
-yarn add @aries-framework/indy-sdk@^0.4.0 indy-sdk
-```
-
-And install the needed types
-
-```console
-yarn add --dev @types/indy-sdk
-```
-
-# React Native
-
-```console
-yarn add @aries-framework/indy-sdk@^0.4.0 indy-sdk-react-native
-```
-
-And then install the needed types
-
-```console
-yarn add --dev @types/indy-sdk-react-native@npm:@types/indy-sdk
-```
-
-
-
-### Adding the Indy SDK to the Agent
-
-After installing the dependencies, we can register the Indy SDK Module on the agent.
-
-
-
-# Node.JS
-
-```typescript showLineNumbers set-up-indy-sdk.ts section-1
-
-```
-
-# React Native
-
-```typescript showLineNumbers set-up-indy-sdk-rn.ts section-1
-
-```
diff --git a/guides/getting-started/set-up/indy-sdk/linux.md b/guides/getting-started/set-up/indy-sdk/linux.md
deleted file mode 100644
index 8cb4b770..00000000
--- a/guides/getting-started/set-up/indy-sdk/linux.md
+++ /dev/null
@@ -1,105 +0,0 @@
-# Linux
-
-To install [Indy SDK](https://github.com/hyperledger/indy-sdk) on Linux, a couple of dependencies are required. This guide covers the installation for the more popular Linux distributions.
-
-### Libsodium
-
-[Libsodium](https://github.com/jedisct1/libsodium) is used by the Indy SDK for encryption, decryption, hashing and signing.
-
-
-
-#### Arch Linux
-
-```
-pacman -S libsodium
-```
-
-#### Debian
-
-```
-apt-get install libsodium-dev
-```
-
-#### Red Hat
-
-```
-yum install libsodium libsodium-devel
-```
-
-
-
-### Libzmq
-
-[Libzmq](https://github.com/zeromq/libzmq) is a lightweight messaging queue used by the Indy SDK.
-
-
-
-#### Arch Linux
-
-```
-pacman -S zeromq
-```
-
-#### Debian
-
-```
-apt-get install libzmq3-dev
-```
-
-#### Red Hat
-
-```
-yum install libsodium zeromq-devel
-```
-
-
-
-### Indy SDK
-
-All the steps mentioned here are distribution independent. As the Indy SDK doesn't provide binaries for many releases, we will build it from source. This does mean that some additional requirements are necessary, like
-[Rust](https://www.rust-lang.org).
-
-Downloading [Rust](https://www.rust-lang.org) is as easy as executing the
-following command:
-
-```console
-curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
-```
-
-This will install [Rustup](https://rustup.rs) which is the installer for
-[Rust](https://rust-lang.org).
-
-With [Rust](https://rust-lang.org), we can now build the
-Indy SDK from source.
-
-First, clone the repository in a temporary directory:
-
-```console
-git clone https://github.com/hyperledger/indy-sdk
-```
-
-Secondly, go to the correct directory
-
-```console
-cd indy-sdk/libindy
-```
-
-Third, build the library
-
-```console
-cargo build --release
-```
-
-Lastly, move the library to the correct location
-
-```console
-sudo mv target/release/libindy.so /usr/lib/libindy.so
-```
-
-### Confirm installation
-
-To see whether the Indy SDK is correctly installed on your system, run the following command and it should not error.
-
-```console
-npx -p @aries-framework/node@^0.3 is-indy-installed
-```
diff --git a/guides/getting-started/set-up/indy-sdk/macos-arm.md b/guides/getting-started/set-up/indy-sdk/macos-arm.md
deleted file mode 100644
index 3b150d2c..00000000
--- a/guides/getting-started/set-up/indy-sdk/macos-arm.md
+++ /dev/null
@@ -1,59 +0,0 @@
-# macOS (ARM)
-
-To install [Indy SDK](https://github.com/hyperledger/indy-sdk) on macOS, a couple of dependencies are required. This guide covers the installation of the Indy SDK for macs with an ARM processor. For installing the Indy SDK on Intel based macs, please refer to the [Indy SDK macOS (Intel)](./macos-intel) guide.
-
-:::info
-
-This installation assumes that you have [brew](https://brew.sh) installed. If not, please install it via this command:
-
-```
-/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
-```
-
-:::
-
-### Libsodium
-
-[Libsodium](https://github.com/jedisct1/libsodium) is used by the Indy SDK for encryption, decryption, hashing and signing.
-
-```console
-brew install libsodium
-```
-
-### Libzmq
-
-[Libzmq](https://github.com/zeromq/libzmq) is a lightweight messaging queue used by the Indy SDK.
-
-```console
-brew install zeromq
-```
-
-### Indy SDK
-
-The Indy SDK does not been distributed properly for macOS. We have a pre-built library available that can
-be downloaded. If you prefer to build from source, you can follow the instructions in the [Indy SDK repository](https://github.com/hyperledger/indy-sdk#how-to-build-indy-sdk-from-source)
-
-First, download the pre-built library from [Google Drive](https://drive.google.com/file/d/1JaRqAEAyodjeh120YYZ0t42zfhN3wHiW/view).
-
-After this, open `Finder`, `control+click` on the library and click on `open`.
-This is something that has to be done as the library is not properly signed.
-
-Lastly the library just has to be moved to the correct location.
-
-:::caution
-
-If you downloaded the file in another directory, please change the first part of this command
-
-:::
-
-```console
-sudo mv ~/Downloads/libindy.dylib /usr/local/lib/
-```
-
-### Confirm installation
-
-To see whether the Indy SDK is correctly installed on your system, run the following command and it should not error.
-
-```console
-npx -p @aries-framework/node@^0.3 is-indy-installed
-```
diff --git a/guides/getting-started/set-up/indy-sdk/macos-intel.md b/guides/getting-started/set-up/indy-sdk/macos-intel.md
deleted file mode 100644
index b0b926ca..00000000
--- a/guides/getting-started/set-up/indy-sdk/macos-intel.md
+++ /dev/null
@@ -1,29 +0,0 @@
-# macOS (Intel)
-
-To install [Indy SDK](https://github.com/hyperledger/indy-sdk) on macOS a couple of dependencies are required. This guide covers the installation of the Indy SDK for macs with an Intel processor. For installing the Indy SDK on ARM based macs, please refer to the [Indy SDK macOS (ARM)](./macos-arm) guide.
-
-:::info
-
-This installation assumes that you have [brew](https://brew.sh) installed. If not, please install it via this command:
-
-```
-/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
-```
-
-:::
-
-### Indy SDK
-
-The Indy SDK has not been distributed properly for macOS. We have made a [brew tap](https://docs.brew.sh/Taps) for `libindy` and it will also install all of the required dependencies.
-
-```console
-brew install blu3beri/libindy/libindy
-```
-
-### Confirm installation
-
-To see whether the Indy SDK is correctly installed on your system, run the following command and it should not error.
-
-```console
-npx -p @aries-framework/node@^0.3 is-indy-installed
-```
diff --git a/guides/getting-started/set-up/indy-sdk/react-native.md b/guides/getting-started/set-up/indy-sdk/react-native.md
deleted file mode 100644
index 0c01a73d..00000000
--- a/guides/getting-started/set-up/indy-sdk/react-native.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# React Native
-
-The setup of Indy SDK for React Native is rather different than Node.JS. We do not have to install dependencies on the host-platform, but for the build target. For React Native this would be the Indy SDK for Android & iOS. This guide covers both the Android and iOS setup, as in most React Native projects you will need both.
-
-## Expo
-
-If you're using [Expo](https://expo.dev), the recommended way to install the Indy SDK is by using the [Indy SDK Expo Plugin](https://github.com/animo/indy-sdk-expo-plugin). This will correclty set-up your project with the Indy SDK using an [Expo Config Plugin](https://docs.expo.dev/guides/config-plugins/) for both iOS and Android.
-
-Refer to the [Indy SDK Expo Plugin](https://github.com/animo/indy-sdk-expo-plugin) repository for installation instructions.
-
-## Without Expo
-
-When not using Expo, you will need to set-up the Indy SDK for both Android and iOS using the `indy-sdk-react-native` package directly. Refer to the [Indy SDK React Native](https://github.com/hyperledger/indy-sdk-react-native) repository for installation instructions.
diff --git a/guides/getting-started/set-up/indy-sdk/windows.md b/guides/getting-started/set-up/indy-sdk/windows.md
deleted file mode 100644
index 32174542..00000000
--- a/guides/getting-started/set-up/indy-sdk/windows.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# Windows
-
-To install [Indy SDK](https://github.com/hyperledger/indy-sdk) on Windows, you can download the pre-built binary from the [Sovrin repository](https://repo.sovrin.org/windows/libindy/master/1.16.0-1636/libindy_1.16.0.zip).
-
-Once downloaded, extract the zip into a **permanent location**.
-
-Next, go to `environment variables` on your system and click on `new` at
-`System Variables`. The name MUST be `LD_LIBRARY_PATH` and the value MUST be
-the path to the extracted libraries.
-
-### Confirm installation
-
-To see whether the Indy SDK is correctly installed on your system, run the following command and it should not error.
-
-```console
-npx -p @aries-framework/node@^0.3 is-indy-installed
-```
diff --git a/guides/getting-started/set-up/indy-vdr.md b/guides/getting-started/set-up/indy-vdr.md
index c4a0aecb..d4926e07 100644
--- a/guides/getting-started/set-up/indy-vdr.md
+++ b/guides/getting-started/set-up/indy-vdr.md
@@ -2,17 +2,6 @@
[Hyperledger Indy VDR](https://github.com/hyperledger/indy-vdr), Verifiable Data Registry, can be used to connect to one or more Indy Node ledger pools given sets of genesis transactions. Methods are provided to construct ledger requests and send them to the validators, collecting the results and ensuring that there is a consensus between the nodes. In the context of Credo, we mainly leverage it to register, and resolve, schemas, credential definitions and DIDs.
-:::caution
-
-Support for Indy VDR in Credo is currently experimental. We recommend new projects to use Indy VDR from the start, and also to migrate existing projects to Indy VDR, from the indy-sdk. However, projects may experience some issues. If you encounter any issues, please [open an issue](https://github.com/openwallet-foundation/credo-ts/issues/new).
-
-Currently, there are few limitations to using Indy VDR.
-
-- When running in Node.JS, only Node.JS 18 is supported for now. See [Supported Node.JS versions for Indy VDR](#supported-nodejs-versions-for-indy-vdr)
-- Install scripts rely on bash command substitution to get the proper binaries for each system architecture and platform. Therefore, if you are under Windows, you must configure `npm` or `yarn` to use a bash-compliant shell (e.g. `npm config set script-shell "C:\\Program Files\\git\\bin\\bash.exe"`)
-
-:::
-
### Installing Indy VDR
When using Credo with Indy VDR, there are a few extra dependencies that need to be installed. We need to install the `@hyperledger/indy-vdr`, which contains all the functionality to register objects on an Hyperledger Indy VDR. Secondly, we need to add native bindings for the specific platform `@hyperledger/indy-vdr-`. Currently there are bindings for Node.JS, as `@hyperledger/indy-vdr-nodejs`, and React Native as `@hyperlegder/indy-vdr-react-native`.
@@ -22,13 +11,13 @@ When using Credo with Indy VDR, there are a few extra dependencies that need to
# Node.JS
```console
-yarn add @aries-framework/indy-vdr@^0.4.0 @hyperledger/indy-vdr-nodejs@^0.1.0
+yarn add @credo-ts/indy-vdr@^0.5.0 @hyperledger/indy-vdr-nodejs@^0.2.0
```
# React Native
```console
-yarn add @aries-framework/indy-vdr@^0.4.0 @hyperledger/indy-vdr-react-native@^0.1.0
+yarn add @credo-ts/indy-vdr@^0.5.0 @hyperledger/indy-vdr-react-native@^0.2.0
```
@@ -114,47 +103,3 @@ The version of the AML acceptance mechanism. This is a string representation of
**Type**: `string`
The acceptance mechanism to choose. This _must_ be _one_ of the available labels of the acceptance mechanisms key-value pairs in the AML e.g. 'EULA'.
-
-### Supported Node.JS versions for Indy VDR
-
-Due to an issue in `ref-napi` (which is used in the Node.JS bindings for Indy VDR), performance for Indy VDR in Node.JS is not as expected. A patched version for `ref-napi` has been published that fixes this issue, but this only works in Node.JS 18+.
-
-To use Indy VDR in Node.JS, make sure you're using Node.JS 18 and patch the `ref-napi` package to point towards `@2060.io/ref-napi` in your `package.json`:
-
-
-
-# NPM
-
-Using [NPM `overrides`](https://docs.npmjs.com/cli/v9/configuring-npm/package-json#overrides) we can point the `ref-napi` package to `@2060.io/ref-napi`.
-
-```json
-{
- "overrides": {
- "ref-napi": "npm:@2060.io/ref-napi"
- }
-}
-```
-
-# Yarn
-
-Using [Yarn `resolutions`](https://classic.yarnpkg.com/lang/en/docs/selective-version-resolutions/) we can point the `ref-napi` package to `@2060.io/ref-napi`.
-
-```json
-{
- "resolutions": {
- "ref-napi": "npm:@2060.io/ref-napi"
- }
-}
-```
-
-
-
-:::info
-
-See the following issues for more information on the performance bottleneck
-
-- https://github.com/hyperledger/aries-askar/issues/76
-- https://github.com/node-ffi-napi/ref-napi/issues/72
-- https://github.com/node-ffi-napi/ref-napi/pull/73
-
-:::
diff --git a/guides/tutorials/agent-config/index.md b/guides/tutorials/agent-config/index.md
index b50429cc..18005443 100644
--- a/guides/tutorials/agent-config/index.md
+++ b/guides/tutorials/agent-config/index.md
@@ -27,7 +27,7 @@ can be initialized separately.
**Type**: `WalletConfig`
```typescript title="example"
-import { KeyDerivationMethod } from '@aries-framework/core'
+import { KeyDerivationMethod } from '@credo-ts/core'
walletConfig: {
id: 'foo',
@@ -58,11 +58,7 @@ be seem like a password.
The method used for key derivation of the
[`walletConfig.key`](#walletconfigkey).
-When using `KeyDerivationMethod.Raw`, it is strongly recommended to get the raw
-key via
-[`indy_generate_wallet_key`](https://github.com/hyperledger/indy-sdk/blob/1c7096dd95d0fd53881070f66907df4b9e61b874/libindy/src/api/wallet.rs#L560).
-If you really must implement your own key generation, it is required to be a
-base58-encoded
+When using `KeyDerivationMethod.Raw`, the key must be a base58-encoded
[ChaCha20-Poly1305](https://en.wikipedia.org/wiki/ChaCha20-Poly1305) key.
> For the advanced readers
@@ -85,10 +81,7 @@ base58-encoded
**`KeyDerivationMethod.Raw`**
- uses no derivation method.
-It is recommended to use the
-[`indy_generate_wallet_key`](https://github.com/hyperledger/indy-sdk/blob/1c7096dd95d0fd53881070f66907df4b9e61b874/libindy/src/api/wallet.rs#L560)
-for key generation.
+ uses no derivation method and the key must be a base58-encoded [ChaCha20-Poly1305](https://en.wikipedia.org/wiki/ChaCha20-Poly1305) key.
### `walletConfig.storage`
diff --git a/guides/tutorials/agent-config/logging.md b/guides/tutorials/agent-config/logging.md
index 642dd8dd..3f6306d1 100644
--- a/guides/tutorials/agent-config/logging.md
+++ b/guides/tutorials/agent-config/logging.md
@@ -5,8 +5,8 @@
To enable logging inside the framework a logger must be passed to the agent config. A simple `ConsoleLogger` can be imported from the framework.
```ts
-import type { InitConfig } from '@aries-framework/core'
-import { ConsoleLogger, LogLevel } from '@aries-framework/core'
+import type { InitConfig } from '@credo-ts/core'
+import { ConsoleLogger, LogLevel } from '@credo-ts/core'
const agentConfig: InitConfig = {
// ... other config properties ...
@@ -19,7 +19,7 @@ const agentConfig: InitConfig = {
For more advanced use cases the `Logger` interface can be implemented. See the example below.
```ts
-import { Logger, LogLevel } from '@aries-framework/core'
+import { Logger, LogLevel } from '@credo-ts/core'
class MyCustomLogger implements Logger {
public logLevel: LogLevel
@@ -57,31 +57,3 @@ class MyCustomLogger implements Logger {
}
}
```
-
-## Indy Logs
-
-To enable logging in the underlying Rust framework, either `setLogger` or `setDefaultLogger` must be called on the indy dependency, as seen [here](https://github.com/hyperledger/indy-sdk/tree/master/wrappers/nodejs#logger).
-
-:::caution
-
-The `setLogger` and `setDefaultLogger` methods have only been implemented in the Node.JS wrapper of the indy sdk. This won't work when importing from `@aries-framework/react-native`
-
-:::
-
-The easiest way to do this from Credo is through the `indy` property of `agentDependencies`.
-
-```ts
-import { agentDependencies } from '@aries-framework/node'
-agentDependencies.indy.setDefaultLogger('trace')
-
-// OR
-
-agentDependencies.indy.setLogger((level, target, message, modulePath, file, line) => {
- console.log('libindy said:', level, target, message, modulePath, file, line)
-})
-```
-
-> WARNING: You can only set the logger once. Call indy_set_default_logger, indy_set_logger, not both. Once it's been set, libindy won't let you change it.
-
-You can also set the environment variable `RUST_LOG` to log at specified log levels.
-See https://crates.io/crates/env_logger for more information.
diff --git a/guides/tutorials/indy-sdk-postgres-database-nodejs/index.md b/guides/tutorials/indy-sdk-postgres-database-nodejs/index.md
deleted file mode 100644
index b640bff4..00000000
--- a/guides/tutorials/indy-sdk-postgres-database-nodejs/index.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# Using PostgreSQL as Database for Indy SDK in Node.js
-
-By default the Indy SDK will use an SQLite database for storage. In mobile environments this is sufficient and allows us to keep storage local to the device, but in server environments we oftentimes want a more scalable storage solution. By leveraging the PostgreSQL plugin for Indy SDK we can use PostgreSQL as a storage solution instead of SQLite.
-
-This document describes the installation process of the Postgres plugin for IndySDK and how you need to configure Credo to use it.
-
-## Installation of the Postgres Plugin
-
-For installation of the Postgres plugin, please refer to the platform specific guides:
-
-- [macOS](./macos.md)
-- [Linux](./linux.md)
-- [Windows](./windows.md)
-
-## Using the Postgres Plugin in Credo
-
-```typescript showLineNumbers set-up-indy-sdk-postgres.ts section-1
-
-```
diff --git a/guides/tutorials/indy-sdk-postgres-database-nodejs/linux.md b/guides/tutorials/indy-sdk-postgres-database-nodejs/linux.md
deleted file mode 100644
index ec5fdbef..00000000
--- a/guides/tutorials/indy-sdk-postgres-database-nodejs/linux.md
+++ /dev/null
@@ -1,49 +0,0 @@
-# Postgres Setup for Linux
-
-## Prerequisites
-
-- A system package manager (like APT, Pacman, etc.)
-- Cargo (We have to build Postgres plugin from source)
-- git (to clone a repo, could also be done with downloading the zip from the GitHub page)
-
-## Step 1: installing the dependencies using apt
-
-### Debian based (Ubuntu, Mint, Kali, Deepin, etc.)
-
-```sh
-sudo apt install libzmq3-dev libsodium-dev libssl-dev
-```
-
-## Step 2: Build Postgres plugin
-
-Building Postgres plugin from the indy-sdk repo with cargo.
-
-### Step 2.1: Cloning the indy-sdk
-
-```sh
-git clone https://github.com/hyperledger/indy-sdk.git
-
-cd indy-sdk/experimental/plugins/postgres_storage
-```
-
-### Step 2.2: Building Postgres plugin
-
-If this step throws any errors, it might be because you miss some packages. Step 1 of this guide provided the dependencies that are required, but it also assumed that you have some basic development packages installed. If you are missing some packages, you can install them with your package manager.
-
-```sh
-pwd
-
-# OUTPUT: .../indy-sdk/experimental/plugins/postgres_storage
-
-cargo build --release
-```
-
-### Step 2.3: Moving the file
-
-```sh
-pwd
-
-# OUTPUT: .../indy-sdk/experimental/plugins/postgres_storage
-
-sudo mv ./target/release/libindystrgpostgres.so /usr/local/lib/libindystrgpostgres.so
-```
diff --git a/guides/tutorials/indy-sdk-postgres-database-nodejs/macos.md b/guides/tutorials/indy-sdk-postgres-database-nodejs/macos.md
deleted file mode 100644
index 6d80b01b..00000000
--- a/guides/tutorials/indy-sdk-postgres-database-nodejs/macos.md
+++ /dev/null
@@ -1,47 +0,0 @@
-# Postgres Setup for macOS
-
-## Prerequisites
-
-- Homebrew
-- Cargo (We have to build Postgres plugin from source)
-- git (to clone a repo, could also be done with downloading the zip from the GitHub page)
-
-## Step 1: installing the dependencies using brew
-
-```sh
-brew install libsodium zeromq
-```
-
-## Step 2: Build Postgres plugin
-
-Building Postgres plugin from the indy-sdk repo with cargo.
-
-### Step 2.1: Cloning the indy-sdk
-
-```sh
-git clone https://github.com/hyperledger/indy-sdk.git
-
-cd indy-sdk/experimental/plugins/postgres_storage
-```
-
-### Step 2.2: Building Postgres plugin
-
-If this step throws any errors, it might be because you miss some packages. Step 1 of this guide provided the dependencies that are required, but it also assumed that you have some basic development packages installed. If you are missing some packages, you can install them with your package manager.
-
-```sh
-pwd
-
-# OUTPUT: .../indy-sdk/experimental/plugins/postgres_storage
-
-cargo build --release
-```
-
-### Step 2.3: Moving the file
-
-```sh
-pwd
-
-# OUTPUT: .../indy-sdk/experimental/plugins/postgres_storage
-
-sudo mv ./target/release/libindystrgpostgres.dylib /usr/local/lib/libindystrgpostgres.dylib
-```
diff --git a/guides/tutorials/indy-sdk-postgres-database-nodejs/windows.md b/guides/tutorials/indy-sdk-postgres-database-nodejs/windows.md
deleted file mode 100644
index d7281bdb..00000000
--- a/guides/tutorials/indy-sdk-postgres-database-nodejs/windows.md
+++ /dev/null
@@ -1,49 +0,0 @@
-# Postgres Setup for windows
-
-## Build Environment Prerequisites
-
-1. Download and install Visual Studio Community Edition 2022
-1. Install git for windows
-1. Download rust for windows [here](https://www.rust-lang.org/en-US/install.html)
-1. Make sure you have already setup libindy for windows from [here](../../getting-started/indy-sdk/windows)
-
-## Step 1: Getting dependencies
-
-- Download the prebuilt dependencies [here](https://repo.sovrin.org/windows/libindy/deps/)
-- Extract them
-- Point path to this directory using environment variables:
- - `set INDY_PREBUILT_DEPS_DIR=C:\Users\{WINDOWS_USER}\Downloads\indy-sdk-deps`
- - `set INDY_CRYPTO_PREBUILT_DEPS_DIR=C:\Users\{WINDOWS_USER}\Downloads\indy-sdk-deps`
- - `set MILAGRO_DIR=C:\Users\{WINDOWS_USER}\Downloads\indy-sdk-deps`
- - `set LIBZMQ_PREFIX=C:\Users\{WINDOWS_USER}\Downloads\indy-sdk-deps`
- - `set SODIUM_LIB_DIR=C:\Users\{WINDOWS_USER}\Downloads\indy-sdk-deps`
- - `set OPENSSL_DIR=C:\Users\{WINDOWS_USER}\Downloads\indy-sdk-deps`
- - `set PATH=C:\Users\{WINDOWS_USER}\Downloads\indy-sdk-deps\lib`
-
-## Step 2: Build Postgres plugin
-
-Building Postgres plugin from the indy-sdk repo with cargo.
-
-### Step 2.1: Cloning the indy-sdk
-
-```sh
-git clone https://github.com/hyperledger/indy-sdk.git
-
-cd indy-sdk\experimental\plugins\postgres_storage
-```
-
-### Step 2.2: Building Postgres plugin
-
-If this step throws any errors, it might be because of the environment. Step 1 of this guide provided the dependencies that are required.
-
-```sh
-cargo build --release --target x86_64-pc-windows-msvc
-```
-
-The library **indystrgpostgres.dll** file will be located at `indy-sdk\experimental\plugins\postgres_storage\target\x86_64-pc-windows-msvc\release`
-
-### Step 2.3: Setting the file to PATH
-
-- `set LIB_INDY_STRG_POSTGRES=C:\Users\{WINDOWS_USER}\Downloads\indy-sdklexperimental\plugins\postgres_storage\target\x86_64-pc-windows-msvc\release`
-
-or Alternatively you can copy the **indystrgpostgres.dll** file to `c:\\windows\\system32\\`
diff --git a/guides/tutorials/issue-a-credential.md b/guides/tutorials/issue-a-credential.md
index 197c1a49..d99f6e1c 100644
--- a/guides/tutorials/issue-a-credential.md
+++ b/guides/tutorials/issue-a-credential.md
@@ -65,7 +65,7 @@ For the _Holder_ we need to setup a basic agent with a wallet, mediator, outboun
> If you want to follow this tutorial in a mobile environment:
>
-> 1. Use the `agentDependencies` from `@aries-framework/react-native`
+> 1. Use the `agentDependencies` from `@credo-ts/react-native`
> 1. It is very important to note that mobile agents do not support HTTP by default. It is recommended to do everything over HTTPS, but for development HTTP can be enabled for [iOS](https://stackoverflow.com/questions/30731785/how-do-i-load-an-http-url-with-app-transport-security-enabled-in-ios-9) and [Android](https://stackoverflow.com/questions/51902629/how-to-allow-all-network-connection-types-http-and-https-in-android-9-pie).
:::holder
diff --git a/guides/tutorials/registering-schema-and-credential-definition.md b/guides/tutorials/registering-schema-and-credential-definition.md
index d6b84ca9..035490b1 100644
--- a/guides/tutorials/registering-schema-and-credential-definition.md
+++ b/guides/tutorials/registering-schema-and-credential-definition.md
@@ -31,7 +31,7 @@ There are many ledgers which can be used to register DIDs on for development.
#### Indy VDR
-We recommend [bcovrin test net](http://test.bcovrin.vonx.io/). This network allows very easily to register a DID from a seed which can then be used as the `privateKey` in the snippet below. The seed is used as the private key for legacy compatibility with the Hyperledger Indy-SDK. The [genesis transactions](http://test.bcovrin.vonx.io/genesis) can also be retrieved for easy integration.
+We recommend [BCovrin Testnet](http://test.bcovrin.vonx.io/). This network allows very easily to register a DID from a seed which can then be used as the `privateKey` in the snippet below. The seed is used as the private key for legacy compatibility with the Hyperledger Indy-SDK. The [genesis transactions](http://test.bcovrin.vonx.io/genesis) can also be retrieved for easy integration.
#### Cheqd
diff --git a/guides/updating/update-assistant.md b/guides/updating/update-assistant.md
index 81b98c59..dbbaadd7 100644
--- a/guides/updating/update-assistant.md
+++ b/guides/updating/update-assistant.md
@@ -21,10 +21,10 @@ There are three options on how to leverage the update assistant on agent startup
When the version of the storage is stored inside the agent storage, it means we need to check if the agent needs to be updated on every agent startup. We'll initialize the update assistant and check whether the storage is up to date. The advantage of this approach is that you don't have to store anything yourself, and have full control over the workflow.
```ts
-import { UpdateAssistant, Agent } from '@aries-framework/core'
+import { UpdateAssistant, Agent } from '@credo-ts/core'
-// or @aries-framework/node
-import { agentDependencies } from '@aries-framework/react-native'
+// or @credo-ts/node
+import { agentDependencies } from '@credo-ts/react-native'
// First create the agent
const agent = new Agent({
@@ -61,10 +61,10 @@ When the version of the storage is stored outside of the agent storage, you don'
When a wallet has been exported and later imported you don't always have the latest version available. If this is the case you can always rely on Method 1 or 2 for updating the wallet, and storing the version yourself afterwards. You can also get the current version by calling `await updateAssistant.getCurrentAgentStorageVersion()`. Do note the `UpdateAssistant` needs to be initialized before calling this method.
```ts
-import { UpdateAssistant, Agent } from '@aries-framework/core'
+import { UpdateAssistant, Agent } from '@credo-ts/core'
-// or @aries-framework/node
-import { agentDependencies } from '@aries-framework/react-native'
+// or @credo-ts/node
+import { agentDependencies } from '@credo-ts/react-native'
// The storage version will normally be stored in e.g. persistent storage on a mobile device
let currentStorageVersion: VersionString = '0.1'
@@ -106,10 +106,10 @@ await agent.initialize()
This is by far the easiest way to update the agent, but has the least amount of flexibility and is not configurable. This means you will have to use the default update options to update the agent storage. You can find the default update config in the respective version migration guides (e.g. in [0.1-to-0.2](/guides/updating/versions/0.1-to-0.2.md)).
```ts
-import { UpdateAssistant, Agent } from '@aries-framework/core'
+import { UpdateAssistant, Agent } from '@credo-ts/core'
-// or @aries-framework/node
-import { agentDependencies } from '@aries-framework/react-native'
+// or @credo-ts/node
+import { agentDependencies } from '@credo-ts/react-native'
// First create the agent, setting the autoUpdateStorageOnStartup option to true
const agent = new Agent({
diff --git a/guides/updating/update-indy-sdk-to-askar.md b/guides/updating/update-indy-sdk-to-askar.md
index 1057ca7b..da9c4a94 100644
--- a/guides/updating/update-indy-sdk-to-askar.md
+++ b/guides/updating/update-indy-sdk-to-askar.md
@@ -87,7 +87,7 @@ It is very important to note that the migration script only has to be run once.
### add the required dependencies
```sh
-yarn add @hyperledger/aries-askar-react-native @aries-framework/indy-sdk-to-askar-migration react-native-fs
+yarn add @hyperledger/aries-askar-react-native @credo-ts/indy-sdk-to-askar-migration react-native-fs
```
Below is the minimal code required for the migration to work. It is recommended to turn the logger on as it gives a lot of information regarding the migration.
@@ -99,9 +99,9 @@ The agent is not allowed to be initialized to run this script. This makes sure n
:::
```typescript
-import { agentDependencies } from '@aries-framework/react-native'
-import { AskarModule } from '@aries-framework/askar'
-import { IndySdkToAskarMigrationUpdater } from '@aries-framework/indy-sdk-to-askar-migration'
+import { agentDependencies } from '@credo-ts/react-native'
+import { AskarModule } from '@credo-ts/askar'
+import { IndySdkToAskarMigrationUpdater } from '@credo-ts/indy-sdk-to-askar-migration'
import { ariesAskar } from '@hyperledger/aries-askar-react-native'
const oldAgent = new Agent({
diff --git a/sidebars.js b/sidebars.js
index 8a64e92d..cd20c172 100644
--- a/sidebars.js
+++ b/sidebars.js
@@ -32,19 +32,7 @@ const sidebars = {
link: { type: 'doc', id: 'getting-started/set-up/index' },
items: [
'getting-started/set-up/aries-askar',
- {
- type: 'category',
- label: 'Indy SDK',
- link: { type: 'doc', id: 'getting-started/set-up/indy-sdk/index' },
- items: [
- 'getting-started/set-up/indy-sdk/linux',
- 'getting-started/set-up/indy-sdk/windows',
- 'getting-started/set-up/indy-sdk/macos-intel',
- 'getting-started/set-up/indy-sdk/macos-arm',
- 'getting-started/set-up/indy-sdk/react-native',
- ],
- },
- 'getting-started/set-up/anoncreds-rs',
+ 'getting-started/set-up/anoncreds',
'getting-started/set-up/indy-vdr',
'getting-started/set-up/cheqd/index',
],
@@ -57,6 +45,12 @@ const sidebars = {
link: { type: 'doc', id: 'concepts/index' },
items: ['concepts/agents', 'concepts/did-and-didcomm', 'concepts/platform-and-environment'],
},
+ {
+ type: 'category',
+ label: 'Features',
+ link: { type: 'doc', id: 'features/index' },
+ items: ['features/aries', 'features/openid4vc', 'features/dids', 'features/credentials'],
+ },
{
type: 'category',
label: 'Tutorials',
@@ -73,16 +67,6 @@ const sidebars = {
'tutorials/registering-schema-and-credential-definition',
'tutorials/issue-a-credential',
'tutorials/mediation',
- {
- type: 'category',
- label: 'Using PostgreSQL with the Indy SDK',
- link: { type: 'doc', id: 'tutorials/indy-sdk-postgres-database-nodejs/index' },
- items: [
- 'tutorials/indy-sdk-postgres-database-nodejs/linux',
- 'tutorials/indy-sdk-postgres-database-nodejs/macos',
- 'tutorials/indy-sdk-postgres-database-nodejs/windows',
- ],
- },
],
},
{
diff --git a/snippets/0.4/package.json b/snippets/0.4/package.json
index c4531f9f..b27b2e81 100644
--- a/snippets/0.4/package.json
+++ b/snippets/0.4/package.json
@@ -13,21 +13,24 @@
"dev:set-up": "ts-node --esm src/set-up.ts"
},
"dependencies": {
- "@aries-framework/anoncreds": "^0.4.0",
- "@aries-framework/anoncreds-rs": "^0.4.0",
- "@aries-framework/askar": "^0.4.0",
- "@aries-framework/core": "^0.4.0",
- "@aries-framework/indy-sdk": "^0.4.0",
- "@aries-framework/indy-vdr": "^0.4.0",
- "@aries-framework/cheqd": "^0.4.0",
- "@aries-framework/node": "^0.4.0",
- "@aries-framework/react-native": "^0.4.0",
+ "@aries-framework/anoncreds": "^0.4.2",
+ "@aries-framework/anoncreds-rs": "^0.4.2",
+ "@aries-framework/askar": "^0.4.2",
+ "@aries-framework/core": "^0.4.2",
+ "@aries-framework/indy-sdk": "^0.4.2",
+ "@aries-framework/indy-vdr": "^0.4.2",
+ "@aries-framework/cheqd": "^0.4.2",
+ "@aries-framework/node": "^0.4.2",
+ "@aries-framework/react-native": "^0.4.2",
"@hyperledger/anoncreds-nodejs": "^0.1.0",
"@hyperledger/anoncreds-react-native": "^0.1.0",
- "@hyperledger/aries-askar-nodejs": "^0.1.0",
- "@hyperledger/aries-askar-react-native": "^0.1.0",
+ "@hyperledger/anoncreds-shared": "^0.1.0",
+ "@hyperledger/aries-askar-nodejs": "^0.1.1",
+ "@hyperledger/aries-askar-react-native": "^0.1.1",
+ "@hyperledger/aries-askar-shared": "^0.1.1",
"@hyperledger/indy-vdr-nodejs": "^0.1.0",
"@hyperledger/indy-vdr-react-native": "^0.1.0",
+ "@hyperledger/indy-vdr-shared": "^0.1.0",
"indy-sdk": "^1.16.0-dev-1655",
"indy-sdk-react-native": "^0.3.1",
"node-fetch": "2"
diff --git a/snippets/current/package.json b/snippets/current/package.json
index cdc1b0b7..d668b4c7 100644
--- a/snippets/current/package.json
+++ b/snippets/current/package.json
@@ -13,27 +13,22 @@
"dev:set-up": "ts-node --esm src/set-up.ts"
},
"dependencies": {
- "@aries-framework/anoncreds": "^0.4.0",
- "@aries-framework/anoncreds-rs": "^0.4.0",
- "@aries-framework/askar": "^0.4.0",
- "@aries-framework/core": "^0.4.0",
- "@aries-framework/indy-sdk": "^0.4.0",
- "@aries-framework/indy-vdr": "^0.4.0",
- "@aries-framework/cheqd": "^0.4.0",
- "@aries-framework/node": "^0.4.0",
- "@aries-framework/react-native": "^0.4.0",
- "@hyperledger/anoncreds-nodejs": "^0.1.0",
- "@hyperledger/anoncreds-react-native": "^0.1.0",
- "@hyperledger/aries-askar-nodejs": "^0.1.0",
- "@hyperledger/aries-askar-react-native": "^0.1.0",
- "@hyperledger/indy-vdr-nodejs": "^0.1.0",
- "@hyperledger/indy-vdr-react-native": "^0.1.0",
- "indy-sdk": "^1.16.0-dev-1655",
- "indy-sdk-react-native": "^0.3.1",
+ "@credo-ts/anoncreds": "0.5.0-alpha.110",
+ "@credo-ts/askar": "0.5.0-alpha.110",
+ "@credo-ts/core": "0.5.0-alpha.110",
+ "@credo-ts/indy-vdr": "0.5.0-alpha.110",
+ "@credo-ts/cheqd": "0.5.0-alpha.110",
+ "@credo-ts/node": "0.5.0-alpha.110",
+ "@credo-ts/react-native": "0.5.0-alpha.110",
+ "@hyperledger/anoncreds-nodejs": "0.2.0-dev.9",
+ "@hyperledger/anoncreds-react-native": "0.2.0-dev.9",
+ "@hyperledger/anoncreds-shared": "0.2.0-dev.9",
+ "@hyperledger/aries-askar-nodejs": "0.2.0-dev.6",
+ "@hyperledger/aries-askar-react-native": "0.2.0-dev.6",
+ "@hyperledger/aries-askar-shared": "0.2.0-dev.6",
+ "@hyperledger/indy-vdr-nodejs": "0.2.0-dev.6",
+ "@hyperledger/indy-vdr-react-native": "0.2.0-dev.6",
+ "@hyperledger/indy-vdr-shared": "0.2.0-dev.6",
"node-fetch": "2"
- },
- "devDependencies": {
- "@types/indy-sdk": "1.16.26",
- "@types/indy-sdk-react-native": "npm:@types/indy-sdk@1.16.26"
}
}
diff --git a/snippets/current/src/create-a-connection.ts b/snippets/current/src/create-a-connection.ts
index 525ce92f..7e52365f 100644
--- a/snippets/current/src/create-a-connection.ts
+++ b/snippets/current/src/create-a-connection.ts
@@ -1,4 +1,4 @@
-import { AskarModule } from '@aries-framework/askar'
+import { AskarModule } from '@credo-ts/askar'
import {
Agent,
InitConfig,
@@ -9,8 +9,8 @@ import {
DidExchangeState,
OutOfBandRecord,
ConnectionsModule,
-} from '@aries-framework/core'
-import { agentDependencies, HttpInboundTransport } from '@aries-framework/node'
+} from '@credo-ts/core'
+import { agentDependencies, HttpInboundTransport } from '@credo-ts/node'
import { ariesAskar } from '@hyperledger/aries-askar-nodejs'
// start-section-1
@@ -27,7 +27,6 @@ const initializeBobAgent = async () => {
}
// A new instance of an agent is created here
- // Askar can also be replaced by the indy-sdk if required
const agent = new Agent({
config,
modules: {
@@ -64,7 +63,6 @@ const initializeAcmeAgent = async () => {
}
// A new instance of an agent is created here
- // Askar can also be replaced by the indy-sdk if required
const agent = new Agent({
config,
modules: {
diff --git a/snippets/current/src/issue-a-credential.ts b/snippets/current/src/issue-a-credential.ts
index b1006aea..b3d9ca4d 100644
--- a/snippets/current/src/issue-a-credential.ts
+++ b/snippets/current/src/issue-a-credential.ts
@@ -9,23 +9,22 @@ import {
Agent,
CredentialsModule,
V2CredentialProtocol,
-} from '@aries-framework/core'
-import { agentDependencies, HttpInboundTransport } from '@aries-framework/node'
-import { AskarModule } from '@aries-framework/askar'
+} from '@credo-ts/core'
+import { agentDependencies, HttpInboundTransport } from '@credo-ts/node'
+import { AskarModule } from '@credo-ts/askar'
import { ariesAskar } from '@hyperledger/aries-askar-nodejs'
import {
IndyVdrAnonCredsRegistry,
IndyVdrIndyDidRegistrar,
IndyVdrIndyDidResolver,
IndyVdrModule,
-} from '@aries-framework/indy-vdr'
+} from '@credo-ts/indy-vdr'
import { indyVdr } from '@hyperledger/indy-vdr-nodejs'
import {
AnonCredsCredentialFormatService,
AnonCredsModule,
LegacyIndyCredentialFormatService,
-} from '@aries-framework/anoncreds'
-import { AnonCredsRsModule } from '@aries-framework/anoncreds-rs'
+} from '@credo-ts/anoncreds'
import { anoncreds } from '@hyperledger/anoncreds-nodejs'
const issuerConfig: InitConfig = {
@@ -52,9 +51,6 @@ const issuer = new Agent({
askar: new AskarModule({
ariesAskar,
}),
- anoncredsRs: new AnonCredsRsModule({
- anoncreds,
- }),
indyVdr: new IndyVdrModule({
indyVdr,
networks: [
@@ -68,6 +64,7 @@ const issuer = new Agent({
}),
anoncreds: new AnonCredsModule({
registries: [new IndyVdrAnonCredsRegistry()],
+ anoncreds,
}),
dids: new DidsModule({
registrars: [new IndyVdrIndyDidRegistrar()],
@@ -101,9 +98,6 @@ const holder = new Agent({
askar: new AskarModule({
ariesAskar,
}),
- anoncredsRs: new AnonCredsRsModule({
- anoncreds,
- }),
indyVdr: new IndyVdrModule({
indyVdr,
networks: [
@@ -117,6 +111,7 @@ const holder = new Agent({
}),
anoncreds: new AnonCredsModule({
registries: [new IndyVdrAnonCredsRegistry()],
+ anoncreds,
}),
dids: new DidsModule({
resolvers: [new IndyVdrIndyDidResolver()],
diff --git a/snippets/current/src/mediation-recipient.ts b/snippets/current/src/mediation-recipient.ts
index a91ebfa1..881c7684 100644
--- a/snippets/current/src/mediation-recipient.ts
+++ b/snippets/current/src/mediation-recipient.ts
@@ -6,10 +6,10 @@ import {
LogLevel,
MediationRecipientModule,
WsOutboundTransport,
-} from '@aries-framework/core'
-import { IndySdkModule } from '@aries-framework/indy-sdk'
-import { agentDependencies } from '@aries-framework/node'
-import indySdk from 'indy-sdk'
+} from '@credo-ts/core'
+import { AskarModule } from '@credo-ts/askar'
+import { ariesAskar } from '@hyperledger/aries-askar-nodejs'
+import { agentDependencies } from '@credo-ts/node'
// start-section-1
const name = 'alice'
@@ -35,7 +35,7 @@ const alice = new Agent({
mediationRecipient: new MediationRecipientModule({
mediatorInvitationUrl,
}),
- indySdk: new IndySdkModule({ indySdk }),
+ askar: new AskarModule({ ariesAskar }),
},
})
diff --git a/snippets/current/src/mediator-setup.ts b/snippets/current/src/mediator-setup.ts
index 867ff4fe..793b13b5 100644
--- a/snippets/current/src/mediator-setup.ts
+++ b/snippets/current/src/mediator-setup.ts
@@ -6,10 +6,10 @@ import {
MediationStateChangedEvent,
MediatorModule,
RoutingEventTypes,
-} from '@aries-framework/core'
-import { IndySdkModule } from '@aries-framework/indy-sdk'
-import { HttpInboundTransport, agentDependencies } from '@aries-framework/node'
-import indySdk from 'indy-sdk'
+} from '@credo-ts/core'
+import { AskarModule } from '@credo-ts/askar'
+import { ariesAskar } from '@hyperledger/aries-askar-nodejs'
+import { HttpInboundTransport, agentDependencies } from '@credo-ts/node'
// start-section-1
const name = 'mediator'
@@ -28,7 +28,7 @@ const mediator = new Agent({
config: agentConfig,
dependencies: agentDependencies,
modules: {
- indySdk: new IndySdkModule({ indySdk }),
+ askar: new AskarModule({ ariesAskar }),
mediator: new MediatorModule({
autoAcceptMediationRequests: true,
}),
diff --git a/snippets/current/src/register-schema-and-cred-def.ts b/snippets/current/src/register-schema-and-cred-def.ts
index fe9c8685..468f8795 100644
--- a/snippets/current/src/register-schema-and-cred-def.ts
+++ b/snippets/current/src/register-schema-and-cred-def.ts
@@ -1,4 +1,4 @@
-import { DidsModule, InitConfig, KeyType, LogLevel, TypedArrayEncoder } from '@aries-framework/core'
+import { DidsModule, InitConfig, KeyType, TypedArrayEncoder } from '@credo-ts/core'
const config: InitConfig = {
label: 'docs-agent-nodejs-register-schema-and-cred-def',
@@ -9,19 +9,18 @@ const config: InitConfig = {
}
// start-section-1
-import { Agent } from '@aries-framework/core'
-import { agentDependencies } from '@aries-framework/node'
-import { AskarModule } from '@aries-framework/askar'
+import { Agent } from '@credo-ts/core'
+import { agentDependencies } from '@credo-ts/node'
+import { AskarModule } from '@credo-ts/askar'
import { ariesAskar } from '@hyperledger/aries-askar-nodejs'
import {
IndyVdrAnonCredsRegistry,
IndyVdrIndyDidRegistrar,
IndyVdrIndyDidResolver,
IndyVdrModule,
-} from '@aries-framework/indy-vdr'
+} from '@credo-ts/indy-vdr'
import { indyVdr } from '@hyperledger/indy-vdr-nodejs'
-import { AnonCredsModule } from '@aries-framework/anoncreds'
-import { AnonCredsRsModule } from '@aries-framework/anoncreds-rs'
+import { AnonCredsModule } from '@credo-ts/anoncreds'
import { anoncreds } from '@hyperledger/anoncreds-nodejs'
import {
CheqdAnonCredsRegistry,
@@ -29,7 +28,7 @@ import {
CheqdDidResolver,
CheqdModule,
CheqdModuleConfig,
-} from '@aries-framework/cheqd'
+} from '@credo-ts/cheqd'
const agent = new Agent({
config,
@@ -40,9 +39,6 @@ const agent = new Agent({
askar: new AskarModule({
ariesAskar,
}),
- anoncredsRs: new AnonCredsRsModule({
- anoncreds,
- }),
indyVdr: new IndyVdrModule({
indyVdr,
networks: [
@@ -66,6 +62,7 @@ const agent = new Agent({
),
anoncreds: new AnonCredsModule({
registries: [new IndyVdrAnonCredsRegistry(), new CheqdAnonCredsRegistry()],
+ anoncreds,
}),
dids: new DidsModule({
registrars: [new IndyVdrIndyDidRegistrar(), new CheqdDidRegistrar()],
@@ -129,7 +126,9 @@ const credentialDefinitionResult = await agent.modules.anoncreds.registerCredent
issuerId: '',
schemaId: schemaResult.schemaState.schemaId,
},
- options: {},
+ options: {
+ supportRevocation: false,
+ },
})
if (credentialDefinitionResult.credentialDefinitionState.state === 'failed') {
diff --git a/snippets/current/src/set-up-anoncreds-rs-rn.ts b/snippets/current/src/set-up-anoncreds-rn.ts
similarity index 67%
rename from snippets/current/src/set-up-anoncreds-rs-rn.ts
rename to snippets/current/src/set-up-anoncreds-rn.ts
index 7322c7b0..9d371c55 100644
--- a/snippets/current/src/set-up-anoncreds-rs-rn.ts
+++ b/snippets/current/src/set-up-anoncreds-rn.ts
@@ -1,4 +1,4 @@
-import type { InitConfig } from '@aries-framework/core'
+import type { InitConfig } from '@credo-ts/core'
const config: InitConfig = {
label: 'docs-agent-react-native',
@@ -9,15 +9,14 @@ const config: InitConfig = {
}
// start-section-1
-import { Agent } from '@aries-framework/core'
-import { agentDependencies } from '@aries-framework/react-native'
-import { AskarModule } from '@aries-framework/askar'
+import { Agent } from '@credo-ts/core'
+import { agentDependencies } from '@credo-ts/react-native'
+import { AskarModule } from '@credo-ts/askar'
import { ariesAskar } from '@hyperledger/aries-askar-react-native'
import { anoncreds } from '@hyperledger/anoncreds-react-native'
-import { AnonCredsModule } from '@aries-framework/anoncreds'
-import { AnonCredsRsModule } from '@aries-framework/anoncreds-rs'
-import { IndyVdrAnonCredsRegistry } from '@aries-framework/indy-vdr'
+import { AnonCredsModule } from '@credo-ts/anoncreds'
+import { IndyVdrAnonCredsRegistry } from '@credo-ts/indy-vdr'
const agent = new Agent({
config,
@@ -28,13 +27,11 @@ const agent = new Agent({
askar: new AskarModule({
ariesAskar,
}),
- anoncredsRs: new AnonCredsRsModule({
- anoncreds,
- }),
anoncreds: new AnonCredsModule({
// Here we add an Indy VDR registry as an example, any AnonCreds registry
// can be used
registries: [new IndyVdrAnonCredsRegistry()],
+ anoncreds,
}),
},
})
diff --git a/snippets/current/src/set-up-anoncreds-rs.ts b/snippets/current/src/set-up-anoncreds.ts
similarity index 67%
rename from snippets/current/src/set-up-anoncreds-rs.ts
rename to snippets/current/src/set-up-anoncreds.ts
index 020fbe9d..70ab33af 100644
--- a/snippets/current/src/set-up-anoncreds-rs.ts
+++ b/snippets/current/src/set-up-anoncreds.ts
@@ -1,4 +1,4 @@
-import type { InitConfig } from '@aries-framework/core'
+import type { InitConfig } from '@credo-ts/core'
const config: InitConfig = {
label: 'docs-agent-nodejs',
@@ -9,15 +9,14 @@ const config: InitConfig = {
}
// start-section-1
-import { Agent } from '@aries-framework/core'
-import { agentDependencies } from '@aries-framework/node'
-import { AskarModule } from '@aries-framework/askar'
+import { Agent } from '@credo-ts/core'
+import { agentDependencies } from '@credo-ts/node'
+import { AskarModule } from '@credo-ts/askar'
import { ariesAskar } from '@hyperledger/aries-askar-nodejs'
import { anoncreds } from '@hyperledger/anoncreds-nodejs'
-import { AnonCredsModule } from '@aries-framework/anoncreds'
-import { AnonCredsRsModule } from '@aries-framework/anoncreds-rs'
-import { IndyVdrAnonCredsRegistry } from '@aries-framework/indy-vdr'
+import { AnonCredsModule } from '@credo-ts/anoncreds'
+import { IndyVdrAnonCredsRegistry } from '@credo-ts/indy-vdr'
const agent = new Agent({
config,
@@ -28,13 +27,11 @@ const agent = new Agent({
askar: new AskarModule({
ariesAskar,
}),
- anoncredsRs: new AnonCredsRsModule({
- anoncreds,
- }),
anoncreds: new AnonCredsModule({
// Here we add an Indy VDR registry as an example, any AnonCreds registry
// can be used
registries: [new IndyVdrAnonCredsRegistry()],
+ anoncreds,
}),
},
})
diff --git a/snippets/current/src/set-up-askar-rn.ts b/snippets/current/src/set-up-askar-rn.ts
index abe5427e..f28982a2 100644
--- a/snippets/current/src/set-up-askar-rn.ts
+++ b/snippets/current/src/set-up-askar-rn.ts
@@ -1,4 +1,4 @@
-import type { InitConfig } from '@aries-framework/core'
+import type { InitConfig } from '@credo-ts/core'
const config: InitConfig = {
label: 'docs-agent-react-native',
@@ -9,9 +9,9 @@ const config: InitConfig = {
}
// start-section-1
-import { Agent } from '@aries-framework/core'
-import { agentDependencies } from '@aries-framework/react-native'
-import { AskarModule } from '@aries-framework/askar'
+import { Agent } from '@credo-ts/core'
+import { agentDependencies } from '@credo-ts/react-native'
+import { AskarModule } from '@credo-ts/askar'
import { ariesAskar } from '@hyperledger/aries-askar-react-native'
const agent = new Agent({
diff --git a/snippets/current/src/set-up-askar.ts b/snippets/current/src/set-up-askar.ts
index 0704dcd7..451d89b6 100644
--- a/snippets/current/src/set-up-askar.ts
+++ b/snippets/current/src/set-up-askar.ts
@@ -1,4 +1,4 @@
-import type { InitConfig } from '@aries-framework/core'
+import type { InitConfig } from '@credo-ts/core'
const config: InitConfig = {
label: 'docs-agent-nodejs',
@@ -9,9 +9,9 @@ const config: InitConfig = {
}
// start-section-1
-import { Agent } from '@aries-framework/core'
-import { agentDependencies } from '@aries-framework/node'
-import { AskarModule } from '@aries-framework/askar'
+import { Agent } from '@credo-ts/core'
+import { agentDependencies } from '@credo-ts/node'
+import { AskarModule } from '@credo-ts/askar'
import { ariesAskar } from '@hyperledger/aries-askar-nodejs'
const agent = new Agent({
diff --git a/snippets/current/src/set-up-cheqd.ts b/snippets/current/src/set-up-cheqd.ts
index 0ae0ad1a..b606a712 100644
--- a/snippets/current/src/set-up-cheqd.ts
+++ b/snippets/current/src/set-up-cheqd.ts
@@ -1,4 +1,4 @@
-import { DidDocumentService, InitConfig } from '@aries-framework/core'
+import { DidDocumentService, InitConfig } from '@credo-ts/core'
const config: InitConfig = {
label: 'docs-agent-react-native',
@@ -9,9 +9,9 @@ const config: InitConfig = {
}
// start-section-1
-import { Agent, DidsModule, KeyType, DidDocument } from '@aries-framework/core'
-import { agentDependencies } from '@aries-framework/react-native'
-import { AskarModule } from '@aries-framework/askar'
+import { Agent, DidsModule, KeyType, DidDocument } from '@credo-ts/core'
+import { agentDependencies } from '@credo-ts/react-native'
+import { AskarModule } from '@credo-ts/askar'
import { ariesAskar } from '@hyperledger/aries-askar-react-native'
import {
@@ -21,8 +21,9 @@ import {
CheqdModule,
CheqdModuleConfig,
CheqdDidCreateOptions,
-} from '@aries-framework/cheqd'
-import { AnonCredsModule } from '@aries-framework/anoncreds'
+} from '@credo-ts/cheqd'
+import { AnonCredsModule } from '@credo-ts/anoncreds'
+import { anoncreds } from '@hyperledger/anoncreds-react-native'
const agent = new Agent({
config,
@@ -36,6 +37,7 @@ const agent = new Agent({
// AnonCreds
anoncreds: new AnonCredsModule({
registries: [new CheqdAnonCredsRegistry()],
+ anoncreds,
}),
// Add cheqd module
diff --git a/snippets/current/src/set-up-indy-sdk-postgres.ts b/snippets/current/src/set-up-indy-sdk-postgres.ts
deleted file mode 100644
index 8d574305..00000000
--- a/snippets/current/src/set-up-indy-sdk-postgres.ts
+++ /dev/null
@@ -1,50 +0,0 @@
-// start-section-1
-import { Agent, InitConfig } from '@aries-framework/core'
-import { IndySdkModule } from '@aries-framework/indy-sdk'
-import {
- agentDependencies,
- IndySdkPostgresStorageConfig,
- loadIndySdkPostgresPlugin,
- IndySdkPostgresWalletScheme,
-} from '@aries-framework/node'
-import indySdk from 'indy-sdk'
-
-// IndySdkPostgresStorageConfig defines interface for the Postgres plugin configuration.
-const storageConfig = {
- type: 'postgres_storage',
- config: {
- url: 'localhost:5432',
- wallet_scheme: IndySdkPostgresWalletScheme.DatabasePerWallet,
- },
- credentials: {
- account: 'postgres',
- password: 'postgres',
- admin_account: 'postgres',
- admin_password: 'postgres',
- },
-} satisfies IndySdkPostgresStorageConfig
-
-// load the postgres wallet plugin before agent initialization
-loadIndySdkPostgresPlugin(storageConfig.config, storageConfig.credentials)
-
-const agentConfig: InitConfig = {
- label: 'My Agent',
- // walletConfig.id and walletConfig.key are still required
- walletConfig: {
- id: 'walletId',
- key: 'testKey0000000000000000000000000',
- // storage is added and defines the postgres plugin configuration
- storage: storageConfig,
- },
-}
-
-const agent = new Agent({
- config: agentConfig,
- dependencies: agentDependencies,
- modules: {
- indySdk: new IndySdkModule({
- indySdk,
- }),
- },
-})
-// end-section-1
diff --git a/snippets/current/src/set-up-indy-sdk-rn.ts b/snippets/current/src/set-up-indy-sdk-rn.ts
deleted file mode 100644
index 38044685..00000000
--- a/snippets/current/src/set-up-indy-sdk-rn.ts
+++ /dev/null
@@ -1,36 +0,0 @@
-import type { InitConfig } from '@aries-framework/core'
-
-const config: InitConfig = {
- label: 'docs-agent-react-native',
- walletConfig: {
- id: 'wallet-id',
- key: 'testkey0000000000000000000000000',
- },
-}
-
-// start-section-1
-import { Agent } from '@aries-framework/core'
-import { agentDependencies } from '@aries-framework/react-native'
-import { IndySdkModule } from '@aries-framework/indy-sdk'
-import indySdk from 'indy-sdk-react-native'
-
-const agent = new Agent({
- config,
- dependencies: agentDependencies,
- modules: {
- // Register the Indy SDK module on the agent
- indySdk: new IndySdkModule({
- indySdk,
- }),
- },
-})
-// end-section-1
-
-agent
- .initialize()
- .then(() => {
- console.log('Agent initialized!')
- })
- .catch((e) => {
- console.error(`Something went wrong while setting up the agent! Message: ${e}`)
- })
diff --git a/snippets/current/src/set-up-indy-sdk.ts b/snippets/current/src/set-up-indy-sdk.ts
deleted file mode 100644
index 3dae9c2e..00000000
--- a/snippets/current/src/set-up-indy-sdk.ts
+++ /dev/null
@@ -1,36 +0,0 @@
-import type { InitConfig } from '@aries-framework/core'
-
-const config: InitConfig = {
- label: 'docs-agent-react-native',
- walletConfig: {
- id: 'wallet-id',
- key: 'testkey0000000000000000000000000',
- },
-}
-
-// start-section-1
-import { Agent } from '@aries-framework/core'
-import { agentDependencies } from '@aries-framework/node'
-import { IndySdkModule } from '@aries-framework/indy-sdk'
-import indySdk from 'indy-sdk'
-
-const agent = new Agent({
- config,
- dependencies: agentDependencies,
- modules: {
- // Register the Indy SDK module on the agent
- indySdk: new IndySdkModule({
- indySdk,
- }),
- },
-})
-// end-section-1
-
-await agent
- .initialize()
- .then(() => {
- console.log('Agent initialized!')
- })
- .catch((e) => {
- console.error(`Something went wrong while setting up the agent! Message: ${e}`)
- })
diff --git a/snippets/current/src/set-up-indy-vdr-config.ts b/snippets/current/src/set-up-indy-vdr-config.ts
index d99cf179..ca7d2d6b 100644
--- a/snippets/current/src/set-up-indy-vdr-config.ts
+++ b/snippets/current/src/set-up-indy-vdr-config.ts
@@ -1,6 +1,6 @@
// start-section-1
import { indyVdr } from '@hyperledger/indy-vdr-nodejs'
-import { IndyVdrModule } from '@aries-framework/indy-vdr'
+import { IndyVdrModule } from '@credo-ts/indy-vdr'
const modules = {
indyVdr: new IndyVdrModule({
diff --git a/snippets/current/src/set-up-indy-vdr-rn.ts b/snippets/current/src/set-up-indy-vdr-rn.ts
index 9cce84dd..1d22aadf 100644
--- a/snippets/current/src/set-up-indy-vdr-rn.ts
+++ b/snippets/current/src/set-up-indy-vdr-rn.ts
@@ -1,4 +1,4 @@
-import type { InitConfig } from '@aries-framework/core'
+import type { InitConfig } from '@credo-ts/core'
const config: InitConfig = {
label: 'docs-agent-react-native',
@@ -9,14 +9,15 @@ const config: InitConfig = {
}
// start-section-1
-import { Agent } from '@aries-framework/core'
-import { agentDependencies } from '@aries-framework/react-native'
-import { AskarModule } from '@aries-framework/askar'
+import { Agent } from '@credo-ts/core'
+import { agentDependencies } from '@credo-ts/react-native'
+import { AskarModule } from '@credo-ts/askar'
import { ariesAskar } from '@hyperledger/aries-askar-react-native'
-import { IndyVdrAnonCredsRegistry, IndyVdrModule } from '@aries-framework/indy-vdr'
+import { IndyVdrAnonCredsRegistry, IndyVdrModule } from '@credo-ts/indy-vdr'
import { indyVdr } from '@hyperledger/indy-vdr-react-native'
-import { AnonCredsModule } from '@aries-framework/anoncreds'
+import { AnonCredsModule } from '@credo-ts/anoncreds'
+import { anoncreds } from '@hyperledger/anoncreds-react-native'
const agent = new Agent({
config,
@@ -35,6 +36,7 @@ const agent = new Agent({
}),
anoncreds: new AnonCredsModule({
registries: [new IndyVdrAnonCredsRegistry()],
+ anoncreds,
}),
// Indy VDR can optionally be used with Askar as wallet and storage implementation
askar: new AskarModule({
diff --git a/snippets/current/src/set-up-indy-vdr.ts b/snippets/current/src/set-up-indy-vdr.ts
index e6779d31..fd4c0d2e 100644
--- a/snippets/current/src/set-up-indy-vdr.ts
+++ b/snippets/current/src/set-up-indy-vdr.ts
@@ -1,4 +1,4 @@
-import type { InitConfig } from '@aries-framework/core'
+import type { InitConfig } from '@credo-ts/core'
const config: InitConfig = {
label: 'docs-agent-nodejs',
@@ -9,14 +9,15 @@ const config: InitConfig = {
}
// start-section-1
-import { Agent } from '@aries-framework/core'
-import { agentDependencies } from '@aries-framework/node'
-import { AskarModule } from '@aries-framework/askar'
+import { Agent } from '@credo-ts/core'
+import { agentDependencies } from '@credo-ts/node'
+import { AskarModule } from '@credo-ts/askar'
import { ariesAskar } from '@hyperledger/aries-askar-nodejs'
-import { IndyVdrAnonCredsRegistry, IndyVdrModule } from '@aries-framework/indy-vdr'
+import { IndyVdrAnonCredsRegistry, IndyVdrModule } from '@credo-ts/indy-vdr'
import { indyVdr } from '@hyperledger/indy-vdr-nodejs'
-import { AnonCredsModule } from '@aries-framework/anoncreds'
+import { AnonCredsModule } from '@credo-ts/anoncreds'
+import { anoncreds } from '@hyperledger/anoncreds-nodejs'
const agent = new Agent({
config,
@@ -35,6 +36,7 @@ const agent = new Agent({
}),
anoncreds: new AnonCredsModule({
registries: [new IndyVdrAnonCredsRegistry()],
+ anoncreds,
}),
// Indy VDR can optionally be used with Askar as wallet and storage implementation
askar: new AskarModule({
diff --git a/snippets/current/src/set-up-rn.ts b/snippets/current/src/set-up-rn.ts
index f9e10429..45a56820 100644
--- a/snippets/current/src/set-up-rn.ts
+++ b/snippets/current/src/set-up-rn.ts
@@ -1,7 +1,7 @@
// start-section-1
-import type { InitConfig } from '@aries-framework/core'
-import { Agent } from '@aries-framework/core'
-import { agentDependencies } from '@aries-framework/react-native'
+import type { InitConfig } from '@credo-ts/core'
+import { Agent } from '@credo-ts/core'
+import { agentDependencies } from '@credo-ts/react-native'
const config: InitConfig = {
label: 'docs-agent-react-native',
@@ -18,7 +18,7 @@ const agent = new Agent({
// end-section-1
// start-section-2
-import { HttpOutboundTransport, WsOutboundTransport } from '@aries-framework/core'
+import { HttpOutboundTransport, WsOutboundTransport } from '@credo-ts/core'
// ... agent setup from prevous section ...
diff --git a/snippets/current/src/set-up.ts b/snippets/current/src/set-up.ts
index 21ca3a43..5f38b865 100644
--- a/snippets/current/src/set-up.ts
+++ b/snippets/current/src/set-up.ts
@@ -1,7 +1,7 @@
// start-section-1
-import type { InitConfig } from '@aries-framework/core'
-import { Agent } from '@aries-framework/core'
-import { agentDependencies } from '@aries-framework/node'
+import type { InitConfig } from '@credo-ts/core'
+import { Agent } from '@credo-ts/core'
+import { agentDependencies } from '@credo-ts/node'
const config: InitConfig = {
label: 'docs-agent-nodejs',
@@ -18,8 +18,8 @@ const agent = new Agent({
// end-section-1
// start-section-2
-import { HttpOutboundTransport, WsOutboundTransport } from '@aries-framework/core'
-import { HttpInboundTransport } from '@aries-framework/node'
+import { HttpOutboundTransport, WsOutboundTransport } from '@credo-ts/core'
+import { HttpInboundTransport } from '@credo-ts/node'
// ... agent setup from prevous section ...
diff --git a/yarn.lock b/yarn.lock
index 622c236c..7e1be23a 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,6 +2,28 @@
# yarn lockfile v1
+"@2060.io/ffi-napi@4.0.8", "@2060.io/ffi-napi@^4.0.8":
+ version "4.0.8"
+ resolved "https://registry.yarnpkg.com/@2060.io/ffi-napi/-/ffi-napi-4.0.8.tgz#ec3424d9ec979491b41b8d82514ae82a647da8b0"
+ integrity sha512-sONRKLtxFKN5PXuZaa41b/kTN+R5qAh6PAL15/fnafnvAKQ5WBoxRIy8xRh8jo9mydywtt4IrWtatB93w0+3cA==
+ dependencies:
+ "@2060.io/ref-napi" "^3.0.6"
+ debug "^4.1.1"
+ get-uv-event-loop-napi-h "^1.0.5"
+ node-addon-api "^3.0.0"
+ node-gyp-build "^4.2.1"
+ ref-struct-di "^1.1.0"
+
+"@2060.io/ref-napi@3.0.6", "@2060.io/ref-napi@^3.0.6":
+ version "3.0.6"
+ resolved "https://registry.yarnpkg.com/@2060.io/ref-napi/-/ref-napi-3.0.6.tgz#32b1a257cada096f95345fd7abae746385ecc5dd"
+ integrity sha512-8VAIXLdKL85E85jRYpPcZqATBL6fGnC/XjBGNeSgRSMJtrAMSmfRksqIq5AmuZkA2eeJXMWCiN6UQOUdozcymg==
+ dependencies:
+ debug "^4.1.1"
+ get-symbol-from-current-process-h "^1.0.2"
+ node-addon-api "^3.0.0"
+ node-gyp-build "^4.2.1"
+
"@algolia/autocomplete-core@1.7.4":
version "1.7.4"
resolved "https://registry.yarnpkg.com/@algolia/autocomplete-core/-/autocomplete-core-1.7.4.tgz#85ff36b2673654a393c8c505345eaedd6eaa4f70"
@@ -173,57 +195,57 @@
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
-"@aries-framework/anoncreds-rs@^0.4.0":
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/@aries-framework/anoncreds-rs/-/anoncreds-rs-0.4.0.tgz#9fb00c7b8c1c01439102cb19f689fd74e3e8dbdc"
- integrity sha512-9tMA4DwuyFg8qqLRBgTXfiA1jijYpAMosFP2CxUv8aGYwXV5xvMd4B/YbecuQh5NyvNZ9h7uR/JF3jIwkhrgxw==
+"@aries-framework/anoncreds-rs@^0.4.2":
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/@aries-framework/anoncreds-rs/-/anoncreds-rs-0.4.2.tgz#accce59154083dadc91d6a9c8333af8cb10f2188"
+ integrity sha512-S2QGDlVLJUaqjOj/b+lD+Xq8x4j88IyfJ3vwXaVwkrTlhpCiy/L+xoTaZq8UIcYIWfsrJ9CR6wl+gbCestGnFg==
dependencies:
- "@aries-framework/anoncreds" "0.4.0"
- "@aries-framework/core" "0.4.0"
+ "@aries-framework/anoncreds" "0.4.2"
+ "@aries-framework/core" "0.4.2"
class-transformer "^0.5.1"
class-validator "0.14.0"
rxjs "^7.2.0"
- tsyringe "^4.7.0"
+ tsyringe "^4.8.0"
-"@aries-framework/anoncreds@0.4.0", "@aries-framework/anoncreds@^0.4.0":
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/@aries-framework/anoncreds/-/anoncreds-0.4.0.tgz#abf0dd6b316d607fbee9fc5ef5d5709dfa2ded36"
- integrity sha512-jzZVMXJoTutF5jrATYXHiavUi2APEUbvGiOA8EelP7cabVxCijoWh0DdTEBoGSUv9xuK26iSWVY0MmnAxD7l9g==
+"@aries-framework/anoncreds@0.4.2", "@aries-framework/anoncreds@^0.4.2":
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/@aries-framework/anoncreds/-/anoncreds-0.4.2.tgz#0d2bc7a40c8fac777c18325199939866d03c9ea3"
+ integrity sha512-Jwn9TfzgOhuW6nxOs0DyzU1W/XL1XvyOt8zjhgz0ETDuwVJMtSTyN+1f4y5B0R7fuBYJ6KbdAwfeCRQT8BLa6g==
dependencies:
- "@aries-framework/core" "0.4.0"
+ "@aries-framework/core" "0.4.2"
bn.js "^5.2.1"
class-transformer "0.5.1"
class-validator "0.14.0"
reflect-metadata "^0.1.13"
-"@aries-framework/askar@^0.4.0":
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/@aries-framework/askar/-/askar-0.4.0.tgz#c9c044497e466aab9bd5e5d77b2fb1bd01fdac1c"
- integrity sha512-FQxT+NVUv/CSnlXY13Idilg7qA7xABEKOO2YGi5xUGiyruJDtqzQ6dWqGsa2odX3KE1baFFrNHgCC9I7N+++Jg==
+"@aries-framework/askar@^0.4.2":
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/@aries-framework/askar/-/askar-0.4.2.tgz#b05051e0a5bbdf95d3c1339aa19b2680ed6d21f0"
+ integrity sha512-eQuLsXCjVxRRhUCd8yXqP0PD2S3QX3OPV2eUBb7PqkTxdo1ZCbiA8Q1pCP65l9s/zVIGT/2E1ys/n1sZZm1wmQ==
dependencies:
- "@aries-framework/core" "0.4.0"
+ "@aries-framework/core" "0.4.2"
bn.js "^5.2.1"
class-transformer "0.5.1"
class-validator "0.14.0"
rxjs "^7.2.0"
- tsyringe "^4.7.0"
+ tsyringe "^4.8.0"
-"@aries-framework/cheqd@^0.4.0":
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/@aries-framework/cheqd/-/cheqd-0.4.0.tgz#c1193f4d7355cdab3e06ab84ef44628d83dbb9ff"
- integrity sha512-Hb8jx153zoMWRh881TeCajLr+T5E84Pb2+Rb5ipdjyQ4U2UaHiZ0WIEgLBSmjaECxy+Nhqk1l8+U39Zj+Jtw/Q==
+"@aries-framework/cheqd@^0.4.2":
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/@aries-framework/cheqd/-/cheqd-0.4.2.tgz#c9970a03640f5597157a70f842b686f7bc3d7784"
+ integrity sha512-UVEFpPIVeqHwMDFd2Fb/Ire86pdWRC8warhoqbLr2o2Uqm2Le0pvlxXiOoilfWv6q8HCQ7X3shpqG9sr+qxIbA==
dependencies:
- "@aries-framework/anoncreds" "0.4.0"
- "@aries-framework/core" "0.4.0"
+ "@aries-framework/anoncreds" "0.4.2"
+ "@aries-framework/core" "0.4.2"
"@cheqd/sdk" cjs
"@cheqd/ts-proto" cjs
"@cosmjs/crypto" "^0.29.5"
- "@cosmjs/proto-signing" "^0.29.5"
+ "@cosmjs/proto-signing" "^0.31.0"
"@stablelib/ed25519" "^1.0.3"
class-transformer "^0.5.1"
class-validator "^0.14.0"
rxjs "^7.2.0"
- tsyringe "^4.7.0"
+ tsyringe "^4.8.0"
"@aries-framework/core@0.3.3", "@aries-framework/core@^0.3.3":
version "0.3.3"
@@ -259,10 +281,10 @@
varint "^6.0.0"
web-did-resolver "^2.0.8"
-"@aries-framework/core@0.4.0", "@aries-framework/core@^0.4.0":
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/@aries-framework/core/-/core-0.4.0.tgz#6af11446174d8f690aa1bf4abf6f61ad47a05b52"
- integrity sha512-Z/rTgpJMKTl9iQQd8GnNEV5wCZKdV+kkd+Y4e/KS+j+6yMOxrgaVGcAKlcFIPcHUc6l1iOetJFeVLSwftXW2Kg==
+"@aries-framework/core@0.4.2", "@aries-framework/core@^0.4.2":
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/@aries-framework/core/-/core-0.4.2.tgz#f2118c732d6aff8d6557a15de14381e8782b54a1"
+ integrity sha512-2qmDRkxD5vnPlcMjVTqu/Wxog9bUVU+tSr+7mgANgJ9q170FuoSuChU7WA5VCKEdmbRIM4BmvsnTlU8Y+iQ07A==
dependencies:
"@digitalcredentials/jsonld" "^5.2.1"
"@digitalcredentials/jsonld-signatures" "^9.3.1"
@@ -271,6 +293,7 @@
"@stablelib/ed25519" "^1.0.2"
"@stablelib/random" "^1.0.1"
"@stablelib/sha256" "^1.0.1"
+ "@types/node-fetch" "2.6.2"
"@types/ws" "^8.5.4"
abort-controller "^3.0.0"
big-integer "^1.6.51"
@@ -282,37 +305,36 @@
lru_map "^0.4.1"
luxon "^3.3.0"
make-error "^1.3.6"
- node-fetch "^2.6.1"
object-inspect "^1.10.3"
query-string "^7.0.1"
reflect-metadata "^0.1.13"
rxjs "^7.2.0"
- tsyringe "^4.7.0"
+ tsyringe "^4.8.0"
uuid "^9.0.0"
varint "^6.0.0"
web-did-resolver "^2.0.21"
-"@aries-framework/indy-sdk@^0.4.0":
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/@aries-framework/indy-sdk/-/indy-sdk-0.4.0.tgz#d4bb59cf010b2e9166982d4a7a0103325bde9b80"
- integrity sha512-Z54+a7yxFrynGTgc0vYs0proh+4MnV1e0+1SSwFi+kbi11i9rIpLj8pBN5PN1569qYVtCzSaFz4q6BtvzAHLJw==
+"@aries-framework/indy-sdk@^0.4.2":
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/@aries-framework/indy-sdk/-/indy-sdk-0.4.2.tgz#ec6a6a97e200390d5759575612922ae44bac62f8"
+ integrity sha512-ne+SnDTpNQ4bQYYpyYhF0W7c5dlG/UVIdUysFgz/ZTD78tsc+Z7EiXnbz5gKVbqqgxpjiHfNsb4SQJcNUBy8bQ==
dependencies:
- "@aries-framework/anoncreds" "0.4.0"
- "@aries-framework/core" "0.4.0"
+ "@aries-framework/anoncreds" "0.4.2"
+ "@aries-framework/core" "0.4.2"
"@stablelib/ed25519" "^1.0.3"
- "@types/indy-sdk" "1.16.26"
+ "@types/indy-sdk" "1.16.27"
class-transformer "0.5.1"
class-validator "0.14.0"
rxjs "^7.2.0"
- tsyringe "^4.7.0"
+ tsyringe "^4.8.0"
-"@aries-framework/indy-vdr@^0.4.0":
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/@aries-framework/indy-vdr/-/indy-vdr-0.4.0.tgz#990d81bf589a013845165ee5de6a0b72c5105976"
- integrity sha512-0EshmjaNLLswDJnCHoFVAPZ68W+9KjKMA9aYi05vivdLCYlQDsvPSWOz4V2EB1DEosswqV1JTZOASUxfaIQQlg==
+"@aries-framework/indy-vdr@^0.4.2":
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/@aries-framework/indy-vdr/-/indy-vdr-0.4.2.tgz#69acee0a268a044ec7c11d3e647230c397580e7a"
+ integrity sha512-hFZlxWSbwXBY2sTbnCpgWbQAHZM2aeAs5Jj/Id+VJhwVsfwLvlQshBXmVpf6hIswCQsRFl3Q2lSn4MOh4pADYQ==
dependencies:
- "@aries-framework/anoncreds" "0.4.0"
- "@aries-framework/core" "0.4.0"
+ "@aries-framework/anoncreds" "0.4.2"
+ "@aries-framework/core" "0.4.2"
"@aries-framework/node@^0.3.3":
version "0.3.3"
@@ -328,12 +350,12 @@
ref-napi "^3.0.3"
ws "^7.5.3"
-"@aries-framework/node@^0.4.0":
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/@aries-framework/node/-/node-0.4.0.tgz#2d9f0f58f433c8ef61a5f275e3a1d7a75ecc4dbd"
- integrity sha512-ydxkD+Hb8XLLUeX2G27baNUtC3BBB3LG2NfZgy2128q6mAg2mqhLnjWocncE7kWFVneZ5copBIoF2MIPQvwYhg==
+"@aries-framework/node@^0.4.2":
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/@aries-framework/node/-/node-0.4.2.tgz#b410cafab8e76cda3ff392c8d08b3c385c8ac507"
+ integrity sha512-fQOG0BWTewXoLUUd7JcpJeTFmHQfKZVTQFHYpTXwkYVuL3UTWfOEAm1NPtS8TetyHZexFxpKlDRYdFkOG9Z4rw==
dependencies:
- "@aries-framework/core" "0.4.0"
+ "@aries-framework/core" "0.4.2"
"@types/express" "^4.17.15"
express "^4.17.1"
ffi-napi "^4.0.3"
@@ -350,15 +372,22 @@
"@azure/core-asynciterator-polyfill" "^1.0.0"
events "^3.3.0"
-"@aries-framework/react-native@^0.4.0":
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/@aries-framework/react-native/-/react-native-0.4.0.tgz#f4c25c882ca188b4f16d7fcc1c1e5bdba1e73bbf"
- integrity sha512-lKCpM31eu9yu9/ZPJxxCH6zWw9RnSiFmBUHRQZltAWaIghkXkabEavwG+xykzNCnsPHIUKkJjUheqdeVsFkUiA==
+"@aries-framework/react-native@^0.4.2":
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/@aries-framework/react-native/-/react-native-0.4.2.tgz#c13b17f2086dd7691f78897fdb04e4945ef624fc"
+ integrity sha512-Sllg/iL4sFamT/IJmMv0KhFrhdspnCNtAjOi7othwiHmCxWb14HZplUQ6copVI+JT6S1RVX9rUbhUfpv9DhfEA==
dependencies:
- "@aries-framework/core" "0.4.0"
+ "@aries-framework/core" "0.4.2"
"@azure/core-asynciterator-polyfill" "^1.0.2"
events "^3.3.0"
+"@astronautlabs/jsonpath@^1.1.2":
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/@astronautlabs/jsonpath/-/jsonpath-1.1.2.tgz#af19bb4a7d13dcfbc60c3c998ee1e73d7c2ddc38"
+ integrity sha512-FqL/muoreH7iltYC1EB5Tvox5E8NSOOPGkgns4G+qxRKl6k5dxEVljUjB5NcKESzkqwnUqWjSZkL61XGYOuV+A==
+ dependencies:
+ static-eval "2.0.2"
+
"@azure/core-asynciterator-polyfill@^1.0.0", "@azure/core-asynciterator-polyfill@^1.0.2":
version "1.0.2"
resolved "https://registry.yarnpkg.com/@azure/core-asynciterator-polyfill/-/core-asynciterator-polyfill-1.0.2.tgz#0dd3849fb8d97f062a39db0e5cadc9ffaf861fec"
@@ -371,11 +400,24 @@
dependencies:
"@babel/highlight" "^7.18.6"
+"@babel/code-frame@^7.23.5":
+ version "7.23.5"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244"
+ integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==
+ dependencies:
+ "@babel/highlight" "^7.23.4"
+ chalk "^2.4.2"
+
"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.4":
version "7.21.4"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.4.tgz#457ffe647c480dff59c2be092fc3acf71195c87f"
integrity sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==
+"@babel/compat-data@^7.23.5":
+ version "7.23.5"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98"
+ integrity sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==
+
"@babel/core@7.12.9":
version "7.12.9"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8"
@@ -398,6 +440,27 @@
semver "^5.4.1"
source-map "^0.5.0"
+"@babel/core@^7.14.6":
+ version "7.23.9"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.9.tgz#b028820718000f267870822fec434820e9b1e4d1"
+ integrity sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==
+ dependencies:
+ "@ampproject/remapping" "^2.2.0"
+ "@babel/code-frame" "^7.23.5"
+ "@babel/generator" "^7.23.6"
+ "@babel/helper-compilation-targets" "^7.23.6"
+ "@babel/helper-module-transforms" "^7.23.3"
+ "@babel/helpers" "^7.23.9"
+ "@babel/parser" "^7.23.9"
+ "@babel/template" "^7.23.9"
+ "@babel/traverse" "^7.23.9"
+ "@babel/types" "^7.23.9"
+ convert-source-map "^2.0.0"
+ debug "^4.1.0"
+ gensync "^1.0.0-beta.2"
+ json5 "^2.2.3"
+ semver "^6.3.1"
+
"@babel/core@^7.18.6", "@babel/core@^7.19.6":
version "7.21.4"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.4.tgz#c6dc73242507b8e2a27fd13a9c1814f9fa34a659"
@@ -429,6 +492,16 @@
"@jridgewell/trace-mapping" "^0.3.17"
jsesc "^2.5.1"
+"@babel/generator@^7.23.6":
+ version "7.23.6"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e"
+ integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==
+ dependencies:
+ "@babel/types" "^7.23.6"
+ "@jridgewell/gen-mapping" "^0.3.2"
+ "@jridgewell/trace-mapping" "^0.3.17"
+ jsesc "^2.5.1"
+
"@babel/helper-annotate-as-pure@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb"
@@ -455,6 +528,17 @@
lru-cache "^5.1.1"
semver "^6.3.0"
+"@babel/helper-compilation-targets@^7.23.6":
+ version "7.23.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991"
+ integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==
+ dependencies:
+ "@babel/compat-data" "^7.23.5"
+ "@babel/helper-validator-option" "^7.23.5"
+ browserslist "^4.22.2"
+ lru-cache "^5.1.1"
+ semver "^6.3.1"
+
"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0":
version "7.21.4"
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.4.tgz#3a017163dc3c2ba7deb9a7950849a9586ea24c18"
@@ -494,6 +578,11 @@
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be"
integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==
+"@babel/helper-environment-visitor@^7.22.20":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167"
+ integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==
+
"@babel/helper-explode-assignable-expression@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096"
@@ -509,6 +598,14 @@
"@babel/template" "^7.20.7"
"@babel/types" "^7.21.0"
+"@babel/helper-function-name@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759"
+ integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==
+ dependencies:
+ "@babel/template" "^7.22.15"
+ "@babel/types" "^7.23.0"
+
"@babel/helper-hoist-variables@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678"
@@ -516,6 +613,13 @@
dependencies:
"@babel/types" "^7.18.6"
+"@babel/helper-hoist-variables@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
+ integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
"@babel/helper-member-expression-to-functions@^7.20.7", "@babel/helper-member-expression-to-functions@^7.21.0":
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.0.tgz#319c6a940431a133897148515877d2f3269c3ba5"
@@ -530,6 +634,13 @@
dependencies:
"@babel/types" "^7.21.4"
+"@babel/helper-module-imports@^7.22.15":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0"
+ integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==
+ dependencies:
+ "@babel/types" "^7.22.15"
+
"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.21.2":
version "7.21.2"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz#160caafa4978ac8c00ac66636cb0fa37b024e2d2"
@@ -544,6 +655,17 @@
"@babel/traverse" "^7.21.2"
"@babel/types" "^7.21.2"
+"@babel/helper-module-transforms@^7.23.3":
+ version "7.23.3"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz#d7d12c3c5d30af5b3c0fcab2a6d5217773e2d0f1"
+ integrity sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==
+ dependencies:
+ "@babel/helper-environment-visitor" "^7.22.20"
+ "@babel/helper-module-imports" "^7.22.15"
+ "@babel/helper-simple-access" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ "@babel/helper-validator-identifier" "^7.22.20"
+
"@babel/helper-optimise-call-expression@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe"
@@ -561,6 +683,11 @@
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629"
integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==
+"@babel/helper-plugin-utils@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295"
+ integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==
+
"@babel/helper-remap-async-to-generator@^7.18.9":
version "7.18.9"
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519"
@@ -590,6 +717,13 @@
dependencies:
"@babel/types" "^7.20.2"
+"@babel/helper-simple-access@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de"
+ integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
"@babel/helper-skip-transparent-expression-wrappers@^7.20.0":
version "7.20.0"
resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684"
@@ -604,21 +738,43 @@
dependencies:
"@babel/types" "^7.18.6"
+"@babel/helper-split-export-declaration@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c"
+ integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
"@babel/helper-string-parser@^7.19.4":
version "7.19.4"
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"
integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
+"@babel/helper-string-parser@^7.23.4":
+ version "7.23.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83"
+ integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==
+
"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
version "7.19.1"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
+"@babel/helper-validator-identifier@^7.22.20":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0"
+ integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==
+
"@babel/helper-validator-option@^7.18.6", "@babel/helper-validator-option@^7.21.0":
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180"
integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==
+"@babel/helper-validator-option@^7.23.5":
+ version "7.23.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307"
+ integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==
+
"@babel/helper-wrap-function@^7.18.9":
version "7.20.5"
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz#75e2d84d499a0ab3b31c33bcfe59d6b8a45f62e3"
@@ -638,6 +794,15 @@
"@babel/traverse" "^7.21.0"
"@babel/types" "^7.21.0"
+"@babel/helpers@^7.23.9":
+ version "7.23.9"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.9.tgz#c3e20bbe7f7a7e10cb9b178384b4affdf5995c7d"
+ integrity sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==
+ dependencies:
+ "@babel/template" "^7.23.9"
+ "@babel/traverse" "^7.23.9"
+ "@babel/types" "^7.23.9"
+
"@babel/highlight@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf"
@@ -647,11 +812,25 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
+"@babel/highlight@^7.23.4":
+ version "7.23.4"
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b"
+ integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.22.20"
+ chalk "^2.4.2"
+ js-tokens "^4.0.0"
+
"@babel/parser@^7.12.7", "@babel/parser@^7.18.8", "@babel/parser@^7.20.7", "@babel/parser@^7.21.4":
version "7.21.4"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.4.tgz#94003fdfc520bbe2875d4ae557b43ddb6d880f17"
integrity sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==
+"@babel/parser@^7.23.9":
+ version "7.23.9"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.9.tgz#7b903b6149b0f8fa7ad564af646c4c38a77fc44b"
+ integrity sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==
+
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2"
@@ -703,7 +882,7 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-dynamic-import" "^7.8.3"
-"@babel/plugin-proposal-export-namespace-from@^7.18.9":
+"@babel/plugin-proposal-export-namespace-from@^7.14.5", "@babel/plugin-proposal-export-namespace-from@^7.18.9":
version "7.18.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203"
integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==
@@ -1053,6 +1232,15 @@
"@babel/helper-module-transforms" "^7.20.11"
"@babel/helper-plugin-utils" "^7.20.2"
+"@babel/plugin-transform-modules-commonjs@^7.14.5":
+ version "7.23.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz#661ae831b9577e52be57dd8356b734f9700b53b4"
+ integrity sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.23.3"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-simple-access" "^7.22.5"
+
"@babel/plugin-transform-modules-commonjs@^7.21.2":
version "7.21.2"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.2.tgz#6ff5070e71e3192ef2b7e39820a06fb78e3058e7"
@@ -1389,6 +1577,15 @@
"@babel/parser" "^7.20.7"
"@babel/types" "^7.20.7"
+"@babel/template@^7.22.15", "@babel/template@^7.23.9":
+ version "7.23.9"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.23.9.tgz#f881d0487cba2828d3259dcb9ef5005a9731011a"
+ integrity sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==
+ dependencies:
+ "@babel/code-frame" "^7.23.5"
+ "@babel/parser" "^7.23.9"
+ "@babel/types" "^7.23.9"
+
"@babel/traverse@^7.12.9", "@babel/traverse@^7.18.8", "@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7", "@babel/traverse@^7.21.0", "@babel/traverse@^7.21.2", "@babel/traverse@^7.21.4":
version "7.21.4"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.4.tgz#a836aca7b116634e97a6ed99976236b3282c9d36"
@@ -1405,6 +1602,22 @@
debug "^4.1.0"
globals "^11.1.0"
+"@babel/traverse@^7.23.9":
+ version "7.23.9"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.9.tgz#2f9d6aead6b564669394c5ce0f9302bb65b9d950"
+ integrity sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==
+ dependencies:
+ "@babel/code-frame" "^7.23.5"
+ "@babel/generator" "^7.23.6"
+ "@babel/helper-environment-visitor" "^7.22.20"
+ "@babel/helper-function-name" "^7.23.0"
+ "@babel/helper-hoist-variables" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ "@babel/parser" "^7.23.9"
+ "@babel/types" "^7.23.9"
+ debug "^4.3.1"
+ globals "^11.1.0"
+
"@babel/types@^7.12.7", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.2", "@babel/types@^7.21.4", "@babel/types@^7.4.4":
version "7.21.4"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.4.tgz#2d5d6bb7908699b3b416409ffd3b5daa25b030d4"
@@ -1414,6 +1627,15 @@
"@babel/helper-validator-identifier" "^7.19.1"
to-fast-properties "^2.0.0"
+"@babel/types@^7.22.15", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6", "@babel/types@^7.23.9":
+ version "7.23.9"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.9.tgz#1dd7b59a9a2b5c87f8b41e52770b5ecbf492e002"
+ integrity sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==
+ dependencies:
+ "@babel/helper-string-parser" "^7.23.4"
+ "@babel/helper-validator-identifier" "^7.22.20"
+ to-fast-properties "^2.0.0"
+
"@braintree/sanitize-url@^6.0.0":
version "6.0.2"
resolved "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-6.0.2.tgz#6110f918d273fe2af8ea1c4398a88774bb9fc12f"
@@ -1485,6 +1707,16 @@
"@cosmjs/math" "^0.29.5"
"@cosmjs/utils" "^0.29.5"
+"@cosmjs/amino@^0.31.3":
+ version "0.31.3"
+ resolved "https://registry.yarnpkg.com/@cosmjs/amino/-/amino-0.31.3.tgz#0f4aa6bd68331c71bd51b187fa64f00eb075db0a"
+ integrity sha512-36emtUq895sPRX8PTSOnG+lhJDCVyIcE0Tr5ct59sUbgQiI14y43vj/4WAlJ/utSOxy+Zhj9wxcs4AZfu0BHsw==
+ dependencies:
+ "@cosmjs/crypto" "^0.31.3"
+ "@cosmjs/encoding" "^0.31.3"
+ "@cosmjs/math" "^0.31.3"
+ "@cosmjs/utils" "^0.31.3"
+
"@cosmjs/crypto@^0.29.5":
version "0.29.5"
resolved "https://registry.yarnpkg.com/@cosmjs/crypto/-/crypto-0.29.5.tgz#ab99fc382b93d8a8db075780cf07487a0f9519fd"
@@ -1498,6 +1730,19 @@
elliptic "^6.5.4"
libsodium-wrappers "^0.7.6"
+"@cosmjs/crypto@^0.31.3":
+ version "0.31.3"
+ resolved "https://registry.yarnpkg.com/@cosmjs/crypto/-/crypto-0.31.3.tgz#c752cb6d682fdc735dcb45a2519f89c56ba16c26"
+ integrity sha512-vRbvM9ZKR2017TO73dtJ50KxoGcFzKtKI7C8iO302BQ5p+DuB+AirUg1952UpSoLfv5ki9O416MFANNg8UN/EQ==
+ dependencies:
+ "@cosmjs/encoding" "^0.31.3"
+ "@cosmjs/math" "^0.31.3"
+ "@cosmjs/utils" "^0.31.3"
+ "@noble/hashes" "^1"
+ bn.js "^5.2.0"
+ elliptic "^6.5.4"
+ libsodium-wrappers-sumo "^0.7.11"
+
"@cosmjs/encoding@^0.29.5":
version "0.29.5"
resolved "https://registry.yarnpkg.com/@cosmjs/encoding/-/encoding-0.29.5.tgz#009a4b1c596cdfd326f30ccfa79f5e56daa264f2"
@@ -1507,6 +1752,15 @@
bech32 "^1.1.4"
readonly-date "^1.0.0"
+"@cosmjs/encoding@^0.31.3":
+ version "0.31.3"
+ resolved "https://registry.yarnpkg.com/@cosmjs/encoding/-/encoding-0.31.3.tgz#2519d9c9ae48368424971f253775c4580b54c5aa"
+ integrity sha512-6IRtG0fiVYwyP7n+8e54uTx2pLYijO48V3t9TLiROERm5aUAIzIlz6Wp0NYaI5he9nh1lcEGJ1lkquVKFw3sUg==
+ dependencies:
+ base64-js "^1.3.0"
+ bech32 "^1.1.4"
+ readonly-date "^1.0.0"
+
"@cosmjs/json-rpc@^0.29.5":
version "0.29.5"
resolved "https://registry.yarnpkg.com/@cosmjs/json-rpc/-/json-rpc-0.29.5.tgz#5e483a9bd98a6270f935adf0dfd8a1e7eb777fe4"
@@ -1522,6 +1776,13 @@
dependencies:
bn.js "^5.2.0"
+"@cosmjs/math@^0.31.3":
+ version "0.31.3"
+ resolved "https://registry.yarnpkg.com/@cosmjs/math/-/math-0.31.3.tgz#767f7263d12ba1b9ed2f01f68d857597839fd957"
+ integrity sha512-kZ2C6glA5HDb9hLz1WrftAjqdTBb3fWQsRR+Us2HsjAYdeE6M3VdXMsYCP5M3yiihal1WDwAY2U7HmfJw7Uh4A==
+ dependencies:
+ bn.js "^5.2.0"
+
"@cosmjs/proto-signing@^0.29.5":
version "0.29.5"
resolved "https://registry.yarnpkg.com/@cosmjs/proto-signing/-/proto-signing-0.29.5.tgz#af3b62a46c2c2f1d2327d678b13b7262db1fe87c"
@@ -1535,6 +1796,19 @@
cosmjs-types "^0.5.2"
long "^4.0.0"
+"@cosmjs/proto-signing@^0.31.0":
+ version "0.31.3"
+ resolved "https://registry.yarnpkg.com/@cosmjs/proto-signing/-/proto-signing-0.31.3.tgz#20440b7b96fb2cd924256a10e656fd8d4481cdcd"
+ integrity sha512-24+10/cGl6lLS4VCrGTCJeDRPQTn1K5JfknzXzDIHOx8THR31JxA7/HV5eWGHqWgAbudA7ccdSvEK08lEHHtLA==
+ dependencies:
+ "@cosmjs/amino" "^0.31.3"
+ "@cosmjs/crypto" "^0.31.3"
+ "@cosmjs/encoding" "^0.31.3"
+ "@cosmjs/math" "^0.31.3"
+ "@cosmjs/utils" "^0.31.3"
+ cosmjs-types "^0.8.0"
+ long "^4.0.0"
+
"@cosmjs/socket@^0.29.5":
version "0.29.5"
resolved "https://registry.yarnpkg.com/@cosmjs/socket/-/socket-0.29.5.tgz#a48df6b4c45dc6a6ef8e47232725dd4aa556ac2d"
@@ -1591,6 +1865,116 @@
resolved "https://registry.yarnpkg.com/@cosmjs/utils/-/utils-0.29.5.tgz#3fed1b3528ae8c5f1eb5d29b68755bebfd3294ee"
integrity sha512-m7h+RXDUxOzEOGt4P+3OVPX7PuakZT3GBmaM/Y2u+abN3xZkziykD/NvedYFvvCCdQo714XcGl33bwifS9FZPQ==
+"@cosmjs/utils@^0.31.3":
+ version "0.31.3"
+ resolved "https://registry.yarnpkg.com/@cosmjs/utils/-/utils-0.31.3.tgz#f97bbfda35ad69e80cd5c7fe0a270cbda16db1ed"
+ integrity sha512-VBhAgzrrYdIe0O5IbKRqwszbQa7ZyQLx9nEQuHQ3HUplQW7P44COG/ye2n6AzCudtqxmwdX7nyX8ta1J07GoqA==
+
+"@credo-ts/anoncreds@0.5.0-alpha.110", "@credo-ts/anoncreds@0.5.0-alpha.110+9da02d4e":
+ version "0.5.0-alpha.110"
+ resolved "https://registry.yarnpkg.com/@credo-ts/anoncreds/-/anoncreds-0.5.0-alpha.110.tgz#3dcbfa18b26a463b060a733a6dba44cd7d779103"
+ integrity sha512-+MmYXBEcfwhposMub428myuyAc+mnRp30/rMFDmVt7s6+cwVJFXDGCoV8ErSV5sts+PoECd+LcGPLGJPwGMnWQ==
+ dependencies:
+ "@credo-ts/core" "0.5.0-alpha.110+9da02d4e"
+ bn.js "^5.2.1"
+ class-transformer "0.5.1"
+ class-validator "0.14.0"
+ reflect-metadata "^0.1.13"
+
+"@credo-ts/askar@0.5.0-alpha.110":
+ version "0.5.0-alpha.110"
+ resolved "https://registry.yarnpkg.com/@credo-ts/askar/-/askar-0.5.0-alpha.110.tgz#8ca54e7b7a6cf462e9508e5e8f5d0ac69d39ad5a"
+ integrity sha512-qbHjfJ8UMccxroDhESAAz4X8uJNWUXX3vUbcHRX/7zmTqwNUt+1QSKzmNTuR8/h1pOL1TBGvBwp37ZldRiXFoA==
+ dependencies:
+ "@credo-ts/core" "0.5.0-alpha.110+9da02d4e"
+ bn.js "^5.2.1"
+ class-transformer "0.5.1"
+ class-validator "0.14.0"
+ rxjs "^7.2.0"
+ tsyringe "^4.8.0"
+
+"@credo-ts/cheqd@0.5.0-alpha.110":
+ version "0.5.0-alpha.110"
+ resolved "https://registry.yarnpkg.com/@credo-ts/cheqd/-/cheqd-0.5.0-alpha.110.tgz#1a9a3b5ce4f7449ce3cf1a679815f69dad4ad8df"
+ integrity sha512-cMYilmQsBk7HlVr22JcqYDyNG2ExhjtxNJHeLcLBFroU4DZwNVCukgFhjEpvUbbfgQnOojWZ87/QBL8xWzimLQ==
+ dependencies:
+ "@cheqd/sdk" cjs
+ "@cheqd/ts-proto" cjs
+ "@cosmjs/crypto" "^0.29.5"
+ "@cosmjs/proto-signing" "^0.31.0"
+ "@credo-ts/anoncreds" "0.5.0-alpha.110+9da02d4e"
+ "@credo-ts/core" "0.5.0-alpha.110+9da02d4e"
+ "@stablelib/ed25519" "^1.0.3"
+ class-transformer "^0.5.1"
+ class-validator "^0.14.0"
+ rxjs "^7.2.0"
+ tsyringe "^4.8.0"
+
+"@credo-ts/core@0.5.0-alpha.110", "@credo-ts/core@0.5.0-alpha.110+9da02d4e":
+ version "0.5.0-alpha.110"
+ resolved "https://registry.yarnpkg.com/@credo-ts/core/-/core-0.5.0-alpha.110.tgz#c7b5091f8a8e567073e5e9aa6d69c763f30f0a9f"
+ integrity sha512-O8B88dn9qLIXeantTAhk+eZv7JBXyo0wunxmo6K5vqNn4giRt1YciibPC7MLPwnsczpLvRN773Nc5eWF5sqgvQ==
+ dependencies:
+ "@digitalcredentials/jsonld" "^6.0.0"
+ "@digitalcredentials/jsonld-signatures" "^9.4.0"
+ "@digitalcredentials/vc" "^6.0.1"
+ "@multiformats/base-x" "^4.0.1"
+ "@sphereon/pex" "^2.2.2"
+ "@sphereon/pex-models" "^2.1.2"
+ "@sphereon/ssi-types" "^0.17.5"
+ "@stablelib/ed25519" "^1.0.2"
+ "@stablelib/random" "^1.0.1"
+ "@stablelib/sha256" "^1.0.1"
+ "@types/ws" "^8.5.4"
+ abort-controller "^3.0.0"
+ big-integer "^1.6.51"
+ borc "^3.0.0"
+ buffer "^6.0.3"
+ class-transformer "0.5.1"
+ class-validator "0.14.0"
+ did-resolver "^4.1.0"
+ jsonpath "^1.1.1"
+ lru_map "^0.4.1"
+ luxon "^3.3.0"
+ make-error "^1.3.6"
+ object-inspect "^1.10.3"
+ query-string "^7.0.1"
+ reflect-metadata "^0.1.13"
+ rxjs "^7.2.0"
+ tsyringe "^4.8.0"
+ uuid "^9.0.0"
+ varint "^6.0.0"
+ web-did-resolver "^2.0.21"
+
+"@credo-ts/indy-vdr@0.5.0-alpha.110":
+ version "0.5.0-alpha.110"
+ resolved "https://registry.yarnpkg.com/@credo-ts/indy-vdr/-/indy-vdr-0.5.0-alpha.110.tgz#2af819e336292cf4fd88106257e26b13451433a0"
+ integrity sha512-nuUcWhcrfICHkjAwxNN55riPm6odXLmmyjqmaq64MXD8YTpCzErjKaJIrr1RAeQ6FHr4L2v6EiDNS6sS0o3RnA==
+ dependencies:
+ "@credo-ts/anoncreds" "0.5.0-alpha.110+9da02d4e"
+ "@credo-ts/core" "0.5.0-alpha.110+9da02d4e"
+
+"@credo-ts/node@0.5.0-alpha.110":
+ version "0.5.0-alpha.110"
+ resolved "https://registry.yarnpkg.com/@credo-ts/node/-/node-0.5.0-alpha.110.tgz#c25812ce5c64ef76782d229ae1a97085df978878"
+ integrity sha512-w/jIpZ30YVdPAoTl9F6pdpVKOSpRnQI4itEDt513bz+tS8ndsoKgXbNJV2B5wO+N1J+X3ls8StMsz64iWAv7vA==
+ dependencies:
+ "@2060.io/ffi-napi" "^4.0.8"
+ "@2060.io/ref-napi" "^3.0.6"
+ "@credo-ts/core" "0.5.0-alpha.110+9da02d4e"
+ "@types/express" "^4.17.15"
+ express "^4.17.1"
+ ws "^8.13.0"
+
+"@credo-ts/react-native@0.5.0-alpha.110":
+ version "0.5.0-alpha.110"
+ resolved "https://registry.yarnpkg.com/@credo-ts/react-native/-/react-native-0.5.0-alpha.110.tgz#78d07ee5f18b332fa914e66924a9261499a807f7"
+ integrity sha512-OhyYeFvKKDtLfRTtzMjDlpI9I2sizwHeTwPIgfT5djzzMnA6ak3sGkKikk6jHB7LXaRnRnsF+0QWDBnXx7n8jQ==
+ dependencies:
+ "@azure/core-asynciterator-polyfill" "^1.0.2"
+ "@credo-ts/core" "0.5.0-alpha.110+9da02d4e"
+ events "^3.3.0"
+
"@cspotcode/source-map-support@^0.8.0":
version "0.8.1"
resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1"
@@ -1598,11 +1982,93 @@
dependencies:
"@jridgewell/trace-mapping" "0.3.9"
+"@digitalbazaar/bitstring@^3.0.0":
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/@digitalbazaar/bitstring/-/bitstring-3.1.0.tgz#bbbacb80eaaa53594723a801879b3a95a0401b11"
+ integrity sha512-Cii+Sl++qaexOvv3vchhgZFfSmtHPNIPzGegaq4ffPnflVXFu+V2qrJ17aL2+gfLxrlC/zazZFuAltyKTPq7eg==
+ dependencies:
+ base64url-universal "^2.0.0"
+ pako "^2.0.4"
+
+"@digitalbazaar/http-client@^3.4.1":
+ version "3.4.1"
+ resolved "https://registry.yarnpkg.com/@digitalbazaar/http-client/-/http-client-3.4.1.tgz#5116fc44290d647cfe4b615d1f3fad9d6005e44d"
+ integrity sha512-Ahk1N+s7urkgj7WvvUND5f8GiWEPfUw0D41hdElaqLgu8wZScI8gdI0q+qWw5N1d35x7GCRH2uk9mi+Uzo9M3g==
+ dependencies:
+ ky "^0.33.3"
+ ky-universal "^0.11.0"
+ undici "^5.21.2"
+
"@digitalbazaar/security-context@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@digitalbazaar/security-context/-/security-context-1.0.0.tgz#23624692cfadc6d97e1eb787ad38a19635d89297"
integrity sha512-mlj+UmodxTAdMCHGxnGVTRLHcSLyiEOVRiz3J6yiRliJWyrgeXs34wlWjBorDIEMDIjK2JwZrDuFEKO9bS5nKQ==
+"@digitalbazaar/vc-status-list-context@^3.0.1":
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/@digitalbazaar/vc-status-list-context/-/vc-status-list-context-3.0.1.tgz#0507b7b6f6ee8b5e7e4d402e7a2905efdc70a316"
+ integrity sha512-vQsqQXpmSXKNy/C0xxFUOBzz60dHh6oupQam1xRC8IspVC11hYJiX9SAhmbI0ulHvX1R2JfqZaJHZjmAyMZ/aA==
+
+"@digitalbazaar/vc-status-list@^7.0.0":
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/@digitalbazaar/vc-status-list/-/vc-status-list-7.1.0.tgz#1d585a1766106e1586e1e2f87092dd0381b3f036"
+ integrity sha512-p5uxKJlX13N8TcTuv9qFDeej+6bndU+Rh1Cez2MT+bXQE6Jpn5t336FBSHmcECB4yUfZQpkmV/LOcYU4lW8Ojw==
+ dependencies:
+ "@digitalbazaar/bitstring" "^3.0.0"
+ "@digitalbazaar/vc" "^5.0.0"
+ "@digitalbazaar/vc-status-list-context" "^3.0.1"
+ credentials-context "^2.0.0"
+
+"@digitalbazaar/vc@^5.0.0":
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/@digitalbazaar/vc/-/vc-5.0.0.tgz#20180fb492cb755eb2c6b6df9a17f7407d5e4b5a"
+ integrity sha512-XmLM7Ag5W+XidGnFuxFIyUFSMnHnWEMJlHei602GG94+WzFJ6Ik8txzPQL8T18egSoiTsd1VekymbIlSimhuaQ==
+ dependencies:
+ credentials-context "^2.0.0"
+ jsonld "^8.0.0"
+ jsonld-signatures "^11.0.0"
+
+"@digitalcredentials/base58-universal@^1.0.1":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@digitalcredentials/base58-universal/-/base58-universal-1.0.1.tgz#41b5a16cdeaac9cf01b23f1e564c560c2599b607"
+ integrity sha512-1xKdJnfITMvrF/sCgwBx2C4p7qcNAARyIvrAOZGqIHmBaT/hAenpC8bf44qVY+UIMuCYP23kqpIfJQebQDThDQ==
+
+"@digitalcredentials/base64url-universal@^2.0.2":
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/@digitalcredentials/base64url-universal/-/base64url-universal-2.0.6.tgz#43c59c62a33b024e7adc3c56403d18dbcb61ec61"
+ integrity sha512-QJyK6xS8BYNnkKLhEAgQc6Tb9DMe+GkHnBAWJKITCxVRXJAFLhJnr+FsJnCThS3x2Y0UiiDAXoWjwMqtUrp4Kg==
+ dependencies:
+ base64url "^3.0.1"
+
+"@digitalcredentials/bitstring@^2.0.1":
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/@digitalcredentials/bitstring/-/bitstring-2.0.1.tgz#bb887f1d0999980598754e426d831c96a26a3863"
+ integrity sha512-9priXvsEJGI4LYHPwLqf5jv9HtQGlG0MgeuY8Q4NHN+xWz5rYMylh1TYTVThKa3XI6xF2pR2oEfKZD21eWXveQ==
+ dependencies:
+ "@digitalcredentials/base64url-universal" "^2.0.2"
+ pako "^2.0.4"
+
+"@digitalcredentials/ed25519-signature-2020@^3.0.2":
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/@digitalcredentials/ed25519-signature-2020/-/ed25519-signature-2020-3.0.2.tgz#2df8fb6f814a1964b40ebb3402d41630c30120da"
+ integrity sha512-R8IrR21Dh+75CYriQov3nVHKaOVusbxfk9gyi6eCAwLHKn6fllUt+2LQfuUrL7Ts/sGIJqQcev7YvkX9GvyYRA==
+ dependencies:
+ "@digitalcredentials/base58-universal" "^1.0.1"
+ "@digitalcredentials/ed25519-verification-key-2020" "^3.1.1"
+ "@digitalcredentials/jsonld-signatures" "^9.3.1"
+ ed25519-signature-2018-context "^1.1.0"
+ ed25519-signature-2020-context "^1.0.1"
+
+"@digitalcredentials/ed25519-verification-key-2020@^3.1.1":
+ version "3.2.2"
+ resolved "https://registry.yarnpkg.com/@digitalcredentials/ed25519-verification-key-2020/-/ed25519-verification-key-2020-3.2.2.tgz#cdf271bf4bb44dd2c417dcde6d7a0436e31d84ca"
+ integrity sha512-ZfxNFZlA379MZpf+gV2tUYyiZ15eGVgjtCQLWlyu3frWxsumUgv++o0OJlMnrDsWGwzFMRrsXcosd5+752rLOA==
+ dependencies:
+ "@digitalcredentials/base58-universal" "^1.0.1"
+ "@stablelib/ed25519" "^1.0.1"
+ base64url-universal "^1.1.0"
+ crypto-ld "^6.0.0"
+
"@digitalcredentials/http-client@^1.0.0":
version "1.2.2"
resolved "https://registry.yarnpkg.com/@digitalcredentials/http-client/-/http-client-1.2.2.tgz#8b09ab6f1e3aa8878d91d3ca51946ca8265cc92e"
@@ -1622,6 +2088,17 @@
isomorphic-webcrypto "^2.3.8"
serialize-error "^8.0.1"
+"@digitalcredentials/jsonld-signatures@^9.3.2", "@digitalcredentials/jsonld-signatures@^9.4.0":
+ version "9.4.0"
+ resolved "https://registry.yarnpkg.com/@digitalcredentials/jsonld-signatures/-/jsonld-signatures-9.4.0.tgz#d5881122c4202449b88a7e2384f8e615ae55582c"
+ integrity sha512-DnR+HDTm7qpcDd0wcD1w6GdlAwfHjQSgu+ahion8REkCkkMRywF+CLunU7t8AZpFB2Gr/+N8naUtiEBNje1Oew==
+ dependencies:
+ "@digitalbazaar/security-context" "^1.0.0"
+ "@digitalcredentials/jsonld" "^6.0.0"
+ fast-text-encoding "^1.0.3"
+ isomorphic-webcrypto "^2.3.8"
+ serialize-error "^8.0.1"
+
"@digitalcredentials/jsonld@^5.2.1":
version "5.2.1"
resolved "https://registry.yarnpkg.com/@digitalcredentials/jsonld/-/jsonld-5.2.1.tgz#60acf587bec8331e86324819fd19692939118775"
@@ -1632,6 +2109,21 @@
canonicalize "^1.0.1"
lru-cache "^6.0.0"
+"@digitalcredentials/jsonld@^6.0.0":
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/@digitalcredentials/jsonld/-/jsonld-6.0.0.tgz#05d34cb1d81c4bbdfacf61f8958bbaede33be598"
+ integrity sha512-5tTakj0/GsqAJi8beQFVMQ97wUJZnuxViW9xRuAATL6eOBIefGBwHkVryAgEq2I4J/xKgb/nEyw1ZXX0G8wQJQ==
+ dependencies:
+ "@digitalcredentials/http-client" "^1.0.0"
+ "@digitalcredentials/rdf-canonize" "^1.0.0"
+ canonicalize "^1.0.1"
+ lru-cache "^6.0.0"
+
+"@digitalcredentials/open-badges-context@^2.1.0":
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@digitalcredentials/open-badges-context/-/open-badges-context-2.1.0.tgz#cefd29af4642adf8feeed5bb7ede663b14913c2f"
+ integrity sha512-VK7X5u6OoBFxkyIFplNqUPVbo+8vFSAEoam8tSozpj05KPfcGw41Tp5p9fqMnY38oPfwtZR2yDNSctj/slrE0A==
+
"@digitalcredentials/rdf-canonize@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@digitalcredentials/rdf-canonize/-/rdf-canonize-1.0.0.tgz#6297d512072004c2be7f280246383a9c4b0877ff"
@@ -1640,6 +2132,16 @@
fast-text-encoding "^1.0.3"
isomorphic-webcrypto "^2.3.8"
+"@digitalcredentials/vc-status-list@^5.0.2":
+ version "5.0.2"
+ resolved "https://registry.yarnpkg.com/@digitalcredentials/vc-status-list/-/vc-status-list-5.0.2.tgz#9de8b23b6d533668a354ff464a689ecc42f24445"
+ integrity sha512-PI0N7SM0tXpaNLelbCNsMAi34AjOeuhUzMSYTkHdeqRPX7oT2F3ukyOssgr4koEqDxw9shHtxHu3fSJzrzcPMQ==
+ dependencies:
+ "@digitalbazaar/vc-status-list-context" "^3.0.1"
+ "@digitalcredentials/bitstring" "^2.0.1"
+ "@digitalcredentials/vc" "^4.1.1"
+ credentials-context "^2.0.0"
+
"@digitalcredentials/vc@^1.1.2":
version "1.1.2"
resolved "https://registry.yarnpkg.com/@digitalcredentials/vc/-/vc-1.1.2.tgz#868a56962f5137c29eb51eea1ba60251ebf69ad1"
@@ -1649,6 +2151,29 @@
"@digitalcredentials/jsonld-signatures" "^9.3.1"
credentials-context "^2.0.0"
+"@digitalcredentials/vc@^4.1.1":
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/@digitalcredentials/vc/-/vc-4.2.0.tgz#d2197b26547d670965d5969a9e49437f244b5944"
+ integrity sha512-8Rxpn77JghJN7noBQdcMuzm/tB8vhDwPoFepr3oGd5w+CyJxOk2RnBlgIGlAAGA+mALFWECPv1rANfXno+hdjA==
+ dependencies:
+ "@digitalcredentials/jsonld" "^5.2.1"
+ "@digitalcredentials/jsonld-signatures" "^9.3.1"
+ credentials-context "^2.0.0"
+
+"@digitalcredentials/vc@^6.0.1":
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/@digitalcredentials/vc/-/vc-6.0.1.tgz#e4bdbac37d677c5288f2ad8d9ea59c3b41e0fd78"
+ integrity sha512-TZgLoi00Jc9uv3b6jStH+G8+bCqpHIqFw9DYODz+fVjNh197ksvcYqSndUDHa2oi0HCcK+soI8j4ba3Sa4Pl4w==
+ dependencies:
+ "@digitalbazaar/vc-status-list" "^7.0.0"
+ "@digitalcredentials/ed25519-signature-2020" "^3.0.2"
+ "@digitalcredentials/jsonld" "^6.0.0"
+ "@digitalcredentials/jsonld-signatures" "^9.3.2"
+ "@digitalcredentials/open-badges-context" "^2.1.0"
+ "@digitalcredentials/vc-status-list" "^5.0.2"
+ credentials-context "^2.0.0"
+ fix-esm "^1.0.1"
+
"@discoveryjs/json-ext@0.5.7":
version "0.5.7"
resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70"
@@ -2121,6 +2646,11 @@
url-loader "^4.1.1"
webpack "^5.73.0"
+"@fastify/busboy@^2.0.0":
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@fastify/busboy/-/busboy-2.1.0.tgz#0709e9f4cb252351c609c6e6d8d6779a8d25edff"
+ integrity sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==
+
"@gar/promisify@^1.0.1":
version "1.1.3"
resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6"
@@ -2138,6 +2668,18 @@
dependencies:
"@hapi/hoek" "^9.0.0"
+"@hyperledger/anoncreds-nodejs@0.2.0-dev.9":
+ version "0.2.0-dev.9"
+ resolved "https://registry.yarnpkg.com/@hyperledger/anoncreds-nodejs/-/anoncreds-nodejs-0.2.0-dev.9.tgz#f33385780485f97bb3122d90611cc584157d2be9"
+ integrity sha512-XrpaYNDJTpxzGMKJP7icePKnu0jhkCKP8U7LAS7cNxt5fgkJzW4zb4TPINLNKs28RFYwxm9fOss8R3mfCVEiuA==
+ dependencies:
+ "@2060.io/ffi-napi" "4.0.8"
+ "@2060.io/ref-napi" "3.0.6"
+ "@hyperledger/anoncreds-shared" "0.2.0-dev.9"
+ "@mapbox/node-pre-gyp" "^1.0.11"
+ ref-array-di "1.2.2"
+ ref-struct-di "1.1.1"
+
"@hyperledger/anoncreds-nodejs@^0.1.0":
version "0.1.0"
resolved "https://registry.yarnpkg.com/@hyperledger/anoncreds-nodejs/-/anoncreds-nodejs-0.1.0.tgz#925f4004af85e772a3ee55f240b281148cbfb6e6"
@@ -2151,6 +2693,14 @@
ref-napi "3.0.3"
ref-struct-di "1.1.1"
+"@hyperledger/anoncreds-react-native@0.2.0-dev.9":
+ version "0.2.0-dev.9"
+ resolved "https://registry.yarnpkg.com/@hyperledger/anoncreds-react-native/-/anoncreds-react-native-0.2.0-dev.9.tgz#912656223f253efedb6752bc98a269d68701582c"
+ integrity sha512-evL0Xg4hKvrzacPeTAwlOAV6hYgPMJqJUz+/OVpqmhKheA9VUoUHwCeTyNnnj8o6cmBm7+SJpkIznlJcV1mI/g==
+ dependencies:
+ "@hyperledger/anoncreds-shared" "0.2.0-dev.9"
+ "@mapbox/node-pre-gyp" "^1.0.10"
+
"@hyperledger/anoncreds-react-native@^0.1.0":
version "0.1.0"
resolved "https://registry.yarnpkg.com/@hyperledger/anoncreds-react-native/-/anoncreds-react-native-0.1.0.tgz#1e815cf2b71c2b636b90aaa893bf65b401fb4b40"
@@ -2159,17 +2709,35 @@
"@hyperledger/anoncreds-shared" "0.1.0"
"@mapbox/node-pre-gyp" "^1.0.10"
-"@hyperledger/anoncreds-shared@0.1.0":
+"@hyperledger/anoncreds-shared@0.1.0", "@hyperledger/anoncreds-shared@^0.1.0":
version "0.1.0"
resolved "https://registry.yarnpkg.com/@hyperledger/anoncreds-shared/-/anoncreds-shared-0.1.0.tgz#947c602c385bfa79b63849c9e48b51cc9d41d820"
integrity sha512-DisZFY4YbrugRCCv7AtYFUTsrGigHF1dVaiA36WrhRUgetwDzKgMiYGkxFQmCe0IJ0mDw4M7sbTJBXxfxij/+A==
-"@hyperledger/aries-askar-nodejs@^0.1.0":
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/@hyperledger/aries-askar-nodejs/-/aries-askar-nodejs-0.1.0.tgz#2bb8f19d3f44b67e8aa92e4d45da9ab47ddb0539"
- integrity sha512-5jc8lNZg9Qxd4BoUWCknJ2YH7iqgO5/kl6KMfry5z9MTXQ5u30ysqPQCtWwryAKt+q55jnlw+pgISsis+zDfgA==
+"@hyperledger/anoncreds-shared@0.2.0-dev.9":
+ version "0.2.0-dev.9"
+ resolved "https://registry.yarnpkg.com/@hyperledger/anoncreds-shared/-/anoncreds-shared-0.2.0-dev.9.tgz#da6cbab72324b1185f97e3edaf8fef752117795b"
+ integrity sha512-2cK6x2jq98JjKJQRYGmhyPWLB0aYBYrUDM1J/kSQP2RCRoHj1hHV6Ok/DlUmxk+wO1o+71gvb8CYvoGPMI6C4Q==
+
+"@hyperledger/aries-askar-nodejs@0.2.0-dev.6":
+ version "0.2.0-dev.6"
+ resolved "https://registry.yarnpkg.com/@hyperledger/aries-askar-nodejs/-/aries-askar-nodejs-0.2.0-dev.6.tgz#0a86dc3215db8d147a4fef9404267a5e94e503a5"
+ integrity sha512-dnWcr31oOARRy0fhhw/CpfGhrxIg37UmZHJM0YB+fy30EmwXWHfZy8h1qy8D7uuyfD5FI1pXNDOlYgmMuLdJNQ==
dependencies:
- "@hyperledger/aries-askar-shared" "0.1.0"
+ "@2060.io/ffi-napi" "4.0.8"
+ "@2060.io/ref-napi" "3.0.6"
+ "@hyperledger/aries-askar-shared" "0.2.0-dev.6"
+ "@mapbox/node-pre-gyp" "^1.0.10"
+ node-cache "^5.1.2"
+ ref-array-di "^1.2.2"
+ ref-struct-di "^1.1.1"
+
+"@hyperledger/aries-askar-nodejs@^0.1.1":
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/@hyperledger/aries-askar-nodejs/-/aries-askar-nodejs-0.1.1.tgz#93d59cec0a21aae3e06ce6149a2424564a0e3238"
+ integrity sha512-mgTioLL22Q+Ie8RMY446bRtp/+D3rskhKJuW/qZUOinb8w8t0JKrFSfCr3OBs0/FVsm7cBN9ZqJdJY0+0BkVhQ==
+ dependencies:
+ "@hyperledger/aries-askar-shared" "0.1.1"
"@mapbox/node-pre-gyp" "^1.0.10"
ffi-napi "^4.0.3"
node-cache "^5.1.2"
@@ -2177,21 +2745,48 @@
ref-napi "^3.0.3"
ref-struct-di "^1.1.1"
-"@hyperledger/aries-askar-react-native@^0.1.0":
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/@hyperledger/aries-askar-react-native/-/aries-askar-react-native-0.1.0.tgz#01f1cbf91f98d76b034e9eb4a1b240dc196fc716"
- integrity sha512-I2qJx5QqKQUILTh8gwJKbZutNgrtYhwWAA733pASe3FJ6FydRNOr+owx/W8Agna0G4HaJStjiJbU2qfZg3POzw==
+"@hyperledger/aries-askar-react-native@0.2.0-dev.6":
+ version "0.2.0-dev.6"
+ resolved "https://registry.yarnpkg.com/@hyperledger/aries-askar-react-native/-/aries-askar-react-native-0.2.0-dev.6.tgz#5f55d2524fc03ce30e118ca921e95b388874f251"
+ integrity sha512-gt0LDqyIaK3URt+rACUWioD4osi4ou8hiqub6WT2oxvZB8y/cHIAPEmeA4N7pPLbouKUXbVvPA3JLgGiTg5W4A==
dependencies:
- "@hyperledger/aries-askar-shared" "0.1.0"
+ "@hyperledger/aries-askar-shared" "0.2.0-dev.6"
"@mapbox/node-pre-gyp" "^1.0.10"
-"@hyperledger/aries-askar-shared@0.1.0":
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/@hyperledger/aries-askar-shared/-/aries-askar-shared-0.1.0.tgz#a2517efb0829cdf6dc08ca6809dbd6daa497e116"
- integrity sha512-eTq3pQ7qNoEqS3KJOB5OcsKmYJ01aPF4GSOMmNKc44xyifwNi53lBod5fDVyjo401hk/FpVHZ3nRik1BXw1PWA==
+"@hyperledger/aries-askar-react-native@^0.1.1":
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/@hyperledger/aries-askar-react-native/-/aries-askar-react-native-0.1.1.tgz#1108a9b815b53eae9d04341c17be2f2b7ff2d3be"
+ integrity sha512-e9E4CYf54J1RJetK9g64vHoIcVjlU8CnKB83/01aXliLY52Yrg2ad42MJFva29z8SghFFgpCXRGMUuQ9OiwBfA==
+ dependencies:
+ "@hyperledger/aries-askar-shared" "0.1.1"
+ "@mapbox/node-pre-gyp" "^1.0.10"
+
+"@hyperledger/aries-askar-shared@0.1.1", "@hyperledger/aries-askar-shared@^0.1.1":
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/@hyperledger/aries-askar-shared/-/aries-askar-shared-0.1.1.tgz#bdb34ad718e988db5a47d540fd22ba2c7a86a1d3"
+ integrity sha512-9jJSgqHt29JEuQ/tBzHmhWaSLyTyw/t7H+Ell/YSHtL9DE0KN0Ew/vuXoDqlt117+EBeQTDKG0hy0ov8K41rmw==
dependencies:
fast-text-encoding "^1.0.3"
+"@hyperledger/aries-askar-shared@0.2.0-dev.6":
+ version "0.2.0-dev.6"
+ resolved "https://registry.yarnpkg.com/@hyperledger/aries-askar-shared/-/aries-askar-shared-0.2.0-dev.6.tgz#c94eec01ecbf70709d8b62744873dd05cba06ad9"
+ integrity sha512-gJa28QNR5yZI2DAnfb6/wafVaI2upcT1fmt0g+Qe68IY+JJXQHzijP+zuxR3EF8pQxFEJLBmlFDn3hPHr4Kpiw==
+ dependencies:
+ buffer "^6.0.3"
+
+"@hyperledger/indy-vdr-nodejs@0.2.0-dev.6":
+ version "0.2.0-dev.6"
+ resolved "https://registry.yarnpkg.com/@hyperledger/indy-vdr-nodejs/-/indy-vdr-nodejs-0.2.0-dev.6.tgz#c21916600e17cf6ee46fc78a054cb904f9156594"
+ integrity sha512-yOmfOqJJJapJRWdKSJQG7q/frKGUrntoae4fiYnwdQEWy4rdRiyZPo0ht9R6uuZ/AQwxtNMMRylvQZBfHA+vKA==
+ dependencies:
+ "@2060.io/ffi-napi" "4.0.8"
+ "@2060.io/ref-napi" "3.0.6"
+ "@hyperledger/indy-vdr-shared" "0.2.0-dev.6"
+ "@mapbox/node-pre-gyp" "^1.0.10"
+ ref-array-di "^1.2.2"
+ ref-struct-di "^1.1.1"
+
"@hyperledger/indy-vdr-nodejs@^0.1.0":
version "0.1.0"
resolved "https://registry.yarnpkg.com/@hyperledger/indy-vdr-nodejs/-/indy-vdr-nodejs-0.1.0.tgz#a006393e3ecb1a4661bbd52299b796247e8bde47"
@@ -2205,6 +2800,14 @@
ref-napi "^3.0.3"
ref-struct-di "^1.1.1"
+"@hyperledger/indy-vdr-react-native@0.2.0-dev.6":
+ version "0.2.0-dev.6"
+ resolved "https://registry.yarnpkg.com/@hyperledger/indy-vdr-react-native/-/indy-vdr-react-native-0.2.0-dev.6.tgz#a742d268389eb614d7eaccd83bf9be78844d4c3f"
+ integrity sha512-BR1eQctpmoCH9PoY8q/HltOIEt39LyvwyoXMvoIZ4ICAeufTLNqI6hkKefpPPqkdkAnAhT5tgD02W295SA0KWw==
+ dependencies:
+ "@hyperledger/indy-vdr-shared" "0.2.0-dev.6"
+ "@mapbox/node-pre-gyp" "^1.0.10"
+
"@hyperledger/indy-vdr-react-native@^0.1.0":
version "0.1.0"
resolved "https://registry.yarnpkg.com/@hyperledger/indy-vdr-react-native/-/indy-vdr-react-native-0.1.0.tgz#f0ad5c748438f91e4fe1bf86cf4744910ca24032"
@@ -2213,11 +2816,16 @@
"@hyperledger/indy-vdr-shared" "0.1.0"
"@mapbox/node-pre-gyp" "^1.0.10"
-"@hyperledger/indy-vdr-shared@0.1.0":
+"@hyperledger/indy-vdr-shared@0.1.0", "@hyperledger/indy-vdr-shared@^0.1.0":
version "0.1.0"
resolved "https://registry.yarnpkg.com/@hyperledger/indy-vdr-shared/-/indy-vdr-shared-0.1.0.tgz#f8023a2d25ca9395ec2fd0e6a0dfbda6459fab03"
integrity sha512-VfGraHX6RMmNcF4WYD5F1anjJzPN7KSrj5GP3g0hCrdXMDXEtO8t1lHQLVfrBgdjhR7gE82Nx+ZAYlGnTxoE+A==
+"@hyperledger/indy-vdr-shared@0.2.0-dev.6":
+ version "0.2.0-dev.6"
+ resolved "https://registry.yarnpkg.com/@hyperledger/indy-vdr-shared/-/indy-vdr-shared-0.2.0-dev.6.tgz#4954ee06fa8a2e4545b35cd525b7b86e0f10b6fe"
+ integrity sha512-pNLq0zkqv5rFCpU9tzyJ5DPvED5YE+UFP8iKwVD7fe+mAD6/VpweOunYNKgIBT4K1DYI21q7bs3SzxQZ0hLlKw==
+
"@jest/schemas@^29.4.3":
version "29.4.3"
resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788"
@@ -2315,6 +2923,21 @@
semver "^7.3.5"
tar "^6.1.11"
+"@mapbox/node-pre-gyp@^1.0.11":
+ version "1.0.11"
+ resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz#417db42b7f5323d79e93b34a6d7a2a12c0df43fa"
+ integrity sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==
+ dependencies:
+ detect-libc "^2.0.0"
+ https-proxy-agent "^5.0.0"
+ make-dir "^3.1.0"
+ node-fetch "^2.6.7"
+ nopt "^5.0.0"
+ npmlog "^5.0.1"
+ rimraf "^3.0.2"
+ semver "^7.3.5"
+ tar "^6.1.11"
+
"@mdx-js/mdx@^1.6.22":
version "1.6.22"
resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-1.6.22.tgz#8a723157bf90e78f17dc0f27995398e6c731f1ba"
@@ -2523,6 +3146,32 @@
resolved "https://registry.yarnpkg.com/@sovpro/delimited-stream/-/delimited-stream-1.1.0.tgz#4334bba7ee241036e580fdd99c019377630d26b4"
integrity sha512-kQpk267uxB19X3X2T1mvNMjyvIEonpNSHrMlK5ZaBU6aZxw7wPbpgKJOjHN3+/GPVpXgAV9soVT2oyHpLkLtyw==
+"@sphereon/pex-models@^2.1.2":
+ version "2.1.5"
+ resolved "https://registry.yarnpkg.com/@sphereon/pex-models/-/pex-models-2.1.5.tgz#ba4474a3783081392b72403c4c8ee6da3d2e5585"
+ integrity sha512-7THexvdYUK/Dh8olBB46ErT9q/RnecnMdb5r2iwZ6be0Dt4vQLAUN7QU80H0HZBok4jRTb8ydt12x0raBSTHOg==
+
+"@sphereon/pex@^2.2.2":
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/@sphereon/pex/-/pex-2.2.2.tgz#3df9ed75281b46f0899256774060ed2ff982fade"
+ integrity sha512-NkR8iDTC2PSnYsOHlG2M2iOpFTTbzszs2/pL3iK3Dlv9QYLqX7NtPAlmeSwaoVP1NB1ewcs6U1DtemQAD+90yQ==
+ dependencies:
+ "@astronautlabs/jsonpath" "^1.1.2"
+ "@sphereon/pex-models" "^2.1.2"
+ "@sphereon/ssi-types" "^0.17.5"
+ ajv "^8.12.0"
+ ajv-formats "^2.1.1"
+ jwt-decode "^3.1.2"
+ nanoid "^3.3.6"
+ string.prototype.matchall "^4.0.8"
+
+"@sphereon/ssi-types@^0.17.5":
+ version "0.17.5"
+ resolved "https://registry.yarnpkg.com/@sphereon/ssi-types/-/ssi-types-0.17.5.tgz#7b4de0326e7c2993ab816caeef6deaea41a5f65f"
+ integrity sha512-hoQOkeOtshvIzNAG+HTqcKxeGssLVfwX7oILHJgs6VMb1GhR6QlqjMAxflDxZ/8Aq2R0I6fEPWmf73zAXY2X2Q==
+ dependencies:
+ jwt-decode "^3.1.2"
+
"@stablelib/aead@^1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@stablelib/aead/-/aead-1.0.1.tgz#c4b1106df9c23d1b867eb9b276d8f42d5fc4c0c3"
@@ -2565,7 +3214,7 @@
resolved "https://registry.yarnpkg.com/@stablelib/constant-time/-/constant-time-1.0.1.tgz#bde361465e1cf7b9753061b77e376b0ca4c77e35"
integrity sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg==
-"@stablelib/ed25519@^1.0.2", "@stablelib/ed25519@^1.0.3":
+"@stablelib/ed25519@^1.0.1", "@stablelib/ed25519@^1.0.2", "@stablelib/ed25519@^1.0.3":
version "1.0.3"
resolved "https://registry.yarnpkg.com/@stablelib/ed25519/-/ed25519-1.0.3.tgz#f8fdeb6f77114897c887bb6a3138d659d3f35996"
integrity sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==
@@ -2920,6 +3569,13 @@
dependencies:
buffer "^6.0.0"
+"@types/indy-sdk@1.16.27":
+ version "1.16.27"
+ resolved "https://registry.yarnpkg.com/@types/indy-sdk/-/indy-sdk-1.16.27.tgz#f5f01fe2cd39b74cacf91ea84d46a2e351cefa3b"
+ integrity sha512-ASEGYOuz8Acbybz4W2CYTG/fF7H9UQmJIG5wz8PSAvme07QU04Yzj4RJ5Nzzjej0X/AApEHS/5Jpk3iXTOs9HQ==
+ dependencies:
+ buffer "^6.0.0"
+
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0":
version "2.0.4"
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44"
@@ -2961,6 +3617,14 @@
resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10"
integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==
+"@types/node-fetch@2.6.2":
+ version "2.6.2"
+ resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.2.tgz#d1a9c5fd049d9415dce61571557104dec3ec81da"
+ integrity sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==
+ dependencies:
+ "@types/node" "*"
+ form-data "^3.0.0"
+
"@types/node-fetch@^2.5.10":
version "2.6.3"
resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.3.tgz#175d977f5e24d93ad0f57602693c435c57ad7e80"
@@ -3372,7 +4036,7 @@ ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5:
json-schema-traverse "^0.4.1"
uri-js "^4.2.2"
-ajv@^8.0.0, ajv@^8.8.0:
+ajv@^8.0.0, ajv@^8.12.0, ajv@^8.8.0:
version "8.12.0"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1"
integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==
@@ -3501,6 +4165,14 @@ argparse@^2.0.1:
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
+array-buffer-byte-length@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead"
+ integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==
+ dependencies:
+ call-bind "^1.0.2"
+ is-array-buffer "^3.0.1"
+
array-flatten@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
@@ -3524,6 +4196,19 @@ array-union@^2.1.0:
resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
+arraybuffer.prototype.slice@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz#98bd561953e3e74bb34938e77647179dfe6e9f12"
+ integrity sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==
+ dependencies:
+ array-buffer-byte-length "^1.0.0"
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
+ get-intrinsic "^1.2.1"
+ is-array-buffer "^3.0.2"
+ is-shared-array-buffer "^1.0.2"
+
asap@~2.0.3:
version "2.0.6"
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
@@ -3565,6 +4250,11 @@ autoprefixer@^10.4.12, autoprefixer@^10.4.7:
picocolors "^1.0.0"
postcss-value-parser "^4.2.0"
+available-typed-arrays@^1.0.5:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.6.tgz#ac812d8ce5a6b976d738e1c45f08d0b00bc7d725"
+ integrity sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==
+
axios@^0.21.2:
version "0.21.4"
resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575"
@@ -3674,6 +4364,25 @@ base64-js@*, base64-js@^1.3.0, base64-js@^1.3.1:
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
+base64url-universal@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/base64url-universal/-/base64url-universal-1.1.0.tgz#94da6356c1d43ead55b1d91c045c0a5b09ec8181"
+ integrity sha512-WyftvZqye29YQ10ZnuiBeEj0lk8SN8xHU9hOznkLc85wS1cLTp6RpzlMrHxMPD9nH7S55gsBqMqgGyz93rqmkA==
+ dependencies:
+ base64url "^3.0.0"
+
+base64url-universal@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/base64url-universal/-/base64url-universal-2.0.0.tgz#6023785c0e349a90de1cf396e8a4519750a4e67b"
+ integrity sha512-6Hpg7EBf3t148C3+fMzjf+CHnADVDafWzlJUXAqqqbm4MKNXbsoPdOkWeRTjNlkYG7TpyjIpRO1Gk0SnsFD1rw==
+ dependencies:
+ base64url "^3.0.1"
+
+base64url@^3.0.0, base64url@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/base64url/-/base64url-3.0.1.tgz#6399d572e2bc3f90a9a8b22d5dbb0a32d33f788d"
+ integrity sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==
+
batch@0.6.1:
version "0.6.1"
resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
@@ -3830,6 +4539,16 @@ browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.18.1, browserslist@^4
node-releases "^2.0.8"
update-browserslist-db "^1.0.10"
+browserslist@^4.22.2:
+ version "4.22.3"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.3.tgz#299d11b7e947a6b843981392721169e27d60c5a6"
+ integrity sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==
+ dependencies:
+ caniuse-lite "^1.0.30001580"
+ electron-to-chromium "^1.4.648"
+ node-releases "^2.0.14"
+ update-browserslist-db "^1.0.13"
+
buffer-from@^1.0.0:
version "1.1.2"
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
@@ -3898,6 +4617,15 @@ call-bind@^1.0.0, call-bind@^1.0.2:
function-bind "^1.1.1"
get-intrinsic "^1.0.2"
+call-bind@^1.0.4, call-bind@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.5.tgz#6fa2b7845ce0ea49bf4d8b9ef64727a2c2e2e513"
+ integrity sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==
+ dependencies:
+ function-bind "^1.1.2"
+ get-intrinsic "^1.2.1"
+ set-function-length "^1.1.1"
+
callsites@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
@@ -3936,6 +4664,11 @@ caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001449, caniuse-lite@^1.0.30001464:
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001477.tgz#a2ffb2276258233034bbb869d4558b02658a511e"
integrity sha512-lZim4iUHhGcy5p+Ri/G7m84hJwncj+Kz7S5aD4hoQfslKZJgt0tHc/hafVbqHC5bbhHb+mrW2JOUHkI5KH7toQ==
+caniuse-lite@^1.0.30001580:
+ version "1.0.30001581"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001581.tgz#0dfd4db9e94edbdca67d57348ebc070dece279f4"
+ integrity sha512-whlTkwhqV2tUmP3oYhtNfaWGYHDdS3JYFQBKXxcUR9qqPWsRhFHhoISO2Xnl/g0xyKzht9mI1LZpiNWfMzHixQ==
+
canonicalize@^1.0.1:
version "1.0.8"
resolved "https://registry.yarnpkg.com/canonicalize/-/canonicalize-1.0.8.tgz#24d1f1a00ed202faafd9bf8e63352cd4450c6df1"
@@ -3951,7 +4684,7 @@ ccount@^1.0.0:
resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043"
integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==
-chalk@^2.0.0:
+chalk@^2.0.0, chalk@^2.4.2:
version "2.4.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
@@ -4288,6 +5021,11 @@ convert-source-map@^1.7.0:
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
+convert-source-map@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
+ integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
+
cookie-signature@1.0.6:
version "1.0.6"
resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
@@ -4396,6 +5134,14 @@ cosmjs-types@^0.5.2:
long "^4.0.0"
protobufjs "~6.11.2"
+cosmjs-types@^0.8.0:
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/cosmjs-types/-/cosmjs-types-0.8.0.tgz#2ed78f3e990f770229726f95f3ef5bf9e2b6859b"
+ integrity sha512-Q2Mj95Fl0PYMWEhA2LuGEIhipF7mQwd9gTQ85DdP9jjjopeoGaDxvmPa5nakNzsq7FnO1DMTatXTAx6bxMH7Lg==
+ dependencies:
+ long "^4.0.0"
+ protobufjs "~6.11.2"
+
create-require@^1.1.0:
version "1.1.1"
resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
@@ -4422,6 +5168,11 @@ cross-spawn@^7.0.3:
shebang-command "^2.0.0"
which "^2.0.1"
+crypto-ld@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/crypto-ld/-/crypto-ld-6.0.0.tgz#cf8dcf566cb3020bdb27f0279e6cc9b46d031cd7"
+ integrity sha512-XWL1LslqggNoaCI/m3I7HcvaSt9b2tYzdrXO+jHLUj9G1BvRfvV7ZTFDVY5nifYuIGAPdAGu7unPxLRustw3VA==
+
crypto-random-string@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5"
@@ -4858,6 +5609,11 @@ data-uri-to-buffer@^3.0.1:
resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636"
integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==
+data-uri-to-buffer@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz#d8feb2b2881e6a4f58c2e08acfd0e2834e26222e"
+ integrity sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==
+
dayjs@^1.11.7:
version "1.11.7"
resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.7.tgz#4b296922642f70999544d1144a2c25730fce63e2"
@@ -4870,7 +5626,7 @@ debug@2.6.9, debug@^2.2.0, debug@^2.6.0:
dependencies:
ms "2.0.0"
-debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.3:
+debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.3:
version "4.3.4"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
@@ -4901,6 +5657,11 @@ deep-extend@^0.6.0:
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
+deep-is@~0.1.3:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
+ integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
+
deepmerge@^4.2.2:
version "4.3.1"
resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a"
@@ -4918,6 +5679,15 @@ defer-to-connect@^1.0.1:
resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591"
integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==
+define-data-property@^1.0.1, define-data-property@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.1.tgz#c35f7cd0ab09883480d12ac5cb213715587800b3"
+ integrity sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==
+ dependencies:
+ get-intrinsic "^1.2.1"
+ gopd "^1.0.1"
+ has-property-descriptors "^1.0.0"
+
define-lazy-prop@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f"
@@ -4931,6 +5701,15 @@ define-properties@^1.1.3, define-properties@^1.1.4:
has-property-descriptors "^1.0.0"
object-keys "^1.1.1"
+define-properties@^1.2.0, define-properties@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c"
+ integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==
+ dependencies:
+ define-data-property "^1.0.1"
+ has-property-descriptors "^1.0.0"
+ object-keys "^1.1.1"
+
del@^6.1.1:
version "6.1.1"
resolved "https://registry.yarnpkg.com/del/-/del-6.1.1.tgz#3b70314f1ec0aa325c6b14eb36b95786671edb7a"
@@ -5159,6 +5938,16 @@ eastasianwidth@^0.2.0:
resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb"
integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
+ed25519-signature-2018-context@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/ed25519-signature-2018-context/-/ed25519-signature-2018-context-1.1.0.tgz#68002ea7497c32e8170667cfd67468dedf7d220e"
+ integrity sha512-ppDWYMNwwp9bploq0fS4l048vHIq41nWsAbPq6H4mNVx9G/GxW3fwg4Ln0mqctP13MoEpREK7Biz8TbVVdYXqA==
+
+ed25519-signature-2020-context@^1.0.1:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/ed25519-signature-2020-context/-/ed25519-signature-2020-context-1.1.0.tgz#b2f724f07db154ddf0fd6605410d88736e56fd07"
+ integrity sha512-dBGSmoUIK6h2vadDctrDnhhTO01PR2hJk0mRNEfrRDPCjaIwrfy4J+eziEQ9Q1m8By4f/CSRgKM1h53ydKfdNg==
+
ee-first@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
@@ -5169,6 +5958,11 @@ electron-to-chromium@^1.4.284:
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.357.tgz#ad02bab69e696e9a122788da4460c86166a98a01"
integrity sha512-UTkCbNTAcGXABmEnQrGcW4m3cG6fcyBfD4KDF0iyEAlbrGZiY9dmslyDAGOD1Kr5biN2F743Y30aRCOtau35Vw==
+electron-to-chromium@^1.4.648:
+ version "1.4.653"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.653.tgz#832ab25e80ad698ac09c1ca547bd9ee6cce7df10"
+ integrity sha512-wA2A2LQCqnEwQAvwADQq3KpMpNwgAUBnRmrFgRzHnPhbQUFArTR32Ab46f4p0MovDLcg4uqd4nCsN2hTltslpA==
+
elkjs@^0.8.2:
version "0.8.2"
resolved "https://registry.yarnpkg.com/elkjs/-/elkjs-0.8.2.tgz#c37763c5a3e24e042e318455e0147c912a7c248e"
@@ -5261,11 +6055,74 @@ error-ex@^1.3.1:
dependencies:
is-arrayish "^0.2.1"
+es-abstract@^1.22.1:
+ version "1.22.3"
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.3.tgz#48e79f5573198de6dee3589195727f4f74bc4f32"
+ integrity sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==
+ dependencies:
+ array-buffer-byte-length "^1.0.0"
+ arraybuffer.prototype.slice "^1.0.2"
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.5"
+ es-set-tostringtag "^2.0.1"
+ es-to-primitive "^1.2.1"
+ function.prototype.name "^1.1.6"
+ get-intrinsic "^1.2.2"
+ get-symbol-description "^1.0.0"
+ globalthis "^1.0.3"
+ gopd "^1.0.1"
+ has-property-descriptors "^1.0.0"
+ has-proto "^1.0.1"
+ has-symbols "^1.0.3"
+ hasown "^2.0.0"
+ internal-slot "^1.0.5"
+ is-array-buffer "^3.0.2"
+ is-callable "^1.2.7"
+ is-negative-zero "^2.0.2"
+ is-regex "^1.1.4"
+ is-shared-array-buffer "^1.0.2"
+ is-string "^1.0.7"
+ is-typed-array "^1.1.12"
+ is-weakref "^1.0.2"
+ object-inspect "^1.13.1"
+ object-keys "^1.1.1"
+ object.assign "^4.1.4"
+ regexp.prototype.flags "^1.5.1"
+ safe-array-concat "^1.0.1"
+ safe-regex-test "^1.0.0"
+ string.prototype.trim "^1.2.8"
+ string.prototype.trimend "^1.0.7"
+ string.prototype.trimstart "^1.0.7"
+ typed-array-buffer "^1.0.0"
+ typed-array-byte-length "^1.0.0"
+ typed-array-byte-offset "^1.0.0"
+ typed-array-length "^1.0.4"
+ unbox-primitive "^1.0.2"
+ which-typed-array "^1.1.13"
+
es-module-lexer@^0.9.0:
version "0.9.3"
resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19"
integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==
+es-set-tostringtag@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz#11f7cc9f63376930a5f20be4915834f4bc74f9c9"
+ integrity sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==
+ dependencies:
+ get-intrinsic "^1.2.2"
+ has-tostringtag "^1.0.0"
+ hasown "^2.0.0"
+
+es-to-primitive@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
+ integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
+ dependencies:
+ is-callable "^1.1.4"
+ is-date-object "^1.0.1"
+ is-symbol "^1.0.2"
+
es5-ext@^0.10.35, es5-ext@^0.10.50:
version "0.10.62"
resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.62.tgz#5e6adc19a6da524bf3d1e02bbc8960e5eb49a9a5"
@@ -5317,6 +6174,18 @@ escape-string-regexp@^4.0.0:
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
+escodegen@^1.8.1:
+ version "1.14.3"
+ resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503"
+ integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==
+ dependencies:
+ esprima "^4.0.1"
+ estraverse "^4.2.0"
+ esutils "^2.0.2"
+ optionator "^0.8.1"
+ optionalDependencies:
+ source-map "~0.6.1"
+
eslint-scope@5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
@@ -5325,7 +6194,12 @@ eslint-scope@5.1.1:
esrecurse "^4.3.0"
estraverse "^4.1.1"
-esprima@^4.0.0:
+esprima@1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.2.2.tgz#76a0fd66fcfe154fd292667dc264019750b1657b"
+ integrity sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==
+
+esprima@^4.0.0, esprima@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
@@ -5337,7 +6211,7 @@ esrecurse@^4.3.0:
dependencies:
estraverse "^5.2.0"
-estraverse@^4.1.1:
+estraverse@^4.1.1, estraverse@^4.2.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
@@ -5495,6 +6369,11 @@ fast-json-stable-stringify@^2.0.0:
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
+fast-levenshtein@~2.0.6:
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
+ integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
+
fast-text-encoding@^1.0.3:
version "1.0.6"
resolved "https://registry.yarnpkg.com/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz#0aa25f7f638222e3396d72bf936afcf1d42d6867"
@@ -5558,6 +6437,14 @@ fetch-blob@^2.1.1:
resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-2.1.2.tgz#a7805db1361bd44c1ef62bb57fb5fe8ea173ef3c"
integrity sha512-YKqtUDwqLyfyMnmbw8XD6Q8j9i/HggKtPEI+pZ1+8bvheBu78biSmNaXWusx1TauGqtUUGx/cBb1mKdq2rLYow==
+fetch-blob@^3.1.2, fetch-blob@^3.1.4:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.2.0.tgz#f09b8d4bbd45adc6f0c20b7e787e793e309dcce9"
+ integrity sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==
+ dependencies:
+ node-domexception "^1.0.0"
+ web-streams-polyfill "^3.0.3"
+
ffi-napi@4.0.3, ffi-napi@^4.0.3:
version "4.0.3"
resolved "https://registry.yarnpkg.com/ffi-napi/-/ffi-napi-4.0.3.tgz#27a8d42a8ea938457154895c59761fbf1a10f441"
@@ -5645,6 +6532,15 @@ find-up@^5.0.0, find-up@~5.0.0:
locate-path "^6.0.0"
path-exists "^4.0.0"
+fix-esm@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/fix-esm/-/fix-esm-1.0.1.tgz#e0e2199d841e43ff7db9b5f5ba7496bc45130ebb"
+ integrity sha512-EZtb7wPXZS54GaGxaWxMlhd1DUDCnAg5srlYdu/1ZVeW+7wwR3Tp59nu52dXByFs3MBRq+SByx1wDOJpRvLEXw==
+ dependencies:
+ "@babel/core" "^7.14.6"
+ "@babel/plugin-proposal-export-namespace-from" "^7.14.5"
+ "@babel/plugin-transform-modules-commonjs" "^7.14.5"
+
flux@^4.0.1:
version "4.0.4"
resolved "https://registry.yarnpkg.com/flux/-/flux-4.0.4.tgz#9661182ea81d161ee1a6a6af10d20485ef2ac572"
@@ -5658,6 +6554,13 @@ follow-redirects@^1.0.0, follow-redirects@^1.14.0, follow-redirects@^1.14.7:
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13"
integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==
+for-each@^0.3.3:
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e"
+ integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==
+ dependencies:
+ is-callable "^1.1.3"
+
fork-ts-checker-webpack-plugin@^6.5.0:
version "6.5.3"
resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz#eda2eff6e22476a2688d10661688c47f611b37f3"
@@ -5686,6 +6589,13 @@ form-data@^3.0.0:
combined-stream "^1.0.8"
mime-types "^2.1.12"
+formdata-polyfill@^4.0.10:
+ version "4.0.10"
+ resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423"
+ integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==
+ dependencies:
+ fetch-blob "^3.1.2"
+
forwarded@0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
@@ -5747,6 +6657,26 @@ function-bind@^1.1.1:
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
+function-bind@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
+ integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
+
+function.prototype.name@^1.1.6:
+ version "1.1.6"
+ resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd"
+ integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
+ functions-have-names "^1.2.3"
+
+functions-have-names@^1.2.3:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
+ integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
+
gauge@^3.0.0:
version "3.0.2"
resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395"
@@ -5790,6 +6720,16 @@ get-intrinsic@^1.0.2, get-intrinsic@^1.1.1:
has "^1.0.3"
has-symbols "^1.0.3"
+get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.2.tgz#281b7622971123e1ef4b3c90fd7539306da93f3b"
+ integrity sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==
+ dependencies:
+ function-bind "^1.1.2"
+ has-proto "^1.0.1"
+ has-symbols "^1.0.3"
+ hasown "^2.0.0"
+
get-own-enumerable-property-symbols@^3.0.0:
version "3.0.2"
resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664"
@@ -5814,6 +6754,14 @@ get-stream@^6.0.0:
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
+get-symbol-description@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
+ integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.1.1"
+
get-symbol-from-current-process-h@^1.0.1, get-symbol-from-current-process-h@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/get-symbol-from-current-process-h/-/get-symbol-from-current-process-h-1.0.2.tgz#510af52eaef873f7028854c3377f47f7bb200265"
@@ -5890,7 +6838,7 @@ globals@^11.1.0:
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
-globalthis@^1.0.1:
+globalthis@^1.0.1, globalthis@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf"
integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==
@@ -5920,6 +6868,13 @@ globby@^13.1.1:
merge2 "^1.4.1"
slash "^4.0.0"
+gopd@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
+ integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
+ dependencies:
+ get-intrinsic "^1.1.3"
+
got@^9.6.0:
version "9.6.0"
resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85"
@@ -5964,6 +6919,11 @@ handle-thing@^2.0.0:
resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e"
integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==
+has-bigints@^1.0.1, has-bigints@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
+ integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
+
has-flag@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
@@ -5981,11 +6941,30 @@ has-property-descriptors@^1.0.0:
dependencies:
get-intrinsic "^1.1.1"
-has-symbols@^1.0.3:
+has-property-descriptors@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz#52ba30b6c5ec87fd89fa574bc1c39125c6f65340"
+ integrity sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==
+ dependencies:
+ get-intrinsic "^1.2.2"
+
+has-proto@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0"
+ integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==
+
+has-symbols@^1.0.2, has-symbols@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
+has-tostringtag@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
+ integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
+ dependencies:
+ has-symbols "^1.0.2"
+
has-unicode@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
@@ -6011,6 +6990,13 @@ hash.js@^1.0.0, hash.js@^1.0.3:
inherits "^2.0.3"
minimalistic-assert "^1.0.1"
+hasown@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c"
+ integrity sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==
+ dependencies:
+ function-bind "^1.1.2"
+
hast-to-hyperscript@^9.0.0:
version "9.0.1"
resolved "https://registry.yarnpkg.com/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz#9b67fd188e4c81e8ad66f803855334173920218d"
@@ -6399,6 +7385,15 @@ inline-style-parser@0.1.1:
resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1"
integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==
+internal-slot@^1.0.5:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.6.tgz#37e756098c4911c5e912b8edbf71ed3aa116f930"
+ integrity sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==
+ dependencies:
+ get-intrinsic "^1.2.2"
+ hasown "^2.0.0"
+ side-channel "^1.0.4"
+
"internmap@1 - 2":
version "2.0.3"
resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009"
@@ -6444,11 +7439,27 @@ is-alphanumerical@^1.0.0:
is-alphabetical "^1.0.0"
is-decimal "^1.0.0"
+is-array-buffer@^3.0.1, is-array-buffer@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe"
+ integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.2.0"
+ is-typed-array "^1.1.10"
+
is-arrayish@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
+is-bigint@^1.0.1:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
+ integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
+ dependencies:
+ has-bigints "^1.0.1"
+
is-binary-path@~2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
@@ -6456,11 +7467,24 @@ is-binary-path@~2.1.0:
dependencies:
binary-extensions "^2.0.0"
+is-boolean-object@^1.1.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
+ integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
+ dependencies:
+ call-bind "^1.0.2"
+ has-tostringtag "^1.0.0"
+
is-buffer@^2.0.0:
version "2.0.5"
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
+is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
+ integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
+
is-ci@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
@@ -6475,6 +7499,13 @@ is-core-module@^2.11.0:
dependencies:
has "^1.0.3"
+is-date-object@^1.0.1:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
+ integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
+ dependencies:
+ has-tostringtag "^1.0.0"
+
is-decimal@^1.0.0:
version "1.0.4"
resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5"
@@ -6525,11 +7556,23 @@ is-lambda@^1.0.1:
resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5"
integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==
+is-negative-zero@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
+ integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
+
is-npm@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-5.0.0.tgz#43e8d65cc56e1b67f8d47262cf667099193f45a8"
integrity sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==
+is-number-object@^1.0.4:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc"
+ integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
+ dependencies:
+ has-tostringtag "^1.0.0"
+
is-number@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
@@ -6572,6 +7615,14 @@ is-plain-object@^2.0.4:
dependencies:
isobject "^3.0.1"
+is-regex@^1.1.4:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
+ integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
+ dependencies:
+ call-bind "^1.0.2"
+ has-tostringtag "^1.0.0"
+
is-regexp@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069"
@@ -6582,16 +7633,51 @@ is-root@^2.1.0:
resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c"
integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==
+is-shared-array-buffer@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
+ integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
+ dependencies:
+ call-bind "^1.0.2"
+
is-stream@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077"
integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==
+is-string@^1.0.5, is-string@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
+ integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
+ dependencies:
+ has-tostringtag "^1.0.0"
+
+is-symbol@^1.0.2, is-symbol@^1.0.3:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
+ integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
+ dependencies:
+ has-symbols "^1.0.2"
+
+is-typed-array@^1.1.10, is-typed-array@^1.1.12, is-typed-array@^1.1.9:
+ version "1.1.12"
+ resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a"
+ integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==
+ dependencies:
+ which-typed-array "^1.1.11"
+
is-typedarray@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==
+is-weakref@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
+ integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
+ dependencies:
+ call-bind "^1.0.2"
+
is-whitespace-character@^1.0.0:
version "1.0.4"
resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7"
@@ -6619,6 +7705,11 @@ isarray@0.0.1:
resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==
+isarray@^2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
+ integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
+
isarray@~1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
@@ -6766,7 +7857,7 @@ json-text-sequence@~0.3.0:
dependencies:
"@sovpro/delimited-stream" "^1.1.0"
-json5@^2.1.2, json5@^2.2.2:
+json5@^2.1.2, json5@^2.2.2, json5@^2.2.3:
version "2.2.3"
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
@@ -6780,6 +7871,39 @@ jsonfile@^6.0.1:
optionalDependencies:
graceful-fs "^4.1.6"
+jsonld-signatures@^11.0.0:
+ version "11.2.1"
+ resolved "https://registry.yarnpkg.com/jsonld-signatures/-/jsonld-signatures-11.2.1.tgz#e2ff23ac7476fcdb92e5fecd9a1734ceaf904bb0"
+ integrity sha512-RNaHTEeRrX0jWeidPCwxMq/E/Ze94zFyEZz/v267ObbCHQlXhPO7GtkY6N5PSHQfQhZPXa8NlMBg5LiDF4dNbA==
+ dependencies:
+ "@digitalbazaar/security-context" "^1.0.0"
+ jsonld "^8.0.0"
+ serialize-error "^8.1.0"
+
+jsonld@^8.0.0:
+ version "8.3.2"
+ resolved "https://registry.yarnpkg.com/jsonld/-/jsonld-8.3.2.tgz#7033f8994aed346b536e9046025f7f1fe9669934"
+ integrity sha512-MwBbq95szLwt8eVQ1Bcfwmgju/Y5P2GdtlHE2ncyfuYjIdEhluUVyj1eudacf1mOkWIoS9GpDBTECqhmq7EOaA==
+ dependencies:
+ "@digitalbazaar/http-client" "^3.4.1"
+ canonicalize "^1.0.1"
+ lru-cache "^6.0.0"
+ rdf-canonize "^3.4.0"
+
+jsonpath@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/jsonpath/-/jsonpath-1.1.1.tgz#0ca1ed8fb65bb3309248cc9d5466d12d5b0b9901"
+ integrity sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==
+ dependencies:
+ esprima "1.2.2"
+ static-eval "2.0.2"
+ underscore "1.12.1"
+
+jwt-decode@^3.1.2:
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/jwt-decode/-/jwt-decode-3.1.2.tgz#3fb319f3675a2df0c2895c8f5e9fa4b67b04ed59"
+ integrity sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A==
+
keyv@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9"
@@ -6807,6 +7931,14 @@ klona@^2.0.6:
resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22"
integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==
+ky-universal@^0.11.0:
+ version "0.11.0"
+ resolved "https://registry.yarnpkg.com/ky-universal/-/ky-universal-0.11.0.tgz#f5edf857865aaaea416a1968222148ad7d9e4017"
+ integrity sha512-65KyweaWvk+uKKkCrfAf+xqN2/epw1IJDtlyCPxYffFCMR8u1sp2U65NtWpnozYfZxQ6IUzIlvUcw+hQ82U2Xw==
+ dependencies:
+ abort-controller "^3.0.0"
+ node-fetch "^3.2.10"
+
ky-universal@^0.8.2:
version "0.8.2"
resolved "https://registry.yarnpkg.com/ky-universal/-/ky-universal-0.8.2.tgz#edc398d54cf495d7d6830aa1ab69559a3cc7f824"
@@ -6820,6 +7952,11 @@ ky@^0.25.1:
resolved "https://registry.yarnpkg.com/ky/-/ky-0.25.1.tgz#0df0bd872a9cc57e31acd5dbc1443547c881bfbc"
integrity sha512-PjpCEWlIU7VpiMVrTwssahkYXX1by6NCT0fhTUX34F3DTinARlgMpriuroolugFPcMgpPWrOW4mTb984Qm1RXA==
+ky@^0.33.3:
+ version "0.33.3"
+ resolved "https://registry.yarnpkg.com/ky/-/ky-0.33.3.tgz#bf1ad322a3f2c3428c13cfa4b3af95e6c4a2f543"
+ integrity sha512-CasD9OCEQSFIam2U8efFK81Yeg8vNMTBUqtMOHlrcWQHqUX3HeCl9Dr31u4toV7emlH8Mymk5+9p0lL6mKb/Xw==
+
latest-version@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face"
@@ -6850,11 +7987,31 @@ leven@^3.1.0:
resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
+levn@~0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
+ integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==
+ dependencies:
+ prelude-ls "~1.1.2"
+ type-check "~0.3.2"
+
libphonenumber-js@^1.10.14, libphonenumber-js@^1.9.7:
version "1.10.26"
resolved "https://registry.yarnpkg.com/libphonenumber-js/-/libphonenumber-js-1.10.26.tgz#3e6604357b3434b0005f85778b44153f4fadeecd"
integrity sha512-oB3l4J5gEhMV+ymmlIjWedsbCpsNRqbEZ/E/MpN2QVyinKNra6DcuXywxSk/72M3DZDoH/6kzurOq1erznBMwQ==
+libsodium-sumo@^0.7.13:
+ version "0.7.13"
+ resolved "https://registry.yarnpkg.com/libsodium-sumo/-/libsodium-sumo-0.7.13.tgz#533b97d2be44b1277e59c1f9f60805978ac5542d"
+ integrity sha512-zTGdLu4b9zSNLfovImpBCbdAA4xkpkZbMnSQjP8HShyOutnGjRHmSOKlsylh1okao6QhLiz7nG98EGn+04cZjQ==
+
+libsodium-wrappers-sumo@^0.7.11:
+ version "0.7.13"
+ resolved "https://registry.yarnpkg.com/libsodium-wrappers-sumo/-/libsodium-wrappers-sumo-0.7.13.tgz#a33aea845a0bb56db067548f04feba28c730ab8e"
+ integrity sha512-lz4YdplzDRh6AhnLGF2Dj2IUj94xRN6Bh8T0HLNwzYGwPehQJX6c7iYVrFUPZ3QqxE0bqC+K0IIqqZJYWumwSQ==
+ dependencies:
+ libsodium-sumo "^0.7.13"
+
libsodium-wrappers@^0.7.6:
version "0.7.11"
resolved "https://registry.yarnpkg.com/libsodium-wrappers/-/libsodium-wrappers-0.7.11.tgz#53bd20606dffcc54ea2122133c7da38218f575f7"
@@ -7350,6 +8507,11 @@ nanoid@^3.3.4:
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
+nanoid@^3.3.6:
+ version "3.3.7"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8"
+ integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
+
negotiator@0.6.3, negotiator@^0.6.2:
version "0.6.3"
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
@@ -7385,6 +8547,11 @@ node-cache@5.1.2, node-cache@^5.1.2:
dependencies:
clone "2.x"
+node-domexception@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5"
+ integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==
+
node-emoji@^1.10.0:
version "1.11.0"
resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.11.0.tgz#69a0150e6946e2f115e9d7ea4df7971e2628301c"
@@ -7414,6 +8581,15 @@ node-fetch@3.0.0-beta.9:
data-uri-to-buffer "^3.0.1"
fetch-blob "^2.1.1"
+node-fetch@^3.2.10:
+ version "3.3.2"
+ resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.2.tgz#d1e889bacdf733b4ff3b2b243eb7a12866a0b78b"
+ integrity sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==
+ dependencies:
+ data-uri-to-buffer "^4.0.0"
+ fetch-blob "^3.1.4"
+ formdata-polyfill "^4.0.10"
+
node-forge@^1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3"
@@ -7440,6 +8616,11 @@ node-gyp@^8.0.0:
tar "^6.1.2"
which "^2.0.2"
+node-releases@^2.0.14:
+ version "2.0.14"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b"
+ integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==
+
node-releases@^2.0.8:
version "2.0.10"
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f"
@@ -7526,6 +8707,11 @@ object-inspect@^1.10.3, object-inspect@^1.9.0:
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9"
integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==
+object-inspect@^1.13.1:
+ version "1.13.1"
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2"
+ integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==
+
object-keys@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
@@ -7541,6 +8727,16 @@ object.assign@^4.1.0:
has-symbols "^1.0.3"
object-keys "^1.1.1"
+object.assign@^4.1.4:
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0"
+ integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==
+ dependencies:
+ call-bind "^1.0.5"
+ define-properties "^1.2.1"
+ has-symbols "^1.0.3"
+ object-keys "^1.1.1"
+
obuf@^1.0.0, obuf@^1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
@@ -7586,6 +8782,18 @@ opener@^1.5.2:
resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598"
integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==
+optionator@^0.8.1:
+ version "0.8.3"
+ resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
+ integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
+ dependencies:
+ deep-is "~0.1.3"
+ fast-levenshtein "~2.0.6"
+ levn "~0.3.0"
+ prelude-ls "~1.1.2"
+ type-check "~0.3.2"
+ word-wrap "~1.2.3"
+
p-cancelable@^1.0.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc"
@@ -7656,6 +8864,11 @@ package-json@^6.3.0:
registry-url "^5.0.0"
semver "^6.2.0"
+pako@^2.0.4:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/pako/-/pako-2.1.0.tgz#266cc37f98c7d883545d11335c00fbd4062c9a86"
+ integrity sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==
+
param-case@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5"
@@ -8103,6 +9316,11 @@ preact@^10.0.0:
resolved "https://registry.yarnpkg.com/preact/-/preact-10.13.2.tgz#2c40c73d57248b57234c4ae6cd9ab9d8186ebc0a"
integrity sha512-q44QFLhOhty2Bd0Y46fnYW0gD/cbVM9dUVtNTDKPcdXSMA7jfY+Jpd6rk3GB0lcQss0z5s/6CmVP0Z/hV+g6pw==
+prelude-ls@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
+ integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==
+
prepend-http@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
@@ -8346,6 +9564,13 @@ rc@1.2.8, rc@^1.2.8:
minimist "^1.2.0"
strip-json-comments "~2.0.1"
+rdf-canonize@^3.4.0:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/rdf-canonize/-/rdf-canonize-3.4.0.tgz#87f88342b173cc371d812a07de350f0c1aa9f058"
+ integrity sha512-fUeWjrkOO0t1rg7B2fdyDTvngj+9RlUyL92vOdiB7c0FPguWVsniIMjEtHH+meLBO9rzkUlUzBVXgWrjI8P9LA==
+ dependencies:
+ setimmediate "^1.0.5"
+
react-base16-styling@^0.6.0:
version "0.6.0"
resolved "https://registry.yarnpkg.com/react-base16-styling/-/react-base16-styling-0.6.0.tgz#ef2156d66cf4139695c8a167886cb69ea660792c"
@@ -8609,6 +9834,15 @@ regenerator-transform@^0.15.1:
dependencies:
"@babel/runtime" "^7.8.4"
+regexp.prototype.flags@^1.5.0, regexp.prototype.flags@^1.5.1:
+ version "1.5.1"
+ resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz#90ce989138db209f81492edd734183ce99f9677e"
+ integrity sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ set-function-name "^2.0.0"
+
regexpu-core@^5.3.1:
version "5.3.2"
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b"
@@ -8830,6 +10064,16 @@ rxjs@^7.2.0, rxjs@^7.5.4:
dependencies:
tslib "^2.1.0"
+safe-array-concat@^1.0.1:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.0.tgz#8d0cae9cb806d6d1c06e08ab13d847293ebe0692"
+ integrity sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==
+ dependencies:
+ call-bind "^1.0.5"
+ get-intrinsic "^1.2.2"
+ has-symbols "^1.0.3"
+ isarray "^2.0.5"
+
safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
@@ -8840,6 +10084,15 @@ safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.1.0, safe-buffer@~5.2.0:
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
+safe-regex-test@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.2.tgz#3ba32bdb3ea35f940ee87e5087c60ee786c3f6c5"
+ integrity sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==
+ dependencies:
+ call-bind "^1.0.5"
+ get-intrinsic "^1.2.2"
+ is-regex "^1.1.4"
+
"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0":
version "2.1.2"
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
@@ -8927,7 +10180,7 @@ semver@^5.4.1:
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
-semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0:
+semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0, semver@^6.3.1:
version "6.3.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
@@ -8958,7 +10211,7 @@ send@0.18.0:
range-parser "~1.2.1"
statuses "2.0.1"
-serialize-error@^8.0.1:
+serialize-error@^8.0.1, serialize-error@^8.1.0:
version "8.1.0"
resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-8.1.0.tgz#3a069970c712f78634942ddd50fbbc0eaebe2f67"
integrity sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ==
@@ -9014,6 +10267,26 @@ set-blocking@^2.0.0:
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==
+set-function-length@^1.1.1:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.0.tgz#2f81dc6c16c7059bda5ab7c82c11f03a515ed8e1"
+ integrity sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==
+ dependencies:
+ define-data-property "^1.1.1"
+ function-bind "^1.1.2"
+ get-intrinsic "^1.2.2"
+ gopd "^1.0.1"
+ has-property-descriptors "^1.0.1"
+
+set-function-name@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.1.tgz#12ce38b7954310b9f61faa12701620a0c882793a"
+ integrity sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==
+ dependencies:
+ define-data-property "^1.0.1"
+ functions-have-names "^1.2.3"
+ has-property-descriptors "^1.0.0"
+
setimmediate@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
@@ -9169,7 +10442,7 @@ source-map@^0.5.0:
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
-source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0:
+source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1:
version "0.6.1"
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
@@ -9229,6 +10502,13 @@ state-toggle@^1.0.0:
resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe"
integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==
+static-eval@2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/static-eval/-/static-eval-2.0.2.tgz#2d1759306b1befa688938454c546b7871f806a42"
+ integrity sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==
+ dependencies:
+ escodegen "^1.8.1"
+
statuses@2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63"
@@ -9272,6 +10552,48 @@ string-width@^5.0.1:
emoji-regex "^9.2.2"
strip-ansi "^7.0.1"
+string.prototype.matchall@^4.0.8:
+ version "4.0.10"
+ resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz#a1553eb532221d4180c51581d6072cd65d1ee100"
+ integrity sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
+ get-intrinsic "^1.2.1"
+ has-symbols "^1.0.3"
+ internal-slot "^1.0.5"
+ regexp.prototype.flags "^1.5.0"
+ set-function-name "^2.0.0"
+ side-channel "^1.0.4"
+
+string.prototype.trim@^1.2.8:
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz#f9ac6f8af4bd55ddfa8895e6aea92a96395393bd"
+ integrity sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
+
+string.prototype.trimend@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz#1bb3afc5008661d73e2dc015cd4853732d6c471e"
+ integrity sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
+
+string.prototype.trimstart@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz#d4cdb44b83a4737ffbac2d406e405d43d0184298"
+ integrity sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
+
string_decoder@^1.1.1:
version "1.3.0"
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
@@ -9549,6 +10871,20 @@ tsyringe@^4.7.0:
dependencies:
tslib "^1.9.3"
+tsyringe@^4.8.0:
+ version "4.8.0"
+ resolved "https://registry.yarnpkg.com/tsyringe/-/tsyringe-4.8.0.tgz#d599651b36793ba872870fee4f845bd484a5cac1"
+ integrity sha512-YB1FG+axdxADa3ncEtRnQCFq/M0lALGLxSZeVNbTU8NqhOVc51nnv2CISTcvc1kyv6EGPtXVr0v6lWeDxiijOA==
+ dependencies:
+ tslib "^1.9.3"
+
+type-check@~0.3.2:
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
+ integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==
+ dependencies:
+ prelude-ls "~1.1.2"
+
type-fest@^0.20.2:
version "0.20.2"
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
@@ -9577,6 +10913,45 @@ type@^2.7.2:
resolved "https://registry.yarnpkg.com/type/-/type-2.7.2.tgz#2376a15a3a28b1efa0f5350dcf72d24df6ef98d0"
integrity sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==
+typed-array-buffer@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60"
+ integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.2.1"
+ is-typed-array "^1.1.10"
+
+typed-array-byte-length@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0"
+ integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==
+ dependencies:
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ has-proto "^1.0.1"
+ is-typed-array "^1.1.10"
+
+typed-array-byte-offset@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b"
+ integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==
+ dependencies:
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ has-proto "^1.0.1"
+ is-typed-array "^1.1.10"
+
+typed-array-length@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb"
+ integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==
+ dependencies:
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ is-typed-array "^1.1.9"
+
typedarray-to-buffer@^3.1.5:
version "3.1.5"
resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
@@ -9601,6 +10976,28 @@ uint8arrays@^3.0.0:
dependencies:
multiformats "^9.4.2"
+unbox-primitive@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e"
+ integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
+ dependencies:
+ call-bind "^1.0.2"
+ has-bigints "^1.0.2"
+ has-symbols "^1.0.3"
+ which-boxed-primitive "^1.0.2"
+
+underscore@1.12.1:
+ version "1.12.1"
+ resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.12.1.tgz#7bb8cc9b3d397e201cf8553336d262544ead829e"
+ integrity sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==
+
+undici@^5.21.2:
+ version "5.28.2"
+ resolved "https://registry.yarnpkg.com/undici/-/undici-5.28.2.tgz#fea200eac65fc7ecaff80a023d1a0543423b4c91"
+ integrity sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==
+ dependencies:
+ "@fastify/busboy" "^2.0.0"
+
unherit@^1.0.4:
version "1.1.3"
resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22"
@@ -9753,6 +11150,14 @@ update-browserslist-db@^1.0.10:
escalade "^3.1.1"
picocolors "^1.0.0"
+update-browserslist-db@^1.0.13:
+ version "1.0.13"
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4"
+ integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==
+ dependencies:
+ escalade "^3.1.1"
+ picocolors "^1.0.0"
+
update-notifier@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-5.1.0.tgz#4ab0d7c7f36a231dd7316cf7729313f0214d9ad9"
@@ -9935,6 +11340,11 @@ web-namespaces@^1.0.0:
resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-1.1.4.tgz#bc98a3de60dadd7faefc403d1076d529f5e030ec"
integrity sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==
+web-streams-polyfill@^3.0.3:
+ version "3.3.2"
+ resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.3.2.tgz#32e26522e05128203a7de59519be3c648004343b"
+ integrity sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==
+
web-worker@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/web-worker/-/web-worker-1.2.0.tgz#5d85a04a7fbc1e7db58f66595d7a3ac7c9c180da"
@@ -10099,6 +11509,28 @@ whatwg-url@^5.0.0:
tr46 "~0.0.3"
webidl-conversions "^3.0.0"
+which-boxed-primitive@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
+ integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
+ dependencies:
+ is-bigint "^1.0.1"
+ is-boolean-object "^1.1.0"
+ is-number-object "^1.0.4"
+ is-string "^1.0.5"
+ is-symbol "^1.0.3"
+
+which-typed-array@^1.1.11, which-typed-array@^1.1.13:
+ version "1.1.13"
+ resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.13.tgz#870cd5be06ddb616f504e7b039c4c24898184d36"
+ integrity sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==
+ dependencies:
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.4"
+ for-each "^0.3.3"
+ gopd "^1.0.1"
+ has-tostringtag "^1.0.0"
+
which@^1.3.1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
@@ -10139,6 +11571,11 @@ wildcard@^2.0.0:
resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec"
integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==
+word-wrap@~1.2.3:
+ version "1.2.5"
+ resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34"
+ integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==
+
wrap-ansi@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"