arkormx 2.2.3 → 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{index-DbtnN_Yb.d.mts → index-DV9QDB5H.d.mts} +266 -79
- package/dist/{index-nSC0udqX.d.cts → index-XyE0Kf2W.d.cts} +266 -79
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.mjs +1 -1
- package/dist/relationship/index.cjs +1 -1
- package/dist/relationship/index.d.cts +1 -1
- package/dist/relationship/index.d.mts +1 -1
- package/dist/relationship/index.mjs +1 -1
- package/dist/{relationship-CRlJHS90.cjs → relationship-55Hpemxh.cjs} +268 -0
- package/dist/{relationship-CJaPnw92.mjs → relationship-k7kdsCor.mjs} +268 -0
- package/package.json +1 -1
|
@@ -227,6 +227,84 @@ type FactoryState<TAttributes extends FactoryAttributes> = (attributes: TAttribu
|
|
|
227
227
|
//#region src/Collection.d.ts
|
|
228
228
|
declare class ArkormCollection<T = any, X = T[]> extends Collection<T, X> {}
|
|
229
229
|
//#endregion
|
|
230
|
+
//#region src/Paginator.d.ts
|
|
231
|
+
/**
|
|
232
|
+
* The LengthAwarePaginator class encapsulates paginated results with full
|
|
233
|
+
* metadata including the total result count and last page.
|
|
234
|
+
*
|
|
235
|
+
* @template T The type of the data being paginated.
|
|
236
|
+
* @author Legacy (3m1n3nc3)
|
|
237
|
+
* @since 0.1.0
|
|
238
|
+
*/
|
|
239
|
+
declare class LengthAwarePaginator<T> {
|
|
240
|
+
readonly data: ArkormCollection<T>;
|
|
241
|
+
readonly meta: PaginationMeta;
|
|
242
|
+
private readonly urlDriver;
|
|
243
|
+
/**
|
|
244
|
+
* Creates a new LengthAwarePaginator instance.
|
|
245
|
+
*
|
|
246
|
+
* @param data The collection of data being paginated.
|
|
247
|
+
* @param total The total number of items.
|
|
248
|
+
* @param perPage The number of items per page.
|
|
249
|
+
* @param currentPage The current page number.
|
|
250
|
+
* @param options URL generation options.
|
|
251
|
+
*/
|
|
252
|
+
constructor(data: ArkormCollection<T>, total: number, perPage: number, currentPage: number, options?: PaginationOptions);
|
|
253
|
+
getPageName(): string;
|
|
254
|
+
url(page: number): string;
|
|
255
|
+
nextPageUrl(): string | null;
|
|
256
|
+
previousPageUrl(): string | null;
|
|
257
|
+
firstPageUrl(): string;
|
|
258
|
+
lastPageUrl(): string;
|
|
259
|
+
/**
|
|
260
|
+
* Converts the paginator instance to a JSON-serializable object.
|
|
261
|
+
*
|
|
262
|
+
* @returns
|
|
263
|
+
*/
|
|
264
|
+
toJSON(): {
|
|
265
|
+
data: ArkormCollection<T, T[]>;
|
|
266
|
+
meta: PaginationMeta;
|
|
267
|
+
links: {
|
|
268
|
+
first: string;
|
|
269
|
+
last: string;
|
|
270
|
+
prev: string | null;
|
|
271
|
+
next: string | null;
|
|
272
|
+
};
|
|
273
|
+
};
|
|
274
|
+
}
|
|
275
|
+
/**
|
|
276
|
+
* The Paginator class encapsulates simple pagination results without total count.
|
|
277
|
+
*
|
|
278
|
+
* @template T The type of the data being paginated.
|
|
279
|
+
*/
|
|
280
|
+
declare class Paginator<T> {
|
|
281
|
+
readonly data: ArkormCollection<T>;
|
|
282
|
+
readonly meta: SimplePaginationMeta;
|
|
283
|
+
private readonly urlDriver;
|
|
284
|
+
/**
|
|
285
|
+
* Creates a new simple Paginator instance.
|
|
286
|
+
*
|
|
287
|
+
* @param data The collection of data being paginated.
|
|
288
|
+
* @param perPage The number of items per page.
|
|
289
|
+
* @param currentPage The current page number.
|
|
290
|
+
* @param hasMorePages Indicates whether additional pages exist.
|
|
291
|
+
* @param options URL generation options.
|
|
292
|
+
*/
|
|
293
|
+
constructor(data: ArkormCollection<T>, perPage: number, currentPage: number, hasMorePages: boolean, options?: PaginationOptions);
|
|
294
|
+
getPageName(): string;
|
|
295
|
+
url(page: number): string;
|
|
296
|
+
nextPageUrl(): string | null;
|
|
297
|
+
previousPageUrl(): string | null;
|
|
298
|
+
toJSON(): {
|
|
299
|
+
data: ArkormCollection<T, T[]>;
|
|
300
|
+
meta: SimplePaginationMeta;
|
|
301
|
+
links: {
|
|
302
|
+
prev: string | null;
|
|
303
|
+
next: string | null;
|
|
304
|
+
};
|
|
305
|
+
};
|
|
306
|
+
}
|
|
307
|
+
//#endregion
|
|
230
308
|
//#region src/types/relationship.d.ts
|
|
231
309
|
type RelationConstraint<TModel> = (query: QueryBuilder<TModel>) => QueryBuilder<TModel> | void;
|
|
232
310
|
type RelationDefaultValue<TParent, TRelated> = Partial<ModelAttributes<TRelated>> | TRelated | ((parent: TParent) => Partial<ModelAttributes<TRelated>> | TRelated);
|
|
@@ -278,7 +356,15 @@ declare abstract class Relation<TModel> {
|
|
|
278
356
|
getAdapter: () => DatabaseAdapter | undefined;
|
|
279
357
|
query: () => QueryBuilder<TModel>;
|
|
280
358
|
};
|
|
359
|
+
protected getRelatedModelConstructor(): {
|
|
360
|
+
hydrate: (attributes: Record<string, unknown>) => TModel;
|
|
361
|
+
query: () => QueryBuilder<TModel>;
|
|
362
|
+
getPrimaryKey: () => string;
|
|
363
|
+
};
|
|
281
364
|
protected createRelationTableLoader(): RelationTableLoader;
|
|
365
|
+
protected getCreationAttributes(): Record<string, unknown>;
|
|
366
|
+
protected mergeCreationAttributes(attributes?: Record<string, unknown>): Record<string, unknown>;
|
|
367
|
+
protected applyCreationAttributesToModel(model: TModel): TModel;
|
|
282
368
|
/**
|
|
283
369
|
* Apply a constraint to the relationship query.
|
|
284
370
|
*
|
|
@@ -428,6 +514,29 @@ declare abstract class Relation<TModel> {
|
|
|
428
514
|
* @returns
|
|
429
515
|
*/
|
|
430
516
|
first(): Promise<TModel | null>;
|
|
517
|
+
/**
|
|
518
|
+
* Execute the relationship query and return the first related model or throw an error if not found.
|
|
519
|
+
*
|
|
520
|
+
* @returns
|
|
521
|
+
*/
|
|
522
|
+
firstOrFail(): Promise<TModel>;
|
|
523
|
+
/**
|
|
524
|
+
* Execute the relationship query and return the first related model or the result of
|
|
525
|
+
* the callback if not found.
|
|
526
|
+
*
|
|
527
|
+
* @param callback
|
|
528
|
+
* @returns
|
|
529
|
+
*/
|
|
530
|
+
firstOr<TResult>(callback: () => TResult | Promise<TResult>): Promise<TModel | TResult>;
|
|
531
|
+
/**
|
|
532
|
+
* Execute the relationship query with an additional where clause and return the first
|
|
533
|
+
* related model or null if not found.
|
|
534
|
+
*
|
|
535
|
+
* @param key
|
|
536
|
+
* @param value
|
|
537
|
+
*/
|
|
538
|
+
firstWhere<TKey extends keyof ModelAttributes<TModel> & string>(key: TKey, value: ModelAttributes<TModel>[TKey]): Promise<TModel | null>;
|
|
539
|
+
firstWhere<TKey extends keyof ModelAttributes<TModel> & string>(key: TKey, operator: '=' | '!=' | '>' | '>=' | '<' | '<=', value: ModelAttributes<TModel>[TKey]): Promise<TModel | null>;
|
|
431
540
|
/**
|
|
432
541
|
* Count records that match the relationship query.
|
|
433
542
|
*
|
|
@@ -446,6 +555,158 @@ declare abstract class Relation<TModel> {
|
|
|
446
555
|
* @returns
|
|
447
556
|
*/
|
|
448
557
|
doesntExist(): Promise<boolean>;
|
|
558
|
+
/**
|
|
559
|
+
* Create a new instance of the related model with the given attributes and
|
|
560
|
+
* relationship creation attributes applied, but do not save it.
|
|
561
|
+
*
|
|
562
|
+
* @param attributes
|
|
563
|
+
* @returns
|
|
564
|
+
*/
|
|
565
|
+
make(attributes?: Record<string, unknown>): TModel;
|
|
566
|
+
/**
|
|
567
|
+
* Create new instances of the related model with the given attributes and relationship
|
|
568
|
+
* creation attributes applied, but do not save them.
|
|
569
|
+
*
|
|
570
|
+
* @param attributes
|
|
571
|
+
* @returns
|
|
572
|
+
*/
|
|
573
|
+
makeMany(attributes?: Record<string, unknown>[]): TModel[];
|
|
574
|
+
/**
|
|
575
|
+
* Create a new instance of the related model with the given attributes and relationship
|
|
576
|
+
* creation attributes applied, and save it to the database.
|
|
577
|
+
*
|
|
578
|
+
* @param attributes
|
|
579
|
+
* @returns
|
|
580
|
+
*/
|
|
581
|
+
create(attributes?: Record<string, unknown>): Promise<TModel>;
|
|
582
|
+
/**
|
|
583
|
+
* Create new instances of the related model with the given attributes and relationship
|
|
584
|
+
* creation attributes applied, and save them to the database.
|
|
585
|
+
*
|
|
586
|
+
* @param values
|
|
587
|
+
* @returns
|
|
588
|
+
*/
|
|
589
|
+
createMany(values?: Record<string, unknown>[]): Promise<TModel[]>;
|
|
590
|
+
/**
|
|
591
|
+
* Save the given model instance by applying relationship creation attributes and calling save() on it.
|
|
592
|
+
*
|
|
593
|
+
* @param model
|
|
594
|
+
* @returns
|
|
595
|
+
*/
|
|
596
|
+
save(model: TModel): Promise<TModel>;
|
|
597
|
+
/**
|
|
598
|
+
* Save the given model instance by applying relationship creation attributes and
|
|
599
|
+
* calling saveQuietly() on it if supported, otherwise falling back to save().
|
|
600
|
+
*
|
|
601
|
+
* @param model
|
|
602
|
+
* @returns
|
|
603
|
+
*/
|
|
604
|
+
saveQuietly(model: TModel): Promise<TModel>;
|
|
605
|
+
private shouldCreateAfterSaveMiss;
|
|
606
|
+
/**
|
|
607
|
+
* Create new instances of the related model with the given attributes and
|
|
608
|
+
* relationship * creation attributes applied, and save them to the database.
|
|
609
|
+
*
|
|
610
|
+
* @param models
|
|
611
|
+
* @returns
|
|
612
|
+
*/
|
|
613
|
+
saveMany(models?: TModel[]): Promise<TModel[]>;
|
|
614
|
+
/**
|
|
615
|
+
* Create new instances of the related model with the given attributes and relationship
|
|
616
|
+
* creation attributes applied, and save them to the database.
|
|
617
|
+
*
|
|
618
|
+
* @param models
|
|
619
|
+
* @returns
|
|
620
|
+
*/
|
|
621
|
+
saveManyQuietly(models?: TModel[]): Promise<TModel[]>;
|
|
622
|
+
/**
|
|
623
|
+
* Find a related model by a specific key and value, applying relationship constraints.
|
|
624
|
+
*
|
|
625
|
+
* @param value
|
|
626
|
+
* @param key
|
|
627
|
+
*/
|
|
628
|
+
find<TKey extends keyof ModelAttributes<TModel> & string>(value: ModelAttributes<TModel>[TKey], key: TKey): Promise<TModel | null>;
|
|
629
|
+
find(value: string | number, key?: string): Promise<TModel | null>;
|
|
630
|
+
/**
|
|
631
|
+
* Find related models by a specific key and array of values, applying relationship constraints.
|
|
632
|
+
*
|
|
633
|
+
* @param values
|
|
634
|
+
* @param key
|
|
635
|
+
*/
|
|
636
|
+
findMany<TKey extends keyof ModelAttributes<TModel> & string>(values: ModelAttributes<TModel>[TKey][], key: TKey): Promise<ArkormCollection<TModel>>;
|
|
637
|
+
findMany(values: Array<string | number>, key?: string): Promise<ArkormCollection<TModel>>;
|
|
638
|
+
/**
|
|
639
|
+
* Find a related model by a specific key and value, applying relationship constraints, or
|
|
640
|
+
* return the result of the callback if not found.
|
|
641
|
+
*
|
|
642
|
+
* @param value
|
|
643
|
+
* @param callback
|
|
644
|
+
*/
|
|
645
|
+
findOr<TResult>(value: string | number, callback: () => TResult | Promise<TResult>): Promise<TModel | TResult>;
|
|
646
|
+
findOr<TResult>(value: string | number, key: string, callback: () => TResult | Promise<TResult>): Promise<TModel | TResult>;
|
|
647
|
+
/**
|
|
648
|
+
* Find a related model by a specific key and value, applying relationship constraints, or
|
|
649
|
+
* throw an error if not found.
|
|
650
|
+
*
|
|
651
|
+
* @param value
|
|
652
|
+
* @param key
|
|
653
|
+
*/
|
|
654
|
+
findOrFail<TKey extends keyof ModelAttributes<TModel> & string>(value: ModelAttributes<TModel>[TKey], key: TKey): Promise<TModel>;
|
|
655
|
+
findOrFail(value: string | number, key?: string): Promise<TModel>;
|
|
656
|
+
/**
|
|
657
|
+
* Find the first related model by a specific key and value, or create a new instance if not found.
|
|
658
|
+
*
|
|
659
|
+
* @param attributes
|
|
660
|
+
* @param values
|
|
661
|
+
* @returns
|
|
662
|
+
*/
|
|
663
|
+
firstOrNew(attributes: Record<string, unknown>, values?: Record<string, unknown>): Promise<TModel>;
|
|
664
|
+
/**
|
|
665
|
+
* Find the first related model by a specific key and value, or create and save a new instance
|
|
666
|
+
* if not found.
|
|
667
|
+
*
|
|
668
|
+
* @param attributes
|
|
669
|
+
* @param values
|
|
670
|
+
* @returns
|
|
671
|
+
*/
|
|
672
|
+
firstOrCreate(attributes: Record<string, unknown>, values?: Record<string, unknown>): Promise<TModel>;
|
|
673
|
+
/**
|
|
674
|
+
* Find the first related model by a specific key and value, update the first matching record with
|
|
675
|
+
* the given values, or create and save a new instance if no matching record is found.
|
|
676
|
+
*
|
|
677
|
+
* @param attributes
|
|
678
|
+
* @param values
|
|
679
|
+
* @returns
|
|
680
|
+
*/
|
|
681
|
+
updateOrCreate(attributes: Record<string, unknown>, values?: Record<string, unknown>): Promise<TModel>;
|
|
682
|
+
/**
|
|
683
|
+
* Find related models by specific attributes, update matching records with the given values, or
|
|
684
|
+
* create and save new instances if no matching records are found.
|
|
685
|
+
*
|
|
686
|
+
* @param values
|
|
687
|
+
* @param uniqueBy
|
|
688
|
+
* @param update
|
|
689
|
+
* @returns
|
|
690
|
+
*/
|
|
691
|
+
upsert(values: Array<Record<string, unknown>>, uniqueBy: string | string[], update?: string[] | null): Promise<number>;
|
|
692
|
+
/**
|
|
693
|
+
* Paginate the relationship query results.
|
|
694
|
+
*
|
|
695
|
+
* @param perPage
|
|
696
|
+
* @param page
|
|
697
|
+
* @param options
|
|
698
|
+
* @returns
|
|
699
|
+
*/
|
|
700
|
+
paginate(perPage?: number, page?: number, options?: PaginationOptions): Promise<LengthAwarePaginator<TModel>>;
|
|
701
|
+
/**
|
|
702
|
+
* Paginate the relationship query results without total count optimization.
|
|
703
|
+
*
|
|
704
|
+
* @param perPage
|
|
705
|
+
* @param page
|
|
706
|
+
* @param options
|
|
707
|
+
* @returns
|
|
708
|
+
*/
|
|
709
|
+
simplePaginate(perPage?: number, page?: number, options?: PaginationOptions): Promise<Paginator<TModel>>;
|
|
449
710
|
/**
|
|
450
711
|
* Get the results of the relationship query.
|
|
451
712
|
*
|
|
@@ -754,6 +1015,7 @@ declare class HasManyRelation<TParent, TRelated> extends Relation<TRelated> {
|
|
|
754
1015
|
* @returns
|
|
755
1016
|
*/
|
|
756
1017
|
getQuery(): Promise<QueryBuilder<TRelated>>;
|
|
1018
|
+
protected getCreationAttributes(): Record<string, unknown>;
|
|
757
1019
|
getMetadata(): HasManyRelationMetadata;
|
|
758
1020
|
/**
|
|
759
1021
|
* Fetches the related models for this relationship.
|
|
@@ -818,6 +1080,7 @@ declare class HasOneRelation<TParent, TRelated> extends SingleResultRelation<TPa
|
|
|
818
1080
|
* @returns
|
|
819
1081
|
*/
|
|
820
1082
|
getQuery(): Promise<QueryBuilder<TRelated>>;
|
|
1083
|
+
protected getCreationAttributes(): Record<string, unknown>;
|
|
821
1084
|
getMetadata(): HasOneRelationMetadata;
|
|
822
1085
|
/**
|
|
823
1086
|
* Fetches the related models for this relationship.
|
|
@@ -882,6 +1145,7 @@ declare class MorphManyRelation<TParent, TRelated> extends Relation<TRelated> {
|
|
|
882
1145
|
* @returns
|
|
883
1146
|
*/
|
|
884
1147
|
getQuery(): Promise<QueryBuilder<TRelated>>;
|
|
1148
|
+
protected getCreationAttributes(): Record<string, unknown>;
|
|
885
1149
|
getMetadata(): MorphManyRelationMetadata;
|
|
886
1150
|
/**
|
|
887
1151
|
* Fetches the related models for this relationship.
|
|
@@ -912,6 +1176,7 @@ declare class MorphOneRelation<TParent, TRelated> extends SingleResultRelation<T
|
|
|
912
1176
|
* @returns
|
|
913
1177
|
*/
|
|
914
1178
|
getQuery(): Promise<QueryBuilder<TRelated>>;
|
|
1179
|
+
protected getCreationAttributes(): Record<string, unknown>;
|
|
915
1180
|
getMetadata(): MorphOneRelationMetadata;
|
|
916
1181
|
/**
|
|
917
1182
|
* Fetches the related models for this relationship.
|
|
@@ -1955,84 +2220,6 @@ type ModelLifecycleState = {
|
|
|
1955
2220
|
globalScopesSuppressed: number;
|
|
1956
2221
|
};
|
|
1957
2222
|
//#endregion
|
|
1958
|
-
//#region src/Paginator.d.ts
|
|
1959
|
-
/**
|
|
1960
|
-
* The LengthAwarePaginator class encapsulates paginated results with full
|
|
1961
|
-
* metadata including the total result count and last page.
|
|
1962
|
-
*
|
|
1963
|
-
* @template T The type of the data being paginated.
|
|
1964
|
-
* @author Legacy (3m1n3nc3)
|
|
1965
|
-
* @since 0.1.0
|
|
1966
|
-
*/
|
|
1967
|
-
declare class LengthAwarePaginator<T> {
|
|
1968
|
-
readonly data: ArkormCollection<T>;
|
|
1969
|
-
readonly meta: PaginationMeta;
|
|
1970
|
-
private readonly urlDriver;
|
|
1971
|
-
/**
|
|
1972
|
-
* Creates a new LengthAwarePaginator instance.
|
|
1973
|
-
*
|
|
1974
|
-
* @param data The collection of data being paginated.
|
|
1975
|
-
* @param total The total number of items.
|
|
1976
|
-
* @param perPage The number of items per page.
|
|
1977
|
-
* @param currentPage The current page number.
|
|
1978
|
-
* @param options URL generation options.
|
|
1979
|
-
*/
|
|
1980
|
-
constructor(data: ArkormCollection<T>, total: number, perPage: number, currentPage: number, options?: PaginationOptions);
|
|
1981
|
-
getPageName(): string;
|
|
1982
|
-
url(page: number): string;
|
|
1983
|
-
nextPageUrl(): string | null;
|
|
1984
|
-
previousPageUrl(): string | null;
|
|
1985
|
-
firstPageUrl(): string;
|
|
1986
|
-
lastPageUrl(): string;
|
|
1987
|
-
/**
|
|
1988
|
-
* Converts the paginator instance to a JSON-serializable object.
|
|
1989
|
-
*
|
|
1990
|
-
* @returns
|
|
1991
|
-
*/
|
|
1992
|
-
toJSON(): {
|
|
1993
|
-
data: ArkormCollection<T, T[]>;
|
|
1994
|
-
meta: PaginationMeta;
|
|
1995
|
-
links: {
|
|
1996
|
-
first: string;
|
|
1997
|
-
last: string;
|
|
1998
|
-
prev: string | null;
|
|
1999
|
-
next: string | null;
|
|
2000
|
-
};
|
|
2001
|
-
};
|
|
2002
|
-
}
|
|
2003
|
-
/**
|
|
2004
|
-
* The Paginator class encapsulates simple pagination results without total count.
|
|
2005
|
-
*
|
|
2006
|
-
* @template T The type of the data being paginated.
|
|
2007
|
-
*/
|
|
2008
|
-
declare class Paginator<T> {
|
|
2009
|
-
readonly data: ArkormCollection<T>;
|
|
2010
|
-
readonly meta: SimplePaginationMeta;
|
|
2011
|
-
private readonly urlDriver;
|
|
2012
|
-
/**
|
|
2013
|
-
* Creates a new simple Paginator instance.
|
|
2014
|
-
*
|
|
2015
|
-
* @param data The collection of data being paginated.
|
|
2016
|
-
* @param perPage The number of items per page.
|
|
2017
|
-
* @param currentPage The current page number.
|
|
2018
|
-
* @param hasMorePages Indicates whether additional pages exist.
|
|
2019
|
-
* @param options URL generation options.
|
|
2020
|
-
*/
|
|
2021
|
-
constructor(data: ArkormCollection<T>, perPage: number, currentPage: number, hasMorePages: boolean, options?: PaginationOptions);
|
|
2022
|
-
getPageName(): string;
|
|
2023
|
-
url(page: number): string;
|
|
2024
|
-
nextPageUrl(): string | null;
|
|
2025
|
-
previousPageUrl(): string | null;
|
|
2026
|
-
toJSON(): {
|
|
2027
|
-
data: ArkormCollection<T, T[]>;
|
|
2028
|
-
meta: SimplePaginationMeta;
|
|
2029
|
-
links: {
|
|
2030
|
-
prev: string | null;
|
|
2031
|
-
next: string | null;
|
|
2032
|
-
};
|
|
2033
|
-
};
|
|
2034
|
-
}
|
|
2035
|
-
//#endregion
|
|
2036
2223
|
//#region src/QueryBuilder.d.ts
|
|
2037
2224
|
/**
|
|
2038
2225
|
* The QueryBuilder class provides a fluent interface for building and
|
|
@@ -5729,4 +5916,4 @@ declare class URLDriver {
|
|
|
5729
5916
|
url(page: number): string;
|
|
5730
5917
|
}
|
|
5731
5918
|
//#endregion
|
|
5732
|
-
export { deriveInverseRelationAlias as $, defineFactory as $a, PrismaTransactionContext as $i, getRegisteredPaths as $n, SchemaForeignKeyAction as $o, RawQuerySpec as $r, getPersistedTableMetadata as $t, resetArkormRuntimeForTests as A, AttributeUpdateInput as Aa, DelegateUpdateData as Ai, MigrateRollbackCommand as An, HasManyThroughRelationMetadata as Ao, AdapterTransactionContext as Ar, getLatestAppliedMigrations as At, applyMigrationRollbackToPrismaSchema as B, ModelEventHandler as Ba, PaginationURLDriver as Bi, Attribute as Bn, AppliedMigrationEntry as Bo, DeleteSpec as Br, writeAppliedMigrationsStateToStore as Bt, getRuntimePaginationURLDriverFactory as C, LengthAwarePaginator as Ca, DelegateInclude as Ci, SchemaBuilder as Cn, FactoryState as Co, AdapterCapability as Cr, buildMigrationIdentity as Ct, isQuerySchemaLike as D, AttributeQuerySchema as Da, DelegateSelect as Di, SeedCommand as Dn, BelongsToRelationMetadata as Do, AdapterModelIntrospectionOptions as Dr, deleteAppliedMigrationsStateFromStore as Dt, isDelegateLike as E, AttributeOrderBy as Ea, DelegateRows as Ei, ForeignKeyBuilder as En, BelongsToManyRelationMetadata as Eo, AdapterModelFieldStructure as Er, createEmptyAppliedMigrationsState as Et, PRISMA_MODEL_REGEX as F, ModelAttributes as Fa, ModelQuerySchemaLike as Fi, MakeMigrationCommand as Fn, MorphOneRelationMetadata as Fo, DatabasePrimitive as Fr, readAppliedMigrationsStateFromStore as Ft, buildFieldLine as G, ModelRelationshipKey as Ga, PrismaLikeInclude as Gi, RegisteredModel as Gn, MigrationClass as Go, QueryCondition as Gr, PersistedTimestampColumn as Gt, applyMigrationToPrismaSchema as H, ModelEventListener as Ha, PrismaClientLike as Hi, Arkorm as Hn, AppliedMigrationsState as Ho, InsertSpec as Hr, PersistedMetadataFeatures as Ht, applyAlterTableOperation as I, ModelAttributesOf as Ia, ModelTableCase as Ii, MakeFactoryCommand as In, MorphToManyRelationMetadata as Io, DatabaseRow as Ir, removeAppliedMigration as It, buildMigrationSource as J, QuerySchemaForModel as Ja, PrismaLikeSelect as Ji, RuntimePathKey as Jn, PrismaMigrationWorkflowOptions as Jo, QueryNotCondition as Jr, deletePersistedColumnMappingsState as Jt, buildIndexLine as K, ModelRelationshipResult as Ka, PrismaLikeOrderBy as Ki, RuntimeConstructor as Kn, MigrationInstanceLike as Ko, QueryGroupCondition as Kr, applyOperationsToPersistedColumnMappingsState as Kt, applyCreateTableOperation as L, ModelCreateData as La, PaginationCurrentPageResolver as Li, InitCommand as Ln, PivotModelStatic as Lo, DatabaseRows as Lr, resolveMigrationStateFilePath as Lt, PrimaryKeyGenerationPlanner as M, DelegateForModelSchema as Ma, EagerLoadConstraint as Mi, MigrateCommand as Mn, HasOneThroughRelationMetadata as Mo, AggregateSelection as Mr, markMigrationApplied as Mt, PRISMA_ENUM_MEMBER_REGEX as N, GlobalScope as Na, EagerLoadMap as Ni, MakeSeederCommand as Nn, ModelMetadata as No, AggregateSpec as Nr, markMigrationRun as Nt, isTransactionCapableClient as O, AttributeSchemaDelegate as Oa, DelegateUniqueWhere as Oi, ModelsSyncCommand as On, ColumnMap as Oo, AdapterModelStructure as Or, findAppliedMigration as Ot, PRISMA_ENUM_REGEX as P, ModelAttributeValue as Pa, GetUserConfig as Pi, MakeModelCommand as Pn, MorphManyRelationMetadata as Po, DatabaseAdapter as Pr, readAppliedMigrationsState as Pt, deriveCollectionFieldName as Q, ModelFactory as Qa, PrismaTransactionCapableClient as Qi, getRegisteredModels as Qn, SchemaForeignKey as Qo, QueryTarget as Qr, getPersistedPrimaryKeyGeneration as Qt, applyDropTableOperation as R, ModelDeclaredAttributeKey as Ra, PaginationMeta as Ri, CliApp as Rn, RelationMetadata as Ro, DatabaseValue as Rr, supportsDatabaseMigrationState as Rt, getRuntimePaginationCurrentPageResolver as S, QueryBuilder as Sa, DelegateFindManyArgs as Si, Migration as Sn, FactoryModelConstructor as So, AdapterCapabilities as Sr, toModelName as St, getUserConfig as T, AttributeCreateInput as Ta, DelegateRow as Ti, TableBuilder as Tn, DatabaseTablePersistedMetadataOptions as To, AdapterInspectionRequest as Tr, computeMigrationChecksum as Tt, applyOperationsToPrismaSchema as U, ModelEventName as Ua, PrismaDelegateLike as Ui, Arkormx as Un, GenerateMigrationOptions as Uo, QueryComparisonCondition as Ur, PersistedPrimaryKeyGeneration as Ut, applyMigrationToDatabase as V, ModelEventHandlerConstructor as Va, PaginationURLDriverFactory as Vi, AttributeOptions as Vn, AppliedMigrationRun as Vo, InsertManySpec as Vr, PersistedColumnMappingsState as Vt, buildEnumBlock as W, ModelLifecycleState as Wa, PrismaFindManyArgsLike as Wi, RegisteredFactory as Wn, GeneratedMigrationFile as Wo, QueryComparisonOperator as Wr, PersistedTableMetadata as Wt, buildRelationLine as X, Model as Xa, PrismaLikeWhereInput as Xi, getRegisteredFactories as Xn, SchemaColumn as Xo, QueryRawCondition as Xr, getPersistedEnumMap as Xt, buildModelBlock as Y, RelatedModelClass as Ya, PrismaLikeSortOrder as Yi, RuntimePathMap as Yn, PrismaSchemaSyncOptions as Yo, QueryOrderBy as Yr, getPersistedColumnMap as Yt, createMigrationTimestamp as Z, InlineFactory as Za, PrismaTransactionCallback as Zi, getRegisteredMigrations as Zn, SchemaColumnType as Zo, QuerySelectColumn as Zr, getPersistedEnumTsType as Zt, getActiveTransactionClient as _, TransactionCapableClient as _a, CastHandler as _i, MissingDelegateException as _n, RelationMetadataProvider as _o, PrismaDelegateNameMapping as _r, stripPrismaSchemaModelsAndEnums as _t, resolveRuntimeCompatibilityQuerySchema as a, QuerySchemaRow as aa, SoftDeleteQueryMode as ai, resolvePersistedMetadataFeatures as an, HasOneRelation as ao, registerFactories as ar, TimestampColumnBehavior as as, findModelBlock as at, getRuntimeClient as b, ModelStatic as ba, ClientResolver as bi, DB as bn, FactoryAttributes as bo, KyselyDatabaseAdapter as br, supportsDatabaseReset as bt, createPrismaAdapter as c, QuerySchemaUniqueWhere as ca, UpdateSpec as ci, writePersistedColumnMappingsState as cn, BelongsToRelation as co, registerPaths as cr, formatRelationAction as ct, bindAdapterToModels as d, QuerySchemaWhere as da, AdapterQueryInspection as di, ScopeNotDefinedException as dn, Relation as do, SEEDER_BRAND as dr, pad as dt, PrismaTransactionOptions as ea, RelationAggregateSpec as ei, getPersistedTimestampColumns as en, SetBasedEagerLoader as eo, getRegisteredSeeders as er, SchemaIndex as es, deriveRelationAlias as et, configureArkormRuntime as f, RuntimeClientLike as fa, ArkormBootContext as fi, RelationResolutionException as fn, RelationTableLoader as fo, Seeder as fr, resolveEnumName as ft, getActiveTransactionAdapter as g, TransactionCallback as ga, CastDefinition as gi, ModelNotFoundException as gn, RelationDefaultValue as go, PrismaDatabaseAdapter as gr, runPrismaCommand as gt, ensureArkormConfigLoading as h, SoftDeleteConfig as ha, ArkormDebugHandler as hi, QueryConstraintException as hn, RelationDefaultResolver as ho, SeederInput as hr, runMigrationWithPrisma as ht, getRuntimeCompatibilityAdapter as i, QuerySchemaOrderBy as ia, SelectSpec as ii, resolveColumnMappingsFilePath as in, HasOneThroughRelation as io, loadSeedersFrom as ir, SchemaTableDropOperation as is, findEnumBlock as it, runArkormTransaction as j, AttributeWhereInput as ja, DelegateWhere as ji, MigrateFreshCommand as jn, HasOneRelationMetadata as jo, AggregateOperation as jr, isMigrationApplied as jt, loadArkormConfig as k, AttributeSelect as ka, DelegateUpdateArgs as ki, MigrationHistoryCommand as kn, HasManyRelationMetadata as ko, AdapterQueryOperation as kr, getLastMigrationRun as kt, createPrismaDelegateMap as l, QuerySchemaUpdateArgs as la, UpsertSpec as li, UnsupportedAdapterFeatureException as ln, SingleResultRelation as lo, registerSeeders as lr, generateMigrationFile as lt, emitRuntimeDebugEvent as m, SimplePaginationMeta as ma, ArkormDebugEvent as mi, QueryExecutionExceptionContext as mn, RelationConstraint as mo, SeederConstructor as mr, resolvePrismaType as mt, PivotModel as n, QuerySchemaFindManyArgs as na, RelationLoadPlan as ni, rebuildPersistedColumnMappingsState as nn, MorphOneRelation as no, loadMigrationsFrom as nr, SchemaTableAlterOperation as ns, deriveSingularFieldName as nt, resolveRuntimeCompatibilityQuerySchemaOrThrow as o, QuerySchemaRows as oa, SortDirection as oi, syncPersistedColumnMappingsFromState as on, HasManyThroughRelation as oo, registerMigrations as or, formatDefaultValue as ot, defineConfig as p, Serializable as pa, ArkormConfig as pi, QueryExecutionException as pn, RelationColumnLookupSpec as po, SeederCallArgument as pr, resolveMigrationClassName as pt, buildInverseRelationLine as q, ModelUpdateData as qa, PrismaLikeScalarFilter as qi, RuntimePathInput as qn, PrimaryKeyGeneration as qo, QueryLogicalOperator as qr, createEmptyPersistedColumnMappingsState as qt, RuntimeModuleLoader as r, QuerySchemaInclude as ra, RelationLoadSpec as ri, resetPersistedColumnMappingsCache as rn, MorphManyRelation as ro, loadModelsFrom as rr, SchemaTableCreateOperation as rs, escapeRegex as rt, PrismaDelegateMap as s, QuerySchemaSelect as sa, UpdateManySpec as si, validatePersistedMetadataFeaturesForMigrations as sn, HasManyRelation as so, registerModels as sr, formatEnumDefaultValue as st, URLDriver as t, QuerySchemaCreateData as ta, RelationFilterSpec as ti, readPersistedColumnMappingsState as tn, MorphToManyRelation as to, loadFactoriesFrom as tr, SchemaOperation as ts, deriveRelationFieldName as tt, inferDelegateName as u, QuerySchemaUpdateData as ua, AdapterBindableModel as ui, UniqueConstraintResolutionException as un, BelongsToManyRelation as uo, resetRuntimeRegistryForTests as ur, getMigrationPlan as ut, getDefaultStubsPath as v, TransactionContext as va, CastMap as vi, ArkormErrorContext as vn, RelationTableLookupSpec as vo, createPrismaCompatibilityAdapter as vr, supportsDatabaseCreation as vt, getRuntimePrismaClient as w, Paginator as wa, DelegateOrderBy as wi, EnumBuilder as wn, DatabaseTableOptions as wo, AdapterDatabaseCreationResult as wr, buildMigrationRunId as wt, getRuntimeDebugHandler as x, RelationshipModelStatic as xa, DelegateCreateData as xi, MIGRATION_BRAND as xn, FactoryDefinition as xo, createKyselyAdapter as xr, toMigrationFileSlug as xt, getRuntimeAdapter as y, TransactionOptions as ya, CastType as yi, ArkormException as yn, ArkormCollection as yo, createPrismaDatabaseAdapter as yr, supportsDatabaseMigrationExecution as yt, applyMigrationRollbackToDatabase as z, ModelEventDispatcher as za, PaginationOptions as zi, resolveCast as zn, RelationMetadataType as zo, DeleteManySpec as zr, writeAppliedMigrationsState as zt };
|
|
5919
|
+
export { deriveInverseRelationAlias as $, MorphToManyRelation as $a, PrismaTransactionContext as $i, getRegisteredPaths as $n, SchemaForeignKeyAction as $o, RawQuerySpec as $r, getPersistedTableMetadata as $t, resetArkormRuntimeForTests as A, DelegateForModelSchema as Aa, DelegateUpdateData as Ai, MigrateRollbackCommand as An, HasManyThroughRelationMetadata as Ao, AdapterTransactionContext as Ar, getLatestAppliedMigrations as At, applyMigrationRollbackToPrismaSchema as B, ModelEventListener as Ba, PaginationURLDriver as Bi, Attribute as Bn, AppliedMigrationEntry as Bo, DeleteSpec as Br, writeAppliedMigrationsStateToStore as Bt, getRuntimePaginationURLDriverFactory as C, AttributeCreateInput as Ca, DelegateInclude as Ci, SchemaBuilder as Cn, FactoryState as Co, AdapterCapability as Cr, buildMigrationIdentity as Ct, isQuerySchemaLike as D, AttributeSelect as Da, DelegateSelect as Di, SeedCommand as Dn, BelongsToRelationMetadata as Do, AdapterModelIntrospectionOptions as Dr, deleteAppliedMigrationsStateFromStore as Dt, isDelegateLike as E, AttributeSchemaDelegate as Ea, DelegateRows as Ei, ForeignKeyBuilder as En, BelongsToManyRelationMetadata as Eo, AdapterModelFieldStructure as Er, createEmptyAppliedMigrationsState as Et, PRISMA_MODEL_REGEX as F, ModelCreateData as Fa, ModelQuerySchemaLike as Fi, MakeMigrationCommand as Fn, MorphOneRelationMetadata as Fo, DatabasePrimitive as Fr, readAppliedMigrationsStateFromStore as Ft, buildFieldLine as G, ModelUpdateData as Ga, PrismaLikeInclude as Gi, RegisteredModel as Gn, MigrationClass as Go, QueryCondition as Gr, PersistedTimestampColumn as Gt, applyMigrationToPrismaSchema as H, ModelLifecycleState as Ha, PrismaClientLike as Hi, Arkorm as Hn, AppliedMigrationsState as Ho, InsertSpec as Hr, PersistedMetadataFeatures as Ht, applyAlterTableOperation as I, ModelDeclaredAttributeKey as Ia, ModelTableCase as Ii, MakeFactoryCommand as In, MorphToManyRelationMetadata as Io, DatabaseRow as Ir, removeAppliedMigration as It, buildMigrationSource as J, Model as Ja, PrismaLikeSelect as Ji, RuntimePathKey as Jn, PrismaMigrationWorkflowOptions as Jo, QueryNotCondition as Jr, deletePersistedColumnMappingsState as Jt, buildIndexLine as K, QuerySchemaForModel as Ka, PrismaLikeOrderBy as Ki, RuntimeConstructor as Kn, MigrationInstanceLike as Ko, QueryGroupCondition as Kr, applyOperationsToPersistedColumnMappingsState as Kt, applyCreateTableOperation as L, ModelEventDispatcher as La, PaginationCurrentPageResolver as Li, InitCommand as Ln, PivotModelStatic as Lo, DatabaseRows as Lr, resolveMigrationStateFilePath as Lt, PrimaryKeyGenerationPlanner as M, ModelAttributeValue as Ma, EagerLoadConstraint as Mi, MigrateCommand as Mn, HasOneThroughRelationMetadata as Mo, AggregateSelection as Mr, markMigrationApplied as Mt, PRISMA_ENUM_MEMBER_REGEX as N, ModelAttributes as Na, EagerLoadMap as Ni, MakeSeederCommand as Nn, ModelMetadata as No, AggregateSpec as Nr, markMigrationRun as Nt, isTransactionCapableClient as O, AttributeUpdateInput as Oa, DelegateUniqueWhere as Oi, ModelsSyncCommand as On, ColumnMap as Oo, AdapterModelStructure as Or, findAppliedMigration as Ot, PRISMA_ENUM_REGEX as P, ModelAttributesOf as Pa, GetUserConfig as Pi, MakeModelCommand as Pn, MorphManyRelationMetadata as Po, DatabaseAdapter as Pr, readAppliedMigrationsState as Pt, deriveCollectionFieldName as Q, SetBasedEagerLoader as Qa, PrismaTransactionCapableClient as Qi, getRegisteredModels as Qn, SchemaForeignKey as Qo, QueryTarget as Qr, getPersistedPrimaryKeyGeneration as Qt, applyDropTableOperation as R, ModelEventHandler as Ra, PaginationMeta as Ri, CliApp as Rn, RelationMetadata as Ro, DatabaseValue as Rr, supportsDatabaseMigrationState as Rt, getRuntimePaginationCurrentPageResolver as S, QueryBuilder as Sa, DelegateFindManyArgs as Si, Migration as Sn, FactoryModelConstructor as So, AdapterCapabilities as Sr, toModelName as St, getUserConfig as T, AttributeQuerySchema as Ta, DelegateRow as Ti, TableBuilder as Tn, DatabaseTablePersistedMetadataOptions as To, AdapterInspectionRequest as Tr, computeMigrationChecksum as Tt, applyOperationsToPrismaSchema as U, ModelRelationshipKey as Ua, PrismaDelegateLike as Ui, Arkormx as Un, GenerateMigrationOptions as Uo, QueryComparisonCondition as Ur, PersistedPrimaryKeyGeneration as Ut, applyMigrationToDatabase as V, ModelEventName as Va, PaginationURLDriverFactory as Vi, AttributeOptions as Vn, AppliedMigrationRun as Vo, InsertManySpec as Vr, PersistedColumnMappingsState as Vt, buildEnumBlock as W, ModelRelationshipResult as Wa, PrismaFindManyArgsLike as Wi, RegisteredFactory as Wn, GeneratedMigrationFile as Wo, QueryComparisonOperator as Wr, PersistedTableMetadata as Wt, buildRelationLine as X, ModelFactory as Xa, PrismaLikeWhereInput as Xi, getRegisteredFactories as Xn, SchemaColumn as Xo, QueryRawCondition as Xr, getPersistedEnumMap as Xt, buildModelBlock as Y, InlineFactory as Ya, PrismaLikeSortOrder as Yi, RuntimePathMap as Yn, PrismaSchemaSyncOptions as Yo, QueryOrderBy as Yr, getPersistedColumnMap as Yt, createMigrationTimestamp as Z, defineFactory as Za, PrismaTransactionCallback as Zi, getRegisteredMigrations as Zn, SchemaColumnType as Zo, QuerySelectColumn as Zr, getPersistedEnumTsType as Zt, getActiveTransactionClient as _, TransactionCapableClient as _a, CastHandler as _i, MissingDelegateException as _n, LengthAwarePaginator as _o, PrismaDelegateNameMapping as _r, stripPrismaSchemaModelsAndEnums as _t, resolveRuntimeCompatibilityQuerySchema as a, QuerySchemaRow as aa, SoftDeleteQueryMode as ai, resolvePersistedMetadataFeatures as an, HasManyRelation as ao, registerFactories as ar, TimestampColumnBehavior as as, findModelBlock as at, getRuntimeClient as b, ModelStatic as ba, ClientResolver as bi, DB as bn, FactoryAttributes as bo, KyselyDatabaseAdapter as br, supportsDatabaseReset as bt, createPrismaAdapter as c, QuerySchemaUniqueWhere as ca, UpdateSpec as ci, writePersistedColumnMappingsState as cn, BelongsToManyRelation as co, registerPaths as cr, formatRelationAction as ct, bindAdapterToModels as d, QuerySchemaWhere as da, AdapterQueryInspection as di, ScopeNotDefinedException as dn, RelationColumnLookupSpec as do, SEEDER_BRAND as dr, pad as dt, PrismaTransactionOptions as ea, RelationAggregateSpec as ei, getPersistedTimestampColumns as en, MorphOneRelation as eo, getRegisteredSeeders as er, SchemaIndex as es, deriveRelationAlias as et, configureArkormRuntime as f, RuntimeClientLike as fa, ArkormBootContext as fi, RelationResolutionException as fn, RelationConstraint as fo, Seeder as fr, resolveEnumName as ft, getActiveTransactionAdapter as g, TransactionCallback as ga, CastDefinition as gi, ModelNotFoundException as gn, RelationTableLookupSpec as go, PrismaDatabaseAdapter as gr, runPrismaCommand as gt, ensureArkormConfigLoading as h, SoftDeleteConfig as ha, ArkormDebugHandler as hi, QueryConstraintException as hn, RelationMetadataProvider as ho, SeederInput as hr, runMigrationWithPrisma as ht, getRuntimeCompatibilityAdapter as i, QuerySchemaOrderBy as ia, SelectSpec as ii, resolveColumnMappingsFilePath as in, HasManyThroughRelation as io, loadSeedersFrom as ir, SchemaTableDropOperation as is, findEnumBlock as it, runArkormTransaction as j, GlobalScope as ja, DelegateWhere as ji, MigrateFreshCommand as jn, HasOneRelationMetadata as jo, AggregateOperation as jr, isMigrationApplied as jt, loadArkormConfig as k, AttributeWhereInput as ka, DelegateUpdateArgs as ki, MigrationHistoryCommand as kn, HasManyRelationMetadata as ko, AdapterQueryOperation as kr, getLastMigrationRun as kt, createPrismaDelegateMap as l, QuerySchemaUpdateArgs as la, UpsertSpec as li, UnsupportedAdapterFeatureException as ln, Relation as lo, registerSeeders as lr, generateMigrationFile as lt, emitRuntimeDebugEvent as m, SimplePaginationMeta as ma, ArkormDebugEvent as mi, QueryExecutionExceptionContext as mn, RelationDefaultValue as mo, SeederConstructor as mr, resolvePrismaType as mt, PivotModel as n, QuerySchemaFindManyArgs as na, RelationLoadPlan as ni, rebuildPersistedColumnMappingsState as nn, HasOneThroughRelation as no, loadMigrationsFrom as nr, SchemaTableAlterOperation as ns, deriveSingularFieldName as nt, resolveRuntimeCompatibilityQuerySchemaOrThrow as o, QuerySchemaRows as oa, SortDirection as oi, syncPersistedColumnMappingsFromState as on, BelongsToRelation as oo, registerMigrations as or, formatDefaultValue as ot, defineConfig as p, Serializable as pa, ArkormConfig as pi, QueryExecutionException as pn, RelationDefaultResolver as po, SeederCallArgument as pr, resolveMigrationClassName as pt, buildInverseRelationLine as q, RelatedModelClass as qa, PrismaLikeScalarFilter as qi, RuntimePathInput as qn, PrimaryKeyGeneration as qo, QueryLogicalOperator as qr, createEmptyPersistedColumnMappingsState as qt, RuntimeModuleLoader as r, QuerySchemaInclude as ra, RelationLoadSpec as ri, resetPersistedColumnMappingsCache as rn, HasOneRelation as ro, loadModelsFrom as rr, SchemaTableCreateOperation as rs, escapeRegex as rt, PrismaDelegateMap as s, QuerySchemaSelect as sa, UpdateManySpec as si, validatePersistedMetadataFeaturesForMigrations as sn, SingleResultRelation as so, registerModels as sr, formatEnumDefaultValue as st, URLDriver as t, QuerySchemaCreateData as ta, RelationFilterSpec as ti, readPersistedColumnMappingsState as tn, MorphManyRelation as to, loadFactoriesFrom as tr, SchemaOperation as ts, deriveRelationFieldName as tt, inferDelegateName as u, QuerySchemaUpdateData as ua, AdapterBindableModel as ui, UniqueConstraintResolutionException as un, RelationTableLoader as uo, resetRuntimeRegistryForTests as ur, getMigrationPlan as ut, getDefaultStubsPath as v, TransactionContext as va, CastMap as vi, ArkormErrorContext as vn, Paginator as vo, createPrismaCompatibilityAdapter as vr, supportsDatabaseCreation as vt, getRuntimePrismaClient as w, AttributeOrderBy as wa, DelegateOrderBy as wi, EnumBuilder as wn, DatabaseTableOptions as wo, AdapterDatabaseCreationResult as wr, buildMigrationRunId as wt, getRuntimeDebugHandler as x, RelationshipModelStatic as xa, DelegateCreateData as xi, MIGRATION_BRAND as xn, FactoryDefinition as xo, createKyselyAdapter as xr, toMigrationFileSlug as xt, getRuntimeAdapter as y, TransactionOptions as ya, CastType as yi, ArkormException as yn, ArkormCollection as yo, createPrismaDatabaseAdapter as yr, supportsDatabaseMigrationExecution as yt, applyMigrationRollbackToDatabase as z, ModelEventHandlerConstructor as za, PaginationOptions as zi, resolveCast as zn, RelationMetadataType as zo, DeleteManySpec as zr, writeAppliedMigrationsState as zt };
|