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

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ yarn add @aas-core-works/aas-core3.0-typescript
## Usage Example

```typescript
import { AasRepositoryClient, AasRepositoryService } from 'basyx-typescript-sdk';
import { AasRepositoryClient, Configuration } from 'basyx-typescript-sdk';

async function getAllShells() {
const client = new AasRepositoryClient();
const configuration = new AasRepositoryService.Configuration({
const configuration = new Configuration({
basePath: 'http://localhost:8081',
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "basyx-typescript-sdk",
"version": "0.9.0",
"version": "1.0.0",
"description": "BaSyx TypeScript SDK for developing applications and components for the Asset Administration Shell (AAS)",
"type": "module",
"main": "bundle/index.js",
Expand Down
Loading