Skip to content

Commit

Permalink
Merge pull request #31 from peaqnetwork/feature/1208344603433209_stor…
Browse files Browse the repository at this point in the history
…age-hotfix

feature/1208344603433209 Storage hotfix
  • Loading branch information
jpgundrum authored Sep 18, 2024
2 parents de54c17 + 3ac714e commit e7d2bd5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "peaq-network",
"version": "0.7.0",
"version": "0.7.1",
"license": "MIT",
"scripts": {
"prepare": "ts-patch install -s"
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "peaq network <[email protected]>",
"name": "@peaq-network/sdk",
"version": "0.7.0",
"version": "0.7.1",
"description": "peaq network sdk",
"license": "Apache-2.0",
"repository": {
Expand Down
3 changes: 3 additions & 0 deletions packages/sdk/src/modules/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import type { Options, SDKMetadata } from '../../types';
import { Base } from '../base';
import { GenerateDidOptions, GenerateDidResult, Did } from '../did';
import { RBAC } from "../rbac";
import { Storage } from "../storage";


/**
Expand All @@ -20,6 +21,7 @@ export class Main extends Base {

public did: Did;
public rbac: RBAC;
public storage: Storage;

constructor(options: Options) {
super();
Expand All @@ -29,6 +31,7 @@ export class Main extends Base {

this.did = new Did(this._api, this._metadata);
this.rbac = new RBAC(this._api, this._metadata);
this.storage = new Storage(this._api, this._metadata);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "peaq network <[email protected]>",
"name": "@peaq-network/types",
"version": "0.7.0",
"version": "0.7.1",
"license": "Apache-2.0",
"description": "Typescript definitions for the peaq network",
"repository": {
Expand Down

0 comments on commit e7d2bd5

Please sign in to comment.