wcz-test 6.5.1 → 6.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunk-O7U2PUIW.js +16 -0
- package/dist/chunk-O7U2PUIW.js.map +1 -0
- package/dist/client-utils.d.ts +1 -3
- package/dist/hooks.d.ts +1 -3
- package/dist/index.d.ts +1 -3
- package/dist/server-utils.js +4 -11
- package/dist/server-utils.js.map +1 -1
- package/dist/{utils-ChipkRJ9.d.ts → utils-DLRiZ02r.d.ts} +0 -2
- package/dist/utils.d.ts +37 -1
- package/dist/utils.js +83 -1
- package/dist/utils.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import {
|
|
2
|
+
serverEnv
|
|
3
|
+
} from "./chunk-MZYWQKGY.js";
|
|
4
|
+
|
|
5
|
+
// src/lib/db/index.ts
|
|
6
|
+
import { drizzle } from "drizzle-orm/node-postgres";
|
|
7
|
+
import { Pool } from "pg";
|
|
8
|
+
var pool = new Pool({
|
|
9
|
+
connectionString: serverEnv.DATABASE_URL
|
|
10
|
+
});
|
|
11
|
+
var db = drizzle(pool);
|
|
12
|
+
|
|
13
|
+
export {
|
|
14
|
+
db
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=chunk-O7U2PUIW.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/lib/db/index.ts"],"sourcesContent":["import { drizzle } from \"drizzle-orm/node-postgres\";\r\nimport { Pool } from \"pg\";\r\nimport { serverEnv } from \"~/env\";\r\n\r\nconst pool: Pool = new Pool({\r\n connectionString: serverEnv.DATABASE_URL,\r\n});\r\n\r\nexport const db = drizzle(pool);"],"mappings":";;;;;AAAA,SAAS,eAAe;AACxB,SAAS,YAAY;AAGrB,IAAM,OAAa,IAAI,KAAK;AAAA,EACxB,kBAAkB,UAAU;AAChC,CAAC;AAEM,IAAM,KAAK,QAAQ,IAAI;","names":[]}
|
package/dist/client-utils.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { P as Platform } from './utils-
|
|
1
|
+
export { P as Platform } from './utils-DLRiZ02r.js';
|
|
2
2
|
export { default as i18n, t } from 'i18next';
|
|
3
3
|
export { initReactI18next, useTranslation } from 'react-i18next';
|
|
4
4
|
export { default as LanguageDetector } from 'i18next-browser-languagedetector';
|
|
@@ -7,8 +7,6 @@ import * as node_modules_better_auth_dist_shared_better_auth_BNARIIb2 from 'node
|
|
|
7
7
|
import * as node_modules_better_auth_dist_shared_better_auth_DNnBkMGu from 'node_modules/better-auth/dist/shared/better-auth.DNnBkMGu';
|
|
8
8
|
import * as _better_fetch_fetch from '@better-fetch/fetch';
|
|
9
9
|
import 'axios';
|
|
10
|
-
import 'uuidv7';
|
|
11
|
-
import '@t3-oss/env-core';
|
|
12
10
|
|
|
13
11
|
declare const WISTRON_PRIMARY_COLOR = "#00506E";
|
|
14
12
|
declare const WISTRON_SECONDARY_COLOR = "#64DC00";
|
package/dist/hooks.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ButtonProps, TextFieldProps, SliderProps, RadioGroupProps, SwitchProps, CheckboxProps, AutocompleteProps } from '@mui/material';
|
|
2
2
|
import { DateTimePickerProps, DatePickerProps } from '@mui/x-date-pickers-pro';
|
|
3
|
-
import { F as FormOmittedProps } from './utils-
|
|
3
|
+
import { F as FormOmittedProps } from './utils-DLRiZ02r.js';
|
|
4
4
|
import { NumericFormatProps, InputAttributes } from 'react-number-format/types/types';
|
|
5
5
|
import * as _tanstack_react_form from '@tanstack/react-form';
|
|
6
6
|
import * as react from 'react';
|
|
@@ -8,8 +8,6 @@ import { ReactNode } from 'react';
|
|
|
8
8
|
import * as _tanstack_form_core from '@tanstack/form-core';
|
|
9
9
|
export { useInView } from 'react-intersection-observer';
|
|
10
10
|
import 'axios';
|
|
11
|
-
import 'uuidv7';
|
|
12
|
-
import '@t3-oss/env-core';
|
|
13
11
|
|
|
14
12
|
type FormSubmitButtonProps = Omit<ButtonProps, "loading" | "disabled" | "onClick" | "type">;
|
|
15
13
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { LinkOptions } from '@tanstack/react-router';
|
|
2
2
|
import { FC, ReactNode } from 'react';
|
|
3
3
|
import { CssVarsThemeOptions } from '@mui/material';
|
|
4
|
-
export { r as rootRouteHead } from './utils-
|
|
4
|
+
export { r as rootRouteHead } from './utils-DLRiZ02r.js';
|
|
5
5
|
import 'axios';
|
|
6
|
-
import 'uuidv7';
|
|
7
|
-
import '@t3-oss/env-core';
|
|
8
6
|
|
|
9
7
|
interface NavigationPageItem extends Partial<Pick<LinkOptions, "to" | "href" | "params" | "search">> {
|
|
10
8
|
title: string;
|
package/dist/server-utils.js
CHANGED
|
@@ -1,20 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
|
-
|
|
3
|
-
} from "./chunk-
|
|
2
|
+
db
|
|
3
|
+
} from "./chunk-O7U2PUIW.js";
|
|
4
|
+
import "./chunk-MZYWQKGY.js";
|
|
4
5
|
import "./chunk-5WRI5ZAA.js";
|
|
5
6
|
|
|
6
7
|
// src/server-utils.ts
|
|
7
|
-
import { Pool as Pool2 } from "pg";
|
|
8
|
-
|
|
9
|
-
// src/lib/db/index.ts
|
|
10
|
-
import { drizzle } from "drizzle-orm/node-postgres";
|
|
11
8
|
import { Pool } from "pg";
|
|
12
|
-
var pool = new Pool({
|
|
13
|
-
connectionString: serverEnv.DATABASE_URL
|
|
14
|
-
});
|
|
15
|
-
var db = drizzle(pool);
|
|
16
9
|
export {
|
|
17
|
-
|
|
10
|
+
Pool,
|
|
18
11
|
db
|
|
19
12
|
};
|
|
20
13
|
//# sourceMappingURL=server-utils.js.map
|
package/dist/server-utils.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/server-utils.ts"
|
|
1
|
+
{"version":3,"sources":["../src/server-utils.ts"],"sourcesContent":["// PostgreSQL\r\nexport { Pool } from \"pg\";\r\n\r\n// Database\r\nexport { db } from \"./lib/db/index\";\r\n\r\n"],"mappings":";;;;;;;AACA,SAAS,YAAY;","names":[]}
|
package/dist/utils.d.ts
CHANGED
|
@@ -1,4 +1,40 @@
|
|
|
1
|
-
export { h as httpClient } from './utils-
|
|
1
|
+
export { h as httpClient } from './utils-DLRiZ02r.js';
|
|
2
2
|
export { uuidv7 } from 'uuidv7';
|
|
3
3
|
export { createEnv } from '@t3-oss/env-core';
|
|
4
|
+
import * as better_call from 'better-call';
|
|
5
|
+
import * as better_auth_adapters from 'better-auth/adapters';
|
|
6
|
+
import * as better_auth from 'better-auth';
|
|
4
7
|
import 'axios';
|
|
8
|
+
|
|
9
|
+
declare const auth: better_auth.Auth<{
|
|
10
|
+
database: (options: better_auth.BetterAuthOptions) => better_auth_adapters.DBAdapter<better_auth.BetterAuthOptions>;
|
|
11
|
+
session: {
|
|
12
|
+
cookieCache: {
|
|
13
|
+
enabled: true;
|
|
14
|
+
maxAge: number;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
socialProviders: {
|
|
18
|
+
microsoft: {
|
|
19
|
+
clientId: string;
|
|
20
|
+
clientSecret: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
plugins: [{
|
|
24
|
+
id: "react-start-cookies";
|
|
25
|
+
hooks: {
|
|
26
|
+
after: {
|
|
27
|
+
matcher(ctx: better_call.EndpointContext<string, any> & Omit<better_call.InputContext<string, any>, "method"> & {
|
|
28
|
+
context: better_auth.AuthContext & {
|
|
29
|
+
returned?: unknown;
|
|
30
|
+
responseHeaders?: Headers;
|
|
31
|
+
};
|
|
32
|
+
headers?: Headers;
|
|
33
|
+
}): true;
|
|
34
|
+
handler: (inputContext: better_call.MiddlewareInputContext<better_call.MiddlewareOptions>) => Promise<void>;
|
|
35
|
+
}[];
|
|
36
|
+
};
|
|
37
|
+
}];
|
|
38
|
+
}>;
|
|
39
|
+
|
|
40
|
+
export { auth };
|
package/dist/utils.js
CHANGED
|
@@ -1,13 +1,95 @@
|
|
|
1
1
|
import {
|
|
2
2
|
httpClient
|
|
3
3
|
} from "./chunk-T723TJ46.js";
|
|
4
|
-
import
|
|
4
|
+
import {
|
|
5
|
+
db
|
|
6
|
+
} from "./chunk-O7U2PUIW.js";
|
|
7
|
+
import {
|
|
8
|
+
serverEnv
|
|
9
|
+
} from "./chunk-MZYWQKGY.js";
|
|
5
10
|
import "./chunk-5WRI5ZAA.js";
|
|
6
11
|
|
|
7
12
|
// src/utils.ts
|
|
8
13
|
import { uuidv7 } from "uuidv7";
|
|
9
14
|
import { createEnv } from "@t3-oss/env-core";
|
|
15
|
+
|
|
16
|
+
// src/lib/auth/auth.ts
|
|
17
|
+
import { betterAuth } from "better-auth";
|
|
18
|
+
import { drizzleAdapter } from "better-auth/adapters/drizzle";
|
|
19
|
+
import { reactStartCookies } from "better-auth/react-start";
|
|
20
|
+
|
|
21
|
+
// src/lib/db/schema/auth.ts
|
|
22
|
+
import { boolean, pgTable, text, timestamp } from "drizzle-orm/pg-core";
|
|
23
|
+
var user = pgTable("user", {
|
|
24
|
+
id: text("id").primaryKey(),
|
|
25
|
+
name: text("name").notNull(),
|
|
26
|
+
email: text("email").notNull().unique(),
|
|
27
|
+
emailVerified: boolean("email_verified").default(false).notNull(),
|
|
28
|
+
image: text("image"),
|
|
29
|
+
createdAt: timestamp("created_at").defaultNow().notNull(),
|
|
30
|
+
updatedAt: timestamp("updated_at").defaultNow().$onUpdate(() => /* @__PURE__ */ new Date()).notNull()
|
|
31
|
+
});
|
|
32
|
+
var session = pgTable("session", {
|
|
33
|
+
id: text("id").primaryKey(),
|
|
34
|
+
expiresAt: timestamp("expires_at").notNull(),
|
|
35
|
+
token: text("token").notNull().unique(),
|
|
36
|
+
createdAt: timestamp("created_at").defaultNow().notNull(),
|
|
37
|
+
updatedAt: timestamp("updated_at").$onUpdate(() => /* @__PURE__ */ new Date()).notNull(),
|
|
38
|
+
ipAddress: text("ip_address"),
|
|
39
|
+
userAgent: text("user_agent"),
|
|
40
|
+
userId: text("user_id").notNull().references(() => user.id, { onDelete: "cascade" })
|
|
41
|
+
});
|
|
42
|
+
var account = pgTable("account", {
|
|
43
|
+
id: text("id").primaryKey(),
|
|
44
|
+
accountId: text("account_id").notNull(),
|
|
45
|
+
providerId: text("provider_id").notNull(),
|
|
46
|
+
userId: text("user_id").notNull().references(() => user.id, { onDelete: "cascade" }),
|
|
47
|
+
accessToken: text("access_token"),
|
|
48
|
+
refreshToken: text("refresh_token"),
|
|
49
|
+
idToken: text("id_token"),
|
|
50
|
+
accessTokenExpiresAt: timestamp("access_token_expires_at"),
|
|
51
|
+
refreshTokenExpiresAt: timestamp("refresh_token_expires_at"),
|
|
52
|
+
scope: text("scope"),
|
|
53
|
+
password: text("password"),
|
|
54
|
+
createdAt: timestamp("created_at").defaultNow().notNull(),
|
|
55
|
+
updatedAt: timestamp("updated_at").$onUpdate(() => /* @__PURE__ */ new Date()).notNull()
|
|
56
|
+
});
|
|
57
|
+
var verification = pgTable("verification", {
|
|
58
|
+
id: text("id").primaryKey(),
|
|
59
|
+
identifier: text("identifier").notNull(),
|
|
60
|
+
value: text("value").notNull(),
|
|
61
|
+
expiresAt: timestamp("expires_at").notNull(),
|
|
62
|
+
createdAt: timestamp("created_at").defaultNow().notNull(),
|
|
63
|
+
updatedAt: timestamp("updated_at").defaultNow().$onUpdate(() => /* @__PURE__ */ new Date()).notNull()
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
// src/lib/auth/auth.ts
|
|
67
|
+
var auth = betterAuth({
|
|
68
|
+
database: drizzleAdapter(db, {
|
|
69
|
+
provider: "pg",
|
|
70
|
+
schema: {
|
|
71
|
+
user,
|
|
72
|
+
session,
|
|
73
|
+
account,
|
|
74
|
+
verification
|
|
75
|
+
}
|
|
76
|
+
}),
|
|
77
|
+
session: {
|
|
78
|
+
cookieCache: {
|
|
79
|
+
enabled: true,
|
|
80
|
+
maxAge: 5 * 60
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
socialProviders: {
|
|
84
|
+
microsoft: {
|
|
85
|
+
clientId: serverEnv.MICROSOFT_CLIENT_ID,
|
|
86
|
+
clientSecret: serverEnv.MICROSOFT_CLIENT_SECRET
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
plugins: [reactStartCookies()]
|
|
90
|
+
});
|
|
10
91
|
export {
|
|
92
|
+
auth,
|
|
11
93
|
createEnv,
|
|
12
94
|
httpClient,
|
|
13
95
|
uuidv7
|
package/dist/utils.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/utils.ts"],"sourcesContent":["export { httpClient } from \"./lib/utils\";\r\nexport { uuidv7 } from \"uuidv7\";\r\nexport { createEnv } from \"@t3-oss/env-core\";\r\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/utils.ts","../src/lib/auth/auth.ts","../src/lib/db/schema/auth.ts"],"sourcesContent":["export { httpClient } from \"./lib/utils\";\r\nexport { uuidv7 } from \"uuidv7\";\r\nexport { createEnv } from \"@t3-oss/env-core\";\r\nexport { auth } from \"./lib/auth/auth\";\r\n","import { betterAuth } from \"better-auth\";\r\nimport { drizzleAdapter } from \"better-auth/adapters/drizzle\";\r\nimport { reactStartCookies } from \"better-auth/react-start\";\r\nimport { db } from \"../db\";\r\nimport { account, session, user, verification } from \"../db/schema/auth\";\r\nimport { serverEnv } from \"~/env\";\r\n\r\nexport const auth = betterAuth({\r\n database: drizzleAdapter(db, {\r\n provider: \"pg\",\r\n schema: {\r\n user,\r\n session,\r\n account,\r\n verification\r\n }\r\n }),\r\n session: {\r\n cookieCache: {\r\n enabled: true,\r\n maxAge: 5 * 60,\r\n },\r\n },\r\n socialProviders: {\r\n microsoft: {\r\n clientId: serverEnv.MICROSOFT_CLIENT_ID,\r\n clientSecret: serverEnv.MICROSOFT_CLIENT_SECRET\r\n }\r\n },\r\n plugins: [reactStartCookies()]\r\n});\r\n","import { boolean, pgTable, text, timestamp } from \"drizzle-orm/pg-core\";\n\nexport const user = pgTable(\"user\", {\n id: text(\"id\").primaryKey(),\n name: text(\"name\").notNull(),\n email: text(\"email\").notNull().unique(),\n emailVerified: boolean(\"email_verified\").default(false).notNull(),\n image: text(\"image\"),\n createdAt: timestamp(\"created_at\").defaultNow().notNull(),\n updatedAt: timestamp(\"updated_at\")\n .defaultNow()\n .$onUpdate(() => /* @__PURE__ */ new Date())\n .notNull(),\n});\n\nexport const session = pgTable(\"session\", {\n id: text(\"id\").primaryKey(),\n expiresAt: timestamp(\"expires_at\").notNull(),\n token: text(\"token\").notNull().unique(),\n createdAt: timestamp(\"created_at\").defaultNow().notNull(),\n updatedAt: timestamp(\"updated_at\")\n .$onUpdate(() => /* @__PURE__ */ new Date())\n .notNull(),\n ipAddress: text(\"ip_address\"),\n userAgent: text(\"user_agent\"),\n userId: text(\"user_id\")\n .notNull()\n .references(() => user.id, { onDelete: \"cascade\" }),\n});\n\nexport const account = pgTable(\"account\", {\n id: text(\"id\").primaryKey(),\n accountId: text(\"account_id\").notNull(),\n providerId: text(\"provider_id\").notNull(),\n userId: text(\"user_id\")\n .notNull()\n .references(() => user.id, { onDelete: \"cascade\" }),\n accessToken: text(\"access_token\"),\n refreshToken: text(\"refresh_token\"),\n idToken: text(\"id_token\"),\n accessTokenExpiresAt: timestamp(\"access_token_expires_at\"),\n refreshTokenExpiresAt: timestamp(\"refresh_token_expires_at\"),\n scope: text(\"scope\"),\n password: text(\"password\"),\n createdAt: timestamp(\"created_at\").defaultNow().notNull(),\n updatedAt: timestamp(\"updated_at\")\n .$onUpdate(() => /* @__PURE__ */ new Date())\n .notNull(),\n});\n\nexport const verification = pgTable(\"verification\", {\n id: text(\"id\").primaryKey(),\n identifier: text(\"identifier\").notNull(),\n value: text(\"value\").notNull(),\n expiresAt: timestamp(\"expires_at\").notNull(),\n createdAt: timestamp(\"created_at\").defaultNow().notNull(),\n updatedAt: timestamp(\"updated_at\")\n .defaultNow()\n .$onUpdate(() => /* @__PURE__ */ new Date())\n .notNull(),\n});\n"],"mappings":"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","names":[]}
|