@absolutejs/auth 0.45.7 → 0.45.9
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 +4 -12
- 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 +2 -5
- 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 +3 -0
- package/dist/index.js +276 -166
- package/dist/index.js.map +40 -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/sso/config.d.ts +7 -0
- package/dist/sso/nodeSamlAdapter.d.ts +7 -0
- package/dist/sso/samlRoutes.d.ts +2 -0
- package/package.json +10 -4
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
|
-
// node_modules/citra/dist/index.js
|
|
411
|
+
// ../../home/alexkahn/abs/auth/node_modules/citra/dist/index.js
|
|
412
412
|
var NUM_GENERATOR_BYTES = 32;
|
|
413
413
|
var anilistProfileQuery = `query {
|
|
414
414
|
Viewer {
|
|
@@ -2498,9 +2498,7 @@ 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", {
|
|
2502
|
-
mode: "number"
|
|
2503
|
-
}).notNull(),
|
|
2501
|
+
interval_seconds: bigint7("interval_seconds", { mode: "number" }).notNull(),
|
|
2504
2502
|
scopes: text5("scopes").array().notNull(),
|
|
2505
2503
|
status: varchar9("status", { length: 16 }).notNull(),
|
|
2506
2504
|
user_code: varchar9("user_code", { length: 16 }).notNull().unique(),
|
|
@@ -2750,13 +2748,7 @@ var vcPresentationRequestsTable = pgTable18("auth_vc_presentation_requests", {
|
|
|
2750
2748
|
|
|
2751
2749
|
// src/vault/postgresVaultStore.ts
|
|
2752
2750
|
import { and as and7, eq as eq19 } from "drizzle-orm";
|
|
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";
|
|
2751
|
+
import { bigint as bigint17, pgTable as pgTable19, primaryKey as primaryKey4, text as text8, varchar as varchar19 } from "drizzle-orm/pg-core";
|
|
2760
2752
|
var ID_LENGTH16 = 255;
|
|
2761
2753
|
var vaultEntriesTable = pgTable19("auth_vault_entries", {
|
|
2762
2754
|
created_at_ms: bigint17("created_at_ms", { mode: "number" }).notNull(),
|
|
@@ -3141,5 +3133,5 @@ var main = async () => {
|
|
|
3141
3133
|
};
|
|
3142
3134
|
await main();
|
|
3143
3135
|
|
|
3144
|
-
//# debugId=
|
|
3136
|
+
//# debugId=2544288E2F55F15F64756E2164756E21
|
|
3145
3137
|
//# sourceMappingURL=migrate.js.map
|