@absolutejs/auth 0.75.6 → 0.75.7
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 +959 -796
- 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));
|
|
@@ -13798,6 +13800,9 @@ var tracer = { startActiveSpan(name, fn) {
|
|
|
13798
13800
|
var ViewBaseConfig = Symbol.for("drizzle:ViewBaseConfig");
|
|
13799
13801
|
|
|
13800
13802
|
// node_modules/drizzle-orm/sql/sql.js
|
|
13803
|
+
var FakePrimitiveParam = class {
|
|
13804
|
+
static [entityKind] = "FakePrimitiveParam";
|
|
13805
|
+
};
|
|
13801
13806
|
function isSQLWrapper(value) {
|
|
13802
13807
|
return value !== null && value !== undefined && typeof value.getSQL === "function";
|
|
13803
13808
|
}
|
|
@@ -17475,6 +17480,16 @@ var UniqueConstraintBuilder = class {
|
|
|
17475
17480
|
return new UniqueConstraint(table, this.columns, this.nullsNotDistinctConfig, this.name);
|
|
17476
17481
|
}
|
|
17477
17482
|
};
|
|
17483
|
+
var UniqueOnConstraintBuilder = class {
|
|
17484
|
+
static [entityKind] = "PgUniqueOnConstraintBuilder";
|
|
17485
|
+
name;
|
|
17486
|
+
constructor(name2) {
|
|
17487
|
+
this.name = name2;
|
|
17488
|
+
}
|
|
17489
|
+
on(...columns) {
|
|
17490
|
+
return new UniqueConstraintBuilder(columns, this.name);
|
|
17491
|
+
}
|
|
17492
|
+
};
|
|
17478
17493
|
var UniqueConstraint = class {
|
|
17479
17494
|
static [entityKind] = "PgUniqueConstraint";
|
|
17480
17495
|
columns;
|
|
@@ -22750,6 +22765,17 @@ var ColumnAliasProxyHandler2 = class {
|
|
|
22750
22765
|
return target[prop];
|
|
22751
22766
|
}
|
|
22752
22767
|
};
|
|
22768
|
+
var RelationTableAliasProxyHandler2 = class {
|
|
22769
|
+
static [entityKind] = "RelationTableAliasProxyHandler";
|
|
22770
|
+
constructor(alias2) {
|
|
22771
|
+
this.alias = alias2;
|
|
22772
|
+
}
|
|
22773
|
+
get(target, prop) {
|
|
22774
|
+
if (prop === "sourceTable")
|
|
22775
|
+
return aliasedTable2(target.sourceTable, this.alias);
|
|
22776
|
+
return target[prop];
|
|
22777
|
+
}
|
|
22778
|
+
};
|
|
22753
22779
|
function aliasedTable2(table, tableAlias) {
|
|
22754
22780
|
return new Proxy(table, new TableAliasProxyHandler2(tableAlias, false, false));
|
|
22755
22781
|
}
|
|
@@ -23233,6 +23259,13 @@ params: ${params}`);
|
|
|
23233
23259
|
this.cause = cause;
|
|
23234
23260
|
}
|
|
23235
23261
|
};
|
|
23262
|
+
var TransactionRollbackError2 = class extends DrizzleError2 {
|
|
23263
|
+
static [entityKind] = "TransactionRollbackError";
|
|
23264
|
+
constructor() {
|
|
23265
|
+
super({ message: "Rollback" });
|
|
23266
|
+
this.name = "TransactionRollbackError";
|
|
23267
|
+
}
|
|
23268
|
+
};
|
|
23236
23269
|
// node_modules/drizzle-orm/relations.js
|
|
23237
23270
|
var Relation2 = class {
|
|
23238
23271
|
static [entityKind] = "RelationV2";
|
|
@@ -23281,6 +23314,53 @@ var One2 = class extends Relation2 {
|
|
|
23281
23314
|
this.optional = config?.optional ?? true;
|
|
23282
23315
|
}
|
|
23283
23316
|
};
|
|
23317
|
+
var Many2 = class extends Relation2 {
|
|
23318
|
+
static [entityKind] = "ManyV2";
|
|
23319
|
+
relationType = "many";
|
|
23320
|
+
constructor(tables, targetTable, targetTableName, config) {
|
|
23321
|
+
super(targetTable, targetTableName);
|
|
23322
|
+
this.config = config;
|
|
23323
|
+
this.alias = config?.alias;
|
|
23324
|
+
this.where = config?.where;
|
|
23325
|
+
if (config?.from)
|
|
23326
|
+
this.sourceColumns = (Array.isArray(config.from) ? config.from : [config.from]).map((it2) => {
|
|
23327
|
+
this.throughTable ??= it2._.through ? tables[it2._.through._.tableName] : undefined;
|
|
23328
|
+
this.sourceColumnTableNames.push(it2._.tableName);
|
|
23329
|
+
return it2._.column;
|
|
23330
|
+
});
|
|
23331
|
+
if (config?.to)
|
|
23332
|
+
this.targetColumns = (Array.isArray(config.to) ? config.to : [config.to]).map((it2) => {
|
|
23333
|
+
this.throughTable ??= it2._.through ? tables[it2._.through._.tableName] : undefined;
|
|
23334
|
+
this.targetColumnTableNames.push(it2._.tableName);
|
|
23335
|
+
return it2._.column;
|
|
23336
|
+
});
|
|
23337
|
+
if (this.throughTable)
|
|
23338
|
+
this.through = {
|
|
23339
|
+
source: (Array.isArray(config?.from) ? config.from : (config?.from) ? [config.from] : []).map((c) => c._.through),
|
|
23340
|
+
target: (Array.isArray(config?.to) ? config.to : (config?.to) ? [config.to] : []).map((c) => c._.through)
|
|
23341
|
+
};
|
|
23342
|
+
}
|
|
23343
|
+
};
|
|
23344
|
+
var AggregatedField2 = class {
|
|
23345
|
+
static [entityKind] = "AggregatedField";
|
|
23346
|
+
table;
|
|
23347
|
+
onTable(table) {
|
|
23348
|
+
this.table = table;
|
|
23349
|
+
return this;
|
|
23350
|
+
}
|
|
23351
|
+
};
|
|
23352
|
+
var Count2 = class extends AggregatedField2 {
|
|
23353
|
+
static [entityKind] = "AggregatedFieldCount";
|
|
23354
|
+
query;
|
|
23355
|
+
getSQL() {
|
|
23356
|
+
if (!this.query) {
|
|
23357
|
+
if (!this.table)
|
|
23358
|
+
throw new Error("Table must be set before building aggregate field");
|
|
23359
|
+
this.query = sql`select count(*) as ${sql.identifier("r")} from ${getTableAsAliasSQL2(this.table)}`.mapWith(Number);
|
|
23360
|
+
}
|
|
23361
|
+
return this.query;
|
|
23362
|
+
}
|
|
23363
|
+
};
|
|
23284
23364
|
var operators2 = {
|
|
23285
23365
|
and,
|
|
23286
23366
|
between,
|
|
@@ -23601,6 +23681,66 @@ function makeJitRqbMapper2({ selection, isFirst, parseJson, parseJsonIfString, r
|
|
|
23601
23681
|
${compiled}
|
|
23602
23682
|
}` });
|
|
23603
23683
|
}
|
|
23684
|
+
var RelationsBuilderTable2 = class {
|
|
23685
|
+
static [entityKind] = "RelationsBuilderTable";
|
|
23686
|
+
_;
|
|
23687
|
+
constructor(table, name2) {
|
|
23688
|
+
this._ = {
|
|
23689
|
+
name: name2,
|
|
23690
|
+
table
|
|
23691
|
+
};
|
|
23692
|
+
}
|
|
23693
|
+
};
|
|
23694
|
+
var RelationsBuilderColumn2 = class {
|
|
23695
|
+
static [entityKind] = "RelationsBuilderColumn";
|
|
23696
|
+
_;
|
|
23697
|
+
constructor(column, tableName, key) {
|
|
23698
|
+
this._ = {
|
|
23699
|
+
tableName,
|
|
23700
|
+
column,
|
|
23701
|
+
key
|
|
23702
|
+
};
|
|
23703
|
+
}
|
|
23704
|
+
through(column) {
|
|
23705
|
+
return new RelationsBuilderJunctionColumn2(this._.column, this._.tableName, this._.key, column);
|
|
23706
|
+
}
|
|
23707
|
+
};
|
|
23708
|
+
var RelationsBuilderJunctionColumn2 = class {
|
|
23709
|
+
static [entityKind] = "RelationsBuilderColumn";
|
|
23710
|
+
_;
|
|
23711
|
+
constructor(column, tableName, key, through) {
|
|
23712
|
+
this._ = {
|
|
23713
|
+
tableName,
|
|
23714
|
+
column,
|
|
23715
|
+
through,
|
|
23716
|
+
key
|
|
23717
|
+
};
|
|
23718
|
+
}
|
|
23719
|
+
};
|
|
23720
|
+
var RelationsHelperStatic2 = class {
|
|
23721
|
+
static [entityKind] = "RelationsHelperStatic";
|
|
23722
|
+
_;
|
|
23723
|
+
constructor(tables) {
|
|
23724
|
+
this._ = { tables };
|
|
23725
|
+
const one = {};
|
|
23726
|
+
const many = {};
|
|
23727
|
+
for (const [tableName, table] of Object.entries(tables)) {
|
|
23728
|
+
one[tableName] = (config) => {
|
|
23729
|
+
return new One2(tables, table, tableName, config);
|
|
23730
|
+
};
|
|
23731
|
+
many[tableName] = (config) => {
|
|
23732
|
+
return new Many2(tables, table, tableName, config);
|
|
23733
|
+
};
|
|
23734
|
+
}
|
|
23735
|
+
this.one = one;
|
|
23736
|
+
this.many = many;
|
|
23737
|
+
}
|
|
23738
|
+
one;
|
|
23739
|
+
many;
|
|
23740
|
+
aggs = { count() {
|
|
23741
|
+
return new Count2;
|
|
23742
|
+
} };
|
|
23743
|
+
};
|
|
23604
23744
|
function fieldSelectionToSQL2(table, target) {
|
|
23605
23745
|
const field = table[TableColumns][target];
|
|
23606
23746
|
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)}`;
|
|
@@ -25059,6 +25199,29 @@ var PgAsyncSession2 = class extends PgSession2 {
|
|
|
25059
25199
|
});
|
|
25060
25200
|
}
|
|
25061
25201
|
};
|
|
25202
|
+
var PgAsyncTransaction2 = class extends PgAsyncDatabase2 {
|
|
25203
|
+
static [entityKind] = "PgAsyncTransaction";
|
|
25204
|
+
constructor(dialect, session, relations, nestedIndex = 0, parseRqbJson) {
|
|
25205
|
+
super(dialect, session, relations, parseRqbJson);
|
|
25206
|
+
this.nestedIndex = nestedIndex;
|
|
25207
|
+
}
|
|
25208
|
+
rollback() {
|
|
25209
|
+
throw new TransactionRollbackError2;
|
|
25210
|
+
}
|
|
25211
|
+
getTransactionConfigSQL(config) {
|
|
25212
|
+
const chunks = [];
|
|
25213
|
+
if (config.isolationLevel)
|
|
25214
|
+
chunks.push(`isolation level ${config.isolationLevel}`);
|
|
25215
|
+
if (config.accessMode)
|
|
25216
|
+
chunks.push(config.accessMode);
|
|
25217
|
+
if (typeof config.deferrable === "boolean")
|
|
25218
|
+
chunks.push(config.deferrable ? "deferrable" : "not deferrable");
|
|
25219
|
+
return sql.raw(chunks.join(" "));
|
|
25220
|
+
}
|
|
25221
|
+
setTransaction(config) {
|
|
25222
|
+
return this.session.execute(sql`set transaction ${this.getTransactionConfigSQL(config)}`);
|
|
25223
|
+
}
|
|
25224
|
+
};
|
|
25062
25225
|
|
|
25063
25226
|
// node_modules/drizzle-orm/neon-http/session.js
|
|
25064
25227
|
var NeonHttpSession = class extends PgAsyncSession2 {
|
|
@@ -25518,12 +25681,12 @@ var providersFromEnv = (selection, env = process.env) => {
|
|
|
25518
25681
|
// node_modules/typebox/build/system/memory/memory.mjs
|
|
25519
25682
|
var exports_memory = {};
|
|
25520
25683
|
__export(exports_memory, {
|
|
25521
|
-
|
|
25522
|
-
Metrics: () => Metrics,
|
|
25523
|
-
Discard: () => Discard,
|
|
25524
|
-
Create: () => Create,
|
|
25684
|
+
Assign: () => Assign,
|
|
25525
25685
|
Clone: () => Clone,
|
|
25526
|
-
|
|
25686
|
+
Create: () => Create,
|
|
25687
|
+
Discard: () => Discard,
|
|
25688
|
+
Metrics: () => Metrics,
|
|
25689
|
+
Update: () => Update
|
|
25527
25690
|
});
|
|
25528
25691
|
|
|
25529
25692
|
// node_modules/typebox/build/system/memory/metrics.mjs
|
|
@@ -25543,44 +25706,44 @@ function Assign(left, right) {
|
|
|
25543
25706
|
// node_modules/typebox/build/guard/guard.mjs
|
|
25544
25707
|
var exports_guard = {};
|
|
25545
25708
|
__export(exports_guard, {
|
|
25546
|
-
|
|
25547
|
-
Symbols: () => Symbols,
|
|
25548
|
-
SomeAll: () => SomeAll,
|
|
25549
|
-
Some: () => Some,
|
|
25550
|
-
ShiftLeft: () => ShiftLeft,
|
|
25551
|
-
Keys: () => Keys,
|
|
25552
|
-
IsValueLike: () => IsValueLike,
|
|
25553
|
-
IsUnsafePropertyKey: () => IsUnsafePropertyKey,
|
|
25554
|
-
IsUndefined: () => IsUndefined,
|
|
25555
|
-
IsSymbol: () => IsSymbol,
|
|
25556
|
-
IsString: () => IsString,
|
|
25557
|
-
IsObjectNotArray: () => IsObjectNotArray,
|
|
25558
|
-
IsObject: () => IsObject,
|
|
25559
|
-
IsNumber: () => IsNumber,
|
|
25560
|
-
IsNull: () => IsNull,
|
|
25561
|
-
IsMultipleOf: () => IsMultipleOf,
|
|
25562
|
-
IsMinLength: () => IsMinLength2,
|
|
25563
|
-
IsMaxLength: () => IsMaxLength2,
|
|
25564
|
-
IsLessThan: () => IsLessThan,
|
|
25565
|
-
IsLessEqualThan: () => IsLessEqualThan,
|
|
25566
|
-
IsInteger: () => IsInteger,
|
|
25567
|
-
IsGreaterThan: () => IsGreaterThan,
|
|
25568
|
-
IsGreaterEqualThan: () => IsGreaterEqualThan,
|
|
25569
|
-
IsFunction: () => IsFunction,
|
|
25570
|
-
IsEqual: () => IsEqual,
|
|
25571
|
-
IsDeepEqual: () => IsDeepEqual,
|
|
25572
|
-
IsConstructor: () => IsConstructor,
|
|
25573
|
-
IsClassInstance: () => IsClassInstance,
|
|
25574
|
-
IsBoolean: () => IsBoolean,
|
|
25575
|
-
IsBigInt: () => IsBigInt,
|
|
25576
|
-
IsArray: () => IsArray,
|
|
25577
|
-
HasPropertyKey: () => HasPropertyKey,
|
|
25578
|
-
GraphemeCount: () => GraphemeCount2,
|
|
25579
|
-
EveryAll: () => EveryAll,
|
|
25580
|
-
Every: () => Every,
|
|
25581
|
-
EntriesRegExp: () => EntriesRegExp,
|
|
25709
|
+
Counted: () => Counted,
|
|
25582
25710
|
Entries: () => Entries,
|
|
25583
|
-
|
|
25711
|
+
EntriesRegExp: () => EntriesRegExp,
|
|
25712
|
+
Every: () => Every,
|
|
25713
|
+
EveryAll: () => EveryAll,
|
|
25714
|
+
GraphemeCount: () => GraphemeCount2,
|
|
25715
|
+
HasPropertyKey: () => HasPropertyKey,
|
|
25716
|
+
IsArray: () => IsArray,
|
|
25717
|
+
IsBigInt: () => IsBigInt,
|
|
25718
|
+
IsBoolean: () => IsBoolean,
|
|
25719
|
+
IsClassInstance: () => IsClassInstance,
|
|
25720
|
+
IsConstructor: () => IsConstructor,
|
|
25721
|
+
IsDeepEqual: () => IsDeepEqual,
|
|
25722
|
+
IsEqual: () => IsEqual,
|
|
25723
|
+
IsFunction: () => IsFunction,
|
|
25724
|
+
IsGreaterEqualThan: () => IsGreaterEqualThan,
|
|
25725
|
+
IsGreaterThan: () => IsGreaterThan,
|
|
25726
|
+
IsInteger: () => IsInteger,
|
|
25727
|
+
IsLessEqualThan: () => IsLessEqualThan,
|
|
25728
|
+
IsLessThan: () => IsLessThan,
|
|
25729
|
+
IsMaxLength: () => IsMaxLength2,
|
|
25730
|
+
IsMinLength: () => IsMinLength2,
|
|
25731
|
+
IsMultipleOf: () => IsMultipleOf,
|
|
25732
|
+
IsNull: () => IsNull,
|
|
25733
|
+
IsNumber: () => IsNumber,
|
|
25734
|
+
IsObject: () => IsObject,
|
|
25735
|
+
IsObjectNotArray: () => IsObjectNotArray,
|
|
25736
|
+
IsString: () => IsString,
|
|
25737
|
+
IsSymbol: () => IsSymbol,
|
|
25738
|
+
IsUndefined: () => IsUndefined,
|
|
25739
|
+
IsUnsafePropertyKey: () => IsUnsafePropertyKey,
|
|
25740
|
+
IsValueLike: () => IsValueLike,
|
|
25741
|
+
Keys: () => Keys,
|
|
25742
|
+
ShiftLeft: () => ShiftLeft,
|
|
25743
|
+
Some: () => Some,
|
|
25744
|
+
SomeAll: () => SomeAll,
|
|
25745
|
+
Symbols: () => Symbols,
|
|
25746
|
+
Values: () => Values
|
|
25584
25747
|
});
|
|
25585
25748
|
|
|
25586
25749
|
// node_modules/typebox/build/guard/string.mjs
|
|
@@ -25859,25 +26022,25 @@ function IsDeepEqual(left, right) {
|
|
|
25859
26022
|
// node_modules/typebox/build/guard/globals.mjs
|
|
25860
26023
|
var exports_globals = {};
|
|
25861
26024
|
__export(exports_globals, {
|
|
25862
|
-
|
|
25863
|
-
IsUint8Array: () => IsUint8Array,
|
|
25864
|
-
IsUint32Array: () => IsUint32Array,
|
|
25865
|
-
IsUint16Array: () => IsUint16Array,
|
|
25866
|
-
IsTypeArray: () => IsTypeArray,
|
|
25867
|
-
IsString: () => IsString2,
|
|
25868
|
-
IsSet: () => IsSet,
|
|
25869
|
-
IsRegExp: () => IsRegExp,
|
|
25870
|
-
IsNumber: () => IsNumber2,
|
|
25871
|
-
IsMap: () => IsMap,
|
|
25872
|
-
IsInt8Array: () => IsInt8Array,
|
|
25873
|
-
IsInt32Array: () => IsInt32Array,
|
|
25874
|
-
IsInt16Array: () => IsInt16Array,
|
|
25875
|
-
IsFloat64Array: () => IsFloat64Array,
|
|
25876
|
-
IsFloat32Array: () => IsFloat32Array,
|
|
25877
|
-
IsDate: () => IsDate,
|
|
25878
|
-
IsBoolean: () => IsBoolean2,
|
|
26025
|
+
IsBigInt64Array: () => IsBigInt64Array,
|
|
25879
26026
|
IsBigUint64Array: () => IsBigUint64Array,
|
|
25880
|
-
|
|
26027
|
+
IsBoolean: () => IsBoolean2,
|
|
26028
|
+
IsDate: () => IsDate,
|
|
26029
|
+
IsFloat32Array: () => IsFloat32Array,
|
|
26030
|
+
IsFloat64Array: () => IsFloat64Array,
|
|
26031
|
+
IsInt16Array: () => IsInt16Array,
|
|
26032
|
+
IsInt32Array: () => IsInt32Array,
|
|
26033
|
+
IsInt8Array: () => IsInt8Array,
|
|
26034
|
+
IsMap: () => IsMap,
|
|
26035
|
+
IsNumber: () => IsNumber2,
|
|
26036
|
+
IsRegExp: () => IsRegExp,
|
|
26037
|
+
IsSet: () => IsSet,
|
|
26038
|
+
IsString: () => IsString2,
|
|
26039
|
+
IsTypeArray: () => IsTypeArray,
|
|
26040
|
+
IsUint16Array: () => IsUint16Array,
|
|
26041
|
+
IsUint32Array: () => IsUint32Array,
|
|
26042
|
+
IsUint8Array: () => IsUint8Array,
|
|
26043
|
+
IsUint8ClampedArray: () => IsUint8ClampedArray
|
|
25881
26044
|
});
|
|
25882
26045
|
function IsBoolean2(value) {
|
|
25883
26046
|
return value instanceof Boolean;
|
|
@@ -26001,9 +26164,9 @@ function Clone(value) {
|
|
|
26001
26164
|
// node_modules/typebox/build/system/settings/settings.mjs
|
|
26002
26165
|
var exports_settings = {};
|
|
26003
26166
|
__export(exports_settings, {
|
|
26004
|
-
|
|
26167
|
+
Get: () => Get,
|
|
26005
26168
|
Reset: () => Reset,
|
|
26006
|
-
|
|
26169
|
+
Set: () => Set2
|
|
26007
26170
|
});
|
|
26008
26171
|
var settings = {
|
|
26009
26172
|
immutableTypes: false,
|
|
@@ -26336,8 +26499,8 @@ function IntersectOptions(type) {
|
|
|
26336
26499
|
// node_modules/typebox/build/system/hashing/hash.mjs
|
|
26337
26500
|
var exports_hash = {};
|
|
26338
26501
|
__export(exports_hash, {
|
|
26339
|
-
|
|
26340
|
-
|
|
26502
|
+
Hash: () => Hash,
|
|
26503
|
+
HashCode: () => HashCode
|
|
26341
26504
|
});
|
|
26342
26505
|
|
|
26343
26506
|
// node_modules/typebox/build/system/unreachable/unreachable.mjs
|
|
@@ -27681,8 +27844,8 @@ function Optional2(value, input) {
|
|
|
27681
27844
|
function IsDiscard(discard2, input) {
|
|
27682
27845
|
return discard2.includes(input);
|
|
27683
27846
|
}
|
|
27684
|
-
function
|
|
27685
|
-
return Match2(Take(allowed, input), (Char, Rest2) => IsDiscard(discard2, Char) ?
|
|
27847
|
+
function Many3(allowed, discard2, input, result = "") {
|
|
27848
|
+
return Match2(Take(allowed, input), (Char, Rest2) => IsDiscard(discard2, Char) ? Many3(allowed, discard2, Rest2, result) : Many3(allowed, discard2, Rest2, `${result}${Char}`), () => [result, input]);
|
|
27686
27849
|
}
|
|
27687
27850
|
|
|
27688
27851
|
// node_modules/typebox/build/type/script/token/unsigned_integer.mjs
|
|
@@ -27691,7 +27854,7 @@ function TakeNonZero(input) {
|
|
|
27691
27854
|
}
|
|
27692
27855
|
var AllowedDigits = [...Digit, UnderScore];
|
|
27693
27856
|
function TakeDigits(input) {
|
|
27694
|
-
return
|
|
27857
|
+
return Many3(AllowedDigits, [UnderScore], input);
|
|
27695
27858
|
}
|
|
27696
27859
|
function TakeUnsignedInteger(input) {
|
|
27697
27860
|
return Match2(Take([Zero], input), (Zero2, ZeroRest) => [Zero2, ZeroRest], () => Match2(TakeNonZero(input), (NonZero2, NonZeroRest) => Match2(TakeDigits(NonZeroRest), (Digits, DigitsRest) => [`${NonZero2}${Digits}`, DigitsRest], () => []), () => []));
|
|
@@ -27746,7 +27909,7 @@ function IsLeadingDot(input) {
|
|
|
27746
27909
|
return IsMatch(Take([Dot], input));
|
|
27747
27910
|
}
|
|
27748
27911
|
function TakeFractional(input) {
|
|
27749
|
-
return Match2(
|
|
27912
|
+
return Match2(Many3(AllowedDigits2, [UnderScore], input), (Digits, DigitsRest) => IsEqual(Digits, "") ? [] : [Digits, DigitsRest], () => []);
|
|
27750
27913
|
}
|
|
27751
27914
|
function LeadingDot(input) {
|
|
27752
27915
|
return Match2(Take([Dot], input), (Dot2, DotRest) => Match2(TakeFractional(DotRest), (Fractional, FractionalRest) => [`0${Dot2}${Fractional}`, FractionalRest], () => []), () => []);
|
|
@@ -28044,14 +28207,14 @@ function IsTemplateLiteral(value) {
|
|
|
28044
28207
|
// node_modules/typebox/build/type/extends/result.mjs
|
|
28045
28208
|
var exports_result = {};
|
|
28046
28209
|
__export(exports_result, {
|
|
28047
|
-
|
|
28048
|
-
IsExtendsUnion: () => IsExtendsUnion,
|
|
28049
|
-
IsExtendsTrueLike: () => IsExtendsTrueLike,
|
|
28050
|
-
IsExtendsTrue: () => IsExtendsTrue,
|
|
28051
|
-
IsExtendsFalse: () => IsExtendsFalse,
|
|
28052
|
-
ExtendsUnion: () => ExtendsUnion,
|
|
28210
|
+
ExtendsFalse: () => ExtendsFalse,
|
|
28053
28211
|
ExtendsTrue: () => ExtendsTrue,
|
|
28054
|
-
|
|
28212
|
+
ExtendsUnion: () => ExtendsUnion,
|
|
28213
|
+
IsExtendsFalse: () => IsExtendsFalse,
|
|
28214
|
+
IsExtendsTrue: () => IsExtendsTrue,
|
|
28215
|
+
IsExtendsTrueLike: () => IsExtendsTrueLike,
|
|
28216
|
+
IsExtendsUnion: () => IsExtendsUnion,
|
|
28217
|
+
Match: () => Match3
|
|
28055
28218
|
});
|
|
28056
28219
|
function ExtendsUnion(inferred) {
|
|
28057
28220
|
return exports_memory.Create({ ["~kind"]: "ExtendsUnion" }, { inferred });
|
|
@@ -29862,123 +30025,123 @@ function Script2(...args) {
|
|
|
29862
30025
|
// node_modules/typebox/build/typebox.mjs
|
|
29863
30026
|
var exports_typebox = {};
|
|
29864
30027
|
__export(exports_typebox, {
|
|
29865
|
-
|
|
29866
|
-
Void: () => Void,
|
|
29867
|
-
Uppercase: () => Uppercase,
|
|
29868
|
-
Unsafe: () => Unsafe,
|
|
29869
|
-
Unknown: () => Unknown,
|
|
29870
|
-
Union: () => Union,
|
|
29871
|
-
Undefined: () => Undefined,
|
|
29872
|
-
Uncapitalize: () => Uncapitalize,
|
|
29873
|
-
Tuple: () => Tuple,
|
|
29874
|
-
This: () => This,
|
|
29875
|
-
TemplateLiteral: () => TemplateLiteral2,
|
|
29876
|
-
Symbol: () => Symbol2,
|
|
29877
|
-
String: () => String2,
|
|
29878
|
-
Script: () => Script2,
|
|
29879
|
-
ReturnType: () => ReturnType,
|
|
29880
|
-
Rest: () => Rest,
|
|
29881
|
-
Required: () => Required,
|
|
29882
|
-
Refine: () => Refine,
|
|
29883
|
-
Ref: () => Ref,
|
|
29884
|
-
RecordValue: () => RecordValue,
|
|
29885
|
-
RecordPattern: () => RecordPattern,
|
|
29886
|
-
RecordKey: () => RecordKey,
|
|
29887
|
-
Record: () => Record,
|
|
29888
|
-
ReadonlyType: () => ReadonlyType,
|
|
29889
|
-
ReadonlyObject: () => ReadonlyObject,
|
|
29890
|
-
Readonly: () => Readonly,
|
|
29891
|
-
Pick: () => Pick,
|
|
29892
|
-
Partial: () => Partial,
|
|
29893
|
-
Parameters: () => Parameters,
|
|
29894
|
-
Parameter: () => Parameter,
|
|
29895
|
-
Optional: () => Optional,
|
|
29896
|
-
Omit: () => Omit,
|
|
29897
|
-
Object: () => _Object_,
|
|
29898
|
-
Number: () => Number2,
|
|
29899
|
-
Null: () => Null,
|
|
29900
|
-
NonNullable: () => NonNullable,
|
|
29901
|
-
Never: () => Never,
|
|
29902
|
-
Module: () => Module2,
|
|
29903
|
-
Mapped: () => Mapped,
|
|
29904
|
-
Lowercase: () => Lowercase,
|
|
29905
|
-
Literal: () => Literal,
|
|
29906
|
-
KeyOf: () => KeyOf2,
|
|
29907
|
-
IsVoid: () => IsVoid,
|
|
29908
|
-
IsUnsafe: () => IsUnsafe,
|
|
29909
|
-
IsUnknown: () => IsUnknown,
|
|
29910
|
-
IsUnion: () => IsUnion,
|
|
29911
|
-
IsUndefined: () => IsUndefined2,
|
|
29912
|
-
IsTuple: () => IsTuple,
|
|
29913
|
-
IsThis: () => IsThis,
|
|
29914
|
-
IsTemplateLiteral: () => IsTemplateLiteral,
|
|
29915
|
-
IsSymbol: () => IsSymbol2,
|
|
29916
|
-
IsString: () => IsString3,
|
|
29917
|
-
IsSchema: () => IsSchema,
|
|
29918
|
-
IsRest: () => IsRest,
|
|
29919
|
-
IsRefine: () => IsRefine,
|
|
29920
|
-
IsRef: () => IsRef,
|
|
29921
|
-
IsRecord: () => IsRecord,
|
|
29922
|
-
IsReadonly: () => IsReadonly,
|
|
29923
|
-
IsParameter: () => IsParameter,
|
|
29924
|
-
IsOptional: () => IsOptional,
|
|
29925
|
-
IsObject: () => IsObject2,
|
|
29926
|
-
IsNumber: () => IsNumber3,
|
|
29927
|
-
IsNull: () => IsNull2,
|
|
29928
|
-
IsNever: () => IsNever,
|
|
29929
|
-
IsLiteral: () => IsLiteral,
|
|
29930
|
-
IsKind: () => IsKind,
|
|
29931
|
-
IsIntersect: () => IsIntersect,
|
|
29932
|
-
IsInteger: () => IsInteger2,
|
|
29933
|
-
IsInfer: () => IsInfer,
|
|
29934
|
-
IsImmutable: () => IsImmutable,
|
|
29935
|
-
IsIdentifier: () => IsIdentifier,
|
|
29936
|
-
IsGeneric: () => IsGeneric,
|
|
29937
|
-
IsFunction: () => IsFunction2,
|
|
29938
|
-
IsEnumValue: () => IsEnumValue,
|
|
29939
|
-
IsEnum: () => IsEnum,
|
|
29940
|
-
IsDependent: () => IsDependent,
|
|
29941
|
-
IsCyclic: () => IsCyclic,
|
|
29942
|
-
IsConstructor: () => IsConstructor2,
|
|
29943
|
-
IsCodec: () => IsCodec,
|
|
29944
|
-
IsCall: () => IsCall,
|
|
29945
|
-
IsBoolean: () => IsBoolean3,
|
|
29946
|
-
IsBigInt: () => IsBigInt2,
|
|
29947
|
-
IsArray: () => IsArray2,
|
|
29948
|
-
IsAny: () => IsAny,
|
|
29949
|
-
Intersect: () => Intersect,
|
|
29950
|
-
Interface: () => Interface,
|
|
29951
|
-
Integer: () => Integer,
|
|
29952
|
-
Instantiate: () => Instantiate,
|
|
29953
|
-
InstanceType: () => InstanceType,
|
|
29954
|
-
Infer: () => Infer,
|
|
29955
|
-
Index: () => Index2,
|
|
29956
|
-
Immutable: () => Immutable,
|
|
29957
|
-
Identifier: () => Identifier,
|
|
29958
|
-
Generic: () => Generic,
|
|
29959
|
-
Function: () => _Function_,
|
|
29960
|
-
Extract: () => Extract,
|
|
29961
|
-
ExtendsResult: () => exports_result,
|
|
29962
|
-
Extends: () => Extends,
|
|
29963
|
-
Exclude: () => Exclude,
|
|
29964
|
-
Evaluate: () => Evaluate,
|
|
29965
|
-
Enum: () => Enum,
|
|
29966
|
-
EncodeBuilder: () => EncodeBuilder,
|
|
29967
|
-
Encode: () => Encode,
|
|
29968
|
-
Dependent: () => Dependent,
|
|
29969
|
-
DecodeBuilder: () => DecodeBuilder,
|
|
29970
|
-
Decode: () => Decode,
|
|
29971
|
-
Cyclic: () => Cyclic,
|
|
29972
|
-
ConstructorParameters: () => ConstructorParameters,
|
|
29973
|
-
Constructor: () => Constructor,
|
|
29974
|
-
Conditional: () => Conditional,
|
|
29975
|
-
Codec: () => Codec,
|
|
29976
|
-
Capitalize: () => Capitalize,
|
|
29977
|
-
Call: () => Call,
|
|
29978
|
-
Boolean: () => Boolean2,
|
|
29979
|
-
BigInt: () => BigInt2,
|
|
30028
|
+
Any: () => Any,
|
|
29980
30029
|
Array: () => _Array_,
|
|
29981
|
-
|
|
30030
|
+
BigInt: () => BigInt2,
|
|
30031
|
+
Boolean: () => Boolean2,
|
|
30032
|
+
Call: () => Call,
|
|
30033
|
+
Capitalize: () => Capitalize,
|
|
30034
|
+
Codec: () => Codec,
|
|
30035
|
+
Conditional: () => Conditional,
|
|
30036
|
+
Constructor: () => Constructor,
|
|
30037
|
+
ConstructorParameters: () => ConstructorParameters,
|
|
30038
|
+
Cyclic: () => Cyclic,
|
|
30039
|
+
Decode: () => Decode,
|
|
30040
|
+
DecodeBuilder: () => DecodeBuilder,
|
|
30041
|
+
Dependent: () => Dependent,
|
|
30042
|
+
Encode: () => Encode,
|
|
30043
|
+
EncodeBuilder: () => EncodeBuilder,
|
|
30044
|
+
Enum: () => Enum,
|
|
30045
|
+
Evaluate: () => Evaluate,
|
|
30046
|
+
Exclude: () => Exclude,
|
|
30047
|
+
Extends: () => Extends,
|
|
30048
|
+
ExtendsResult: () => exports_result,
|
|
30049
|
+
Extract: () => Extract,
|
|
30050
|
+
Function: () => _Function_,
|
|
30051
|
+
Generic: () => Generic,
|
|
30052
|
+
Identifier: () => Identifier,
|
|
30053
|
+
Immutable: () => Immutable,
|
|
30054
|
+
Index: () => Index2,
|
|
30055
|
+
Infer: () => Infer,
|
|
30056
|
+
InstanceType: () => InstanceType,
|
|
30057
|
+
Instantiate: () => Instantiate,
|
|
30058
|
+
Integer: () => Integer,
|
|
30059
|
+
Interface: () => Interface,
|
|
30060
|
+
Intersect: () => Intersect,
|
|
30061
|
+
IsAny: () => IsAny,
|
|
30062
|
+
IsArray: () => IsArray2,
|
|
30063
|
+
IsBigInt: () => IsBigInt2,
|
|
30064
|
+
IsBoolean: () => IsBoolean3,
|
|
30065
|
+
IsCall: () => IsCall,
|
|
30066
|
+
IsCodec: () => IsCodec,
|
|
30067
|
+
IsConstructor: () => IsConstructor2,
|
|
30068
|
+
IsCyclic: () => IsCyclic,
|
|
30069
|
+
IsDependent: () => IsDependent,
|
|
30070
|
+
IsEnum: () => IsEnum,
|
|
30071
|
+
IsEnumValue: () => IsEnumValue,
|
|
30072
|
+
IsFunction: () => IsFunction2,
|
|
30073
|
+
IsGeneric: () => IsGeneric,
|
|
30074
|
+
IsIdentifier: () => IsIdentifier,
|
|
30075
|
+
IsImmutable: () => IsImmutable,
|
|
30076
|
+
IsInfer: () => IsInfer,
|
|
30077
|
+
IsInteger: () => IsInteger2,
|
|
30078
|
+
IsIntersect: () => IsIntersect,
|
|
30079
|
+
IsKind: () => IsKind,
|
|
30080
|
+
IsLiteral: () => IsLiteral,
|
|
30081
|
+
IsNever: () => IsNever,
|
|
30082
|
+
IsNull: () => IsNull2,
|
|
30083
|
+
IsNumber: () => IsNumber3,
|
|
30084
|
+
IsObject: () => IsObject2,
|
|
30085
|
+
IsOptional: () => IsOptional,
|
|
30086
|
+
IsParameter: () => IsParameter,
|
|
30087
|
+
IsReadonly: () => IsReadonly,
|
|
30088
|
+
IsRecord: () => IsRecord,
|
|
30089
|
+
IsRef: () => IsRef,
|
|
30090
|
+
IsRefine: () => IsRefine,
|
|
30091
|
+
IsRest: () => IsRest,
|
|
30092
|
+
IsSchema: () => IsSchema,
|
|
30093
|
+
IsString: () => IsString3,
|
|
30094
|
+
IsSymbol: () => IsSymbol2,
|
|
30095
|
+
IsTemplateLiteral: () => IsTemplateLiteral,
|
|
30096
|
+
IsThis: () => IsThis,
|
|
30097
|
+
IsTuple: () => IsTuple,
|
|
30098
|
+
IsUndefined: () => IsUndefined2,
|
|
30099
|
+
IsUnion: () => IsUnion,
|
|
30100
|
+
IsUnknown: () => IsUnknown,
|
|
30101
|
+
IsUnsafe: () => IsUnsafe,
|
|
30102
|
+
IsVoid: () => IsVoid,
|
|
30103
|
+
KeyOf: () => KeyOf2,
|
|
30104
|
+
Literal: () => Literal,
|
|
30105
|
+
Lowercase: () => Lowercase,
|
|
30106
|
+
Mapped: () => Mapped,
|
|
30107
|
+
Module: () => Module2,
|
|
30108
|
+
Never: () => Never,
|
|
30109
|
+
NonNullable: () => NonNullable,
|
|
30110
|
+
Null: () => Null,
|
|
30111
|
+
Number: () => Number2,
|
|
30112
|
+
Object: () => _Object_,
|
|
30113
|
+
Omit: () => Omit,
|
|
30114
|
+
Optional: () => Optional,
|
|
30115
|
+
Parameter: () => Parameter,
|
|
30116
|
+
Parameters: () => Parameters,
|
|
30117
|
+
Partial: () => Partial,
|
|
30118
|
+
Pick: () => Pick,
|
|
30119
|
+
Readonly: () => Readonly,
|
|
30120
|
+
ReadonlyObject: () => ReadonlyObject,
|
|
30121
|
+
ReadonlyType: () => ReadonlyType,
|
|
30122
|
+
Record: () => Record,
|
|
30123
|
+
RecordKey: () => RecordKey,
|
|
30124
|
+
RecordPattern: () => RecordPattern,
|
|
30125
|
+
RecordValue: () => RecordValue,
|
|
30126
|
+
Ref: () => Ref,
|
|
30127
|
+
Refine: () => Refine,
|
|
30128
|
+
Required: () => Required,
|
|
30129
|
+
Rest: () => Rest,
|
|
30130
|
+
ReturnType: () => ReturnType,
|
|
30131
|
+
Script: () => Script2,
|
|
30132
|
+
String: () => String2,
|
|
30133
|
+
Symbol: () => Symbol2,
|
|
30134
|
+
TemplateLiteral: () => TemplateLiteral2,
|
|
30135
|
+
This: () => This,
|
|
30136
|
+
Tuple: () => Tuple,
|
|
30137
|
+
Uncapitalize: () => Uncapitalize,
|
|
30138
|
+
Undefined: () => Undefined,
|
|
30139
|
+
Union: () => Union,
|
|
30140
|
+
Unknown: () => Unknown,
|
|
30141
|
+
Unsafe: () => Unsafe,
|
|
30142
|
+
Uppercase: () => Uppercase,
|
|
30143
|
+
Void: () => Void,
|
|
30144
|
+
With: () => With2
|
|
29982
30145
|
});
|
|
29983
30146
|
// node_modules/typebox/build/schema/types/_refine.mjs
|
|
29984
30147
|
function IsRefine2(value) {
|
|
@@ -30555,34 +30718,34 @@ function ErrorExclusiveMinimum(stack, context, schemaPath, instancePath, schema3
|
|
|
30555
30718
|
// node_modules/typebox/build/format/format.mjs
|
|
30556
30719
|
var exports_format = {};
|
|
30557
30720
|
__export(exports_format, {
|
|
30558
|
-
|
|
30559
|
-
Set: () => Set3,
|
|
30560
|
-
Reset: () => Reset2,
|
|
30561
|
-
IsUuid: () => IsUuid,
|
|
30562
|
-
IsUrl: () => IsUrl,
|
|
30563
|
-
IsUriTemplate: () => IsUriTemplate,
|
|
30564
|
-
IsUriReference: () => IsUriReference,
|
|
30565
|
-
IsUri: () => IsUri,
|
|
30566
|
-
IsTime: () => IsTime,
|
|
30567
|
-
IsRelativeJsonPointer: () => IsRelativeJsonPointer,
|
|
30568
|
-
IsRegex: () => IsRegex,
|
|
30569
|
-
IsJsonPointerUriFragment: () => IsJsonPointerUriFragment,
|
|
30570
|
-
IsJsonPointer: () => IsJsonPointer,
|
|
30571
|
-
IsIriReference: () => IsIriReference,
|
|
30572
|
-
IsIri: () => IsIri,
|
|
30573
|
-
IsIdnHostname: () => IsIdnHostname2,
|
|
30574
|
-
IsIdnEmail: () => IsIdnEmail,
|
|
30575
|
-
IsIPv6: () => IsIPv6,
|
|
30576
|
-
IsIPv4: () => IsIPv4,
|
|
30577
|
-
IsHostname: () => IsHostname2,
|
|
30578
|
-
IsEmail: () => IsEmail,
|
|
30579
|
-
IsDuration: () => IsDuration,
|
|
30580
|
-
IsDateTime: () => IsDateTime,
|
|
30581
|
-
IsDate: () => IsDate2,
|
|
30582
|
-
Has: () => Has,
|
|
30583
|
-
Get: () => Get3,
|
|
30721
|
+
Clear: () => Clear,
|
|
30584
30722
|
Entries: () => Entries2,
|
|
30585
|
-
|
|
30723
|
+
Get: () => Get3,
|
|
30724
|
+
Has: () => Has,
|
|
30725
|
+
IsDate: () => IsDate2,
|
|
30726
|
+
IsDateTime: () => IsDateTime,
|
|
30727
|
+
IsDuration: () => IsDuration,
|
|
30728
|
+
IsEmail: () => IsEmail,
|
|
30729
|
+
IsHostname: () => IsHostname2,
|
|
30730
|
+
IsIPv4: () => IsIPv4,
|
|
30731
|
+
IsIPv6: () => IsIPv6,
|
|
30732
|
+
IsIdnEmail: () => IsIdnEmail,
|
|
30733
|
+
IsIdnHostname: () => IsIdnHostname2,
|
|
30734
|
+
IsIri: () => IsIri,
|
|
30735
|
+
IsIriReference: () => IsIriReference,
|
|
30736
|
+
IsJsonPointer: () => IsJsonPointer,
|
|
30737
|
+
IsJsonPointerUriFragment: () => IsJsonPointerUriFragment,
|
|
30738
|
+
IsRegex: () => IsRegex,
|
|
30739
|
+
IsRelativeJsonPointer: () => IsRelativeJsonPointer,
|
|
30740
|
+
IsTime: () => IsTime,
|
|
30741
|
+
IsUri: () => IsUri,
|
|
30742
|
+
IsUriReference: () => IsUriReference,
|
|
30743
|
+
IsUriTemplate: () => IsUriTemplate,
|
|
30744
|
+
IsUrl: () => IsUrl,
|
|
30745
|
+
IsUuid: () => IsUuid,
|
|
30746
|
+
Reset: () => Reset2,
|
|
30747
|
+
Set: () => Set3,
|
|
30748
|
+
Test: () => Test
|
|
30586
30749
|
});
|
|
30587
30750
|
|
|
30588
30751
|
// node_modules/typebox/build/format/date.mjs
|
|
@@ -31675,18 +31838,18 @@ var funcs = new Map;
|
|
|
31675
31838
|
// node_modules/typebox/build/schema/resolve/resolve.mjs
|
|
31676
31839
|
var exports_resolve = {};
|
|
31677
31840
|
__export(exports_resolve, {
|
|
31678
|
-
|
|
31841
|
+
DefaultBase: () => DefaultBase,
|
|
31679
31842
|
DynamicRef: () => DynamicRef,
|
|
31680
|
-
|
|
31843
|
+
Ref: () => Ref2
|
|
31681
31844
|
});
|
|
31682
31845
|
// node_modules/typebox/build/schema/pointer/pointer.mjs
|
|
31683
31846
|
var exports_pointer = {};
|
|
31684
31847
|
__export(exports_pointer, {
|
|
31685
|
-
|
|
31686
|
-
Indices: () => Indices,
|
|
31687
|
-
Has: () => Has2,
|
|
31848
|
+
Delete: () => Delete,
|
|
31688
31849
|
Get: () => Get4,
|
|
31689
|
-
|
|
31850
|
+
Has: () => Has2,
|
|
31851
|
+
Indices: () => Indices,
|
|
31852
|
+
Set: () => Set4
|
|
31690
31853
|
});
|
|
31691
31854
|
function AssertNotRoot(indices) {
|
|
31692
31855
|
if (indices.length === 0)
|
|
@@ -32185,16 +32348,16 @@ function Clean(...args) {
|
|
|
32185
32348
|
// node_modules/typebox/build/value/convert/try/try.mjs
|
|
32186
32349
|
var exports_try = {};
|
|
32187
32350
|
__export(exports_try, {
|
|
32188
|
-
|
|
32189
|
-
TryString: () => TryString,
|
|
32190
|
-
TryNumber: () => TryNumber,
|
|
32191
|
-
TryNull: () => TryNull,
|
|
32192
|
-
TryBoolean: () => TryBoolean,
|
|
32193
|
-
TryBigInt: () => TryBigInt,
|
|
32194
|
-
TryArray: () => TryArray,
|
|
32195
|
-
Ok: () => Ok,
|
|
32351
|
+
Fail: () => Fail,
|
|
32196
32352
|
IsOk: () => IsOk,
|
|
32197
|
-
|
|
32353
|
+
Ok: () => Ok,
|
|
32354
|
+
TryArray: () => TryArray,
|
|
32355
|
+
TryBigInt: () => TryBigInt,
|
|
32356
|
+
TryBoolean: () => TryBoolean,
|
|
32357
|
+
TryNull: () => TryNull,
|
|
32358
|
+
TryNumber: () => TryNumber,
|
|
32359
|
+
TryString: () => TryString,
|
|
32360
|
+
TryUndefined: () => TryUndefined
|
|
32198
32361
|
});
|
|
32199
32362
|
|
|
32200
32363
|
// node_modules/typebox/build/value/convert/try/try_result.mjs
|
|
@@ -33469,24 +33632,24 @@ function Repair(...args) {
|
|
|
33469
33632
|
// node_modules/typebox/build/value/value.mjs
|
|
33470
33633
|
var exports_value = {};
|
|
33471
33634
|
__export(exports_value, {
|
|
33472
|
-
|
|
33473
|
-
Pointer: () => exports_pointer,
|
|
33474
|
-
Patch: () => Patch,
|
|
33475
|
-
Parse: () => Parse,
|
|
33476
|
-
Hash: () => Hash2,
|
|
33477
|
-
HasCodec: () => HasCodec,
|
|
33478
|
-
Errors: () => Errors2,
|
|
33479
|
-
Equal: () => Equal,
|
|
33480
|
-
Encode: () => Encode10,
|
|
33481
|
-
Diff: () => Diff,
|
|
33482
|
-
Default: () => Default,
|
|
33483
|
-
Decode: () => Decode10,
|
|
33484
|
-
Create: () => Create2,
|
|
33485
|
-
Convert: () => Convert,
|
|
33486
|
-
Clone: () => Clone2,
|
|
33487
|
-
Clean: () => Clean,
|
|
33635
|
+
Assert: () => Assert,
|
|
33488
33636
|
Check: () => Check4,
|
|
33489
|
-
|
|
33637
|
+
Clean: () => Clean,
|
|
33638
|
+
Clone: () => Clone2,
|
|
33639
|
+
Convert: () => Convert,
|
|
33640
|
+
Create: () => Create2,
|
|
33641
|
+
Decode: () => Decode10,
|
|
33642
|
+
Default: () => Default,
|
|
33643
|
+
Diff: () => Diff,
|
|
33644
|
+
Encode: () => Encode10,
|
|
33645
|
+
Equal: () => Equal,
|
|
33646
|
+
Errors: () => Errors2,
|
|
33647
|
+
HasCodec: () => HasCodec,
|
|
33648
|
+
Hash: () => Hash2,
|
|
33649
|
+
Parse: () => Parse,
|
|
33650
|
+
Patch: () => Patch,
|
|
33651
|
+
Pointer: () => exports_pointer,
|
|
33652
|
+
Repair: () => Repair
|
|
33490
33653
|
});
|
|
33491
33654
|
// src/session/redisStore.ts
|
|
33492
33655
|
var SESSION_SEGMENT = "sess:";
|
|
@@ -38149,7 +38312,7 @@ var createPostgresOidcRefreshTokenStore = (db) => ({
|
|
|
38149
38312
|
dpop_jkt: sql`CASE WHEN ${active} THEN ${replacement.dpopJkt ?? null} ELSE ${oauthRefreshTokensTable.dpop_jkt} END`,
|
|
38150
38313
|
expires_at_ms: sql`CASE WHEN ${active} THEN ${replacement.expiresAt} ELSE ${oauthRefreshTokensTable.expires_at_ms} END`,
|
|
38151
38314
|
revoked_at_ms: sql`CASE WHEN ${consumed} THEN ${Date.now()} ELSE ${oauthRefreshTokensTable.revoked_at_ms} END`,
|
|
38152
|
-
scopes: sql`CASE WHEN ${active} THEN ${replacement.scopes} ELSE ${oauthRefreshTokensTable.scopes} END`,
|
|
38315
|
+
scopes: sql`CASE WHEN ${active} THEN ${sql.param(replacement.scopes, oauthRefreshTokensTable.scopes)} ELSE ${oauthRefreshTokensTable.scopes} END`,
|
|
38153
38316
|
token_hash: sql`CASE WHEN ${active} THEN ${replacement.tokenHash} ELSE ${oauthRefreshTokensTable.token_hash} END`,
|
|
38154
38317
|
user_id: sql`CASE WHEN ${active} THEN ${replacement.userId} ELSE ${oauthRefreshTokensTable.user_id} END`
|
|
38155
38318
|
}).where(or(active, consumed)).returning({
|
|
@@ -40512,533 +40675,533 @@ var auth = async (configuration) => {
|
|
|
40512
40675
|
};
|
|
40513
40676
|
var createAuthApplications = async (configuration) => buildAuthApplications(configuration);
|
|
40514
40677
|
export {
|
|
40515
|
-
|
|
40516
|
-
withSpan,
|
|
40517
|
-
withAbsoluteNativeAuthClients,
|
|
40518
|
-
webhookDeliveriesTable,
|
|
40519
|
-
webauthnRoutes,
|
|
40520
|
-
webauthnCredentialsTable,
|
|
40521
|
-
warrantsTable,
|
|
40522
|
-
warrantKey,
|
|
40523
|
-
vpRoutes,
|
|
40524
|
-
verifyWebhookSignature,
|
|
40525
|
-
verifyTurnstile,
|
|
40526
|
-
verifyTotp,
|
|
40527
|
-
verifyStatusListJwt,
|
|
40528
|
-
verifySdJwtVc,
|
|
40529
|
-
verifyRecaptcha,
|
|
40530
|
-
verifyPresentationResponse,
|
|
40531
|
-
verifyPkce,
|
|
40532
|
-
verifyPassword,
|
|
40533
|
-
verifyOidcAccessToken,
|
|
40534
|
-
verifyJwtWithKeys,
|
|
40535
|
-
verifyJwtSignedByClient,
|
|
40536
|
-
verifyJwt,
|
|
40537
|
-
verifyIdTokenHint,
|
|
40538
|
-
verifyHcaptcha,
|
|
40539
|
-
verifyDpopProof,
|
|
40540
|
-
verifyDpopNonce,
|
|
40541
|
-
verifyCognitoSha256,
|
|
40542
|
-
verifyClientAssertion,
|
|
40543
|
-
verifyCertificateBoundToken,
|
|
40544
|
-
verifyAuth0Pbkdf2,
|
|
40545
|
-
verifyAuditChain,
|
|
40546
|
-
verifyApiKey,
|
|
40547
|
-
verifyAccessToken,
|
|
40548
|
-
vciRoutes,
|
|
40549
|
-
vcPresentationRequestsTable,
|
|
40550
|
-
vcCredentialOffersTable,
|
|
40551
|
-
vcCredentialNoncesTable,
|
|
40552
|
-
vaultEntriesTable,
|
|
40553
|
-
validateSession,
|
|
40554
|
-
validateEmailDeliverability,
|
|
40555
|
-
validateClientIdMetadataDocument,
|
|
40556
|
-
userSessionIdTypebox,
|
|
40557
|
-
userInfoChallengeHeader,
|
|
40558
|
-
updateRegisteredClient,
|
|
40559
|
-
trustDevice,
|
|
40560
|
-
toSafeLocalPath,
|
|
40561
|
-
toPublicJwk,
|
|
40562
|
-
toBase64Url2 as toBase64Url,
|
|
40563
|
-
switchActiveSession,
|
|
40564
|
-
stepUpPlugin,
|
|
40565
|
-
statusListRoutes,
|
|
40566
|
-
startImpersonation,
|
|
40567
|
-
startAgentRegistration,
|
|
40568
|
-
ssoDiscoveryRoute,
|
|
40569
|
-
ssoConnectionsTable,
|
|
40570
|
-
signingVerificationKeys,
|
|
40571
|
-
signWebhook,
|
|
40572
|
-
signStatusList,
|
|
40573
|
-
signJwt,
|
|
40574
|
-
setupSessionsTable,
|
|
40575
|
-
setMemberRoles,
|
|
40576
|
-
setCredentialStatus,
|
|
40577
|
-
sessionStore,
|
|
40578
|
-
sessionRoutes,
|
|
40579
|
-
sessionCleanup,
|
|
40580
|
-
scoreRisk,
|
|
40581
|
-
scopeRequiredProviderOptions,
|
|
40582
|
-
scimTokensTable,
|
|
40583
|
-
scimRoutes,
|
|
40584
|
-
samlSsoRoutes,
|
|
40585
|
-
samlServiceProvidersTable,
|
|
40586
|
-
samlIdpRoutes,
|
|
40587
|
-
runMigrations,
|
|
40588
|
-
runEmailBreachScan,
|
|
40589
|
-
rotateVaultKey,
|
|
40590
|
-
rotateMfaEncryptionKey,
|
|
40591
|
-
rolesTable,
|
|
40592
|
-
roleRoutes,
|
|
40593
|
-
revokeUserSessions,
|
|
40594
|
-
revokeRefreshToken,
|
|
40595
|
-
revokeAgentIdentityRegistration,
|
|
40596
|
-
revocableProviderOptions,
|
|
40597
|
-
resolveSetupSession,
|
|
40598
|
-
resolveScimOrganization,
|
|
40599
|
-
resolveProviderClientConfiguration,
|
|
40600
|
-
resolvePostLogoutRedirect,
|
|
40601
|
-
resolvePermissions,
|
|
40602
|
-
resolveOriginAllowed,
|
|
40603
|
-
resolveOAuthTokenExpiresAt,
|
|
40604
|
-
resolveOAuthAuthorization,
|
|
40605
|
-
resolveCookieSecure,
|
|
40606
|
-
resolveClientProviderEntry,
|
|
40607
|
-
resolveClientCert,
|
|
40608
|
-
resolveAuthHtmxRenderers,
|
|
40609
|
-
resolveApiPrincipal,
|
|
40610
|
-
resolveAgentPrincipal,
|
|
40611
|
-
resolveAccessTokenPrincipal,
|
|
40612
|
-
requireAuthPlugin,
|
|
40613
|
-
removeFromSessionRing,
|
|
40614
|
-
rehashCredentialPassword,
|
|
40615
|
-
registerClient,
|
|
40616
|
-
refreshableProviderOptions,
|
|
40617
|
-
refreshUserSessions,
|
|
40618
|
-
recordLoginAttempt,
|
|
40619
|
-
readUserInfoBearer,
|
|
40620
|
-
readSessionRing,
|
|
40621
|
-
readSessionCookie,
|
|
40622
|
-
readAuthSyncPartition,
|
|
40623
|
-
pushRoutes,
|
|
40624
|
-
pushAuthorizationRequest,
|
|
40625
|
-
pruneInactiveUsers,
|
|
40626
|
-
providersFromEnv,
|
|
40627
|
-
providers,
|
|
40628
|
-
providerOptions,
|
|
40629
|
-
protectRoutePlugin,
|
|
40630
|
-
protectPermissionPlugin,
|
|
40631
|
-
presentSdJwtVc,
|
|
40632
|
-
portalRoutes,
|
|
40633
|
-
pkceProviderOptions,
|
|
40634
|
-
passwordlessTokensTable,
|
|
40635
|
-
passwordlessRoutes,
|
|
40636
|
-
parseSignedRequestObject,
|
|
40637
|
-
parseSdJwtVc,
|
|
40638
|
-
parseSchema,
|
|
40639
|
-
parsePresentationToken,
|
|
40640
|
-
parseJsonObject,
|
|
40641
|
-
parseAbsoluteNativeAuthClients,
|
|
40642
|
-
organizationsTable,
|
|
40643
|
-
organizationRoutes,
|
|
40644
|
-
organizationMembershipsTable,
|
|
40645
|
-
organizationInvitationsTable,
|
|
40646
|
-
oidcSsoRoutes,
|
|
40647
|
-
oidcProviderRoutes,
|
|
40648
|
-
oidcProviderOptions,
|
|
40649
|
-
oauthSocketTicketsTable,
|
|
40650
|
-
oauthRefreshTokensTable,
|
|
40651
|
-
oauthPushedAuthorizationRequestsTable,
|
|
40652
|
-
oauthLogoutDeliveriesTable,
|
|
40653
|
-
oauthInitialAccessTokensTable,
|
|
40654
|
-
oauthDeviceAuthorizationsTable,
|
|
40655
|
-
oauthCodesTable,
|
|
40656
|
-
oauthClientsTable,
|
|
40657
|
-
oauthClientRegistrationTokensTable,
|
|
40658
|
-
oauthClientAssertionJtisTable,
|
|
40659
|
-
oauthBackchannelAuthRequestsTable,
|
|
40660
|
-
nativePushRoutes,
|
|
40661
|
-
mintLogoutToken,
|
|
40662
|
-
mintDpopNonce,
|
|
40663
|
-
mfaTotpRoutes,
|
|
40664
|
-
mfaSmsRoutes,
|
|
40665
|
-
mfaRoutes,
|
|
40666
|
-
mfaManagementRoutes,
|
|
40667
|
-
mfaEnrollmentsTable,
|
|
40668
|
-
mfaChallenge,
|
|
40669
|
-
mcpProtectedResourceMetadata,
|
|
40670
|
-
maskPhone,
|
|
40671
|
-
loginHistoryTable,
|
|
40672
|
-
lockoutsTable,
|
|
40673
|
-
listUserSessions,
|
|
40674
|
-
listUserOrganizations,
|
|
40675
|
-
listSubjects,
|
|
40676
|
-
listRingSessions,
|
|
40677
|
-
listObjects,
|
|
40678
|
-
knownDevicesTable,
|
|
40679
|
-
jwkThumbprint,
|
|
40680
|
-
issueTokenSet,
|
|
40681
|
-
issueSocketTicket,
|
|
40682
|
-
issueSdJwtVc,
|
|
40683
|
-
issueDeviceAuthorization,
|
|
40684
|
-
issueCredential,
|
|
40685
|
-
issueBackchannelAuth,
|
|
40686
|
-
issueAgentServiceAssertion,
|
|
40687
|
-
issueAgentIdentityAssertion,
|
|
40688
|
-
isValidUser,
|
|
40689
|
-
isValidProviderOption,
|
|
40690
|
-
isUserSessionId,
|
|
40691
|
-
isTrustedOrigin,
|
|
40692
|
-
isSafeLocalPath,
|
|
40693
|
-
isRevocableProviderOption,
|
|
40694
|
-
isRevocableOAuth2Client,
|
|
40695
|
-
isRefreshableProviderOption,
|
|
40696
|
-
isRefreshableOAuth2Client,
|
|
40697
|
-
isPasswordCompromised,
|
|
40698
|
-
isPKCEProviderOption,
|
|
40699
|
-
isOIDCProviderOption,
|
|
40700
|
-
isMfaEnrolled,
|
|
40701
|
-
isLegacyHash,
|
|
40702
|
-
isJsonValue,
|
|
40703
|
-
isImpersonating,
|
|
40704
|
-
isE164Phone,
|
|
40705
|
-
isDisposableEmail,
|
|
40706
|
-
isAuthIntent,
|
|
40707
|
-
isAuditEventType,
|
|
40708
|
-
isAnonymousSession,
|
|
40709
|
-
inviteToOrganization,
|
|
40710
|
-
introspectToken,
|
|
40711
|
-
instantiateUserSession,
|
|
40712
|
-
initTracing,
|
|
40713
|
-
importUsers,
|
|
40714
|
-
importUser,
|
|
40715
|
-
hashToken,
|
|
40716
|
-
hashPassword,
|
|
40717
|
-
hashAuditEvent,
|
|
40718
|
-
hasScopes,
|
|
40719
|
-
hasOrganizationScope,
|
|
40720
|
-
handleAgentTokenGrant,
|
|
40721
|
-
getUserSessionId,
|
|
40722
|
-
getStatus,
|
|
40723
|
-
getRegisteredClient,
|
|
40724
|
-
getOrRefreshFederatedTokens,
|
|
40725
|
-
getCredentialStatus,
|
|
40726
|
-
generateTotpSecret,
|
|
40727
|
-
generateTotp,
|
|
40728
|
-
generateSigningKey,
|
|
40729
|
-
generateSecureToken,
|
|
40730
|
-
generateEncryptionKey,
|
|
40731
|
-
generateBackupCodes,
|
|
40732
|
-
generateAgentRegistrationGuide,
|
|
40733
|
-
generateAgentOAuthGuide,
|
|
40734
|
-
fromBase64Url2 as fromBase64Url,
|
|
40735
|
-
fingerprintDevice,
|
|
40736
|
-
fetchUserInfo,
|
|
40737
|
-
fanOutBackchannelLogout,
|
|
40738
|
-
extractRfc9440ClientCert,
|
|
40739
|
-
extractPropFromIdentity,
|
|
40740
|
-
extractDpopNonceClaim,
|
|
40741
|
-
exportAuditCsv,
|
|
40742
|
-
exchangeToken,
|
|
40743
|
-
exchangePreAuthorizedCode,
|
|
40744
|
-
exchangeDeviceCode,
|
|
40745
|
-
exchangeClientCredentials,
|
|
40746
|
-
exchangeBackchannelAuth,
|
|
40747
|
-
evaluatePassword,
|
|
40748
|
-
endImpersonation,
|
|
40749
|
-
encryptTotpSecret,
|
|
40750
|
-
encryptSecret,
|
|
40751
|
-
discoverAgentRegistration,
|
|
40752
|
-
diffScimGroupMembers,
|
|
40753
|
-
deriveAuthSyncNamespace,
|
|
40754
|
-
denyDeviceAuthorization,
|
|
40755
|
-
denyBackchannelAuth,
|
|
40756
|
-
deleteWarrant,
|
|
40757
|
-
deleteRegisteredClient,
|
|
40758
|
-
defineScimAttributeMap,
|
|
40759
|
-
defineProvidersConfiguration,
|
|
40760
|
-
defineProvider,
|
|
40761
|
-
defineAuthSettings,
|
|
40762
|
-
defineAuthHtmxConfig,
|
|
40763
|
-
defineAuthConfig,
|
|
40764
|
-
defaultBotClassifier,
|
|
40765
|
-
decryptTotpSecret,
|
|
40766
|
-
decryptSecret,
|
|
40767
|
-
decodeSessionUserRecord,
|
|
40768
|
-
decodeJWT,
|
|
40769
|
-
credentialsTable,
|
|
40770
|
-
credentialsRegister,
|
|
40771
|
-
credentialsPasswordReset,
|
|
40772
|
-
credentialsLogin,
|
|
40773
|
-
credentialsEmailVerification,
|
|
40774
|
-
credentialVerificationTokensTable,
|
|
40775
|
-
credentialRoutes,
|
|
40776
|
-
credentialResetTokensTable,
|
|
40777
|
-
createWebhookDispatcher,
|
|
40778
|
-
createVault,
|
|
40779
|
-
createTotpKeyUri,
|
|
40780
|
-
createTamperEvidentSink,
|
|
40781
|
-
createStatusList,
|
|
40782
|
-
createSiemLogStream,
|
|
40783
|
-
createSetupSession,
|
|
40784
|
-
createSecretCipher,
|
|
40785
|
-
createScimToken,
|
|
40786
|
-
createRiskEngine,
|
|
40787
|
-
createRedisLockoutStore,
|
|
40788
|
-
createRedisFgaCache,
|
|
40789
|
-
createRedisAuthSessionStore,
|
|
40790
|
-
createPresentationRequest,
|
|
40791
|
-
createPostgresWebhookDeliveryStore,
|
|
40792
|
-
createPostgresWebAuthnCredentialStore,
|
|
40793
|
-
createPostgresWarrantStore,
|
|
40794
|
-
createPostgresVaultStore,
|
|
40795
|
-
createPostgresSsoConnectionStore,
|
|
40796
|
-
createPostgresSocketTicketStore,
|
|
40797
|
-
createPostgresSetupSessionStore,
|
|
40798
|
-
createPostgresScimTokenStore,
|
|
40799
|
-
createPostgresSamlServiceProviderStore,
|
|
40800
|
-
createPostgresRoleStore,
|
|
40801
|
-
createPostgresPushedAuthorizationRequestStore,
|
|
40802
|
-
createPostgresPresentationRequestStore,
|
|
40803
|
-
createPostgresPasswordlessTokenStore,
|
|
40804
|
-
createPostgresOrganizationStore,
|
|
40805
|
-
createPostgresOidcRefreshTokenStore,
|
|
40806
|
-
createPostgresOAuthClientStore,
|
|
40807
|
-
createPostgresMfaStore,
|
|
40808
|
-
createPostgresLogoutDeliveryStore,
|
|
40809
|
-
createPostgresLoginHistoryStore,
|
|
40810
|
-
createPostgresLockoutStore,
|
|
40811
|
-
createPostgresKnownDeviceStore,
|
|
40812
|
-
createPostgresInitialAccessTokenStore,
|
|
40813
|
-
createPostgresDeviceAuthorizationStore,
|
|
40814
|
-
createPostgresCredentialStore,
|
|
40815
|
-
createPostgresCredentialOfferStore,
|
|
40816
|
-
createPostgresCredentialNonceStore,
|
|
40817
|
-
createPostgresClientRegistrationTokenStore,
|
|
40818
|
-
createPostgresClientAssertionJtiStore,
|
|
40819
|
-
createPostgresBackchannelAuthStore,
|
|
40820
|
-
createPostgresAuthorizationCodeStore,
|
|
40821
|
-
createPostgresAuditSink,
|
|
40822
|
-
createPostgresApiKeyStore,
|
|
40823
|
-
createPostgresApiClientStore,
|
|
40824
|
-
createPostgresAgentRegistrationStore,
|
|
40825
|
-
createPostgresAgentIdentityRegistrationStore,
|
|
40826
|
-
createPostgresAgentDelegationStore,
|
|
40827
|
-
createPostgresAccessTokenStore,
|
|
40828
|
-
createOrganization,
|
|
40829
|
-
createOidcAgentCredentialVerifier,
|
|
40830
|
-
createOAuthLinkedProviderCredentialResolver,
|
|
40831
|
-
createOAuthAccountLinkedProviderCredentialResolver,
|
|
40832
|
-
createNeonWebhookDeliveryStore,
|
|
40833
|
-
createNeonWebAuthnCredentialStore,
|
|
40834
|
-
createNeonWarrantStore,
|
|
40835
|
-
createNeonVaultStore,
|
|
40836
|
-
createNeonSsoConnectionStore,
|
|
40837
|
-
createNeonSocketTicketStore,
|
|
40838
|
-
createNeonSetupSessionStore,
|
|
40839
|
-
createNeonScimTokenStore,
|
|
40840
|
-
createNeonSamlServiceProviderStore,
|
|
40841
|
-
createNeonRoleStore,
|
|
40842
|
-
createNeonPushedAuthorizationRequestStore,
|
|
40843
|
-
createNeonPresentationRequestStore,
|
|
40844
|
-
createNeonPasswordlessTokenStore,
|
|
40845
|
-
createNeonOrganizationStore,
|
|
40846
|
-
createNeonOidcRefreshTokenStore,
|
|
40847
|
-
createNeonOAuthLinkedProviderCredentialResolver,
|
|
40848
|
-
createNeonOAuthClientStore,
|
|
40849
|
-
createNeonMfaStore,
|
|
40850
|
-
createNeonLogoutDeliveryStore,
|
|
40851
|
-
createNeonLoginHistoryStore,
|
|
40852
|
-
createNeonLockoutStore,
|
|
40853
|
-
createNeonLinkedProviderStores,
|
|
40854
|
-
createNeonKnownDeviceStore,
|
|
40855
|
-
createNeonInitialAccessTokenStore,
|
|
40856
|
-
createNeonDeviceAuthorizationStore,
|
|
40857
|
-
createNeonDatabase,
|
|
40858
|
-
createNeonCredentialStore,
|
|
40859
|
-
createNeonCredentialOfferStore,
|
|
40860
|
-
createNeonCredentialNonceStore,
|
|
40861
|
-
createNeonClientRegistrationTokenStore,
|
|
40862
|
-
createNeonClientAssertionJtiStore,
|
|
40863
|
-
createNeonBackchannelAuthStore,
|
|
40864
|
-
createNeonAuthorizationCodeStore,
|
|
40865
|
-
createNeonAuthSessionStore,
|
|
40866
|
-
createNeonAuditSink,
|
|
40867
|
-
createNeonApiKeyStore,
|
|
40868
|
-
createNeonApiClientStore,
|
|
40869
|
-
createNeonAgentRegistrationStore,
|
|
40870
|
-
createNeonAgentIdentityRegistrationStore,
|
|
40871
|
-
createNeonAgentDelegationStore,
|
|
40872
|
-
createNeonAccessTokenStore,
|
|
40873
|
-
createMfaGate,
|
|
40874
|
-
createMembershipPermissionResolver,
|
|
40875
|
-
createLockoutGuard,
|
|
40876
|
-
createLinkedProviderCredentialResolver,
|
|
40877
|
-
createInMemoryWebhookDeliveryStore,
|
|
40878
|
-
createInMemoryWebAuthnCredentialStore,
|
|
40879
|
-
createInMemoryWarrantStore,
|
|
40880
|
-
createInMemoryVaultStore,
|
|
40881
|
-
createInMemorySsoConnectionStore,
|
|
40882
|
-
createInMemorySocketTicketStore,
|
|
40883
|
-
createInMemorySetupSessionStore,
|
|
40884
|
-
createInMemoryScimTokenStore,
|
|
40885
|
-
createInMemorySamlServiceProviderStore,
|
|
40886
|
-
createInMemoryRoleStore,
|
|
40887
|
-
createInMemoryPushedAuthorizationRequestStore,
|
|
40888
|
-
createInMemoryPresentationRequestStore,
|
|
40889
|
-
createInMemoryPasswordlessTokenStore,
|
|
40890
|
-
createInMemoryOrganizationStore,
|
|
40891
|
-
createInMemoryOidcRefreshTokenStore,
|
|
40892
|
-
createInMemoryOAuthClientStore,
|
|
40893
|
-
createInMemoryMfaStore,
|
|
40894
|
-
createInMemoryLogoutDeliveryStore,
|
|
40895
|
-
createInMemoryLoginHistoryStore,
|
|
40896
|
-
createInMemoryLockoutStore,
|
|
40897
|
-
createInMemoryLinkedProviderStores,
|
|
40898
|
-
createInMemoryKnownDeviceStore,
|
|
40899
|
-
createInMemoryInitialAccessTokenStore,
|
|
40900
|
-
createInMemoryDeviceAuthorizationStore,
|
|
40901
|
-
createInMemoryCredentialStore,
|
|
40902
|
-
createInMemoryCredentialOfferStore,
|
|
40903
|
-
createInMemoryCredentialNonceStore,
|
|
40904
|
-
createInMemoryClientRegistrationTokenStore,
|
|
40905
|
-
createInMemoryClientAssertionJtiStore,
|
|
40906
|
-
createInMemoryCheckCache,
|
|
40907
|
-
createInMemoryBackchannelAuthStore,
|
|
40908
|
-
createInMemoryAuthorizationCodeStore,
|
|
40909
|
-
createInMemoryAuthSessionStore,
|
|
40910
|
-
createInMemoryAuditSink,
|
|
40911
|
-
createInMemoryApiKeyStore,
|
|
40912
|
-
createInMemoryApiClientStore,
|
|
40913
|
-
createInMemoryAgentRegistrationStore,
|
|
40914
|
-
createInMemoryAgentIdentityRegistrationStore,
|
|
40915
|
-
createInMemoryAgentIdentityAssertionJtiStore,
|
|
40916
|
-
createInMemoryAgentDelegationStore,
|
|
40917
|
-
createInMemoryAccessTokenStore,
|
|
40918
|
-
createFgaEngine,
|
|
40919
|
-
createFederatedTokenStore,
|
|
40920
|
-
createDrizzleAgentDelegationStore,
|
|
40921
|
-
createCustomOAuth2Client,
|
|
40922
|
-
createCredentialOffer,
|
|
40923
|
-
createClientIdMetadataResolver,
|
|
40924
|
-
createBunSqlDrizzleAgentRegistrationStore,
|
|
40925
|
-
createBunSqlDrizzleAgentIdentityRegistrationStore,
|
|
40926
|
-
createBunSqlDrizzleAgentDelegationStore,
|
|
40927
|
-
createAuthHtmxRoutes,
|
|
40928
|
-
createAuthContext,
|
|
40929
|
-
createAuthApplications,
|
|
40930
|
-
createAuditRedactor,
|
|
40931
|
-
createAuditEmitter,
|
|
40932
|
-
createApiKey,
|
|
40933
|
-
createApiClient,
|
|
40934
|
-
createAnonymousSession,
|
|
40935
|
-
createAgentRegistrationCredentialVerifier,
|
|
40936
|
-
createAgentRegistrationClient,
|
|
40937
|
-
createAgentIdentityAssertionVerifier,
|
|
40938
|
-
createActionPipeline,
|
|
40939
|
-
createAbuseGuard,
|
|
40940
|
-
createAbsoluteAuthSyncBridge,
|
|
40941
|
-
consumeSocketTicket,
|
|
40942
|
-
consumePushedRequest,
|
|
40943
|
-
consumeBackupCode,
|
|
40944
|
-
constantTimeEqual,
|
|
40945
|
-
computeCertThumbprint,
|
|
40946
|
-
complianceRoutes,
|
|
40947
|
-
completeAgentClaim,
|
|
40948
|
-
clientIdMetadataToOAuthClient,
|
|
40949
|
-
check6 as check,
|
|
40950
|
-
buildStatusClaim,
|
|
40951
|
-
buildIssuerMetadata,
|
|
40952
|
-
buildHolderKeyBindingJwt,
|
|
40953
|
-
buildClientProviders,
|
|
40954
|
-
blockMigrations,
|
|
40955
|
-
beginAgentClaim,
|
|
40956
|
-
base32Encode,
|
|
40957
|
-
base32Decode,
|
|
40958
|
-
authProviderOption,
|
|
40959
|
-
authIntentOption,
|
|
40960
|
-
authClientOption,
|
|
40961
|
-
auth,
|
|
40962
|
-
auditEventsTable,
|
|
40963
|
-
assessRisk,
|
|
40964
|
-
assessAbuse,
|
|
40965
|
-
approveDeviceAuthorization,
|
|
40966
|
-
approveBackchannelAuth,
|
|
40967
|
-
apiKeysTable,
|
|
40968
|
-
apiKeysRoutes,
|
|
40969
|
-
apiClientsTable,
|
|
40970
|
-
agentRegistrationsTable,
|
|
40971
|
-
agentRegistrationsBunSqlTable,
|
|
40972
|
-
agentRegistrationEndpoints,
|
|
40973
|
-
agentRegistrationDiscoveryMetadata,
|
|
40974
|
-
agentProtectedResourceMetadata,
|
|
40975
|
-
agentOAuthGuideUrl,
|
|
40976
|
-
agentOAuthGuideRoute,
|
|
40977
|
-
agentIdentityRegistrationsTable,
|
|
40978
|
-
agentIdentityRegistrationsBunSqlTable,
|
|
40979
|
-
agentHasScopes,
|
|
40980
|
-
agentDelegationsTable,
|
|
40981
|
-
agentDelegationsBunSqlTable,
|
|
40982
|
-
agentAuthPlugin,
|
|
40983
|
-
agentAuthChallenge,
|
|
40984
|
-
addToSessionRing,
|
|
40985
|
-
accessTokensTable,
|
|
40986
|
-
acceptInvitation,
|
|
40987
|
-
WEBAUTHN_CHALLENGE_COOKIE,
|
|
40988
|
-
VerificationProviderError,
|
|
40989
|
-
STATUS_LIST_TYP,
|
|
40990
|
-
STATUS_LIST_SUB_TYP,
|
|
40991
|
-
REQUEST_URI_PREFIX,
|
|
40992
|
-
PRE_AUTHORIZED_CODE_GRANT,
|
|
40993
|
-
DEFAULT_WEBHOOK_TIMEOUT_MS,
|
|
40994
|
-
DEFAULT_WEBHOOK_RETRY,
|
|
40995
|
-
DEFAULT_WEBAUTHN_SESSION_TTL_MS,
|
|
40996
|
-
DEFAULT_WEBAUTHN_ROUTE,
|
|
40997
|
-
DEFAULT_WEBAUTHN_CHALLENGE_TTL_MS,
|
|
40998
|
-
DEFAULT_VP_ROUTE,
|
|
40999
|
-
DEFAULT_VERIFICATION_TOKEN_TTL_MS,
|
|
41000
|
-
DEFAULT_VCI_ROUTE,
|
|
41001
|
-
DEFAULT_TOTP_MAX_ATTEMPTS,
|
|
41002
|
-
DEFAULT_TOKEN_ROUTE,
|
|
41003
|
-
DEFAULT_STATUS_ROUTE,
|
|
41004
|
-
DEFAULT_SSO_SESSION_TTL_MS,
|
|
41005
|
-
DEFAULT_SSO_ROUTE,
|
|
41006
|
-
DEFAULT_SMS_RESEND_COOLDOWN_MS,
|
|
41007
|
-
DEFAULT_SMS_MAX_ATTEMPTS,
|
|
41008
|
-
DEFAULT_SMS_CODE_TTL_MS,
|
|
41009
|
-
DEFAULT_SMS_CODE_LENGTH,
|
|
41010
|
-
DEFAULT_SETUP_SESSION_TTL_MS,
|
|
41011
|
-
DEFAULT_SCIM_ROUTE,
|
|
41012
|
-
DEFAULT_ROLES_ROUTE,
|
|
41013
|
-
DEFAULT_RESET_TOKEN_TTL_MS,
|
|
41014
|
-
DEFAULT_PUSH_ROUTE,
|
|
41015
|
-
DEFAULT_PORTAL_ROUTE,
|
|
41016
|
-
DEFAULT_PASSWORDLESS_SESSION_TTL_MS,
|
|
41017
|
-
DEFAULT_PASSWORDLESS_ROUTE,
|
|
41018
|
-
DEFAULT_PAR_TTL_MS,
|
|
41019
|
-
DEFAULT_OWNER_ROLES,
|
|
41020
|
-
DEFAULT_OTP_TTL_MS,
|
|
41021
|
-
DEFAULT_OTP_LENGTH,
|
|
41022
|
-
DEFAULT_ORGANIZATIONS_ROUTE,
|
|
41023
|
-
DEFAULT_OIDC_ROUTE,
|
|
41024
|
-
DEFAULT_NATIVE_PUSH_ROUTE,
|
|
41025
|
-
DEFAULT_MFA_SESSION_TTL_MS,
|
|
41026
|
-
DEFAULT_MFA_MANAGEMENT_AUTH_MAX_AGE_MS,
|
|
41027
|
-
DEFAULT_MFA_ISSUER,
|
|
41028
|
-
DEFAULT_MAGIC_LINK_TTL_MS,
|
|
41029
|
-
DEFAULT_INVITATION_TTL_MS,
|
|
41030
|
-
DEFAULT_CREDENTIAL_SESSION_TTL_MS,
|
|
41031
|
-
DEFAULT_BACKUP_CODE_COUNT,
|
|
41032
|
-
DEFAULT_AGENT_RESOURCE_METADATA_ROUTE,
|
|
41033
|
-
CLIENT_ASSERTION_TYPE,
|
|
41034
|
-
CIBA_GRANT_TYPE,
|
|
41035
|
-
AuthIdentityConflictError,
|
|
41036
|
-
AUDIT_EVENT_TYPES,
|
|
41037
|
-
AGENT_IDENTITY_ASSERTION_TYPE,
|
|
41038
|
-
AGENT_IDENTITY_ASSERTION_GRANT_TYPE,
|
|
40678
|
+
ABSOLUTE_NATIVE_AUTH_CLIENTS_ENV,
|
|
41039
40679
|
AGENT_CLAIM_GRANT_TYPE,
|
|
41040
|
-
|
|
40680
|
+
AGENT_IDENTITY_ASSERTION_GRANT_TYPE,
|
|
40681
|
+
AGENT_IDENTITY_ASSERTION_TYPE,
|
|
40682
|
+
AUDIT_EVENT_TYPES,
|
|
40683
|
+
AuthIdentityConflictError,
|
|
40684
|
+
CIBA_GRANT_TYPE,
|
|
40685
|
+
CLIENT_ASSERTION_TYPE,
|
|
40686
|
+
DEFAULT_AGENT_RESOURCE_METADATA_ROUTE,
|
|
40687
|
+
DEFAULT_BACKUP_CODE_COUNT,
|
|
40688
|
+
DEFAULT_CREDENTIAL_SESSION_TTL_MS,
|
|
40689
|
+
DEFAULT_INVITATION_TTL_MS,
|
|
40690
|
+
DEFAULT_MAGIC_LINK_TTL_MS,
|
|
40691
|
+
DEFAULT_MFA_ISSUER,
|
|
40692
|
+
DEFAULT_MFA_MANAGEMENT_AUTH_MAX_AGE_MS,
|
|
40693
|
+
DEFAULT_MFA_SESSION_TTL_MS,
|
|
40694
|
+
DEFAULT_NATIVE_PUSH_ROUTE,
|
|
40695
|
+
DEFAULT_OIDC_ROUTE,
|
|
40696
|
+
DEFAULT_ORGANIZATIONS_ROUTE,
|
|
40697
|
+
DEFAULT_OTP_LENGTH,
|
|
40698
|
+
DEFAULT_OTP_TTL_MS,
|
|
40699
|
+
DEFAULT_OWNER_ROLES,
|
|
40700
|
+
DEFAULT_PAR_TTL_MS,
|
|
40701
|
+
DEFAULT_PASSWORDLESS_ROUTE,
|
|
40702
|
+
DEFAULT_PASSWORDLESS_SESSION_TTL_MS,
|
|
40703
|
+
DEFAULT_PORTAL_ROUTE,
|
|
40704
|
+
DEFAULT_PUSH_ROUTE,
|
|
40705
|
+
DEFAULT_RESET_TOKEN_TTL_MS,
|
|
40706
|
+
DEFAULT_ROLES_ROUTE,
|
|
40707
|
+
DEFAULT_SCIM_ROUTE,
|
|
40708
|
+
DEFAULT_SETUP_SESSION_TTL_MS,
|
|
40709
|
+
DEFAULT_SMS_CODE_LENGTH,
|
|
40710
|
+
DEFAULT_SMS_CODE_TTL_MS,
|
|
40711
|
+
DEFAULT_SMS_MAX_ATTEMPTS,
|
|
40712
|
+
DEFAULT_SMS_RESEND_COOLDOWN_MS,
|
|
40713
|
+
DEFAULT_SSO_ROUTE,
|
|
40714
|
+
DEFAULT_SSO_SESSION_TTL_MS,
|
|
40715
|
+
DEFAULT_STATUS_ROUTE,
|
|
40716
|
+
DEFAULT_TOKEN_ROUTE,
|
|
40717
|
+
DEFAULT_TOTP_MAX_ATTEMPTS,
|
|
40718
|
+
DEFAULT_VCI_ROUTE,
|
|
40719
|
+
DEFAULT_VERIFICATION_TOKEN_TTL_MS,
|
|
40720
|
+
DEFAULT_VP_ROUTE,
|
|
40721
|
+
DEFAULT_WEBAUTHN_CHALLENGE_TTL_MS,
|
|
40722
|
+
DEFAULT_WEBAUTHN_ROUTE,
|
|
40723
|
+
DEFAULT_WEBAUTHN_SESSION_TTL_MS,
|
|
40724
|
+
DEFAULT_WEBHOOK_RETRY,
|
|
40725
|
+
DEFAULT_WEBHOOK_TIMEOUT_MS,
|
|
40726
|
+
PRE_AUTHORIZED_CODE_GRANT,
|
|
40727
|
+
REQUEST_URI_PREFIX,
|
|
40728
|
+
STATUS_LIST_SUB_TYP,
|
|
40729
|
+
STATUS_LIST_TYP,
|
|
40730
|
+
VerificationProviderError,
|
|
40731
|
+
WEBAUTHN_CHALLENGE_COOKIE,
|
|
40732
|
+
acceptInvitation,
|
|
40733
|
+
accessTokensTable,
|
|
40734
|
+
addToSessionRing,
|
|
40735
|
+
agentAuthChallenge,
|
|
40736
|
+
agentAuthPlugin,
|
|
40737
|
+
agentDelegationsBunSqlTable,
|
|
40738
|
+
agentDelegationsTable,
|
|
40739
|
+
agentHasScopes,
|
|
40740
|
+
agentIdentityRegistrationsBunSqlTable,
|
|
40741
|
+
agentIdentityRegistrationsTable,
|
|
40742
|
+
agentOAuthGuideRoute,
|
|
40743
|
+
agentOAuthGuideUrl,
|
|
40744
|
+
agentProtectedResourceMetadata,
|
|
40745
|
+
agentRegistrationDiscoveryMetadata,
|
|
40746
|
+
agentRegistrationEndpoints,
|
|
40747
|
+
agentRegistrationsBunSqlTable,
|
|
40748
|
+
agentRegistrationsTable,
|
|
40749
|
+
apiClientsTable,
|
|
40750
|
+
apiKeysRoutes,
|
|
40751
|
+
apiKeysTable,
|
|
40752
|
+
approveBackchannelAuth,
|
|
40753
|
+
approveDeviceAuthorization,
|
|
40754
|
+
assessAbuse,
|
|
40755
|
+
assessRisk,
|
|
40756
|
+
auditEventsTable,
|
|
40757
|
+
auth,
|
|
40758
|
+
authClientOption,
|
|
40759
|
+
authIntentOption,
|
|
40760
|
+
authProviderOption,
|
|
40761
|
+
base32Decode,
|
|
40762
|
+
base32Encode,
|
|
40763
|
+
beginAgentClaim,
|
|
40764
|
+
blockMigrations,
|
|
40765
|
+
buildClientProviders,
|
|
40766
|
+
buildHolderKeyBindingJwt,
|
|
40767
|
+
buildIssuerMetadata,
|
|
40768
|
+
buildStatusClaim,
|
|
40769
|
+
check6 as check,
|
|
40770
|
+
clientIdMetadataToOAuthClient,
|
|
40771
|
+
completeAgentClaim,
|
|
40772
|
+
complianceRoutes,
|
|
40773
|
+
computeCertThumbprint,
|
|
40774
|
+
constantTimeEqual,
|
|
40775
|
+
consumeBackupCode,
|
|
40776
|
+
consumePushedRequest,
|
|
40777
|
+
consumeSocketTicket,
|
|
40778
|
+
createAbsoluteAuthSyncBridge,
|
|
40779
|
+
createAbuseGuard,
|
|
40780
|
+
createActionPipeline,
|
|
40781
|
+
createAgentIdentityAssertionVerifier,
|
|
40782
|
+
createAgentRegistrationClient,
|
|
40783
|
+
createAgentRegistrationCredentialVerifier,
|
|
40784
|
+
createAnonymousSession,
|
|
40785
|
+
createApiClient,
|
|
40786
|
+
createApiKey,
|
|
40787
|
+
createAuditEmitter,
|
|
40788
|
+
createAuditRedactor,
|
|
40789
|
+
createAuthApplications,
|
|
40790
|
+
createAuthContext,
|
|
40791
|
+
createAuthHtmxRoutes,
|
|
40792
|
+
createBunSqlDrizzleAgentDelegationStore,
|
|
40793
|
+
createBunSqlDrizzleAgentIdentityRegistrationStore,
|
|
40794
|
+
createBunSqlDrizzleAgentRegistrationStore,
|
|
40795
|
+
createClientIdMetadataResolver,
|
|
40796
|
+
createCredentialOffer,
|
|
40797
|
+
createCustomOAuth2Client,
|
|
40798
|
+
createDrizzleAgentDelegationStore,
|
|
40799
|
+
createFederatedTokenStore,
|
|
40800
|
+
createFgaEngine,
|
|
40801
|
+
createInMemoryAccessTokenStore,
|
|
40802
|
+
createInMemoryAgentDelegationStore,
|
|
40803
|
+
createInMemoryAgentIdentityAssertionJtiStore,
|
|
40804
|
+
createInMemoryAgentIdentityRegistrationStore,
|
|
40805
|
+
createInMemoryAgentRegistrationStore,
|
|
40806
|
+
createInMemoryApiClientStore,
|
|
40807
|
+
createInMemoryApiKeyStore,
|
|
40808
|
+
createInMemoryAuditSink,
|
|
40809
|
+
createInMemoryAuthSessionStore,
|
|
40810
|
+
createInMemoryAuthorizationCodeStore,
|
|
40811
|
+
createInMemoryBackchannelAuthStore,
|
|
40812
|
+
createInMemoryCheckCache,
|
|
40813
|
+
createInMemoryClientAssertionJtiStore,
|
|
40814
|
+
createInMemoryClientRegistrationTokenStore,
|
|
40815
|
+
createInMemoryCredentialNonceStore,
|
|
40816
|
+
createInMemoryCredentialOfferStore,
|
|
40817
|
+
createInMemoryCredentialStore,
|
|
40818
|
+
createInMemoryDeviceAuthorizationStore,
|
|
40819
|
+
createInMemoryInitialAccessTokenStore,
|
|
40820
|
+
createInMemoryKnownDeviceStore,
|
|
40821
|
+
createInMemoryLinkedProviderStores,
|
|
40822
|
+
createInMemoryLockoutStore,
|
|
40823
|
+
createInMemoryLoginHistoryStore,
|
|
40824
|
+
createInMemoryLogoutDeliveryStore,
|
|
40825
|
+
createInMemoryMfaStore,
|
|
40826
|
+
createInMemoryOAuthClientStore,
|
|
40827
|
+
createInMemoryOidcRefreshTokenStore,
|
|
40828
|
+
createInMemoryOrganizationStore,
|
|
40829
|
+
createInMemoryPasswordlessTokenStore,
|
|
40830
|
+
createInMemoryPresentationRequestStore,
|
|
40831
|
+
createInMemoryPushedAuthorizationRequestStore,
|
|
40832
|
+
createInMemoryRoleStore,
|
|
40833
|
+
createInMemorySamlServiceProviderStore,
|
|
40834
|
+
createInMemoryScimTokenStore,
|
|
40835
|
+
createInMemorySetupSessionStore,
|
|
40836
|
+
createInMemorySocketTicketStore,
|
|
40837
|
+
createInMemorySsoConnectionStore,
|
|
40838
|
+
createInMemoryVaultStore,
|
|
40839
|
+
createInMemoryWarrantStore,
|
|
40840
|
+
createInMemoryWebAuthnCredentialStore,
|
|
40841
|
+
createInMemoryWebhookDeliveryStore,
|
|
40842
|
+
createLinkedProviderCredentialResolver,
|
|
40843
|
+
createLockoutGuard,
|
|
40844
|
+
createMembershipPermissionResolver,
|
|
40845
|
+
createMfaGate,
|
|
40846
|
+
createNeonAccessTokenStore,
|
|
40847
|
+
createNeonAgentDelegationStore,
|
|
40848
|
+
createNeonAgentIdentityRegistrationStore,
|
|
40849
|
+
createNeonAgentRegistrationStore,
|
|
40850
|
+
createNeonApiClientStore,
|
|
40851
|
+
createNeonApiKeyStore,
|
|
40852
|
+
createNeonAuditSink,
|
|
40853
|
+
createNeonAuthSessionStore,
|
|
40854
|
+
createNeonAuthorizationCodeStore,
|
|
40855
|
+
createNeonBackchannelAuthStore,
|
|
40856
|
+
createNeonClientAssertionJtiStore,
|
|
40857
|
+
createNeonClientRegistrationTokenStore,
|
|
40858
|
+
createNeonCredentialNonceStore,
|
|
40859
|
+
createNeonCredentialOfferStore,
|
|
40860
|
+
createNeonCredentialStore,
|
|
40861
|
+
createNeonDatabase,
|
|
40862
|
+
createNeonDeviceAuthorizationStore,
|
|
40863
|
+
createNeonInitialAccessTokenStore,
|
|
40864
|
+
createNeonKnownDeviceStore,
|
|
40865
|
+
createNeonLinkedProviderStores,
|
|
40866
|
+
createNeonLockoutStore,
|
|
40867
|
+
createNeonLoginHistoryStore,
|
|
40868
|
+
createNeonLogoutDeliveryStore,
|
|
40869
|
+
createNeonMfaStore,
|
|
40870
|
+
createNeonOAuthClientStore,
|
|
40871
|
+
createNeonOAuthLinkedProviderCredentialResolver,
|
|
40872
|
+
createNeonOidcRefreshTokenStore,
|
|
40873
|
+
createNeonOrganizationStore,
|
|
40874
|
+
createNeonPasswordlessTokenStore,
|
|
40875
|
+
createNeonPresentationRequestStore,
|
|
40876
|
+
createNeonPushedAuthorizationRequestStore,
|
|
40877
|
+
createNeonRoleStore,
|
|
40878
|
+
createNeonSamlServiceProviderStore,
|
|
40879
|
+
createNeonScimTokenStore,
|
|
40880
|
+
createNeonSetupSessionStore,
|
|
40881
|
+
createNeonSocketTicketStore,
|
|
40882
|
+
createNeonSsoConnectionStore,
|
|
40883
|
+
createNeonVaultStore,
|
|
40884
|
+
createNeonWarrantStore,
|
|
40885
|
+
createNeonWebAuthnCredentialStore,
|
|
40886
|
+
createNeonWebhookDeliveryStore,
|
|
40887
|
+
createOAuthAccountLinkedProviderCredentialResolver,
|
|
40888
|
+
createOAuthLinkedProviderCredentialResolver,
|
|
40889
|
+
createOidcAgentCredentialVerifier,
|
|
40890
|
+
createOrganization,
|
|
40891
|
+
createPostgresAccessTokenStore,
|
|
40892
|
+
createPostgresAgentDelegationStore,
|
|
40893
|
+
createPostgresAgentIdentityRegistrationStore,
|
|
40894
|
+
createPostgresAgentRegistrationStore,
|
|
40895
|
+
createPostgresApiClientStore,
|
|
40896
|
+
createPostgresApiKeyStore,
|
|
40897
|
+
createPostgresAuditSink,
|
|
40898
|
+
createPostgresAuthorizationCodeStore,
|
|
40899
|
+
createPostgresBackchannelAuthStore,
|
|
40900
|
+
createPostgresClientAssertionJtiStore,
|
|
40901
|
+
createPostgresClientRegistrationTokenStore,
|
|
40902
|
+
createPostgresCredentialNonceStore,
|
|
40903
|
+
createPostgresCredentialOfferStore,
|
|
40904
|
+
createPostgresCredentialStore,
|
|
40905
|
+
createPostgresDeviceAuthorizationStore,
|
|
40906
|
+
createPostgresInitialAccessTokenStore,
|
|
40907
|
+
createPostgresKnownDeviceStore,
|
|
40908
|
+
createPostgresLockoutStore,
|
|
40909
|
+
createPostgresLoginHistoryStore,
|
|
40910
|
+
createPostgresLogoutDeliveryStore,
|
|
40911
|
+
createPostgresMfaStore,
|
|
40912
|
+
createPostgresOAuthClientStore,
|
|
40913
|
+
createPostgresOidcRefreshTokenStore,
|
|
40914
|
+
createPostgresOrganizationStore,
|
|
40915
|
+
createPostgresPasswordlessTokenStore,
|
|
40916
|
+
createPostgresPresentationRequestStore,
|
|
40917
|
+
createPostgresPushedAuthorizationRequestStore,
|
|
40918
|
+
createPostgresRoleStore,
|
|
40919
|
+
createPostgresSamlServiceProviderStore,
|
|
40920
|
+
createPostgresScimTokenStore,
|
|
40921
|
+
createPostgresSetupSessionStore,
|
|
40922
|
+
createPostgresSocketTicketStore,
|
|
40923
|
+
createPostgresSsoConnectionStore,
|
|
40924
|
+
createPostgresVaultStore,
|
|
40925
|
+
createPostgresWarrantStore,
|
|
40926
|
+
createPostgresWebAuthnCredentialStore,
|
|
40927
|
+
createPostgresWebhookDeliveryStore,
|
|
40928
|
+
createPresentationRequest,
|
|
40929
|
+
createRedisAuthSessionStore,
|
|
40930
|
+
createRedisFgaCache,
|
|
40931
|
+
createRedisLockoutStore,
|
|
40932
|
+
createRiskEngine,
|
|
40933
|
+
createScimToken,
|
|
40934
|
+
createSecretCipher,
|
|
40935
|
+
createSetupSession,
|
|
40936
|
+
createSiemLogStream,
|
|
40937
|
+
createStatusList,
|
|
40938
|
+
createTamperEvidentSink,
|
|
40939
|
+
createTotpKeyUri,
|
|
40940
|
+
createVault,
|
|
40941
|
+
createWebhookDispatcher,
|
|
40942
|
+
credentialResetTokensTable,
|
|
40943
|
+
credentialRoutes,
|
|
40944
|
+
credentialVerificationTokensTable,
|
|
40945
|
+
credentialsEmailVerification,
|
|
40946
|
+
credentialsLogin,
|
|
40947
|
+
credentialsPasswordReset,
|
|
40948
|
+
credentialsRegister,
|
|
40949
|
+
credentialsTable,
|
|
40950
|
+
decodeJWT,
|
|
40951
|
+
decodeSessionUserRecord,
|
|
40952
|
+
decryptSecret,
|
|
40953
|
+
decryptTotpSecret,
|
|
40954
|
+
defaultBotClassifier,
|
|
40955
|
+
defineAuthConfig,
|
|
40956
|
+
defineAuthHtmxConfig,
|
|
40957
|
+
defineAuthSettings,
|
|
40958
|
+
defineProvider,
|
|
40959
|
+
defineProvidersConfiguration,
|
|
40960
|
+
defineScimAttributeMap,
|
|
40961
|
+
deleteRegisteredClient,
|
|
40962
|
+
deleteWarrant,
|
|
40963
|
+
denyBackchannelAuth,
|
|
40964
|
+
denyDeviceAuthorization,
|
|
40965
|
+
deriveAuthSyncNamespace,
|
|
40966
|
+
diffScimGroupMembers,
|
|
40967
|
+
discoverAgentRegistration,
|
|
40968
|
+
encryptSecret,
|
|
40969
|
+
encryptTotpSecret,
|
|
40970
|
+
endImpersonation,
|
|
40971
|
+
evaluatePassword,
|
|
40972
|
+
exchangeBackchannelAuth,
|
|
40973
|
+
exchangeClientCredentials,
|
|
40974
|
+
exchangeDeviceCode,
|
|
40975
|
+
exchangePreAuthorizedCode,
|
|
40976
|
+
exchangeToken,
|
|
40977
|
+
exportAuditCsv,
|
|
40978
|
+
extractDpopNonceClaim,
|
|
40979
|
+
extractPropFromIdentity,
|
|
40980
|
+
extractRfc9440ClientCert,
|
|
40981
|
+
fanOutBackchannelLogout,
|
|
40982
|
+
fetchUserInfo,
|
|
40983
|
+
fingerprintDevice,
|
|
40984
|
+
fromBase64Url2 as fromBase64Url,
|
|
40985
|
+
generateAgentOAuthGuide,
|
|
40986
|
+
generateAgentRegistrationGuide,
|
|
40987
|
+
generateBackupCodes,
|
|
40988
|
+
generateEncryptionKey,
|
|
40989
|
+
generateSecureToken,
|
|
40990
|
+
generateSigningKey,
|
|
40991
|
+
generateTotp,
|
|
40992
|
+
generateTotpSecret,
|
|
40993
|
+
getCredentialStatus,
|
|
40994
|
+
getOrRefreshFederatedTokens,
|
|
40995
|
+
getRegisteredClient,
|
|
40996
|
+
getStatus,
|
|
40997
|
+
getUserSessionId,
|
|
40998
|
+
handleAgentTokenGrant,
|
|
40999
|
+
hasOrganizationScope,
|
|
41000
|
+
hasScopes,
|
|
41001
|
+
hashAuditEvent,
|
|
41002
|
+
hashPassword,
|
|
41003
|
+
hashToken,
|
|
41004
|
+
importUser,
|
|
41005
|
+
importUsers,
|
|
41006
|
+
initTracing,
|
|
41007
|
+
instantiateUserSession,
|
|
41008
|
+
introspectToken,
|
|
41009
|
+
inviteToOrganization,
|
|
41010
|
+
isAnonymousSession,
|
|
41011
|
+
isAuditEventType,
|
|
41012
|
+
isAuthIntent,
|
|
41013
|
+
isDisposableEmail,
|
|
41014
|
+
isE164Phone,
|
|
41015
|
+
isImpersonating,
|
|
41016
|
+
isJsonValue,
|
|
41017
|
+
isLegacyHash,
|
|
41018
|
+
isMfaEnrolled,
|
|
41019
|
+
isOIDCProviderOption,
|
|
41020
|
+
isPKCEProviderOption,
|
|
41021
|
+
isPasswordCompromised,
|
|
41022
|
+
isRefreshableOAuth2Client,
|
|
41023
|
+
isRefreshableProviderOption,
|
|
41024
|
+
isRevocableOAuth2Client,
|
|
41025
|
+
isRevocableProviderOption,
|
|
41026
|
+
isSafeLocalPath,
|
|
41027
|
+
isTrustedOrigin,
|
|
41028
|
+
isUserSessionId,
|
|
41029
|
+
isValidProviderOption,
|
|
41030
|
+
isValidUser,
|
|
41031
|
+
issueAgentIdentityAssertion,
|
|
41032
|
+
issueAgentServiceAssertion,
|
|
41033
|
+
issueBackchannelAuth,
|
|
41034
|
+
issueCredential,
|
|
41035
|
+
issueDeviceAuthorization,
|
|
41036
|
+
issueSdJwtVc,
|
|
41037
|
+
issueSocketTicket,
|
|
41038
|
+
issueTokenSet,
|
|
41039
|
+
jwkThumbprint,
|
|
41040
|
+
knownDevicesTable,
|
|
41041
|
+
listObjects,
|
|
41042
|
+
listRingSessions,
|
|
41043
|
+
listSubjects,
|
|
41044
|
+
listUserOrganizations,
|
|
41045
|
+
listUserSessions,
|
|
41046
|
+
lockoutsTable,
|
|
41047
|
+
loginHistoryTable,
|
|
41048
|
+
maskPhone,
|
|
41049
|
+
mcpProtectedResourceMetadata,
|
|
41050
|
+
mfaChallenge,
|
|
41051
|
+
mfaEnrollmentsTable,
|
|
41052
|
+
mfaManagementRoutes,
|
|
41053
|
+
mfaRoutes,
|
|
41054
|
+
mfaSmsRoutes,
|
|
41055
|
+
mfaTotpRoutes,
|
|
41056
|
+
mintDpopNonce,
|
|
41057
|
+
mintLogoutToken,
|
|
41058
|
+
nativePushRoutes,
|
|
41059
|
+
oauthBackchannelAuthRequestsTable,
|
|
41060
|
+
oauthClientAssertionJtisTable,
|
|
41061
|
+
oauthClientRegistrationTokensTable,
|
|
41062
|
+
oauthClientsTable,
|
|
41063
|
+
oauthCodesTable,
|
|
41064
|
+
oauthDeviceAuthorizationsTable,
|
|
41065
|
+
oauthInitialAccessTokensTable,
|
|
41066
|
+
oauthLogoutDeliveriesTable,
|
|
41067
|
+
oauthPushedAuthorizationRequestsTable,
|
|
41068
|
+
oauthRefreshTokensTable,
|
|
41069
|
+
oauthSocketTicketsTable,
|
|
41070
|
+
oidcProviderOptions,
|
|
41071
|
+
oidcProviderRoutes,
|
|
41072
|
+
oidcSsoRoutes,
|
|
41073
|
+
organizationInvitationsTable,
|
|
41074
|
+
organizationMembershipsTable,
|
|
41075
|
+
organizationRoutes,
|
|
41076
|
+
organizationsTable,
|
|
41077
|
+
parseAbsoluteNativeAuthClients,
|
|
41078
|
+
parseJsonObject,
|
|
41079
|
+
parsePresentationToken,
|
|
41080
|
+
parseSchema,
|
|
41081
|
+
parseSdJwtVc,
|
|
41082
|
+
parseSignedRequestObject,
|
|
41083
|
+
passwordlessRoutes,
|
|
41084
|
+
passwordlessTokensTable,
|
|
41085
|
+
pkceProviderOptions,
|
|
41086
|
+
portalRoutes,
|
|
41087
|
+
presentSdJwtVc,
|
|
41088
|
+
protectPermissionPlugin,
|
|
41089
|
+
protectRoutePlugin,
|
|
41090
|
+
providerOptions,
|
|
41091
|
+
providers,
|
|
41092
|
+
providersFromEnv,
|
|
41093
|
+
pruneInactiveUsers,
|
|
41094
|
+
pushAuthorizationRequest,
|
|
41095
|
+
pushRoutes,
|
|
41096
|
+
readAuthSyncPartition,
|
|
41097
|
+
readSessionCookie,
|
|
41098
|
+
readSessionRing,
|
|
41099
|
+
readUserInfoBearer,
|
|
41100
|
+
recordLoginAttempt,
|
|
41101
|
+
refreshUserSessions,
|
|
41102
|
+
refreshableProviderOptions,
|
|
41103
|
+
registerClient,
|
|
41104
|
+
rehashCredentialPassword,
|
|
41105
|
+
removeFromSessionRing,
|
|
41106
|
+
requireAuthPlugin,
|
|
41107
|
+
resolveAccessTokenPrincipal,
|
|
41108
|
+
resolveAgentPrincipal,
|
|
41109
|
+
resolveApiPrincipal,
|
|
41110
|
+
resolveAuthHtmxRenderers,
|
|
41111
|
+
resolveClientCert,
|
|
41112
|
+
resolveClientProviderEntry,
|
|
41113
|
+
resolveCookieSecure,
|
|
41114
|
+
resolveOAuthAuthorization,
|
|
41115
|
+
resolveOAuthTokenExpiresAt,
|
|
41116
|
+
resolveOriginAllowed,
|
|
41117
|
+
resolvePermissions,
|
|
41118
|
+
resolvePostLogoutRedirect,
|
|
41119
|
+
resolveProviderClientConfiguration,
|
|
41120
|
+
resolveScimOrganization,
|
|
41121
|
+
resolveSetupSession,
|
|
41122
|
+
revocableProviderOptions,
|
|
41123
|
+
revokeAgentIdentityRegistration,
|
|
41124
|
+
revokeRefreshToken,
|
|
41125
|
+
revokeUserSessions,
|
|
41126
|
+
roleRoutes,
|
|
41127
|
+
rolesTable,
|
|
41128
|
+
rotateMfaEncryptionKey,
|
|
41129
|
+
rotateVaultKey,
|
|
41130
|
+
runEmailBreachScan,
|
|
41131
|
+
runMigrations,
|
|
41132
|
+
samlIdpRoutes,
|
|
41133
|
+
samlServiceProvidersTable,
|
|
41134
|
+
samlSsoRoutes,
|
|
41135
|
+
scimRoutes,
|
|
41136
|
+
scimTokensTable,
|
|
41137
|
+
scopeRequiredProviderOptions,
|
|
41138
|
+
scoreRisk,
|
|
41139
|
+
sessionCleanup,
|
|
41140
|
+
sessionRoutes,
|
|
41141
|
+
sessionStore,
|
|
41142
|
+
setCredentialStatus,
|
|
41143
|
+
setMemberRoles,
|
|
41144
|
+
setupSessionsTable,
|
|
41145
|
+
signJwt,
|
|
41146
|
+
signStatusList,
|
|
41147
|
+
signWebhook,
|
|
41148
|
+
signingVerificationKeys,
|
|
41149
|
+
ssoConnectionsTable,
|
|
41150
|
+
ssoDiscoveryRoute,
|
|
41151
|
+
startAgentRegistration,
|
|
41152
|
+
startImpersonation,
|
|
41153
|
+
statusListRoutes,
|
|
41154
|
+
stepUpPlugin,
|
|
41155
|
+
switchActiveSession,
|
|
41156
|
+
toBase64Url2 as toBase64Url,
|
|
41157
|
+
toPublicJwk,
|
|
41158
|
+
toSafeLocalPath,
|
|
41159
|
+
trustDevice,
|
|
41160
|
+
updateRegisteredClient,
|
|
41161
|
+
userInfoChallengeHeader,
|
|
41162
|
+
userSessionIdTypebox,
|
|
41163
|
+
validateClientIdMetadataDocument,
|
|
41164
|
+
validateEmailDeliverability,
|
|
41165
|
+
validateSession,
|
|
41166
|
+
vaultEntriesTable,
|
|
41167
|
+
vcCredentialNoncesTable,
|
|
41168
|
+
vcCredentialOffersTable,
|
|
41169
|
+
vcPresentationRequestsTable,
|
|
41170
|
+
vciRoutes,
|
|
41171
|
+
verifyAccessToken,
|
|
41172
|
+
verifyApiKey,
|
|
41173
|
+
verifyAuditChain,
|
|
41174
|
+
verifyAuth0Pbkdf2,
|
|
41175
|
+
verifyCertificateBoundToken,
|
|
41176
|
+
verifyClientAssertion,
|
|
41177
|
+
verifyCognitoSha256,
|
|
41178
|
+
verifyDpopNonce,
|
|
41179
|
+
verifyDpopProof,
|
|
41180
|
+
verifyHcaptcha,
|
|
41181
|
+
verifyIdTokenHint,
|
|
41182
|
+
verifyJwt,
|
|
41183
|
+
verifyJwtSignedByClient,
|
|
41184
|
+
verifyJwtWithKeys,
|
|
41185
|
+
verifyOidcAccessToken,
|
|
41186
|
+
verifyPassword,
|
|
41187
|
+
verifyPkce,
|
|
41188
|
+
verifyPresentationResponse,
|
|
41189
|
+
verifyRecaptcha,
|
|
41190
|
+
verifySdJwtVc,
|
|
41191
|
+
verifyStatusListJwt,
|
|
41192
|
+
verifyTotp,
|
|
41193
|
+
verifyTurnstile,
|
|
41194
|
+
verifyWebhookSignature,
|
|
41195
|
+
vpRoutes,
|
|
41196
|
+
warrantKey,
|
|
41197
|
+
warrantsTable,
|
|
41198
|
+
webauthnCredentialsTable,
|
|
41199
|
+
webauthnRoutes,
|
|
41200
|
+
webhookDeliveriesTable,
|
|
41201
|
+
withAbsoluteNativeAuthClients,
|
|
41202
|
+
withSpan,
|
|
41203
|
+
writeWarrant
|
|
41041
41204
|
};
|
|
41042
41205
|
|
|
41043
|
-
//# debugId=
|
|
41206
|
+
//# debugId=DE81F9F326A0254664756E2164756E21
|
|
41044
41207
|
//# sourceMappingURL=index.js.map
|