File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,12 +42,12 @@ exports.__esModule = true;
42
42
exports . SolidNodeClient = void 0 ;
43
43
var solid_auth_fetcher_1 = require ( "solid-auth-fetcher" ) ;
44
44
var node_fetch_1 = __importDefault ( require ( "node-fetch" ) ) ;
45
- var rest_js_1 = __importDefault ( require ( "../../ solid-rest/src/rest.js " ) ) ;
45
+ var solid_rest_1 = __importDefault ( require ( "solid-rest" ) ) ;
46
46
var SolidNodeClient = /** @class */ ( function ( ) {
47
47
function SolidNodeClient ( options ) {
48
48
if ( options === void 0 ) { options = { } ; }
49
49
options = options || { } ;
50
- this . rest = options . rest || new rest_js_1 [ "default" ] ( options ) ;
50
+ this . rest = options . rest || new solid_rest_1 [ "default" ] ( options ) ;
51
51
this . session = options . session || new NodeNoAuthSession ( { rest : this . rest } ) ;
52
52
this . debug = false ;
53
53
return this ;
Original file line number Diff line number Diff line change 1
1
import { getSession , getNodeSolidServerCookie , getAuthFetcher }
2
2
from "solid-auth-fetcher" ;
3
3
import fetch from "node-fetch" ;
4
- import SolidRest from "../../ solid-rest/src/rest.js " ;
4
+ import SolidRest from "solid-rest" ;
5
5
6
6
export class SolidNodeClient {
7
7
rest ?:any ;
You can’t perform that action at this time.
0 commit comments