@dxos/echo-query 0.8.4-main.3c1ae3b → 0.8.4-main.3eb6e50203

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.
@@ -5,7 +5,7 @@ import "@dxos/log";
5
5
  //#region rolldown:runtime
6
6
 
7
7
  //#endregion
8
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/precondition/Pre.d.ts
8
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/precondition/Pre.d.ts
9
9
  /**
10
10
  * Add pre-condition checks inside a property execution
11
11
  * @param expectTruthy - cancel the run whenever this value is falsy
@@ -24,7 +24,7 @@ interface RandomGenerator {
24
24
  getState?(): readonly number[];
25
25
  }
26
26
  //#endregion
27
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/random/generator/Random.d.ts
27
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/random/generator/Random.d.ts
28
28
  /**
29
29
  * Wrapper around an instance of a `pure-rand`'s random number generator
30
30
  * offering a simpler interface to deal with random with impure patterns
@@ -95,7 +95,7 @@ declare class Random {
95
95
  getState(): readonly number[] | undefined;
96
96
  }
97
97
  //#endregion
98
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/stream/Stream.d.ts
98
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/stream/Stream.d.ts
99
99
  /**
100
100
  * Wrapper around `IterableIterator` interface
101
101
  * offering a set of helpers to deal with iterations in a simple way
@@ -242,7 +242,7 @@ declare class Stream$1<T$1> implements IterableIterator<T$1> {
242
242
  */
243
243
  declare function stream<T$1>(g: IterableIterator<T$1>): Stream$1<T$1>;
244
244
  //#endregion
245
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/arbitrary/definition/Value.d.ts
245
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/arbitrary/definition/Value.d.ts
246
246
  /**
247
247
  * A `Value<T, TShrink = T>` holds an internal value of type `T`
248
248
  * and its associated context
@@ -282,7 +282,7 @@ declare class Value$1<T$1> {
282
282
  constructor(value_: T$1, context: unknown, customGetValue?: (() => T$1) | undefined);
283
283
  }
284
284
  //#endregion
285
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/arbitrary/definition/Arbitrary.d.ts
285
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/arbitrary/definition/Arbitrary.d.ts
286
286
  /**
287
287
  * Abstract class able to generate values on type `T`
288
288
  *
@@ -429,7 +429,7 @@ declare abstract class Arbitrary<T$1> {
429
429
  noBias(): Arbitrary<T$1>;
430
430
  }
431
431
  //#endregion
432
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/precondition/PreconditionFailure.d.ts
432
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/precondition/PreconditionFailure.d.ts
433
433
  /**
434
434
  * Error type produced whenever a precondition fails
435
435
  * @remarks Since 2.2.0
@@ -441,7 +441,7 @@ declare class PreconditionFailure extends Error {
441
441
  static isFailure(err: unknown): err is PreconditionFailure;
442
442
  }
443
443
  //#endregion
444
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/property/IRawProperty.d.ts
444
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/IRawProperty.d.ts
445
445
  /**
446
446
  * Represent failures of the property
447
447
  * @remarks Since 3.0.0
@@ -514,7 +514,7 @@ interface IRawProperty<Ts, IsAsync extends boolean = boolean> {
514
514
  runAfterEach?: () => (IsAsync extends true ? Promise<void> : never) | (IsAsync extends false ? void : never);
515
515
  }
516
516
  //#endregion
517
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/MaxLengthFromMinLength.d.ts
517
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/MaxLengthFromMinLength.d.ts
518
518
  /**
519
519
  * The size parameter defines how large the generated values could be.
520
520
  *
@@ -556,7 +556,7 @@ type SizeForArbitrary = RelativeSize | Size | 'max' | undefined;
556
556
  */
557
557
  type DepthSize = RelativeSize | Size | 'max' | number | undefined;
558
558
  //#endregion
559
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/runner/configuration/RandomType.d.ts
559
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/RandomType.d.ts
560
560
  /**
561
561
  * Random generators automatically recognized by the framework
562
562
  * without having to pass a builder function
@@ -565,7 +565,7 @@ type DepthSize = RelativeSize | Size | 'max' | number | undefined;
565
565
  */
566
566
  type RandomType = 'mersenne' | 'congruential' | 'congruential32' | 'xorshift128plus' | 'xoroshiro128plus';
567
567
  //#endregion
568
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/runner/configuration/VerbosityLevel.d.ts
568
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/VerbosityLevel.d.ts
569
569
  /**
570
570
  * Verbosity level
571
571
  * @remarks Since 1.9.1
@@ -604,7 +604,7 @@ declare enum VerbosityLevel {
604
604
  VeryVerbose = 2,
605
605
  }
606
606
  //#endregion
607
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/runner/reporter/ExecutionStatus.d.ts
607
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/reporter/ExecutionStatus.d.ts
608
608
  /**
609
609
  * Status of the execution of the property
610
610
  * @remarks Since 1.9.0
@@ -616,7 +616,7 @@ declare enum ExecutionStatus {
616
616
  Failure = 1,
617
617
  }
618
618
  //#endregion
619
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/runner/reporter/ExecutionTree.d.ts
619
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/reporter/ExecutionTree.d.ts
620
620
  /**
621
621
  * Summary of the execution process
622
622
  * @remarks Since 1.9.0
@@ -640,7 +640,7 @@ interface ExecutionTree<Ts> {
640
640
  children: ExecutionTree<Ts>[];
641
641
  }
642
642
  //#endregion
643
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/runner/reporter/RunDetails.d.ts
643
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/reporter/RunDetails.d.ts
644
644
  /**
645
645
  * Post-run details produced by {@link check}
646
646
  *
@@ -825,7 +825,7 @@ interface RunDetailsCommon<Ts> {
825
825
  runConfiguration: Parameters$1<Ts>;
826
826
  }
827
827
  //#endregion
828
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/runner/configuration/Parameters.d.ts
828
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/Parameters.d.ts
829
829
  /**
830
830
  * Customization of the parameters used to run the properties
831
831
  * @remarks Since 0.0.6
@@ -1026,7 +1026,7 @@ interface Parameters$1<T$1 = void> {
1026
1026
  errorWithCause?: boolean;
1027
1027
  }
1028
1028
  //#endregion
1029
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/runner/configuration/GlobalParameters.d.ts
1029
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/GlobalParameters.d.ts
1030
1030
  /**
1031
1031
  * Type of legal hook function that can be used in the global parameter `beforeEach` and/or `afterEach`
1032
1032
  * @remarks Since 2.3.0
@@ -1142,7 +1142,7 @@ declare function readConfigureGlobal(): GlobalParameters;
1142
1142
  */
1143
1143
  declare function resetConfigureGlobal(): void;
1144
1144
  //#endregion
1145
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/property/AsyncProperty.generic.d.ts
1145
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/AsyncProperty.generic.d.ts
1146
1146
  /**
1147
1147
  * Type of legal hook function that can be used to call `beforeEach` or `afterEach`
1148
1148
  * on a {@link IAsyncPropertyWithHooks}
@@ -1177,7 +1177,7 @@ interface IAsyncPropertyWithHooks<Ts> extends IAsyncProperty<Ts> {
1177
1177
  afterEach(hookFunction: AsyncPropertyHookFunction): IAsyncPropertyWithHooks<Ts>;
1178
1178
  }
1179
1179
  //#endregion
1180
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/property/AsyncProperty.d.ts
1180
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/AsyncProperty.d.ts
1181
1181
  /**
1182
1182
  * Instantiate a new {@link fast-check#IAsyncProperty}
1183
1183
  * @param predicate - Assess the success of the property. Would be considered falsy if it throws or if its output evaluates to false
@@ -1186,7 +1186,7 @@ interface IAsyncPropertyWithHooks<Ts> extends IAsyncProperty<Ts> {
1186
1186
  */
1187
1187
  declare function asyncProperty<Ts extends [unknown, ...unknown[]]>(...args: [...arbitraries: { [K in keyof Ts]: Arbitrary<Ts[K]> }, predicate: (...args: Ts) => Promise<boolean | void>]): IAsyncPropertyWithHooks<Ts>;
1188
1188
  //#endregion
1189
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/property/Property.generic.d.ts
1189
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/Property.generic.d.ts
1190
1190
  /**
1191
1191
  * Type of legal hook function that can be used to call `beforeEach` or `afterEach`
1192
1192
  * on a {@link IPropertyWithHooks}
@@ -1233,7 +1233,7 @@ interface IPropertyWithHooks<Ts> extends IProperty<Ts> {
1233
1233
  afterEach(hookFunction: PropertyHookFunction): IPropertyWithHooks<Ts>;
1234
1234
  }
1235
1235
  //#endregion
1236
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/property/Property.d.ts
1236
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/Property.d.ts
1237
1237
  /**
1238
1238
  * Instantiate a new {@link fast-check#IProperty}
1239
1239
  * @param predicate - Assess the success of the property. Would be considered falsy if it throws or if its output evaluates to false
@@ -1242,7 +1242,7 @@ interface IPropertyWithHooks<Ts> extends IProperty<Ts> {
1242
1242
  */
1243
1243
  declare function property$1<Ts extends [unknown, ...unknown[]]>(...args: [...arbitraries: { [K in keyof Ts]: Arbitrary<Ts[K]> }, predicate: (...args: Ts) => boolean | void]): IPropertyWithHooks<Ts>;
1244
1244
  //#endregion
1245
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/runner/Runner.d.ts
1245
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/Runner.d.ts
1246
1246
  /**
1247
1247
  * Run the property, do not throw contrary to {@link assert}
1248
1248
  *
@@ -1327,7 +1327,7 @@ declare function assert<Ts>(property: IProperty<Ts>, params?: Parameters$1<Ts>):
1327
1327
  */
1328
1328
  declare function assert<Ts>(property: IRawProperty<Ts>, params?: Parameters$1<Ts>): Promise<void> | void;
1329
1329
  //#endregion
1330
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/runner/Sampler.d.ts
1330
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/Sampler.d.ts
1331
1331
  /**
1332
1332
  * Generate an array containing all the values that would have been generated during {@link assert} or {@link check}
1333
1333
  *
@@ -1370,7 +1370,7 @@ declare function sample<Ts>(generator: IRawProperty<Ts> | Arbitrary<Ts>, params?
1370
1370
  */
1371
1371
  declare function statistics<Ts>(generator: IRawProperty<Ts> | Arbitrary<Ts>, classify: (v: Ts) => string | string[], params?: Parameters$1<Ts> | number): void;
1372
1372
  //#endregion
1373
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/_internals/builders/GeneratorValueBuilder.d.ts
1373
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/builders/GeneratorValueBuilder.d.ts
1374
1374
  /**
1375
1375
  * Take an arbitrary builder and all its arguments separatly.
1376
1376
  * Generate a value out of it.
@@ -1402,7 +1402,7 @@ type GeneratorValueMethods = {
1402
1402
  */
1403
1403
  type GeneratorValue = GeneratorValueFunction & GeneratorValueMethods;
1404
1404
  //#endregion
1405
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/gen.d.ts
1405
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/gen.d.ts
1406
1406
  /**
1407
1407
  * Generate values within the test execution itself by leveraging the strength of `gen`
1408
1408
  *
@@ -1438,7 +1438,7 @@ type GeneratorValue = GeneratorValueFunction & GeneratorValueMethods;
1438
1438
  */
1439
1439
  declare function gen(): Arbitrary<GeneratorValue>;
1440
1440
  //#endregion
1441
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/DepthContext.d.ts
1441
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/DepthContext.d.ts
1442
1442
  /**
1443
1443
  * Type used to strongly type instances of depth identifier while keeping internals
1444
1444
  * what they contain internally
@@ -1479,7 +1479,7 @@ declare function getDepthContextFor(contextMeta: DepthContext | DepthIdentifier
1479
1479
  */
1480
1480
  declare function createDepthIdentifier(): DepthIdentifier;
1481
1481
  //#endregion
1482
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/array.d.ts
1482
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/array.d.ts
1483
1483
  /**
1484
1484
  * Constraints to be applied on {@link array}
1485
1485
  * @remarks Since 2.4.0
@@ -1534,7 +1534,7 @@ interface ArrayConstraints$1 {
1534
1534
  */
1535
1535
  declare function array<T$1>(arb: Arbitrary<T$1>, constraints?: ArrayConstraints$1): Arbitrary<T$1[]>;
1536
1536
  //#endregion
1537
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/bigInt.d.ts
1537
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/bigInt.d.ts
1538
1538
  /**
1539
1539
  * Constraints to be applied on {@link bigInt}
1540
1540
  * @remarks Since 2.6.0
@@ -1578,7 +1578,7 @@ declare function bigInt(min: bigint, max: bigint): Arbitrary<bigint>;
1578
1578
  */
1579
1579
  declare function bigInt(constraints: BigIntConstraints$1): Arbitrary<bigint>;
1580
1580
  //#endregion
1581
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/bigIntN.d.ts
1581
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/bigIntN.d.ts
1582
1582
  /**
1583
1583
  * For signed bigint of n bits
1584
1584
  *
@@ -1592,7 +1592,7 @@ declare function bigInt(constraints: BigIntConstraints$1): Arbitrary<bigint>;
1592
1592
  */
1593
1593
  declare function bigIntN(n: number): Arbitrary<bigint>;
1594
1594
  //#endregion
1595
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/bigUint.d.ts
1595
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/bigUint.d.ts
1596
1596
  /**
1597
1597
  * Constraints to be applied on {@link bigUint}
1598
1598
  * @remarks Since 2.6.0
@@ -1632,7 +1632,7 @@ declare function bigUint(max: bigint): Arbitrary<bigint>;
1632
1632
  */
1633
1633
  declare function bigUint(constraints: BigUintConstraints): Arbitrary<bigint>;
1634
1634
  //#endregion
1635
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/bigUintN.d.ts
1635
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/bigUintN.d.ts
1636
1636
  /**
1637
1637
  * For unsigned bigint of n bits
1638
1638
  *
@@ -1646,7 +1646,7 @@ declare function bigUint(constraints: BigUintConstraints): Arbitrary<bigint>;
1646
1646
  */
1647
1647
  declare function bigUintN(n: number): Arbitrary<bigint>;
1648
1648
  //#endregion
1649
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/boolean.d.ts
1649
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/boolean.d.ts
1650
1650
  /**
1651
1651
  * For boolean values - `true` or `false`
1652
1652
  * @remarks Since 0.0.6
@@ -1654,7 +1654,7 @@ declare function bigUintN(n: number): Arbitrary<bigint>;
1654
1654
  */
1655
1655
  declare function boolean(): Arbitrary<boolean>;
1656
1656
  //#endregion
1657
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/falsy.d.ts
1657
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/falsy.d.ts
1658
1658
  /**
1659
1659
  * Constraints to be applied on {@link falsy}
1660
1660
  * @remarks Since 1.26.0
@@ -1692,7 +1692,7 @@ type FalsyValue<TConstraints extends FalsyContraints = {}> = false | null | 0 |
1692
1692
  */
1693
1693
  declare function falsy<TConstraints extends FalsyContraints>(constraints?: TConstraints): Arbitrary<FalsyValue<TConstraints>>;
1694
1694
  //#endregion
1695
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/ascii.d.ts
1695
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ascii.d.ts
1696
1696
  /**
1697
1697
  * For single ascii characters - char code between 0x00 (included) and 0x7f (included)
1698
1698
  * @deprecated Please use ${@link string} with `fc.string({ unit: 'binary-ascii', minLength: 1, maxLength: 1 })` instead
@@ -1701,7 +1701,7 @@ declare function falsy<TConstraints extends FalsyContraints>(constraints?: TCons
1701
1701
  */
1702
1702
  declare function ascii(): Arbitrary<string>;
1703
1703
  //#endregion
1704
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/base64.d.ts
1704
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/base64.d.ts
1705
1705
  /**
1706
1706
  * For single base64 characters - A-Z, a-z, 0-9, + or /
1707
1707
  * @deprecated Prefer using `fc.constantFrom(...'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/')`
@@ -1710,7 +1710,7 @@ declare function ascii(): Arbitrary<string>;
1710
1710
  */
1711
1711
  declare function base64(): Arbitrary<string>;
1712
1712
  //#endregion
1713
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/char.d.ts
1713
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/char.d.ts
1714
1714
  /**
1715
1715
  * For single printable ascii characters - char code between 0x20 (included) and 0x7e (included)
1716
1716
  *
@@ -1722,7 +1722,7 @@ declare function base64(): Arbitrary<string>;
1722
1722
  */
1723
1723
  declare function char(): Arbitrary<string>;
1724
1724
  //#endregion
1725
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/char16bits.d.ts
1725
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/char16bits.d.ts
1726
1726
  /**
1727
1727
  * For single characters - all values in 0x0000-0xffff can be generated
1728
1728
  *
@@ -1737,7 +1737,7 @@ declare function char(): Arbitrary<string>;
1737
1737
  */
1738
1738
  declare function char16bits(): Arbitrary<string>;
1739
1739
  //#endregion
1740
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/fullUnicode.d.ts
1740
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/fullUnicode.d.ts
1741
1741
  /**
1742
1742
  * For single unicode characters - any of the code points defined in the unicode standard
1743
1743
  *
@@ -1751,7 +1751,7 @@ declare function char16bits(): Arbitrary<string>;
1751
1751
  */
1752
1752
  declare function fullUnicode(): Arbitrary<string>;
1753
1753
  //#endregion
1754
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/hexa.d.ts
1754
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/hexa.d.ts
1755
1755
  /**
1756
1756
  * For single hexadecimal characters - 0-9 or a-f
1757
1757
  * @deprecated Prefer using `fc.constantFrom(...'0123456789abcdef')`
@@ -1760,7 +1760,7 @@ declare function fullUnicode(): Arbitrary<string>;
1760
1760
  */
1761
1761
  declare function hexa(): Arbitrary<string>;
1762
1762
  //#endregion
1763
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/unicode.d.ts
1763
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicode.d.ts
1764
1764
  /**
1765
1765
  * For single unicode characters defined in the BMP plan - char code between 0x0000 (included) and 0xffff (included) and without the range 0xd800 to 0xdfff (surrogate pair characters)
1766
1766
  * @deprecated Please use ${@link string} with `fc.string({ unit, minLength: 1, maxLength: 1 })`, utilizing one of its unit variants instead
@@ -1769,7 +1769,7 @@ declare function hexa(): Arbitrary<string>;
1769
1769
  */
1770
1770
  declare function unicode(): Arbitrary<string>;
1771
1771
  //#endregion
1772
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/constant.d.ts
1772
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/constant.d.ts
1773
1773
  /**
1774
1774
  * For `value`
1775
1775
  * @param value - The value to produce
@@ -1778,7 +1778,7 @@ declare function unicode(): Arbitrary<string>;
1778
1778
  */
1779
1779
  declare function constant<T$1>(value: T$1): Arbitrary<T$1>;
1780
1780
  //#endregion
1781
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/constantFrom.d.ts
1781
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/constantFrom.d.ts
1782
1782
  /**
1783
1783
  * For one `...values` values - all equiprobable
1784
1784
  *
@@ -1802,7 +1802,7 @@ declare function constantFrom<T$1 = never>(...values: T$1[]): Arbitrary<T$1>;
1802
1802
  */
1803
1803
  declare function constantFrom<TArgs extends any[] | [any]>(...values: TArgs): Arbitrary<TArgs[number]>;
1804
1804
  //#endregion
1805
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/context.d.ts
1805
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/context.d.ts
1806
1806
  /**
1807
1807
  * Execution context attached to one predicate run
1808
1808
  * @remarks Since 2.2.0
@@ -1829,7 +1829,7 @@ interface ContextValue {
1829
1829
  */
1830
1830
  declare function context(): Arbitrary<ContextValue>;
1831
1831
  //#endregion
1832
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/date.d.ts
1832
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/date.d.ts
1833
1833
  /**
1834
1834
  * Constraints to be applied on {@link date}
1835
1835
  * @remarks Since 3.3.0
@@ -1865,7 +1865,7 @@ interface DateConstraints$1 {
1865
1865
  */
1866
1866
  declare function date(constraints?: DateConstraints$1): Arbitrary<Date>;
1867
1867
  //#endregion
1868
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/clone.d.ts
1868
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/clone.d.ts
1869
1869
  /**
1870
1870
  * Type of the value produced by {@link clone}
1871
1871
  * @remarks Since 2.5.0
@@ -1883,7 +1883,7 @@ type CloneValue<T$1, N extends number, Rest$1 extends T$1[] = []> = [number] ext
1883
1883
  */
1884
1884
  declare function clone<T$1, N extends number>(arb: Arbitrary<T$1>, numValues: N): Arbitrary<CloneValue<T$1, N>>;
1885
1885
  //#endregion
1886
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/dictionary.d.ts
1886
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/dictionary.d.ts
1887
1887
  /**
1888
1888
  * Constraints to be applied on {@link dictionary}
1889
1889
  * @remarks Since 2.22.0
@@ -1934,7 +1934,7 @@ interface DictionaryConstraints {
1934
1934
  */
1935
1935
  declare function dictionary<T$1>(keyArb: Arbitrary<string>, valueArb: Arbitrary<T$1>, constraints?: DictionaryConstraints): Arbitrary<Record<string, T$1>>;
1936
1936
  //#endregion
1937
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/emailAddress.d.ts
1937
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/emailAddress.d.ts
1938
1938
  /**
1939
1939
  * Constraints to be applied on {@link emailAddress}
1940
1940
  * @remarks Since 2.22.0
@@ -1961,7 +1961,7 @@ interface EmailAddressConstraints {
1961
1961
  */
1962
1962
  declare function emailAddress(constraints?: EmailAddressConstraints): Arbitrary<string>;
1963
1963
  //#endregion
1964
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/double.d.ts
1964
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/double.d.ts
1965
1965
  /**
1966
1966
  * Constraints to be applied on {@link double}
1967
1967
  * @remarks Since 2.6.0
@@ -2028,7 +2028,7 @@ interface DoubleConstraints {
2028
2028
  */
2029
2029
  declare function double(constraints?: DoubleConstraints): Arbitrary<number>;
2030
2030
  //#endregion
2031
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/float.d.ts
2031
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/float.d.ts
2032
2032
  /**
2033
2033
  * Constraints to be applied on {@link float}
2034
2034
  * @remarks Since 2.6.0
@@ -2098,7 +2098,7 @@ interface FloatConstraints {
2098
2098
  */
2099
2099
  declare function float(constraints?: FloatConstraints): Arbitrary<number>;
2100
2100
  //#endregion
2101
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/compareBooleanFunc.d.ts
2101
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/compareBooleanFunc.d.ts
2102
2102
  /**
2103
2103
  * For comparison boolean functions
2104
2104
  *
@@ -2111,7 +2111,7 @@ declare function float(constraints?: FloatConstraints): Arbitrary<number>;
2111
2111
  */
2112
2112
  declare function compareBooleanFunc<T$1>(): Arbitrary<(a: T$1, b: T$1) => boolean>;
2113
2113
  //#endregion
2114
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/compareFunc.d.ts
2114
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/compareFunc.d.ts
2115
2115
  /**
2116
2116
  * For comparison functions
2117
2117
  *
@@ -2129,7 +2129,7 @@ declare function compareBooleanFunc<T$1>(): Arbitrary<(a: T$1, b: T$1) => boolea
2129
2129
  */
2130
2130
  declare function compareFunc<T$1>(): Arbitrary<(a: T$1, b: T$1) => number>;
2131
2131
  //#endregion
2132
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/func.d.ts
2132
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/func.d.ts
2133
2133
  /**
2134
2134
  * For pure functions
2135
2135
  *
@@ -2140,7 +2140,7 @@ declare function compareFunc<T$1>(): Arbitrary<(a: T$1, b: T$1) => number>;
2140
2140
  */
2141
2141
  declare function func<TArgs extends any[], TOut>(arb: Arbitrary<TOut>): Arbitrary<(...args: TArgs) => TOut>;
2142
2142
  //#endregion
2143
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/domain.d.ts
2143
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/domain.d.ts
2144
2144
  /**
2145
2145
  * Constraints to be applied on {@link domain}
2146
2146
  * @remarks Since 2.22.0
@@ -2169,7 +2169,7 @@ interface DomainConstraints {
2169
2169
  */
2170
2170
  declare function domain(constraints?: DomainConstraints): Arbitrary<string>;
2171
2171
  //#endregion
2172
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/integer.d.ts
2172
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/integer.d.ts
2173
2173
  /**
2174
2174
  * Constraints to be applied on {@link integer}
2175
2175
  * @remarks Since 2.6.0
@@ -2199,7 +2199,7 @@ interface IntegerConstraints {
2199
2199
  */
2200
2200
  declare function integer(constraints?: IntegerConstraints): Arbitrary<number>;
2201
2201
  //#endregion
2202
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/maxSafeInteger.d.ts
2202
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/maxSafeInteger.d.ts
2203
2203
  /**
2204
2204
  * For integers between Number.MIN_SAFE_INTEGER (included) and Number.MAX_SAFE_INTEGER (included)
2205
2205
  * @remarks Since 1.11.0
@@ -2207,7 +2207,7 @@ declare function integer(constraints?: IntegerConstraints): Arbitrary<number>;
2207
2207
  */
2208
2208
  declare function maxSafeInteger(): Arbitrary<number>;
2209
2209
  //#endregion
2210
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/maxSafeNat.d.ts
2210
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/maxSafeNat.d.ts
2211
2211
  /**
2212
2212
  * For positive integers between 0 (included) and Number.MAX_SAFE_INTEGER (included)
2213
2213
  * @remarks Since 1.11.0
@@ -2215,7 +2215,7 @@ declare function maxSafeInteger(): Arbitrary<number>;
2215
2215
  */
2216
2216
  declare function maxSafeNat(): Arbitrary<number>;
2217
2217
  //#endregion
2218
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/nat.d.ts
2218
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/nat.d.ts
2219
2219
  /**
2220
2220
  * Constraints to be applied on {@link nat}
2221
2221
  * @remarks Since 2.6.0
@@ -2255,7 +2255,7 @@ declare function nat(max: number): Arbitrary<number>;
2255
2255
  */
2256
2256
  declare function nat(constraints: NatConstraints): Arbitrary<number>;
2257
2257
  //#endregion
2258
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/ipV4.d.ts
2258
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ipV4.d.ts
2259
2259
  /**
2260
2260
  * For valid IP v4
2261
2261
  *
@@ -2266,7 +2266,7 @@ declare function nat(constraints: NatConstraints): Arbitrary<number>;
2266
2266
  */
2267
2267
  declare function ipV4(): Arbitrary<string>;
2268
2268
  //#endregion
2269
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/ipV4Extended.d.ts
2269
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ipV4Extended.d.ts
2270
2270
  /**
2271
2271
  * For valid IP v4 according to WhatWG
2272
2272
  *
@@ -2279,7 +2279,7 @@ declare function ipV4(): Arbitrary<string>;
2279
2279
  */
2280
2280
  declare function ipV4Extended(): Arbitrary<string>;
2281
2281
  //#endregion
2282
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/ipV6.d.ts
2282
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ipV6.d.ts
2283
2283
  /**
2284
2284
  * For valid IP v6
2285
2285
  *
@@ -2290,7 +2290,7 @@ declare function ipV4Extended(): Arbitrary<string>;
2290
2290
  */
2291
2291
  declare function ipV6(): Arbitrary<string>;
2292
2292
  //#endregion
2293
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/letrec.d.ts
2293
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/letrec.d.ts
2294
2294
  /**
2295
2295
  * Type of the value produced by {@link letrec}
2296
2296
  * @remarks Since 3.0.0
@@ -2376,7 +2376,7 @@ declare function letrec<T$1>(builder: T$1 extends Record<string, unknown> ? Letr
2376
2376
  */
2377
2377
  declare function letrec<T$1>(builder: LetrecLooselyTypedBuilder<T$1>): LetrecValue<T$1>;
2378
2378
  //#endregion
2379
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/lorem.d.ts
2379
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/lorem.d.ts
2380
2380
  /**
2381
2381
  * Constraints to be applied on {@link lorem}
2382
2382
  * @remarks Since 2.5.0
@@ -2417,7 +2417,7 @@ interface LoremConstraints {
2417
2417
  */
2418
2418
  declare function lorem(constraints?: LoremConstraints): Arbitrary<string>;
2419
2419
  //#endregion
2420
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/mapToConstant.d.ts
2420
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/mapToConstant.d.ts
2421
2421
  /**
2422
2422
  * Generate non-contiguous ranges of values
2423
2423
  * by mapping integer values to constant
@@ -2441,7 +2441,7 @@ declare function mapToConstant<T$1>(...entries: {
2441
2441
  build: (idInGroup: number) => T$1;
2442
2442
  }[]): Arbitrary<T$1>;
2443
2443
  //#endregion
2444
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/memo.d.ts
2444
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/memo.d.ts
2445
2445
  /**
2446
2446
  * Output type for {@link memo}
2447
2447
  * @remarks Since 1.16.0
@@ -2469,7 +2469,7 @@ type Memo<T$1> = (maxDepth?: number) => Arbitrary<T$1>;
2469
2469
  */
2470
2470
  declare function memo<T$1>(builder: (maxDepth: number) => Arbitrary<T$1>): Memo<T$1>;
2471
2471
  //#endregion
2472
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/mixedCase.d.ts
2472
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/mixedCase.d.ts
2473
2473
  /**
2474
2474
  * Constraints to be applied on {@link mixedCase}
2475
2475
  * @remarks Since 1.17.0
@@ -2504,7 +2504,7 @@ interface MixedCaseConstraints {
2504
2504
  */
2505
2505
  declare function mixedCase(stringArb: Arbitrary<string>, constraints?: MixedCaseConstraints): Arbitrary<string>;
2506
2506
  //#endregion
2507
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/_shared/StringSharedConstraints.d.ts
2507
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_shared/StringSharedConstraints.d.ts
2508
2508
  /**
2509
2509
  * Constraints to be applied on arbitraries for strings
2510
2510
  * @remarks Since 2.4.0
@@ -2530,7 +2530,7 @@ interface StringSharedConstraints {
2530
2530
  size?: SizeForArbitrary;
2531
2531
  }
2532
2532
  //#endregion
2533
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/string.d.ts
2533
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/string.d.ts
2534
2534
  /**
2535
2535
  * Constraints to be applied on arbitrary {@link string}
2536
2536
  * @remarks Since 3.22.0
@@ -2568,7 +2568,7 @@ type StringConstraints$1 = StringSharedConstraints & {
2568
2568
  */
2569
2569
  declare function string(constraints?: StringConstraints$1): Arbitrary<string>;
2570
2570
  //#endregion
2571
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/QualifiedObjectConstraints.d.ts
2571
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/QualifiedObjectConstraints.d.ts
2572
2572
  /**
2573
2573
  * Constraints for {@link anything} and {@link object}
2574
2574
  * @public
@@ -2680,7 +2680,7 @@ interface ObjectConstraints {
2680
2680
  stringUnit?: StringConstraints$1['unit'];
2681
2681
  }
2682
2682
  //#endregion
2683
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/object.d.ts
2683
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/object.d.ts
2684
2684
  /**
2685
2685
  * For any objects
2686
2686
  *
@@ -2712,7 +2712,7 @@ declare function object(): Arbitrary<Record<string, unknown>>;
2712
2712
  */
2713
2713
  declare function object(constraints: ObjectConstraints): Arbitrary<Record<string, unknown>>;
2714
2714
  //#endregion
2715
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/JsonConstraintsBuilder.d.ts
2715
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/JsonConstraintsBuilder.d.ts
2716
2716
  /**
2717
2717
  * Shared constraints for:
2718
2718
  * - {@link json},
@@ -2791,7 +2791,7 @@ type JsonObject = { [key in string]?: JsonValue };
2791
2791
  */
2792
2792
  type JsonValue = boolean | number | string | null | JsonArray | JsonObject;
2793
2793
  //#endregion
2794
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/json.d.ts
2794
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/json.d.ts
2795
2795
  /**
2796
2796
  * For any JSON strings
2797
2797
  *
@@ -2804,7 +2804,7 @@ type JsonValue = boolean | number | string | null | JsonArray | JsonObject;
2804
2804
  */
2805
2805
  declare function json(constraints?: JsonSharedConstraints): Arbitrary<string>;
2806
2806
  //#endregion
2807
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/unicodeJson.d.ts
2807
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicodeJson.d.ts
2808
2808
  /**
2809
2809
  * For any JSON strings with unicode support
2810
2810
  *
@@ -2818,7 +2818,7 @@ declare function json(constraints?: JsonSharedConstraints): Arbitrary<string>;
2818
2818
  */
2819
2819
  declare function unicodeJson(constraints?: UnicodeJsonSharedConstraints): Arbitrary<string>;
2820
2820
  //#endregion
2821
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/anything.d.ts
2821
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/anything.d.ts
2822
2822
  /**
2823
2823
  * For any type of values
2824
2824
  *
@@ -2865,7 +2865,7 @@ declare function anything(): Arbitrary<unknown>;
2865
2865
  */
2866
2866
  declare function anything(constraints: ObjectConstraints): Arbitrary<unknown>;
2867
2867
  //#endregion
2868
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/unicodeJsonValue.d.ts
2868
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicodeJsonValue.d.ts
2869
2869
  /**
2870
2870
  * For any JSON compliant values with unicode support
2871
2871
  *
@@ -2882,7 +2882,7 @@ declare function anything(constraints: ObjectConstraints): Arbitrary<unknown>;
2882
2882
  */
2883
2883
  declare function unicodeJsonValue(constraints?: UnicodeJsonSharedConstraints): Arbitrary<JsonValue>;
2884
2884
  //#endregion
2885
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/jsonValue.d.ts
2885
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/jsonValue.d.ts
2886
2886
  /**
2887
2887
  * For any JSON compliant values
2888
2888
  *
@@ -2898,7 +2898,7 @@ declare function unicodeJsonValue(constraints?: UnicodeJsonSharedConstraints): A
2898
2898
  */
2899
2899
  declare function jsonValue(constraints?: JsonSharedConstraints): Arbitrary<JsonValue>;
2900
2900
  //#endregion
2901
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/oneof.d.ts
2901
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/oneof.d.ts
2902
2902
  /**
2903
2903
  * Conjonction of a weight and an arbitrary used by {@link oneof}
2904
2904
  * in order to generate values
@@ -2999,7 +2999,7 @@ declare function oneof<Ts extends MaybeWeightedArbitrary<unknown>[]>(...arbs: Ts
2999
2999
  */
3000
3000
  declare function oneof<Ts extends MaybeWeightedArbitrary<unknown>[]>(constraints: OneOfConstraints, ...arbs: Ts): Arbitrary<OneOfValue<Ts>>;
3001
3001
  //#endregion
3002
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/option.d.ts
3002
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/option.d.ts
3003
3003
  /**
3004
3004
  * Constraints to be applied on {@link option}
3005
3005
  * @remarks Since 2.2.0
@@ -3052,7 +3052,7 @@ interface OptionConstraints<TNil = null> {
3052
3052
  */
3053
3053
  declare function option<T$1, TNil = null>(arb: Arbitrary<T$1>, constraints?: OptionConstraints<TNil>): Arbitrary<T$1 | TNil>;
3054
3054
  //#endregion
3055
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/record.d.ts
3055
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/record.d.ts
3056
3056
  /**
3057
3057
  * Constraints to be applied on {@link record}
3058
3058
  * @remarks Since 0.0.12
@@ -3138,7 +3138,7 @@ declare function record<T$1>(recordModel: { [K in keyof T$1]: Arbitrary<T$1[K]>
3138
3138
  */
3139
3139
  declare function record<T$1, TConstraints extends RecordConstraints<keyof T$1>>(recordModel: { [K in keyof T$1]: Arbitrary<T$1[K]> }, constraints: TConstraints): Arbitrary<RecordValue<{ [K in keyof T$1]: T$1[K] }, TConstraints>>;
3140
3140
  //#endregion
3141
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/uniqueArray.d.ts
3141
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uniqueArray.d.ts
3142
3142
  /**
3143
3143
  * Shared constraints to be applied on {@link uniqueArray}
3144
3144
  * @remarks Since 2.23.0
@@ -3296,7 +3296,7 @@ declare function uniqueArray<T$1, U$1>(arb: Arbitrary<T$1>, constraints: UniqueA
3296
3296
  */
3297
3297
  declare function uniqueArray<T$1, U$1>(arb: Arbitrary<T$1>, constraints: UniqueArrayConstraints<T$1, U$1>): Arbitrary<T$1[]>;
3298
3298
  //#endregion
3299
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/infiniteStream.d.ts
3299
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/infiniteStream.d.ts
3300
3300
  /**
3301
3301
  * Produce an infinite stream of values
3302
3302
  *
@@ -3309,7 +3309,7 @@ declare function uniqueArray<T$1, U$1>(arb: Arbitrary<T$1>, constraints: UniqueA
3309
3309
  */
3310
3310
  declare function infiniteStream<T$1>(arb: Arbitrary<T$1>): Arbitrary<Stream$1<T$1>>;
3311
3311
  //#endregion
3312
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/asciiString.d.ts
3312
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/asciiString.d.ts
3313
3313
  /**
3314
3314
  * For strings of {@link ascii}
3315
3315
  *
@@ -3321,7 +3321,7 @@ declare function infiniteStream<T$1>(arb: Arbitrary<T$1>): Arbitrary<Stream$1<T$
3321
3321
  */
3322
3322
  declare function asciiString(constraints?: StringSharedConstraints): Arbitrary<string>;
3323
3323
  //#endregion
3324
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/base64String.d.ts
3324
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/base64String.d.ts
3325
3325
  /**
3326
3326
  * For base64 strings
3327
3327
  *
@@ -3334,7 +3334,7 @@ declare function asciiString(constraints?: StringSharedConstraints): Arbitrary<s
3334
3334
  */
3335
3335
  declare function base64String(constraints?: StringSharedConstraints): Arbitrary<string>;
3336
3336
  //#endregion
3337
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/fullUnicodeString.d.ts
3337
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/fullUnicodeString.d.ts
3338
3338
  /**
3339
3339
  * For strings of {@link fullUnicode}
3340
3340
  *
@@ -3346,7 +3346,7 @@ declare function base64String(constraints?: StringSharedConstraints): Arbitrary<
3346
3346
  */
3347
3347
  declare function fullUnicodeString(constraints?: StringSharedConstraints): Arbitrary<string>;
3348
3348
  //#endregion
3349
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/hexaString.d.ts
3349
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/hexaString.d.ts
3350
3350
  /**
3351
3351
  * For strings of {@link hexa}
3352
3352
  *
@@ -3358,7 +3358,7 @@ declare function fullUnicodeString(constraints?: StringSharedConstraints): Arbit
3358
3358
  */
3359
3359
  declare function hexaString(constraints?: StringSharedConstraints): Arbitrary<string>;
3360
3360
  //#endregion
3361
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/string16bits.d.ts
3361
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/string16bits.d.ts
3362
3362
  /**
3363
3363
  * For strings of {@link char16bits}
3364
3364
  *
@@ -3370,7 +3370,7 @@ declare function hexaString(constraints?: StringSharedConstraints): Arbitrary<st
3370
3370
  */
3371
3371
  declare function string16bits(constraints?: StringSharedConstraints): Arbitrary<string>;
3372
3372
  //#endregion
3373
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/stringOf.d.ts
3373
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/stringOf.d.ts
3374
3374
  /**
3375
3375
  * For strings using the characters produced by `charArb`
3376
3376
  *
@@ -3383,7 +3383,7 @@ declare function string16bits(constraints?: StringSharedConstraints): Arbitrary<
3383
3383
  */
3384
3384
  declare function stringOf(charArb: Arbitrary<string>, constraints?: StringSharedConstraints): Arbitrary<string>;
3385
3385
  //#endregion
3386
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/unicodeString.d.ts
3386
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicodeString.d.ts
3387
3387
  /**
3388
3388
  * For strings of {@link unicode}
3389
3389
  *
@@ -3395,7 +3395,7 @@ declare function stringOf(charArb: Arbitrary<string>, constraints?: StringShared
3395
3395
  */
3396
3396
  declare function unicodeString(constraints?: StringSharedConstraints): Arbitrary<string>;
3397
3397
  //#endregion
3398
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/subarray.d.ts
3398
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/subarray.d.ts
3399
3399
  /**
3400
3400
  * Constraints to be applied on {@link subarray}
3401
3401
  * @remarks Since 2.4.0
@@ -3426,7 +3426,7 @@ interface SubarrayConstraints {
3426
3426
  */
3427
3427
  declare function subarray<T$1>(originalArray: T$1[], constraints?: SubarrayConstraints): Arbitrary<T$1[]>;
3428
3428
  //#endregion
3429
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/shuffledSubarray.d.ts
3429
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/shuffledSubarray.d.ts
3430
3430
  /**
3431
3431
  * Constraints to be applied on {@link shuffledSubarray}
3432
3432
  * @remarks Since 2.18.0
@@ -3457,7 +3457,7 @@ interface ShuffledSubarrayConstraints {
3457
3457
  */
3458
3458
  declare function shuffledSubarray<T$1>(originalArray: T$1[], constraints?: ShuffledSubarrayConstraints): Arbitrary<T$1[]>;
3459
3459
  //#endregion
3460
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/tuple.d.ts
3460
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/tuple.d.ts
3461
3461
  /**
3462
3462
  * For tuples produced using the provided `arbs`
3463
3463
  *
@@ -3468,7 +3468,7 @@ declare function shuffledSubarray<T$1>(originalArray: T$1[], constraints?: Shuff
3468
3468
  */
3469
3469
  declare function tuple<Ts extends unknown[]>(...arbs: { [K in keyof Ts]: Arbitrary<Ts[K]> }): Arbitrary<Ts>;
3470
3470
  //#endregion
3471
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/ulid.d.ts
3471
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ulid.d.ts
3472
3472
  /**
3473
3473
  * For ulid
3474
3474
  *
@@ -3481,7 +3481,7 @@ declare function tuple<Ts extends unknown[]>(...arbs: { [K in keyof Ts]: Arbitra
3481
3481
  */
3482
3482
  declare function ulid(): Arbitrary<string>;
3483
3483
  //#endregion
3484
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/uuid.d.ts
3484
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uuid.d.ts
3485
3485
  /**
3486
3486
  * Constraints to be applied on {@link uuid}
3487
3487
  * @remarks Since 3.21.0
@@ -3507,7 +3507,7 @@ interface UuidConstraints {
3507
3507
  */
3508
3508
  declare function uuid(constraints?: UuidConstraints): Arbitrary<string>;
3509
3509
  //#endregion
3510
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/uuidV.d.ts
3510
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uuidV.d.ts
3511
3511
  /**
3512
3512
  * For UUID of a given version (in v1 to v15)
3513
3513
  *
@@ -3521,7 +3521,7 @@ declare function uuid(constraints?: UuidConstraints): Arbitrary<string>;
3521
3521
  */
3522
3522
  declare function uuidV(versionNumber: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15): Arbitrary<string>;
3523
3523
  //#endregion
3524
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/webAuthority.d.ts
3524
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webAuthority.d.ts
3525
3525
  /**
3526
3526
  * Constraints to be applied on {@link webAuthority}
3527
3527
  * @remarks Since 1.14.0
@@ -3576,7 +3576,7 @@ interface WebAuthorityConstraints {
3576
3576
  */
3577
3577
  declare function webAuthority(constraints?: WebAuthorityConstraints): Arbitrary<string>;
3578
3578
  //#endregion
3579
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/webFragments.d.ts
3579
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webFragments.d.ts
3580
3580
  /**
3581
3581
  * Constraints to be applied on {@link webFragments}
3582
3582
  * @remarks Since 2.22.0
@@ -3603,7 +3603,7 @@ interface WebFragmentsConstraints {
3603
3603
  */
3604
3604
  declare function webFragments(constraints?: WebFragmentsConstraints): Arbitrary<string>;
3605
3605
  //#endregion
3606
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/webPath.d.ts
3606
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webPath.d.ts
3607
3607
  /**
3608
3608
  * Constraints to be applied on {@link webPath}
3609
3609
  * @remarks Since 3.3.0
@@ -3629,7 +3629,7 @@ interface WebPathConstraints {
3629
3629
  */
3630
3630
  declare function webPath(constraints?: WebPathConstraints): Arbitrary<string>;
3631
3631
  //#endregion
3632
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/webQueryParameters.d.ts
3632
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webQueryParameters.d.ts
3633
3633
  /**
3634
3634
  * Constraints to be applied on {@link webQueryParameters}
3635
3635
  * @remarks Since 2.22.0
@@ -3656,7 +3656,7 @@ interface WebQueryParametersConstraints {
3656
3656
  */
3657
3657
  declare function webQueryParameters(constraints?: WebQueryParametersConstraints): Arbitrary<string>;
3658
3658
  //#endregion
3659
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/webSegment.d.ts
3659
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webSegment.d.ts
3660
3660
  /**
3661
3661
  * Constraints to be applied on {@link webSegment}
3662
3662
  * @remarks Since 2.22.0
@@ -3683,7 +3683,7 @@ interface WebSegmentConstraints {
3683
3683
  */
3684
3684
  declare function webSegment(constraints?: WebSegmentConstraints): Arbitrary<string>;
3685
3685
  //#endregion
3686
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/webUrl.d.ts
3686
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webUrl.d.ts
3687
3687
  /**
3688
3688
  * Constraints to be applied on {@link webUrl}
3689
3689
  * @remarks Since 1.14.0
@@ -3733,7 +3733,7 @@ interface WebUrlConstraints {
3733
3733
  */
3734
3734
  declare function webUrl(constraints?: WebUrlConstraints): Arbitrary<string>;
3735
3735
  //#endregion
3736
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/model/command/ICommand.d.ts
3736
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/command/ICommand.d.ts
3737
3737
  /**
3738
3738
  * Interface that should be implemented in order to define a command
3739
3739
  * @remarks Since 1.5.0
@@ -3768,7 +3768,7 @@ interface ICommand<Model extends object, Real, RunResult, CheckAsync extends boo
3768
3768
  toString(): string;
3769
3769
  }
3770
3770
  //#endregion
3771
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/model/command/AsyncCommand.d.ts
3771
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/command/AsyncCommand.d.ts
3772
3772
  /**
3773
3773
  * Interface that should be implemented in order to define
3774
3774
  * an asynchronous command
@@ -3778,7 +3778,7 @@ interface ICommand<Model extends object, Real, RunResult, CheckAsync extends boo
3778
3778
  */
3779
3779
  interface AsyncCommand<Model extends object, Real, CheckAsync extends boolean = false> extends ICommand<Model, Real, Promise<void>, CheckAsync> {}
3780
3780
  //#endregion
3781
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/model/command/Command.d.ts
3781
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/command/Command.d.ts
3782
3782
  /**
3783
3783
  * Interface that should be implemented in order to define
3784
3784
  * a synchronous command
@@ -3788,7 +3788,7 @@ interface AsyncCommand<Model extends object, Real, CheckAsync extends boolean =
3788
3788
  */
3789
3789
  interface Command<Model extends object, Real> extends ICommand<Model, Real, void> {}
3790
3790
  //#endregion
3791
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/model/commands/CommandsContraints.d.ts
3791
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/commands/CommandsContraints.d.ts
3792
3792
  /**
3793
3793
  * Parameters for {@link commands}
3794
3794
  * @remarks Since 2.2.0
@@ -3825,7 +3825,7 @@ interface CommandsContraints {
3825
3825
  replayPath?: string;
3826
3826
  }
3827
3827
  //#endregion
3828
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/commands.d.ts
3828
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/commands.d.ts
3829
3829
  /**
3830
3830
  * For arrays of {@link AsyncCommand} to be executed by {@link asyncModelRun}
3831
3831
  *
@@ -3853,7 +3853,7 @@ declare function commands<Model extends object, Real, CheckAsync extends boolean
3853
3853
  */
3854
3854
  declare function commands<Model extends object, Real>(commandArbs: Arbitrary<Command<Model, Real>>[], constraints?: CommandsContraints): Arbitrary<Iterable<Command<Model, Real>>>;
3855
3855
  //#endregion
3856
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/_internals/interfaces/Scheduler.d.ts
3856
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/interfaces/Scheduler.d.ts
3857
3857
  /**
3858
3858
  * Function responsible to run the passed function and surround it with whatever needed.
3859
3859
  * The name has been inspired from the `act` function coming with React.
@@ -4020,7 +4020,7 @@ interface SchedulerReportItem<TMetaData = unknown> {
4020
4020
  outputValue?: string;
4021
4021
  }
4022
4022
  //#endregion
4023
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/scheduler.d.ts
4023
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/scheduler.d.ts
4024
4024
  /**
4025
4025
  * Constraints to be applied on {@link scheduler}
4026
4026
  * @remarks Since 2.2.0
@@ -4094,7 +4094,7 @@ declare function schedulerFor<TMetaData = unknown>(constraints?: SchedulerConstr
4094
4094
  */
4095
4095
  declare function schedulerFor<TMetaData = unknown>(customOrdering: number[], constraints?: SchedulerConstraints): Scheduler<TMetaData>;
4096
4096
  //#endregion
4097
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/model/ModelRunner.d.ts
4097
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/ModelRunner.d.ts
4098
4098
  /**
4099
4099
  * Synchronous definition of model and real
4100
4100
  * @remarks Since 2.2.0
@@ -4151,7 +4151,7 @@ declare function asyncModelRun<Model extends object, Real, CheckAsync extends bo
4151
4151
  */
4152
4152
  declare function scheduledModelRun<Model extends object, Real, CheckAsync extends boolean, InitialModel extends Model>(scheduler: Scheduler, s: ModelRunSetup<InitialModel, Real> | ModelRunAsyncSetup<InitialModel, Real>, cmds: Iterable<AsyncCommand<Model, Real, CheckAsync>>): Promise<void>;
4153
4153
  //#endregion
4154
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/symbols.d.ts
4154
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/symbols.d.ts
4155
4155
  /**
4156
4156
  * Generated instances having a method [cloneMethod]
4157
4157
  * will be automatically cloned whenever necessary
@@ -4187,7 +4187,7 @@ declare function hasCloneMethod<T$1>(instance: T$1 | WithCloneMethod<T$1>): inst
4187
4187
  */
4188
4188
  declare function cloneIfNeeded<T$1>(instance: T$1): T$1;
4189
4189
  //#endregion
4190
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/utils/hash.d.ts
4190
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/utils/hash.d.ts
4191
4191
  /**
4192
4192
  * CRC-32 based hash function
4193
4193
  *
@@ -4200,7 +4200,7 @@ declare function cloneIfNeeded<T$1>(instance: T$1): T$1;
4200
4200
  */
4201
4201
  declare function hash(repr: string): number;
4202
4202
  //#endregion
4203
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/utils/stringify.d.ts
4203
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/utils/stringify.d.ts
4204
4204
  /**
4205
4205
  * Use this symbol to define a custom serializer for your instances.
4206
4206
  * Serializer must be a function returning a string (see {@link WithToStringMethod}).
@@ -4274,7 +4274,7 @@ declare function stringify<Ts>(value: Ts): string;
4274
4274
  */
4275
4275
  declare function asyncStringify<Ts>(value: Ts): Promise<string>;
4276
4276
  //#endregion
4277
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/check/runner/utils/RunDetailsFormatter.d.ts
4277
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/utils/RunDetailsFormatter.d.ts
4278
4278
  /**
4279
4279
  * Format output of {@link check} using the default error reporting of {@link assert}
4280
4280
  *
@@ -4344,7 +4344,7 @@ declare function asyncDefaultReportMessage<Ts>(out: RunDetails<Ts> & {
4344
4344
  */
4345
4345
  declare function asyncDefaultReportMessage<Ts>(out: RunDetails<Ts>): Promise<string | undefined>;
4346
4346
  //#endregion
4347
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/_internals/builders/TypedIntArrayArbitraryBuilder.d.ts
4347
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/builders/TypedIntArrayArbitraryBuilder.d.ts
4348
4348
  /**
4349
4349
  * Constraints to be applied on typed arrays for integer values
4350
4350
  * @remarks Since 2.9.0
@@ -4418,7 +4418,7 @@ type BigIntArrayConstraints = {
4418
4418
  size?: SizeForArbitrary;
4419
4419
  };
4420
4420
  //#endregion
4421
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/int8Array.d.ts
4421
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/int8Array.d.ts
4422
4422
  /**
4423
4423
  * For Int8Array
4424
4424
  * @remarks Since 2.9.0
@@ -4426,7 +4426,7 @@ type BigIntArrayConstraints = {
4426
4426
  */
4427
4427
  declare function int8Array(constraints?: IntArrayConstraints): Arbitrary<Int8Array>;
4428
4428
  //#endregion
4429
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/int16Array.d.ts
4429
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/int16Array.d.ts
4430
4430
  /**
4431
4431
  * For Int16Array
4432
4432
  * @remarks Since 2.9.0
@@ -4434,7 +4434,7 @@ declare function int8Array(constraints?: IntArrayConstraints): Arbitrary<Int8Arr
4434
4434
  */
4435
4435
  declare function int16Array(constraints?: IntArrayConstraints): Arbitrary<Int16Array>;
4436
4436
  //#endregion
4437
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/int32Array.d.ts
4437
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/int32Array.d.ts
4438
4438
  /**
4439
4439
  * For Int32Array
4440
4440
  * @remarks Since 2.9.0
@@ -4442,7 +4442,7 @@ declare function int16Array(constraints?: IntArrayConstraints): Arbitrary<Int16A
4442
4442
  */
4443
4443
  declare function int32Array(constraints?: IntArrayConstraints): Arbitrary<Int32Array>;
4444
4444
  //#endregion
4445
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/uint8Array.d.ts
4445
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint8Array.d.ts
4446
4446
  /**
4447
4447
  * For Uint8Array
4448
4448
  * @remarks Since 2.9.0
@@ -4450,7 +4450,7 @@ declare function int32Array(constraints?: IntArrayConstraints): Arbitrary<Int32A
4450
4450
  */
4451
4451
  declare function uint8Array(constraints?: IntArrayConstraints): Arbitrary<Uint8Array>;
4452
4452
  //#endregion
4453
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/uint8ClampedArray.d.ts
4453
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint8ClampedArray.d.ts
4454
4454
  /**
4455
4455
  * For Uint8ClampedArray
4456
4456
  * @remarks Since 2.9.0
@@ -4458,7 +4458,7 @@ declare function uint8Array(constraints?: IntArrayConstraints): Arbitrary<Uint8A
4458
4458
  */
4459
4459
  declare function uint8ClampedArray(constraints?: IntArrayConstraints): Arbitrary<Uint8ClampedArray>;
4460
4460
  //#endregion
4461
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/uint16Array.d.ts
4461
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint16Array.d.ts
4462
4462
  /**
4463
4463
  * For Uint16Array
4464
4464
  * @remarks Since 2.9.0
@@ -4466,7 +4466,7 @@ declare function uint8ClampedArray(constraints?: IntArrayConstraints): Arbitrary
4466
4466
  */
4467
4467
  declare function uint16Array(constraints?: IntArrayConstraints): Arbitrary<Uint16Array>;
4468
4468
  //#endregion
4469
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/uint32Array.d.ts
4469
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint32Array.d.ts
4470
4470
  /**
4471
4471
  * For Uint32Array
4472
4472
  * @remarks Since 2.9.0
@@ -4474,7 +4474,7 @@ declare function uint16Array(constraints?: IntArrayConstraints): Arbitrary<Uint1
4474
4474
  */
4475
4475
  declare function uint32Array(constraints?: IntArrayConstraints): Arbitrary<Uint32Array>;
4476
4476
  //#endregion
4477
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/float32Array.d.ts
4477
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/float32Array.d.ts
4478
4478
  /**
4479
4479
  * Constraints to be applied on {@link float32Array}
4480
4480
  * @remarks Since 2.9.0
@@ -4506,7 +4506,7 @@ type Float32ArrayConstraints = {
4506
4506
  */
4507
4507
  declare function float32Array(constraints?: Float32ArrayConstraints): Arbitrary<Float32Array>;
4508
4508
  //#endregion
4509
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/float64Array.d.ts
4509
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/float64Array.d.ts
4510
4510
  /**
4511
4511
  * Constraints to be applied on {@link float64Array}
4512
4512
  * @remarks Since 2.9.0
@@ -4538,7 +4538,7 @@ type Float64ArrayConstraints = {
4538
4538
  */
4539
4539
  declare function float64Array(constraints?: Float64ArrayConstraints): Arbitrary<Float64Array>;
4540
4540
  //#endregion
4541
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/sparseArray.d.ts
4541
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/sparseArray.d.ts
4542
4542
  /**
4543
4543
  * Constraints to be applied on {@link sparseArray}
4544
4544
  * @remarks Since 2.13.0
@@ -4598,7 +4598,7 @@ interface SparseArrayConstraints {
4598
4598
  */
4599
4599
  declare function sparseArray<T$1>(arb: Arbitrary<T$1>, constraints?: SparseArrayConstraints): Arbitrary<T$1[]>;
4600
4600
  //#endregion
4601
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/bigInt64Array.d.ts
4601
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/bigInt64Array.d.ts
4602
4602
  /**
4603
4603
  * For BigInt64Array
4604
4604
  * @remarks Since 3.0.0
@@ -4606,7 +4606,7 @@ declare function sparseArray<T$1>(arb: Arbitrary<T$1>, constraints?: SparseArray
4606
4606
  */
4607
4607
  declare function bigInt64Array(constraints?: BigIntArrayConstraints): Arbitrary<BigInt64Array>;
4608
4608
  //#endregion
4609
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/bigUint64Array.d.ts
4609
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/bigUint64Array.d.ts
4610
4610
  /**
4611
4611
  * For BigUint64Array
4612
4612
  * @remarks Since 3.0.0
@@ -4614,7 +4614,7 @@ declare function bigInt64Array(constraints?: BigIntArrayConstraints): Arbitrary<
4614
4614
  */
4615
4615
  declare function bigUint64Array(constraints?: BigIntArrayConstraints): Arbitrary<BigUint64Array>;
4616
4616
  //#endregion
4617
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/stringMatching.d.ts
4617
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/stringMatching.d.ts
4618
4618
  /**
4619
4619
  * Constraints to be applied on the arbitrary {@link stringMatching}
4620
4620
  * @remarks Since 3.10.0
@@ -4638,7 +4638,7 @@ type StringMatchingConstraints = {
4638
4638
  */
4639
4639
  declare function stringMatching(regex: RegExp, constraints?: StringMatchingConstraints): Arbitrary<string>;
4640
4640
  //#endregion
4641
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/noShrink.d.ts
4641
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/noShrink.d.ts
4642
4642
  /**
4643
4643
  * Build an arbitrary without shrinking capabilities.
4644
4644
  *
@@ -4654,7 +4654,7 @@ declare function stringMatching(regex: RegExp, constraints?: StringMatchingConst
4654
4654
  */
4655
4655
  declare function noShrink<T$1>(arb: Arbitrary<T$1>): Arbitrary<T$1>;
4656
4656
  //#endregion
4657
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/noBias.d.ts
4657
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/noBias.d.ts
4658
4658
  /**
4659
4659
  * Build an arbitrary without any bias.
4660
4660
  *
@@ -4665,7 +4665,7 @@ declare function noShrink<T$1>(arb: Arbitrary<T$1>): Arbitrary<T$1>;
4665
4665
  */
4666
4666
  declare function noBias<T$1>(arb: Arbitrary<T$1>): Arbitrary<T$1>;
4667
4667
  //#endregion
4668
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/arbitrary/limitShrink.d.ts
4668
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/limitShrink.d.ts
4669
4669
  /**
4670
4670
  * Create another Arbitrary with a limited (or capped) number of shrink values
4671
4671
  *
@@ -4688,7 +4688,7 @@ declare function noBias<T$1>(arb: Arbitrary<T$1>): Arbitrary<T$1>;
4688
4688
  */
4689
4689
  declare function limitShrink<T$1>(arbitrary: Arbitrary<T$1>, maxShrinks: number): Arbitrary<T$1>;
4690
4690
  //#endregion
4691
- //#region ../../../../node_modules/.pnpm/fast-check@3.23.1/node_modules/fast-check/lib/types/fast-check-default.d.ts
4691
+ //#region ../../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/fast-check-default.d.ts
4692
4692
  /**
4693
4693
  * Type of module (commonjs or module)
4694
4694
  * @remarks Since 1.22.0
@@ -4696,13 +4696,13 @@ declare function limitShrink<T$1>(arbitrary: Arbitrary<T$1>, maxShrinks: number)
4696
4696
  */
4697
4697
  declare const __type: string;
4698
4698
  /**
4699
- * Version of fast-check used by your project (eg.: 3.23.1)
4699
+ * Version of fast-check used by your project (eg.: 3.23.2)
4700
4700
  * @remarks Since 1.22.0
4701
4701
  * @public
4702
4702
  */
4703
4703
  declare const __version: string;
4704
4704
  /**
4705
- * Commit hash of the current code (eg.: cb330c7baa8700d7fdde4512973ba80f2d2c44c6)
4705
+ * Commit hash of the current code (eg.: a4a600eaa08c833707067a877db144289a724b91)
4706
4706
  * @remarks Since 2.7.0
4707
4707
  * @public
4708
4708
  */
@@ -4711,7 +4711,7 @@ declare namespace FastCheck_d_exports {
4711
4711
  export { Arbitrary, ArrayConstraints$1 as ArrayConstraints, AsyncCommand, AsyncPropertyHookFunction, BigIntArrayConstraints, BigIntConstraints$1 as BigIntConstraints, BigUintConstraints, CloneValue, Command, CommandsContraints, ContextValue, DateConstraints$1 as DateConstraints, DepthContext, DepthIdentifier, DepthSize, DictionaryConstraints, DomainConstraints, DoubleConstraints, EmailAddressConstraints, ExecutionStatus, ExecutionTree, FalsyContraints, FalsyValue, Float32ArrayConstraints, Float64ArrayConstraints, FloatConstraints, GeneratorValue, GlobalAsyncPropertyHookFunction, GlobalParameters, GlobalPropertyHookFunction, IAsyncProperty, IAsyncPropertyWithHooks, ICommand, IProperty, IPropertyWithHooks, IRawProperty, IntArrayConstraints, IntegerConstraints, JsonSharedConstraints, JsonValue, LetrecLooselyTypedBuilder, LetrecLooselyTypedTie, LetrecTypedBuilder, LetrecTypedTie, LetrecValue, LoremConstraints, MaybeWeightedArbitrary, Memo, MixedCaseConstraints, ModelRunAsyncSetup, ModelRunSetup, NatConstraints, ObjectConstraints, OneOfConstraints, OneOfValue, OptionConstraints, Parameters$1 as Parameters, PreconditionFailure, PropertyFailure, PropertyHookFunction, Random, RandomType, RecordConstraints, RecordValue, RunDetails, RunDetailsCommon, RunDetailsFailureInterrupted, RunDetailsFailureProperty, RunDetailsFailureTooManySkips, RunDetailsSuccess, Scheduler, SchedulerAct, SchedulerConstraints, SchedulerReportItem, SchedulerSequenceItem, ShuffledSubarrayConstraints, Size, SizeForArbitrary, SparseArrayConstraints, Stream$1 as Stream, StringConstraints$1 as StringConstraints, StringMatchingConstraints, StringSharedConstraints, SubarrayConstraints, UnicodeJsonSharedConstraints, UniqueArrayConstraints, UniqueArrayConstraintsCustomCompare, UniqueArrayConstraintsCustomCompareSelect, UniqueArrayConstraintsRecommended, UniqueArraySharedConstraints, UuidConstraints, Value$1 as Value, VerbosityLevel, WebAuthorityConstraints, WebFragmentsConstraints, WebPathConstraints, WebQueryParametersConstraints, WebSegmentConstraints, WebUrlConstraints, WeightedArbitrary, WithAsyncToStringMethod, WithCloneMethod, WithToStringMethod, __commitHash, __type, __version, anything, array, ascii, asciiString, assert, asyncDefaultReportMessage, asyncModelRun, asyncProperty, asyncStringify, asyncToStringMethod, base64, base64String, bigInt, bigInt64Array, bigIntN, bigUint, bigUint64Array, bigUintN, boolean, char, char16bits, check, clone, cloneIfNeeded, cloneMethod, commands, compareBooleanFunc, compareFunc, configureGlobal, constant, constantFrom, context, createDepthIdentifier, date, defaultReportMessage, dictionary, domain, double, emailAddress, falsy, float, float32Array, float64Array, fullUnicode, fullUnicodeString, func, gen, getDepthContextFor, hasAsyncToStringMethod, hasCloneMethod, hasToStringMethod, hash, hexa, hexaString, infiniteStream, int16Array, int32Array, int8Array, integer, ipV4, ipV4Extended, ipV6, json, jsonValue, letrec, limitShrink, lorem, mapToConstant, maxSafeInteger, maxSafeNat, memo, mixedCase, modelRun, nat, noBias, noShrink, object, oneof, option, pre, property$1 as property, readConfigureGlobal, record, resetConfigureGlobal, sample, scheduledModelRun, scheduler, schedulerFor, shuffledSubarray, sparseArray, statistics, stream, string, string16bits, stringMatching, stringOf, stringify, subarray, toStringMethod, tuple, uint16Array, uint32Array, uint8Array, uint8ClampedArray, ulid, unicode, unicodeJson, unicodeJsonValue, unicodeString, uniqueArray, uuid, uuidV, webAuthority, webFragments, webPath, webQueryParameters, webSegment, webUrl };
4712
4712
  }
4713
4713
  //#endregion
4714
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Arbitrary.d.ts
4714
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Arbitrary.d.ts
4715
4715
  /**
4716
4716
  * @category model
4717
4717
  * @since 3.10.0
@@ -4756,7 +4756,7 @@ interface DateConstraints {
4756
4756
  readonly constraints: DateConstraints$1;
4757
4757
  }
4758
4758
  //#endregion
4759
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Types.d.ts
4759
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Types.d.ts
4760
4760
  /**
4761
4761
  * A utility type that transforms a union type `T` into an intersection type.
4762
4762
  *
@@ -4833,7 +4833,7 @@ declare namespace Contravariant {
4833
4833
  type Type<A$1> = A$1 extends Contravariant<infer U> ? U : never;
4834
4834
  }
4835
4835
  //#endregion
4836
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Equivalence.d.ts
4836
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Equivalence.d.ts
4837
4837
  /**
4838
4838
  * @category type class
4839
4839
  * @since 2.0.0
@@ -4842,7 +4842,7 @@ interface Equivalence<in A$1> {
4842
4842
  (self: A$1, that: A$1): boolean;
4843
4843
  }
4844
4844
  //#endregion
4845
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Hash.d.ts
4845
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Hash.d.ts
4846
4846
  /**
4847
4847
  * @since 2.0.0
4848
4848
  * @category models
@@ -4851,7 +4851,7 @@ interface Hash {
4851
4851
  [symbol](): number;
4852
4852
  }
4853
4853
  //#endregion
4854
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Equal.d.ts
4854
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Equal.d.ts
4855
4855
  /**
4856
4856
  * @since 2.0.0
4857
4857
  * @category models
@@ -4860,7 +4860,7 @@ interface Equal extends Hash {
4860
4860
  [symbol](that: Equal): boolean;
4861
4861
  }
4862
4862
  //#endregion
4863
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Pipeable.d.ts
4863
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Pipeable.d.ts
4864
4864
  /**
4865
4865
  * @since 2.0.0
4866
4866
  * @category Models
@@ -4878,19 +4878,19 @@ interface Pipeable {
4878
4878
  pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J): J;
4879
4879
  pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1): K$1;
4880
4880
  pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1): L$1;
4881
- pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M$1): M$1;
4882
- pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M$1 = never, N = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M$1, mn: (_: M$1) => N): N;
4883
- pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M$1 = never, N = never, O$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M$1, mn: (_: M$1) => N, no: (_: N) => O$1): O$1;
4884
- pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M$1 = never, N = never, O$1 = never, P$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M$1, mn: (_: M$1) => N, no: (_: N) => O$1, op: (_: O$1) => P$1): P$1;
4885
- pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M$1 = never, N = never, O$1 = never, P$1 = never, Q$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M$1, mn: (_: M$1) => N, no: (_: N) => O$1, op: (_: O$1) => P$1, pq: (_: P$1) => Q$1): Q$1;
4886
- pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M$1 = never, N = never, O$1 = never, P$1 = never, Q$1 = never, R$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M$1, mn: (_: M$1) => N, no: (_: N) => O$1, op: (_: O$1) => P$1, pq: (_: P$1) => Q$1, qr: (_: Q$1) => R$1): R$1;
4887
- pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M$1 = never, N = never, O$1 = never, P$1 = never, Q$1 = never, R$1 = never, S$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M$1, mn: (_: M$1) => N, no: (_: N) => O$1, op: (_: O$1) => P$1, pq: (_: P$1) => Q$1, qr: (_: Q$1) => R$1, rs: (_: R$1) => S$1): S$1;
4888
- pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M$1 = never, N = never, O$1 = never, P$1 = never, Q$1 = never, R$1 = never, S$1 = never, T$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M$1, mn: (_: M$1) => N, no: (_: N) => O$1, op: (_: O$1) => P$1, pq: (_: P$1) => Q$1, qr: (_: Q$1) => R$1, rs: (_: R$1) => S$1, st: (_: S$1) => T$1): T$1;
4889
- pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M$1 = never, N = never, O$1 = never, P$1 = never, Q$1 = never, R$1 = never, S$1 = never, T$1 = never, U$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M$1, mn: (_: M$1) => N, no: (_: N) => O$1, op: (_: O$1) => P$1, pq: (_: P$1) => Q$1, qr: (_: Q$1) => R$1, rs: (_: R$1) => S$1, st: (_: S$1) => T$1, tu: (_: T$1) => U$1): U$1;
4890
- pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M$1 = never, N = never, O$1 = never, P$1 = never, Q$1 = never, R$1 = never, S$1 = never, T$1 = never, U$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M$1, mn: (_: M$1) => N, no: (_: N) => O$1, op: (_: O$1) => P$1, pq: (_: P$1) => Q$1, qr: (_: Q$1) => R$1, rs: (_: R$1) => S$1, st: (_: S$1) => T$1, tu: (_: T$1) => U$1): U$1;
4881
+ pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M): M;
4882
+ pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M = never, N = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M, mn: (_: M) => N): N;
4883
+ pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M = never, N = never, O = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M, mn: (_: M) => N, no: (_: N) => O): O;
4884
+ pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M = never, N = never, O = never, P$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M, mn: (_: M) => N, no: (_: N) => O, op: (_: O) => P$1): P$1;
4885
+ pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M = never, N = never, O = never, P$1 = never, Q = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M, mn: (_: M) => N, no: (_: N) => O, op: (_: O) => P$1, pq: (_: P$1) => Q): Q;
4886
+ pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M = never, N = never, O = never, P$1 = never, Q = never, R$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M, mn: (_: M) => N, no: (_: N) => O, op: (_: O) => P$1, pq: (_: P$1) => Q, qr: (_: Q) => R$1): R$1;
4887
+ pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M = never, N = never, O = never, P$1 = never, Q = never, R$1 = never, S$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M, mn: (_: M) => N, no: (_: N) => O, op: (_: O) => P$1, pq: (_: P$1) => Q, qr: (_: Q) => R$1, rs: (_: R$1) => S$1): S$1;
4888
+ pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M = never, N = never, O = never, P$1 = never, Q = never, R$1 = never, S$1 = never, T$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M, mn: (_: M) => N, no: (_: N) => O, op: (_: O) => P$1, pq: (_: P$1) => Q, qr: (_: Q) => R$1, rs: (_: R$1) => S$1, st: (_: S$1) => T$1): T$1;
4889
+ pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M = never, N = never, O = never, P$1 = never, Q = never, R$1 = never, S$1 = never, T$1 = never, U$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M, mn: (_: M) => N, no: (_: N) => O, op: (_: O) => P$1, pq: (_: P$1) => Q, qr: (_: Q) => R$1, rs: (_: R$1) => S$1, st: (_: S$1) => T$1, tu: (_: T$1) => U$1): U$1;
4890
+ pipe<A$1, B$1 = never, C = never, D = never, E$1 = never, F = never, G = never, H$1 = never, I$1 = never, J = never, K$1 = never, L$1 = never, M = never, N = never, O = never, P$1 = never, Q = never, R$1 = never, S$1 = never, T$1 = never, U$1 = never>(this: A$1, ab: (_: A$1) => B$1, bc: (_: B$1) => C, cd: (_: C) => D, de: (_: D) => E$1, ef: (_: E$1) => F, fg: (_: F) => G, gh: (_: G) => H$1, hi: (_: H$1) => I$1, ij: (_: I$1) => J, jk: (_: J) => K$1, kl: (_: K$1) => L$1, lm: (_: L$1) => M, mn: (_: M) => N, no: (_: N) => O, op: (_: O) => P$1, pq: (_: P$1) => Q, qr: (_: Q) => R$1, rs: (_: R$1) => S$1, st: (_: S$1) => T$1, tu: (_: T$1) => U$1): U$1;
4891
4891
  }
4892
4892
  //#endregion
4893
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Unify.d.ts
4893
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Unify.d.ts
4894
4894
  /**
4895
4895
  * @since 2.0.0
4896
4896
  */
@@ -4919,7 +4919,7 @@ declare const ignoreSymbol: unique symbol;
4919
4919
  */
4920
4920
  type ignoreSymbol = typeof ignoreSymbol;
4921
4921
  //#endregion
4922
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Utils.d.ts
4922
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Utils.d.ts
4923
4923
  /**
4924
4924
  * @since 3.0.6
4925
4925
  */
@@ -4936,7 +4936,7 @@ declare class YieldWrap<T$1> {
4936
4936
  [YieldWrapTypeId](): T$1;
4937
4937
  }
4938
4938
  //#endregion
4939
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Option.d.ts
4939
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Option.d.ts
4940
4940
  /**
4941
4941
  * The `Option` data type represents optional values. An `Option<A>` can either
4942
4942
  * be `Some<A>`, containing a value of type `A`, or `None`, representing the
@@ -5037,7 +5037,7 @@ declare namespace Option {
5037
5037
  */
5038
5038
  interface OptionUnifyIgnore {}
5039
5039
  //#endregion
5040
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Context.d.ts
5040
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Context.d.ts
5041
5041
  /**
5042
5042
  * @since 2.0.0
5043
5043
  * @category symbol
@@ -5052,16 +5052,16 @@ type TagTypeId = typeof TagTypeId;
5052
5052
  * @since 3.5.9
5053
5053
  * @category models
5054
5054
  */
5055
- interface Tag$2<in out Id, in out Value$2> extends Pipeable, Inspectable, ReadonlyTag<Id, Value$2> {
5055
+ interface Tag$2<in out Id$1, in out Value$2> extends Pipeable, Inspectable, ReadonlyTag<Id$1, Value$2> {
5056
5056
  readonly _op: "Tag";
5057
5057
  readonly Service: Value$2;
5058
- readonly Identifier: Id;
5058
+ readonly Identifier: Id$1;
5059
5059
  readonly [TagTypeId]: {
5060
5060
  readonly _Service: Invariant<Value$2>;
5061
- readonly _Identifier: Invariant<Id>;
5061
+ readonly _Identifier: Invariant<Id$1>;
5062
5062
  };
5063
5063
  of(self: Value$2): Value$2;
5064
- context(self: Value$2): Context$1<Id>;
5064
+ context(self: Value$2): Context$1<Id$1>;
5065
5065
  readonly stack?: string | undefined;
5066
5066
  readonly key: string;
5067
5067
  [typeSymbol]?: unknown;
@@ -5072,13 +5072,13 @@ interface Tag$2<in out Id, in out Value$2> extends Pipeable, Inspectable, Readon
5072
5072
  * @since 3.5.9
5073
5073
  * @category models
5074
5074
  */
5075
- interface ReadonlyTag<in out Id, out Value$2> extends Pipeable, Inspectable, Effect<Value$2, never, Id> {
5075
+ interface ReadonlyTag<in out Id$1, out Value$2> extends Pipeable, Inspectable, Effect<Value$2, never, Id$1> {
5076
5076
  readonly _op: "Tag";
5077
5077
  readonly Service: Value$2;
5078
- readonly Identifier: Id;
5078
+ readonly Identifier: Id$1;
5079
5079
  readonly [TagTypeId]: {
5080
5080
  readonly _Service: Covariant<Value$2>;
5081
- readonly _Identifier: Invariant<Id>;
5081
+ readonly _Identifier: Invariant<Id$1>;
5082
5082
  };
5083
5083
  readonly stack?: string | undefined;
5084
5084
  readonly key: string;
@@ -5087,18 +5087,18 @@ interface ReadonlyTag<in out Id, out Value$2> extends Pipeable, Inspectable, Eff
5087
5087
  * @since 2.0.0
5088
5088
  * @category models
5089
5089
  */
5090
- interface TagClassShape<Id, Shape> {
5090
+ interface TagClassShape<Id$1, Shape> {
5091
5091
  readonly [TagTypeId]: TagTypeId;
5092
5092
  readonly Type: Shape;
5093
- readonly Id: Id;
5093
+ readonly Id: Id$1;
5094
5094
  }
5095
5095
  /**
5096
5096
  * @since 2.0.0
5097
5097
  * @category models
5098
5098
  */
5099
- interface TagClass<Self, Id extends string, Type$5> extends Tag$2<Self, Type$5> {
5100
- new (_: never): TagClassShape<Id, Type$5>;
5101
- readonly key: Id;
5099
+ interface TagClass<Self, Id$1 extends string, Type$5> extends Tag$2<Self, Type$5> {
5100
+ new (_: never): TagClassShape<Id$1, Type$5>;
5101
+ readonly key: Id$1;
5102
5102
  }
5103
5103
  /**
5104
5104
  * @category models
@@ -5160,9 +5160,9 @@ interface Context$1<in Services> extends Equal, Pipeable, Inspectable {
5160
5160
  * @since 2.0.0
5161
5161
  * @category constructors
5162
5162
  */
5163
- declare const Tag$2: <const Id extends string>(id: Id) => <Self, Shape>() => TagClass<Self, Id, Shape>;
5163
+ declare const Tag$2: <const Id$1 extends string>(id: Id$1) => <Self, Shape>() => TagClass<Self, Id$1, Shape>;
5164
5164
  //#endregion
5165
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Sink.d.ts
5165
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Sink.d.ts
5166
5166
  /**
5167
5167
  * @since 2.0.0
5168
5168
  * @category symbols
@@ -5218,7 +5218,7 @@ declare namespace Sink {
5218
5218
  }
5219
5219
  }
5220
5220
  //#endregion
5221
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/STM.d.ts
5221
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/STM.d.ts
5222
5222
  /**
5223
5223
  * @since 2.0.0
5224
5224
  * @category symbols
@@ -5293,8 +5293,8 @@ interface STMUnifyIgnore extends EffectUnifyIgnore {
5293
5293
  * @category models
5294
5294
  */
5295
5295
  declare module "./Context.js" {
5296
- interface Tag<Id, Value$2> extends STM<Value$2, never, Id> {}
5297
- interface Reference<Id, Value$2> extends STM<Value$2> {}
5296
+ interface Tag<Id$1, Value$2> extends STM<Value$2, never, Id$1> {}
5297
+ interface Reference<Id$1, Value$2> extends STM<Value$2> {}
5298
5298
  }
5299
5299
  /**
5300
5300
  * @since 2.0.0
@@ -5337,7 +5337,7 @@ declare namespace STM {
5337
5337
  }
5338
5338
  }
5339
5339
  //#endregion
5340
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Stream.d.ts
5340
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Stream.d.ts
5341
5341
  /**
5342
5342
  * @since 2.0.0
5343
5343
  * @category symbols
@@ -5450,7 +5450,7 @@ declare namespace Stream {
5450
5450
  type DynamicTupleOf<T$1, N extends number, R$1 extends Array<unknown>> = R$1["length"] extends N ? R$1 : DynamicTupleOf<T$1, N, [T$1, ...R$1]>;
5451
5451
  }
5452
5452
  //#endregion
5453
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Channel.d.ts
5453
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Channel.d.ts
5454
5454
  /**
5455
5455
  * @since 2.0.0
5456
5456
  * @category symbols
@@ -5544,7 +5544,7 @@ declare namespace Channel {
5544
5544
  }
5545
5545
  }
5546
5546
  //#endregion
5547
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Cause.d.ts
5547
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Cause.d.ts
5548
5548
  /**
5549
5549
  * A unique symbol identifying the `NoSuchElementException` type.
5550
5550
  *
@@ -5684,7 +5684,7 @@ declare const NoSuchElementException: new (message?: string | undefined) => NoSu
5684
5684
  */
5685
5685
  declare const UnknownException: new (error: unknown, message?: string | undefined) => UnknownException;
5686
5686
  //#endregion
5687
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Effect.d.ts
5687
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Effect.d.ts
5688
5688
  /**
5689
5689
  * @since 2.0.0
5690
5690
  * @category Symbols
@@ -5753,11 +5753,11 @@ interface EffectUnifyIgnore {
5753
5753
  * @category Models
5754
5754
  */
5755
5755
  declare module "./Context.js" {
5756
- interface Tag<Id, Value$2> extends Effect<Value$2, never, Id> {
5757
- [Symbol.iterator](): EffectGenerator<Tag$1<Id, Value$2>>;
5756
+ interface Tag<Id$1, Value$2> extends Effect<Value$2, never, Id$1> {
5757
+ [Symbol.iterator](): EffectGenerator<Tag$1<Id$1, Value$2>>;
5758
5758
  }
5759
- interface Reference<Id, Value$2> extends Effect<Value$2> {
5760
- [Symbol.iterator](): EffectGenerator<Reference<Id, Value$2>>;
5759
+ interface Reference<Id$1, Value$2> extends Effect<Value$2> {
5760
+ [Symbol.iterator](): EffectGenerator<Reference<Id$1, Value$2>>;
5761
5761
  }
5762
5762
  interface TagUnifyIgnore {
5763
5763
  Effect?: true;
@@ -5843,7 +5843,7 @@ declare namespace Effect {
5843
5843
  * @since 3.15.5
5844
5844
  * @category Effect Type Extractors
5845
5845
  */
5846
- type AsEffect<T$1 extends Effect<any, any, any>> = Effect<T$1 extends Effect<infer _A, infer _E, infer _R> ? _A : never, T$1 extends Effect<infer _A, infer _E, infer _R> ? _E : never, T$1 extends Effect<infer _A, infer _E, infer _R> ? _R : never>;
5846
+ type AsEffect<T$1 extends Effect<any, any, any>> = Effect<T$1 extends Effect<infer _A, infer _E, infer _R> ? _A : never, T$1 extends Effect<infer _A, infer _E, infer _R> ? _E : never, T$1 extends Effect<infer _A, infer _E, infer _R> ? _R : never> extends infer Q ? Q : never;
5847
5847
  }
5848
5848
  /**
5849
5849
  * @since 2.0.0
@@ -5910,11 +5910,11 @@ declare namespace Tag$1 {
5910
5910
  * @since 2.0.0
5911
5911
  * @category Context
5912
5912
  */
5913
- declare const Tag$1: <const Id extends string>(id: Id) => <Self, Type$5 extends Tag$1.AllowedType>() => TagClass<Self, Id, Type$5> & (Type$5 extends Record<PropertyKey, any> ? Tag$1.Proxy<Self, Type$5> : {}) & {
5914
- use: <X$1>(body: (_: Type$5) => X$1) => [X$1] extends [Effect<infer A, infer E, infer R>] ? Effect<A, E, R | Self> : [X$1] extends [PromiseLike<infer A>] ? Effect<A, UnknownException, Self> : Effect<X$1, never, Self>;
5913
+ declare const Tag$1: <const Id$1 extends string>(id: Id$1) => <Self, Type$5 extends Tag$1.AllowedType>() => TagClass<Self, Id$1, Type$5> & (Type$5 extends Record<PropertyKey, any> ? Tag$1.Proxy<Self, Type$5> : {}) & {
5914
+ use: <X>(body: (_: Type$5) => X) => [X] extends [Effect<infer A, infer E, infer R>] ? Effect<A, E, R | Self> : [X] extends [PromiseLike<infer A>] ? Effect<A, UnknownException, Self> : Effect<X, never, Self>;
5915
5915
  };
5916
5916
  //#endregion
5917
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Inspectable.d.ts
5917
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Inspectable.d.ts
5918
5918
  /**
5919
5919
  * @since 2.0.0
5920
5920
  * @category models
@@ -5925,7 +5925,7 @@ interface Inspectable {
5925
5925
  [NodeInspectSymbol](): unknown;
5926
5926
  }
5927
5927
  //#endregion
5928
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Either.d.ts
5928
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Either.d.ts
5929
5929
  /**
5930
5930
  * @category models
5931
5931
  * @since 2.0.0
@@ -6003,7 +6003,7 @@ declare namespace Either {
6003
6003
  type Right<T$1 extends Either<any, any>> = [T$1] extends [Either<infer _A, infer _E>] ? _A : never;
6004
6004
  }
6005
6005
  //#endregion
6006
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Array.d.ts
6006
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Array.d.ts
6007
6007
  /**
6008
6008
  * @category models
6009
6009
  * @since 2.0.0
@@ -6015,12 +6015,21 @@ type NonEmptyReadonlyArray<A$1> = readonly [A$1, ...Array<A$1>];
6015
6015
  */
6016
6016
  type NonEmptyArray<A$1> = [A$1, ...Array<A$1>];
6017
6017
  //#endregion
6018
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/SchemaAST.d.ts
6018
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/SchemaAST.d.ts
6019
6019
  /**
6020
6020
  * @category model
6021
6021
  * @since 3.10.0
6022
6022
  */
6023
6023
  type AST = Declaration | Literal$1 | UniqueSymbol | UndefinedKeyword | VoidKeyword | NeverKeyword | UnknownKeyword | AnyKeyword | StringKeyword | NumberKeyword | BooleanKeyword | BigIntKeyword | SymbolKeyword | ObjectKeyword | Enums | TemplateLiteral | Refinement$1 | TupleType$1 | TypeLiteral$1 | Union$1 | Suspend | Transformation$1;
6024
+ /**
6025
+ * @category annotations
6026
+ * @since 3.19.0
6027
+ * @experimental
6028
+ */
6029
+ type TypeConstructorAnnotation = {
6030
+ readonly _tag: string;
6031
+ [key: PropertyKey]: unknown;
6032
+ };
6024
6033
  /**
6025
6034
  * @category annotations
6026
6035
  * @since 3.10.0
@@ -6603,8 +6612,8 @@ type Members<A$1> = readonly [A$1, A$1, ...Array<A$1>];
6603
6612
  * @category model
6604
6613
  * @since 3.10.0
6605
6614
  */
6606
- declare class Union$1<M$1 extends AST = AST> implements Annotated {
6607
- readonly types: Members<M$1>;
6615
+ declare class Union$1<M extends AST = AST> implements Annotated {
6616
+ readonly types: Members<M>;
6608
6617
  readonly annotations: Annotations$1;
6609
6618
  static make: (types: ReadonlyArray<AST>, annotations?: Annotations$1) => AST;
6610
6619
  /**
@@ -6818,7 +6827,7 @@ declare class TypeLiteralTransformation {
6818
6827
  constructor(propertySignatureTransformations: ReadonlyArray<PropertySignatureTransformation$1>);
6819
6828
  }
6820
6829
  //#endregion
6821
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/ParseResult.d.ts
6830
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/ParseResult.d.ts
6822
6831
  /**
6823
6832
  * `ParseIssue` is a type that represents the different types of errors that can occur when decoding/encoding a value.
6824
6833
  *
@@ -6990,7 +6999,7 @@ declare class Forbidden {
6990
6999
  constructor(ast: AST, actual: unknown, message?: string | undefined);
6991
7000
  }
6992
7001
  //#endregion
6993
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Pretty.d.ts
7002
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Pretty.d.ts
6994
7003
  /**
6995
7004
  * @category model
6996
7005
  * @since 3.10.0
@@ -7004,7 +7013,7 @@ interface Pretty<To> {
7004
7013
  */
7005
7014
  type PrettyAnnotation<A$1, TypeParameters extends ReadonlyArray<any> = readonly []> = (...pretties: { readonly [K in keyof TypeParameters]: Pretty<TypeParameters[K]> }) => Pretty<A$1>;
7006
7015
  //#endregion
7007
- //#region ../../../../node_modules/.pnpm/effect@3.18.3/node_modules/effect/dist/dts/Schema.d.ts
7016
+ //#region ../../../../node_modules/.pnpm/effect@3.19.16/node_modules/effect/dist/dts/Schema.d.ts
7008
7017
  /**
7009
7018
  * @since 3.10.0
7010
7019
  */
@@ -7069,7 +7078,7 @@ declare namespace Annotable {
7069
7078
  /**
7070
7079
  * @since 3.10.0
7071
7080
  */
7072
- type All = Any$6 | Annotable<any, any, never, unknown> | Annotable<any, never, any, unknown> | Annotable<any, never, never, unknown>;
7081
+ type All = Any$4 | Annotable<any, any, never, unknown> | Annotable<any, never, any, unknown> | Annotable<any, never, never, unknown>;
7073
7082
  }
7074
7083
  /**
7075
7084
  * @since 3.10.0
@@ -7088,15 +7097,15 @@ declare namespace Schema {
7088
7097
  /**
7089
7098
  * @since 3.10.0
7090
7099
  */
7091
- type Type<S$1> = S$1 extends Schema.Variance<infer A, infer _I, infer _R> ? A$1 : never;
7100
+ type Type<S$1> = S$1 extends Schema.Variance<infer A, infer _I, infer _R> ? A : never;
7092
7101
  /**
7093
7102
  * @since 3.10.0
7094
7103
  */
7095
- type Encoded<S$1> = S$1 extends Schema.Variance<infer _A, infer I, infer _R> ? I$1 : never;
7104
+ type Encoded<S$1> = S$1 extends Schema.Variance<infer _A, infer I, infer _R> ? I : never;
7096
7105
  /**
7097
7106
  * @since 3.10.0
7098
7107
  */
7099
- type Context<S$1> = S$1 extends Schema.Variance<infer _A, infer _I, infer R> ? R$1 : never;
7108
+ type Context<S$1> = S$1 extends Schema.Variance<infer _A, infer _I, infer R> ? R : never;
7100
7109
  /**
7101
7110
  * @since 3.10.0
7102
7111
  */
@@ -7118,7 +7127,7 @@ declare namespace Schema {
7118
7127
  *
7119
7128
  * @since 3.10.0
7120
7129
  */
7121
- type All = Any$6 | Schema<any, never, unknown> | Schema<never, any, unknown> | Schema<never, never, unknown>;
7130
+ type All = Any$4 | Schema<any, never, unknown> | Schema<never, any, unknown> | Schema<never, never, unknown>;
7122
7131
  /**
7123
7132
  * Type-level counterpart of `Schema.asSchema` function.
7124
7133
  *
@@ -7157,16 +7166,22 @@ declare const Unknown_base: SchemaClass<unknown, unknown, never>;
7157
7166
  * @category primitives
7158
7167
  * @since 3.10.0
7159
7168
  */
7160
- declare class Unknown extends Unknown_base {}
7169
+ declare class Unknown$2 extends Unknown_base {}
7161
7170
  declare const Any_base: SchemaClass<any, any, never>;
7162
7171
  /**
7163
7172
  * @category primitives
7164
7173
  * @since 3.10.0
7165
7174
  */
7166
- declare class Any$6 extends Any_base {}
7175
+ declare class Any$4 extends Any_base {}
7167
7176
  declare const String$_base: SchemaClass<string, string, never>;
7168
7177
  /** @ignore */
7169
7178
  declare class String$ extends String$_base {}
7179
+ declare const Number$_base: SchemaClass<number, number, never>;
7180
+ /** @ignore */
7181
+ declare class Number$ extends Number$_base {}
7182
+ declare const Boolean$_base: SchemaClass<boolean, boolean, never>;
7183
+ /** @ignore */
7184
+ declare class Boolean$ extends Boolean$_base {}
7170
7185
  /**
7171
7186
  * @category api interface
7172
7187
  * @since 3.10.0
@@ -7182,6 +7197,18 @@ declare function Union<Members$1 extends Members<Schema.All>>(...members: Member
7182
7197
  declare function Union<Member extends Schema.All>(member: Member): Member;
7183
7198
  declare function Union(): typeof Never;
7184
7199
  declare function Union<Members$1 extends ReadonlyArray<Schema.All>>(...members: Members$1): Schema<Schema.Type<Members$1[number]>, Schema.Encoded<Members$1[number]>, Schema.Context<Members$1[number]>>;
7200
+ /**
7201
+ * @category api interface
7202
+ * @since 3.10.0
7203
+ */
7204
+ interface NullOr<S$1 extends Schema.All> extends Union<[S$1, typeof Null]> {
7205
+ annotations(annotations: Annotations.Schema<Schema.Type<S$1> | null>): NullOr<S$1>;
7206
+ }
7207
+ /**
7208
+ * @category combinators
7209
+ * @since 3.10.0
7210
+ */
7211
+ declare const NullOr: <S$1 extends Schema.All>(self: S$1) => NullOr<S$1>;
7185
7212
  /**
7186
7213
  * @since 3.10.0
7187
7214
  */
@@ -7211,8 +7238,8 @@ interface Element<S$1 extends Schema.Any, Token$1 extends Element.Token> extends
7211
7238
  * @since 3.10.0
7212
7239
  */
7213
7240
  declare namespace TupleType {
7214
- type ElementsType<Elements, Out$1 extends ReadonlyArray<any> = readonly []> = Elements extends readonly [infer Head, ...infer Tail] ? Head extends Element<infer T, "?"> ? ElementsType<Tail, readonly [...Out$1, Schema.Type<T>?]> : ElementsType<Tail, readonly [...Out$1, Schema.Type<Head>]> : Out$1;
7215
- type ElementsEncoded<Elements, Out$1 extends ReadonlyArray<any> = readonly []> = Elements extends readonly [infer Head, ...infer Tail] ? Head extends Element<infer T, "?"> ? ElementsEncoded<Tail, readonly [...Out$1, Schema.Encoded<T>?]> : ElementsEncoded<Tail, readonly [...Out$1, Schema.Encoded<Head>]> : Out$1;
7241
+ type ElementsType<Elements, Out extends ReadonlyArray<any> = readonly []> = Elements extends readonly [infer Head, ...infer Tail] ? Head extends Element<infer T, "?"> ? ElementsType<Tail, readonly [...Out, Schema.Type<T>?]> : ElementsType<Tail, readonly [...Out, Schema.Type<Head>]> : Out;
7242
+ type ElementsEncoded<Elements, Out extends ReadonlyArray<any> = readonly []> = Elements extends readonly [infer Head, ...infer Tail] ? Head extends Element<infer T, "?"> ? ElementsEncoded<Tail, readonly [...Out, Schema.Encoded<T>?]> : ElementsEncoded<Tail, readonly [...Out, Schema.Encoded<Head>]> : Out;
7216
7243
  /**
7217
7244
  * @since 3.10.0
7218
7245
  */
@@ -7262,7 +7289,7 @@ declare namespace PropertySignature {
7262
7289
  /**
7263
7290
  * @since 3.10.0
7264
7291
  */
7265
- type All<Key$1 extends PropertyKey = PropertyKey> = Any$6<Key$1> | PropertySignature<Token, never, Key$1, Token, any, boolean, unknown> | PropertySignature<Token, any, Key$1, Token, never, boolean, unknown> | PropertySignature<Token, never, Key$1, Token, never, boolean, unknown>;
7292
+ type All<Key$1 extends PropertyKey = PropertyKey> = Any$4<Key$1> | PropertySignature<Token, never, Key$1, Token, any, boolean, unknown> | PropertySignature<Token, any, Key$1, Token, never, boolean, unknown> | PropertySignature<Token, never, Key$1, Token, never, boolean, unknown>;
7266
7293
  /**
7267
7294
  * @since 3.10.0
7268
7295
  */
@@ -7593,6 +7620,7 @@ declare namespace Annotations {
7593
7620
  * @since 3.10.0
7594
7621
  */
7595
7622
  interface Schema<A$1, TypeParameters extends ReadonlyArray<any> = readonly []> extends Doc<A$1> {
7623
+ readonly typeConstructor?: TypeConstructorAnnotation;
7596
7624
  readonly identifier?: IdentifierAnnotation;
7597
7625
  readonly message?: MessageAnnotation;
7598
7626
  readonly schemaId?: SchemaIdAnnotation;
@@ -7839,7 +7867,7 @@ declare namespace DXN {
7839
7867
  echoId: string;
7840
7868
  };
7841
7869
  type QueueDXN = {
7842
- subspaceTag: string;
7870
+ subspaceTag: QueueSubspaceTag;
7843
7871
  spaceId: SpaceId;
7844
7872
  queueId: string;
7845
7873
  objectId?: string;
@@ -7865,6 +7893,11 @@ type ForeignKey = Schema.Type<typeof ForeignKey_>;
7865
7893
  declare const ForeignKey: Schema<ForeignKey>;
7866
7894
  //#endregion
7867
7895
  //#region ../../../common/util/dist/types/src/types.d.ts
7896
+ /**
7897
+ * Removes readonly modifiers from top-level properties of T.
7898
+ * Also converts readonly arrays at the top level to mutable arrays.
7899
+ * For nested properties, mutability depends on the schema definition.
7900
+ */
7868
7901
  type ToMutable<T$1> = T$1 extends object ? { -readonly [K in keyof T$1]: T$1[K] extends readonly (infer U)[] ? U[] : T$1[K] } : T$1;
7869
7902
  //#endregion
7870
7903
  //#region ../echo-protocol/dist/types/src/reference.d.ts
@@ -7879,6 +7912,7 @@ declare const EncodedReference: Readonly<{
7879
7912
  getReferenceString: (value: EncodedReference) => string;
7880
7913
  toDXN: (value: EncodedReference) => DXN;
7881
7914
  fromDXN: (dxn: DXN) => EncodedReference;
7915
+ fromLegacyTypename: (typename: string) => EncodedReference;
7882
7916
  }>;
7883
7917
  //#endregion
7884
7918
  //#region ../echo-protocol/dist/types/src/query/ast.d.ts
@@ -7915,7 +7949,7 @@ declare const FilterObject: Schema<FilterObject>;
7915
7949
  declare const FilterCompare_: Struct<{
7916
7950
  type: Literal<["compare"]>;
7917
7951
  operator: Literal<["eq", "neq", "gt", "gte", "lt", "lte"]>;
7918
- value: typeof Unknown;
7952
+ value: typeof Unknown$2;
7919
7953
  }>;
7920
7954
  interface FilterCompare extends Schema.Type<typeof FilterCompare_> {}
7921
7955
  declare const FilterCompare: Schema<FilterCompare>;
@@ -7924,7 +7958,7 @@ declare const FilterCompare: Schema<FilterCompare>;
7924
7958
  */
7925
7959
  declare const FilterIn_: Struct<{
7926
7960
  type: Literal<["in"]>;
7927
- values: Array$<typeof Any$6>;
7961
+ values: Array$<typeof Any$4>;
7928
7962
  }>;
7929
7963
  interface FilterIn extends Schema.Type<typeof FilterIn_> {}
7930
7964
  declare const FilterIn: Schema<FilterIn>;
@@ -7933,7 +7967,7 @@ declare const FilterIn: Schema<FilterIn>;
7933
7967
  */
7934
7968
  declare const FilterContains_: Struct<{
7935
7969
  type: Literal<["contains"]>;
7936
- value: typeof Any$6;
7970
+ value: typeof Any$4;
7937
7971
  }>;
7938
7972
  interface FilterContains extends Schema.Type<typeof FilterContains_> {}
7939
7973
  /**
@@ -7955,8 +7989,8 @@ declare const FilterTag: Schema<FilterTag>;
7955
7989
  */
7956
7990
  declare const FilterRange_: Struct<{
7957
7991
  type: Literal<["range"]>;
7958
- from: typeof Any$6;
7959
- to: typeof Any$6;
7992
+ from: typeof Any$4;
7993
+ to: typeof Any$4;
7960
7994
  }>;
7961
7995
  interface FilterRange extends Schema.Type<typeof FilterRange_> {}
7962
7996
  declare const FilterRange: Schema<FilterRange>;
@@ -8016,7 +8050,7 @@ declare const QuerySelectClause: Schema<QuerySelectClause>;
8016
8050
  */
8017
8051
  declare const QueryFilterClause_: Struct<{
8018
8052
  type: Literal<["filter"]>;
8019
- selection: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, never>;
8053
+ selection: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, never>;
8020
8054
  filter: suspend<FilterObject | FilterCompare | FilterIn | FilterContains | FilterTag | FilterRange | FilterTextSearch | FilterNot | FilterAnd | FilterOr, FilterObject | FilterCompare | FilterIn | FilterContains | FilterTag | FilterRange | FilterTextSearch | FilterNot | FilterAnd | FilterOr, never>;
8021
8055
  }>;
8022
8056
  interface QueryFilterClause extends Schema.Type<typeof QueryFilterClause_> {}
@@ -8026,7 +8060,7 @@ declare const QueryFilterClause: Schema<QueryFilterClause>;
8026
8060
  */
8027
8061
  declare const QueryReferenceTraversalClause_: Struct<{
8028
8062
  type: Literal<["reference-traversal"]>;
8029
- anchor: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, never>;
8063
+ anchor: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, never>;
8030
8064
  property: typeof String$;
8031
8065
  }>;
8032
8066
  interface QueryReferenceTraversalClause extends Schema.Type<typeof QueryReferenceTraversalClause_> {}
@@ -8036,8 +8070,12 @@ declare const QueryReferenceTraversalClause: Schema<QueryReferenceTraversalClaus
8036
8070
  */
8037
8071
  declare const QueryIncomingReferencesClause_: Struct<{
8038
8072
  type: Literal<["incoming-references"]>;
8039
- anchor: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, never>;
8040
- property: typeof String$;
8073
+ anchor: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, never>;
8074
+ /**
8075
+ * Property path where the reference is located.
8076
+ * If null, matches references from any property.
8077
+ */
8078
+ property: NullOr<typeof String$>;
8041
8079
  typename: Union<[refine<string, typeof NonEmptyString>, typeof Null]>;
8042
8080
  }>;
8043
8081
  interface QueryIncomingReferencesClause extends Schema.Type<typeof QueryIncomingReferencesClause_> {}
@@ -8047,7 +8085,7 @@ declare const QueryIncomingReferencesClause: Schema<QueryIncomingReferencesClaus
8047
8085
  */
8048
8086
  declare const QueryRelationClause_: Struct<{
8049
8087
  type: Literal<["relation"]>;
8050
- anchor: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, never>;
8088
+ anchor: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, never>;
8051
8089
  /**
8052
8090
  * outgoing: anchor is the source of the relation.
8053
8091
  * incoming: anchor is the target of the relation.
@@ -8063,17 +8101,31 @@ declare const QueryRelationClause: Schema<QueryRelationClause>;
8063
8101
  */
8064
8102
  declare const QueryRelationTraversalClause_: Struct<{
8065
8103
  type: Literal<["relation-traversal"]>;
8066
- anchor: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, never>;
8104
+ anchor: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, never>;
8067
8105
  direction: Literal<["source", "target", "both"]>;
8068
8106
  }>;
8069
8107
  interface QueryRelationTraversalClause extends Schema.Type<typeof QueryRelationTraversalClause_> {}
8070
8108
  declare const QueryRelationTraversalClause: Schema<QueryRelationTraversalClause>;
8109
+ /**
8110
+ * Traverse parent-child hierarchy.
8111
+ */
8112
+ declare const QueryHierarchyTraversalClause_: Struct<{
8113
+ type: Literal<["hierarchy-traversal"]>;
8114
+ anchor: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, never>;
8115
+ /**
8116
+ * to-parent: traverse from child to parent.
8117
+ * to-children: traverse from parent to children.
8118
+ */
8119
+ direction: Literal<["to-parent", "to-children"]>;
8120
+ }>;
8121
+ interface QueryHierarchyTraversalClause extends Schema.Type<typeof QueryHierarchyTraversalClause_> {}
8122
+ declare const QueryHierarchyTraversalClause: Schema<QueryHierarchyTraversalClause>;
8071
8123
  /**
8072
8124
  * Union of multiple queries.
8073
8125
  */
8074
8126
  declare const QueryUnionClause_: Struct<{
8075
8127
  type: Literal<["union"]>;
8076
- queries: Array$<suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, never>>;
8128
+ queries: Array$<suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, never>>;
8077
8129
  }>;
8078
8130
  interface QueryUnionClause extends Schema.Type<typeof QueryUnionClause_> {}
8079
8131
  declare const QueryUnionClause: Schema<QueryUnionClause>;
@@ -8082,8 +8134,8 @@ declare const QueryUnionClause: Schema<QueryUnionClause>;
8082
8134
  */
8083
8135
  declare const QuerySetDifferenceClause_: Struct<{
8084
8136
  type: Literal<["set-difference"]>;
8085
- source: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, never>;
8086
- exclude: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, never>;
8137
+ source: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, never>;
8138
+ exclude: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, never>;
8087
8139
  }>;
8088
8140
  interface QuerySetDifferenceClause extends Schema.Type<typeof QuerySetDifferenceClause_> {}
8089
8141
  declare const QuerySetDifferenceClause: Schema<QuerySetDifferenceClause>;
@@ -8095,6 +8147,9 @@ declare const Order_: Union<[Struct<{
8095
8147
  kind: Literal<["property"]>;
8096
8148
  property: typeof String$;
8097
8149
  direction: Literal<["asc", "desc"]>;
8150
+ }>, Struct<{
8151
+ kind: Literal<["rank"]>;
8152
+ direction: Literal<["asc", "desc"]>;
8098
8153
  }>]>;
8099
8154
  type Order$1 = Schema.Type<typeof Order_>;
8100
8155
  declare const Order$1: Schema<Order$1>;
@@ -8104,19 +8159,25 @@ declare const Order$1: Schema<Order$1>;
8104
8159
  */
8105
8160
  declare const QueryOrderClause_: Struct<{
8106
8161
  type: Literal<["order"]>;
8107
- query: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, never>;
8162
+ query: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, never>;
8108
8163
  order: Array$<Schema<{
8109
8164
  readonly kind: "natural";
8110
8165
  } | {
8111
8166
  readonly kind: "property";
8112
8167
  readonly property: string;
8113
8168
  readonly direction: "asc" | "desc";
8169
+ } | {
8170
+ readonly kind: "rank";
8171
+ readonly direction: "asc" | "desc";
8114
8172
  }, {
8115
8173
  readonly kind: "natural";
8116
8174
  } | {
8117
8175
  readonly kind: "property";
8118
8176
  readonly property: string;
8119
8177
  readonly direction: "asc" | "desc";
8178
+ } | {
8179
+ readonly kind: "rank";
8180
+ readonly direction: "asc" | "desc";
8120
8181
  }, never>>;
8121
8182
  }>;
8122
8183
  interface QueryOrderClause extends Schema.Type<typeof QueryOrderClause_> {}
@@ -8126,20 +8187,32 @@ declare const QueryOrderClause: Schema<QueryOrderClause>;
8126
8187
  */
8127
8188
  declare const QueryOptionsClause_: Struct<{
8128
8189
  type: Literal<["options"]>;
8129
- query: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause, never>;
8190
+ query: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, never>;
8130
8191
  options: suspend<{
8131
8192
  readonly deleted?: "include" | "exclude" | "only" | undefined;
8132
8193
  readonly spaceIds?: readonly string[] | undefined;
8194
+ readonly allQueuesFromSpaces?: boolean | undefined;
8133
8195
  readonly queues?: readonly string[] | undefined;
8134
8196
  }, {
8135
8197
  readonly deleted?: "include" | "exclude" | "only" | undefined;
8136
8198
  readonly spaceIds?: readonly string[] | undefined;
8199
+ readonly allQueuesFromSpaces?: boolean | undefined;
8137
8200
  readonly queues?: readonly string[] | undefined;
8138
8201
  }, never>;
8139
8202
  }>;
8140
8203
  interface QueryOptionsClause extends Schema.Type<typeof QueryOptionsClause_> {}
8141
8204
  declare const QueryOptionsClause: Schema<QueryOptionsClause>;
8142
- declare const Query_: Union<[Schema<QuerySelectClause, QuerySelectClause, never>, Schema<QueryFilterClause, QueryFilterClause, never>, Schema<QueryReferenceTraversalClause, QueryReferenceTraversalClause, never>, Schema<QueryIncomingReferencesClause, QueryIncomingReferencesClause, never>, Schema<QueryRelationClause, QueryRelationClause, never>, Schema<QueryRelationTraversalClause, QueryRelationTraversalClause, never>, Schema<QueryUnionClause, QueryUnionClause, never>, Schema<QuerySetDifferenceClause, QuerySetDifferenceClause, never>, Schema<QueryOrderClause, QueryOrderClause, never>, Schema<QueryOptionsClause, QueryOptionsClause, never>]>;
8205
+ /**
8206
+ * Limit the number of results.
8207
+ */
8208
+ declare const QueryLimitClause_: Struct<{
8209
+ type: Literal<["limit"]>;
8210
+ query: suspend<QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, QuerySelectClause | QueryFilterClause | QueryReferenceTraversalClause | QueryIncomingReferencesClause | QueryRelationClause | QueryRelationTraversalClause | QueryHierarchyTraversalClause | QueryUnionClause | QuerySetDifferenceClause | QueryOrderClause | QueryOptionsClause | QueryLimitClause, never>;
8211
+ limit: typeof Number$;
8212
+ }>;
8213
+ interface QueryLimitClause extends Schema.Type<typeof QueryLimitClause_> {}
8214
+ declare const QueryLimitClause: Schema<QueryLimitClause>;
8215
+ declare const Query_: Union<[Schema<QuerySelectClause, QuerySelectClause, never>, Schema<QueryFilterClause, QueryFilterClause, never>, Schema<QueryReferenceTraversalClause, QueryReferenceTraversalClause, never>, Schema<QueryIncomingReferencesClause, QueryIncomingReferencesClause, never>, Schema<QueryRelationClause, QueryRelationClause, never>, Schema<QueryRelationTraversalClause, QueryRelationTraversalClause, never>, Schema<QueryHierarchyTraversalClause, QueryHierarchyTraversalClause, never>, Schema<QueryUnionClause, QueryUnionClause, never>, Schema<QuerySetDifferenceClause, QuerySetDifferenceClause, never>, Schema<QueryOrderClause, QueryOrderClause, never>, Schema<QueryOptionsClause, QueryOptionsClause, never>, Schema<QueryLimitClause, QueryLimitClause, never>]>;
8143
8216
  type Query$1 = Schema.Type<typeof Query_>;
8144
8217
  declare const Query$1: Schema<Query$1>;
8145
8218
  declare const QueryOptions: Struct<{
@@ -8149,6 +8222,10 @@ declare const QueryOptions: Struct<{
8149
8222
  * NOTE: Spaces and queues are unioned together if both are specified.
8150
8223
  */
8151
8224
  spaceIds: optional<Array$<typeof String$>>;
8225
+ /**
8226
+ * If true, the nested select statements will select from all queues in the spaces specified by `spaceIds`.
8227
+ */
8228
+ allQueuesFromSpaces: optional<typeof Boolean$>;
8152
8229
  /**
8153
8230
  * The nested select statemets will select from the given queues.
8154
8231
  *
@@ -8164,30 +8241,24 @@ interface QueryOptions extends Schema.Type<typeof QueryOptions> {}
8164
8241
  //#endregion
8165
8242
  //#region ../echo/dist/types/src/internal/types/base.d.ts
8166
8243
  /**
8167
- * Marker interface for object with an `id`.
8244
+ * Canonical type for all ECHO entities (objects and relations).
8168
8245
  */
8169
- interface HasId {
8246
+ interface AnyEntity {
8170
8247
  readonly id: ObjectId;
8171
8248
  }
8249
+ //#endregion
8250
+ //#region ../echo/dist/types/src/internal/types/entity.d.ts
8172
8251
  /**
8173
- * Object that has an associated typename.
8174
- * The typename is retrievable using {@link getTypename}.
8175
- * The object can be used with {@link isInstanceOf} to check if it is an instance of a schema.
8252
+ * String key used to identify the kind of an entity instance (object or relation).
8176
8253
  */
8177
- type HasTypename = {};
8254
+ declare const KindId: "~@dxos/echo/Kind";
8255
+ type KindId = typeof KindId;
8178
8256
  /**
8179
- * Base type for all data objects (reactive, ECHO, and other raw objects).
8180
- * NOTE: This describes the base type for all database objects.
8181
- * It is stricter than `T extends {}` or `T extends object`.
8257
+ * String key used to identify the kind of a schema (object schema or relation schema).
8258
+ * Parallels KindId which identifies instance kinds.
8182
8259
  */
8183
- type AnyProperties = Record<string, any>;
8184
- /**
8185
- * Canonical type for all ECHO objects.
8186
- */
8187
- interface AnyEchoObject extends HasId, HasTypename {}
8188
- type WithId<T$1 extends AnyProperties = AnyProperties> = T$1 & HasId;
8189
- //#endregion
8190
- //#region ../echo/dist/types/src/internal/types/entity.d.ts
8260
+ declare const SchemaKindId: "~@dxos/echo/SchemaKind";
8261
+ type SchemaKindId = typeof SchemaKindId;
8191
8262
  /**
8192
8263
  * Kinds of entities stored in ECHO: objects and relations.
8193
8264
  */
@@ -8195,8 +8266,6 @@ declare enum EntityKind {
8195
8266
  Object = "object",
8196
8267
  Relation = "relation",
8197
8268
  }
8198
- declare const KindId: unique symbol;
8199
- type KindId = typeof KindId;
8200
8269
  //#endregion
8201
8270
  //#region ../echo/dist/types/src/internal/annotations/annotations.d.ts
8202
8271
  declare const TypeMeta: Struct<{
@@ -8205,26 +8274,34 @@ declare const TypeMeta: Struct<{
8205
8274
  }>;
8206
8275
  interface TypeMeta extends Schema.Type<typeof TypeMeta> {}
8207
8276
  //#endregion
8208
- //#region ../echo/dist/types/src/internal/entities/relation.d.ts
8277
+ //#region ../../../../node_modules/.pnpm/@effect-atom+atom@0.5.1_@effect+experimental@0.58.0_@effect+platform@0.94.4_effect@3.19_2781dcea2245861d5b097a0ab57df73a/node_modules/@effect-atom/atom/dist/dts/AtomHttpApi.d.ts
8278
+ declare global {
8279
+ interface ErrorConstructor {
8280
+ stackTraceLimit: number;
8281
+ }
8282
+ }
8209
8283
  /**
8210
- * Property name for relation source when object is serialized to JSON.
8284
+ * @since 1.0.0
8285
+ * @category Constructors
8211
8286
  */
8212
- declare const ATTR_RELATION_SOURCE = "@relationSource";
8287
+ //#endregion
8288
+ //#region ../../../../node_modules/.pnpm/@effect-atom+atom@0.5.1_@effect+experimental@0.58.0_@effect+platform@0.94.4_effect@3.19_2781dcea2245861d5b097a0ab57df73a/node_modules/@effect-atom/atom/dist/dts/AtomRpc.d.ts
8289
+ declare global {
8290
+ interface ErrorConstructor {
8291
+ stackTraceLimit: number;
8292
+ }
8293
+ }
8213
8294
  /**
8214
- * Property name for relation target when object is serialized to JSON.
8295
+ * @since 1.0.0
8296
+ * @category Constructors
8215
8297
  */
8216
- declare const ATTR_RELATION_TARGET = "@relationTarget";
8217
- type EchoRelationSchemaOptions<TSource extends Schema.AnyNoContext, TTarget extends Schema.AnyNoContext> = TypeMeta & {
8218
- source: TSource;
8219
- target: TTarget;
8220
- };
8221
8298
  //#endregion
8222
8299
  //#region ../echo/dist/types/src/internal/ref/ref.d.ts
8223
8300
  declare const RefTypeId: unique symbol;
8224
8301
  /**
8225
8302
  * Reference Schema.
8226
8303
  */
8227
- interface RefSchema<T$1 extends WithId> extends SchemaClass<Ref<T$1>, EncodedReference> {}
8304
+ interface RefSchema<T$1 extends AnyEntity> extends SchemaClass<Ref<T$1>, EncodedReference> {}
8228
8305
  /**
8229
8306
  * Type of the `Ref` function and extra methods attached to it.
8230
8307
  */
@@ -8249,7 +8326,7 @@ interface RefFn {
8249
8326
  /**
8250
8327
  * Constructs a reference that points to the given object.
8251
8328
  */
8252
- make: <T$1 extends WithId>(object: T$1) => Ref<T$1>;
8329
+ make: <T$1 extends AnyEntity>(object: T$1) => Ref<T$1>;
8253
8330
  /**
8254
8331
  * Constructs a reference that points to the object specified by the provided DXN.
8255
8332
  */
@@ -8263,17 +8340,19 @@ declare const Ref: RefFn;
8263
8340
  * Represents materialized reference to a target.
8264
8341
  * This is the data type for the fields marked as ref.
8265
8342
  */
8266
- interface Ref<T$1> {
8343
+ interface Ref<T$1> extends Pipeable {
8267
8344
  /**
8268
8345
  * Target object DXN.
8269
8346
  */
8270
8347
  get dxn(): DXN;
8348
+ /**
8349
+ * Returns true if the reference has a target available (inlined or resolver set).
8350
+ */
8351
+ get isAvailable(): boolean;
8271
8352
  /**
8272
8353
  * @returns The reference target.
8273
8354
  * May return `undefined` if the object is not loaded in the working set.
8274
8355
  * Accessing this property, even if it returns `undefined` will trigger the object to be loaded to the working set.
8275
- *
8276
- * @reactive Supports signal subscriptions.
8277
8356
  */
8278
8357
  get target(): T$1 | undefined;
8279
8358
  /**
@@ -8320,18 +8399,147 @@ declare namespace Ref {
8320
8399
  type Target<R$1> = R$1 extends Ref<infer U> ? U : never;
8321
8400
  }
8322
8401
  //#endregion
8402
+ //#region ../echo/dist/types/src/internal/entities/relation.d.ts
8403
+ /**
8404
+ * Property name for relation source when object is serialized to JSON.
8405
+ */
8406
+ declare const ATTR_RELATION_SOURCE = "@relationSource";
8407
+ /**
8408
+ * Property name for relation target when object is serialized to JSON.
8409
+ */
8410
+ declare const ATTR_RELATION_TARGET = "@relationTarget";
8411
+ //#endregion
8412
+ //#region ../echo/dist/types/src/Ref.d.ts
8413
+ type Unknown$1 = Ref<Unknown>;
8414
+ /**
8415
+ * Extract reference target.
8416
+ */
8417
+ type Target$1<R$1 extends Unknown$1> = R$1 extends Ref<infer T> ? T : never;
8418
+ //#endregion
8419
+ //#region ../echo/dist/types/src/Relation.d.ts
8420
+ declare const Source: unique symbol;
8421
+ type Source = typeof Source;
8422
+ declare const Target: unique symbol;
8423
+ type Target = typeof Target;
8424
+ //#endregion
8425
+ //#region ../echo/dist/types/src/Type.d.ts
8426
+ /**
8427
+ * Type that marks a schema as an ECHO schema.
8428
+ * The value indicates the entity kind (Object or Relation).
8429
+ */
8430
+ type EchoSchemaKind<K$1 extends EntityKind = EntityKind> = {
8431
+ readonly [SchemaKindId]: K$1;
8432
+ };
8433
+ /**
8434
+ * JSON-encoded properties for objects.
8435
+ */
8436
+
8437
+ /**
8438
+ * JSON-encoded properties for relations.
8439
+ */
8440
+ interface RelationJsonProps {
8441
+ id: string;
8442
+ [ATTR_RELATION_SOURCE]: string;
8443
+ [ATTR_RELATION_TARGET]: string;
8444
+ }
8445
+ type RelationSchemaType = Schema<{
8446
+ id: ObjectId;
8447
+ } & Record<string, unknown>, {
8448
+ id: string;
8449
+ } & Record<string, unknown>> & EchoSchemaKind<EntityKind.Relation> & TypeMeta;
8450
+ /**
8451
+ * Runtime Effect schema for any ECHO relation.
8452
+ * Use for validation, parsing, or as a reference target for collections.
8453
+ * A relation has `id`, source, and target fields plus any additional properties.
8454
+ *
8455
+ * NOTE: `Schema.is(Type.Relation)` does STRUCTURAL validation only (checks for `id` field).
8456
+ * Use `Relation.isRelation()` for proper ECHO instance type guards that check the KindId brand.
8457
+ *
8458
+ * @example
8459
+ * ```ts
8460
+ * // Structural type guard (accepts any object with id field)
8461
+ * if (Schema.is(Type.Relation)(unknownValue)) { ... }
8462
+ *
8463
+ * // ECHO instance type guard (checks KindId brand)
8464
+ * if (Relation.isRelation(unknownValue)) { ... }
8465
+ * ```
8466
+ */
8467
+ declare const Relation: RelationSchemaType;
8468
+ /**
8469
+ * TypeScript type for an ECHO relation schema.
8470
+ * `T` is the instance type produced by the schema (excluding source/target).
8471
+ * `Source` and `Target` are the endpoint types.
8472
+ * `Fields` is the optional struct fields type for introspection.
8473
+ */
8474
+ interface Relation<T$1 = any, Source$1 = any, Target$2 = any, Fields extends Struct.Fields = Struct.Fields> extends TypeMeta, EchoSchemaKind<EntityKind.Relation>, AnnotableClass<Relation<T$1, Source$1, Target$2, Fields>, OfKind<typeof Kind.Relation> & Relation.Endpoints<Source$1, Target$2> & T$1, Simplify<RelationJsonProps & ToMutable<T$1>>, never> {
8475
+ /**
8476
+ * The fields defined in the original struct schema.
8477
+ * Allows accessing field definitions for introspection.
8478
+ */
8479
+ readonly fields: Fields;
8480
+ }
8481
+ /**
8482
+ * Structural base type for any ECHO relation schema.
8483
+ * Accepts static schemas (created with Type.relation()).
8484
+ * NOTE: Does not include the brand symbol to avoid TS4053 declaration portability issues.
8485
+ * Use Type.isRelationSchema() for runtime type guards.
8486
+ */
8487
+ type RelationSchemaBase = Schema.AnyNoContext & {
8488
+ readonly typename: string;
8489
+ readonly version: string;
8490
+ };
8491
+ declare namespace Relation {
8492
+ /**
8493
+ * Type that represents any ECHO relation schema.
8494
+ * Accepts static schemas (Type.relation()).
8495
+ */
8496
+ type Any = RelationSchemaBase;
8497
+ /**
8498
+ * Get relation source type.
8499
+ */
8500
+ type Source<A$1> = A$1 extends Relation.Endpoints<infer S, infer _T> ? S : never;
8501
+ /**
8502
+ * Get relation target type.
8503
+ */
8504
+ type Target<A$1> = A$1 extends Relation.Endpoints<infer _S, infer T> ? T : never;
8505
+ type Endpoints<Source$1, Target$2> = {
8506
+ [Source]: Source$1;
8507
+ [Target]: Target$2;
8508
+ };
8509
+ }
8510
+ //#endregion
8511
+ //#region ../echo/dist/types/src/Obj.d.ts
8512
+ /**
8513
+ * Base type for all ECHO objects.
8514
+ */
8515
+ interface BaseObj extends AnyEntity, OfKind<typeof Kind.Object> {}
8516
+ /**
8517
+ * Object type with specific properties.
8518
+ */
8519
+
8520
+ /**
8521
+ * Object with no known properties beyond id and kind.
8522
+ * Use this when the object's schema/properties are not known.
8523
+ * For objects with arbitrary properties, use `Obj.AnyProps`.
8524
+ *
8525
+ * NOTE: This is a TypeScript type only, not a schema.
8526
+ * To validate that a value is an ECHO object, use `Schema.is(Type.Obj)`.
8527
+ */
8528
+ interface Unknown extends BaseObj {}
8529
+ //#endregion
8323
8530
  //#region ../echo/dist/types/src/Entity.d.ts
8324
8531
  declare const Kind: typeof EntityKind;
8325
8532
  type Kind = EntityKind;
8326
8533
  /**
8327
8534
  * Assigns a kind to an Object or Relation instance.
8535
+ * NOTE: Needed to make `isRelation` and `isObject` checks work.
8328
8536
  */
8329
8537
  interface OfKind<K$1 extends Kind> {
8330
8538
  readonly [KindId]: K$1;
8331
8539
  readonly id: ObjectId;
8332
8540
  }
8333
8541
  declare namespace Filter_d_exports {
8334
- export { Any$5 as Any, Filter, Props, TextSearchOptions, Type$2 as Type, and, between, contains, eq, everything, foreignKeys, fromAst$1 as fromAst, gt, gte, id, in$ as in, is$1 as is, lt, lte, neq, not, nothing, or, props, tag, text, type$2 as type, typeDXN, typename$1 as typename };
8542
+ export { Any$3 as Any, Filter, Props, TextSearchOptions, Type$2 as Type, and, between, contains, eq, everything, foreignKeys, fromAst$1 as fromAst, gt, gte, id, in$ as in, is$1 as is, lt, lte, neq, not, nothing, or, props, tag, text, type$2 as type, typeDXN, typename$1 as typename };
8335
8543
  }
8336
8544
  interface Filter<T$1> {
8337
8545
  '~Filter': {
@@ -8340,9 +8548,9 @@ interface Filter<T$1> {
8340
8548
  ast: Filter$1;
8341
8549
  }
8342
8550
  type Props<T$1> = { [K in keyof T$1 & string]?: Filter<T$1[K]> | T$1[K] };
8343
- type Any$5 = Filter<any>;
8344
- type Type$2<F extends Any$5> = F extends Filter<infer T> ? T : never;
8345
- declare class FilterClass implements Any$5 {
8551
+ type Any$3 = Filter<any>;
8552
+ type Type$2<F extends Any$3> = F extends Filter<infer T> ? T : never;
8553
+ declare class FilterClass implements Any$3 {
8346
8554
  readonly ast: Filter$1;
8347
8555
  private static variance;
8348
8556
  constructor(ast: Filter$1);
@@ -8350,9 +8558,9 @@ declare class FilterClass implements Any$5 {
8350
8558
  value: Contravariant<any>;
8351
8559
  };
8352
8560
  }
8353
- declare const is$1: (value: unknown) => value is Any$5;
8561
+ declare const is$1: (value: unknown) => value is Any$3;
8354
8562
  /** Construct a filter from an ast. */
8355
- declare const fromAst$1: (ast: Filter$1) => Any$5;
8563
+ declare const fromAst$1: (ast: Filter$1) => Any$3;
8356
8564
  /**
8357
8565
  * Filter that matches all objects.
8358
8566
  */
@@ -8361,7 +8569,7 @@ declare const everything: () => FilterClass;
8361
8569
  * Filter that matches no objects.
8362
8570
  */
8363
8571
  declare const nothing: () => FilterClass;
8364
- declare const id: (...ids: ObjectId[]) => Any$5;
8572
+ declare const id: (...ids: ObjectId[]) => Any$3;
8365
8573
  /**
8366
8574
  * Filter by type.
8367
8575
  */
@@ -8369,15 +8577,15 @@ declare const type$2: <S$1 extends Schema.All>(schema: S$1 | string, props?: Pro
8369
8577
  /**
8370
8578
  * Filter by non-qualified typename.
8371
8579
  */
8372
- declare const typename$1: (typename: string) => Any$5;
8580
+ declare const typename$1: (typename: string) => Any$3;
8373
8581
  /**
8374
8582
  * Filter by fully qualified type DXN.
8375
8583
  */
8376
- declare const typeDXN: (dxn: DXN) => Any$5;
8584
+ declare const typeDXN: (dxn: DXN) => Any$3;
8377
8585
  /**
8378
8586
  * Filter by tag.
8379
8587
  */
8380
- declare const tag: (tag: string) => Any$5;
8588
+ declare const tag: (tag: string) => Any$3;
8381
8589
  /**
8382
8590
  * Filter by properties.
8383
8591
  */
@@ -8388,7 +8596,7 @@ type TextSearchOptions = {
8388
8596
  /**
8389
8597
  * Full-text or vector search.
8390
8598
  */
8391
- declare const text: (text: string, options?: TextSearchOptions) => Any$5;
8599
+ declare const text: (text: string, options?: TextSearchOptions) => Any$3;
8392
8600
  /**
8393
8601
  * Filter by foreign keys.
8394
8602
  */
@@ -8436,94 +8644,17 @@ declare const between: <T$1>(from: T$1, to: T$1) => Filter<unknown>;
8436
8644
  /**
8437
8645
  * Negate the filter.
8438
8646
  */
8439
- declare const not: <F extends Any$5>(filter: F) => Filter<Type$2<F>>;
8647
+ declare const not: <F extends Any$3>(filter: F) => Filter<Type$2<F>>;
8440
8648
  /**
8441
8649
  * Combine filters with a logical AND.
8442
8650
  */
8443
- declare const and: <Filters extends readonly Any$5[]>(...filters: Filters) => Filter<Type$2<Filters[number]>>;
8651
+ declare const and: <Filters extends readonly Any$3[]>(...filters: Filters) => Filter<Type$2<Filters[number]>>;
8444
8652
  /**
8445
8653
  * Combine filters with a logical OR.
8446
8654
  */
8447
- declare const or: <Filters extends readonly Any$5[]>(...filters: Filters) => Filter<Type$2<Filters[number]>>;
8448
- //#endregion
8449
- //#region ../echo/dist/types/src/Relation.d.ts
8450
- declare const Source$1: unique symbol;
8451
- type Source$1 = typeof Source$1;
8452
- declare const Target$2: unique symbol;
8453
- type Target$2 = typeof Target$2;
8454
- //#endregion
8455
- //#region ../echo/dist/types/src/Type.d.ts
8456
- interface ObjJsonProps {
8457
- id: string;
8458
- }
8459
- /**
8460
- * Return type of the `Obj` schema constructor.
8461
- *
8462
- * This typedef avoids `TS4023` error (name from external module cannot be used named).
8463
- * See Effect's note on interface types.
8464
- */
8465
- interface obj<Self extends Schema.Any> extends TypeMeta, AnnotableClass<obj<Self>, OfKind<typeof Kind.Object> & ToMutable<Schema.Type<Self>>, Simplify<ObjJsonProps & ToMutable<Schema.Encoded<Self>>>, Schema.Context<Self>> {}
8466
- interface RelationJsonProps {
8467
- id: string;
8468
- [ATTR_RELATION_SOURCE]: string;
8469
- [ATTR_RELATION_TARGET]: string;
8470
- }
8471
- /**
8472
- * Return type of the `Relation` schema constructor.
8473
- *
8474
- * This typedef avoids `TS4023` error (name from external module cannot be used named).
8475
- * See Effect's note on interface types.
8476
- */
8477
- interface relation<Self extends Schema.Any, SourceSchema extends Schema.Any, TargetSchema extends Schema.Any> extends TypeMeta, AnnotableClass<relation<Self, SourceSchema, TargetSchema>, OfKind<typeof Kind.Relation> & Relation.Endpoints<Schema.Type<SourceSchema>, Schema.Type<TargetSchema>> & ToMutable<Schema.Type<Self>>, Simplify<RelationJsonProps & ToMutable<Schema.Encoded<Self>>>, Schema.Context<Self>> {}
8478
- /**
8479
- * Relation schema.
8480
- */
8481
- declare const Relation: {
8482
- <Source$2 extends Schema.AnyNoContext, Target$3 extends Schema.AnyNoContext>(opts: EchoRelationSchemaOptions<Source$2, Target$3>): <Self extends Schema.Any>(self: Self) => relation<Self, Source$2, Target$3>;
8483
- };
8484
- /**
8485
- * Relation schema type definitions.
8486
- */
8487
- declare namespace Relation {
8488
- /**
8489
- * Type that represents an arbitrary schema type of a relation.
8490
- * NOTE: This is not an instance type.
8491
- */
8492
- type Any = Schema.AnyNoContext;
8493
- /**
8494
- * Get relation source type.
8495
- */
8496
- type Source<A$1> = A$1 extends Relation.Endpoints<infer S, infer _T> ? S : never;
8497
- /**
8498
- * Get relation target type.
8499
- */
8500
- type Target<A$1> = A$1 extends Relation.Endpoints<infer _S, infer T> ? T : never;
8501
- type Endpoints<Source$2, Target$3> = {
8502
- [Source$1]: Source$2;
8503
- [Target$2]: Target$3;
8504
- };
8505
- }
8506
- //#endregion
8507
- //#region ../echo/dist/types/src/Obj.d.ts
8508
- /**
8509
- * Base type for all ECHO objects.
8510
- * @private
8511
- */
8512
- interface BaseObj extends AnyEchoObject, OfKind<typeof Kind.Object> {}
8513
- /**
8514
- * Base type for all Obj objects.
8515
- */
8516
- interface Any$4 extends BaseObj {}
8517
- declare const Any$4: obj<Struct<{}>>;
8518
- //#endregion
8519
- //#region ../echo/dist/types/src/Ref.d.ts
8520
- type Any$3 = Ref<Any$4>;
8521
- /**
8522
- * Extract reference target.
8523
- */
8524
- type Target$1<R$1 extends Any$3> = R$1 extends Ref<infer T> ? T : never;
8655
+ declare const or: <Filters extends readonly Any$3[]>(...filters: Filters) => Filter<Type$2<Filters[number]>>;
8525
8656
  declare namespace Order_d_exports {
8526
- export { Any$2 as Any, Order, natural, property };
8657
+ export { Any$2 as Any, Order, natural, property, rank };
8527
8658
  }
8528
8659
  interface Order<T$1> {
8529
8660
  '~Order': {
@@ -8534,6 +8665,11 @@ interface Order<T$1> {
8534
8665
  type Any$2 = Order<any>;
8535
8666
  declare const natural: Order<any>;
8536
8667
  declare const property: <T$1>(property: keyof T$1 & string, direction: OrderDirection) => Order<T$1>;
8668
+ /**
8669
+ * Order by relevance rank (for FTS/vector search results).
8670
+ * Higher rank = better match. Default direction is 'desc' (best matches first).
8671
+ */
8672
+ declare const rank: <T$1>(direction?: OrderDirection) => Order<T$1>;
8537
8673
  declare namespace Query_d_exports {
8538
8674
  export { Any$1 as Any, Query, Type$1 as Type, all, fromAst, is, select, type$1 as type, without };
8539
8675
  }
@@ -8558,14 +8694,16 @@ interface Query<T$1> {
8558
8694
  * @param key - Property path inside T that is a reference or optional reference.
8559
8695
  * @returns Query for the target of the reference.
8560
8696
  */
8561
- reference<K$1 extends RefPropKey<T$1>>(key: K$1): Query<T$1[K$1] extends Any$3 ? Target$1<T$1[K$1]> : T$1[K$1] extends Any$3 | undefined ? Target$1<Exclude<T$1[K$1], undefined>> : never>;
8697
+ reference<K$1 extends RefPropKey<T$1>>(key: K$1): Query<T$1[K$1] extends Unknown$1 ? Target$1<T$1[K$1]> : T$1[K$1] extends Unknown$1 | undefined ? Target$1<Exclude<T$1[K$1], undefined>> : never>;
8562
8698
  /**
8563
8699
  * Find objects referencing this object.
8564
- * @param target - Schema of the referencing object.
8565
- * @param key - Property path inside the referencing object that is a reference.
8700
+ * @param target - Schema of the referencing object. If not provided, matches any type.
8701
+ * @param key - Property path inside the referencing object that is a reference. If not provided, matches any property.
8566
8702
  * @returns Query for the referencing objects.
8567
8703
  */
8568
8704
  referencedBy<S$1 extends Schema.All>(target: S$1 | string, key: RefPropKey<Schema.Type<S$1>>): Query<Schema.Type<S$1>>;
8705
+ referencedBy<S$1 extends Schema.All>(target: S$1 | string): Query<Schema.Type<S$1>>;
8706
+ referencedBy(): Query<any>;
8569
8707
  /**
8570
8708
  * Find relations where this object is the source.
8571
8709
  * @returns Query for the relation objects.
@@ -8590,6 +8728,16 @@ interface Query<T$1> {
8590
8728
  * @returns Query for the target objects.
8591
8729
  */
8592
8730
  target(): Query<Relation.Target<T$1>>;
8731
+ /**
8732
+ * Get the parent object of the current selection.
8733
+ * @returns Query for the parent objects.
8734
+ */
8735
+ parent(): Query<any>;
8736
+ /**
8737
+ * Get all child objects of the current selection.
8738
+ * @returns Query for the child objects.
8739
+ */
8740
+ children(): Query<any>;
8593
8741
  /**
8594
8742
  * Order the query results.
8595
8743
  * Orders are specified in priority order. The first order will be applied first, etc.
@@ -8597,13 +8745,19 @@ interface Query<T$1> {
8597
8745
  * @returns Query for the ordered results.
8598
8746
  */
8599
8747
  orderBy(...order: NonEmptyArray<Order<T$1>>): Query<T$1>;
8748
+ /**
8749
+ * Limit the number of results.
8750
+ * @param limit - Maximum number of results to return.
8751
+ * @returns Query for the limited results.
8752
+ */
8753
+ limit(limit: number): Query<T$1>;
8600
8754
  /**
8601
8755
  * Add options to a query.
8602
8756
  */
8603
8757
  options(options: QueryOptions): Query<T$1>;
8604
8758
  }
8605
8759
  type Any$1 = Query<any>;
8606
- type Type$1<Q$1 extends Any$1> = Q$1 extends Query<infer T> ? T : never;
8760
+ type Type$1<Q extends Any$1> = Q extends Query<infer T> ? T : never;
8607
8761
  declare const is: (value: unknown) => value is Any$1;
8608
8762
  /** Construct a query from an ast. */
8609
8763
  declare const fromAst: (ast: Query$1) => Any$1;
@@ -8612,7 +8766,7 @@ declare const fromAst: (ast: Query$1) => Any$1;
8612
8766
  * @param filter - Filter to select the objects.
8613
8767
  * @returns Query for the selected objects.
8614
8768
  */
8615
- declare const select: <F extends Any$5>(filter: F) => Query<Type$2<F>>;
8769
+ declare const select: <F extends Any$3>(filter: F) => Query<Type$2<F>>;
8616
8770
  /**
8617
8771
  * Query for objects of a given schema.
8618
8772
  * @param schema - Schema of the objects.