Skip to content

Commit

Permalink
Update typescript from 5.6.3 to 5.7.2
Browse files Browse the repository at this point in the history
Change-type: patch
  • Loading branch information
otaviojacobi committed Dec 3, 2024
1 parent 1d329b4 commit a033b67
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript": "^5.7.2",
"webpack": "^5.95.0",
"webpack-dev-server": "^5.0.0"
},
Expand Down
6 changes: 4 additions & 2 deletions src/sbvr-api/permissions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ import {
} from './uri-parser';
import memoizeWeak = require('memoizee/weak');
import type { Config } from '../config-loader/config-loader';
import type { ODataOptions } from 'pinejs-client-core';
import type { Permission } from './user';

// eslint-disable-next-line @typescript-eslint/no-var-requires
const userModel: string = require('./user.sbvr');
Expand Down Expand Up @@ -1309,7 +1311,7 @@ const $getUserPermissions = (() => {
$orderby: {
name: 'asc',
},
},
} as const,
},
{ userId: ['number'] },
),
Expand Down Expand Up @@ -1443,7 +1445,7 @@ const $getApiKeyPermissions = (() => {
$orderby: {
name: 'asc',
},
},
} as const satisfies ODataOptions<Permission['Read']>,
},
{ apiKey: ['string'] },
),
Expand Down

0 comments on commit a033b67

Please sign in to comment.