@absolutejs/auth 0.45.9 → 0.46.1
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/cli/migrate.js +12 -4
- package/dist/cli/migrate.js.map +12 -12
- package/dist/client/index.js +17 -17
- package/dist/client/index.js.map +5 -5
- package/dist/client/react.js +17 -17
- package/dist/client/react.js.map +6 -6
- package/dist/client/solid.js +17 -17
- package/dist/client/solid.js.map +4 -4
- package/dist/client/svelte.js +17 -17
- package/dist/client/svelte.js.map +4 -4
- package/dist/client/vue.js +17 -17
- package/dist/client/vue.js.map +5 -5
- package/dist/fingerprint-client/index.js +5 -2
- package/dist/fingerprint-client/index.js.map +3 -3
- package/dist/htmx/index.js +2 -2
- package/dist/htmx/index.js.map +2 -2
- package/dist/index.d.ts +36 -15059
- package/dist/index.js +181 -120
- package/dist/index.js.map +39 -39
- package/dist/plugins/index.js.map +2 -2
- package/dist/providers/index.js +2 -2
- package/dist/providers/index.js.map +2 -2
- package/dist/types.d.ts +30 -22
- package/package.json +1 -1
package/dist/cli/migrate.js
CHANGED
|
@@ -408,7 +408,7 @@ import {
|
|
|
408
408
|
varchar as varchar6
|
|
409
409
|
} from "drizzle-orm/pg-core";
|
|
410
410
|
|
|
411
|
-
//
|
|
411
|
+
// node_modules/citra/dist/index.js
|
|
412
412
|
var NUM_GENERATOR_BYTES = 32;
|
|
413
413
|
var anilistProfileQuery = `query {
|
|
414
414
|
Viewer {
|
|
@@ -2498,7 +2498,9 @@ var oauthDeviceAuthorizationsTable = pgTable9("auth_oauth_device_authorizations"
|
|
|
2498
2498
|
length: ID_LENGTH7
|
|
2499
2499
|
}).primaryKey(),
|
|
2500
2500
|
expires_at_ms: bigint7("expires_at_ms", { mode: "number" }).notNull(),
|
|
2501
|
-
interval_seconds: bigint7("interval_seconds", {
|
|
2501
|
+
interval_seconds: bigint7("interval_seconds", {
|
|
2502
|
+
mode: "number"
|
|
2503
|
+
}).notNull(),
|
|
2502
2504
|
scopes: text5("scopes").array().notNull(),
|
|
2503
2505
|
status: varchar9("status", { length: 16 }).notNull(),
|
|
2504
2506
|
user_code: varchar9("user_code", { length: 16 }).notNull().unique(),
|
|
@@ -2748,7 +2750,13 @@ var vcPresentationRequestsTable = pgTable18("auth_vc_presentation_requests", {
|
|
|
2748
2750
|
|
|
2749
2751
|
// src/vault/postgresVaultStore.ts
|
|
2750
2752
|
import { and as and7, eq as eq19 } from "drizzle-orm";
|
|
2751
|
-
import {
|
|
2753
|
+
import {
|
|
2754
|
+
bigint as bigint17,
|
|
2755
|
+
pgTable as pgTable19,
|
|
2756
|
+
primaryKey as primaryKey4,
|
|
2757
|
+
text as text8,
|
|
2758
|
+
varchar as varchar19
|
|
2759
|
+
} from "drizzle-orm/pg-core";
|
|
2752
2760
|
var ID_LENGTH16 = 255;
|
|
2753
2761
|
var vaultEntriesTable = pgTable19("auth_vault_entries", {
|
|
2754
2762
|
created_at_ms: bigint17("created_at_ms", { mode: "number" }).notNull(),
|
|
@@ -3133,5 +3141,5 @@ var main = async () => {
|
|
|
3133
3141
|
};
|
|
3134
3142
|
await main();
|
|
3135
3143
|
|
|
3136
|
-
//# debugId=
|
|
3144
|
+
//# debugId=A939370FFB3E484364756E2164756E21
|
|
3137
3145
|
//# sourceMappingURL=migrate.js.map
|