Skip to content

Commit

Permalink
fix: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
neet committed Mar 25, 2021
1 parent c928200 commit 4a6733f
Show file tree
Hide file tree
Showing 5 changed files with 347 additions and 344 deletions.
3 changes: 1 addition & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"plugin:prettier/recommended",
"prettier/@typescript-eslint"
"plugin:prettier/recommended"
],
"plugins": ["import", "simple-import-sort"],
"parserOptions": {
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
strategy:
matrix:
node-version: [14]
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN}}

steps:
- uses: actions/checkout@v2
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,37 +26,37 @@
"isomorphic-form-data": "^2.0.0",
"isomorphic-ws": "^4.0.1",
"normalize-url": "^5.3.0",
"semver": "^7.3.4",
"ws": "^7.4.3"
"semver": "^7.3.5",
"ws": "^7.4.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"codecov": "^3.8.1",
"cspell": "^4.2.5",
"eslint": "^7.21.0",
"eslint-config-prettier": "^7.2.0",
"cspell": "^5.3.9",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rollup": "^2.40.0",
"rollup": "^2.42.4",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-typescript2": "^0.30.0",
"rxjs": "^6.6.6",
"semantic-release": "^17.4.2",
"ts-jest": "^26.5.2",
"typedoc": "^0.20.28",
"ts-jest": "^26.5.4",
"typedoc": "^0.20.34",
"typescript": "^4.2.3"
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/repositories/status-repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface CreateStatusParamsBase {
readonly spoilerText?: string | null;
/** Visibility of the posted status. Enumerable oneOf public, unlisted, private, direct. */
readonly visibility?: StatusVisibility | null;
/** ISO 8601 Date-time at which to schedule a status. Providing this paramter will cause ScheduledStatus to be returned instead of Status. Must be at least 5 minutes in the future. */
/** ISO 8601 Date-time at which to schedule a status. Providing this parameter will cause ScheduledStatus to be returned instead of Status. Must be at least 5 minutes in the future. */
readonly scheduledAt?: string | null;
/** ISO 639 language code for this status. */
readonly language?: string | null;
Expand Down

0 comments on commit 4a6733f

Please sign in to comment.