File tree 7 files changed +103
-103
lines changed
7 files changed +103
-103
lines changed Original file line number Diff line number Diff line change 38
38
"dependencies" : {
39
39
"@nasa-jpl/stellar" : " ^1.0.3" ,
40
40
"@sveltejs/adapter-node" : " 1.0.0-next.81" ,
41
- "@sveltejs/kit" : " 1.0.0-next.374 " ,
41
+ "@sveltejs/kit" : " 1.0.0-next.377 " ,
42
42
"bootstrap" : " ^5.1.3" ,
43
- "bootstrap-icons" : " ^1.9.0 " ,
43
+ "bootstrap-icons" : " ^1.9.1 " ,
44
44
"cookie" : " ^0.5.0" ,
45
45
"d3-axis" : " ^3.0.0" ,
46
46
"d3-brush" : " ^3.0.0" ,
62
62
"toastify-js" : " ^1.11.2"
63
63
},
64
64
"devDependencies" : {
65
- "@playwright/test" : " ^1.23.3 " ,
65
+ "@playwright/test" : " ^1.23.4 " ,
66
66
"@testing-library/svelte" : " ^3.1.3" ,
67
67
"@types/cookie" : " ^0.5.1" ,
68
68
"@types/d3-axis" : " ^3.0.1" ,
78
78
"@typescript-eslint/eslint-plugin" : " ^5.30.6" ,
79
79
"@typescript-eslint/parser" : " ^5.30.6" ,
80
80
"cloc" : " ^2.10.0" ,
81
- "eslint" : " ^8.19 .0" ,
81
+ "eslint" : " ^8.20 .0" ,
82
82
"eslint-config-prettier" : " ^8.5.0" ,
83
83
"eslint-plugin-svelte3" : " ^4.0.0" ,
84
84
"jsdom" : " ^20.0.0" ,
90
90
"tslib" : " ^2.4.0" ,
91
91
"typescript" : " ^4.7.4" ,
92
92
"unique-names-generator" : " ^4.7.1" ,
93
- "vite" : " ^3.0.0 " ,
94
- "vitest" : " ^0.18.0 "
93
+ "vite" : " ^3.0.2 " ,
94
+ "vitest" : " ^0.18.1 "
95
95
}
96
96
}
Original file line number Diff line number Diff line change 1
1
import type { RequestHandler } from '@sveltejs/kit' ;
2
2
import effects from '../../utilities/effects' ;
3
3
4
- export const post : RequestHandler = async event => {
4
+ export const POST : RequestHandler = async event => {
5
5
const body : LoginRequestBody = await event . request . json ( ) ;
6
6
const { password, username } = body ;
7
7
Original file line number Diff line number Diff line change 1
1
import type { RequestHandler } from '@sveltejs/kit' ;
2
2
import effects from '../../utilities/effects' ;
3
3
4
- export const post : RequestHandler = async event => {
4
+ export const POST : RequestHandler = async event => {
5
5
const { locals } = event ;
6
6
const { user } = locals ;
7
7
const { ssoToken = '' } = user ;
Original file line number Diff line number Diff line change 1
1
import { defaultEnv } from '../../stores/app' ;
2
2
3
- export async function get ( ) : Promise < { body : Env } > {
3
+ export async function GET ( ) : Promise < { body : Env } > {
4
4
const { env } = process ;
5
5
6
6
const AUTH_TYPE = env [ 'AUTH_TYPE' ] ?? defaultEnv . AUTH_TYPE ;
Original file line number Diff line number Diff line change 1
- export async function get ( ) : Promise < { body : { success : boolean } } > {
1
+ export async function GET ( ) : Promise < { body : { success : boolean } } > {
2
2
return {
3
3
body : {
4
4
success : true ,
You can’t perform that action at this time.
0 commit comments