@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/manifest.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;
|
|
@@ -49,12 +51,12 @@ var __require = import.meta.require;
|
|
|
49
51
|
// node_modules/typebox/build/system/memory/memory.mjs
|
|
50
52
|
var exports_memory = {};
|
|
51
53
|
__export(exports_memory, {
|
|
52
|
-
|
|
53
|
-
Metrics: () => Metrics,
|
|
54
|
-
Discard: () => Discard,
|
|
55
|
-
Create: () => Create,
|
|
54
|
+
Assign: () => Assign,
|
|
56
55
|
Clone: () => Clone,
|
|
57
|
-
|
|
56
|
+
Create: () => Create,
|
|
57
|
+
Discard: () => Discard,
|
|
58
|
+
Metrics: () => Metrics,
|
|
59
|
+
Update: () => Update
|
|
58
60
|
});
|
|
59
61
|
|
|
60
62
|
// node_modules/typebox/build/system/memory/metrics.mjs
|
|
@@ -74,44 +76,44 @@ function Assign(left, right) {
|
|
|
74
76
|
// node_modules/typebox/build/guard/guard.mjs
|
|
75
77
|
var exports_guard = {};
|
|
76
78
|
__export(exports_guard, {
|
|
77
|
-
|
|
78
|
-
Symbols: () => Symbols,
|
|
79
|
-
SomeAll: () => SomeAll,
|
|
80
|
-
Some: () => Some,
|
|
81
|
-
ShiftLeft: () => ShiftLeft,
|
|
82
|
-
Keys: () => Keys,
|
|
83
|
-
IsValueLike: () => IsValueLike,
|
|
84
|
-
IsUnsafePropertyKey: () => IsUnsafePropertyKey,
|
|
85
|
-
IsUndefined: () => IsUndefined,
|
|
86
|
-
IsSymbol: () => IsSymbol,
|
|
87
|
-
IsString: () => IsString,
|
|
88
|
-
IsObjectNotArray: () => IsObjectNotArray,
|
|
89
|
-
IsObject: () => IsObject,
|
|
90
|
-
IsNumber: () => IsNumber,
|
|
91
|
-
IsNull: () => IsNull,
|
|
92
|
-
IsMultipleOf: () => IsMultipleOf,
|
|
93
|
-
IsMinLength: () => IsMinLength2,
|
|
94
|
-
IsMaxLength: () => IsMaxLength2,
|
|
95
|
-
IsLessThan: () => IsLessThan,
|
|
96
|
-
IsLessEqualThan: () => IsLessEqualThan,
|
|
97
|
-
IsInteger: () => IsInteger,
|
|
98
|
-
IsGreaterThan: () => IsGreaterThan,
|
|
99
|
-
IsGreaterEqualThan: () => IsGreaterEqualThan,
|
|
100
|
-
IsFunction: () => IsFunction,
|
|
101
|
-
IsEqual: () => IsEqual,
|
|
102
|
-
IsDeepEqual: () => IsDeepEqual,
|
|
103
|
-
IsConstructor: () => IsConstructor,
|
|
104
|
-
IsClassInstance: () => IsClassInstance,
|
|
105
|
-
IsBoolean: () => IsBoolean,
|
|
106
|
-
IsBigInt: () => IsBigInt,
|
|
107
|
-
IsArray: () => IsArray,
|
|
108
|
-
HasPropertyKey: () => HasPropertyKey,
|
|
109
|
-
GraphemeCount: () => GraphemeCount2,
|
|
110
|
-
EveryAll: () => EveryAll,
|
|
111
|
-
Every: () => Every,
|
|
112
|
-
EntriesRegExp: () => EntriesRegExp,
|
|
79
|
+
Counted: () => Counted,
|
|
113
80
|
Entries: () => Entries,
|
|
114
|
-
|
|
81
|
+
EntriesRegExp: () => EntriesRegExp,
|
|
82
|
+
Every: () => Every,
|
|
83
|
+
EveryAll: () => EveryAll,
|
|
84
|
+
GraphemeCount: () => GraphemeCount2,
|
|
85
|
+
HasPropertyKey: () => HasPropertyKey,
|
|
86
|
+
IsArray: () => IsArray,
|
|
87
|
+
IsBigInt: () => IsBigInt,
|
|
88
|
+
IsBoolean: () => IsBoolean,
|
|
89
|
+
IsClassInstance: () => IsClassInstance,
|
|
90
|
+
IsConstructor: () => IsConstructor,
|
|
91
|
+
IsDeepEqual: () => IsDeepEqual,
|
|
92
|
+
IsEqual: () => IsEqual,
|
|
93
|
+
IsFunction: () => IsFunction,
|
|
94
|
+
IsGreaterEqualThan: () => IsGreaterEqualThan,
|
|
95
|
+
IsGreaterThan: () => IsGreaterThan,
|
|
96
|
+
IsInteger: () => IsInteger,
|
|
97
|
+
IsLessEqualThan: () => IsLessEqualThan,
|
|
98
|
+
IsLessThan: () => IsLessThan,
|
|
99
|
+
IsMaxLength: () => IsMaxLength2,
|
|
100
|
+
IsMinLength: () => IsMinLength2,
|
|
101
|
+
IsMultipleOf: () => IsMultipleOf,
|
|
102
|
+
IsNull: () => IsNull,
|
|
103
|
+
IsNumber: () => IsNumber,
|
|
104
|
+
IsObject: () => IsObject,
|
|
105
|
+
IsObjectNotArray: () => IsObjectNotArray,
|
|
106
|
+
IsString: () => IsString,
|
|
107
|
+
IsSymbol: () => IsSymbol,
|
|
108
|
+
IsUndefined: () => IsUndefined,
|
|
109
|
+
IsUnsafePropertyKey: () => IsUnsafePropertyKey,
|
|
110
|
+
IsValueLike: () => IsValueLike,
|
|
111
|
+
Keys: () => Keys,
|
|
112
|
+
ShiftLeft: () => ShiftLeft,
|
|
113
|
+
Some: () => Some,
|
|
114
|
+
SomeAll: () => SomeAll,
|
|
115
|
+
Symbols: () => Symbols,
|
|
116
|
+
Values: () => Values
|
|
115
117
|
});
|
|
116
118
|
|
|
117
119
|
// node_modules/typebox/build/guard/string.mjs
|
|
@@ -390,25 +392,25 @@ function IsDeepEqual(left, right) {
|
|
|
390
392
|
// node_modules/typebox/build/guard/globals.mjs
|
|
391
393
|
var exports_globals = {};
|
|
392
394
|
__export(exports_globals, {
|
|
393
|
-
|
|
394
|
-
IsUint8Array: () => IsUint8Array,
|
|
395
|
-
IsUint32Array: () => IsUint32Array,
|
|
396
|
-
IsUint16Array: () => IsUint16Array,
|
|
397
|
-
IsTypeArray: () => IsTypeArray,
|
|
398
|
-
IsString: () => IsString2,
|
|
399
|
-
IsSet: () => IsSet,
|
|
400
|
-
IsRegExp: () => IsRegExp,
|
|
401
|
-
IsNumber: () => IsNumber2,
|
|
402
|
-
IsMap: () => IsMap,
|
|
403
|
-
IsInt8Array: () => IsInt8Array,
|
|
404
|
-
IsInt32Array: () => IsInt32Array,
|
|
405
|
-
IsInt16Array: () => IsInt16Array,
|
|
406
|
-
IsFloat64Array: () => IsFloat64Array,
|
|
407
|
-
IsFloat32Array: () => IsFloat32Array,
|
|
408
|
-
IsDate: () => IsDate,
|
|
409
|
-
IsBoolean: () => IsBoolean2,
|
|
395
|
+
IsBigInt64Array: () => IsBigInt64Array,
|
|
410
396
|
IsBigUint64Array: () => IsBigUint64Array,
|
|
411
|
-
|
|
397
|
+
IsBoolean: () => IsBoolean2,
|
|
398
|
+
IsDate: () => IsDate,
|
|
399
|
+
IsFloat32Array: () => IsFloat32Array,
|
|
400
|
+
IsFloat64Array: () => IsFloat64Array,
|
|
401
|
+
IsInt16Array: () => IsInt16Array,
|
|
402
|
+
IsInt32Array: () => IsInt32Array,
|
|
403
|
+
IsInt8Array: () => IsInt8Array,
|
|
404
|
+
IsMap: () => IsMap,
|
|
405
|
+
IsNumber: () => IsNumber2,
|
|
406
|
+
IsRegExp: () => IsRegExp,
|
|
407
|
+
IsSet: () => IsSet,
|
|
408
|
+
IsString: () => IsString2,
|
|
409
|
+
IsTypeArray: () => IsTypeArray,
|
|
410
|
+
IsUint16Array: () => IsUint16Array,
|
|
411
|
+
IsUint32Array: () => IsUint32Array,
|
|
412
|
+
IsUint8Array: () => IsUint8Array,
|
|
413
|
+
IsUint8ClampedArray: () => IsUint8ClampedArray
|
|
412
414
|
});
|
|
413
415
|
function IsBoolean2(value) {
|
|
414
416
|
return value instanceof Boolean;
|
|
@@ -532,9 +534,9 @@ function Clone(value) {
|
|
|
532
534
|
// node_modules/typebox/build/system/settings/settings.mjs
|
|
533
535
|
var exports_settings = {};
|
|
534
536
|
__export(exports_settings, {
|
|
535
|
-
|
|
537
|
+
Get: () => Get,
|
|
536
538
|
Reset: () => Reset,
|
|
537
|
-
|
|
539
|
+
Set: () => Set2
|
|
538
540
|
});
|
|
539
541
|
var settings = {
|
|
540
542
|
immutableTypes: false,
|
|
@@ -867,8 +869,8 @@ function IntersectOptions(type) {
|
|
|
867
869
|
// node_modules/typebox/build/system/hashing/hash.mjs
|
|
868
870
|
var exports_hash = {};
|
|
869
871
|
__export(exports_hash, {
|
|
870
|
-
|
|
871
|
-
|
|
872
|
+
Hash: () => Hash,
|
|
873
|
+
HashCode: () => HashCode
|
|
872
874
|
});
|
|
873
875
|
|
|
874
876
|
// node_modules/typebox/build/system/unreachable/unreachable.mjs
|
|
@@ -2575,14 +2577,14 @@ function IsTemplateLiteral(value) {
|
|
|
2575
2577
|
// node_modules/typebox/build/type/extends/result.mjs
|
|
2576
2578
|
var exports_result = {};
|
|
2577
2579
|
__export(exports_result, {
|
|
2578
|
-
|
|
2579
|
-
IsExtendsUnion: () => IsExtendsUnion,
|
|
2580
|
-
IsExtendsTrueLike: () => IsExtendsTrueLike,
|
|
2581
|
-
IsExtendsTrue: () => IsExtendsTrue,
|
|
2582
|
-
IsExtendsFalse: () => IsExtendsFalse,
|
|
2583
|
-
ExtendsUnion: () => ExtendsUnion,
|
|
2580
|
+
ExtendsFalse: () => ExtendsFalse,
|
|
2584
2581
|
ExtendsTrue: () => ExtendsTrue,
|
|
2585
|
-
|
|
2582
|
+
ExtendsUnion: () => ExtendsUnion,
|
|
2583
|
+
IsExtendsFalse: () => IsExtendsFalse,
|
|
2584
|
+
IsExtendsTrue: () => IsExtendsTrue,
|
|
2585
|
+
IsExtendsTrueLike: () => IsExtendsTrueLike,
|
|
2586
|
+
IsExtendsUnion: () => IsExtendsUnion,
|
|
2587
|
+
Match: () => Match3
|
|
2586
2588
|
});
|
|
2587
2589
|
function ExtendsUnion(inferred) {
|
|
2588
2590
|
return exports_memory.Create({ ["~kind"]: "ExtendsUnion" }, { inferred });
|
|
@@ -4393,123 +4395,123 @@ function Script2(...args) {
|
|
|
4393
4395
|
// node_modules/typebox/build/typebox.mjs
|
|
4394
4396
|
var exports_typebox = {};
|
|
4395
4397
|
__export(exports_typebox, {
|
|
4396
|
-
|
|
4397
|
-
Void: () => Void,
|
|
4398
|
-
Uppercase: () => Uppercase,
|
|
4399
|
-
Unsafe: () => Unsafe,
|
|
4400
|
-
Unknown: () => Unknown,
|
|
4401
|
-
Union: () => Union,
|
|
4402
|
-
Undefined: () => Undefined,
|
|
4403
|
-
Uncapitalize: () => Uncapitalize,
|
|
4404
|
-
Tuple: () => Tuple,
|
|
4405
|
-
This: () => This,
|
|
4406
|
-
TemplateLiteral: () => TemplateLiteral2,
|
|
4407
|
-
Symbol: () => Symbol2,
|
|
4408
|
-
String: () => String2,
|
|
4409
|
-
Script: () => Script2,
|
|
4410
|
-
ReturnType: () => ReturnType,
|
|
4411
|
-
Rest: () => Rest,
|
|
4412
|
-
Required: () => Required,
|
|
4413
|
-
Refine: () => Refine,
|
|
4414
|
-
Ref: () => Ref,
|
|
4415
|
-
RecordValue: () => RecordValue,
|
|
4416
|
-
RecordPattern: () => RecordPattern,
|
|
4417
|
-
RecordKey: () => RecordKey,
|
|
4418
|
-
Record: () => Record,
|
|
4419
|
-
ReadonlyType: () => ReadonlyType,
|
|
4420
|
-
ReadonlyObject: () => ReadonlyObject,
|
|
4421
|
-
Readonly: () => Readonly,
|
|
4422
|
-
Pick: () => Pick,
|
|
4423
|
-
Partial: () => Partial,
|
|
4424
|
-
Parameters: () => Parameters,
|
|
4425
|
-
Parameter: () => Parameter,
|
|
4426
|
-
Optional: () => Optional,
|
|
4427
|
-
Omit: () => Omit,
|
|
4428
|
-
Object: () => _Object_,
|
|
4429
|
-
Number: () => Number2,
|
|
4430
|
-
Null: () => Null,
|
|
4431
|
-
NonNullable: () => NonNullable,
|
|
4432
|
-
Never: () => Never,
|
|
4433
|
-
Module: () => Module2,
|
|
4434
|
-
Mapped: () => Mapped,
|
|
4435
|
-
Lowercase: () => Lowercase,
|
|
4436
|
-
Literal: () => Literal,
|
|
4437
|
-
KeyOf: () => KeyOf2,
|
|
4438
|
-
IsVoid: () => IsVoid,
|
|
4439
|
-
IsUnsafe: () => IsUnsafe,
|
|
4440
|
-
IsUnknown: () => IsUnknown,
|
|
4441
|
-
IsUnion: () => IsUnion,
|
|
4442
|
-
IsUndefined: () => IsUndefined2,
|
|
4443
|
-
IsTuple: () => IsTuple,
|
|
4444
|
-
IsThis: () => IsThis,
|
|
4445
|
-
IsTemplateLiteral: () => IsTemplateLiteral,
|
|
4446
|
-
IsSymbol: () => IsSymbol2,
|
|
4447
|
-
IsString: () => IsString3,
|
|
4448
|
-
IsSchema: () => IsSchema,
|
|
4449
|
-
IsRest: () => IsRest,
|
|
4450
|
-
IsRefine: () => IsRefine,
|
|
4451
|
-
IsRef: () => IsRef,
|
|
4452
|
-
IsRecord: () => IsRecord,
|
|
4453
|
-
IsReadonly: () => IsReadonly,
|
|
4454
|
-
IsParameter: () => IsParameter,
|
|
4455
|
-
IsOptional: () => IsOptional,
|
|
4456
|
-
IsObject: () => IsObject2,
|
|
4457
|
-
IsNumber: () => IsNumber3,
|
|
4458
|
-
IsNull: () => IsNull2,
|
|
4459
|
-
IsNever: () => IsNever,
|
|
4460
|
-
IsLiteral: () => IsLiteral,
|
|
4461
|
-
IsKind: () => IsKind,
|
|
4462
|
-
IsIntersect: () => IsIntersect,
|
|
4463
|
-
IsInteger: () => IsInteger2,
|
|
4464
|
-
IsInfer: () => IsInfer,
|
|
4465
|
-
IsImmutable: () => IsImmutable,
|
|
4466
|
-
IsIdentifier: () => IsIdentifier,
|
|
4467
|
-
IsGeneric: () => IsGeneric,
|
|
4468
|
-
IsFunction: () => IsFunction2,
|
|
4469
|
-
IsEnumValue: () => IsEnumValue,
|
|
4470
|
-
IsEnum: () => IsEnum,
|
|
4471
|
-
IsDependent: () => IsDependent,
|
|
4472
|
-
IsCyclic: () => IsCyclic,
|
|
4473
|
-
IsConstructor: () => IsConstructor2,
|
|
4474
|
-
IsCodec: () => IsCodec,
|
|
4475
|
-
IsCall: () => IsCall,
|
|
4476
|
-
IsBoolean: () => IsBoolean3,
|
|
4477
|
-
IsBigInt: () => IsBigInt2,
|
|
4478
|
-
IsArray: () => IsArray2,
|
|
4479
|
-
IsAny: () => IsAny,
|
|
4480
|
-
Intersect: () => Intersect,
|
|
4481
|
-
Interface: () => Interface,
|
|
4482
|
-
Integer: () => Integer,
|
|
4483
|
-
Instantiate: () => Instantiate,
|
|
4484
|
-
InstanceType: () => InstanceType,
|
|
4485
|
-
Infer: () => Infer,
|
|
4486
|
-
Index: () => Index,
|
|
4487
|
-
Immutable: () => Immutable,
|
|
4488
|
-
Identifier: () => Identifier,
|
|
4489
|
-
Generic: () => Generic,
|
|
4490
|
-
Function: () => _Function_,
|
|
4491
|
-
Extract: () => Extract,
|
|
4492
|
-
ExtendsResult: () => exports_result,
|
|
4493
|
-
Extends: () => Extends,
|
|
4494
|
-
Exclude: () => Exclude,
|
|
4495
|
-
Evaluate: () => Evaluate,
|
|
4496
|
-
Enum: () => Enum,
|
|
4497
|
-
EncodeBuilder: () => EncodeBuilder,
|
|
4498
|
-
Encode: () => Encode,
|
|
4499
|
-
Dependent: () => Dependent,
|
|
4500
|
-
DecodeBuilder: () => DecodeBuilder,
|
|
4501
|
-
Decode: () => Decode,
|
|
4502
|
-
Cyclic: () => Cyclic,
|
|
4503
|
-
ConstructorParameters: () => ConstructorParameters,
|
|
4504
|
-
Constructor: () => Constructor,
|
|
4505
|
-
Conditional: () => Conditional,
|
|
4506
|
-
Codec: () => Codec,
|
|
4507
|
-
Capitalize: () => Capitalize,
|
|
4508
|
-
Call: () => Call,
|
|
4509
|
-
Boolean: () => Boolean2,
|
|
4510
|
-
BigInt: () => BigInt2,
|
|
4398
|
+
Any: () => Any,
|
|
4511
4399
|
Array: () => _Array_,
|
|
4512
|
-
|
|
4400
|
+
BigInt: () => BigInt2,
|
|
4401
|
+
Boolean: () => Boolean2,
|
|
4402
|
+
Call: () => Call,
|
|
4403
|
+
Capitalize: () => Capitalize,
|
|
4404
|
+
Codec: () => Codec,
|
|
4405
|
+
Conditional: () => Conditional,
|
|
4406
|
+
Constructor: () => Constructor,
|
|
4407
|
+
ConstructorParameters: () => ConstructorParameters,
|
|
4408
|
+
Cyclic: () => Cyclic,
|
|
4409
|
+
Decode: () => Decode,
|
|
4410
|
+
DecodeBuilder: () => DecodeBuilder,
|
|
4411
|
+
Dependent: () => Dependent,
|
|
4412
|
+
Encode: () => Encode,
|
|
4413
|
+
EncodeBuilder: () => EncodeBuilder,
|
|
4414
|
+
Enum: () => Enum,
|
|
4415
|
+
Evaluate: () => Evaluate,
|
|
4416
|
+
Exclude: () => Exclude,
|
|
4417
|
+
Extends: () => Extends,
|
|
4418
|
+
ExtendsResult: () => exports_result,
|
|
4419
|
+
Extract: () => Extract,
|
|
4420
|
+
Function: () => _Function_,
|
|
4421
|
+
Generic: () => Generic,
|
|
4422
|
+
Identifier: () => Identifier,
|
|
4423
|
+
Immutable: () => Immutable,
|
|
4424
|
+
Index: () => Index,
|
|
4425
|
+
Infer: () => Infer,
|
|
4426
|
+
InstanceType: () => InstanceType,
|
|
4427
|
+
Instantiate: () => Instantiate,
|
|
4428
|
+
Integer: () => Integer,
|
|
4429
|
+
Interface: () => Interface,
|
|
4430
|
+
Intersect: () => Intersect,
|
|
4431
|
+
IsAny: () => IsAny,
|
|
4432
|
+
IsArray: () => IsArray2,
|
|
4433
|
+
IsBigInt: () => IsBigInt2,
|
|
4434
|
+
IsBoolean: () => IsBoolean3,
|
|
4435
|
+
IsCall: () => IsCall,
|
|
4436
|
+
IsCodec: () => IsCodec,
|
|
4437
|
+
IsConstructor: () => IsConstructor2,
|
|
4438
|
+
IsCyclic: () => IsCyclic,
|
|
4439
|
+
IsDependent: () => IsDependent,
|
|
4440
|
+
IsEnum: () => IsEnum,
|
|
4441
|
+
IsEnumValue: () => IsEnumValue,
|
|
4442
|
+
IsFunction: () => IsFunction2,
|
|
4443
|
+
IsGeneric: () => IsGeneric,
|
|
4444
|
+
IsIdentifier: () => IsIdentifier,
|
|
4445
|
+
IsImmutable: () => IsImmutable,
|
|
4446
|
+
IsInfer: () => IsInfer,
|
|
4447
|
+
IsInteger: () => IsInteger2,
|
|
4448
|
+
IsIntersect: () => IsIntersect,
|
|
4449
|
+
IsKind: () => IsKind,
|
|
4450
|
+
IsLiteral: () => IsLiteral,
|
|
4451
|
+
IsNever: () => IsNever,
|
|
4452
|
+
IsNull: () => IsNull2,
|
|
4453
|
+
IsNumber: () => IsNumber3,
|
|
4454
|
+
IsObject: () => IsObject2,
|
|
4455
|
+
IsOptional: () => IsOptional,
|
|
4456
|
+
IsParameter: () => IsParameter,
|
|
4457
|
+
IsReadonly: () => IsReadonly,
|
|
4458
|
+
IsRecord: () => IsRecord,
|
|
4459
|
+
IsRef: () => IsRef,
|
|
4460
|
+
IsRefine: () => IsRefine,
|
|
4461
|
+
IsRest: () => IsRest,
|
|
4462
|
+
IsSchema: () => IsSchema,
|
|
4463
|
+
IsString: () => IsString3,
|
|
4464
|
+
IsSymbol: () => IsSymbol2,
|
|
4465
|
+
IsTemplateLiteral: () => IsTemplateLiteral,
|
|
4466
|
+
IsThis: () => IsThis,
|
|
4467
|
+
IsTuple: () => IsTuple,
|
|
4468
|
+
IsUndefined: () => IsUndefined2,
|
|
4469
|
+
IsUnion: () => IsUnion,
|
|
4470
|
+
IsUnknown: () => IsUnknown,
|
|
4471
|
+
IsUnsafe: () => IsUnsafe,
|
|
4472
|
+
IsVoid: () => IsVoid,
|
|
4473
|
+
KeyOf: () => KeyOf2,
|
|
4474
|
+
Literal: () => Literal,
|
|
4475
|
+
Lowercase: () => Lowercase,
|
|
4476
|
+
Mapped: () => Mapped,
|
|
4477
|
+
Module: () => Module2,
|
|
4478
|
+
Never: () => Never,
|
|
4479
|
+
NonNullable: () => NonNullable,
|
|
4480
|
+
Null: () => Null,
|
|
4481
|
+
Number: () => Number2,
|
|
4482
|
+
Object: () => _Object_,
|
|
4483
|
+
Omit: () => Omit,
|
|
4484
|
+
Optional: () => Optional,
|
|
4485
|
+
Parameter: () => Parameter,
|
|
4486
|
+
Parameters: () => Parameters,
|
|
4487
|
+
Partial: () => Partial,
|
|
4488
|
+
Pick: () => Pick,
|
|
4489
|
+
Readonly: () => Readonly,
|
|
4490
|
+
ReadonlyObject: () => ReadonlyObject,
|
|
4491
|
+
ReadonlyType: () => ReadonlyType,
|
|
4492
|
+
Record: () => Record,
|
|
4493
|
+
RecordKey: () => RecordKey,
|
|
4494
|
+
RecordPattern: () => RecordPattern,
|
|
4495
|
+
RecordValue: () => RecordValue,
|
|
4496
|
+
Ref: () => Ref,
|
|
4497
|
+
Refine: () => Refine,
|
|
4498
|
+
Required: () => Required,
|
|
4499
|
+
Rest: () => Rest,
|
|
4500
|
+
ReturnType: () => ReturnType,
|
|
4501
|
+
Script: () => Script2,
|
|
4502
|
+
String: () => String2,
|
|
4503
|
+
Symbol: () => Symbol2,
|
|
4504
|
+
TemplateLiteral: () => TemplateLiteral2,
|
|
4505
|
+
This: () => This,
|
|
4506
|
+
Tuple: () => Tuple,
|
|
4507
|
+
Uncapitalize: () => Uncapitalize,
|
|
4508
|
+
Undefined: () => Undefined,
|
|
4509
|
+
Union: () => Union,
|
|
4510
|
+
Unknown: () => Unknown,
|
|
4511
|
+
Unsafe: () => Unsafe,
|
|
4512
|
+
Uppercase: () => Uppercase,
|
|
4513
|
+
Void: () => Void,
|
|
4514
|
+
With: () => With2
|
|
4513
4515
|
});
|
|
4514
4516
|
// node_modules/typebox/build/schema/types/_refine.mjs
|
|
4515
4517
|
function IsRefine2(value) {
|
|
@@ -5086,34 +5088,34 @@ function ErrorExclusiveMinimum(stack, context, schemaPath, instancePath, schema3
|
|
|
5086
5088
|
// node_modules/typebox/build/format/format.mjs
|
|
5087
5089
|
var exports_format = {};
|
|
5088
5090
|
__export(exports_format, {
|
|
5089
|
-
|
|
5090
|
-
Set: () => Set3,
|
|
5091
|
-
Reset: () => Reset2,
|
|
5092
|
-
IsUuid: () => IsUuid,
|
|
5093
|
-
IsUrl: () => IsUrl,
|
|
5094
|
-
IsUriTemplate: () => IsUriTemplate,
|
|
5095
|
-
IsUriReference: () => IsUriReference,
|
|
5096
|
-
IsUri: () => IsUri,
|
|
5097
|
-
IsTime: () => IsTime,
|
|
5098
|
-
IsRelativeJsonPointer: () => IsRelativeJsonPointer,
|
|
5099
|
-
IsRegex: () => IsRegex,
|
|
5100
|
-
IsJsonPointerUriFragment: () => IsJsonPointerUriFragment,
|
|
5101
|
-
IsJsonPointer: () => IsJsonPointer,
|
|
5102
|
-
IsIriReference: () => IsIriReference,
|
|
5103
|
-
IsIri: () => IsIri,
|
|
5104
|
-
IsIdnHostname: () => IsIdnHostname2,
|
|
5105
|
-
IsIdnEmail: () => IsIdnEmail,
|
|
5106
|
-
IsIPv6: () => IsIPv6,
|
|
5107
|
-
IsIPv4: () => IsIPv4,
|
|
5108
|
-
IsHostname: () => IsHostname2,
|
|
5109
|
-
IsEmail: () => IsEmail,
|
|
5110
|
-
IsDuration: () => IsDuration,
|
|
5111
|
-
IsDateTime: () => IsDateTime,
|
|
5112
|
-
IsDate: () => IsDate2,
|
|
5113
|
-
Has: () => Has,
|
|
5114
|
-
Get: () => Get3,
|
|
5091
|
+
Clear: () => Clear,
|
|
5115
5092
|
Entries: () => Entries2,
|
|
5116
|
-
|
|
5093
|
+
Get: () => Get3,
|
|
5094
|
+
Has: () => Has,
|
|
5095
|
+
IsDate: () => IsDate2,
|
|
5096
|
+
IsDateTime: () => IsDateTime,
|
|
5097
|
+
IsDuration: () => IsDuration,
|
|
5098
|
+
IsEmail: () => IsEmail,
|
|
5099
|
+
IsHostname: () => IsHostname2,
|
|
5100
|
+
IsIPv4: () => IsIPv4,
|
|
5101
|
+
IsIPv6: () => IsIPv6,
|
|
5102
|
+
IsIdnEmail: () => IsIdnEmail,
|
|
5103
|
+
IsIdnHostname: () => IsIdnHostname2,
|
|
5104
|
+
IsIri: () => IsIri,
|
|
5105
|
+
IsIriReference: () => IsIriReference,
|
|
5106
|
+
IsJsonPointer: () => IsJsonPointer,
|
|
5107
|
+
IsJsonPointerUriFragment: () => IsJsonPointerUriFragment,
|
|
5108
|
+
IsRegex: () => IsRegex,
|
|
5109
|
+
IsRelativeJsonPointer: () => IsRelativeJsonPointer,
|
|
5110
|
+
IsTime: () => IsTime,
|
|
5111
|
+
IsUri: () => IsUri,
|
|
5112
|
+
IsUriReference: () => IsUriReference,
|
|
5113
|
+
IsUriTemplate: () => IsUriTemplate,
|
|
5114
|
+
IsUrl: () => IsUrl,
|
|
5115
|
+
IsUuid: () => IsUuid,
|
|
5116
|
+
Reset: () => Reset2,
|
|
5117
|
+
Set: () => Set3,
|
|
5118
|
+
Test: () => Test
|
|
5117
5119
|
});
|
|
5118
5120
|
|
|
5119
5121
|
// node_modules/typebox/build/format/date.mjs
|
|
@@ -6206,18 +6208,18 @@ var funcs = new Map;
|
|
|
6206
6208
|
// node_modules/typebox/build/schema/resolve/resolve.mjs
|
|
6207
6209
|
var exports_resolve = {};
|
|
6208
6210
|
__export(exports_resolve, {
|
|
6209
|
-
|
|
6211
|
+
DefaultBase: () => DefaultBase,
|
|
6210
6212
|
DynamicRef: () => DynamicRef,
|
|
6211
|
-
|
|
6213
|
+
Ref: () => Ref2
|
|
6212
6214
|
});
|
|
6213
6215
|
// node_modules/typebox/build/schema/pointer/pointer.mjs
|
|
6214
6216
|
var exports_pointer = {};
|
|
6215
6217
|
__export(exports_pointer, {
|
|
6216
|
-
|
|
6217
|
-
Indices: () => Indices,
|
|
6218
|
-
Has: () => Has2,
|
|
6218
|
+
Delete: () => Delete,
|
|
6219
6219
|
Get: () => Get4,
|
|
6220
|
-
|
|
6220
|
+
Has: () => Has2,
|
|
6221
|
+
Indices: () => Indices,
|
|
6222
|
+
Set: () => Set4
|
|
6221
6223
|
});
|
|
6222
6224
|
function AssertNotRoot(indices) {
|
|
6223
6225
|
if (indices.length === 0)
|
|
@@ -6716,16 +6718,16 @@ function Clean(...args) {
|
|
|
6716
6718
|
// node_modules/typebox/build/value/convert/try/try.mjs
|
|
6717
6719
|
var exports_try = {};
|
|
6718
6720
|
__export(exports_try, {
|
|
6719
|
-
|
|
6720
|
-
TryString: () => TryString,
|
|
6721
|
-
TryNumber: () => TryNumber,
|
|
6722
|
-
TryNull: () => TryNull,
|
|
6723
|
-
TryBoolean: () => TryBoolean,
|
|
6724
|
-
TryBigInt: () => TryBigInt,
|
|
6725
|
-
TryArray: () => TryArray,
|
|
6726
|
-
Ok: () => Ok,
|
|
6721
|
+
Fail: () => Fail,
|
|
6727
6722
|
IsOk: () => IsOk,
|
|
6728
|
-
|
|
6723
|
+
Ok: () => Ok,
|
|
6724
|
+
TryArray: () => TryArray,
|
|
6725
|
+
TryBigInt: () => TryBigInt,
|
|
6726
|
+
TryBoolean: () => TryBoolean,
|
|
6727
|
+
TryNull: () => TryNull,
|
|
6728
|
+
TryNumber: () => TryNumber,
|
|
6729
|
+
TryString: () => TryString,
|
|
6730
|
+
TryUndefined: () => TryUndefined
|
|
6729
6731
|
});
|
|
6730
6732
|
|
|
6731
6733
|
// node_modules/typebox/build/value/convert/try/try_result.mjs
|
|
@@ -8000,24 +8002,24 @@ function Repair(...args) {
|
|
|
8000
8002
|
// node_modules/typebox/build/value/value.mjs
|
|
8001
8003
|
var exports_value = {};
|
|
8002
8004
|
__export(exports_value, {
|
|
8003
|
-
|
|
8004
|
-
Pointer: () => exports_pointer,
|
|
8005
|
-
Patch: () => Patch,
|
|
8006
|
-
Parse: () => Parse,
|
|
8007
|
-
Hash: () => Hash2,
|
|
8008
|
-
HasCodec: () => HasCodec,
|
|
8009
|
-
Errors: () => Errors2,
|
|
8010
|
-
Equal: () => Equal,
|
|
8011
|
-
Encode: () => Encode10,
|
|
8012
|
-
Diff: () => Diff,
|
|
8013
|
-
Default: () => Default,
|
|
8014
|
-
Decode: () => Decode10,
|
|
8015
|
-
Create: () => Create2,
|
|
8016
|
-
Convert: () => Convert,
|
|
8017
|
-
Clone: () => Clone2,
|
|
8018
|
-
Clean: () => Clean,
|
|
8005
|
+
Assert: () => Assert,
|
|
8019
8006
|
Check: () => Check2,
|
|
8020
|
-
|
|
8007
|
+
Clean: () => Clean,
|
|
8008
|
+
Clone: () => Clone2,
|
|
8009
|
+
Convert: () => Convert,
|
|
8010
|
+
Create: () => Create2,
|
|
8011
|
+
Decode: () => Decode10,
|
|
8012
|
+
Default: () => Default,
|
|
8013
|
+
Diff: () => Diff,
|
|
8014
|
+
Encode: () => Encode10,
|
|
8015
|
+
Equal: () => Equal,
|
|
8016
|
+
Errors: () => Errors2,
|
|
8017
|
+
HasCodec: () => HasCodec,
|
|
8018
|
+
Hash: () => Hash2,
|
|
8019
|
+
Parse: () => Parse,
|
|
8020
|
+
Patch: () => Patch,
|
|
8021
|
+
Pointer: () => exports_pointer,
|
|
8022
|
+
Repair: () => Repair
|
|
8021
8023
|
});
|
|
8022
8024
|
// node_modules/@absolutejs/manifest/dist/index.js
|
|
8023
8025
|
var defineImplementation = () => (implementation) => {
|
|
@@ -8578,5 +8580,5 @@ export {
|
|
|
8578
8580
|
manifest
|
|
8579
8581
|
};
|
|
8580
8582
|
|
|
8581
|
-
//# debugId=
|
|
8583
|
+
//# debugId=276EEE8BB4B3795364756E2164756E21
|
|
8582
8584
|
//# sourceMappingURL=manifest.js.map
|