Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

Commit

Permalink
fix(types): cookie templete string typo
Browse files Browse the repository at this point in the history
  • Loading branch information
beetcb committed May 24, 2021
1 parent 9fe65a5 commit 1a54c5c
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .npmignore

This file was deleted.

Empty file removed core/__test__/t.test.ts
Empty file.
2 changes: 1 addition & 1 deletion core/src/types/cookie.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export type CookieMap = Map<string, Array<[string, string]>>

export type CookieRawObject = {
[key in `${'campusphere::' | 'swms::'}${string}`]: string
[key in `campusphere::/${string}` | `swms::/${string}`]: string
}

export interface FetchCookieOptions {
Expand Down
2 changes: 1 addition & 1 deletion plugins/check-in/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export async function checkIn() {
// Log out sign in result
console.table(logs)
}
checkIn()

async function signIn(users: UsersConf): Promise<GlobalLogInfo> {
const logs: GlobalLogInfo = {}
// sign in asynchronizedly with promise all and diff instance of signApp class
Expand Down

0 comments on commit 1a54c5c

Please sign in to comment.