Skip to content

Commit

Permalink
Merge branch 'widen-accepted-parameter-types' of github.com:api3dao/o…
Browse files Browse the repository at this point in the history
…is into widen-accepted-parameter-types
  • Loading branch information
aquarat committed Jun 6, 2023
2 parents 751c2d6 + 0be8ed7 commit 6d789d2
Show file tree
Hide file tree
Showing 5 changed files with 163 additions and 50 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,6 @@ jobs:
steps:
- name: Clone @api3/ois
uses: actions/checkout@master
- name: Update latest paths
run: |
wget https://raw.githubusercontent.com/api3dao/api3-docs/main/docs/.vuepress/config.js
for i in latestVersion latestOisVersion; do
path=$(grep $i: config.js | cut -d\' -f2);
echo "Renaming: $i --> $path";
sed -i "s@$i@$path@" .github/workflows/mlc_config.json;
done
- name: Check hyperlinks
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
Expand Down
15 changes: 1 addition & 14 deletions .github/workflows/mlc_config.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,5 @@
{
"replacementPatterns": [
{
"pattern": "/airnode/latest/",
"replacement": "latestVersion"
},
{
"pattern": "/beacon/latest/",
"replacement": "latestBeaconVersion"
},
{
"pattern": "/ois/latest/",
"replacement": "latestOisVersion"
}
],
"replacementPatterns": [],
"retryOn429": true,
"retryCount": 3,
"fallbackRetryDelay": "10s"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> OIS (or Oracle Integration Specifications) is a JSON object that describes an API specification
You can find the documentation for OIS in the [docs](https://docs.api3.org/ois/latest/).
You can find the documentation for OIS in the [docs](https://docs.api3.org/reference/ois/latest/).

## Installation

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
],
"scripts": {
"build": "yarn run clean && yarn run compile",
"clean": "rimraf -rf *.tsbuildinfo ./dist *.tgz",
"clean": "rimraf -g *.tsbuildinfo ./dist *.tgz",
"compile": "tsc --build tsconfig.json",
"lint:prettier:fix": "yarn prettier --write \"./**/*.{js,ts,md,yml}\"",
"lint:prettier": "yarn prettier --check \"./**/*.{js,ts,md,yml}\"",
Expand All @@ -24,17 +24,17 @@
},
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/lodash": "^4.14.191",
"@types/lodash": "^4.14.195",
"husky": "^8.0.3",
"jest": "^28.1.3",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
"typescript": "^5.0.4"
},
"dependencies": {
"lodash": "^4.17.21",
"zod": "^3.20.6"
"zod": "^3.21.4"
}
}
Loading

0 comments on commit 6d789d2

Please sign in to comment.