Skip to content

Commit

Permalink
[add] Create & Update method of BI Table model (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
TechQuery authored Jul 24, 2023
1 parent ac7fcfd commit 3ce3243
Show file tree
Hide file tree
Showing 7 changed files with 1,395 additions and 882 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 18
registry-url: https://registry.npmjs.org
cache: pnpm
- name: Install Dependencies
Expand All @@ -29,6 +30,7 @@ jobs:
BITABLE_ID: ${{ secrets.BITABLE_ID }}
BITABLE_TABLE_ID: ${{ secrets.BITABLE_TABLE_ID }}
MEDIA_ID: ${{ secrets.MEDIA_ID }}

- name: Deploy document
uses: peaceiris/actions-gh-pages@v3
with:
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobx-lark",
"version": "1.0.0-beta.0",
"version": "1.0.0-rc.0",
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"description": "Unofficial TypeScript SDK for FeiShu/Lark API, which is based on MobX-RESTful.",
Expand All @@ -27,28 +27,28 @@
},
"dependencies": {
"@swc/helpers": "^0.4.14",
"koajax": "^0.8.3",
"mobx-restful": "^0.6.0",
"node-fetch": "^2.6.8",
"koajax": "^0.8.4",
"mobx-restful": "^0.6.5",
"node-fetch": "^2.6.12",
"regenerator-runtime": "^0.13.11",
"web-utility": "^4.0.0"
"web-utility": "^4.0.1"
},
"peerDependencies": {
"mobx": ">=4 <6"
},
"devDependencies": {
"@types/node": "^16.18.11",
"@types/node-fetch": "^2.6.2",
"dotenv": "^16.0.3",
"@types/node": "^18.17.0",
"@types/node-fetch": "^2.6.4",
"dotenv": "^16.3.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"lint-staged": "^13.2.3",
"mobx": "^5.15.7",
"parcel": "~2.8.3",
"prettier": "^2.8.3",
"parcel": "~2.6.2",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typedoc": "^0.23.24",
"typedoc-plugin-mdn-links": "^2.0.2",
"typescript": "~4.9.4"
"typedoc": "^0.24.8",
"typedoc-plugin-mdn-links": "^3.0.3",
"typescript": "~5.1.6"
},
"prettier": {
"singleQuote": true,
Expand Down
Loading

0 comments on commit 3ce3243

Please sign in to comment.