Skip to content

Commit

Permalink
docs: switch the submodule to sdk-ts, fix link to the Swift SDK docs
Browse files Browse the repository at this point in the history
Signed-off-by: Yurii Shynbuiev <yurii.shynbuiev@iohk.io>
  • Loading branch information
yshyn-iohk committed Feb 17, 2025
1 parent 545e261 commit 3c05f9d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "cloud-agent"]
path = cloud-agent
url = https://github.com/hyperledger-identus/cloud-agent
[submodule "edge-agent-sdk-ts"]
path = edge-agent-sdk-ts
url = https://github.com/hyperledger-identus/edge-agent-sdk-ts
[submodule "sdk-ts"]
path = sdk-ts
url = https://github.com/hyperledger-identus/sdk-ts
2 changes: 1 addition & 1 deletion documentation/home/identus/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ Identus is a toolset designed for Decentralized Identity enablement. These tools

* [Mediator](mediator): The Mediator acts as a bridge between the [holder's](/home/concepts/glossary#holder) device and other actors, such as [issuers](/home/concepts/glossary#issuer) and [verifiers](/home/concepts/glossary#verifier), ensuring secure and reliable communication without centralized management​​​​.

* Edge Agent SDKs: allow the development of edge agents - Decentralized Identity mobile apps and browser extensions. The SDKs are available in [Swift](https://hyperledger-identus.github.io/edge-agent-sdk-swift/documentation/edgeagentsdk/) (iOS and other Apple OS), [TS](https://hyperledger-identus.github.io/docs/edge-agent-sdk-ts/sdk) (Browser and Node.js), and [Kotlin Multiplatform](https://hyperledger-identus.github.io/edge-agent-sdk-kmp/) (JVM and Android)
* Edge Agent SDKs: allow the development of edge agents - Decentralized Identity mobile apps and browser extensions. The SDKs are available in [Swift](https://hyperledger-identus.github.io/edge-agent-sdk-swift/documentation/edgeagentsdk/) (iOS and other Apple OS), [TS](https://hyperledger-identus.github.io/docs/sdk-ts/sdk) (Browser and Node.js), and [Kotlin Multiplatform](https://hyperledger-identus.github.io/edge-agent-sdk-kmp/) (JVM and Android)
8 changes: 4 additions & 4 deletions documentation/home/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ More in depth documentation about [Cloud Agent](/home/concepts/glossary/#cloud-a
### Wallet SDKs
[Wallet SDKs](/home/concepts/glossary/#wallet-sdk) for web and mobile (iOS, Android, TypeScript) enable identity holders to store credentials and respond to proof requests. They are typically used in applications that allow identity holders to interact with issuers and verifiers.

More in-depth documentation about the different Wallet SDKs can be found here ([TypeScript](https://hyperledger.github.io/identus-docs/identus-edge-agent-sdk-ts/sdk), [Swift](https://hyperledger.github.io/identus-edge-agent-sdk-swift/documentation/edgeagentsdk/), [KMP](https://hyperledger.github.io/identus-edge-agent-sdk-kmp/))
More in-depth documentation about the different Wallet SDKs can be found here ([TypeScript](https://hyperledger.github.io/identus-docs/identus-sdk-ts/sdk), [Swift](https://hyperledger.github.io/identus-edge-agent-sdk-swift/documentation/edgeagentsdk/), [KMP](https://hyperledger.github.io/identus-edge-agent-sdk-kmp/))



Expand Down Expand Up @@ -267,10 +267,10 @@ All wallet SDK's come bundled with a sample application, that cover all the Iden
<Tabs>
<TabItem value="js" label="Typescript Sample APP">

1. Clone the [TypeScript SDK](https://github.com/hyperledger/identus-edge-agent-sdk-ts) repository.
1. Clone the [TypeScript SDK](https://github.com/hyperledger-identus/sdk-ts) repository.

```bash
git clone https://github.com/hyperledger/identus-edge-agent-sdk-ts
git clone https://github.com/hyperledger-identus/sdk-ts
```

2. Ensure you have all applications installed for building the SDK and their dependencies
Expand All @@ -288,7 +288,7 @@ curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
* Build the source SDK:

```bash
cd identus-edge-agent-sdk-ts
cd sdk-ts
git submodule update --init --recursive
npm i
npm run build
Expand Down
22 changes: 11 additions & 11 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ const config = {
[
'@docusaurus/plugin-content-docs',
{
id: 'edge-agent-sdk-ts',
path: 'edge-agent-sdk-ts/docs',
routeBasePath: 'edge-agent-sdk-ts',
sidebarPath: require.resolve('./edge-agent-sdk-ts/docs/sidebars.js'),
id: 'sdk-ts',
path: 'sdk-ts/docs',
routeBasePath: 'sdk-ts',
sidebarPath: require.resolve('./sdk-ts/docs/sidebars.js'),
},
]
],
Expand Down Expand Up @@ -137,17 +137,17 @@ const config = {
position: 'left',
items: [
{
label: 'Edge Agent SDK Swift',
href: 'https://hyperledger.github.io/identus-edge-agent-sdk-swift/documentation/edgeagentsdk/',
label: 'SDK Swift',
href: 'https://hyperledger-identus.github.io/sdk-swift/documentation/edgeagentsdk/',
},
{
to: '/edge-agent-sdk-ts/sdk',
label: 'Edge Agent SDK Typescript',
activeBaseRegex: `/edge-agent-sdk-ts/sdk`
to: '/sdk-ts/sdk',
label: 'SDK Typescript',
activeBaseRegex: `/sdk-ts/sdk`
},
{
label: 'Edge Agent SDK Kotlin Multiplatform',
href: 'https://hyperledger-identus.github.io/edge-agent-sdk-kmp/',
label: 'SDK Kotlin Multiplatform',
href: 'https://hyperledger-identus.github.io/sdk-kmp/',
},
],
},
Expand Down

0 comments on commit 3c05f9d

Please sign in to comment.