Skip to content

Commit

Permalink
build & add changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
mmv08 committed Jul 28, 2021
1 parent 69bf957 commit 4108134
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 37 deletions.
5 changes: 5 additions & 0 deletions .changeset/metal-numbers-sit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@gnosis.pm/safe-apps-sdk': minor
---

Add owners and threshold to SafeInfo type"
2 changes: 2 additions & 0 deletions packages/safe-apps-provider/dist/provider.js

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

2 changes: 1 addition & 1 deletion packages/safe-apps-provider/dist/provider.js.map

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

75 changes: 39 additions & 36 deletions packages/safe-apps-sdk/dist/package.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,41 @@
{
"name": "@gnosis.pm/safe-apps-sdk",
"version": "4.0.0",
"description": "SDK developed to integrate third-party apps with Safe-Multisig app.",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"_files": [
"dist/**/*",
"README.md"
],
"keywords": [
"Gnosis",
"sdk",
"apps"
],
"scripts": {
"test": "jest",
"format-dist": "sed -i '' 's/\"files\":/\"_files\":/' dist/package.json",
"build": "yarn rimraf dist && tsc && yarn format-dist",
"lint": "tslint -p tsconfig.json"
},
"author": "Gnosis (https://gnosis.io)",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.3.2",
"rimraf": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnosis/safe-apps-sdk.git"
},
"bugs": {
"url": "https://github.com/gnosis/safe-apps-sdk/issues"
},
"homepage": "https://github.com/gnosis/safe-apps-sdk#readme"
"name": "@gnosis.pm/safe-apps-sdk",
"version": "4.1.0-next.0",
"description": "SDK developed to integrate third-party apps with Safe-Multisig app.",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"_files": [
"dist/**/*",
"README.md"
],
"keywords": [
"Gnosis",
"sdk",
"apps"
],
"scripts": {
"test": "jest",
"format-dist": "sed -i '' 's/\"files\":/\"_files\":/' dist/package.json",
"build": "yarn rimraf dist && tsc && yarn format-dist",
"lint": "tslint -p tsconfig.json"
},
"author": "Gnosis (https://gnosis.io)",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.3.3",
"rimraf": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnosis/safe-apps-sdk.git"
},
"bugs": {
"url": "https://github.com/gnosis/safe-apps-sdk/issues"
},
"homepage": "https://github.com/gnosis/safe-apps-sdk#readme",
"publishConfig": {
"access": "public"
}
}
2 changes: 2 additions & 0 deletions packages/safe-apps-sdk/dist/src/types/sdk.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,6 @@ export declare type SendTransactionsResponse = {
export declare type SafeInfo = {
safeAddress: string;
chainId: number;
threshold: number;
owners: string[];
};

0 comments on commit 4108134

Please sign in to comment.