Compare commits
8 Commits
0574a12f96
...
91a0e0cc46
| Author | SHA1 | Date |
|---|---|---|
|
|
91a0e0cc46 | |
|
|
c2fde4bdfd | |
|
|
6ca0bb06d4 | |
|
|
563cd3d92b | |
|
|
6a21775c90 | |
|
|
58dbafaa22 | |
|
|
2ee9321612 | |
|
|
9ad3fc3c50 |
|
|
@ -27,7 +27,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
deno-version: 1.x
|
deno-version: 1.x
|
||||||
|
|
||||||
- uses: pnpm/action-setup@v2
|
- uses: pnpm/action-setup@v4
|
||||||
with:
|
with:
|
||||||
version: 8.11.0
|
version: 8.11.0
|
||||||
|
|
||||||
|
|
|
||||||
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -1,3 +1,15 @@
|
||||||
|
## 0.4.20
|
||||||
|
|
||||||
|
fix: update `NSOAPP_VERSION`
|
||||||
|
|
||||||
|
## 0.4.19
|
||||||
|
|
||||||
|
feat: update `NSOAPP_VERSION`
|
||||||
|
|
||||||
|
## 0.4.18
|
||||||
|
|
||||||
|
feat: update `WEB_VIEW_VERSION` and `NSOAPP_VERSION`, update VersionData
|
||||||
|
|
||||||
## 0.4.17
|
## 0.4.17
|
||||||
|
|
||||||
feat: update `WEB_VIEW_VERSION` and `NSOAPP_VERSION`
|
feat: update `WEB_VIEW_VERSION` and `NSOAPP_VERSION`
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
},
|
},
|
||||||
"package": {
|
"package": {
|
||||||
"productName": "s3si-ts",
|
"productName": "s3si-ts",
|
||||||
"version": "0.4.17"
|
"version": "0.4.20"
|
||||||
},
|
},
|
||||||
"tauri": {
|
"tauri": {
|
||||||
"allowlist": {
|
"allowlist": {
|
||||||
|
|
|
||||||
|
|
@ -48,6 +48,48 @@ export const SEASONS: Season[] = [
|
||||||
start: new Date("2024-03-01T00:00:00+00:00"),
|
start: new Date("2024-03-01T00:00:00+00:00"),
|
||||||
end: new Date("2024-06-01T00:00:00+00:00"),
|
end: new Date("2024-06-01T00:00:00+00:00"),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: "season202406",
|
||||||
|
name: "Sizzle Season 2024",
|
||||||
|
start: new Date("2024-06-01T00:00:00+00:00"),
|
||||||
|
end: new Date("2024-09-01T00:00:00+00:00"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "season202409",
|
||||||
|
name: "Drizzle Season 2024",
|
||||||
|
start: new Date("2024-09-01T00:00:00+00:00"),
|
||||||
|
end: new Date("2024-12-01T00:00:00+00:00"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "season202412",
|
||||||
|
name: "Chill Season 2024",
|
||||||
|
start: new Date("2024-12-01T00:00:00+00:00"),
|
||||||
|
end: new Date("2025-03-01T00:00:00+00:00"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "season202503",
|
||||||
|
name: "Fresh Season 2025",
|
||||||
|
start: new Date("2025-03-01T00:00:00+00:00"),
|
||||||
|
end: new Date("2025-06-01T00:00:00+00:00"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "season202506",
|
||||||
|
name: "Sizzle Season 2025",
|
||||||
|
start: new Date("2025-06-01T00:00:00+00:00"),
|
||||||
|
end: new Date("2025-09-01T00:00:00+00:00"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "season202509",
|
||||||
|
name: "Drizzle Season 2025",
|
||||||
|
start: new Date("2025-09-01T00:00:00+00:00"),
|
||||||
|
end: new Date("2025-12-01T00:00:00+00:00"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "season202512",
|
||||||
|
name: "Chill Season 2025",
|
||||||
|
start: new Date("2025-12-01T00:00:00+00:00"),
|
||||||
|
end: new Date("2026-03-01T00:00:00+00:00"),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export const getSeason = (date: Date): Season | undefined => {
|
export const getSeason = (date: Date): Season | undefined => {
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
import type { StatInkPostBody, VsHistoryDetail } from "./types.ts";
|
import type { StatInkPostBody, VsHistoryDetail } from "./types.ts";
|
||||||
|
|
||||||
export const AGENT_NAME = "s3si.ts";
|
export const AGENT_NAME = "s3si.ts";
|
||||||
export const S3SI_VERSION = "0.4.17";
|
export const S3SI_VERSION = "0.4.20";
|
||||||
export const NSOAPP_VERSION = "2.10.0";
|
export const NSOAPP_VERSION = "2.10.1";
|
||||||
export const WEB_VIEW_VERSION = "6.0.0-2ba8cb04";
|
export const WEB_VIEW_VERSION = "6.0.0-9f87c815";
|
||||||
export enum Queries {
|
export enum Queries {
|
||||||
HomeQuery =
|
HomeQuery =
|
||||||
"51fc56bbf006caf37728914aa8bc0e2c86a80cf195b4d4027d6822a3623098a8",
|
"51fc56bbf006caf37728914aa8bc0e2c86a80cf195b4d4027d6822a3623098a8",
|
||||||
|
|
@ -20,17 +20,17 @@ export enum Queries {
|
||||||
PrivateBattleHistoriesQuery =
|
PrivateBattleHistoriesQuery =
|
||||||
"fef94f39b9eeac6b2fac4de43bc0442c16a9f2df95f4d367dd8a79d7c5ed5ce7",
|
"fef94f39b9eeac6b2fac4de43bc0442c16a9f2df95f4d367dd8a79d7c5ed5ce7",
|
||||||
VsHistoryDetailQuery =
|
VsHistoryDetailQuery =
|
||||||
"f893e1ddcfb8a4fd645fd75ced173f18b2750e5cfba41d2669b9814f6ceaec46",
|
"94faa2ff992222d11ced55e0f349920a82ac50f414ae33c83d1d1c9d8161c5dd",
|
||||||
CoopHistoryQuery =
|
CoopHistoryQuery =
|
||||||
"0f8c33970a425683bb1bdecca50a0ca4fb3c3641c0b2a1237aedfde9c0cb2b8f",
|
"e11a8cf2c3de7348495dea5cdcaa25e0c153541c4ed63f044b6c174bc5b703df",
|
||||||
CoopHistoryDetailQuery =
|
CoopHistoryDetailQuery =
|
||||||
"42262d241291d7324649e21413b29da88c0314387d8fdf5f6637a2d9d29954ae",
|
"f2d55873a9281213ae27edc171e2b19131b3021a2ae263757543cdd3bf015cc8",
|
||||||
myOutfitCommonDataFilteringConditionQuery =
|
myOutfitCommonDataFilteringConditionQuery =
|
||||||
"ac20c44a952131cb0c9d00eda7bc1a84c1a99546f0f1fc170212d5a6bb51a426",
|
"ac20c44a952131cb0c9d00eda7bc1a84c1a99546f0f1fc170212d5a6bb51a426",
|
||||||
myOutfitCommonDataEquipmentsQuery =
|
myOutfitCommonDataEquipmentsQuery =
|
||||||
"45a4c343d973864f7bb9e9efac404182be1d48cf2181619505e9b7cd3b56a6e8",
|
"45a4c343d973864f7bb9e9efac404182be1d48cf2181619505e9b7cd3b56a6e8",
|
||||||
HistoryRecordQuery =
|
HistoryRecordQuery =
|
||||||
"0a62c0152f27c4218cf6c87523377521c2cff76a4ef0373f2da3300079bf0388",
|
"a654ecc80161a7ca5c38761c1d9e502d405eae764e2d343618b9c74b1dc0a80f",
|
||||||
ConfigureAnalyticsQuery =
|
ConfigureAnalyticsQuery =
|
||||||
"2a9302bdd09a13f8b344642d4ed483b9464f20889ac17401e993dfa5c2bb3607",
|
"2a9302bdd09a13f8b344642d4ed483b9464f20889ac17401e993dfa5c2bb3607",
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -212,16 +212,18 @@ export async function getGToken(
|
||||||
);
|
);
|
||||||
const respJson = await resp.json();
|
const respJson = await resp.json();
|
||||||
|
|
||||||
const idToken2: string = respJson?.result?.webApiServerCredential
|
const idToken2: string | undefined = respJson?.result
|
||||||
|
?.webApiServerCredential
|
||||||
?.accessToken;
|
?.accessToken;
|
||||||
const coralUserId: string = respJson?.result?.user?.id?.toString();
|
const coralUserId: string | undefined = respJson?.result?.user?.id
|
||||||
|
?.toString();
|
||||||
|
|
||||||
if (!idToken2 || !coralUserId) {
|
if (!idToken2 || !coralUserId) {
|
||||||
throw new APIError({
|
throw new APIError({
|
||||||
response: resp,
|
response: resp,
|
||||||
json: respJson,
|
json: respJson,
|
||||||
message:
|
message:
|
||||||
`No idToken2 or coralUserId found. Please try again later. (${idToken2.length}, ${coralUserId.length})`,
|
`No idToken2 or coralUserId found. Please try again later. (${idToken2?.length}, ${coralUserId?.length})`,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue