joist-orm 1.37.9 → 1.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/src/EntityManager.d.ts +15 -15
- package/build/src/EntityMetadata.d.ts +12 -12
- package/build/src/QueryBuilder.d.ts +13 -13
- package/build/src/changes.d.ts +1 -1
- package/build/src/config.d.ts +2 -2
- package/build/src/createOrUpdatePartial.d.ts +2 -2
- package/build/src/index.d.ts +2 -2
- package/build/src/k.d.ts +1 -1
- package/build/src/keys.d.ts +1 -1
- package/build/src/loadHints.d.ts +13 -13
- package/build/src/loadLens.d.ts +6 -6
- package/build/src/newTestInstance.d.ts +5 -5
- package/build/src/normalizeHints.d.ts +3 -3
- package/build/src/reactiveHints.d.ts +6 -6
- package/build/src/relations/CustomCollection.d.ts +1 -1
- package/build/src/relations/CustomReference.d.ts +1 -1
- package/build/src/relations/ManyToManyCollection.d.ts +1 -1
- package/build/src/relations/hasManyDerived.d.ts +1 -1
- package/build/src/rules.d.ts +7 -7
- package/build/src/utils.d.ts +2 -2
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -13,37 +13,37 @@ export interface EntityConstructor<T> {
|
|
|
13
13
|
defaultValues: object;
|
|
14
14
|
}
|
|
15
15
|
/** Return the `FooOpts` type a given `Foo` entity constructor. */
|
|
16
|
-
export
|
|
16
|
+
export type OptsOf<T> = T extends {
|
|
17
17
|
__orm: {
|
|
18
18
|
optsType: infer O;
|
|
19
19
|
};
|
|
20
20
|
} ? O : never;
|
|
21
|
-
export
|
|
21
|
+
export type FieldsOf<T> = T extends {
|
|
22
22
|
__orm: {
|
|
23
23
|
fieldsType: infer O;
|
|
24
24
|
};
|
|
25
25
|
} ? O : never;
|
|
26
|
-
export
|
|
26
|
+
export type OptIdsOf<T> = T extends {
|
|
27
27
|
__orm: {
|
|
28
28
|
optIdsType: infer O;
|
|
29
29
|
};
|
|
30
30
|
} ? O : never;
|
|
31
31
|
/** Return the `Foo` type for a given `Foo` entity constructor. */
|
|
32
|
-
export
|
|
32
|
+
export type EntityOf<C> = C extends new (em: EntityManager, opts: any) => infer T ? T : never;
|
|
33
33
|
/** Pulls the entity query type out of a given entity type T. */
|
|
34
|
-
export
|
|
34
|
+
export type FilterOf<T> = T extends {
|
|
35
35
|
__orm: {
|
|
36
36
|
filterType: infer Q;
|
|
37
37
|
};
|
|
38
38
|
} ? Q : never;
|
|
39
39
|
/** Pulls the entity GraphQL query type out of a given entity type T. */
|
|
40
|
-
export
|
|
40
|
+
export type GraphQLFilterOf<T> = T extends {
|
|
41
41
|
__orm: {
|
|
42
42
|
gqlFilterType: infer Q;
|
|
43
43
|
};
|
|
44
44
|
} ? Q : never;
|
|
45
45
|
/** Pulls the entity order type out of a given entity type T. */
|
|
46
|
-
export
|
|
46
|
+
export type OrderOf<T> = T extends {
|
|
47
47
|
__orm: {
|
|
48
48
|
orderType: infer Q;
|
|
49
49
|
};
|
|
@@ -53,19 +53,19 @@ export declare type OrderOf<T> = T extends {
|
|
|
53
53
|
*
|
|
54
54
|
* This is because `FactoryOpts` is a set of defaults, but the user can customize it if they want.
|
|
55
55
|
*/
|
|
56
|
-
export
|
|
56
|
+
export type ActualFactoryOpts<T> = T extends {
|
|
57
57
|
__orm: {
|
|
58
58
|
factoryOptsType: infer Q;
|
|
59
59
|
};
|
|
60
60
|
} ? Q : never;
|
|
61
61
|
/** Pulls the entity's id type out of a given entity type T. */
|
|
62
|
-
export
|
|
62
|
+
export type IdOf<T> = T extends {
|
|
63
63
|
id: infer I | undefined;
|
|
64
64
|
} ? I : never;
|
|
65
65
|
export declare function isId(value: any): value is IdOf<unknown>;
|
|
66
66
|
export declare let currentlyInstantiatingEntity: Entity | undefined;
|
|
67
|
-
export
|
|
68
|
-
|
|
67
|
+
export type EntityManagerHook = "beforeTransaction" | "afterTransaction";
|
|
68
|
+
type HookFn = (em: EntityManager, knex: Knex.Transaction) => MaybePromise<any>;
|
|
69
69
|
/**
|
|
70
70
|
* A marker to prevent setter calls during `flush` calls.
|
|
71
71
|
*
|
|
@@ -83,8 +83,8 @@ declare type HookFn = (em: EntityManager, knex: Knex.Transaction) => MaybePromis
|
|
|
83
83
|
export declare const currentFlushSecret: AsyncLocalStorage<{
|
|
84
84
|
flushSecret: number;
|
|
85
85
|
}>;
|
|
86
|
-
export
|
|
87
|
-
export
|
|
86
|
+
export type LoaderCache = Record<string, DataLoader<any, any>>;
|
|
87
|
+
export type TimestampFields = {
|
|
88
88
|
updatedAt: string | undefined;
|
|
89
89
|
createdAt: string | undefined;
|
|
90
90
|
};
|
|
@@ -364,8 +364,8 @@ export declare class TooManyError extends Error {
|
|
|
364
364
|
}
|
|
365
365
|
export declare function beforeTransaction(em: EntityManager, knex: Knex.Transaction): Promise<unknown>;
|
|
366
366
|
export declare function afterTransaction(em: EntityManager, knex: Knex.Transaction): Promise<unknown>;
|
|
367
|
-
|
|
368
|
-
export
|
|
367
|
+
type Narrowable = string | number | boolean | symbol | object | undefined | {} | [];
|
|
368
|
+
export type Const<N> = N | {
|
|
369
369
|
[K in keyof N]: N[K] extends Narrowable ? N[K] | Const<N[K]> : never;
|
|
370
370
|
};
|
|
371
371
|
export declare function isDefined<T extends any>(param: T | undefined | null): param is T;
|
|
@@ -18,9 +18,9 @@ export interface EntityMetadata<T extends Entity> {
|
|
|
18
18
|
timestampFields: TimestampFields;
|
|
19
19
|
factory: (em: EntityManager<any>, opts?: any) => DeepNew<T>;
|
|
20
20
|
}
|
|
21
|
-
export
|
|
22
|
-
export
|
|
23
|
-
export
|
|
21
|
+
export type Field = PrimaryKeyField | PrimitiveField | EnumField | OneToManyField | LargeOneToManyField | ManyToOneField | ManyToManyField | OneToOneField | PolymorphicField;
|
|
22
|
+
export type SerdeField = PrimaryKeyField | PrimitiveField | EnumField | ManyToOneField | PolymorphicField;
|
|
23
|
+
export type PrimaryKeyField = {
|
|
24
24
|
kind: "primaryKey";
|
|
25
25
|
fieldName: string;
|
|
26
26
|
fieldIdName: undefined;
|
|
@@ -28,7 +28,7 @@ export declare type PrimaryKeyField = {
|
|
|
28
28
|
serde: FieldSerde;
|
|
29
29
|
immutable: true;
|
|
30
30
|
};
|
|
31
|
-
export
|
|
31
|
+
export type PrimitiveField = {
|
|
32
32
|
kind: "primitive";
|
|
33
33
|
fieldName: string;
|
|
34
34
|
fieldIdName: undefined;
|
|
@@ -39,7 +39,7 @@ export declare type PrimitiveField = {
|
|
|
39
39
|
serde: FieldSerde;
|
|
40
40
|
immutable: boolean;
|
|
41
41
|
};
|
|
42
|
-
export
|
|
42
|
+
export type EnumField = {
|
|
43
43
|
kind: "enum";
|
|
44
44
|
fieldName: string;
|
|
45
45
|
fieldIdName: undefined;
|
|
@@ -50,7 +50,7 @@ export declare type EnumField = {
|
|
|
50
50
|
serde: FieldSerde;
|
|
51
51
|
immutable: boolean;
|
|
52
52
|
};
|
|
53
|
-
export
|
|
53
|
+
export type OneToManyField = {
|
|
54
54
|
kind: "o2m";
|
|
55
55
|
fieldName: string;
|
|
56
56
|
fieldIdName: string;
|
|
@@ -60,7 +60,7 @@ export declare type OneToManyField = {
|
|
|
60
60
|
serde: undefined;
|
|
61
61
|
immutable: false;
|
|
62
62
|
};
|
|
63
|
-
export
|
|
63
|
+
export type LargeOneToManyField = {
|
|
64
64
|
kind: "lo2m";
|
|
65
65
|
fieldName: string;
|
|
66
66
|
fieldIdName: string;
|
|
@@ -70,7 +70,7 @@ export declare type LargeOneToManyField = {
|
|
|
70
70
|
serde: undefined;
|
|
71
71
|
immutable: false;
|
|
72
72
|
};
|
|
73
|
-
export
|
|
73
|
+
export type ManyToOneField = {
|
|
74
74
|
kind: "m2o";
|
|
75
75
|
fieldName: string;
|
|
76
76
|
fieldIdName: string;
|
|
@@ -80,7 +80,7 @@ export declare type ManyToOneField = {
|
|
|
80
80
|
serde: FieldSerde;
|
|
81
81
|
immutable: boolean;
|
|
82
82
|
};
|
|
83
|
-
export
|
|
83
|
+
export type ManyToManyField = {
|
|
84
84
|
kind: "m2m";
|
|
85
85
|
fieldName: string;
|
|
86
86
|
fieldIdName: string;
|
|
@@ -90,7 +90,7 @@ export declare type ManyToManyField = {
|
|
|
90
90
|
serde: undefined;
|
|
91
91
|
immutable: false;
|
|
92
92
|
};
|
|
93
|
-
export
|
|
93
|
+
export type OneToOneField = {
|
|
94
94
|
kind: "o2o";
|
|
95
95
|
fieldName: string;
|
|
96
96
|
fieldIdName: string;
|
|
@@ -100,7 +100,7 @@ export declare type OneToOneField = {
|
|
|
100
100
|
serde: undefined;
|
|
101
101
|
immutable: false;
|
|
102
102
|
};
|
|
103
|
-
export
|
|
103
|
+
export type PolymorphicField = {
|
|
104
104
|
kind: "poly";
|
|
105
105
|
fieldName: string;
|
|
106
106
|
fieldIdName: string;
|
|
@@ -109,7 +109,7 @@ export declare type PolymorphicField = {
|
|
|
109
109
|
serde: PolymorphicKeySerde;
|
|
110
110
|
immutable: boolean;
|
|
111
111
|
};
|
|
112
|
-
export
|
|
112
|
+
export type PolymorphicFieldComponent = {
|
|
113
113
|
otherMetadata: () => EntityMetadata<any>;
|
|
114
114
|
otherFieldName: string;
|
|
115
115
|
columnName: string;
|
|
@@ -2,9 +2,9 @@ import { Knex } from "knex";
|
|
|
2
2
|
import { Entity } from "./Entity";
|
|
3
3
|
import { EntityConstructor, FilterOf, OrderOf } from "./EntityManager";
|
|
4
4
|
import { EntityMetadata } from "./EntityMetadata";
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
5
|
+
export type OrderBy = "ASC" | "DESC";
|
|
6
|
+
export type BooleanFilter<N> = true | false | N;
|
|
7
|
+
export type ValueFilter<V, N> = V | V[] | N | {
|
|
8
8
|
eq: V | N;
|
|
9
9
|
} | {
|
|
10
10
|
in: V[];
|
|
@@ -31,7 +31,7 @@ export declare type ValueFilter<V, N> = V | V[] | N | {
|
|
|
31
31
|
*
|
|
32
32
|
* The ValueFilter is a
|
|
33
33
|
*/
|
|
34
|
-
export
|
|
34
|
+
export type ParsedValueFilter<V> = {
|
|
35
35
|
kind: "eq";
|
|
36
36
|
value: V | null;
|
|
37
37
|
} | {
|
|
@@ -65,10 +65,10 @@ export declare type ParsedValueFilter<V> = {
|
|
|
65
65
|
value: [V, V];
|
|
66
66
|
};
|
|
67
67
|
export declare function parseValueFilter<V>(filter: ValueFilter<V, any>): ParsedValueFilter<V>;
|
|
68
|
-
export
|
|
68
|
+
export type EntityFilter<T, I, F, N> = T | T[] | I | I[] | F | N | {
|
|
69
69
|
ne: T | I | N;
|
|
70
70
|
};
|
|
71
|
-
export
|
|
71
|
+
export type ParsedEntityFilter = {
|
|
72
72
|
kind: "eq";
|
|
73
73
|
id: number | null;
|
|
74
74
|
} | {
|
|
@@ -82,10 +82,10 @@ export declare type ParsedEntityFilter = {
|
|
|
82
82
|
subFilter: any;
|
|
83
83
|
};
|
|
84
84
|
export declare function parseEntityFilter(meta: EntityMetadata<any>, filter: any): ParsedEntityFilter;
|
|
85
|
-
export
|
|
86
|
-
export
|
|
85
|
+
export type BooleanGraphQLFilter = true | false | null;
|
|
86
|
+
export type Primitive = string | boolean | Date | number;
|
|
87
87
|
/** This essentially matches the ValueFilter but with looser types to placate GraphQL. */
|
|
88
|
-
export
|
|
88
|
+
export type ValueGraphQLFilter<V> = {
|
|
89
89
|
eq?: V | null;
|
|
90
90
|
in?: V[] | null;
|
|
91
91
|
gt?: V | null;
|
|
@@ -100,14 +100,14 @@ export declare type ValueGraphQLFilter<V> = {
|
|
|
100
100
|
op: Operator;
|
|
101
101
|
value: Primitive;
|
|
102
102
|
} | V | V[] | null;
|
|
103
|
-
export
|
|
103
|
+
export type EnumGraphQLFilter<V> = V[] | null | undefined;
|
|
104
104
|
/** A GraphQL version of EntityFilter. */
|
|
105
|
-
export
|
|
105
|
+
export type EntityGraphQLFilter<T, I, F, N> = T | I | I[] | F | {
|
|
106
106
|
ne: T | I | N;
|
|
107
107
|
} | null | undefined;
|
|
108
108
|
declare const operators: readonly ["eq", "gt", "gte", "ne", "lt", "lte", "like", "ilike", "in", "between"];
|
|
109
|
-
export
|
|
110
|
-
export
|
|
109
|
+
export type Operator = typeof operators[number];
|
|
110
|
+
export type FilterAndSettings<T> = {
|
|
111
111
|
where: FilterOf<T>;
|
|
112
112
|
orderBy?: OrderOf<T>;
|
|
113
113
|
limit?: number;
|
package/build/src/changes.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export interface ManyToOneFieldStatus<T extends Entity> extends FieldStatus<IdOf
|
|
|
22
22
|
* - Exclude collections
|
|
23
23
|
* - Convert entity types to id types to match what is stored in originalData
|
|
24
24
|
*/
|
|
25
|
-
export
|
|
25
|
+
export type Changes<T extends Entity> = {
|
|
26
26
|
fields: (keyof FieldsOf<T>)[];
|
|
27
27
|
} & {
|
|
28
28
|
[P in keyof FieldsOf<T>]: FieldsOf<T>[P] extends infer U | undefined ? U extends Entity ? ManyToOneFieldStatus<U> : FieldStatus<U> : never;
|
package/build/src/config.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ import { Entity } from "./Entity";
|
|
|
2
2
|
import { Loaded, LoadHint, Reacted, ReactiveHint, RelationsIn } from "./index";
|
|
3
3
|
import { ValidationRule, ValidationRuleInternal } from "./rules";
|
|
4
4
|
import { MaybePromise } from "./utils";
|
|
5
|
-
export
|
|
6
|
-
|
|
5
|
+
export type EntityHook = "beforeFlush" | "beforeCreate" | "beforeUpdate" | "beforeDelete" | "afterValidation" | "afterCommit";
|
|
6
|
+
type HookFn<T extends Entity, C> = (entity: T, ctx: C) => MaybePromise<void>;
|
|
7
7
|
/** The public API to configure an Entity's hooks & validation rules. */
|
|
8
8
|
export declare class ConfigApi<T extends Entity, C> {
|
|
9
9
|
__data: ConfigData<T, C>;
|
|
@@ -10,10 +10,10 @@ import { NullOrDefinedOr } from "./utils";
|
|
|
10
10
|
* any combination of 1) ids to existing entities, 2) entities directly, 3) null/undefined
|
|
11
11
|
* with the appropriate partial-update behavior, or 4) partials.
|
|
12
12
|
*/
|
|
13
|
-
export
|
|
13
|
+
export type DeepPartialOrNull<T extends Entity> = {
|
|
14
14
|
id?: IdOf<T> | null;
|
|
15
15
|
} & AllowRelationsToBeIdsOrEntitiesOrPartials<PartialOrNull<OptsOf<T> & OptIdsOf<T>>> & OptIdsOf<T>;
|
|
16
|
-
|
|
16
|
+
type AllowRelationsToBeIdsOrEntitiesOrPartials<T> = {
|
|
17
17
|
[P in keyof T]: T[P] extends NullOrDefinedOr<infer U> ? U extends Array<infer V> ? V extends Entity ? Array<V | (DeepPartialOrNull<V> & {
|
|
18
18
|
delete?: boolean | null;
|
|
19
19
|
remove?: boolean | null;
|
package/build/src/index.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export { asNew, fail } from "./utils";
|
|
|
26
26
|
interface Flavoring<FlavorT> {
|
|
27
27
|
_type?: FlavorT;
|
|
28
28
|
}
|
|
29
|
-
export
|
|
29
|
+
export type Flavor<T, FlavorT> = T & Flavoring<FlavorT>;
|
|
30
30
|
export declare function setField<T extends Entity>(entity: T, fieldName: keyof T & string, newValue: any): boolean;
|
|
31
31
|
/**
|
|
32
32
|
* Sets each value in `values` on the current entity.
|
|
@@ -46,7 +46,7 @@ export declare function ensureNotDeleted(entity: Entity, opts?: {
|
|
|
46
46
|
ignore?: EntityOrmField["deleted"];
|
|
47
47
|
}): void;
|
|
48
48
|
/** Adds `null` to every key in `T` to accept partial-update-style input. */
|
|
49
|
-
export
|
|
49
|
+
export type PartialOrNull<T> = {
|
|
50
50
|
[P in keyof T]?: T[P] | null;
|
|
51
51
|
};
|
|
52
52
|
export declare function getRequiredKeys<T extends Entity>(entity: T): string[];
|
package/build/src/k.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
type ToKeys<S extends string> = S extends `${infer H} ${infer T}` ? H | `${ToKeys<T>}` : S;
|
|
2
2
|
declare function k<S extends string>(strings: S): ToKeys<S>[];
|
|
3
3
|
declare function foo(k: "foo" | "bar"): void;
|
|
4
4
|
declare const keys: ("foo" | "bar" | "zaz")[];
|
package/build/src/keys.d.ts
CHANGED
package/build/src/loadHints.d.ts
CHANGED
|
@@ -5,13 +5,13 @@ import { AsyncProperty, Collection, LoadedCollection, LoadedProperty, LoadedRefe
|
|
|
5
5
|
import { LoadedOneToOneReference } from "./relations/OneToOneReference";
|
|
6
6
|
import { NullOrDefinedOr } from "./utils";
|
|
7
7
|
declare const deepLoad: unique symbol;
|
|
8
|
-
|
|
8
|
+
type DeepLoadHint<T extends Entity> = NestedLoadHint<T> & {
|
|
9
9
|
[deepLoad]: true;
|
|
10
10
|
};
|
|
11
11
|
/** Marks a given `T[K]` field as the loaded/synchronous version of the collection. */
|
|
12
|
-
export
|
|
12
|
+
export type MarkLoaded<T extends Entity, P, H = {}> = P extends OneToOneReference<T, infer U> ? LoadedOneToOneReference<T, Loaded<U, H>> : P extends Reference<T, infer U, infer N> ? LoadedReference<T, Loaded<U, H>, N> : P extends Collection<T, infer U> ? LoadedCollection<T, Loaded<U, H>> : P extends AsyncProperty<T, infer V> ? LoadedProperty<T, V> : unknown;
|
|
13
13
|
/** A version of MarkLoaded the uses `DeepLoadHint` for tests. */
|
|
14
|
-
|
|
14
|
+
type MarkDeepLoaded<T extends Entity, P> = P extends OneToOneReference<T, infer U> ? LoadedOneToOneReference<T, Loaded<U, DeepLoadHint<U>>> : P extends Reference<T, infer U, infer N> ? LoadedReference<T, Loaded<U, DeepLoadHint<U>>, N> : P extends Collection<T, infer U> ? LoadedCollection<T, Loaded<U, DeepLoadHint<U>>> : P extends AsyncProperty<T, infer V> ? LoadedProperty<T, V> : unknown;
|
|
15
15
|
/**
|
|
16
16
|
* A helper type for `New` that marks every `Reference` and `LoadedCollection` in `T` as loaded.
|
|
17
17
|
*
|
|
@@ -25,7 +25,7 @@ declare type MarkDeepLoaded<T extends Entity, P> = P extends OneToOneReference<T
|
|
|
25
25
|
* Note that this is also purposefully broken out of `New` because of some weirdness
|
|
26
26
|
* around type narrowing that wasn't working when inlined into `New`.
|
|
27
27
|
*/
|
|
28
|
-
|
|
28
|
+
type MaybeUseOptsType<T extends Entity, O, K extends keyof T & keyof O> = O[K] extends NullOrDefinedOr<infer OK> ? OK extends Entity ? T[K] extends OneToOneReference<T, infer U> ? LoadedOneToOneReference<T, U> : T[K] extends Reference<T, infer U, infer N> ? LoadedReference<T, OK, N> : never : OK extends Array<infer OU> ? OU extends Entity ? T[K] extends Collection<T, infer U> ? LoadedCollection<T, OU> : never : T[K] : T[K] : never;
|
|
29
29
|
/**
|
|
30
30
|
* Marks all references/collections of `T` as loaded, i.e. for newly instantiated entities where
|
|
31
31
|
* we know there are no already-existing rows with fk's to this new entity in the database.
|
|
@@ -33,14 +33,14 @@ declare type MaybeUseOptsType<T extends Entity, O, K extends keyof T & keyof O>
|
|
|
33
33
|
* `O` is the generic from the call site so that if the caller passes `{ author: SomeLoadedAuthor }`,
|
|
34
34
|
* we'll prefer that type, as it might have more nested load hints that we can't otherwise assume.
|
|
35
35
|
*/
|
|
36
|
-
export
|
|
36
|
+
export type New<T extends Entity, O extends OptsOf<T> = OptsOf<T>> = T & {
|
|
37
37
|
[K in keyof T]: K extends keyof O ? MaybeUseOptsType<T, O, K> : MarkLoaded<T, T[K]>;
|
|
38
38
|
};
|
|
39
39
|
/**
|
|
40
40
|
* Marks all references/collections of `T` as deeply loaded, which is only useful for
|
|
41
41
|
* tests where we can have "the whole object graph" in-memory.
|
|
42
42
|
*/
|
|
43
|
-
export
|
|
43
|
+
export type DeepNew<T extends Entity> = Loaded<T, DeepLoadHint<T>>;
|
|
44
44
|
/** Detects whether an entity is newly created, and so we can treat all the relations as loaded. */
|
|
45
45
|
export declare function isNew<T extends Entity>(e: T): e is New<T>;
|
|
46
46
|
/**
|
|
@@ -50,7 +50,7 @@ export declare function isNew<T extends Entity>(e: T): e is New<T>;
|
|
|
50
50
|
* fields that have be added to the entity classes, i.e. `Author.numberOfBooks2` async
|
|
51
51
|
* properties.
|
|
52
52
|
*/
|
|
53
|
-
export
|
|
53
|
+
export type Loadable<T extends Entity> = {
|
|
54
54
|
-readonly [K in keyof T as LoadableValue<T[K]> extends never ? never : K]: LoadableValue<T[K]>;
|
|
55
55
|
};
|
|
56
56
|
/**
|
|
@@ -61,7 +61,7 @@ export declare type Loadable<T extends Entity> = {
|
|
|
61
61
|
* Note that we usually return entities, but for AsyncProperties it could be
|
|
62
62
|
* a calculated primitive value like number or string.
|
|
63
63
|
*/
|
|
64
|
-
export
|
|
64
|
+
export type LoadableValue<V> = V extends Reference<any, infer U, any> ? U : V extends Collection<any, infer U> ? U : V extends AsyncProperty<any, infer P> ? P : never;
|
|
65
65
|
/**
|
|
66
66
|
* A load hint of a single key, multiple keys, or nested keys and sub-hints.
|
|
67
67
|
*
|
|
@@ -69,12 +69,12 @@ export declare type LoadableValue<V> = V extends Reference<any, infer U, any> ?
|
|
|
69
69
|
* collections, and async properties to preload (like `Book.author` or `Author.books`), and
|
|
70
70
|
* do not include any primitive fields (like `Author.firstName`).
|
|
71
71
|
*/
|
|
72
|
-
export
|
|
73
|
-
export
|
|
72
|
+
export type LoadHint<T extends Entity> = (keyof Loadable<T> & string) | ReadonlyArray<keyof Loadable<T> & string> | NestedLoadHint<T>;
|
|
73
|
+
export type NestedLoadHint<T extends Entity> = {
|
|
74
74
|
[K in keyof Loadable<T>]?: Loadable<T>[K] extends infer U extends Entity ? LoadHint<U> : {};
|
|
75
75
|
};
|
|
76
76
|
/** Given an entity `T` that is being populated with hints `H`, marks the `H` attributes as populated. */
|
|
77
|
-
export
|
|
77
|
+
export type Loaded<T extends Entity, H> = T & {
|
|
78
78
|
[K in keyof T & keyof NormalizeHint<T, H>]: H extends DeepLoadHint<T> ? MarkDeepLoaded<T, T[K]> : MarkLoaded<T, T[K], NormalizeHint<T, H>[K]>;
|
|
79
79
|
};
|
|
80
80
|
/** Recursively checks if the relations from a load hint are loaded on an entity. */
|
|
@@ -82,8 +82,8 @@ export declare function isLoaded<T extends Entity, H extends LoadHint<T>>(entity
|
|
|
82
82
|
export declare function ensureLoaded<T extends Entity, H extends LoadHint<T>, R>(entity: T, hint: H): Promise<Loaded<T, H>>;
|
|
83
83
|
export declare function ensureLoadedThen<T extends Entity, H extends LoadHint<T>, R>(entity: T, hint: H, fn: (loaded: Loaded<T, H>) => R): R | Promise<R>;
|
|
84
84
|
/** From any `Relations` field in `T`, i.e. for loader hints. */
|
|
85
|
-
export
|
|
86
|
-
|
|
85
|
+
export type RelationsIn<T extends Entity> = SubType<T, Relation<any, any>>;
|
|
86
|
+
type SubType<T, C> = Pick<T, {
|
|
87
87
|
[K in keyof T]: T[K] extends C ? K : never;
|
|
88
88
|
}[keyof T]>;
|
|
89
89
|
export {};
|
package/build/src/loadLens.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/** Generically matches on a Reference/Collection's load method. */
|
|
2
|
-
|
|
2
|
+
type LoadLike<U> = {
|
|
3
3
|
load(): Promise<U>;
|
|
4
4
|
};
|
|
5
5
|
/** Generically matches a property or zero-arg method that returns a promise. */
|
|
6
|
-
|
|
6
|
+
type PromiseFnLike<U> = () => PromiseLike<U>;
|
|
7
7
|
/** Given a parent type P, and a new type V, returns V[] if P is already an array, i.e. we're in flatMap mode. */
|
|
8
|
-
|
|
8
|
+
type MaybeArray<P, V> = P extends ReadonlyArray<any> ? [V] extends [ReadonlyArray<infer U>] ? DropUndefined<U>[] : DropUndefined<V>[] : V;
|
|
9
9
|
/** Given a type T that we come across in the path, de-array it to continue our flatMap-ish semantics. */
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
type MaybeDropArray<T> = T extends ReadonlyArray<infer U> ? U : T;
|
|
11
|
+
type DropUndefined<T> = Exclude<T, undefined>;
|
|
12
12
|
/**
|
|
13
13
|
* A type for declaratively walking the object graph.
|
|
14
14
|
*
|
|
@@ -18,7 +18,7 @@ declare type DropUndefined<T> = Exclude<T, undefined>;
|
|
|
18
18
|
* `R` is either a `T` or `T[]` or `T | undefined` and just captures whether we've hit a
|
|
19
19
|
* list at any point in the lens navigation path.
|
|
20
20
|
*/
|
|
21
|
-
export
|
|
21
|
+
export type Lens<T, R = T> = {
|
|
22
22
|
[P in keyof T]: T[P] extends LoadLike<infer U> ? Lens<MaybeDropArray<DropUndefined<U>>, MaybeArray<R, U>> : T[P] extends PromiseFnLike<infer U> ? Lens<MaybeDropArray<DropUndefined<U>>, MaybeArray<R, U>> : Lens<MaybeDropArray<DropUndefined<T[P]>>, MaybeArray<R, T[P]>>;
|
|
23
23
|
};
|
|
24
24
|
/**
|
|
@@ -12,7 +12,7 @@ import { DeepNew } from "./index";
|
|
|
12
12
|
*
|
|
13
13
|
* 2. Works specifically against the constructor/entity opts fields.
|
|
14
14
|
*/
|
|
15
|
-
export
|
|
15
|
+
export type FactoryOpts<T extends Entity> = DeepPartialOpts<T> & {
|
|
16
16
|
use?: Entity | Entity[];
|
|
17
17
|
};
|
|
18
18
|
export declare const jan1: Date;
|
|
@@ -93,11 +93,11 @@ export declare function maybeNewPoly<T extends Entity, NewT extends T = T>(ifNew
|
|
|
93
93
|
* Despite the name, these are 1-based, i.e. the first `Author` is `a1`.
|
|
94
94
|
*/
|
|
95
95
|
export declare function getTestIndex<T extends Entity>(em: EntityManager, type: EntityConstructor<T>): number;
|
|
96
|
-
|
|
97
|
-
|
|
96
|
+
type DefinedOr<T> = T | undefined | null;
|
|
97
|
+
type DeepPartialOpts<T extends Entity> = AllowRelationsOrPartials<OptsOf<T>>;
|
|
98
98
|
/** What a factory can accept for a given entity. */
|
|
99
|
-
export
|
|
100
|
-
|
|
99
|
+
export type FactoryEntityOpt<T extends Entity> = T | IdOf<T> | ActualFactoryOpts<T>;
|
|
100
|
+
type AllowRelationsOrPartials<T> = {
|
|
101
101
|
[P in keyof T]?: T[P] extends DefinedOr<infer U> ? U extends Array<infer V> ? V extends Entity ? Array<FactoryEntityOpt<V>> : T[P] : U extends Entity ? FactoryEntityOpt<U> : T[P] : T[P];
|
|
102
102
|
};
|
|
103
103
|
export {};
|
|
@@ -2,12 +2,12 @@ import { Entity } from "./Entity";
|
|
|
2
2
|
import { LoadHint } from "./loadHints";
|
|
3
3
|
import { ReactiveHint } from "./reactiveHints";
|
|
4
4
|
/** Normalizes a `key | key[] | { key: nested }` hint into `{ key: nested }`. */
|
|
5
|
-
export
|
|
5
|
+
export type NormalizeHint<T extends Entity, H> = H extends string ? Record<DropSuffix<H>, {}> : H extends ReadonlyArray<any> ? Record<DropSuffix<H[number]>, {}> : {
|
|
6
6
|
[K in keyof H as DropSuffix<K>]: H[K];
|
|
7
7
|
};
|
|
8
8
|
/** The separator between field names and the modified; we allow `_` for keys in hashes. */
|
|
9
|
-
export
|
|
10
|
-
export
|
|
9
|
+
export type SuffixSeperator = ":" | "_";
|
|
10
|
+
export type DropSuffix<K> = K extends `${infer key}${SuffixSeperator}ro` ? key : K;
|
|
11
11
|
export declare const suffixRe: RegExp;
|
|
12
12
|
/** Normalizes a `key | key[] | { key: nested }` hint into `{ key: nested }`. */
|
|
13
13
|
export declare function normalizeHint<T extends Entity>(hint: LoadHint<T> | ReactiveHint<T>): object;
|
|
@@ -6,12 +6,12 @@ import { NormalizeHint, SuffixSeperator } from "./normalizeHints";
|
|
|
6
6
|
import { AsyncProperty, Collection, LoadedCollection, LoadedProperty, LoadedReference, OneToOneReference, Reference } from "./relations";
|
|
7
7
|
import { LoadedOneToOneReference } from "./relations/OneToOneReference";
|
|
8
8
|
/** The keys in `T` that rules & hooks can react to. */
|
|
9
|
-
export
|
|
9
|
+
export type Reactable<T extends Entity> = FieldsOf<T> & Loadable<T> & SuffixedFieldsOf<T> & SuffixedLoadable<T>;
|
|
10
10
|
/** The fields of `T` suffixed with `:ro` or `_ro`. */
|
|
11
|
-
|
|
11
|
+
type SuffixedFieldsOf<T extends Entity> = {
|
|
12
12
|
[K in keyof FieldsOf<T> & string as `${K}${SuffixSeperator}ro`]: FieldsOf<T>[K];
|
|
13
13
|
};
|
|
14
|
-
|
|
14
|
+
type SuffixedLoadable<T extends Entity> = {
|
|
15
15
|
[K in keyof Loadable<T> & string as `${K}${SuffixSeperator}ro`]: Loadable<T>[K];
|
|
16
16
|
};
|
|
17
17
|
/**
|
|
@@ -21,12 +21,12 @@ declare type SuffixedLoadable<T extends Entity> = {
|
|
|
21
21
|
* fields to react against, while load hints contain only relations, collections, and async
|
|
22
22
|
* properties to preload.
|
|
23
23
|
*/
|
|
24
|
-
export
|
|
25
|
-
export
|
|
24
|
+
export type ReactiveHint<T extends Entity> = (keyof Reactable<T> & string) | ReadonlyArray<keyof Reactable<T> & string> | NestedReactiveHint<T>;
|
|
25
|
+
export type NestedReactiveHint<T extends Entity> = {
|
|
26
26
|
[K in keyof Reactable<T>]?: Reactable<T>[K] extends infer U extends Entity ? ReactiveHint<U> : {};
|
|
27
27
|
};
|
|
28
28
|
/** Given an entity `T` that is being reacted with hint `H`, mark only the `H` attributes visible & populated. */
|
|
29
|
-
export
|
|
29
|
+
export type Reacted<T extends Entity, H> = Entity & {
|
|
30
30
|
[K in keyof NormalizeHint<T, H> & keyof T]: T[K] extends OneToOneReference<any, infer U> ? LoadedOneToOneReference<T, Entity & Reacted<U, NormalizeHint<T, H>[K]>> : T[K] extends Reference<any, infer U, infer N> ? LoadedReference<T, Entity & Reacted<U, NormalizeHint<T, H>[K]>, N> : T[K] extends Collection<any, infer U> ? LoadedCollection<T, Entity & Reacted<U, NormalizeHint<T, H>[K]>> : T[K] extends AsyncProperty<any, infer V> ? LoadedProperty<any, V> : T[K];
|
|
31
31
|
} & {
|
|
32
32
|
entity: Loaded<T, H>;
|
|
@@ -3,7 +3,7 @@ import { IdOf } from "../EntityManager";
|
|
|
3
3
|
import { Collection } from "../index";
|
|
4
4
|
import { AbstractRelationImpl } from "./AbstractRelationImpl";
|
|
5
5
|
import { RelationT, RelationU } from "./Relation";
|
|
6
|
-
export
|
|
6
|
+
export type CustomCollectionOpts<T extends Entity, U extends Entity> = {
|
|
7
7
|
load: (entity: T, opts: {
|
|
8
8
|
forceReload?: boolean;
|
|
9
9
|
}) => Promise<any>;
|
|
@@ -4,7 +4,7 @@ import { Reference } from "../index";
|
|
|
4
4
|
import { AbstractRelationImpl } from "./AbstractRelationImpl";
|
|
5
5
|
import { ReferenceN } from "./Reference";
|
|
6
6
|
import { RelationT, RelationU } from "./Relation";
|
|
7
|
-
export
|
|
7
|
+
export type CustomReferenceOpts<T extends Entity, U extends Entity, N extends never | undefined> = {
|
|
8
8
|
load: (entity: T, opts: {
|
|
9
9
|
forceReload?: boolean;
|
|
10
10
|
}) => Promise<void>;
|
|
@@ -45,7 +45,7 @@ export declare class ManyToManyCollection<T extends Entity, U extends Entity> ex
|
|
|
45
45
|
[RelationT]: T;
|
|
46
46
|
[RelationU]: U;
|
|
47
47
|
}
|
|
48
|
-
export
|
|
48
|
+
export type JoinRow = {
|
|
49
49
|
id: number | undefined;
|
|
50
50
|
m2m: ManyToManyCollection<any, any>;
|
|
51
51
|
created_at?: Date;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Collection } from "../";
|
|
2
2
|
import { Entity } from "../Entity";
|
|
3
3
|
import { Loaded, LoadHint } from "../loadHints";
|
|
4
|
-
|
|
4
|
+
type HasManyDerivedOpts<T extends Entity, U extends Entity, H extends LoadHint<T>> = {
|
|
5
5
|
load?: (entity: T, opts: {
|
|
6
6
|
forceReload?: boolean;
|
|
7
7
|
}) => Promise<any>;
|
package/build/src/rules.d.ts
CHANGED
|
@@ -7,27 +7,27 @@ import { MaybePromise } from "./utils";
|
|
|
7
7
|
*
|
|
8
8
|
* Consumers can extend `GenericError` to add fields relevant for their application.
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
10
|
+
export type ValidationRuleResult<E extends GenericError> = string | E | E[] | undefined;
|
|
11
11
|
/** An entity validation rule. */
|
|
12
|
-
export
|
|
12
|
+
export type ValidationRule<T extends Entity> = (entity: T) => MaybePromise<ValidationRuleResult<any>>;
|
|
13
13
|
/** Internal metadata for an async/reactive validation rule. */
|
|
14
|
-
export
|
|
14
|
+
export type ValidationRuleInternal<T extends Entity> = {
|
|
15
15
|
name: string;
|
|
16
16
|
hint: ReactiveHint<T> | undefined;
|
|
17
17
|
fn: ValidationRule<T>;
|
|
18
18
|
};
|
|
19
19
|
/** Internal metadata for an async derived field. */
|
|
20
|
-
export
|
|
20
|
+
export type AsyncDerivedFieldInternal<T extends Entity> = {
|
|
21
21
|
name: string;
|
|
22
22
|
hint: ReactiveHint<T>;
|
|
23
23
|
fn: (entity: T) => Promise<void>;
|
|
24
24
|
};
|
|
25
25
|
/** A generic error which contains only a message field */
|
|
26
|
-
export
|
|
26
|
+
export type GenericError = {
|
|
27
27
|
message: string;
|
|
28
28
|
};
|
|
29
29
|
/** An extension to GenericError which associates the error to a specific entity */
|
|
30
|
-
export
|
|
30
|
+
export type ValidationError = {
|
|
31
31
|
entity: Entity;
|
|
32
32
|
} & GenericError;
|
|
33
33
|
export declare class ValidationErrors extends Error {
|
|
@@ -46,7 +46,7 @@ export declare function newRequiredRule<T extends Entity>(key: keyof T & string)
|
|
|
46
46
|
* If the optional `unless` function returns true, then the update is allowed.
|
|
47
47
|
*/
|
|
48
48
|
export declare function cannotBeUpdated<T extends Entity & EntityChanges<T>, K extends keyof Changes<T> & string>(field: K, unless?: (entity: T) => MaybePromise<boolean>): CannotBeUpdatedRule<T>;
|
|
49
|
-
|
|
49
|
+
type CannotBeUpdatedRule<T extends Entity> = ValidationRule<T> & {
|
|
50
50
|
field: string;
|
|
51
51
|
immutable: boolean;
|
|
52
52
|
};
|
package/build/src/utils.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Entity } from "./Entity";
|
|
2
2
|
import { New } from "./loadHints";
|
|
3
|
-
export
|
|
3
|
+
export type MaybePromise<T> = T | Promise<T>;
|
|
4
4
|
/**
|
|
5
5
|
* Given a `MaybePromise` of T, invoke `callback` against `T` either immediately or via `then`.
|
|
6
6
|
*
|
|
@@ -23,7 +23,7 @@ export declare function groupBy<T, Y = T>(list: T[], fn: (x: T) => string, value
|
|
|
23
23
|
export declare function indexBy<T, Y = T>(list: T[], fn: (x: T) => string, valueFn?: (x: T) => Y): Map<string, Y>;
|
|
24
24
|
export declare function partition<T>(array: ReadonlyArray<T>, f: (el: T) => boolean): [T[], T[]];
|
|
25
25
|
export declare function toArray<T>(maybeArray: T | T[] | undefined): T[];
|
|
26
|
-
export
|
|
26
|
+
export type NullOrDefinedOr<T> = T | null | undefined;
|
|
27
27
|
export declare function assertNever(x: never): never;
|
|
28
28
|
/**
|
|
29
29
|
* Utility method for casting `entity` to a `New` entity.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/dataloader/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/tarn/dist/PromiseInspection.d.ts","../../../node_modules/tarn/dist/utils.d.ts","../../../node_modules/tarn/dist/PendingOperation.d.ts","../../../node_modules/tarn/dist/Resource.d.ts","../../../node_modules/tarn/dist/Pool.d.ts","../../../node_modules/tarn/dist/TimeoutError.d.ts","../../../node_modules/tarn/dist/tarn.d.ts","../../../node_modules/knex/types/result.d.ts","../../../node_modules/knex/types/tables.d.ts","../../../node_modules/knex/types/index.d.ts","../src/getProperties.ts","../src/normalizeHints.ts","../src/relations/AbstractRelationImpl.ts","../src/relations/CustomReference.ts","../src/utils.ts","../src/dataloaders/oneToManyDataLoader.ts","../src/dataloaders/oneToManyFindDataLoader.ts","../src/relations/OneToManyCollection.ts","../src/relations/ManyToOneReference.ts","../src/dataloaders/oneToOneDataLoader.ts","../src/relations/OneToOneReference.ts","../src/relations/PolymorphicReference.ts","../src/relations/Reference.ts","../src/relations/Relation.ts","../src/relations/CustomCollection.ts","../src/dataloaders/manyToManyDataLoader.ts","../src/dataloaders/manyToManyFindDataLoader.ts","../src/relations/ManyToManyCollection.ts","../src/relations/Collection.ts","../src/relations/hasAsyncProperty.ts","../src/relations/hasManyDerived.ts","../src/relations/hasManyThrough.ts","../src/relations/hasOneDerived.ts","../src/relations/hasOneThrough.ts","../src/relations/hasPersistedAsyncProperty.ts","../src/relations/LargeCollection.ts","../src/relations/ManyToManyLargeCollection.ts","../src/relations/OneToManyLargeCollection.ts","../src/relations/index.ts","../src/loadHints.ts","../src/reactiveHints.ts","../src/changes.ts","../src/rules.ts","../src/config.ts","../src/serde.ts","../src/EntityMetadata.ts","../src/createOrUpdatePartial.ts","../../../node_modules/@types/object-hash/index.d.ts","../../../node_modules/pg-types/index.d.ts","../../../node_modules/pg-protocol/dist/messages.d.ts","../../../node_modules/pg-protocol/dist/serializer.d.ts","../../../node_modules/pg-protocol/dist/parser.d.ts","../../../node_modules/pg-protocol/dist/index.d.ts","../../../node_modules/@types/pg/index.d.ts","../../utils/build/connection.d.ts","../../utils/build/index.d.ts","../src/keys.ts","../src/QueryBuilder.ts","../src/dataloaders/findDataLoader.ts","../src/dataloaders/loadDataLoader.ts","../src/Todo.ts","../src/drivers/driver.ts","../src/EntityManager.ts","../src/Entity.ts","../src/drivers/IdAssigner.ts","../src/drivers/InMemoryDriver.ts","../src/drivers/PostgresDriver.ts","../src/drivers/index.ts","../src/loadLens.ts","../../../node_modules/is-plain-object/is-plain-object.d.ts","../src/newTestInstance.ts","../src/index.ts","../src/BaseEntity.ts","../src/k.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"7c60cb280dfc73d1c5bd0d9733f13e170f78696f3547b8b9a0359d2cccb14048","9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"3e4624c306340ad303cc536a07004e81336c3f088308a9e4a9f4c957a3cda2fd","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","34ec1daf3566f26c43dbab380af0de1aac29166e57e4f9ef379a2f154e0cb290","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"249a2b90439cdfd51709539fbfa4dfe0791cbae6efce1e9b327ba8f8cd703f49","affectsGlobalScope":true},"acc8fa7e1d03f0d8c4af03c75027086d80bf1cb17edd2d71313bee7bd12dfb91","a9b6b0f7b1e30359283b131ba6d1c51ee2d3601a2f12e1623141e6a1a60c92a5","aeee0090b38de0dd47ca9a79ad5c2d156e3e09d92306719b0b45a3e96098e564","7bac475dcdd9f7e4e9da934d32c305bc889c4ce3c8ac0ef45a93a8d670fff607","09416dd69576b03a3f485adf329a02f043e4a481e060ef5b208194e488d31fd9","8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"3b145a2351f5cf16abf999c8d5f4481c74dffdc54ec1e9a89992e2622e1226c5","a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","cb92bc2e42b261e4299025756f1beb826b3d9666a3f0d46f8a7254ca512f57e4","4275d5f964e7fc7afc18538e26b3748c207dd772998346d17f409749aa1f3a63",{"version":"59a638a504490fecaacf0020b9814b6abee37edb66047eb1ab9f7c2274bf1da0","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","8c4c1a64db28930732033c31418f817dcb9d09d706766707ae6d38f23faf0c53","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","556bf5c36deb62cffa1bf697c1789fe008ec82db0273025001db66732714e9d9","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","653968fc1b35c5eb3d273d36fac1c1dc66f9537edf28f33485b8776bd956e23d",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2af17363f8a062e3a8cd1b26030af0058b3f86e783f4fc6aa9f57247f240ebaa","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","dfe08140492cdc135fb7fd9c4a652c05207b61a436906079b87da1d3111314bf","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","089e1f8603cbc35ab977c8dcc662eb754b82fca32ed1dfb16bd682726c2d5432","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"64d5585e08ad1ab194b18bf4e851f22a626eae33ac7312ca4ba90bb7ea7daf64","7c54c4b7f7752b0315f14b9ae63f00d7a3f39308e598c670d8a96afdcb8e0a4e","9f559e612c27cce4bc181decc88ba90b00e5be42b6ed7fe9316d6c61476d7439","03dfcf3d00c60a769e705eb5b080c3674cd59ae830ee7ad82aed8f1883f60f06","ca8cec5a09c4323e1fcd9e0f0f84727c9b0818802fabae4ecf7f42a380483037","92d06124389a259ec6f17fa490dd2da4a8aff8fd9055047036e63211793a556b","aa8c0e10f176c156cfea40f5acdbc08cb44a43ba5411c743be645743ed3b1c02","b1bf7de0413303c8bd9424cf4955b433606e90eb31339202c8bffdb1dec982e9","aa977c0c9bc4fa540acb6af1948fa65224e1b2b69a9e2ee73bd1917b3e9d89fb","ec982ebee52d26bdc7a7520612216c9c55e7a44e6fe0f654fb26e6ee41bc16c4","3ee73bec4c8b2c176c9e19cc73ed3fb4c23e013df87b399314b1132b8c3882a6",{"version":"72f944e9ce2863e0a3d20e01836df61d6f24965bb4d30968a3b5ec080dc70c59","signature":"7867f9ce20a995777001ff2edd89c2f5e88309d355b9a159d9a173e36e667a87"},{"version":"5910dc0abfdf77096102048a77963a607fb6aedac8769b537d930d3dd01cb2ac","signature":"7317477222c92fbd2d55892824b62377c386bcfdd338377a93feb28164ddba92"},{"version":"c8ac4094cd0b68a2934e4b0f89cb84eff92b8a0013a40ce2c0171f45deb79845","signature":"1d36ade6a7776136e5085f70dd24a68d5459cd970390bd99572b3ecf584da4cc"},{"version":"e56379eec989e9f2eba5aa07b266a42db3354810f23d3718f5fa0f5e9182eb2b","signature":"08fd17769135657d166249938eab795d7a7557176b15e6cbac6cbeb5782198e9"},{"version":"596efae40626a214050556bef2ae3eb0bed6df82787540404bf3cdd11f256bab","signature":"6774c2a8c2d4c5cb6c77f83cab08af0af15a212c5698044e3ce8428377f849b8"},{"version":"f46aa561113123934b631da148031044eeceb51975c39145177532b3fa9fcd17","signature":"19c03006ce8b2f31ed23d79502d54fed543b619ce75ad63aea750edd0a4bddeb"},{"version":"38b030a102e06167254ec103ece6d876efd8e65c8fc15d792dd92c0efe6826e8","signature":"e8e937295763588e3a9cab31db3a8a7dffd40b2cc8be84e9fb0dca8c3b411a22"},{"version":"8676ffa3cf88a6135b973e2e824127e3e27c5d8a50bf3b5a6105a942eac20cba","signature":"e9b75b81951a927e3ddd8d2028c4502139218b0763ae6a2e292fccbaf81bee64"},{"version":"5ccb81230e5714c80188bb48b4fe5f8351154cb754dee90ca23862d07a4194d2","signature":"c093ea924ae1b9cd5ae93b002d57d8ba6d446273191cfbc9fac6d2d46c02d5c6"},{"version":"2acb07bede81b04cf034a538a642bb1465d6efbbd74a4e83ee79f1dd832f46a0","signature":"aabdaa59ba45e89839d27acabdf8911dc05eac04170a2278fe40f5236774a9d6"},{"version":"9b3da600af9584210f80e1064e5a9a0de14483a5de28d797d8f91785ed7455d9","signature":"2ab5b6d57b09ff2e778de491f0d20808210339498513681eb2869c60aa96a548"},{"version":"a339a18738afcf27145d1f56244801a8f408dfe2b21b64bb269151984f5fe340","signature":"50853dc6f92b7e8e583f025808fccffe32de545ec01ca49e9d933eed48fd3bf4"},{"version":"44e2683d85bcbc1ef407a33cfe9d9f03a45ca73028b2b7d7a005a87ab40f9318","signature":"c9eee8bb2676ed992cf0d7797a12a815125dcb3d20d8b46f1f952002544ac380"},{"version":"51aea06298d58d12577d50ae127c7d95ed4d070f75ef324e16aa627f0ba735c8","signature":"4632ea1f2c3bc02f3b896646fc33496603bdaab35c1c3d3f5d760ac64169b51a"},{"version":"718358208b03573c48268731074cef537c8e9754ca4eb15c6007061b7bc7892d","signature":"06a402b627c28c6697ebf977294272afd55a03deb48c4c268a1509adcc20954d"},{"version":"37d589ac49ee3ea9da2bb8f7738b1fd671f82160dc0c7ce5c1dcd91b2d7c5fe9","signature":"bf40a45df044944251a066dd55429a536854a5bf4948651802e288701df20d3a"},{"version":"1049783e9717c8bdf5f0b4b68e3e7b0aed258d580049b4fef66b140bc97786c4","signature":"48c950b82aec663a38741eaec5a403455f77322f9b1589d9ba5bf245b24db90c"},{"version":"c54e76d65b7b9e2a105f4c2cf98e8bb3a6a71ac779aa9a832eb0db7f806e60d4","signature":"542b6c165c9a3d4a6d7be6e7a754c984b0d841178703672d43a9a8500948fe6f"},{"version":"e2fb734c3d1e426406c36a11d8556ec7fbbded0a7cb49a6272b78b74d4390d22","signature":"11f486d9b6f37b6dc3caf61b76d400aa640b4ff36dee7798e49b8a70f3c9279b"},{"version":"cf053c993364c6d9ae745ee0a70059efe25dc861f0816ddb3d8b21ccfd558627","signature":"879a448654feb138d60b6a9eb562f21b062e767fd2493ea80c98fea369919c9c"},{"version":"597b7df05d2403d3fdbcab3d3f53184a8eb470c8d055b1c9e610f87a11c849e9","signature":"223d30c9a70e01d32c8ba8dd173fed33db70305f2318f9e0560db6b804ef91e5"},{"version":"03f64bbfe069ee02abf57ebf105f0124b34482db5da0e0671159d14cbf76f597","signature":"e200d113ee80fe5d9d54fd7acb3084d6dffd828690c9e4cd333a2172651094c1"},{"version":"de266ac363fb6186a7e4f4bb2569d60e157248feb349a3d3cf60f190318ae782","signature":"a889b6b93f791838c7254cf8b183d1a39e58c932629533ae85446d0c18d4bdd7"},{"version":"ee09917a9395c76c62093d55bdacdda1e271b41e59f26948f7d0be85b0321bf7","signature":"cebecb714b718ef8a2cf4fa1292fccf3086c3d78dbdf0279e46da7df4bc6c351"},{"version":"e5b6c6a3afa73284f8d5bc252780a3efba932e35bb8788d3d4dc1439fa0b7ca7","signature":"72bc981e189f09e79832d4b18aab0267269731b7c087a6999687419dce1fc3b9"},{"version":"54797ffa82d5706e77d6dd4768916f3719a9fb714c491246d4cc979cacc65c98","signature":"429f20c81320127ce23bea13bea3002cf5e7df9e940542face4ccfa64169a23c"},{"version":"b186096ae715763e111a604a88134b6bf6a650ae6fad7cab77932c693fdce4d4","signature":"427d75f04f3f1547a5414a78927af9e7e42c77ba35f3ddeb6d46ad386c6d5761"},{"version":"a6bebe8ff525e2324fec3a54a0e4c0fa972cab292234386fe6d573129e458e10","signature":"59ec1fda18688a56047ebe7a54a87fdece04f39216f218de4642d25dacbf6ccd"},{"version":"7e02b8ec2bac57b7cfae7591e7d2d95248f9f697f19fcd3bd230edf4e2718f9a","signature":"34d6f672241956adaa159e350b2d2575ef2ab44b6756f71bdf624df6ec304d4d"},{"version":"927ff93d87c6ca382ab2eaaec9a1522ecb3d52824204c0b1ca81a7c6f9d9b629","signature":"f6818f98de5939b197ca7fed564075edd69ac6afd7d9e405bb93bc149620a7b8"},{"version":"4f3e1f9949d95944748bc052f12670228ef5c4b06927670b6bda7ea7d7296900","signature":"f54cf8f6a19f1ec4f75d1de4734dbf4d869ffaff2658e5e36518d522d8ad7aed"},{"version":"bb7cc37c7f405c164ee9238bd77414d48863b1a47ebf9fbd5c3b4ed5b7dcc0e3","signature":"e090d2e20197ecf689d979a1ab5aeda25052c703182d55802c3ccf81cc324fbf"},{"version":"72bf5c5db0e06824b93584d3c6b5baa6c63e9b8b43c8e09db4c02737f1788329","signature":"b6f5f67e2abc9e2691c0f812c2f1e760875d593f1432dd2c91ec3e16d4ed78a8"},{"version":"bf5bf1200edcf8ce479b812dee2e8d24f35bacdf343c2b6110c3d498dc8d70f3","signature":"f98c13b271978026461d5a0c4c46a36e275a2e8797224503e87861fe0167ae0b"},{"version":"cea341e4edde1c7f6053b5733e57623f5fafdcd519c5d63298e8df6b6bd09cfd","signature":"fbba97163a35c7a07eb7d16ed75b62057ef7807098fe0417e9d1dbbd237161a0"},{"version":"ca417608dee5499bb55d9be0e7c9a6b47b6f0c63d44ed1e2e0c5ef03b07433a7","signature":"2c6703a76002603ef77a35bddb0af06970d3a30bce28495411d215779cd3915d"},{"version":"b605cfbc30ee4b235995a27aac141261efa7d0f7dece1a144824f6ed3bcea3ae","signature":"19864e9e3c88bc8607b40193c30fcdf99b43aa35dbe4eb1a83dd088350bf255b"},"f5958fa997ef481b22a47efe494846f7ca37e87519b8b6dcbadd859a8e2b74a3","f60e3e3060207ac982da13363181fd7ee4beecc19a7c569f0d6bb034331066c2","17230b34bb564a3a2e36f9d3985372ccab4ad1722df2c43f7c5c2b553f68e5db","87ed0f84f0691d5c724b23159db96342e6b04ac69201b02c65936f4281ce1fbe","13868c5792808236b17dfe2803eafce911ea4d09d3b2fda95391891a494f988f","0dfe35191a04e8f9dc7caeb9f52f2ee07402736563d12cbccd15fb5f31ac877f","fa5c2d3fcd8e227e180815df0a0903ed4b116400452af8a75ac5b68e5e1de9da","dba06d381bc608f95ca6485b24e4e37f8a7b3f33b00e963945b876e18b50e24b","d1c8b8ac7b94a57595955cdfcdda98e00368dba49567a3759ffc29c66ae7ee72",{"version":"2fb97725cec925c9ac1d6b8f10c98f13108438ab8cc9618961293433ef996c6d","signature":"082812d3c0cb92fdede7dd1a70d094e78277ba47fb04a3861d9991eecc395473"},{"version":"0ce4eda9c5e2c9ec4a571c6630ea9fc590556cb423ebb14424bdf791616c5cdb","signature":"ea505f495abb66cb73ce9c01c0c68bbfcf5ae1e9aa0ef43e85415ed076ea403f"},{"version":"c3d9d72f3c78db5ea0e5e51cd6e163d518dc7bff554cdbf6c44e84ca5042312a","signature":"73dcaf509627158e2edda851120b8a3333e8b90f6fe5fe5d4b3196e0d34fb5f0"},{"version":"96b6a0b27a3a1e9e8153b16ab659cdc729c16c57ee1044416faf1da638c1859a","signature":"768c00578f2b33858363418d3fdd94b0653051ecf8342fdbcf88314bd68ddf93"},{"version":"6349bde17658ca3309225b084ae9d5baf177ef37e33ec1430403ab2402dd5857","signature":"a133bc640f6a952cf99ca4e4ef4e1c18a690a9d92520fe94d19b553661ee2c5c"},{"version":"9aaa19afd3cfbf7501969ffae602699b7b0bd29aee9f7d04d7027d03a8d9894b","signature":"db1f84139bdf195eae0e4e760369df670040deb70e5db6fbc18302a00b5b27b7"},{"version":"841a5e407982f58d2ea97da4c6669bae8def9d4941b1271cb099152749efb4bd","signature":"750981a3adf92932969c93b45c50492b3f95da21f467c327274c2a70681ac57a"},{"version":"31ec8cc6c01f78b065f91e3bfd6adae80b78a742ea15009607f906c50064f41d","signature":"b6628f3ea6e85388f3c1a33202e0c5a2c69c8ffcc1cc2680a298b66a347734f1"},{"version":"5c17a204f179c8cc67f86cc99609f16b1163bd2cbb5e815178fc23b980f253d9","signature":"35aacddff82021feffd9a51579ae6c906ff167c48914f816786a05977aee5192"},{"version":"9fd5cee8b2958e6e6b84321ec6cc48743544bea5169ae18cdce466bf3d3a0702","signature":"728c379767baa6aaea747393578f4402e8a7377275283abf9e1f0bc8affe29dd"},{"version":"7fef75c56f49837e2941a0ee9cf5efdcdd962913575eac2380fba3cc1a0f3e27","signature":"4798ec3925b85359fdfc4bfa8d4e36caf1118ba5e00be5491ad25ffa53138354"},"0b92e4ed3057ae48c2cef162b18810ec059627f0aad9504180c6d6449e65e2e2",{"version":"c05b5a861444658a2878ac743200ec2371aa29e4e7112c941a662ac1523cd10a","signature":"4bb52c7cf1396b336fc98599f1b384d6b9d9bec8bdd7e97ac431959abff64eb7"},"9a4c49a0b2bf8536b1f4a72f162f807d7a23aa27a816e9cd24cc965540ba4b35",{"version":"a49a61dabddd28a7041053db3ac8f28ac2c5ea87021f4bd1382daf455b89bd61","signature":"a1136e0ff73336d28a765812e68d22b4baa9333bd444f1cbb11ecfcfe3ec2c97"},{"version":"60ce454acd891bba38bca9f0993252f7d583c230bc805fbc34775deff5efc526","signature":"ea56bf1574a91adae67ce80fc8253c9aaf16ba948ec4fed58e7ad0c1429842b0"},{"version":"b8e343ee03eda13e2eea3958d1d2a9c08fe64c31dd0a2cdc99fef7339b23d844","signature":"ba9e6c59d081c18afef7f0963b594dc48776e358b6ebad8b829b327752f0e8fa"},{"version":"6a2991ecdb75446909d5aed0257612ba3e41e4d4e544bc108e2264f8db41c928","signature":"6497a8eede03f75443b7360738806735acce048a236df254ec54caad399032f1","affectsGlobalScope":true},"a7321c0e96eecb19dcbf178493836474cef21ee3f9345384ce9d74e4be31228d","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d982cdd2610155b3cbcbfa62ccabcf2d2b739f821518ef113348d160ef0010d9","427ce5854885cfc34387e09de05c1d5c1acf94c2143e1693f1d9ff54880573e7","bed2c4f96fab3348be4a34d88dcb12578c1b2475b07c6acd369e99e227718d81","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","ac127e4c6f2b5220b293cc9d2e64ba49781225b792a51cda50f3db8eafba550c",{"version":"81a2875f775bcb131405a8675841414a5c43b2a3334ecf0ec3e3bdc1e685fbe1","affectsGlobalScope":true}],"options":{"composite":true,"esModuleInterop":true,"module":1,"noImplicitReturns":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7},"fileIdsList":[[86],[86,170],[86,172,175],[42,86],[45,86],[46,51,86],[47,57,58,65,74,85,86],[47,48,57,65,86],[49,86],[50,51,58,66,86],[51,74,82,86],[52,54,57,65,86],[53,86],[54,55,86],[56,57,86],[57,86],[57,58,59,74,85,86],[57,58,59,74,77,86],[86,90],[60,65,74,85,86],[57,58,60,61,65,74,82,85,86],[60,62,74,82,85,86],[42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92],[57,63,86],[64,85,86],[54,57,65,74,86],[66,86],[67,86],[45,68,86],[69,84,86,90],[70,86],[71,86],[57,72,86],[72,73,86,88],[57,74,75,76,77,86],[74,76,86],[74,75,86],[77,86],[78,86],[57,80,81,86],[80,81,86],[51,65,74,82,86],[83,86],[65,84,86],[46,60,71,85,86],[51,86],[74,86,87],[86,88],[86,89],[46,51,57,59,68,74,85,86,88,90],[74,86,91],[57,74,82,86,93,142,143,146,147],[86,168,174],[86,172],[86,169,173],[57,74,82,86,100,101,102],[86,93,143,144,145],[86,93],[74,86,93,143],[86,171],[86,95],[57,86,93,94,96,97],[86,98,99],[86,94],[86,165],[86,139,156,165],[41,45,86,103,105,108,121,132,133,140,152,153,154,155,157,165],[86,133,137,138,156,157],[86,103,108,139,149,150,156,157,165],[86,121,132,139,157],[86,156,157,165],[86,106,108,134,136,157,165],[86,108,139,156,157,165],[41,86,108,141,151,156,157],[41,86,108,139,150,156,157],[41,86,108,121,156,157,165],[41,86,108,156,157,165],[41,86,108,114,139,156,157,165],[51,86,103,150,154],[86,103,108,121,132,138,139,150,151,154,155,156,157],[86,103,108,121,132,152,154,155,158,165],[86,103,121,132,139,151,154,156,157],[86,155,158,159,160],[86,139,156,157],[86,104,106,108,128,132,133,134,135,136,137,138,139,140,149,150,151,156,157,161,162,164,166],[86,108,139,156,157,166],[86,105,108,114,132,156,157],[86,108,139,150,156,157,163,165],[86,133,134,157],[86,104,105,108,114,123,132,133,139,156,157],[86,111,117,118,121,156,157],[86,106,117,156,157,165],[86,106,116,117,156,157,165],[86,117,156,157],[86,106,108,117,119,120,165],[86,108,117,120,129,139,156,157,165],[86,106,111,116,117,139,156,157,165],[86,106,108,109,110,112,117,165],[86,108,110,117,129,139,156,157,165],[86,106,112,113,116,117,139,157,165],[86,107,112,114,115,117,156,157],[86,116,122,157],[86,133,156,157],[86,118,133,157,165],[86,107,116,133,157,165],[86,134,139,156,157,165],[86,107,111,112,114,115,116,117,118,121,122,123,124,125,126,127,128,129,130,131],[86,108,134,135,157],[86,139,165],[86,133,157],[86,147],[86,148],[165],[139,156,165],[41,45,103,108,121,133,155,157,165],[133,137,138,156,157],[103,139,156,157],[121,132,139,157],[156,157],[108,136,157,165],[108,156,157,165],[41,151,156,157],[41,139,156,157],[41,156,157,165],[41,114,156,157],[103,154],[103,121,132,139,151,154,155,156,157],[103,121,132,154,155,158,165],[103,121,132,139,151,154,156,157],[139,157],[104,106,108,132,133,134,135,136,137,138,139,140,149,150,151,156,157,161,162,164,166],[105,108,114,132,156,157],[156,157,165],[133,134,157],[105,114,132,133,139,156,157],[117,156,157],[106,117,156,157,165],[106,116,117,156,157,165],[106,117,165],[117,129,139,156,157],[106,116,117,139,156,157,165],[106,116,117,139,157,165],[157],[133,156,157],[133,157,165],[116,133,157,165],[134,156,157],[107,111,112,114,115,116,117,118,121,122,123,124,125,126,127,128,129,130,131],[108,134,135,157],[139,165],[133,157]],"referencedMap":[[168,1],[171,2],[170,1],[176,3],[42,4],[43,4],[45,5],[46,6],[47,7],[48,8],[49,9],[50,10],[51,11],[52,12],[53,13],[54,14],[55,14],[56,15],[57,16],[58,17],[59,18],[44,19],[92,1],[60,20],[61,21],[62,22],[93,23],[63,24],[64,25],[65,26],[66,27],[67,28],[68,29],[69,30],[70,31],[71,32],[72,33],[73,34],[74,35],[76,36],[75,37],[77,38],[78,39],[79,1],[80,40],[81,41],[82,42],[83,43],[84,44],[85,45],[86,46],[87,47],[88,48],[89,49],[90,50],[91,51],[141,1],[147,52],[169,1],[41,1],[175,53],[163,1],[173,54],[174,55],[103,56],[101,1],[102,1],[146,57],[143,58],[145,59],[144,58],[142,1],[172,60],[96,61],[98,62],[94,1],[97,61],[99,1],[100,63],[95,64],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[29,1],[30,1],[31,1],[32,1],[7,1],[33,1],[38,1],[39,1],[34,1],[35,1],[36,1],[37,1],[1,1],[40,1],[166,65],[157,66],[156,67],[139,68],[151,69],[154,70],[135,71],[137,72],[140,73],[152,74],[153,75],[119,76],[120,77],[109,77],[110,77],[113,78],[158,79],[159,80],[160,81],[155,82],[161,83],[104,84],[165,85],[167,1],[150,86],[133,87],[162,1],[164,88],[105,89],[134,90],[106,1],[122,91],[118,92],[107,93],[129,94],[121,95],[130,96],[112,97],[111,98],[131,99],[114,100],[115,97],[116,101],[117,102],[123,103],[124,104],[125,65],[126,105],[127,65],[128,106],[132,107],[136,108],[138,109],[108,110],[148,111],[149,112]],"exportedModulesMap":[[168,1],[171,2],[170,1],[176,3],[42,4],[43,4],[45,5],[46,6],[47,7],[48,8],[49,9],[50,10],[51,11],[52,12],[53,13],[54,14],[55,14],[56,15],[57,16],[58,17],[59,18],[44,19],[92,1],[60,20],[61,21],[62,22],[93,23],[63,24],[64,25],[65,26],[66,27],[67,28],[68,29],[69,30],[70,31],[71,32],[72,33],[73,34],[74,35],[76,36],[75,37],[77,38],[78,39],[79,1],[80,40],[81,41],[82,42],[83,43],[84,44],[85,45],[86,46],[87,47],[88,48],[89,49],[90,50],[91,51],[141,1],[147,52],[169,1],[41,1],[175,53],[163,1],[173,54],[174,55],[103,56],[101,1],[102,1],[146,57],[143,58],[145,59],[144,58],[142,1],[172,60],[96,61],[98,62],[94,1],[97,61],[99,1],[100,63],[95,64],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[29,1],[30,1],[31,1],[32,1],[7,1],[33,1],[38,1],[39,1],[34,1],[35,1],[36,1],[37,1],[1,1],[40,1],[166,113],[157,114],[156,115],[139,116],[151,117],[154,118],[135,119],[137,120],[140,121],[152,122],[153,123],[119,124],[120,124],[109,124],[110,124],[113,125],[158,126],[159,127],[160,128],[155,129],[161,83],[104,130],[165,131],[150,119],[133,132],[164,133],[105,134],[134,135],[122,136],[118,137],[107,138],[129,136],[121,139],[130,140],[112,141],[111,139],[131,140],[114,142],[115,138],[116,136],[117,143],[123,144],[124,145],[125,113],[126,146],[127,113],[128,147],[132,148],[136,149],[138,150],[108,151],[148,111],[149,112]],"semanticDiagnosticsPerFile":[168,171,170,176,42,43,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,44,92,60,61,62,93,63,64,65,66,67,68,69,70,71,72,73,74,76,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,141,147,169,41,175,163,173,174,103,101,102,146,143,145,144,142,172,96,98,94,97,99,100,95,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,33,38,39,34,35,36,37,1,40,166,157,156,139,151,154,135,137,140,152,153,119,120,109,110,113,158,159,160,155,161,104,165,167,150,133,162,164,105,134,106,122,118,107,129,121,130,112,111,131,114,115,116,117,123,124,125,126,127,128,132,136,138,108,148,149],"latestChangedDtsFile":"./src/k.d.ts"},"version":"4.8.4"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/dataloader/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/tarn/dist/PromiseInspection.d.ts","../../../node_modules/tarn/dist/utils.d.ts","../../../node_modules/tarn/dist/PendingOperation.d.ts","../../../node_modules/tarn/dist/Resource.d.ts","../../../node_modules/tarn/dist/Pool.d.ts","../../../node_modules/tarn/dist/TimeoutError.d.ts","../../../node_modules/tarn/dist/tarn.d.ts","../../../node_modules/knex/types/result.d.ts","../../../node_modules/knex/types/tables.d.ts","../../../node_modules/knex/types/index.d.ts","../src/getProperties.ts","../src/normalizeHints.ts","../src/relations/AbstractRelationImpl.ts","../src/relations/CustomReference.ts","../src/utils.ts","../src/dataloaders/oneToManyDataLoader.ts","../src/dataloaders/oneToManyFindDataLoader.ts","../src/relations/OneToManyCollection.ts","../src/relations/ManyToOneReference.ts","../src/dataloaders/oneToOneDataLoader.ts","../src/relations/OneToOneReference.ts","../src/relations/PolymorphicReference.ts","../src/relations/Reference.ts","../src/relations/Relation.ts","../src/relations/CustomCollection.ts","../src/dataloaders/manyToManyDataLoader.ts","../src/dataloaders/manyToManyFindDataLoader.ts","../src/relations/ManyToManyCollection.ts","../src/relations/Collection.ts","../src/relations/hasAsyncProperty.ts","../src/relations/hasManyDerived.ts","../src/relations/hasManyThrough.ts","../src/relations/hasOneDerived.ts","../src/relations/hasOneThrough.ts","../src/relations/hasPersistedAsyncProperty.ts","../src/relations/LargeCollection.ts","../src/relations/ManyToManyLargeCollection.ts","../src/relations/OneToManyLargeCollection.ts","../src/relations/index.ts","../src/loadHints.ts","../src/reactiveHints.ts","../src/changes.ts","../src/rules.ts","../src/config.ts","../src/serde.ts","../src/EntityMetadata.ts","../src/createOrUpdatePartial.ts","../../../node_modules/@types/object-hash/index.d.ts","../../../node_modules/pg-types/index.d.ts","../../../node_modules/pg-protocol/dist/messages.d.ts","../../../node_modules/pg-protocol/dist/serializer.d.ts","../../../node_modules/pg-protocol/dist/parser.d.ts","../../../node_modules/pg-protocol/dist/index.d.ts","../../../node_modules/@types/pg/index.d.ts","../../utils/build/connection.d.ts","../../utils/build/index.d.ts","../src/keys.ts","../src/QueryBuilder.ts","../src/dataloaders/findDataLoader.ts","../src/dataloaders/loadDataLoader.ts","../src/Todo.ts","../src/drivers/driver.ts","../src/EntityManager.ts","../src/Entity.ts","../src/drivers/IdAssigner.ts","../src/drivers/InMemoryDriver.ts","../src/drivers/PostgresDriver.ts","../src/drivers/index.ts","../src/loadLens.ts","../../../node_modules/is-plain-object/is-plain-object.d.ts","../src/newTestInstance.ts","../src/index.ts","../src/BaseEntity.ts","../src/k.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"7c60cb280dfc73d1c5bd0d9733f13e170f78696f3547b8b9a0359d2cccb14048","9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"3e4624c306340ad303cc536a07004e81336c3f088308a9e4a9f4c957a3cda2fd","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","34ec1daf3566f26c43dbab380af0de1aac29166e57e4f9ef379a2f154e0cb290","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"249a2b90439cdfd51709539fbfa4dfe0791cbae6efce1e9b327ba8f8cd703f49","affectsGlobalScope":true},"acc8fa7e1d03f0d8c4af03c75027086d80bf1cb17edd2d71313bee7bd12dfb91","a9b6b0f7b1e30359283b131ba6d1c51ee2d3601a2f12e1623141e6a1a60c92a5","aeee0090b38de0dd47ca9a79ad5c2d156e3e09d92306719b0b45a3e96098e564","7bac475dcdd9f7e4e9da934d32c305bc889c4ce3c8ac0ef45a93a8d670fff607","09416dd69576b03a3f485adf329a02f043e4a481e060ef5b208194e488d31fd9","8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"3b145a2351f5cf16abf999c8d5f4481c74dffdc54ec1e9a89992e2622e1226c5","a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","cb92bc2e42b261e4299025756f1beb826b3d9666a3f0d46f8a7254ca512f57e4","4275d5f964e7fc7afc18538e26b3748c207dd772998346d17f409749aa1f3a63",{"version":"59a638a504490fecaacf0020b9814b6abee37edb66047eb1ab9f7c2274bf1da0","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","8c4c1a64db28930732033c31418f817dcb9d09d706766707ae6d38f23faf0c53","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","556bf5c36deb62cffa1bf697c1789fe008ec82db0273025001db66732714e9d9","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","653968fc1b35c5eb3d273d36fac1c1dc66f9537edf28f33485b8776bd956e23d",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2af17363f8a062e3a8cd1b26030af0058b3f86e783f4fc6aa9f57247f240ebaa","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","dfe08140492cdc135fb7fd9c4a652c05207b61a436906079b87da1d3111314bf","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","089e1f8603cbc35ab977c8dcc662eb754b82fca32ed1dfb16bd682726c2d5432","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"64d5585e08ad1ab194b18bf4e851f22a626eae33ac7312ca4ba90bb7ea7daf64","7c54c4b7f7752b0315f14b9ae63f00d7a3f39308e598c670d8a96afdcb8e0a4e","9f559e612c27cce4bc181decc88ba90b00e5be42b6ed7fe9316d6c61476d7439","03dfcf3d00c60a769e705eb5b080c3674cd59ae830ee7ad82aed8f1883f60f06","ca8cec5a09c4323e1fcd9e0f0f84727c9b0818802fabae4ecf7f42a380483037","92d06124389a259ec6f17fa490dd2da4a8aff8fd9055047036e63211793a556b","aa8c0e10f176c156cfea40f5acdbc08cb44a43ba5411c743be645743ed3b1c02","b1bf7de0413303c8bd9424cf4955b433606e90eb31339202c8bffdb1dec982e9","aa977c0c9bc4fa540acb6af1948fa65224e1b2b69a9e2ee73bd1917b3e9d89fb","ec982ebee52d26bdc7a7520612216c9c55e7a44e6fe0f654fb26e6ee41bc16c4","3ee73bec4c8b2c176c9e19cc73ed3fb4c23e013df87b399314b1132b8c3882a6",{"version":"72f944e9ce2863e0a3d20e01836df61d6f24965bb4d30968a3b5ec080dc70c59","signature":"7867f9ce20a995777001ff2edd89c2f5e88309d355b9a159d9a173e36e667a87"},{"version":"5910dc0abfdf77096102048a77963a607fb6aedac8769b537d930d3dd01cb2ac","signature":"0627ec09e74d7c462c2080ffc2b3475fd0238af208a635ebd0d1f612a649b16f"},{"version":"c8ac4094cd0b68a2934e4b0f89cb84eff92b8a0013a40ce2c0171f45deb79845","signature":"1d36ade6a7776136e5085f70dd24a68d5459cd970390bd99572b3ecf584da4cc"},{"version":"e56379eec989e9f2eba5aa07b266a42db3354810f23d3718f5fa0f5e9182eb2b","signature":"749e7e7b1c5269fcd1f538df981bb18cdaa9f0d3cf95b40dbbe6d72954c434f9"},{"version":"596efae40626a214050556bef2ae3eb0bed6df82787540404bf3cdd11f256bab","signature":"366941e65a722d6cf2aee8b7c49829fcf0e17dafec7aae2c6df6a3a093be4340"},{"version":"f46aa561113123934b631da148031044eeceb51975c39145177532b3fa9fcd17","signature":"19c03006ce8b2f31ed23d79502d54fed543b619ce75ad63aea750edd0a4bddeb"},{"version":"38b030a102e06167254ec103ece6d876efd8e65c8fc15d792dd92c0efe6826e8","signature":"e8e937295763588e3a9cab31db3a8a7dffd40b2cc8be84e9fb0dca8c3b411a22"},{"version":"8676ffa3cf88a6135b973e2e824127e3e27c5d8a50bf3b5a6105a942eac20cba","signature":"e9b75b81951a927e3ddd8d2028c4502139218b0763ae6a2e292fccbaf81bee64"},{"version":"5ccb81230e5714c80188bb48b4fe5f8351154cb754dee90ca23862d07a4194d2","signature":"c093ea924ae1b9cd5ae93b002d57d8ba6d446273191cfbc9fac6d2d46c02d5c6"},{"version":"2acb07bede81b04cf034a538a642bb1465d6efbbd74a4e83ee79f1dd832f46a0","signature":"aabdaa59ba45e89839d27acabdf8911dc05eac04170a2278fe40f5236774a9d6"},{"version":"9b3da600af9584210f80e1064e5a9a0de14483a5de28d797d8f91785ed7455d9","signature":"2ab5b6d57b09ff2e778de491f0d20808210339498513681eb2869c60aa96a548"},{"version":"a339a18738afcf27145d1f56244801a8f408dfe2b21b64bb269151984f5fe340","signature":"50853dc6f92b7e8e583f025808fccffe32de545ec01ca49e9d933eed48fd3bf4"},{"version":"44e2683d85bcbc1ef407a33cfe9d9f03a45ca73028b2b7d7a005a87ab40f9318","signature":"c9eee8bb2676ed992cf0d7797a12a815125dcb3d20d8b46f1f952002544ac380"},{"version":"51aea06298d58d12577d50ae127c7d95ed4d070f75ef324e16aa627f0ba735c8","signature":"4632ea1f2c3bc02f3b896646fc33496603bdaab35c1c3d3f5d760ac64169b51a"},{"version":"718358208b03573c48268731074cef537c8e9754ca4eb15c6007061b7bc7892d","signature":"dfa1df684fa847586bad94bcb68a1ddf418162c0610e3082efebc68de37e6ad3"},{"version":"37d589ac49ee3ea9da2bb8f7738b1fd671f82160dc0c7ce5c1dcd91b2d7c5fe9","signature":"bf40a45df044944251a066dd55429a536854a5bf4948651802e288701df20d3a"},{"version":"1049783e9717c8bdf5f0b4b68e3e7b0aed258d580049b4fef66b140bc97786c4","signature":"48c950b82aec663a38741eaec5a403455f77322f9b1589d9ba5bf245b24db90c"},{"version":"c54e76d65b7b9e2a105f4c2cf98e8bb3a6a71ac779aa9a832eb0db7f806e60d4","signature":"f6e9381f270c43285b2eb41b612db7699b9288c05f13c46a167f8185ba6db478"},{"version":"e2fb734c3d1e426406c36a11d8556ec7fbbded0a7cb49a6272b78b74d4390d22","signature":"11f486d9b6f37b6dc3caf61b76d400aa640b4ff36dee7798e49b8a70f3c9279b"},{"version":"cf053c993364c6d9ae745ee0a70059efe25dc861f0816ddb3d8b21ccfd558627","signature":"879a448654feb138d60b6a9eb562f21b062e767fd2493ea80c98fea369919c9c"},{"version":"597b7df05d2403d3fdbcab3d3f53184a8eb470c8d055b1c9e610f87a11c849e9","signature":"bd46b0596714704e72fc613b8fab951f705e5939e85029485eba5654ba5c65ee"},{"version":"03f64bbfe069ee02abf57ebf105f0124b34482db5da0e0671159d14cbf76f597","signature":"e200d113ee80fe5d9d54fd7acb3084d6dffd828690c9e4cd333a2172651094c1"},{"version":"de266ac363fb6186a7e4f4bb2569d60e157248feb349a3d3cf60f190318ae782","signature":"a889b6b93f791838c7254cf8b183d1a39e58c932629533ae85446d0c18d4bdd7"},{"version":"ee09917a9395c76c62093d55bdacdda1e271b41e59f26948f7d0be85b0321bf7","signature":"cebecb714b718ef8a2cf4fa1292fccf3086c3d78dbdf0279e46da7df4bc6c351"},{"version":"e5b6c6a3afa73284f8d5bc252780a3efba932e35bb8788d3d4dc1439fa0b7ca7","signature":"72bc981e189f09e79832d4b18aab0267269731b7c087a6999687419dce1fc3b9"},{"version":"54797ffa82d5706e77d6dd4768916f3719a9fb714c491246d4cc979cacc65c98","signature":"429f20c81320127ce23bea13bea3002cf5e7df9e940542face4ccfa64169a23c"},{"version":"b186096ae715763e111a604a88134b6bf6a650ae6fad7cab77932c693fdce4d4","signature":"427d75f04f3f1547a5414a78927af9e7e42c77ba35f3ddeb6d46ad386c6d5761"},{"version":"a6bebe8ff525e2324fec3a54a0e4c0fa972cab292234386fe6d573129e458e10","signature":"59ec1fda18688a56047ebe7a54a87fdece04f39216f218de4642d25dacbf6ccd"},{"version":"7e02b8ec2bac57b7cfae7591e7d2d95248f9f697f19fcd3bd230edf4e2718f9a","signature":"34d6f672241956adaa159e350b2d2575ef2ab44b6756f71bdf624df6ec304d4d"},{"version":"927ff93d87c6ca382ab2eaaec9a1522ecb3d52824204c0b1ca81a7c6f9d9b629","signature":"ed34846ae8e9a95bb658863985339a765fb22d7e690fb3d926f03dfd7ae44ced"},{"version":"4f3e1f9949d95944748bc052f12670228ef5c4b06927670b6bda7ea7d7296900","signature":"d2cff514790e5518e098d5daac4b4bb73b5fd4f4ebfc404c09f1fc3738e099d1"},{"version":"bb7cc37c7f405c164ee9238bd77414d48863b1a47ebf9fbd5c3b4ed5b7dcc0e3","signature":"29d085c526a106769eec9bcda50801e5c26bbe05ab2559a9b3670fd1e02c1820"},{"version":"72bf5c5db0e06824b93584d3c6b5baa6c63e9b8b43c8e09db4c02737f1788329","signature":"28054428b29d31b0dccf3717373fc5b78336ba0f7fed0eda08ce92d6a6b78327"},{"version":"bf5bf1200edcf8ce479b812dee2e8d24f35bacdf343c2b6110c3d498dc8d70f3","signature":"813a14e4bf30ad6b8f664444e96f307d83fda97e70f8a3bf2f8205610ababa50"},{"version":"cea341e4edde1c7f6053b5733e57623f5fafdcd519c5d63298e8df6b6bd09cfd","signature":"fbba97163a35c7a07eb7d16ed75b62057ef7807098fe0417e9d1dbbd237161a0"},{"version":"ca417608dee5499bb55d9be0e7c9a6b47b6f0c63d44ed1e2e0c5ef03b07433a7","signature":"97bad69b1de0ccda7b8166c318f9799c21001803153ac63c8267e0696f517261"},{"version":"b605cfbc30ee4b235995a27aac141261efa7d0f7dece1a144824f6ed3bcea3ae","signature":"fefbbaa69135fe26e9781c8f13d65ddb4b5f40bd0736c4c3e88dd0bf33db3368"},"f5958fa997ef481b22a47efe494846f7ca37e87519b8b6dcbadd859a8e2b74a3","f60e3e3060207ac982da13363181fd7ee4beecc19a7c569f0d6bb034331066c2","17230b34bb564a3a2e36f9d3985372ccab4ad1722df2c43f7c5c2b553f68e5db","87ed0f84f0691d5c724b23159db96342e6b04ac69201b02c65936f4281ce1fbe","13868c5792808236b17dfe2803eafce911ea4d09d3b2fda95391891a494f988f","0dfe35191a04e8f9dc7caeb9f52f2ee07402736563d12cbccd15fb5f31ac877f","fa5c2d3fcd8e227e180815df0a0903ed4b116400452af8a75ac5b68e5e1de9da","f4f341df5bcc81fc6dc8fdc0b89b84d0004bce34db25409025574402cb9d4083","d1c8b8ac7b94a57595955cdfcdda98e00368dba49567a3759ffc29c66ae7ee72",{"version":"2fb97725cec925c9ac1d6b8f10c98f13108438ab8cc9618961293433ef996c6d","signature":"2b80c188e0c6bcaa5cbb2fb6d72419967a9025e3fae8c93513768c5fb8c8d27a"},{"version":"0ce4eda9c5e2c9ec4a571c6630ea9fc590556cb423ebb14424bdf791616c5cdb","signature":"b941aae09386947dc5f1c6082cc582d473f2d6239117663a3960b0623c496ec7"},{"version":"c3d9d72f3c78db5ea0e5e51cd6e163d518dc7bff554cdbf6c44e84ca5042312a","signature":"73dcaf509627158e2edda851120b8a3333e8b90f6fe5fe5d4b3196e0d34fb5f0"},{"version":"96b6a0b27a3a1e9e8153b16ab659cdc729c16c57ee1044416faf1da638c1859a","signature":"768c00578f2b33858363418d3fdd94b0653051ecf8342fdbcf88314bd68ddf93"},{"version":"6349bde17658ca3309225b084ae9d5baf177ef37e33ec1430403ab2402dd5857","signature":"a133bc640f6a952cf99ca4e4ef4e1c18a690a9d92520fe94d19b553661ee2c5c"},{"version":"9aaa19afd3cfbf7501969ffae602699b7b0bd29aee9f7d04d7027d03a8d9894b","signature":"db1f84139bdf195eae0e4e760369df670040deb70e5db6fbc18302a00b5b27b7"},{"version":"bb45876c9a0409e804c78828eb1a27f7da9914fa8cfbc5cbf8c1987464fe8d83","signature":"8e93216587348623ef6e40c77ab124c6842a7de5a38c963ecbc42dc49443f5fb"},{"version":"31ec8cc6c01f78b065f91e3bfd6adae80b78a742ea15009607f906c50064f41d","signature":"b6628f3ea6e85388f3c1a33202e0c5a2c69c8ffcc1cc2680a298b66a347734f1"},{"version":"5c17a204f179c8cc67f86cc99609f16b1163bd2cbb5e815178fc23b980f253d9","signature":"35aacddff82021feffd9a51579ae6c906ff167c48914f816786a05977aee5192"},{"version":"9fd5cee8b2958e6e6b84321ec6cc48743544bea5169ae18cdce466bf3d3a0702","signature":"728c379767baa6aaea747393578f4402e8a7377275283abf9e1f0bc8affe29dd"},{"version":"7fef75c56f49837e2941a0ee9cf5efdcdd962913575eac2380fba3cc1a0f3e27","signature":"4798ec3925b85359fdfc4bfa8d4e36caf1118ba5e00be5491ad25ffa53138354"},"0b92e4ed3057ae48c2cef162b18810ec059627f0aad9504180c6d6449e65e2e2",{"version":"c05b5a861444658a2878ac743200ec2371aa29e4e7112c941a662ac1523cd10a","signature":"4bc9c4206180edc83846ac36defefa590cc1e6df3aa041530588d9f912060d7a"},"9a4c49a0b2bf8536b1f4a72f162f807d7a23aa27a816e9cd24cc965540ba4b35",{"version":"a49a61dabddd28a7041053db3ac8f28ac2c5ea87021f4bd1382daf455b89bd61","signature":"253d3fbf078e63fc3fd111cad1a77c5373a9eac85c9e9d6d349a8a8962c7138f"},{"version":"60ce454acd891bba38bca9f0993252f7d583c230bc805fbc34775deff5efc526","signature":"82ede901c94b9ff1023e28c6ab16fc0d99379604e7c04f1467db49d99b59b02b"},{"version":"b8e343ee03eda13e2eea3958d1d2a9c08fe64c31dd0a2cdc99fef7339b23d844","signature":"ba9e6c59d081c18afef7f0963b594dc48776e358b6ebad8b829b327752f0e8fa"},{"version":"6a2991ecdb75446909d5aed0257612ba3e41e4d4e544bc108e2264f8db41c928","signature":"9a3baae8e0287c3572dd0196c9dddac1d28b5f556976739a73d383f2e435cabd","affectsGlobalScope":true},"a7321c0e96eecb19dcbf178493836474cef21ee3f9345384ce9d74e4be31228d","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d982cdd2610155b3cbcbfa62ccabcf2d2b739f821518ef113348d160ef0010d9","427ce5854885cfc34387e09de05c1d5c1acf94c2143e1693f1d9ff54880573e7","bed2c4f96fab3348be4a34d88dcb12578c1b2475b07c6acd369e99e227718d81","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","ac127e4c6f2b5220b293cc9d2e64ba49781225b792a51cda50f3db8eafba550c",{"version":"81a2875f775bcb131405a8675841414a5c43b2a3334ecf0ec3e3bdc1e685fbe1","affectsGlobalScope":true}],"options":{"composite":true,"esModuleInterop":true,"module":1,"noImplicitReturns":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7},"fileIdsList":[[87],[87,171],[87,173,176],[43,87],[46,87],[47,52,87],[48,58,59,66,75,86,87],[48,49,58,66,87],[50,87],[51,52,59,67,87],[52,75,83,87],[53,55,58,66,87],[54,87],[55,56,87],[57,58,87],[58,87],[58,59,60,75,86,87],[58,59,60,75,78,87],[87,91],[61,66,75,86,87],[58,59,61,62,66,75,83,86,87],[61,63,75,83,86,87],[43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93],[58,64,87],[65,86,87],[55,58,66,75,87],[67,87],[68,87],[46,69,87],[70,85,87,91],[71,87],[72,87],[58,73,87],[73,74,87,89],[58,75,76,77,78,87],[75,77,87],[75,76,87],[78,87],[79,87],[58,81,82,87],[81,82,87],[52,66,75,83,87],[84,87],[66,85,87],[47,61,72,86,87],[52,87],[75,87,88],[87,89],[87,90],[47,52,58,60,69,75,86,87,89,91],[75,87,92],[58,75,83,87,94,143,144,147,148],[87,169,175],[87,173],[87,170,174],[58,75,83,87,101,102,103],[87,94,144,145,146],[87,94],[75,87,94,144],[87,172],[87,96],[58,87,94,95,97,98],[87,99,100],[87,95],[87,166],[87,140,157,166],[42,46,87,104,106,109,122,133,134,141,153,154,155,156,158,166],[87,134,138,139,157,158],[87,104,109,140,150,151,157,158,166],[87,122,133,140,158],[87,157,158,166],[87,107,109,135,137,158,166],[87,109,140,157,158,166],[42,87,109,142,152,157,158],[42,87,109,140,151,157,158],[42,87,109,122,157,158,166],[42,87,109,157,158,166],[42,87,109,115,140,157,158,166],[52,87,104,151,155],[87,104,109,122,133,139,140,151,152,155,156,157,158],[87,104,109,122,133,153,155,156,159,166],[87,104,122,133,140,152,155,157,158],[87,156,159,160,161],[87,140,157,158],[87,105,107,109,129,133,134,135,136,137,138,139,140,141,150,151,152,157,158,162,163,165,167],[87,109,140,157,158,167],[87,106,109,115,133,157,158],[87,109,140,151,157,158,164,166],[87,134,135,158],[87,105,106,109,115,124,133,134,140,157,158],[87,112,118,119,122,157,158],[87,107,118,157,158,166],[87,107,117,118,157,158,166],[87,118,157,158],[87,107,109,118,120,121,166],[87,109,118,121,130,140,157,158,166],[87,107,112,117,118,140,157,158,166],[87,107,109,110,111,113,118,166],[87,109,111,118,130,140,157,158,166],[87,107,113,114,117,118,140,158,166],[87,108,113,115,116,118,157,158],[87,117,123,158],[87,134,157,158],[87,119,134,158,166],[87,108,117,134,158,166],[87,135,140,157,158,166],[87,108,112,113,115,116,117,118,119,122,123,124,125,126,127,128,129,130,131,132],[87,109,135,136,158],[87,140,166],[87,134,158],[87,148],[87,149],[166],[140,157,166],[42,46,104,109,122,134,156,158,166],[134,138,139,157,158],[104,140,157,158],[122,133,140,158],[157,158],[109,137,158,166],[109,157,158,166],[42,152,157,158],[42,140,157,158],[42,157,158,166],[42,115,157,158],[104,155],[104,122,133,140,152,155,156,157,158],[104,122,133,155,156,159,166],[104,122,133,140,152,155,157,158],[140,158],[105,107,109,133,134,135,136,137,138,139,140,141,150,151,152,157,158,162,163,165,167],[106,109,115,133,157,158],[157,158,166],[134,135,158],[106,115,133,134,140,157,158],[118,157,158],[107,118,157,158,166],[107,117,118,157,158,166],[107,118,166],[118,130,140,157,158],[107,117,118,140,157,158,166],[107,117,118,140,158,166],[158],[134,157,158],[134,158,166],[117,134,158,166],[135,157,158],[108,112,113,115,116,117,118,119,122,123,124,125,126,127,128,129,130,131,132],[109,135,136,158],[140,166],[134,158]],"referencedMap":[[169,1],[172,2],[171,1],[177,3],[43,4],[44,4],[46,5],[47,6],[48,7],[49,8],[50,9],[51,10],[52,11],[53,12],[54,13],[55,14],[56,14],[57,15],[58,16],[59,17],[60,18],[45,19],[93,1],[61,20],[62,21],[63,22],[94,23],[64,24],[65,25],[66,26],[67,27],[68,28],[69,29],[70,30],[71,31],[72,32],[73,33],[74,34],[75,35],[77,36],[76,37],[78,38],[79,39],[80,1],[81,40],[82,41],[83,42],[84,43],[85,44],[86,45],[87,46],[88,47],[89,48],[90,49],[91,50],[92,51],[142,1],[148,52],[170,1],[42,1],[176,53],[164,1],[174,54],[175,55],[104,56],[102,1],[103,1],[147,57],[144,58],[146,59],[145,58],[143,1],[173,60],[97,61],[99,62],[95,1],[98,61],[100,1],[101,63],[96,64],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[32,1],[29,1],[30,1],[31,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[167,65],[158,66],[157,67],[140,68],[152,69],[155,70],[136,71],[138,72],[141,73],[153,74],[154,75],[120,76],[121,77],[110,77],[111,77],[114,78],[159,79],[160,80],[161,81],[156,82],[162,83],[105,84],[166,85],[168,1],[151,86],[134,87],[163,1],[165,88],[106,89],[135,90],[107,1],[123,91],[119,92],[108,93],[130,94],[122,95],[131,96],[113,97],[112,98],[132,99],[115,100],[116,97],[117,101],[118,102],[124,103],[125,104],[126,65],[127,105],[128,65],[129,106],[133,107],[137,108],[139,109],[109,110],[149,111],[150,112]],"exportedModulesMap":[[169,1],[172,2],[171,1],[177,3],[43,4],[44,4],[46,5],[47,6],[48,7],[49,8],[50,9],[51,10],[52,11],[53,12],[54,13],[55,14],[56,14],[57,15],[58,16],[59,17],[60,18],[45,19],[93,1],[61,20],[62,21],[63,22],[94,23],[64,24],[65,25],[66,26],[67,27],[68,28],[69,29],[70,30],[71,31],[72,32],[73,33],[74,34],[75,35],[77,36],[76,37],[78,38],[79,39],[80,1],[81,40],[82,41],[83,42],[84,43],[85,44],[86,45],[87,46],[88,47],[89,48],[90,49],[91,50],[92,51],[142,1],[148,52],[170,1],[42,1],[176,53],[164,1],[174,54],[175,55],[104,56],[102,1],[103,1],[147,57],[144,58],[146,59],[145,58],[143,1],[173,60],[97,61],[99,62],[95,1],[98,61],[100,1],[101,63],[96,64],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[32,1],[29,1],[30,1],[31,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[167,113],[158,114],[157,115],[140,116],[152,117],[155,118],[136,119],[138,120],[141,121],[153,122],[154,123],[120,124],[121,124],[110,124],[111,124],[114,125],[159,126],[160,127],[161,128],[156,129],[162,83],[105,130],[166,131],[151,119],[134,132],[165,133],[106,134],[135,135],[123,136],[119,137],[108,138],[130,136],[122,139],[131,140],[113,141],[112,139],[132,140],[115,142],[116,138],[117,136],[118,143],[124,144],[125,145],[126,113],[127,146],[128,113],[129,147],[133,148],[137,149],[139,150],[109,151],[149,111],[150,112]],"semanticDiagnosticsPerFile":[169,172,171,177,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,45,93,61,62,63,94,64,65,66,67,68,69,70,71,72,73,74,75,77,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,142,148,170,42,176,164,174,175,104,102,103,147,144,146,145,143,173,97,99,95,98,100,101,96,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,32,29,30,31,33,7,34,39,40,35,36,37,38,1,41,167,158,157,140,152,155,136,138,141,153,154,120,121,110,111,114,159,160,161,156,162,105,166,168,151,134,163,165,106,135,107,123,119,108,130,122,131,113,112,132,115,116,117,118,124,125,126,127,128,129,133,137,139,109,149,150],"latestChangedDtsFile":"./src/k.d.ts"},"version":"4.9.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joist-orm",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.38.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@types/object-hash": "^2.2.1",
|
|
23
23
|
"dataloader": "^2.1.0",
|
|
24
24
|
"is-plain-object": "^5.0.0",
|
|
25
|
-
"joist-utils": "1.
|
|
25
|
+
"joist-utils": "1.38.0",
|
|
26
26
|
"knex": "^2.1.0",
|
|
27
27
|
"object-hash": "^3.0.0",
|
|
28
28
|
"pg": "^8.7.3"
|
|
@@ -37,6 +37,6 @@
|
|
|
37
37
|
"prettier-plugin-organize-imports": "^3.1.1",
|
|
38
38
|
"ts-node-dev": "^2.0.0",
|
|
39
39
|
"tsconfig-paths": "^4.0.0",
|
|
40
|
-
"typescript": "^4.
|
|
40
|
+
"typescript": "^4.9.3"
|
|
41
41
|
}
|
|
42
42
|
}
|