@absolutejs/auth 0.76.0 → 0.76.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/agents/index.js +233 -70
- package/dist/agents/index.js.map +2 -2
- package/dist/cli/migrate.js.map +2 -2
- package/dist/client/index.js +24 -22
- package/dist/client/index.js.map +2 -2
- package/dist/client/mobile.js +12 -10
- package/dist/client/mobile.js.map +2 -2
- package/dist/client/react.js +20 -18
- package/dist/client/react.js.map +2 -2
- package/dist/client/solid.js +17 -15
- package/dist/client/solid.js.map +2 -2
- package/dist/client/svelte.js +17 -15
- package/dist/client/svelte.js.map +2 -2
- package/dist/client/vue.js +17 -15
- package/dist/client/vue.js.map +2 -2
- package/dist/htmx/index.js +11 -9
- package/dist/htmx/index.js.map +2 -2
- package/dist/index.js +961 -798
- package/dist/index.js.map +3 -3
- package/dist/linkedProviders/index.js +11 -9
- package/dist/linkedProviders/index.js.map +2 -2
- package/dist/manifest.js +255 -253
- package/dist/manifest.js.map +2 -2
- package/dist/oidc/index.js +214 -51
- package/dist/oidc/index.js.map +3 -3
- package/dist/plugins/index.js +14 -12
- package/dist/plugins/index.js.map +2 -2
- package/dist/providers/index.js +24 -22
- package/dist/providers/index.js.map +2 -2
- package/dist/saml.js +10 -8
- package/dist/saml.js.map +2 -2
- package/dist/server.js +453 -290
- package/dist/server.js.map +3 -3
- package/dist/vault/index.js +190 -27
- package/dist/vault/index.js.map +2 -2
- package/dist/webauthn.js +10 -8
- package/dist/webauthn.js.map +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -19,12 +19,14 @@ var __toESM = (mod, isNodeMode, target) => {
|
|
|
19
19
|
}
|
|
20
20
|
target = mod != null ? __create(__getProtoOf(mod)) : {};
|
|
21
21
|
const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
if (mod && typeof mod === "object" || typeof mod === "function") {
|
|
23
|
+
for (let key of __getOwnPropNames(mod))
|
|
24
|
+
if (!__hasOwnProp.call(to, key))
|
|
25
|
+
__defProp(to, key, {
|
|
26
|
+
get: __accessProp.bind(mod, key),
|
|
27
|
+
enumerable: true
|
|
28
|
+
});
|
|
29
|
+
}
|
|
28
30
|
if (canCache)
|
|
29
31
|
cache.set(mod, to);
|
|
30
32
|
return to;
|
|
@@ -58,20 +60,20 @@ var init_constants = __esm(() => {
|
|
|
58
60
|
// src/crypto.ts
|
|
59
61
|
var exports_crypto = {};
|
|
60
62
|
__export(exports_crypto, {
|
|
61
|
-
|
|
62
|
-
verifyPassword: () => verifyPassword,
|
|
63
|
-
hashToken: () => hashToken,
|
|
64
|
-
hashPassword: () => hashPassword,
|
|
65
|
-
generateTotpSecret: () => generateTotpSecret,
|
|
66
|
-
generateTotp: () => generateTotp,
|
|
67
|
-
generateSecureToken: () => generateSecureToken,
|
|
68
|
-
generateEncryptionKey: () => generateEncryptionKey,
|
|
69
|
-
encryptSecret: () => encryptSecret,
|
|
70
|
-
decryptSecret: () => decryptSecret,
|
|
71
|
-
createTotpKeyUri: () => createTotpKeyUri,
|
|
72
|
-
constantTimeEqual: () => constantTimeEqual,
|
|
63
|
+
base32Decode: () => base32Decode,
|
|
73
64
|
base32Encode: () => base32Encode,
|
|
74
|
-
|
|
65
|
+
constantTimeEqual: () => constantTimeEqual,
|
|
66
|
+
createTotpKeyUri: () => createTotpKeyUri,
|
|
67
|
+
decryptSecret: () => decryptSecret,
|
|
68
|
+
encryptSecret: () => encryptSecret,
|
|
69
|
+
generateEncryptionKey: () => generateEncryptionKey,
|
|
70
|
+
generateSecureToken: () => generateSecureToken,
|
|
71
|
+
generateTotp: () => generateTotp,
|
|
72
|
+
generateTotpSecret: () => generateTotpSecret,
|
|
73
|
+
hashPassword: () => hashPassword,
|
|
74
|
+
hashToken: () => hashToken,
|
|
75
|
+
verifyPassword: () => verifyPassword,
|
|
76
|
+
verifyTotp: () => verifyTotp
|
|
75
77
|
});
|
|
76
78
|
var DEFAULT_TOKEN_BYTES = 32, AES_KEY_BYTES = 32, AES_IV_BYTES = 12, HOTP_COUNTER_BYTES = 8, TOTP_SECRET_BYTES = 20, TOTP_DIGITS = 6, TOTP_PERIOD_SECONDS = 30, DEFAULT_TOTP_WINDOW = 1, DECIMAL_RADIX = 10, LAST_NIBBLE_MASK = 15, SIGN_BIT_MASK = 2147483647, BASE32_ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567", BASE32_GROUP_BITS = 5, BASE32_MASK = 31, BYTE_BITS = 8, textEncoder, textDecoder, base64UrlEncode = (bytes) => Buffer.from(bytes).toString("base64url"), base64UrlDecode = (encoded) => new Uint8Array(Buffer.from(encoded, "base64url")), sha256 = async (input) => {
|
|
77
79
|
const digest = await crypto.subtle.digest("SHA-256", textEncoder.encode(input));
|
|
@@ -13988,6 +13990,9 @@ var tracer = { startActiveSpan(name, fn) {
|
|
|
13988
13990
|
var ViewBaseConfig = Symbol.for("drizzle:ViewBaseConfig");
|
|
13989
13991
|
|
|
13990
13992
|
// node_modules/drizzle-orm/sql/sql.js
|
|
13993
|
+
var FakePrimitiveParam = class {
|
|
13994
|
+
static [entityKind] = "FakePrimitiveParam";
|
|
13995
|
+
};
|
|
13991
13996
|
function isSQLWrapper(value) {
|
|
13992
13997
|
return value !== null && value !== undefined && typeof value.getSQL === "function";
|
|
13993
13998
|
}
|
|
@@ -17665,6 +17670,16 @@ var UniqueConstraintBuilder = class {
|
|
|
17665
17670
|
return new UniqueConstraint(table, this.columns, this.nullsNotDistinctConfig, this.name);
|
|
17666
17671
|
}
|
|
17667
17672
|
};
|
|
17673
|
+
var UniqueOnConstraintBuilder = class {
|
|
17674
|
+
static [entityKind] = "PgUniqueOnConstraintBuilder";
|
|
17675
|
+
name;
|
|
17676
|
+
constructor(name2) {
|
|
17677
|
+
this.name = name2;
|
|
17678
|
+
}
|
|
17679
|
+
on(...columns) {
|
|
17680
|
+
return new UniqueConstraintBuilder(columns, this.name);
|
|
17681
|
+
}
|
|
17682
|
+
};
|
|
17668
17683
|
var UniqueConstraint = class {
|
|
17669
17684
|
static [entityKind] = "PgUniqueConstraint";
|
|
17670
17685
|
columns;
|
|
@@ -22940,6 +22955,17 @@ var ColumnAliasProxyHandler2 = class {
|
|
|
22940
22955
|
return target[prop];
|
|
22941
22956
|
}
|
|
22942
22957
|
};
|
|
22958
|
+
var RelationTableAliasProxyHandler2 = class {
|
|
22959
|
+
static [entityKind] = "RelationTableAliasProxyHandler";
|
|
22960
|
+
constructor(alias2) {
|
|
22961
|
+
this.alias = alias2;
|
|
22962
|
+
}
|
|
22963
|
+
get(target, prop) {
|
|
22964
|
+
if (prop === "sourceTable")
|
|
22965
|
+
return aliasedTable2(target.sourceTable, this.alias);
|
|
22966
|
+
return target[prop];
|
|
22967
|
+
}
|
|
22968
|
+
};
|
|
22943
22969
|
function aliasedTable2(table, tableAlias) {
|
|
22944
22970
|
return new Proxy(table, new TableAliasProxyHandler2(tableAlias, false, false));
|
|
22945
22971
|
}
|
|
@@ -23423,6 +23449,13 @@ params: ${params}`);
|
|
|
23423
23449
|
this.cause = cause;
|
|
23424
23450
|
}
|
|
23425
23451
|
};
|
|
23452
|
+
var TransactionRollbackError2 = class extends DrizzleError2 {
|
|
23453
|
+
static [entityKind] = "TransactionRollbackError";
|
|
23454
|
+
constructor() {
|
|
23455
|
+
super({ message: "Rollback" });
|
|
23456
|
+
this.name = "TransactionRollbackError";
|
|
23457
|
+
}
|
|
23458
|
+
};
|
|
23426
23459
|
// node_modules/drizzle-orm/relations.js
|
|
23427
23460
|
var Relation2 = class {
|
|
23428
23461
|
static [entityKind] = "RelationV2";
|
|
@@ -23471,6 +23504,53 @@ var One2 = class extends Relation2 {
|
|
|
23471
23504
|
this.optional = config?.optional ?? true;
|
|
23472
23505
|
}
|
|
23473
23506
|
};
|
|
23507
|
+
var Many2 = class extends Relation2 {
|
|
23508
|
+
static [entityKind] = "ManyV2";
|
|
23509
|
+
relationType = "many";
|
|
23510
|
+
constructor(tables, targetTable, targetTableName, config) {
|
|
23511
|
+
super(targetTable, targetTableName);
|
|
23512
|
+
this.config = config;
|
|
23513
|
+
this.alias = config?.alias;
|
|
23514
|
+
this.where = config?.where;
|
|
23515
|
+
if (config?.from)
|
|
23516
|
+
this.sourceColumns = (Array.isArray(config.from) ? config.from : [config.from]).map((it2) => {
|
|
23517
|
+
this.throughTable ??= it2._.through ? tables[it2._.through._.tableName] : undefined;
|
|
23518
|
+
this.sourceColumnTableNames.push(it2._.tableName);
|
|
23519
|
+
return it2._.column;
|
|
23520
|
+
});
|
|
23521
|
+
if (config?.to)
|
|
23522
|
+
this.targetColumns = (Array.isArray(config.to) ? config.to : [config.to]).map((it2) => {
|
|
23523
|
+
this.throughTable ??= it2._.through ? tables[it2._.through._.tableName] : undefined;
|
|
23524
|
+
this.targetColumnTableNames.push(it2._.tableName);
|
|
23525
|
+
return it2._.column;
|
|
23526
|
+
});
|
|
23527
|
+
if (this.throughTable)
|
|
23528
|
+
this.through = {
|
|
23529
|
+
source: (Array.isArray(config?.from) ? config.from : (config?.from) ? [config.from] : []).map((c) => c._.through),
|
|
23530
|
+
target: (Array.isArray(config?.to) ? config.to : (config?.to) ? [config.to] : []).map((c) => c._.through)
|
|
23531
|
+
};
|
|
23532
|
+
}
|
|
23533
|
+
};
|
|
23534
|
+
var AggregatedField2 = class {
|
|
23535
|
+
static [entityKind] = "AggregatedField";
|
|
23536
|
+
table;
|
|
23537
|
+
onTable(table) {
|
|
23538
|
+
this.table = table;
|
|
23539
|
+
return this;
|
|
23540
|
+
}
|
|
23541
|
+
};
|
|
23542
|
+
var Count2 = class extends AggregatedField2 {
|
|
23543
|
+
static [entityKind] = "AggregatedFieldCount";
|
|
23544
|
+
query;
|
|
23545
|
+
getSQL() {
|
|
23546
|
+
if (!this.query) {
|
|
23547
|
+
if (!this.table)
|
|
23548
|
+
throw new Error("Table must be set before building aggregate field");
|
|
23549
|
+
this.query = sql`select count(*) as ${sql.identifier("r")} from ${getTableAsAliasSQL2(this.table)}`.mapWith(Number);
|
|
23550
|
+
}
|
|
23551
|
+
return this.query;
|
|
23552
|
+
}
|
|
23553
|
+
};
|
|
23474
23554
|
var operators2 = {
|
|
23475
23555
|
and,
|
|
23476
23556
|
between,
|
|
@@ -23791,6 +23871,66 @@ function makeJitRqbMapper2({ selection, isFirst, parseJson, parseJsonIfString, r
|
|
|
23791
23871
|
${compiled}
|
|
23792
23872
|
}` });
|
|
23793
23873
|
}
|
|
23874
|
+
var RelationsBuilderTable2 = class {
|
|
23875
|
+
static [entityKind] = "RelationsBuilderTable";
|
|
23876
|
+
_;
|
|
23877
|
+
constructor(table, name2) {
|
|
23878
|
+
this._ = {
|
|
23879
|
+
name: name2,
|
|
23880
|
+
table
|
|
23881
|
+
};
|
|
23882
|
+
}
|
|
23883
|
+
};
|
|
23884
|
+
var RelationsBuilderColumn2 = class {
|
|
23885
|
+
static [entityKind] = "RelationsBuilderColumn";
|
|
23886
|
+
_;
|
|
23887
|
+
constructor(column, tableName, key) {
|
|
23888
|
+
this._ = {
|
|
23889
|
+
tableName,
|
|
23890
|
+
column,
|
|
23891
|
+
key
|
|
23892
|
+
};
|
|
23893
|
+
}
|
|
23894
|
+
through(column) {
|
|
23895
|
+
return new RelationsBuilderJunctionColumn2(this._.column, this._.tableName, this._.key, column);
|
|
23896
|
+
}
|
|
23897
|
+
};
|
|
23898
|
+
var RelationsBuilderJunctionColumn2 = class {
|
|
23899
|
+
static [entityKind] = "RelationsBuilderColumn";
|
|
23900
|
+
_;
|
|
23901
|
+
constructor(column, tableName, key, through) {
|
|
23902
|
+
this._ = {
|
|
23903
|
+
tableName,
|
|
23904
|
+
column,
|
|
23905
|
+
through,
|
|
23906
|
+
key
|
|
23907
|
+
};
|
|
23908
|
+
}
|
|
23909
|
+
};
|
|
23910
|
+
var RelationsHelperStatic2 = class {
|
|
23911
|
+
static [entityKind] = "RelationsHelperStatic";
|
|
23912
|
+
_;
|
|
23913
|
+
constructor(tables) {
|
|
23914
|
+
this._ = { tables };
|
|
23915
|
+
const one = {};
|
|
23916
|
+
const many = {};
|
|
23917
|
+
for (const [tableName, table] of Object.entries(tables)) {
|
|
23918
|
+
one[tableName] = (config) => {
|
|
23919
|
+
return new One2(tables, table, tableName, config);
|
|
23920
|
+
};
|
|
23921
|
+
many[tableName] = (config) => {
|
|
23922
|
+
return new Many2(tables, table, tableName, config);
|
|
23923
|
+
};
|
|
23924
|
+
}
|
|
23925
|
+
this.one = one;
|
|
23926
|
+
this.many = many;
|
|
23927
|
+
}
|
|
23928
|
+
one;
|
|
23929
|
+
many;
|
|
23930
|
+
aggs = { count() {
|
|
23931
|
+
return new Count2;
|
|
23932
|
+
} };
|
|
23933
|
+
};
|
|
23794
23934
|
function fieldSelectionToSQL2(table, target) {
|
|
23795
23935
|
const field = table[TableColumns][target];
|
|
23796
23936
|
return field ? is(field, Column) ? field : is(field, SQL.Aliased) ? sql`${table}.${sql.identifier(field.fieldAlias)}` : sql`${table}.${sql.identifier(target)}` : sql`${table}.${sql.identifier(target)}`;
|
|
@@ -25249,6 +25389,29 @@ var PgAsyncSession2 = class extends PgSession2 {
|
|
|
25249
25389
|
});
|
|
25250
25390
|
}
|
|
25251
25391
|
};
|
|
25392
|
+
var PgAsyncTransaction2 = class extends PgAsyncDatabase2 {
|
|
25393
|
+
static [entityKind] = "PgAsyncTransaction";
|
|
25394
|
+
constructor(dialect, session, relations, nestedIndex = 0, parseRqbJson) {
|
|
25395
|
+
super(dialect, session, relations, parseRqbJson);
|
|
25396
|
+
this.nestedIndex = nestedIndex;
|
|
25397
|
+
}
|
|
25398
|
+
rollback() {
|
|
25399
|
+
throw new TransactionRollbackError2;
|
|
25400
|
+
}
|
|
25401
|
+
getTransactionConfigSQL(config) {
|
|
25402
|
+
const chunks = [];
|
|
25403
|
+
if (config.isolationLevel)
|
|
25404
|
+
chunks.push(`isolation level ${config.isolationLevel}`);
|
|
25405
|
+
if (config.accessMode)
|
|
25406
|
+
chunks.push(config.accessMode);
|
|
25407
|
+
if (typeof config.deferrable === "boolean")
|
|
25408
|
+
chunks.push(config.deferrable ? "deferrable" : "not deferrable");
|
|
25409
|
+
return sql.raw(chunks.join(" "));
|
|
25410
|
+
}
|
|
25411
|
+
setTransaction(config) {
|
|
25412
|
+
return this.session.execute(sql`set transaction ${this.getTransactionConfigSQL(config)}`);
|
|
25413
|
+
}
|
|
25414
|
+
};
|
|
25252
25415
|
|
|
25253
25416
|
// node_modules/drizzle-orm/neon-http/session.js
|
|
25254
25417
|
var NeonHttpSession = class extends PgAsyncSession2 {
|
|
@@ -25708,12 +25871,12 @@ var providersFromEnv = (selection, env = process.env) => {
|
|
|
25708
25871
|
// node_modules/typebox/build/system/memory/memory.mjs
|
|
25709
25872
|
var exports_memory = {};
|
|
25710
25873
|
__export(exports_memory, {
|
|
25711
|
-
|
|
25712
|
-
Metrics: () => Metrics,
|
|
25713
|
-
Discard: () => Discard,
|
|
25714
|
-
Create: () => Create,
|
|
25874
|
+
Assign: () => Assign,
|
|
25715
25875
|
Clone: () => Clone,
|
|
25716
|
-
|
|
25876
|
+
Create: () => Create,
|
|
25877
|
+
Discard: () => Discard,
|
|
25878
|
+
Metrics: () => Metrics,
|
|
25879
|
+
Update: () => Update
|
|
25717
25880
|
});
|
|
25718
25881
|
|
|
25719
25882
|
// node_modules/typebox/build/system/memory/metrics.mjs
|
|
@@ -25733,44 +25896,44 @@ function Assign(left, right) {
|
|
|
25733
25896
|
// node_modules/typebox/build/guard/guard.mjs
|
|
25734
25897
|
var exports_guard = {};
|
|
25735
25898
|
__export(exports_guard, {
|
|
25736
|
-
|
|
25737
|
-
Symbols: () => Symbols,
|
|
25738
|
-
SomeAll: () => SomeAll,
|
|
25739
|
-
Some: () => Some,
|
|
25740
|
-
ShiftLeft: () => ShiftLeft,
|
|
25741
|
-
Keys: () => Keys,
|
|
25742
|
-
IsValueLike: () => IsValueLike,
|
|
25743
|
-
IsUnsafePropertyKey: () => IsUnsafePropertyKey,
|
|
25744
|
-
IsUndefined: () => IsUndefined,
|
|
25745
|
-
IsSymbol: () => IsSymbol,
|
|
25746
|
-
IsString: () => IsString,
|
|
25747
|
-
IsObjectNotArray: () => IsObjectNotArray,
|
|
25748
|
-
IsObject: () => IsObject,
|
|
25749
|
-
IsNumber: () => IsNumber,
|
|
25750
|
-
IsNull: () => IsNull,
|
|
25751
|
-
IsMultipleOf: () => IsMultipleOf,
|
|
25752
|
-
IsMinLength: () => IsMinLength2,
|
|
25753
|
-
IsMaxLength: () => IsMaxLength2,
|
|
25754
|
-
IsLessThan: () => IsLessThan,
|
|
25755
|
-
IsLessEqualThan: () => IsLessEqualThan,
|
|
25756
|
-
IsInteger: () => IsInteger,
|
|
25757
|
-
IsGreaterThan: () => IsGreaterThan,
|
|
25758
|
-
IsGreaterEqualThan: () => IsGreaterEqualThan,
|
|
25759
|
-
IsFunction: () => IsFunction,
|
|
25760
|
-
IsEqual: () => IsEqual,
|
|
25761
|
-
IsDeepEqual: () => IsDeepEqual,
|
|
25762
|
-
IsConstructor: () => IsConstructor,
|
|
25763
|
-
IsClassInstance: () => IsClassInstance,
|
|
25764
|
-
IsBoolean: () => IsBoolean,
|
|
25765
|
-
IsBigInt: () => IsBigInt,
|
|
25766
|
-
IsArray: () => IsArray,
|
|
25767
|
-
HasPropertyKey: () => HasPropertyKey,
|
|
25768
|
-
GraphemeCount: () => GraphemeCount2,
|
|
25769
|
-
EveryAll: () => EveryAll,
|
|
25770
|
-
Every: () => Every,
|
|
25771
|
-
EntriesRegExp: () => EntriesRegExp,
|
|
25899
|
+
Counted: () => Counted,
|
|
25772
25900
|
Entries: () => Entries,
|
|
25773
|
-
|
|
25901
|
+
EntriesRegExp: () => EntriesRegExp,
|
|
25902
|
+
Every: () => Every,
|
|
25903
|
+
EveryAll: () => EveryAll,
|
|
25904
|
+
GraphemeCount: () => GraphemeCount2,
|
|
25905
|
+
HasPropertyKey: () => HasPropertyKey,
|
|
25906
|
+
IsArray: () => IsArray,
|
|
25907
|
+
IsBigInt: () => IsBigInt,
|
|
25908
|
+
IsBoolean: () => IsBoolean,
|
|
25909
|
+
IsClassInstance: () => IsClassInstance,
|
|
25910
|
+
IsConstructor: () => IsConstructor,
|
|
25911
|
+
IsDeepEqual: () => IsDeepEqual,
|
|
25912
|
+
IsEqual: () => IsEqual,
|
|
25913
|
+
IsFunction: () => IsFunction,
|
|
25914
|
+
IsGreaterEqualThan: () => IsGreaterEqualThan,
|
|
25915
|
+
IsGreaterThan: () => IsGreaterThan,
|
|
25916
|
+
IsInteger: () => IsInteger,
|
|
25917
|
+
IsLessEqualThan: () => IsLessEqualThan,
|
|
25918
|
+
IsLessThan: () => IsLessThan,
|
|
25919
|
+
IsMaxLength: () => IsMaxLength2,
|
|
25920
|
+
IsMinLength: () => IsMinLength2,
|
|
25921
|
+
IsMultipleOf: () => IsMultipleOf,
|
|
25922
|
+
IsNull: () => IsNull,
|
|
25923
|
+
IsNumber: () => IsNumber,
|
|
25924
|
+
IsObject: () => IsObject,
|
|
25925
|
+
IsObjectNotArray: () => IsObjectNotArray,
|
|
25926
|
+
IsString: () => IsString,
|
|
25927
|
+
IsSymbol: () => IsSymbol,
|
|
25928
|
+
IsUndefined: () => IsUndefined,
|
|
25929
|
+
IsUnsafePropertyKey: () => IsUnsafePropertyKey,
|
|
25930
|
+
IsValueLike: () => IsValueLike,
|
|
25931
|
+
Keys: () => Keys,
|
|
25932
|
+
ShiftLeft: () => ShiftLeft,
|
|
25933
|
+
Some: () => Some,
|
|
25934
|
+
SomeAll: () => SomeAll,
|
|
25935
|
+
Symbols: () => Symbols,
|
|
25936
|
+
Values: () => Values
|
|
25774
25937
|
});
|
|
25775
25938
|
|
|
25776
25939
|
// node_modules/typebox/build/guard/string.mjs
|
|
@@ -26049,25 +26212,25 @@ function IsDeepEqual(left, right) {
|
|
|
26049
26212
|
// node_modules/typebox/build/guard/globals.mjs
|
|
26050
26213
|
var exports_globals = {};
|
|
26051
26214
|
__export(exports_globals, {
|
|
26052
|
-
|
|
26053
|
-
IsUint8Array: () => IsUint8Array,
|
|
26054
|
-
IsUint32Array: () => IsUint32Array,
|
|
26055
|
-
IsUint16Array: () => IsUint16Array,
|
|
26056
|
-
IsTypeArray: () => IsTypeArray,
|
|
26057
|
-
IsString: () => IsString2,
|
|
26058
|
-
IsSet: () => IsSet,
|
|
26059
|
-
IsRegExp: () => IsRegExp,
|
|
26060
|
-
IsNumber: () => IsNumber2,
|
|
26061
|
-
IsMap: () => IsMap,
|
|
26062
|
-
IsInt8Array: () => IsInt8Array,
|
|
26063
|
-
IsInt32Array: () => IsInt32Array,
|
|
26064
|
-
IsInt16Array: () => IsInt16Array,
|
|
26065
|
-
IsFloat64Array: () => IsFloat64Array,
|
|
26066
|
-
IsFloat32Array: () => IsFloat32Array,
|
|
26067
|
-
IsDate: () => IsDate,
|
|
26068
|
-
IsBoolean: () => IsBoolean2,
|
|
26215
|
+
IsBigInt64Array: () => IsBigInt64Array,
|
|
26069
26216
|
IsBigUint64Array: () => IsBigUint64Array,
|
|
26070
|
-
|
|
26217
|
+
IsBoolean: () => IsBoolean2,
|
|
26218
|
+
IsDate: () => IsDate,
|
|
26219
|
+
IsFloat32Array: () => IsFloat32Array,
|
|
26220
|
+
IsFloat64Array: () => IsFloat64Array,
|
|
26221
|
+
IsInt16Array: () => IsInt16Array,
|
|
26222
|
+
IsInt32Array: () => IsInt32Array,
|
|
26223
|
+
IsInt8Array: () => IsInt8Array,
|
|
26224
|
+
IsMap: () => IsMap,
|
|
26225
|
+
IsNumber: () => IsNumber2,
|
|
26226
|
+
IsRegExp: () => IsRegExp,
|
|
26227
|
+
IsSet: () => IsSet,
|
|
26228
|
+
IsString: () => IsString2,
|
|
26229
|
+
IsTypeArray: () => IsTypeArray,
|
|
26230
|
+
IsUint16Array: () => IsUint16Array,
|
|
26231
|
+
IsUint32Array: () => IsUint32Array,
|
|
26232
|
+
IsUint8Array: () => IsUint8Array,
|
|
26233
|
+
IsUint8ClampedArray: () => IsUint8ClampedArray
|
|
26071
26234
|
});
|
|
26072
26235
|
function IsBoolean2(value) {
|
|
26073
26236
|
return value instanceof Boolean;
|
|
@@ -26191,9 +26354,9 @@ function Clone(value) {
|
|
|
26191
26354
|
// node_modules/typebox/build/system/settings/settings.mjs
|
|
26192
26355
|
var exports_settings = {};
|
|
26193
26356
|
__export(exports_settings, {
|
|
26194
|
-
|
|
26357
|
+
Get: () => Get,
|
|
26195
26358
|
Reset: () => Reset,
|
|
26196
|
-
|
|
26359
|
+
Set: () => Set2
|
|
26197
26360
|
});
|
|
26198
26361
|
var settings = {
|
|
26199
26362
|
immutableTypes: false,
|
|
@@ -26526,8 +26689,8 @@ function IntersectOptions(type) {
|
|
|
26526
26689
|
// node_modules/typebox/build/system/hashing/hash.mjs
|
|
26527
26690
|
var exports_hash = {};
|
|
26528
26691
|
__export(exports_hash, {
|
|
26529
|
-
|
|
26530
|
-
|
|
26692
|
+
Hash: () => Hash,
|
|
26693
|
+
HashCode: () => HashCode
|
|
26531
26694
|
});
|
|
26532
26695
|
|
|
26533
26696
|
// node_modules/typebox/build/system/unreachable/unreachable.mjs
|
|
@@ -27871,8 +28034,8 @@ function Optional2(value, input) {
|
|
|
27871
28034
|
function IsDiscard(discard2, input) {
|
|
27872
28035
|
return discard2.includes(input);
|
|
27873
28036
|
}
|
|
27874
|
-
function
|
|
27875
|
-
return Match2(Take(allowed, input), (Char, Rest2) => IsDiscard(discard2, Char) ?
|
|
28037
|
+
function Many3(allowed, discard2, input, result = "") {
|
|
28038
|
+
return Match2(Take(allowed, input), (Char, Rest2) => IsDiscard(discard2, Char) ? Many3(allowed, discard2, Rest2, result) : Many3(allowed, discard2, Rest2, `${result}${Char}`), () => [result, input]);
|
|
27876
28039
|
}
|
|
27877
28040
|
|
|
27878
28041
|
// node_modules/typebox/build/type/script/token/unsigned_integer.mjs
|
|
@@ -27881,7 +28044,7 @@ function TakeNonZero(input) {
|
|
|
27881
28044
|
}
|
|
27882
28045
|
var AllowedDigits = [...Digit, UnderScore];
|
|
27883
28046
|
function TakeDigits(input) {
|
|
27884
|
-
return
|
|
28047
|
+
return Many3(AllowedDigits, [UnderScore], input);
|
|
27885
28048
|
}
|
|
27886
28049
|
function TakeUnsignedInteger(input) {
|
|
27887
28050
|
return Match2(Take([Zero], input), (Zero2, ZeroRest) => [Zero2, ZeroRest], () => Match2(TakeNonZero(input), (NonZero2, NonZeroRest) => Match2(TakeDigits(NonZeroRest), (Digits, DigitsRest) => [`${NonZero2}${Digits}`, DigitsRest], () => []), () => []));
|
|
@@ -27936,7 +28099,7 @@ function IsLeadingDot(input) {
|
|
|
27936
28099
|
return IsMatch(Take([Dot], input));
|
|
27937
28100
|
}
|
|
27938
28101
|
function TakeFractional(input) {
|
|
27939
|
-
return Match2(
|
|
28102
|
+
return Match2(Many3(AllowedDigits2, [UnderScore], input), (Digits, DigitsRest) => IsEqual(Digits, "") ? [] : [Digits, DigitsRest], () => []);
|
|
27940
28103
|
}
|
|
27941
28104
|
function LeadingDot(input) {
|
|
27942
28105
|
return Match2(Take([Dot], input), (Dot2, DotRest) => Match2(TakeFractional(DotRest), (Fractional, FractionalRest) => [`0${Dot2}${Fractional}`, FractionalRest], () => []), () => []);
|
|
@@ -28234,14 +28397,14 @@ function IsTemplateLiteral(value) {
|
|
|
28234
28397
|
// node_modules/typebox/build/type/extends/result.mjs
|
|
28235
28398
|
var exports_result = {};
|
|
28236
28399
|
__export(exports_result, {
|
|
28237
|
-
|
|
28238
|
-
IsExtendsUnion: () => IsExtendsUnion,
|
|
28239
|
-
IsExtendsTrueLike: () => IsExtendsTrueLike,
|
|
28240
|
-
IsExtendsTrue: () => IsExtendsTrue,
|
|
28241
|
-
IsExtendsFalse: () => IsExtendsFalse,
|
|
28242
|
-
ExtendsUnion: () => ExtendsUnion,
|
|
28400
|
+
ExtendsFalse: () => ExtendsFalse,
|
|
28243
28401
|
ExtendsTrue: () => ExtendsTrue,
|
|
28244
|
-
|
|
28402
|
+
ExtendsUnion: () => ExtendsUnion,
|
|
28403
|
+
IsExtendsFalse: () => IsExtendsFalse,
|
|
28404
|
+
IsExtendsTrue: () => IsExtendsTrue,
|
|
28405
|
+
IsExtendsTrueLike: () => IsExtendsTrueLike,
|
|
28406
|
+
IsExtendsUnion: () => IsExtendsUnion,
|
|
28407
|
+
Match: () => Match3
|
|
28245
28408
|
});
|
|
28246
28409
|
function ExtendsUnion(inferred) {
|
|
28247
28410
|
return exports_memory.Create({ ["~kind"]: "ExtendsUnion" }, { inferred });
|
|
@@ -30052,123 +30215,123 @@ function Script2(...args) {
|
|
|
30052
30215
|
// node_modules/typebox/build/typebox.mjs
|
|
30053
30216
|
var exports_typebox = {};
|
|
30054
30217
|
__export(exports_typebox, {
|
|
30055
|
-
|
|
30056
|
-
Void: () => Void,
|
|
30057
|
-
Uppercase: () => Uppercase,
|
|
30058
|
-
Unsafe: () => Unsafe,
|
|
30059
|
-
Unknown: () => Unknown,
|
|
30060
|
-
Union: () => Union,
|
|
30061
|
-
Undefined: () => Undefined,
|
|
30062
|
-
Uncapitalize: () => Uncapitalize,
|
|
30063
|
-
Tuple: () => Tuple,
|
|
30064
|
-
This: () => This,
|
|
30065
|
-
TemplateLiteral: () => TemplateLiteral2,
|
|
30066
|
-
Symbol: () => Symbol2,
|
|
30067
|
-
String: () => String2,
|
|
30068
|
-
Script: () => Script2,
|
|
30069
|
-
ReturnType: () => ReturnType,
|
|
30070
|
-
Rest: () => Rest,
|
|
30071
|
-
Required: () => Required,
|
|
30072
|
-
Refine: () => Refine,
|
|
30073
|
-
Ref: () => Ref,
|
|
30074
|
-
RecordValue: () => RecordValue,
|
|
30075
|
-
RecordPattern: () => RecordPattern,
|
|
30076
|
-
RecordKey: () => RecordKey,
|
|
30077
|
-
Record: () => Record,
|
|
30078
|
-
ReadonlyType: () => ReadonlyType,
|
|
30079
|
-
ReadonlyObject: () => ReadonlyObject,
|
|
30080
|
-
Readonly: () => Readonly,
|
|
30081
|
-
Pick: () => Pick,
|
|
30082
|
-
Partial: () => Partial,
|
|
30083
|
-
Parameters: () => Parameters,
|
|
30084
|
-
Parameter: () => Parameter,
|
|
30085
|
-
Optional: () => Optional,
|
|
30086
|
-
Omit: () => Omit,
|
|
30087
|
-
Object: () => _Object_,
|
|
30088
|
-
Number: () => Number2,
|
|
30089
|
-
Null: () => Null,
|
|
30090
|
-
NonNullable: () => NonNullable,
|
|
30091
|
-
Never: () => Never,
|
|
30092
|
-
Module: () => Module2,
|
|
30093
|
-
Mapped: () => Mapped,
|
|
30094
|
-
Lowercase: () => Lowercase,
|
|
30095
|
-
Literal: () => Literal,
|
|
30096
|
-
KeyOf: () => KeyOf2,
|
|
30097
|
-
IsVoid: () => IsVoid,
|
|
30098
|
-
IsUnsafe: () => IsUnsafe,
|
|
30099
|
-
IsUnknown: () => IsUnknown,
|
|
30100
|
-
IsUnion: () => IsUnion,
|
|
30101
|
-
IsUndefined: () => IsUndefined2,
|
|
30102
|
-
IsTuple: () => IsTuple,
|
|
30103
|
-
IsThis: () => IsThis,
|
|
30104
|
-
IsTemplateLiteral: () => IsTemplateLiteral,
|
|
30105
|
-
IsSymbol: () => IsSymbol2,
|
|
30106
|
-
IsString: () => IsString3,
|
|
30107
|
-
IsSchema: () => IsSchema,
|
|
30108
|
-
IsRest: () => IsRest,
|
|
30109
|
-
IsRefine: () => IsRefine,
|
|
30110
|
-
IsRef: () => IsRef,
|
|
30111
|
-
IsRecord: () => IsRecord,
|
|
30112
|
-
IsReadonly: () => IsReadonly,
|
|
30113
|
-
IsParameter: () => IsParameter,
|
|
30114
|
-
IsOptional: () => IsOptional,
|
|
30115
|
-
IsObject: () => IsObject2,
|
|
30116
|
-
IsNumber: () => IsNumber3,
|
|
30117
|
-
IsNull: () => IsNull2,
|
|
30118
|
-
IsNever: () => IsNever,
|
|
30119
|
-
IsLiteral: () => IsLiteral,
|
|
30120
|
-
IsKind: () => IsKind,
|
|
30121
|
-
IsIntersect: () => IsIntersect,
|
|
30122
|
-
IsInteger: () => IsInteger2,
|
|
30123
|
-
IsInfer: () => IsInfer,
|
|
30124
|
-
IsImmutable: () => IsImmutable,
|
|
30125
|
-
IsIdentifier: () => IsIdentifier,
|
|
30126
|
-
IsGeneric: () => IsGeneric,
|
|
30127
|
-
IsFunction: () => IsFunction2,
|
|
30128
|
-
IsEnumValue: () => IsEnumValue,
|
|
30129
|
-
IsEnum: () => IsEnum,
|
|
30130
|
-
IsDependent: () => IsDependent,
|
|
30131
|
-
IsCyclic: () => IsCyclic,
|
|
30132
|
-
IsConstructor: () => IsConstructor2,
|
|
30133
|
-
IsCodec: () => IsCodec,
|
|
30134
|
-
IsCall: () => IsCall,
|
|
30135
|
-
IsBoolean: () => IsBoolean3,
|
|
30136
|
-
IsBigInt: () => IsBigInt2,
|
|
30137
|
-
IsArray: () => IsArray2,
|
|
30138
|
-
IsAny: () => IsAny,
|
|
30139
|
-
Intersect: () => Intersect,
|
|
30140
|
-
Interface: () => Interface,
|
|
30141
|
-
Integer: () => Integer,
|
|
30142
|
-
Instantiate: () => Instantiate,
|
|
30143
|
-
InstanceType: () => InstanceType,
|
|
30144
|
-
Infer: () => Infer,
|
|
30145
|
-
Index: () => Index2,
|
|
30146
|
-
Immutable: () => Immutable,
|
|
30147
|
-
Identifier: () => Identifier,
|
|
30148
|
-
Generic: () => Generic,
|
|
30149
|
-
Function: () => _Function_,
|
|
30150
|
-
Extract: () => Extract,
|
|
30151
|
-
ExtendsResult: () => exports_result,
|
|
30152
|
-
Extends: () => Extends,
|
|
30153
|
-
Exclude: () => Exclude,
|
|
30154
|
-
Evaluate: () => Evaluate,
|
|
30155
|
-
Enum: () => Enum,
|
|
30156
|
-
EncodeBuilder: () => EncodeBuilder,
|
|
30157
|
-
Encode: () => Encode,
|
|
30158
|
-
Dependent: () => Dependent,
|
|
30159
|
-
DecodeBuilder: () => DecodeBuilder,
|
|
30160
|
-
Decode: () => Decode,
|
|
30161
|
-
Cyclic: () => Cyclic,
|
|
30162
|
-
ConstructorParameters: () => ConstructorParameters,
|
|
30163
|
-
Constructor: () => Constructor,
|
|
30164
|
-
Conditional: () => Conditional,
|
|
30165
|
-
Codec: () => Codec,
|
|
30166
|
-
Capitalize: () => Capitalize,
|
|
30167
|
-
Call: () => Call,
|
|
30168
|
-
Boolean: () => Boolean2,
|
|
30169
|
-
BigInt: () => BigInt2,
|
|
30218
|
+
Any: () => Any,
|
|
30170
30219
|
Array: () => _Array_,
|
|
30171
|
-
|
|
30220
|
+
BigInt: () => BigInt2,
|
|
30221
|
+
Boolean: () => Boolean2,
|
|
30222
|
+
Call: () => Call,
|
|
30223
|
+
Capitalize: () => Capitalize,
|
|
30224
|
+
Codec: () => Codec,
|
|
30225
|
+
Conditional: () => Conditional,
|
|
30226
|
+
Constructor: () => Constructor,
|
|
30227
|
+
ConstructorParameters: () => ConstructorParameters,
|
|
30228
|
+
Cyclic: () => Cyclic,
|
|
30229
|
+
Decode: () => Decode,
|
|
30230
|
+
DecodeBuilder: () => DecodeBuilder,
|
|
30231
|
+
Dependent: () => Dependent,
|
|
30232
|
+
Encode: () => Encode,
|
|
30233
|
+
EncodeBuilder: () => EncodeBuilder,
|
|
30234
|
+
Enum: () => Enum,
|
|
30235
|
+
Evaluate: () => Evaluate,
|
|
30236
|
+
Exclude: () => Exclude,
|
|
30237
|
+
Extends: () => Extends,
|
|
30238
|
+
ExtendsResult: () => exports_result,
|
|
30239
|
+
Extract: () => Extract,
|
|
30240
|
+
Function: () => _Function_,
|
|
30241
|
+
Generic: () => Generic,
|
|
30242
|
+
Identifier: () => Identifier,
|
|
30243
|
+
Immutable: () => Immutable,
|
|
30244
|
+
Index: () => Index2,
|
|
30245
|
+
Infer: () => Infer,
|
|
30246
|
+
InstanceType: () => InstanceType,
|
|
30247
|
+
Instantiate: () => Instantiate,
|
|
30248
|
+
Integer: () => Integer,
|
|
30249
|
+
Interface: () => Interface,
|
|
30250
|
+
Intersect: () => Intersect,
|
|
30251
|
+
IsAny: () => IsAny,
|
|
30252
|
+
IsArray: () => IsArray2,
|
|
30253
|
+
IsBigInt: () => IsBigInt2,
|
|
30254
|
+
IsBoolean: () => IsBoolean3,
|
|
30255
|
+
IsCall: () => IsCall,
|
|
30256
|
+
IsCodec: () => IsCodec,
|
|
30257
|
+
IsConstructor: () => IsConstructor2,
|
|
30258
|
+
IsCyclic: () => IsCyclic,
|
|
30259
|
+
IsDependent: () => IsDependent,
|
|
30260
|
+
IsEnum: () => IsEnum,
|
|
30261
|
+
IsEnumValue: () => IsEnumValue,
|
|
30262
|
+
IsFunction: () => IsFunction2,
|
|
30263
|
+
IsGeneric: () => IsGeneric,
|
|
30264
|
+
IsIdentifier: () => IsIdentifier,
|
|
30265
|
+
IsImmutable: () => IsImmutable,
|
|
30266
|
+
IsInfer: () => IsInfer,
|
|
30267
|
+
IsInteger: () => IsInteger2,
|
|
30268
|
+
IsIntersect: () => IsIntersect,
|
|
30269
|
+
IsKind: () => IsKind,
|
|
30270
|
+
IsLiteral: () => IsLiteral,
|
|
30271
|
+
IsNever: () => IsNever,
|
|
30272
|
+
IsNull: () => IsNull2,
|
|
30273
|
+
IsNumber: () => IsNumber3,
|
|
30274
|
+
IsObject: () => IsObject2,
|
|
30275
|
+
IsOptional: () => IsOptional,
|
|
30276
|
+
IsParameter: () => IsParameter,
|
|
30277
|
+
IsReadonly: () => IsReadonly,
|
|
30278
|
+
IsRecord: () => IsRecord,
|
|
30279
|
+
IsRef: () => IsRef,
|
|
30280
|
+
IsRefine: () => IsRefine,
|
|
30281
|
+
IsRest: () => IsRest,
|
|
30282
|
+
IsSchema: () => IsSchema,
|
|
30283
|
+
IsString: () => IsString3,
|
|
30284
|
+
IsSymbol: () => IsSymbol2,
|
|
30285
|
+
IsTemplateLiteral: () => IsTemplateLiteral,
|
|
30286
|
+
IsThis: () => IsThis,
|
|
30287
|
+
IsTuple: () => IsTuple,
|
|
30288
|
+
IsUndefined: () => IsUndefined2,
|
|
30289
|
+
IsUnion: () => IsUnion,
|
|
30290
|
+
IsUnknown: () => IsUnknown,
|
|
30291
|
+
IsUnsafe: () => IsUnsafe,
|
|
30292
|
+
IsVoid: () => IsVoid,
|
|
30293
|
+
KeyOf: () => KeyOf2,
|
|
30294
|
+
Literal: () => Literal,
|
|
30295
|
+
Lowercase: () => Lowercase,
|
|
30296
|
+
Mapped: () => Mapped,
|
|
30297
|
+
Module: () => Module2,
|
|
30298
|
+
Never: () => Never,
|
|
30299
|
+
NonNullable: () => NonNullable,
|
|
30300
|
+
Null: () => Null,
|
|
30301
|
+
Number: () => Number2,
|
|
30302
|
+
Object: () => _Object_,
|
|
30303
|
+
Omit: () => Omit,
|
|
30304
|
+
Optional: () => Optional,
|
|
30305
|
+
Parameter: () => Parameter,
|
|
30306
|
+
Parameters: () => Parameters,
|
|
30307
|
+
Partial: () => Partial,
|
|
30308
|
+
Pick: () => Pick,
|
|
30309
|
+
Readonly: () => Readonly,
|
|
30310
|
+
ReadonlyObject: () => ReadonlyObject,
|
|
30311
|
+
ReadonlyType: () => ReadonlyType,
|
|
30312
|
+
Record: () => Record,
|
|
30313
|
+
RecordKey: () => RecordKey,
|
|
30314
|
+
RecordPattern: () => RecordPattern,
|
|
30315
|
+
RecordValue: () => RecordValue,
|
|
30316
|
+
Ref: () => Ref,
|
|
30317
|
+
Refine: () => Refine,
|
|
30318
|
+
Required: () => Required,
|
|
30319
|
+
Rest: () => Rest,
|
|
30320
|
+
ReturnType: () => ReturnType,
|
|
30321
|
+
Script: () => Script2,
|
|
30322
|
+
String: () => String2,
|
|
30323
|
+
Symbol: () => Symbol2,
|
|
30324
|
+
TemplateLiteral: () => TemplateLiteral2,
|
|
30325
|
+
This: () => This,
|
|
30326
|
+
Tuple: () => Tuple,
|
|
30327
|
+
Uncapitalize: () => Uncapitalize,
|
|
30328
|
+
Undefined: () => Undefined,
|
|
30329
|
+
Union: () => Union,
|
|
30330
|
+
Unknown: () => Unknown,
|
|
30331
|
+
Unsafe: () => Unsafe,
|
|
30332
|
+
Uppercase: () => Uppercase,
|
|
30333
|
+
Void: () => Void,
|
|
30334
|
+
With: () => With2
|
|
30172
30335
|
});
|
|
30173
30336
|
// node_modules/typebox/build/schema/types/_refine.mjs
|
|
30174
30337
|
function IsRefine2(value) {
|
|
@@ -30745,34 +30908,34 @@ function ErrorExclusiveMinimum(stack, context, schemaPath, instancePath, schema3
|
|
|
30745
30908
|
// node_modules/typebox/build/format/format.mjs
|
|
30746
30909
|
var exports_format = {};
|
|
30747
30910
|
__export(exports_format, {
|
|
30748
|
-
|
|
30749
|
-
Set: () => Set3,
|
|
30750
|
-
Reset: () => Reset2,
|
|
30751
|
-
IsUuid: () => IsUuid,
|
|
30752
|
-
IsUrl: () => IsUrl,
|
|
30753
|
-
IsUriTemplate: () => IsUriTemplate,
|
|
30754
|
-
IsUriReference: () => IsUriReference,
|
|
30755
|
-
IsUri: () => IsUri,
|
|
30756
|
-
IsTime: () => IsTime,
|
|
30757
|
-
IsRelativeJsonPointer: () => IsRelativeJsonPointer,
|
|
30758
|
-
IsRegex: () => IsRegex,
|
|
30759
|
-
IsJsonPointerUriFragment: () => IsJsonPointerUriFragment,
|
|
30760
|
-
IsJsonPointer: () => IsJsonPointer,
|
|
30761
|
-
IsIriReference: () => IsIriReference,
|
|
30762
|
-
IsIri: () => IsIri,
|
|
30763
|
-
IsIdnHostname: () => IsIdnHostname2,
|
|
30764
|
-
IsIdnEmail: () => IsIdnEmail,
|
|
30765
|
-
IsIPv6: () => IsIPv6,
|
|
30766
|
-
IsIPv4: () => IsIPv4,
|
|
30767
|
-
IsHostname: () => IsHostname2,
|
|
30768
|
-
IsEmail: () => IsEmail,
|
|
30769
|
-
IsDuration: () => IsDuration,
|
|
30770
|
-
IsDateTime: () => IsDateTime,
|
|
30771
|
-
IsDate: () => IsDate2,
|
|
30772
|
-
Has: () => Has,
|
|
30773
|
-
Get: () => Get3,
|
|
30911
|
+
Clear: () => Clear,
|
|
30774
30912
|
Entries: () => Entries2,
|
|
30775
|
-
|
|
30913
|
+
Get: () => Get3,
|
|
30914
|
+
Has: () => Has,
|
|
30915
|
+
IsDate: () => IsDate2,
|
|
30916
|
+
IsDateTime: () => IsDateTime,
|
|
30917
|
+
IsDuration: () => IsDuration,
|
|
30918
|
+
IsEmail: () => IsEmail,
|
|
30919
|
+
IsHostname: () => IsHostname2,
|
|
30920
|
+
IsIPv4: () => IsIPv4,
|
|
30921
|
+
IsIPv6: () => IsIPv6,
|
|
30922
|
+
IsIdnEmail: () => IsIdnEmail,
|
|
30923
|
+
IsIdnHostname: () => IsIdnHostname2,
|
|
30924
|
+
IsIri: () => IsIri,
|
|
30925
|
+
IsIriReference: () => IsIriReference,
|
|
30926
|
+
IsJsonPointer: () => IsJsonPointer,
|
|
30927
|
+
IsJsonPointerUriFragment: () => IsJsonPointerUriFragment,
|
|
30928
|
+
IsRegex: () => IsRegex,
|
|
30929
|
+
IsRelativeJsonPointer: () => IsRelativeJsonPointer,
|
|
30930
|
+
IsTime: () => IsTime,
|
|
30931
|
+
IsUri: () => IsUri,
|
|
30932
|
+
IsUriReference: () => IsUriReference,
|
|
30933
|
+
IsUriTemplate: () => IsUriTemplate,
|
|
30934
|
+
IsUrl: () => IsUrl,
|
|
30935
|
+
IsUuid: () => IsUuid,
|
|
30936
|
+
Reset: () => Reset2,
|
|
30937
|
+
Set: () => Set3,
|
|
30938
|
+
Test: () => Test
|
|
30776
30939
|
});
|
|
30777
30940
|
|
|
30778
30941
|
// node_modules/typebox/build/format/date.mjs
|
|
@@ -31865,18 +32028,18 @@ var funcs = new Map;
|
|
|
31865
32028
|
// node_modules/typebox/build/schema/resolve/resolve.mjs
|
|
31866
32029
|
var exports_resolve = {};
|
|
31867
32030
|
__export(exports_resolve, {
|
|
31868
|
-
|
|
32031
|
+
DefaultBase: () => DefaultBase,
|
|
31869
32032
|
DynamicRef: () => DynamicRef,
|
|
31870
|
-
|
|
32033
|
+
Ref: () => Ref2
|
|
31871
32034
|
});
|
|
31872
32035
|
// node_modules/typebox/build/schema/pointer/pointer.mjs
|
|
31873
32036
|
var exports_pointer = {};
|
|
31874
32037
|
__export(exports_pointer, {
|
|
31875
|
-
|
|
31876
|
-
Indices: () => Indices,
|
|
31877
|
-
Has: () => Has2,
|
|
32038
|
+
Delete: () => Delete,
|
|
31878
32039
|
Get: () => Get4,
|
|
31879
|
-
|
|
32040
|
+
Has: () => Has2,
|
|
32041
|
+
Indices: () => Indices,
|
|
32042
|
+
Set: () => Set4
|
|
31880
32043
|
});
|
|
31881
32044
|
function AssertNotRoot(indices) {
|
|
31882
32045
|
if (indices.length === 0)
|
|
@@ -32375,16 +32538,16 @@ function Clean(...args) {
|
|
|
32375
32538
|
// node_modules/typebox/build/value/convert/try/try.mjs
|
|
32376
32539
|
var exports_try = {};
|
|
32377
32540
|
__export(exports_try, {
|
|
32378
|
-
|
|
32379
|
-
TryString: () => TryString,
|
|
32380
|
-
TryNumber: () => TryNumber,
|
|
32381
|
-
TryNull: () => TryNull,
|
|
32382
|
-
TryBoolean: () => TryBoolean,
|
|
32383
|
-
TryBigInt: () => TryBigInt,
|
|
32384
|
-
TryArray: () => TryArray,
|
|
32385
|
-
Ok: () => Ok,
|
|
32541
|
+
Fail: () => Fail,
|
|
32386
32542
|
IsOk: () => IsOk,
|
|
32387
|
-
|
|
32543
|
+
Ok: () => Ok,
|
|
32544
|
+
TryArray: () => TryArray,
|
|
32545
|
+
TryBigInt: () => TryBigInt,
|
|
32546
|
+
TryBoolean: () => TryBoolean,
|
|
32547
|
+
TryNull: () => TryNull,
|
|
32548
|
+
TryNumber: () => TryNumber,
|
|
32549
|
+
TryString: () => TryString,
|
|
32550
|
+
TryUndefined: () => TryUndefined
|
|
32388
32551
|
});
|
|
32389
32552
|
|
|
32390
32553
|
// node_modules/typebox/build/value/convert/try/try_result.mjs
|
|
@@ -33659,24 +33822,24 @@ function Repair(...args) {
|
|
|
33659
33822
|
// node_modules/typebox/build/value/value.mjs
|
|
33660
33823
|
var exports_value = {};
|
|
33661
33824
|
__export(exports_value, {
|
|
33662
|
-
|
|
33663
|
-
Pointer: () => exports_pointer,
|
|
33664
|
-
Patch: () => Patch,
|
|
33665
|
-
Parse: () => Parse,
|
|
33666
|
-
Hash: () => Hash2,
|
|
33667
|
-
HasCodec: () => HasCodec,
|
|
33668
|
-
Errors: () => Errors2,
|
|
33669
|
-
Equal: () => Equal,
|
|
33670
|
-
Encode: () => Encode10,
|
|
33671
|
-
Diff: () => Diff,
|
|
33672
|
-
Default: () => Default,
|
|
33673
|
-
Decode: () => Decode10,
|
|
33674
|
-
Create: () => Create2,
|
|
33675
|
-
Convert: () => Convert,
|
|
33676
|
-
Clone: () => Clone2,
|
|
33677
|
-
Clean: () => Clean,
|
|
33825
|
+
Assert: () => Assert,
|
|
33678
33826
|
Check: () => Check4,
|
|
33679
|
-
|
|
33827
|
+
Clean: () => Clean,
|
|
33828
|
+
Clone: () => Clone2,
|
|
33829
|
+
Convert: () => Convert,
|
|
33830
|
+
Create: () => Create2,
|
|
33831
|
+
Decode: () => Decode10,
|
|
33832
|
+
Default: () => Default,
|
|
33833
|
+
Diff: () => Diff,
|
|
33834
|
+
Encode: () => Encode10,
|
|
33835
|
+
Equal: () => Equal,
|
|
33836
|
+
Errors: () => Errors2,
|
|
33837
|
+
HasCodec: () => HasCodec,
|
|
33838
|
+
Hash: () => Hash2,
|
|
33839
|
+
Parse: () => Parse,
|
|
33840
|
+
Patch: () => Patch,
|
|
33841
|
+
Pointer: () => exports_pointer,
|
|
33842
|
+
Repair: () => Repair
|
|
33680
33843
|
});
|
|
33681
33844
|
// src/session/redisStore.ts
|
|
33682
33845
|
var SESSION_SEGMENT = "sess:";
|
|
@@ -38364,7 +38527,7 @@ var createPostgresOidcRefreshTokenStore = (db) => ({
|
|
|
38364
38527
|
dpop_jkt: sql`CASE WHEN ${active} THEN ${replacement.dpopJkt ?? null} ELSE ${oauthRefreshTokensTable.dpop_jkt} END`,
|
|
38365
38528
|
expires_at_ms: sql`CASE WHEN ${active} THEN ${replacement.expiresAt} ELSE ${oauthRefreshTokensTable.expires_at_ms} END`,
|
|
38366
38529
|
revoked_at_ms: sql`CASE WHEN ${consumed} THEN ${Date.now()} ELSE ${oauthRefreshTokensTable.revoked_at_ms} END`,
|
|
38367
|
-
scopes: sql`CASE WHEN ${active} THEN ${replacement.scopes} ELSE ${oauthRefreshTokensTable.scopes} END`,
|
|
38530
|
+
scopes: sql`CASE WHEN ${active} THEN ${sql.param(replacement.scopes, oauthRefreshTokensTable.scopes)} ELSE ${oauthRefreshTokensTable.scopes} END`,
|
|
38368
38531
|
token_hash: sql`CASE WHEN ${active} THEN ${replacement.tokenHash} ELSE ${oauthRefreshTokensTable.token_hash} END`,
|
|
38369
38532
|
user_id: sql`CASE WHEN ${active} THEN ${replacement.userId} ELSE ${oauthRefreshTokensTable.user_id} END`
|
|
38370
38533
|
}).where(or(active, consumed)).returning({
|
|
@@ -40729,535 +40892,535 @@ var auth = async (configuration) => {
|
|
|
40729
40892
|
};
|
|
40730
40893
|
var createAuthApplications = async (configuration) => buildAuthApplications(configuration);
|
|
40731
40894
|
export {
|
|
40732
|
-
|
|
40733
|
-
withSpan,
|
|
40734
|
-
withMfaFactors,
|
|
40735
|
-
withAbsoluteNativeAuthClients,
|
|
40736
|
-
webhookDeliveriesTable,
|
|
40737
|
-
webauthnRoutes,
|
|
40738
|
-
webauthnCredentialsTable,
|
|
40739
|
-
warrantsTable,
|
|
40740
|
-
warrantKey,
|
|
40741
|
-
vpRoutes,
|
|
40742
|
-
verifyWebhookSignature,
|
|
40743
|
-
verifyTurnstile,
|
|
40744
|
-
verifyTotp,
|
|
40745
|
-
verifyStatusListJwt,
|
|
40746
|
-
verifySdJwtVc,
|
|
40747
|
-
verifyRecaptcha,
|
|
40748
|
-
verifyPresentationResponse,
|
|
40749
|
-
verifyPkce,
|
|
40750
|
-
verifyPassword,
|
|
40751
|
-
verifyOidcAccessToken,
|
|
40752
|
-
verifyJwtWithKeys,
|
|
40753
|
-
verifyJwtSignedByClient,
|
|
40754
|
-
verifyJwt,
|
|
40755
|
-
verifyIdTokenHint,
|
|
40756
|
-
verifyHcaptcha,
|
|
40757
|
-
verifyDpopProof,
|
|
40758
|
-
verifyDpopNonce,
|
|
40759
|
-
verifyCognitoSha256,
|
|
40760
|
-
verifyClientAssertion,
|
|
40761
|
-
verifyCertificateBoundToken,
|
|
40762
|
-
verifyAuth0Pbkdf2,
|
|
40763
|
-
verifyAuditChain,
|
|
40764
|
-
verifyApiKey,
|
|
40765
|
-
verifyAccessToken,
|
|
40766
|
-
vciRoutes,
|
|
40767
|
-
vcPresentationRequestsTable,
|
|
40768
|
-
vcCredentialOffersTable,
|
|
40769
|
-
vcCredentialNoncesTable,
|
|
40770
|
-
vaultEntriesTable,
|
|
40771
|
-
validateSession,
|
|
40772
|
-
validateEmailDeliverability,
|
|
40773
|
-
validateClientIdMetadataDocument,
|
|
40774
|
-
userSessionIdTypebox,
|
|
40775
|
-
userInfoChallengeHeader,
|
|
40776
|
-
updateRegisteredClient,
|
|
40777
|
-
trustDevice,
|
|
40778
|
-
toSafeLocalPath,
|
|
40779
|
-
toPublicJwk,
|
|
40780
|
-
toBase64Url2 as toBase64Url,
|
|
40781
|
-
switchActiveSession,
|
|
40782
|
-
stepUpPlugin,
|
|
40783
|
-
statusListRoutes,
|
|
40784
|
-
startImpersonation,
|
|
40785
|
-
startAgentRegistration,
|
|
40786
|
-
ssoDiscoveryRoute,
|
|
40787
|
-
ssoConnectionsTable,
|
|
40788
|
-
signingVerificationKeys,
|
|
40789
|
-
signWebhook,
|
|
40790
|
-
signStatusList,
|
|
40791
|
-
signJwt,
|
|
40792
|
-
setupSessionsTable,
|
|
40793
|
-
setMemberRoles,
|
|
40794
|
-
setCredentialStatus,
|
|
40795
|
-
sessionStore,
|
|
40796
|
-
sessionRoutes,
|
|
40797
|
-
sessionCleanup,
|
|
40798
|
-
scoreRisk,
|
|
40799
|
-
scopeRequiredProviderOptions,
|
|
40800
|
-
scimTokensTable,
|
|
40801
|
-
scimRoutes,
|
|
40802
|
-
samlSsoRoutes,
|
|
40803
|
-
samlServiceProvidersTable,
|
|
40804
|
-
samlIdpRoutes,
|
|
40805
|
-
runMigrations,
|
|
40806
|
-
runEmailBreachScan,
|
|
40807
|
-
rotateVaultKey,
|
|
40808
|
-
rotateMfaEncryptionKey,
|
|
40809
|
-
rolesTable,
|
|
40810
|
-
roleRoutes,
|
|
40811
|
-
revokeUserSessions,
|
|
40812
|
-
revokeRefreshToken,
|
|
40813
|
-
revokeAgentIdentityRegistration,
|
|
40814
|
-
revocableProviderOptions,
|
|
40815
|
-
resolveSetupSession,
|
|
40816
|
-
resolveScimOrganization,
|
|
40817
|
-
resolveProviderClientConfiguration,
|
|
40818
|
-
resolvePostLogoutRedirect,
|
|
40819
|
-
resolvePermissions,
|
|
40820
|
-
resolveOriginAllowed,
|
|
40821
|
-
resolveOAuthTokenExpiresAt,
|
|
40822
|
-
resolveOAuthAuthorization,
|
|
40823
|
-
resolveCookieSecure,
|
|
40824
|
-
resolveClientProviderEntry,
|
|
40825
|
-
resolveClientCert,
|
|
40826
|
-
resolveAuthHtmxRenderers,
|
|
40827
|
-
resolveApiPrincipal,
|
|
40828
|
-
resolveAgentPrincipal,
|
|
40829
|
-
resolveAccessTokenPrincipal,
|
|
40830
|
-
requireAuthPlugin,
|
|
40831
|
-
removeFromSessionRing,
|
|
40832
|
-
rehashCredentialPassword,
|
|
40833
|
-
registerClient,
|
|
40834
|
-
refreshableProviderOptions,
|
|
40835
|
-
refreshUserSessions,
|
|
40836
|
-
recordLoginAttempt,
|
|
40837
|
-
readUserInfoBearer,
|
|
40838
|
-
readSessionRing,
|
|
40839
|
-
readSessionCookie,
|
|
40840
|
-
readAuthSyncPartition,
|
|
40841
|
-
pushRoutes,
|
|
40842
|
-
pushAuthorizationRequest,
|
|
40843
|
-
pruneInactiveUsers,
|
|
40844
|
-
providersFromEnv,
|
|
40845
|
-
providers,
|
|
40846
|
-
providerOptions,
|
|
40847
|
-
protectRoutePlugin,
|
|
40848
|
-
protectPermissionPlugin,
|
|
40849
|
-
presentSdJwtVc,
|
|
40850
|
-
portalRoutes,
|
|
40851
|
-
pkceProviderOptions,
|
|
40852
|
-
passwordlessTokensTable,
|
|
40853
|
-
passwordlessRoutes,
|
|
40854
|
-
parseSignedRequestObject,
|
|
40855
|
-
parseSdJwtVc,
|
|
40856
|
-
parseSchema,
|
|
40857
|
-
parsePresentationToken,
|
|
40858
|
-
parseJsonObject,
|
|
40859
|
-
parseAbsoluteNativeAuthClients,
|
|
40860
|
-
organizationsTable,
|
|
40861
|
-
organizationRoutes,
|
|
40862
|
-
organizationMembershipsTable,
|
|
40863
|
-
organizationInvitationsTable,
|
|
40864
|
-
oidcSsoRoutes,
|
|
40865
|
-
oidcProviderRoutes,
|
|
40866
|
-
oidcProviderOptions,
|
|
40867
|
-
oauthSocketTicketsTable,
|
|
40868
|
-
oauthRefreshTokensTable,
|
|
40869
|
-
oauthPushedAuthorizationRequestsTable,
|
|
40870
|
-
oauthLogoutDeliveriesTable,
|
|
40871
|
-
oauthInitialAccessTokensTable,
|
|
40872
|
-
oauthDeviceAuthorizationsTable,
|
|
40873
|
-
oauthCodesTable,
|
|
40874
|
-
oauthClientsTable,
|
|
40875
|
-
oauthClientRegistrationTokensTable,
|
|
40876
|
-
oauthClientAssertionJtisTable,
|
|
40877
|
-
oauthBackchannelAuthRequestsTable,
|
|
40878
|
-
nativePushRoutes,
|
|
40879
|
-
mintLogoutToken,
|
|
40880
|
-
mintDpopNonce,
|
|
40881
|
-
mfaTotpRoutes,
|
|
40882
|
-
mfaSmsRoutes,
|
|
40883
|
-
mfaRoutes,
|
|
40884
|
-
mfaManagementRoutes,
|
|
40885
|
-
mfaEnrollmentsTable,
|
|
40886
|
-
mfaChallenge,
|
|
40887
|
-
mcpProtectedResourceMetadata,
|
|
40888
|
-
maskPhone,
|
|
40889
|
-
loginHistoryTable,
|
|
40890
|
-
lockoutsTable,
|
|
40891
|
-
listUserSessions,
|
|
40892
|
-
listUserOrganizations,
|
|
40893
|
-
listSubjects,
|
|
40894
|
-
listRingSessions,
|
|
40895
|
-
listObjects,
|
|
40896
|
-
knownDevicesTable,
|
|
40897
|
-
jwkThumbprint,
|
|
40898
|
-
issueTokenSet,
|
|
40899
|
-
issueSocketTicket,
|
|
40900
|
-
issueSdJwtVc,
|
|
40901
|
-
issueDeviceAuthorization,
|
|
40902
|
-
issueCredential,
|
|
40903
|
-
issueBackchannelAuth,
|
|
40904
|
-
issueAgentServiceAssertion,
|
|
40905
|
-
issueAgentIdentityAssertion,
|
|
40906
|
-
isValidUser,
|
|
40907
|
-
isValidProviderOption,
|
|
40908
|
-
isUserSessionId,
|
|
40909
|
-
isTrustedOrigin,
|
|
40910
|
-
isSafeLocalPath,
|
|
40911
|
-
isRevocableProviderOption,
|
|
40912
|
-
isRevocableOAuth2Client,
|
|
40913
|
-
isRefreshableProviderOption,
|
|
40914
|
-
isRefreshableOAuth2Client,
|
|
40915
|
-
isPasswordCompromised,
|
|
40916
|
-
isPKCEProviderOption,
|
|
40917
|
-
isOIDCProviderOption,
|
|
40918
|
-
isMfaEnrolled,
|
|
40919
|
-
isLegacyHash,
|
|
40920
|
-
isJsonValue,
|
|
40921
|
-
isImpersonating,
|
|
40922
|
-
isE164Phone,
|
|
40923
|
-
isDisposableEmail,
|
|
40924
|
-
isAuthIntent,
|
|
40925
|
-
isAuditEventType,
|
|
40926
|
-
isAnonymousSession,
|
|
40927
|
-
inviteToOrganization,
|
|
40928
|
-
introspectToken,
|
|
40929
|
-
instantiateUserSession,
|
|
40930
|
-
initTracing,
|
|
40931
|
-
importUsers,
|
|
40932
|
-
importUser,
|
|
40933
|
-
hashToken,
|
|
40934
|
-
hashPassword,
|
|
40935
|
-
hashAuditEvent,
|
|
40936
|
-
hasScopes,
|
|
40937
|
-
hasOrganizationScope,
|
|
40938
|
-
handleAgentTokenGrant,
|
|
40939
|
-
getUserSessionId,
|
|
40940
|
-
getStatus,
|
|
40941
|
-
getRegisteredClient,
|
|
40942
|
-
getOrRefreshFederatedTokens,
|
|
40943
|
-
getMfaFactors,
|
|
40944
|
-
getCredentialStatus,
|
|
40945
|
-
generateTotpSecret,
|
|
40946
|
-
generateTotp,
|
|
40947
|
-
generateSigningKey,
|
|
40948
|
-
generateSecureToken,
|
|
40949
|
-
generateEncryptionKey,
|
|
40950
|
-
generateBackupCodes,
|
|
40951
|
-
generateAgentRegistrationGuide,
|
|
40952
|
-
generateAgentOAuthGuide,
|
|
40953
|
-
fromBase64Url2 as fromBase64Url,
|
|
40954
|
-
fingerprintDevice,
|
|
40955
|
-
fetchUserInfo,
|
|
40956
|
-
fanOutBackchannelLogout,
|
|
40957
|
-
extractRfc9440ClientCert,
|
|
40958
|
-
extractPropFromIdentity,
|
|
40959
|
-
extractDpopNonceClaim,
|
|
40960
|
-
exportAuditCsv,
|
|
40961
|
-
exchangeToken,
|
|
40962
|
-
exchangePreAuthorizedCode,
|
|
40963
|
-
exchangeDeviceCode,
|
|
40964
|
-
exchangeClientCredentials,
|
|
40965
|
-
exchangeBackchannelAuth,
|
|
40966
|
-
evaluatePassword,
|
|
40967
|
-
endImpersonation,
|
|
40968
|
-
encryptTotpSecret,
|
|
40969
|
-
encryptSecret,
|
|
40970
|
-
discoverAgentRegistration,
|
|
40971
|
-
diffScimGroupMembers,
|
|
40972
|
-
deriveAuthSyncNamespace,
|
|
40973
|
-
denyDeviceAuthorization,
|
|
40974
|
-
denyBackchannelAuth,
|
|
40975
|
-
deleteWarrant,
|
|
40976
|
-
deleteRegisteredClient,
|
|
40977
|
-
defineScimAttributeMap,
|
|
40978
|
-
defineProvidersConfiguration,
|
|
40979
|
-
defineProvider,
|
|
40980
|
-
defineAuthSettings,
|
|
40981
|
-
defineAuthHtmxConfig,
|
|
40982
|
-
defineAuthConfig,
|
|
40983
|
-
defaultBotClassifier,
|
|
40984
|
-
decryptTotpSecret,
|
|
40985
|
-
decryptSecret,
|
|
40986
|
-
decodeSessionUserRecord,
|
|
40987
|
-
decodeJWT,
|
|
40988
|
-
credentialsTable,
|
|
40989
|
-
credentialsRegister,
|
|
40990
|
-
credentialsPasswordReset,
|
|
40991
|
-
credentialsLogin,
|
|
40992
|
-
credentialsEmailVerification,
|
|
40993
|
-
credentialVerificationTokensTable,
|
|
40994
|
-
credentialRoutes,
|
|
40995
|
-
credentialResetTokensTable,
|
|
40996
|
-
createWebhookDispatcher,
|
|
40997
|
-
createVault,
|
|
40998
|
-
createTotpKeyUri,
|
|
40999
|
-
createTamperEvidentSink,
|
|
41000
|
-
createStatusList,
|
|
41001
|
-
createSiemLogStream,
|
|
41002
|
-
createSetupSession,
|
|
41003
|
-
createSecretCipher,
|
|
41004
|
-
createScimToken,
|
|
41005
|
-
createRiskEngine,
|
|
41006
|
-
createRedisLockoutStore,
|
|
41007
|
-
createRedisFgaCache,
|
|
41008
|
-
createRedisAuthSessionStore,
|
|
41009
|
-
createPresentationRequest,
|
|
41010
|
-
createPostgresWebhookDeliveryStore,
|
|
41011
|
-
createPostgresWebAuthnCredentialStore,
|
|
41012
|
-
createPostgresWarrantStore,
|
|
41013
|
-
createPostgresVaultStore,
|
|
41014
|
-
createPostgresSsoConnectionStore,
|
|
41015
|
-
createPostgresSocketTicketStore,
|
|
41016
|
-
createPostgresSetupSessionStore,
|
|
41017
|
-
createPostgresScimTokenStore,
|
|
41018
|
-
createPostgresSamlServiceProviderStore,
|
|
41019
|
-
createPostgresRoleStore,
|
|
41020
|
-
createPostgresPushedAuthorizationRequestStore,
|
|
41021
|
-
createPostgresPresentationRequestStore,
|
|
41022
|
-
createPostgresPasswordlessTokenStore,
|
|
41023
|
-
createPostgresOrganizationStore,
|
|
41024
|
-
createPostgresOidcRefreshTokenStore,
|
|
41025
|
-
createPostgresOAuthClientStore,
|
|
41026
|
-
createPostgresMfaStore,
|
|
41027
|
-
createPostgresLogoutDeliveryStore,
|
|
41028
|
-
createPostgresLoginHistoryStore,
|
|
41029
|
-
createPostgresLockoutStore,
|
|
41030
|
-
createPostgresKnownDeviceStore,
|
|
41031
|
-
createPostgresInitialAccessTokenStore,
|
|
41032
|
-
createPostgresDeviceAuthorizationStore,
|
|
41033
|
-
createPostgresCredentialStore,
|
|
41034
|
-
createPostgresCredentialOfferStore,
|
|
41035
|
-
createPostgresCredentialNonceStore,
|
|
41036
|
-
createPostgresClientRegistrationTokenStore,
|
|
41037
|
-
createPostgresClientAssertionJtiStore,
|
|
41038
|
-
createPostgresBackchannelAuthStore,
|
|
41039
|
-
createPostgresAuthorizationCodeStore,
|
|
41040
|
-
createPostgresAuditSink,
|
|
41041
|
-
createPostgresApiKeyStore,
|
|
41042
|
-
createPostgresApiClientStore,
|
|
41043
|
-
createPostgresAgentRegistrationStore,
|
|
41044
|
-
createPostgresAgentIdentityRegistrationStore,
|
|
41045
|
-
createPostgresAgentDelegationStore,
|
|
41046
|
-
createPostgresAccessTokenStore,
|
|
41047
|
-
createOrganization,
|
|
41048
|
-
createOidcAgentCredentialVerifier,
|
|
41049
|
-
createOAuthLinkedProviderCredentialResolver,
|
|
41050
|
-
createOAuthAccountLinkedProviderCredentialResolver,
|
|
41051
|
-
createNeonWebhookDeliveryStore,
|
|
41052
|
-
createNeonWebAuthnCredentialStore,
|
|
41053
|
-
createNeonWarrantStore,
|
|
41054
|
-
createNeonVaultStore,
|
|
41055
|
-
createNeonSsoConnectionStore,
|
|
41056
|
-
createNeonSocketTicketStore,
|
|
41057
|
-
createNeonSetupSessionStore,
|
|
41058
|
-
createNeonScimTokenStore,
|
|
41059
|
-
createNeonSamlServiceProviderStore,
|
|
41060
|
-
createNeonRoleStore,
|
|
41061
|
-
createNeonPushedAuthorizationRequestStore,
|
|
41062
|
-
createNeonPresentationRequestStore,
|
|
41063
|
-
createNeonPasswordlessTokenStore,
|
|
41064
|
-
createNeonOrganizationStore,
|
|
41065
|
-
createNeonOidcRefreshTokenStore,
|
|
41066
|
-
createNeonOAuthLinkedProviderCredentialResolver,
|
|
41067
|
-
createNeonOAuthClientStore,
|
|
41068
|
-
createNeonMfaStore,
|
|
41069
|
-
createNeonLogoutDeliveryStore,
|
|
41070
|
-
createNeonLoginHistoryStore,
|
|
41071
|
-
createNeonLockoutStore,
|
|
41072
|
-
createNeonLinkedProviderStores,
|
|
41073
|
-
createNeonKnownDeviceStore,
|
|
41074
|
-
createNeonInitialAccessTokenStore,
|
|
41075
|
-
createNeonDeviceAuthorizationStore,
|
|
41076
|
-
createNeonDatabase,
|
|
41077
|
-
createNeonCredentialStore,
|
|
41078
|
-
createNeonCredentialOfferStore,
|
|
41079
|
-
createNeonCredentialNonceStore,
|
|
41080
|
-
createNeonClientRegistrationTokenStore,
|
|
41081
|
-
createNeonClientAssertionJtiStore,
|
|
41082
|
-
createNeonBackchannelAuthStore,
|
|
41083
|
-
createNeonAuthorizationCodeStore,
|
|
41084
|
-
createNeonAuthSessionStore,
|
|
41085
|
-
createNeonAuditSink,
|
|
41086
|
-
createNeonApiKeyStore,
|
|
41087
|
-
createNeonApiClientStore,
|
|
41088
|
-
createNeonAgentRegistrationStore,
|
|
41089
|
-
createNeonAgentIdentityRegistrationStore,
|
|
41090
|
-
createNeonAgentDelegationStore,
|
|
41091
|
-
createNeonAccessTokenStore,
|
|
41092
|
-
createMfaGate,
|
|
41093
|
-
createMembershipPermissionResolver,
|
|
41094
|
-
createLockoutGuard,
|
|
41095
|
-
createLinkedProviderCredentialResolver,
|
|
41096
|
-
createInMemoryWebhookDeliveryStore,
|
|
41097
|
-
createInMemoryWebAuthnCredentialStore,
|
|
41098
|
-
createInMemoryWarrantStore,
|
|
41099
|
-
createInMemoryVaultStore,
|
|
41100
|
-
createInMemorySsoConnectionStore,
|
|
41101
|
-
createInMemorySocketTicketStore,
|
|
41102
|
-
createInMemorySetupSessionStore,
|
|
41103
|
-
createInMemoryScimTokenStore,
|
|
41104
|
-
createInMemorySamlServiceProviderStore,
|
|
41105
|
-
createInMemoryRoleStore,
|
|
41106
|
-
createInMemoryPushedAuthorizationRequestStore,
|
|
41107
|
-
createInMemoryPresentationRequestStore,
|
|
41108
|
-
createInMemoryPasswordlessTokenStore,
|
|
41109
|
-
createInMemoryOrganizationStore,
|
|
41110
|
-
createInMemoryOidcRefreshTokenStore,
|
|
41111
|
-
createInMemoryOAuthClientStore,
|
|
41112
|
-
createInMemoryMfaStore,
|
|
41113
|
-
createInMemoryLogoutDeliveryStore,
|
|
41114
|
-
createInMemoryLoginHistoryStore,
|
|
41115
|
-
createInMemoryLockoutStore,
|
|
41116
|
-
createInMemoryLinkedProviderStores,
|
|
41117
|
-
createInMemoryKnownDeviceStore,
|
|
41118
|
-
createInMemoryInitialAccessTokenStore,
|
|
41119
|
-
createInMemoryDeviceAuthorizationStore,
|
|
41120
|
-
createInMemoryCredentialStore,
|
|
41121
|
-
createInMemoryCredentialOfferStore,
|
|
41122
|
-
createInMemoryCredentialNonceStore,
|
|
41123
|
-
createInMemoryClientRegistrationTokenStore,
|
|
41124
|
-
createInMemoryClientAssertionJtiStore,
|
|
41125
|
-
createInMemoryCheckCache,
|
|
41126
|
-
createInMemoryBackchannelAuthStore,
|
|
41127
|
-
createInMemoryAuthorizationCodeStore,
|
|
41128
|
-
createInMemoryAuthSessionStore,
|
|
41129
|
-
createInMemoryAuditSink,
|
|
41130
|
-
createInMemoryApiKeyStore,
|
|
41131
|
-
createInMemoryApiClientStore,
|
|
41132
|
-
createInMemoryAgentRegistrationStore,
|
|
41133
|
-
createInMemoryAgentIdentityRegistrationStore,
|
|
41134
|
-
createInMemoryAgentIdentityAssertionJtiStore,
|
|
41135
|
-
createInMemoryAgentDelegationStore,
|
|
41136
|
-
createInMemoryAccessTokenStore,
|
|
41137
|
-
createFgaEngine,
|
|
41138
|
-
createFederatedTokenStore,
|
|
41139
|
-
createDrizzleAgentDelegationStore,
|
|
41140
|
-
createCustomOAuth2Client,
|
|
41141
|
-
createCredentialOffer,
|
|
41142
|
-
createClientIdMetadataResolver,
|
|
41143
|
-
createBunSqlDrizzleAgentRegistrationStore,
|
|
41144
|
-
createBunSqlDrizzleAgentIdentityRegistrationStore,
|
|
41145
|
-
createBunSqlDrizzleAgentDelegationStore,
|
|
41146
|
-
createAuthHtmxRoutes,
|
|
41147
|
-
createAuthContext,
|
|
41148
|
-
createAuthApplications,
|
|
41149
|
-
createAuditRedactor,
|
|
41150
|
-
createAuditEmitter,
|
|
41151
|
-
createApiKey,
|
|
41152
|
-
createApiClient,
|
|
41153
|
-
createAnonymousSession,
|
|
41154
|
-
createAgentRegistrationCredentialVerifier,
|
|
41155
|
-
createAgentRegistrationClient,
|
|
41156
|
-
createAgentIdentityAssertionVerifier,
|
|
41157
|
-
createActionPipeline,
|
|
41158
|
-
createAbuseGuard,
|
|
41159
|
-
createAbsoluteAuthSyncBridge,
|
|
41160
|
-
consumeSocketTicket,
|
|
41161
|
-
consumePushedRequest,
|
|
41162
|
-
consumeBackupCode,
|
|
41163
|
-
constantTimeEqual,
|
|
41164
|
-
computeCertThumbprint,
|
|
41165
|
-
complianceRoutes,
|
|
41166
|
-
completeAgentClaim,
|
|
41167
|
-
clientIdMetadataToOAuthClient,
|
|
41168
|
-
check6 as check,
|
|
41169
|
-
buildStatusClaim,
|
|
41170
|
-
buildIssuerMetadata,
|
|
41171
|
-
buildHolderKeyBindingJwt,
|
|
41172
|
-
buildClientProviders,
|
|
41173
|
-
blockMigrations,
|
|
41174
|
-
beginAgentClaim,
|
|
41175
|
-
base32Encode,
|
|
41176
|
-
base32Decode,
|
|
41177
|
-
authProviderOption,
|
|
41178
|
-
authIntentOption,
|
|
41179
|
-
authClientOption,
|
|
41180
|
-
auth,
|
|
41181
|
-
auditEventsTable,
|
|
41182
|
-
assessRisk,
|
|
41183
|
-
assessAbuse,
|
|
41184
|
-
approveDeviceAuthorization,
|
|
41185
|
-
approveBackchannelAuth,
|
|
41186
|
-
apiKeysTable,
|
|
41187
|
-
apiKeysRoutes,
|
|
41188
|
-
apiClientsTable,
|
|
41189
|
-
agentRegistrationsTable,
|
|
41190
|
-
agentRegistrationsBunSqlTable,
|
|
41191
|
-
agentRegistrationEndpoints,
|
|
41192
|
-
agentRegistrationDiscoveryMetadata,
|
|
41193
|
-
agentProtectedResourceMetadata,
|
|
41194
|
-
agentOAuthGuideUrl,
|
|
41195
|
-
agentOAuthGuideRoute,
|
|
41196
|
-
agentIdentityRegistrationsTable,
|
|
41197
|
-
agentIdentityRegistrationsBunSqlTable,
|
|
41198
|
-
agentHasScopes,
|
|
41199
|
-
agentDelegationsTable,
|
|
41200
|
-
agentDelegationsBunSqlTable,
|
|
41201
|
-
agentAuthPlugin,
|
|
41202
|
-
agentAuthChallenge,
|
|
41203
|
-
addToSessionRing,
|
|
41204
|
-
accessTokensTable,
|
|
41205
|
-
acceptInvitation,
|
|
41206
|
-
WEBAUTHN_CHALLENGE_COOKIE,
|
|
41207
|
-
VerificationProviderError,
|
|
41208
|
-
STATUS_LIST_TYP,
|
|
41209
|
-
STATUS_LIST_SUB_TYP,
|
|
41210
|
-
REQUEST_URI_PREFIX,
|
|
41211
|
-
PRE_AUTHORIZED_CODE_GRANT,
|
|
41212
|
-
DEFAULT_WEBHOOK_TIMEOUT_MS,
|
|
41213
|
-
DEFAULT_WEBHOOK_RETRY,
|
|
41214
|
-
DEFAULT_WEBAUTHN_SESSION_TTL_MS,
|
|
41215
|
-
DEFAULT_WEBAUTHN_ROUTE,
|
|
41216
|
-
DEFAULT_WEBAUTHN_CHALLENGE_TTL_MS,
|
|
41217
|
-
DEFAULT_VP_ROUTE,
|
|
41218
|
-
DEFAULT_VERIFICATION_TOKEN_TTL_MS,
|
|
41219
|
-
DEFAULT_VCI_ROUTE,
|
|
41220
|
-
DEFAULT_TOTP_MAX_ATTEMPTS,
|
|
41221
|
-
DEFAULT_TOKEN_ROUTE,
|
|
41222
|
-
DEFAULT_STATUS_ROUTE,
|
|
41223
|
-
DEFAULT_SSO_SESSION_TTL_MS,
|
|
41224
|
-
DEFAULT_SSO_ROUTE,
|
|
41225
|
-
DEFAULT_SMS_RESEND_COOLDOWN_MS,
|
|
41226
|
-
DEFAULT_SMS_MAX_ATTEMPTS,
|
|
41227
|
-
DEFAULT_SMS_CODE_TTL_MS,
|
|
41228
|
-
DEFAULT_SMS_CODE_LENGTH,
|
|
41229
|
-
DEFAULT_SETUP_SESSION_TTL_MS,
|
|
41230
|
-
DEFAULT_SCIM_ROUTE,
|
|
41231
|
-
DEFAULT_ROLES_ROUTE,
|
|
41232
|
-
DEFAULT_RESET_TOKEN_TTL_MS,
|
|
41233
|
-
DEFAULT_PUSH_ROUTE,
|
|
41234
|
-
DEFAULT_PORTAL_ROUTE,
|
|
41235
|
-
DEFAULT_PASSWORDLESS_SESSION_TTL_MS,
|
|
41236
|
-
DEFAULT_PASSWORDLESS_ROUTE,
|
|
41237
|
-
DEFAULT_PAR_TTL_MS,
|
|
41238
|
-
DEFAULT_OWNER_ROLES,
|
|
41239
|
-
DEFAULT_OTP_TTL_MS,
|
|
41240
|
-
DEFAULT_OTP_LENGTH,
|
|
41241
|
-
DEFAULT_ORGANIZATIONS_ROUTE,
|
|
41242
|
-
DEFAULT_OIDC_ROUTE,
|
|
41243
|
-
DEFAULT_NATIVE_PUSH_ROUTE,
|
|
41244
|
-
DEFAULT_MFA_SESSION_TTL_MS,
|
|
41245
|
-
DEFAULT_MFA_MANAGEMENT_AUTH_MAX_AGE_MS,
|
|
41246
|
-
DEFAULT_MFA_ISSUER,
|
|
41247
|
-
DEFAULT_MAGIC_LINK_TTL_MS,
|
|
41248
|
-
DEFAULT_INVITATION_TTL_MS,
|
|
41249
|
-
DEFAULT_CREDENTIAL_SESSION_TTL_MS,
|
|
41250
|
-
DEFAULT_BACKUP_CODE_COUNT,
|
|
41251
|
-
DEFAULT_AGENT_RESOURCE_METADATA_ROUTE,
|
|
41252
|
-
CLIENT_ASSERTION_TYPE,
|
|
41253
|
-
CIBA_GRANT_TYPE,
|
|
41254
|
-
AuthIdentityConflictError,
|
|
41255
|
-
AUDIT_EVENT_TYPES,
|
|
41256
|
-
AGENT_IDENTITY_ASSERTION_TYPE,
|
|
41257
|
-
AGENT_IDENTITY_ASSERTION_GRANT_TYPE,
|
|
40895
|
+
ABSOLUTE_NATIVE_AUTH_CLIENTS_ENV,
|
|
41258
40896
|
AGENT_CLAIM_GRANT_TYPE,
|
|
41259
|
-
|
|
40897
|
+
AGENT_IDENTITY_ASSERTION_GRANT_TYPE,
|
|
40898
|
+
AGENT_IDENTITY_ASSERTION_TYPE,
|
|
40899
|
+
AUDIT_EVENT_TYPES,
|
|
40900
|
+
AuthIdentityConflictError,
|
|
40901
|
+
CIBA_GRANT_TYPE,
|
|
40902
|
+
CLIENT_ASSERTION_TYPE,
|
|
40903
|
+
DEFAULT_AGENT_RESOURCE_METADATA_ROUTE,
|
|
40904
|
+
DEFAULT_BACKUP_CODE_COUNT,
|
|
40905
|
+
DEFAULT_CREDENTIAL_SESSION_TTL_MS,
|
|
40906
|
+
DEFAULT_INVITATION_TTL_MS,
|
|
40907
|
+
DEFAULT_MAGIC_LINK_TTL_MS,
|
|
40908
|
+
DEFAULT_MFA_ISSUER,
|
|
40909
|
+
DEFAULT_MFA_MANAGEMENT_AUTH_MAX_AGE_MS,
|
|
40910
|
+
DEFAULT_MFA_SESSION_TTL_MS,
|
|
40911
|
+
DEFAULT_NATIVE_PUSH_ROUTE,
|
|
40912
|
+
DEFAULT_OIDC_ROUTE,
|
|
40913
|
+
DEFAULT_ORGANIZATIONS_ROUTE,
|
|
40914
|
+
DEFAULT_OTP_LENGTH,
|
|
40915
|
+
DEFAULT_OTP_TTL_MS,
|
|
40916
|
+
DEFAULT_OWNER_ROLES,
|
|
40917
|
+
DEFAULT_PAR_TTL_MS,
|
|
40918
|
+
DEFAULT_PASSWORDLESS_ROUTE,
|
|
40919
|
+
DEFAULT_PASSWORDLESS_SESSION_TTL_MS,
|
|
40920
|
+
DEFAULT_PORTAL_ROUTE,
|
|
40921
|
+
DEFAULT_PUSH_ROUTE,
|
|
40922
|
+
DEFAULT_RESET_TOKEN_TTL_MS,
|
|
40923
|
+
DEFAULT_ROLES_ROUTE,
|
|
40924
|
+
DEFAULT_SCIM_ROUTE,
|
|
40925
|
+
DEFAULT_SETUP_SESSION_TTL_MS,
|
|
40926
|
+
DEFAULT_SMS_CODE_LENGTH,
|
|
40927
|
+
DEFAULT_SMS_CODE_TTL_MS,
|
|
40928
|
+
DEFAULT_SMS_MAX_ATTEMPTS,
|
|
40929
|
+
DEFAULT_SMS_RESEND_COOLDOWN_MS,
|
|
40930
|
+
DEFAULT_SSO_ROUTE,
|
|
40931
|
+
DEFAULT_SSO_SESSION_TTL_MS,
|
|
40932
|
+
DEFAULT_STATUS_ROUTE,
|
|
40933
|
+
DEFAULT_TOKEN_ROUTE,
|
|
40934
|
+
DEFAULT_TOTP_MAX_ATTEMPTS,
|
|
40935
|
+
DEFAULT_VCI_ROUTE,
|
|
40936
|
+
DEFAULT_VERIFICATION_TOKEN_TTL_MS,
|
|
40937
|
+
DEFAULT_VP_ROUTE,
|
|
40938
|
+
DEFAULT_WEBAUTHN_CHALLENGE_TTL_MS,
|
|
40939
|
+
DEFAULT_WEBAUTHN_ROUTE,
|
|
40940
|
+
DEFAULT_WEBAUTHN_SESSION_TTL_MS,
|
|
40941
|
+
DEFAULT_WEBHOOK_RETRY,
|
|
40942
|
+
DEFAULT_WEBHOOK_TIMEOUT_MS,
|
|
40943
|
+
PRE_AUTHORIZED_CODE_GRANT,
|
|
40944
|
+
REQUEST_URI_PREFIX,
|
|
40945
|
+
STATUS_LIST_SUB_TYP,
|
|
40946
|
+
STATUS_LIST_TYP,
|
|
40947
|
+
VerificationProviderError,
|
|
40948
|
+
WEBAUTHN_CHALLENGE_COOKIE,
|
|
40949
|
+
acceptInvitation,
|
|
40950
|
+
accessTokensTable,
|
|
40951
|
+
addToSessionRing,
|
|
40952
|
+
agentAuthChallenge,
|
|
40953
|
+
agentAuthPlugin,
|
|
40954
|
+
agentDelegationsBunSqlTable,
|
|
40955
|
+
agentDelegationsTable,
|
|
40956
|
+
agentHasScopes,
|
|
40957
|
+
agentIdentityRegistrationsBunSqlTable,
|
|
40958
|
+
agentIdentityRegistrationsTable,
|
|
40959
|
+
agentOAuthGuideRoute,
|
|
40960
|
+
agentOAuthGuideUrl,
|
|
40961
|
+
agentProtectedResourceMetadata,
|
|
40962
|
+
agentRegistrationDiscoveryMetadata,
|
|
40963
|
+
agentRegistrationEndpoints,
|
|
40964
|
+
agentRegistrationsBunSqlTable,
|
|
40965
|
+
agentRegistrationsTable,
|
|
40966
|
+
apiClientsTable,
|
|
40967
|
+
apiKeysRoutes,
|
|
40968
|
+
apiKeysTable,
|
|
40969
|
+
approveBackchannelAuth,
|
|
40970
|
+
approveDeviceAuthorization,
|
|
40971
|
+
assessAbuse,
|
|
40972
|
+
assessRisk,
|
|
40973
|
+
auditEventsTable,
|
|
40974
|
+
auth,
|
|
40975
|
+
authClientOption,
|
|
40976
|
+
authIntentOption,
|
|
40977
|
+
authProviderOption,
|
|
40978
|
+
base32Decode,
|
|
40979
|
+
base32Encode,
|
|
40980
|
+
beginAgentClaim,
|
|
40981
|
+
blockMigrations,
|
|
40982
|
+
buildClientProviders,
|
|
40983
|
+
buildHolderKeyBindingJwt,
|
|
40984
|
+
buildIssuerMetadata,
|
|
40985
|
+
buildStatusClaim,
|
|
40986
|
+
check6 as check,
|
|
40987
|
+
clientIdMetadataToOAuthClient,
|
|
40988
|
+
completeAgentClaim,
|
|
40989
|
+
complianceRoutes,
|
|
40990
|
+
computeCertThumbprint,
|
|
40991
|
+
constantTimeEqual,
|
|
40992
|
+
consumeBackupCode,
|
|
40993
|
+
consumePushedRequest,
|
|
40994
|
+
consumeSocketTicket,
|
|
40995
|
+
createAbsoluteAuthSyncBridge,
|
|
40996
|
+
createAbuseGuard,
|
|
40997
|
+
createActionPipeline,
|
|
40998
|
+
createAgentIdentityAssertionVerifier,
|
|
40999
|
+
createAgentRegistrationClient,
|
|
41000
|
+
createAgentRegistrationCredentialVerifier,
|
|
41001
|
+
createAnonymousSession,
|
|
41002
|
+
createApiClient,
|
|
41003
|
+
createApiKey,
|
|
41004
|
+
createAuditEmitter,
|
|
41005
|
+
createAuditRedactor,
|
|
41006
|
+
createAuthApplications,
|
|
41007
|
+
createAuthContext,
|
|
41008
|
+
createAuthHtmxRoutes,
|
|
41009
|
+
createBunSqlDrizzleAgentDelegationStore,
|
|
41010
|
+
createBunSqlDrizzleAgentIdentityRegistrationStore,
|
|
41011
|
+
createBunSqlDrizzleAgentRegistrationStore,
|
|
41012
|
+
createClientIdMetadataResolver,
|
|
41013
|
+
createCredentialOffer,
|
|
41014
|
+
createCustomOAuth2Client,
|
|
41015
|
+
createDrizzleAgentDelegationStore,
|
|
41016
|
+
createFederatedTokenStore,
|
|
41017
|
+
createFgaEngine,
|
|
41018
|
+
createInMemoryAccessTokenStore,
|
|
41019
|
+
createInMemoryAgentDelegationStore,
|
|
41020
|
+
createInMemoryAgentIdentityAssertionJtiStore,
|
|
41021
|
+
createInMemoryAgentIdentityRegistrationStore,
|
|
41022
|
+
createInMemoryAgentRegistrationStore,
|
|
41023
|
+
createInMemoryApiClientStore,
|
|
41024
|
+
createInMemoryApiKeyStore,
|
|
41025
|
+
createInMemoryAuditSink,
|
|
41026
|
+
createInMemoryAuthSessionStore,
|
|
41027
|
+
createInMemoryAuthorizationCodeStore,
|
|
41028
|
+
createInMemoryBackchannelAuthStore,
|
|
41029
|
+
createInMemoryCheckCache,
|
|
41030
|
+
createInMemoryClientAssertionJtiStore,
|
|
41031
|
+
createInMemoryClientRegistrationTokenStore,
|
|
41032
|
+
createInMemoryCredentialNonceStore,
|
|
41033
|
+
createInMemoryCredentialOfferStore,
|
|
41034
|
+
createInMemoryCredentialStore,
|
|
41035
|
+
createInMemoryDeviceAuthorizationStore,
|
|
41036
|
+
createInMemoryInitialAccessTokenStore,
|
|
41037
|
+
createInMemoryKnownDeviceStore,
|
|
41038
|
+
createInMemoryLinkedProviderStores,
|
|
41039
|
+
createInMemoryLockoutStore,
|
|
41040
|
+
createInMemoryLoginHistoryStore,
|
|
41041
|
+
createInMemoryLogoutDeliveryStore,
|
|
41042
|
+
createInMemoryMfaStore,
|
|
41043
|
+
createInMemoryOAuthClientStore,
|
|
41044
|
+
createInMemoryOidcRefreshTokenStore,
|
|
41045
|
+
createInMemoryOrganizationStore,
|
|
41046
|
+
createInMemoryPasswordlessTokenStore,
|
|
41047
|
+
createInMemoryPresentationRequestStore,
|
|
41048
|
+
createInMemoryPushedAuthorizationRequestStore,
|
|
41049
|
+
createInMemoryRoleStore,
|
|
41050
|
+
createInMemorySamlServiceProviderStore,
|
|
41051
|
+
createInMemoryScimTokenStore,
|
|
41052
|
+
createInMemorySetupSessionStore,
|
|
41053
|
+
createInMemorySocketTicketStore,
|
|
41054
|
+
createInMemorySsoConnectionStore,
|
|
41055
|
+
createInMemoryVaultStore,
|
|
41056
|
+
createInMemoryWarrantStore,
|
|
41057
|
+
createInMemoryWebAuthnCredentialStore,
|
|
41058
|
+
createInMemoryWebhookDeliveryStore,
|
|
41059
|
+
createLinkedProviderCredentialResolver,
|
|
41060
|
+
createLockoutGuard,
|
|
41061
|
+
createMembershipPermissionResolver,
|
|
41062
|
+
createMfaGate,
|
|
41063
|
+
createNeonAccessTokenStore,
|
|
41064
|
+
createNeonAgentDelegationStore,
|
|
41065
|
+
createNeonAgentIdentityRegistrationStore,
|
|
41066
|
+
createNeonAgentRegistrationStore,
|
|
41067
|
+
createNeonApiClientStore,
|
|
41068
|
+
createNeonApiKeyStore,
|
|
41069
|
+
createNeonAuditSink,
|
|
41070
|
+
createNeonAuthSessionStore,
|
|
41071
|
+
createNeonAuthorizationCodeStore,
|
|
41072
|
+
createNeonBackchannelAuthStore,
|
|
41073
|
+
createNeonClientAssertionJtiStore,
|
|
41074
|
+
createNeonClientRegistrationTokenStore,
|
|
41075
|
+
createNeonCredentialNonceStore,
|
|
41076
|
+
createNeonCredentialOfferStore,
|
|
41077
|
+
createNeonCredentialStore,
|
|
41078
|
+
createNeonDatabase,
|
|
41079
|
+
createNeonDeviceAuthorizationStore,
|
|
41080
|
+
createNeonInitialAccessTokenStore,
|
|
41081
|
+
createNeonKnownDeviceStore,
|
|
41082
|
+
createNeonLinkedProviderStores,
|
|
41083
|
+
createNeonLockoutStore,
|
|
41084
|
+
createNeonLoginHistoryStore,
|
|
41085
|
+
createNeonLogoutDeliveryStore,
|
|
41086
|
+
createNeonMfaStore,
|
|
41087
|
+
createNeonOAuthClientStore,
|
|
41088
|
+
createNeonOAuthLinkedProviderCredentialResolver,
|
|
41089
|
+
createNeonOidcRefreshTokenStore,
|
|
41090
|
+
createNeonOrganizationStore,
|
|
41091
|
+
createNeonPasswordlessTokenStore,
|
|
41092
|
+
createNeonPresentationRequestStore,
|
|
41093
|
+
createNeonPushedAuthorizationRequestStore,
|
|
41094
|
+
createNeonRoleStore,
|
|
41095
|
+
createNeonSamlServiceProviderStore,
|
|
41096
|
+
createNeonScimTokenStore,
|
|
41097
|
+
createNeonSetupSessionStore,
|
|
41098
|
+
createNeonSocketTicketStore,
|
|
41099
|
+
createNeonSsoConnectionStore,
|
|
41100
|
+
createNeonVaultStore,
|
|
41101
|
+
createNeonWarrantStore,
|
|
41102
|
+
createNeonWebAuthnCredentialStore,
|
|
41103
|
+
createNeonWebhookDeliveryStore,
|
|
41104
|
+
createOAuthAccountLinkedProviderCredentialResolver,
|
|
41105
|
+
createOAuthLinkedProviderCredentialResolver,
|
|
41106
|
+
createOidcAgentCredentialVerifier,
|
|
41107
|
+
createOrganization,
|
|
41108
|
+
createPostgresAccessTokenStore,
|
|
41109
|
+
createPostgresAgentDelegationStore,
|
|
41110
|
+
createPostgresAgentIdentityRegistrationStore,
|
|
41111
|
+
createPostgresAgentRegistrationStore,
|
|
41112
|
+
createPostgresApiClientStore,
|
|
41113
|
+
createPostgresApiKeyStore,
|
|
41114
|
+
createPostgresAuditSink,
|
|
41115
|
+
createPostgresAuthorizationCodeStore,
|
|
41116
|
+
createPostgresBackchannelAuthStore,
|
|
41117
|
+
createPostgresClientAssertionJtiStore,
|
|
41118
|
+
createPostgresClientRegistrationTokenStore,
|
|
41119
|
+
createPostgresCredentialNonceStore,
|
|
41120
|
+
createPostgresCredentialOfferStore,
|
|
41121
|
+
createPostgresCredentialStore,
|
|
41122
|
+
createPostgresDeviceAuthorizationStore,
|
|
41123
|
+
createPostgresInitialAccessTokenStore,
|
|
41124
|
+
createPostgresKnownDeviceStore,
|
|
41125
|
+
createPostgresLockoutStore,
|
|
41126
|
+
createPostgresLoginHistoryStore,
|
|
41127
|
+
createPostgresLogoutDeliveryStore,
|
|
41128
|
+
createPostgresMfaStore,
|
|
41129
|
+
createPostgresOAuthClientStore,
|
|
41130
|
+
createPostgresOidcRefreshTokenStore,
|
|
41131
|
+
createPostgresOrganizationStore,
|
|
41132
|
+
createPostgresPasswordlessTokenStore,
|
|
41133
|
+
createPostgresPresentationRequestStore,
|
|
41134
|
+
createPostgresPushedAuthorizationRequestStore,
|
|
41135
|
+
createPostgresRoleStore,
|
|
41136
|
+
createPostgresSamlServiceProviderStore,
|
|
41137
|
+
createPostgresScimTokenStore,
|
|
41138
|
+
createPostgresSetupSessionStore,
|
|
41139
|
+
createPostgresSocketTicketStore,
|
|
41140
|
+
createPostgresSsoConnectionStore,
|
|
41141
|
+
createPostgresVaultStore,
|
|
41142
|
+
createPostgresWarrantStore,
|
|
41143
|
+
createPostgresWebAuthnCredentialStore,
|
|
41144
|
+
createPostgresWebhookDeliveryStore,
|
|
41145
|
+
createPresentationRequest,
|
|
41146
|
+
createRedisAuthSessionStore,
|
|
41147
|
+
createRedisFgaCache,
|
|
41148
|
+
createRedisLockoutStore,
|
|
41149
|
+
createRiskEngine,
|
|
41150
|
+
createScimToken,
|
|
41151
|
+
createSecretCipher,
|
|
41152
|
+
createSetupSession,
|
|
41153
|
+
createSiemLogStream,
|
|
41154
|
+
createStatusList,
|
|
41155
|
+
createTamperEvidentSink,
|
|
41156
|
+
createTotpKeyUri,
|
|
41157
|
+
createVault,
|
|
41158
|
+
createWebhookDispatcher,
|
|
41159
|
+
credentialResetTokensTable,
|
|
41160
|
+
credentialRoutes,
|
|
41161
|
+
credentialVerificationTokensTable,
|
|
41162
|
+
credentialsEmailVerification,
|
|
41163
|
+
credentialsLogin,
|
|
41164
|
+
credentialsPasswordReset,
|
|
41165
|
+
credentialsRegister,
|
|
41166
|
+
credentialsTable,
|
|
41167
|
+
decodeJWT,
|
|
41168
|
+
decodeSessionUserRecord,
|
|
41169
|
+
decryptSecret,
|
|
41170
|
+
decryptTotpSecret,
|
|
41171
|
+
defaultBotClassifier,
|
|
41172
|
+
defineAuthConfig,
|
|
41173
|
+
defineAuthHtmxConfig,
|
|
41174
|
+
defineAuthSettings,
|
|
41175
|
+
defineProvider,
|
|
41176
|
+
defineProvidersConfiguration,
|
|
41177
|
+
defineScimAttributeMap,
|
|
41178
|
+
deleteRegisteredClient,
|
|
41179
|
+
deleteWarrant,
|
|
41180
|
+
denyBackchannelAuth,
|
|
41181
|
+
denyDeviceAuthorization,
|
|
41182
|
+
deriveAuthSyncNamespace,
|
|
41183
|
+
diffScimGroupMembers,
|
|
41184
|
+
discoverAgentRegistration,
|
|
41185
|
+
encryptSecret,
|
|
41186
|
+
encryptTotpSecret,
|
|
41187
|
+
endImpersonation,
|
|
41188
|
+
evaluatePassword,
|
|
41189
|
+
exchangeBackchannelAuth,
|
|
41190
|
+
exchangeClientCredentials,
|
|
41191
|
+
exchangeDeviceCode,
|
|
41192
|
+
exchangePreAuthorizedCode,
|
|
41193
|
+
exchangeToken,
|
|
41194
|
+
exportAuditCsv,
|
|
41195
|
+
extractDpopNonceClaim,
|
|
41196
|
+
extractPropFromIdentity,
|
|
41197
|
+
extractRfc9440ClientCert,
|
|
41198
|
+
fanOutBackchannelLogout,
|
|
41199
|
+
fetchUserInfo,
|
|
41200
|
+
fingerprintDevice,
|
|
41201
|
+
fromBase64Url2 as fromBase64Url,
|
|
41202
|
+
generateAgentOAuthGuide,
|
|
41203
|
+
generateAgentRegistrationGuide,
|
|
41204
|
+
generateBackupCodes,
|
|
41205
|
+
generateEncryptionKey,
|
|
41206
|
+
generateSecureToken,
|
|
41207
|
+
generateSigningKey,
|
|
41208
|
+
generateTotp,
|
|
41209
|
+
generateTotpSecret,
|
|
41210
|
+
getCredentialStatus,
|
|
41211
|
+
getMfaFactors,
|
|
41212
|
+
getOrRefreshFederatedTokens,
|
|
41213
|
+
getRegisteredClient,
|
|
41214
|
+
getStatus,
|
|
41215
|
+
getUserSessionId,
|
|
41216
|
+
handleAgentTokenGrant,
|
|
41217
|
+
hasOrganizationScope,
|
|
41218
|
+
hasScopes,
|
|
41219
|
+
hashAuditEvent,
|
|
41220
|
+
hashPassword,
|
|
41221
|
+
hashToken,
|
|
41222
|
+
importUser,
|
|
41223
|
+
importUsers,
|
|
41224
|
+
initTracing,
|
|
41225
|
+
instantiateUserSession,
|
|
41226
|
+
introspectToken,
|
|
41227
|
+
inviteToOrganization,
|
|
41228
|
+
isAnonymousSession,
|
|
41229
|
+
isAuditEventType,
|
|
41230
|
+
isAuthIntent,
|
|
41231
|
+
isDisposableEmail,
|
|
41232
|
+
isE164Phone,
|
|
41233
|
+
isImpersonating,
|
|
41234
|
+
isJsonValue,
|
|
41235
|
+
isLegacyHash,
|
|
41236
|
+
isMfaEnrolled,
|
|
41237
|
+
isOIDCProviderOption,
|
|
41238
|
+
isPKCEProviderOption,
|
|
41239
|
+
isPasswordCompromised,
|
|
41240
|
+
isRefreshableOAuth2Client,
|
|
41241
|
+
isRefreshableProviderOption,
|
|
41242
|
+
isRevocableOAuth2Client,
|
|
41243
|
+
isRevocableProviderOption,
|
|
41244
|
+
isSafeLocalPath,
|
|
41245
|
+
isTrustedOrigin,
|
|
41246
|
+
isUserSessionId,
|
|
41247
|
+
isValidProviderOption,
|
|
41248
|
+
isValidUser,
|
|
41249
|
+
issueAgentIdentityAssertion,
|
|
41250
|
+
issueAgentServiceAssertion,
|
|
41251
|
+
issueBackchannelAuth,
|
|
41252
|
+
issueCredential,
|
|
41253
|
+
issueDeviceAuthorization,
|
|
41254
|
+
issueSdJwtVc,
|
|
41255
|
+
issueSocketTicket,
|
|
41256
|
+
issueTokenSet,
|
|
41257
|
+
jwkThumbprint,
|
|
41258
|
+
knownDevicesTable,
|
|
41259
|
+
listObjects,
|
|
41260
|
+
listRingSessions,
|
|
41261
|
+
listSubjects,
|
|
41262
|
+
listUserOrganizations,
|
|
41263
|
+
listUserSessions,
|
|
41264
|
+
lockoutsTable,
|
|
41265
|
+
loginHistoryTable,
|
|
41266
|
+
maskPhone,
|
|
41267
|
+
mcpProtectedResourceMetadata,
|
|
41268
|
+
mfaChallenge,
|
|
41269
|
+
mfaEnrollmentsTable,
|
|
41270
|
+
mfaManagementRoutes,
|
|
41271
|
+
mfaRoutes,
|
|
41272
|
+
mfaSmsRoutes,
|
|
41273
|
+
mfaTotpRoutes,
|
|
41274
|
+
mintDpopNonce,
|
|
41275
|
+
mintLogoutToken,
|
|
41276
|
+
nativePushRoutes,
|
|
41277
|
+
oauthBackchannelAuthRequestsTable,
|
|
41278
|
+
oauthClientAssertionJtisTable,
|
|
41279
|
+
oauthClientRegistrationTokensTable,
|
|
41280
|
+
oauthClientsTable,
|
|
41281
|
+
oauthCodesTable,
|
|
41282
|
+
oauthDeviceAuthorizationsTable,
|
|
41283
|
+
oauthInitialAccessTokensTable,
|
|
41284
|
+
oauthLogoutDeliveriesTable,
|
|
41285
|
+
oauthPushedAuthorizationRequestsTable,
|
|
41286
|
+
oauthRefreshTokensTable,
|
|
41287
|
+
oauthSocketTicketsTable,
|
|
41288
|
+
oidcProviderOptions,
|
|
41289
|
+
oidcProviderRoutes,
|
|
41290
|
+
oidcSsoRoutes,
|
|
41291
|
+
organizationInvitationsTable,
|
|
41292
|
+
organizationMembershipsTable,
|
|
41293
|
+
organizationRoutes,
|
|
41294
|
+
organizationsTable,
|
|
41295
|
+
parseAbsoluteNativeAuthClients,
|
|
41296
|
+
parseJsonObject,
|
|
41297
|
+
parsePresentationToken,
|
|
41298
|
+
parseSchema,
|
|
41299
|
+
parseSdJwtVc,
|
|
41300
|
+
parseSignedRequestObject,
|
|
41301
|
+
passwordlessRoutes,
|
|
41302
|
+
passwordlessTokensTable,
|
|
41303
|
+
pkceProviderOptions,
|
|
41304
|
+
portalRoutes,
|
|
41305
|
+
presentSdJwtVc,
|
|
41306
|
+
protectPermissionPlugin,
|
|
41307
|
+
protectRoutePlugin,
|
|
41308
|
+
providerOptions,
|
|
41309
|
+
providers,
|
|
41310
|
+
providersFromEnv,
|
|
41311
|
+
pruneInactiveUsers,
|
|
41312
|
+
pushAuthorizationRequest,
|
|
41313
|
+
pushRoutes,
|
|
41314
|
+
readAuthSyncPartition,
|
|
41315
|
+
readSessionCookie,
|
|
41316
|
+
readSessionRing,
|
|
41317
|
+
readUserInfoBearer,
|
|
41318
|
+
recordLoginAttempt,
|
|
41319
|
+
refreshUserSessions,
|
|
41320
|
+
refreshableProviderOptions,
|
|
41321
|
+
registerClient,
|
|
41322
|
+
rehashCredentialPassword,
|
|
41323
|
+
removeFromSessionRing,
|
|
41324
|
+
requireAuthPlugin,
|
|
41325
|
+
resolveAccessTokenPrincipal,
|
|
41326
|
+
resolveAgentPrincipal,
|
|
41327
|
+
resolveApiPrincipal,
|
|
41328
|
+
resolveAuthHtmxRenderers,
|
|
41329
|
+
resolveClientCert,
|
|
41330
|
+
resolveClientProviderEntry,
|
|
41331
|
+
resolveCookieSecure,
|
|
41332
|
+
resolveOAuthAuthorization,
|
|
41333
|
+
resolveOAuthTokenExpiresAt,
|
|
41334
|
+
resolveOriginAllowed,
|
|
41335
|
+
resolvePermissions,
|
|
41336
|
+
resolvePostLogoutRedirect,
|
|
41337
|
+
resolveProviderClientConfiguration,
|
|
41338
|
+
resolveScimOrganization,
|
|
41339
|
+
resolveSetupSession,
|
|
41340
|
+
revocableProviderOptions,
|
|
41341
|
+
revokeAgentIdentityRegistration,
|
|
41342
|
+
revokeRefreshToken,
|
|
41343
|
+
revokeUserSessions,
|
|
41344
|
+
roleRoutes,
|
|
41345
|
+
rolesTable,
|
|
41346
|
+
rotateMfaEncryptionKey,
|
|
41347
|
+
rotateVaultKey,
|
|
41348
|
+
runEmailBreachScan,
|
|
41349
|
+
runMigrations,
|
|
41350
|
+
samlIdpRoutes,
|
|
41351
|
+
samlServiceProvidersTable,
|
|
41352
|
+
samlSsoRoutes,
|
|
41353
|
+
scimRoutes,
|
|
41354
|
+
scimTokensTable,
|
|
41355
|
+
scopeRequiredProviderOptions,
|
|
41356
|
+
scoreRisk,
|
|
41357
|
+
sessionCleanup,
|
|
41358
|
+
sessionRoutes,
|
|
41359
|
+
sessionStore,
|
|
41360
|
+
setCredentialStatus,
|
|
41361
|
+
setMemberRoles,
|
|
41362
|
+
setupSessionsTable,
|
|
41363
|
+
signJwt,
|
|
41364
|
+
signStatusList,
|
|
41365
|
+
signWebhook,
|
|
41366
|
+
signingVerificationKeys,
|
|
41367
|
+
ssoConnectionsTable,
|
|
41368
|
+
ssoDiscoveryRoute,
|
|
41369
|
+
startAgentRegistration,
|
|
41370
|
+
startImpersonation,
|
|
41371
|
+
statusListRoutes,
|
|
41372
|
+
stepUpPlugin,
|
|
41373
|
+
switchActiveSession,
|
|
41374
|
+
toBase64Url2 as toBase64Url,
|
|
41375
|
+
toPublicJwk,
|
|
41376
|
+
toSafeLocalPath,
|
|
41377
|
+
trustDevice,
|
|
41378
|
+
updateRegisteredClient,
|
|
41379
|
+
userInfoChallengeHeader,
|
|
41380
|
+
userSessionIdTypebox,
|
|
41381
|
+
validateClientIdMetadataDocument,
|
|
41382
|
+
validateEmailDeliverability,
|
|
41383
|
+
validateSession,
|
|
41384
|
+
vaultEntriesTable,
|
|
41385
|
+
vcCredentialNoncesTable,
|
|
41386
|
+
vcCredentialOffersTable,
|
|
41387
|
+
vcPresentationRequestsTable,
|
|
41388
|
+
vciRoutes,
|
|
41389
|
+
verifyAccessToken,
|
|
41390
|
+
verifyApiKey,
|
|
41391
|
+
verifyAuditChain,
|
|
41392
|
+
verifyAuth0Pbkdf2,
|
|
41393
|
+
verifyCertificateBoundToken,
|
|
41394
|
+
verifyClientAssertion,
|
|
41395
|
+
verifyCognitoSha256,
|
|
41396
|
+
verifyDpopNonce,
|
|
41397
|
+
verifyDpopProof,
|
|
41398
|
+
verifyHcaptcha,
|
|
41399
|
+
verifyIdTokenHint,
|
|
41400
|
+
verifyJwt,
|
|
41401
|
+
verifyJwtSignedByClient,
|
|
41402
|
+
verifyJwtWithKeys,
|
|
41403
|
+
verifyOidcAccessToken,
|
|
41404
|
+
verifyPassword,
|
|
41405
|
+
verifyPkce,
|
|
41406
|
+
verifyPresentationResponse,
|
|
41407
|
+
verifyRecaptcha,
|
|
41408
|
+
verifySdJwtVc,
|
|
41409
|
+
verifyStatusListJwt,
|
|
41410
|
+
verifyTotp,
|
|
41411
|
+
verifyTurnstile,
|
|
41412
|
+
verifyWebhookSignature,
|
|
41413
|
+
vpRoutes,
|
|
41414
|
+
warrantKey,
|
|
41415
|
+
warrantsTable,
|
|
41416
|
+
webauthnCredentialsTable,
|
|
41417
|
+
webauthnRoutes,
|
|
41418
|
+
webhookDeliveriesTable,
|
|
41419
|
+
withAbsoluteNativeAuthClients,
|
|
41420
|
+
withMfaFactors,
|
|
41421
|
+
withSpan,
|
|
41422
|
+
writeWarrant
|
|
41260
41423
|
};
|
|
41261
41424
|
|
|
41262
|
-
//# debugId=
|
|
41425
|
+
//# debugId=3F694839DFE8077C64756E2164756E21
|
|
41263
41426
|
//# sourceMappingURL=index.js.map
|