arkormx 2.2.0 → 2.2.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-CAb-D9th.d.mts → index-CEynlcyE.d.cts} +248 -140
- package/dist/{index-isqbM3Ch.d.cts → index-D_gtCoPF.d.mts} +248 -140
- package/dist/index.cjs +139 -0
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +138 -1
- package/dist/relationship/index.d.cts +1 -1
- package/dist/relationship/index.d.mts +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Collection } from "@h3ravel/collect.js";
|
|
2
1
|
import { Kysely, Transaction } from "kysely";
|
|
3
|
-
import { Command } from "@h3ravel/musket";
|
|
4
2
|
import { PrismaClient } from "@prisma/client";
|
|
3
|
+
import { Collection } from "@h3ravel/collect.js";
|
|
4
|
+
import { Command } from "@h3ravel/musket";
|
|
5
5
|
|
|
6
6
|
//#region src/types/migrations.d.ts
|
|
7
7
|
type SchemaColumnType = 'id' | 'uuid' | 'enum' | 'string' | 'text' | 'integer' | 'bigInteger' | 'float' | 'boolean' | 'json' | 'date' | 'timestamp';
|
|
@@ -3849,6 +3849,251 @@ declare const createPrismaDatabaseAdapter: (prisma: PrismaClientLike, mapping?:
|
|
|
3849
3849
|
*/
|
|
3850
3850
|
declare const createPrismaCompatibilityAdapter: (prisma: PrismaClientLike, mapping?: PrismaDelegateNameMapping) => PrismaDatabaseAdapter;
|
|
3851
3851
|
//#endregion
|
|
3852
|
+
//#region src/database/Seeder.d.ts
|
|
3853
|
+
type SeederConstructor = new () => Seeder;
|
|
3854
|
+
type SeederInput = Seeder | SeederConstructor;
|
|
3855
|
+
type SeederCallArgument = SeederInput | SeederInput[];
|
|
3856
|
+
declare const SEEDER_BRAND: unique symbol;
|
|
3857
|
+
/**
|
|
3858
|
+
* The Seeder class serves as a base for defining database seeders, which are
|
|
3859
|
+
* used to populate the database with initial or test data.
|
|
3860
|
+
*
|
|
3861
|
+
* @author Legacy (3m1n3nc3)
|
|
3862
|
+
* @since 0.1.0
|
|
3863
|
+
*/
|
|
3864
|
+
declare abstract class Seeder {
|
|
3865
|
+
static readonly [SEEDER_BRAND] = true;
|
|
3866
|
+
/**
|
|
3867
|
+
* Defines the operations to be performed when running the seeder.
|
|
3868
|
+
*/
|
|
3869
|
+
abstract run(): Promise<void> | void;
|
|
3870
|
+
/**
|
|
3871
|
+
* Runs one or more seeders.
|
|
3872
|
+
*
|
|
3873
|
+
* @param seeders The seeders to be run.
|
|
3874
|
+
*/
|
|
3875
|
+
call(...seeders: SeederCallArgument[]): Promise<void>;
|
|
3876
|
+
/**
|
|
3877
|
+
* Converts a SeederInput into a Seeder instance.
|
|
3878
|
+
*
|
|
3879
|
+
* @param input The SeederInput to convert.
|
|
3880
|
+
* @returns A Seeder instance.
|
|
3881
|
+
*/
|
|
3882
|
+
private static toSeederInstance;
|
|
3883
|
+
/**
|
|
3884
|
+
* Runs the given seeders in sequence.
|
|
3885
|
+
*
|
|
3886
|
+
* @param seeders The seeders to be run.
|
|
3887
|
+
*/
|
|
3888
|
+
private static runSeeders;
|
|
3889
|
+
}
|
|
3890
|
+
//#endregion
|
|
3891
|
+
//#region src/helpers/runtime-registry.d.ts
|
|
3892
|
+
type RuntimePathKey = 'models' | 'seeders' | 'migrations' | 'factories';
|
|
3893
|
+
type RuntimePathInput = string | string[];
|
|
3894
|
+
type RuntimePathMap = Partial<Record<RuntimePathKey, RuntimePathInput>>;
|
|
3895
|
+
type RuntimeConstructor = new (...args: any[]) => any;
|
|
3896
|
+
type RegisteredModel = RuntimeConstructor;
|
|
3897
|
+
type RegisteredFactory = RuntimeConstructor | object;
|
|
3898
|
+
/**
|
|
3899
|
+
* Register additional runtime discovery paths without replacing configured paths.
|
|
3900
|
+
*
|
|
3901
|
+
* @param paths
|
|
3902
|
+
*/
|
|
3903
|
+
declare const registerPaths: (paths: RuntimePathMap) => void;
|
|
3904
|
+
/**
|
|
3905
|
+
* Register additional runtime discovery paths for migrations without replacing configured paths.
|
|
3906
|
+
*
|
|
3907
|
+
* @param paths
|
|
3908
|
+
* @returns
|
|
3909
|
+
*/
|
|
3910
|
+
declare const loadMigrationsFrom: (paths: RuntimePathInput) => void;
|
|
3911
|
+
/**
|
|
3912
|
+
* Register additional runtime discovery paths for seeders without replacing configured paths.
|
|
3913
|
+
*
|
|
3914
|
+
* @param paths
|
|
3915
|
+
* @returns
|
|
3916
|
+
*/
|
|
3917
|
+
declare const loadSeedersFrom: (paths: RuntimePathInput) => void;
|
|
3918
|
+
/**
|
|
3919
|
+
* Register additional runtime discovery paths for models without replacing configured paths.
|
|
3920
|
+
*
|
|
3921
|
+
* @param paths
|
|
3922
|
+
* @returns
|
|
3923
|
+
*/
|
|
3924
|
+
declare const loadModelsFrom: (paths: RuntimePathInput) => void;
|
|
3925
|
+
/**
|
|
3926
|
+
* Register additional runtime discovery paths for factories without replacing configured paths.
|
|
3927
|
+
*
|
|
3928
|
+
* @param paths
|
|
3929
|
+
* @returns
|
|
3930
|
+
*/
|
|
3931
|
+
declare const loadFactoriesFrom: (paths: RuntimePathInput) => void;
|
|
3932
|
+
/**
|
|
3933
|
+
* Register migration constructors directly without relying on runtime discovery.
|
|
3934
|
+
*
|
|
3935
|
+
* @param migrations
|
|
3936
|
+
*/
|
|
3937
|
+
declare const registerMigrations: (...migrations: Array<MigrationClass | MigrationClass[]>) => void;
|
|
3938
|
+
/**
|
|
3939
|
+
* Register seeder constructors directly without relying on runtime discovery.
|
|
3940
|
+
*
|
|
3941
|
+
* @param seeders
|
|
3942
|
+
*/
|
|
3943
|
+
declare const registerSeeders: (...seeders: Array<SeederConstructor | SeederConstructor[]>) => void;
|
|
3944
|
+
/**
|
|
3945
|
+
* Register model constructors directly without relying on runtime discovery.
|
|
3946
|
+
*
|
|
3947
|
+
* @param models
|
|
3948
|
+
*/
|
|
3949
|
+
declare const registerModels: (...models: Array<RegisteredModel | RegisteredModel[]>) => void;
|
|
3950
|
+
/**
|
|
3951
|
+
* Register factory constructors or instances directly without relying on runtime discovery.
|
|
3952
|
+
*
|
|
3953
|
+
* @param factories
|
|
3954
|
+
*/
|
|
3955
|
+
declare const registerFactories: (...factories: Array<RegisteredFactory | RegisteredFactory[]>) => void;
|
|
3956
|
+
/**
|
|
3957
|
+
* Get registered runtime discovery paths or registered constructors for a specific type.
|
|
3958
|
+
*
|
|
3959
|
+
* @param key
|
|
3960
|
+
* @returns
|
|
3961
|
+
*/
|
|
3962
|
+
declare const getRegisteredPaths: (key?: RuntimePathKey) => string[] | Record<RuntimePathKey, string[]>;
|
|
3963
|
+
/**
|
|
3964
|
+
* Get registered migration constructors instances.
|
|
3965
|
+
*
|
|
3966
|
+
* @returns
|
|
3967
|
+
*/
|
|
3968
|
+
declare const getRegisteredMigrations: () => MigrationClass[];
|
|
3969
|
+
/**
|
|
3970
|
+
* Get registered seeder constructors instances.
|
|
3971
|
+
*
|
|
3972
|
+
* @returns
|
|
3973
|
+
*/
|
|
3974
|
+
declare const getRegisteredSeeders: () => SeederConstructor[];
|
|
3975
|
+
/**
|
|
3976
|
+
* Get registered model constructors instances.
|
|
3977
|
+
*
|
|
3978
|
+
* @returns
|
|
3979
|
+
*/
|
|
3980
|
+
declare const getRegisteredModels: () => RegisteredModel[];
|
|
3981
|
+
/**
|
|
3982
|
+
* Get registered factory constructors or instances.
|
|
3983
|
+
*
|
|
3984
|
+
* @returns
|
|
3985
|
+
*/
|
|
3986
|
+
declare const getRegisteredFactories: () => RegisteredFactory[];
|
|
3987
|
+
declare const resetRuntimeRegistryForTests: () => void;
|
|
3988
|
+
//#endregion
|
|
3989
|
+
//#region src/Arkorm.d.ts
|
|
3990
|
+
declare class Arkorm {
|
|
3991
|
+
/**
|
|
3992
|
+
* Register migration constructors directly without relying on runtime discovery.
|
|
3993
|
+
*
|
|
3994
|
+
* @param migrations
|
|
3995
|
+
* @returns
|
|
3996
|
+
*/
|
|
3997
|
+
static registerMigrations(...migrations: (MigrationClass | MigrationClass[])[]): void;
|
|
3998
|
+
registerMigrations: typeof Arkorm.registerMigrations;
|
|
3999
|
+
/**
|
|
4000
|
+
* Register seeder constructors directly without relying on runtime discovery.
|
|
4001
|
+
*
|
|
4002
|
+
* @param seeders
|
|
4003
|
+
* @returns
|
|
4004
|
+
*/
|
|
4005
|
+
static registerSeeders(...seeders: (SeederConstructor | SeederConstructor[])[]): void;
|
|
4006
|
+
registerSeeders: typeof Arkorm.registerSeeders;
|
|
4007
|
+
/**
|
|
4008
|
+
* Register model constructors directly without relying on runtime discovery.
|
|
4009
|
+
*
|
|
4010
|
+
* @param models
|
|
4011
|
+
* @returns
|
|
4012
|
+
*/
|
|
4013
|
+
static registerModels(...models: (RegisteredModel | RegisteredModel[])[]): void;
|
|
4014
|
+
registerModels: typeof Arkorm.registerModels;
|
|
4015
|
+
/**
|
|
4016
|
+
* Register factory constructors or instances directly without relying on runtime discovery.
|
|
4017
|
+
*
|
|
4018
|
+
* @param factories
|
|
4019
|
+
* @returns
|
|
4020
|
+
*/
|
|
4021
|
+
static registerFactories(...factories: (RegisteredFactory | RegisteredFactory[])[]): void;
|
|
4022
|
+
registerFactories: typeof Arkorm.registerFactories;
|
|
4023
|
+
/**
|
|
4024
|
+
* Register additional runtime discovery paths for models without replacing configured paths.
|
|
4025
|
+
*
|
|
4026
|
+
* @param paths
|
|
4027
|
+
* @returns
|
|
4028
|
+
*/
|
|
4029
|
+
static loadModelsFrom(paths: RuntimePathInput): void;
|
|
4030
|
+
loadModelsFrom: typeof Arkorm.loadModelsFrom;
|
|
4031
|
+
/**
|
|
4032
|
+
* Register additional runtime discovery paths for seeders without replacing configured paths.
|
|
4033
|
+
*
|
|
4034
|
+
* @param paths
|
|
4035
|
+
* @returns
|
|
4036
|
+
*/
|
|
4037
|
+
static loadSeedersFrom(paths: RuntimePathInput): void;
|
|
4038
|
+
loadSeedersFrom: typeof Arkorm.loadSeedersFrom;
|
|
4039
|
+
/**
|
|
4040
|
+
* Register additional runtime discovery paths for migrations without replacing configured paths.
|
|
4041
|
+
*
|
|
4042
|
+
* @param paths
|
|
4043
|
+
* @returns
|
|
4044
|
+
*/
|
|
4045
|
+
static loadMigrationsFrom(paths: RuntimePathInput): void;
|
|
4046
|
+
loadMigrationsFrom: typeof Arkorm.loadMigrationsFrom;
|
|
4047
|
+
/**
|
|
4048
|
+
* Register additional runtime discovery paths for factories without replacing configured paths.
|
|
4049
|
+
*
|
|
4050
|
+
* @param paths
|
|
4051
|
+
* @returns
|
|
4052
|
+
*/
|
|
4053
|
+
static loadFactoriesFrom(paths: RuntimePathInput): void;
|
|
4054
|
+
loadFactoriesFrom: typeof Arkorm.loadFactoriesFrom;
|
|
4055
|
+
/**
|
|
4056
|
+
* Get registered runtime discovery paths or registered constructors for a specific type.
|
|
4057
|
+
*
|
|
4058
|
+
* @param key
|
|
4059
|
+
* @returns
|
|
4060
|
+
*/
|
|
4061
|
+
static getRegisteredPaths(key?: RuntimePathKey | undefined): string[] | Record<RuntimePathKey, string[]>;
|
|
4062
|
+
getRegisteredPaths: typeof Arkorm.getRegisteredPaths;
|
|
4063
|
+
/**
|
|
4064
|
+
* Get registered migration constructors instances
|
|
4065
|
+
*
|
|
4066
|
+
* @returns
|
|
4067
|
+
*/
|
|
4068
|
+
static getRegisteredMigrations(): MigrationClass[];
|
|
4069
|
+
getRegisteredMigrations: typeof Arkorm.getRegisteredMigrations;
|
|
4070
|
+
/**
|
|
4071
|
+
* Get registered seeder constructors instances.
|
|
4072
|
+
*
|
|
4073
|
+
* @returns
|
|
4074
|
+
*/
|
|
4075
|
+
static getRegisteredSeeders(): SeederConstructor[];
|
|
4076
|
+
getRegisteredSeeders: typeof Arkorm.getRegisteredSeeders;
|
|
4077
|
+
/**
|
|
4078
|
+
* Get registered model constructors instances.
|
|
4079
|
+
*
|
|
4080
|
+
* @returns
|
|
4081
|
+
*/
|
|
4082
|
+
static getRegisteredModels(): RuntimeConstructor[];
|
|
4083
|
+
getRegisteredModels: typeof Arkorm.getRegisteredModels;
|
|
4084
|
+
/**
|
|
4085
|
+
* Get registered factory constructors or instances.
|
|
4086
|
+
*
|
|
4087
|
+
* @returns
|
|
4088
|
+
*/
|
|
4089
|
+
static getRegisteredFactories(): RegisteredFactory[];
|
|
4090
|
+
getRegisteredFactories: typeof Arkorm.getRegisteredFactories;
|
|
4091
|
+
}
|
|
4092
|
+
/**
|
|
4093
|
+
* Arkormx is an alias for Arkorm.
|
|
4094
|
+
*/
|
|
4095
|
+
declare class Arkormx extends Arkorm {}
|
|
4096
|
+
//#endregion
|
|
3852
4097
|
//#region src/Attribute.d.ts
|
|
3853
4098
|
interface AttributeOptions<TGet = unknown, TSet = unknown> {
|
|
3854
4099
|
get?: (value: unknown) => TGet;
|
|
@@ -4797,45 +5042,6 @@ declare abstract class Migration {
|
|
|
4797
5042
|
abstract down(schema: SchemaBuilder): Promise<void> | void;
|
|
4798
5043
|
}
|
|
4799
5044
|
//#endregion
|
|
4800
|
-
//#region src/database/Seeder.d.ts
|
|
4801
|
-
type SeederConstructor = new () => Seeder;
|
|
4802
|
-
type SeederInput = Seeder | SeederConstructor;
|
|
4803
|
-
type SeederCallArgument = SeederInput | SeederInput[];
|
|
4804
|
-
declare const SEEDER_BRAND: unique symbol;
|
|
4805
|
-
/**
|
|
4806
|
-
* The Seeder class serves as a base for defining database seeders, which are
|
|
4807
|
-
* used to populate the database with initial or test data.
|
|
4808
|
-
*
|
|
4809
|
-
* @author Legacy (3m1n3nc3)
|
|
4810
|
-
* @since 0.1.0
|
|
4811
|
-
*/
|
|
4812
|
-
declare abstract class Seeder {
|
|
4813
|
-
static readonly [SEEDER_BRAND] = true;
|
|
4814
|
-
/**
|
|
4815
|
-
* Defines the operations to be performed when running the seeder.
|
|
4816
|
-
*/
|
|
4817
|
-
abstract run(): Promise<void> | void;
|
|
4818
|
-
/**
|
|
4819
|
-
* Runs one or more seeders.
|
|
4820
|
-
*
|
|
4821
|
-
* @param seeders The seeders to be run.
|
|
4822
|
-
*/
|
|
4823
|
-
call(...seeders: SeederCallArgument[]): Promise<void>;
|
|
4824
|
-
/**
|
|
4825
|
-
* Converts a SeederInput into a Seeder instance.
|
|
4826
|
-
*
|
|
4827
|
-
* @param input The SeederInput to convert.
|
|
4828
|
-
* @returns A Seeder instance.
|
|
4829
|
-
*/
|
|
4830
|
-
private static toSeederInstance;
|
|
4831
|
-
/**
|
|
4832
|
-
* Runs the given seeders in sequence.
|
|
4833
|
-
*
|
|
4834
|
-
* @param seeders The seeders to be run.
|
|
4835
|
-
*/
|
|
4836
|
-
private static runSeeders;
|
|
4837
|
-
}
|
|
4838
|
-
//#endregion
|
|
4839
5045
|
//#region src/DB.d.ts
|
|
4840
5046
|
declare class DB {
|
|
4841
5047
|
private static adapter?;
|
|
@@ -5463,104 +5669,6 @@ declare class RuntimeModuleLoader {
|
|
|
5463
5669
|
static load<T = unknown>(filePath: string, useDefault?: boolean): Promise<T>;
|
|
5464
5670
|
}
|
|
5465
5671
|
//#endregion
|
|
5466
|
-
//#region src/helpers/runtime-registry.d.ts
|
|
5467
|
-
type RuntimePathKey = 'models' | 'seeders' | 'migrations' | 'factories';
|
|
5468
|
-
type RuntimePathInput = string | string[];
|
|
5469
|
-
type RuntimePathMap = Partial<Record<RuntimePathKey, RuntimePathInput>>;
|
|
5470
|
-
type RuntimeConstructor = new (...args: any[]) => any;
|
|
5471
|
-
type RegisteredModel = RuntimeConstructor;
|
|
5472
|
-
type RegisteredFactory = RuntimeConstructor | object;
|
|
5473
|
-
/**
|
|
5474
|
-
* Register additional runtime discovery paths without replacing configured paths.
|
|
5475
|
-
*
|
|
5476
|
-
* @param paths
|
|
5477
|
-
*/
|
|
5478
|
-
declare const registerPaths: (paths: RuntimePathMap) => void;
|
|
5479
|
-
/**
|
|
5480
|
-
* Register additional runtime discovery paths for migrations without replacing configured paths.
|
|
5481
|
-
*
|
|
5482
|
-
* @param paths
|
|
5483
|
-
* @returns
|
|
5484
|
-
*/
|
|
5485
|
-
declare const loadMigrationsFrom: (paths: RuntimePathInput) => void;
|
|
5486
|
-
/**
|
|
5487
|
-
* Register additional runtime discovery paths for seeders without replacing configured paths.
|
|
5488
|
-
*
|
|
5489
|
-
* @param paths
|
|
5490
|
-
* @returns
|
|
5491
|
-
*/
|
|
5492
|
-
declare const loadSeedersFrom: (paths: RuntimePathInput) => void;
|
|
5493
|
-
/**
|
|
5494
|
-
* Register additional runtime discovery paths for models without replacing configured paths.
|
|
5495
|
-
*
|
|
5496
|
-
* @param paths
|
|
5497
|
-
* @returns
|
|
5498
|
-
*/
|
|
5499
|
-
declare const loadModelsFrom: (paths: RuntimePathInput) => void;
|
|
5500
|
-
/**
|
|
5501
|
-
* Register additional runtime discovery paths for factories without replacing configured paths.
|
|
5502
|
-
*
|
|
5503
|
-
* @param paths
|
|
5504
|
-
* @returns
|
|
5505
|
-
*/
|
|
5506
|
-
declare const loadFactoriesFrom: (paths: RuntimePathInput) => void;
|
|
5507
|
-
/**
|
|
5508
|
-
* Register migration constructors directly without relying on runtime discovery.
|
|
5509
|
-
*
|
|
5510
|
-
* @param migrations
|
|
5511
|
-
*/
|
|
5512
|
-
declare const registerMigrations: (...migrations: Array<MigrationClass | MigrationClass[]>) => void;
|
|
5513
|
-
/**
|
|
5514
|
-
* Register seeder constructors directly without relying on runtime discovery.
|
|
5515
|
-
*
|
|
5516
|
-
* @param seeders
|
|
5517
|
-
*/
|
|
5518
|
-
declare const registerSeeders: (...seeders: Array<SeederConstructor | SeederConstructor[]>) => void;
|
|
5519
|
-
/**
|
|
5520
|
-
* Register model constructors directly without relying on runtime discovery.
|
|
5521
|
-
*
|
|
5522
|
-
* @param models
|
|
5523
|
-
*/
|
|
5524
|
-
declare const registerModels: (...models: Array<RegisteredModel | RegisteredModel[]>) => void;
|
|
5525
|
-
/**
|
|
5526
|
-
* Register factory constructors or instances directly without relying on runtime discovery.
|
|
5527
|
-
*
|
|
5528
|
-
* @param factories
|
|
5529
|
-
*/
|
|
5530
|
-
declare const registerFactories: (...factories: Array<RegisteredFactory | RegisteredFactory[]>) => void;
|
|
5531
|
-
/**
|
|
5532
|
-
* Get registered runtime discovery paths or registered constructors for a specific type.
|
|
5533
|
-
*
|
|
5534
|
-
* @param key
|
|
5535
|
-
* @returns
|
|
5536
|
-
*/
|
|
5537
|
-
declare const getRegisteredPaths: (key?: RuntimePathKey) => string[] | Record<RuntimePathKey, string[]>;
|
|
5538
|
-
/**
|
|
5539
|
-
* Get registered migration constructors instances.
|
|
5540
|
-
*
|
|
5541
|
-
* @returns
|
|
5542
|
-
*/
|
|
5543
|
-
declare const getRegisteredMigrations: () => MigrationClass[];
|
|
5544
|
-
/**
|
|
5545
|
-
* Get registered seeder constructors instances.
|
|
5546
|
-
*
|
|
5547
|
-
* @returns
|
|
5548
|
-
*/
|
|
5549
|
-
declare const getRegisteredSeeders: () => SeederConstructor[];
|
|
5550
|
-
/**
|
|
5551
|
-
* Get registered model constructors instances.
|
|
5552
|
-
*
|
|
5553
|
-
* @returns
|
|
5554
|
-
*/
|
|
5555
|
-
declare const getRegisteredModels: () => RegisteredModel[];
|
|
5556
|
-
/**
|
|
5557
|
-
* Get registered factory constructors or instances.
|
|
5558
|
-
*
|
|
5559
|
-
* @returns
|
|
5560
|
-
*/
|
|
5561
|
-
declare const getRegisteredFactories: () => RegisteredFactory[];
|
|
5562
|
-
declare const resetRuntimeRegistryForTests: () => void;
|
|
5563
|
-
//#endregion
|
|
5564
5672
|
//#region src/PivotModel.d.ts
|
|
5565
5673
|
/**
|
|
5566
5674
|
* Base pivot class that all pivot models should extend.
|
|
@@ -5593,4 +5701,4 @@ declare class URLDriver {
|
|
|
5593
5701
|
url(page: number): string;
|
|
5594
5702
|
}
|
|
5595
5703
|
//#endregion
|
|
5596
|
-
export { applyAlterTableOperation as $, HasOneRelation as $a, QuerySchemaRow as $i, MigrateFreshCommand as $n, TimestampColumnBehavior as $o, SoftDeleteQueryMode as $r, removeAppliedMigration as $t, defineConfig as A, ModelAttributesOf as Aa, ModelTableCase as Ai, QueryExecutionException as An, MorphToManyRelationMetadata as Ao, DatabaseRow as Ar, resolveMigrationClassName as At, getRuntimePaginationURLDriverFactory as B, ModelRelationshipResult as Ba, PrismaLikeOrderBy as Bi, SeederCallArgument as Bn, MigrationInstanceLike as Bo, QueryGroupCondition as Br, buildMigrationIdentity as Bt, resolveRuntimeCompatibilityQuerySchemaOrThrow as C, AttributeSelect as Ca, DelegateUpdateArgs as Ci, syncPersistedColumnMappingsFromState as Cn, HasManyRelationMetadata as Co, AdapterQueryOperation as Cr, formatDefaultValue as Ct, inferDelegateName as D, GlobalScope as Da, EagerLoadMap as Di, UniqueConstraintResolutionException as Dn, ModelMetadata as Do, AggregateSpec as Dr, getMigrationPlan as Dt, createPrismaDelegateMap as E, DelegateForModelSchema as Ea, EagerLoadConstraint as Ei, UnsupportedAdapterFeatureException as En, HasOneThroughRelationMetadata as Eo, AggregateSelection as Er, generateMigrationFile as Et, getDefaultStubsPath as F, ModelEventHandlerConstructor as Fa, PaginationURLDriverFactory as Fi, ArkormErrorContext as Fn, AppliedMigrationRun as Fo, InsertManySpec as Fr, supportsDatabaseCreation as Ft, isTransactionCapableClient as G, InlineFactory as Ga, PrismaTransactionCallback as Gi, SchemaBuilder as Gn, SchemaColumnType as Go, QuerySelectColumn as Gr, findAppliedMigration as Gt, getUserConfig as H, QuerySchemaForModel as Ha, PrismaLikeSelect as Hi, SeederInput as Hn, PrismaMigrationWorkflowOptions as Ho, QueryNotCondition as Hr, computeMigrationChecksum as Ht, getRuntimeAdapter as I, ModelEventListener as Ia, PrismaClientLike as Ii, ArkormException as In, AppliedMigrationsState as Io, InsertSpec as Ir, supportsDatabaseMigrationExecution as It, runArkormTransaction as J, SetBasedEagerLoader as Ja, PrismaTransactionOptions as Ji, ForeignKeyBuilder as Jn, SchemaIndex as Jo, RelationAggregateSpec as Jr, isMigrationApplied as Jt, loadArkormConfig as K, ModelFactory as Ka, PrismaTransactionCapableClient as Ki, EnumBuilder as Kn, SchemaForeignKey as Ko, QueryTarget as Kr, getLastMigrationRun as Kt, getRuntimeClient as L, ModelEventName as La, PrismaDelegateLike as Li, DB as Ln, GenerateMigrationOptions as Lo, QueryComparisonCondition as Lr, supportsDatabaseReset as Lt, ensureArkormConfigLoading as M, ModelDeclaredAttributeKey as Ma, PaginationMeta as Mi, QueryConstraintException as Mn, RelationMetadata as Mo, DatabaseValue as Mr, runMigrationWithPrisma as Mt, getActiveTransactionAdapter as N, ModelEventDispatcher as Na, PaginationOptions as Ni, ModelNotFoundException as Nn, RelationMetadataType as No, DeleteManySpec as Nr, runPrismaCommand as Nt, bindAdapterToModels as O, ModelAttributeValue as Oa, GetUserConfig as Oi, ScopeNotDefinedException as On, MorphManyRelationMetadata as Oo, DatabaseAdapter as Or, pad as Ot, getActiveTransactionClient as P, ModelEventHandler as Pa, PaginationURLDriver as Pi, MissingDelegateException as Pn, AppliedMigrationEntry as Po, DeleteSpec as Pr, stripPrismaSchemaModelsAndEnums as Pt, PRISMA_MODEL_REGEX as Q, HasOneThroughRelation as Qa, QuerySchemaOrderBy as Qi, MigrateRollbackCommand as Qn, SchemaTableDropOperation as Qo, SelectSpec as Qr, readAppliedMigrationsStateFromStore as Qt, getRuntimeDebugHandler as R, ModelLifecycleState as Ra, PrismaFindManyArgsLike as Ri, SEEDER_BRAND as Rn, GeneratedMigrationFile as Ro, QueryComparisonOperator as Rr, toMigrationFileSlug as Rt, resolveRuntimeCompatibilityQuerySchema as S, AttributeSchemaDelegate as Sa, DelegateUniqueWhere as Si, resolvePersistedMetadataFeatures as Sn, ColumnMap as So, AdapterModelStructure as Sr, findModelBlock as St, createPrismaAdapter as T, AttributeWhereInput as Ta, DelegateWhere as Ti, writePersistedColumnMappingsState as Tn, HasOneRelationMetadata as To, AggregateOperation as Tr, formatRelationAction as Tt, isDelegateLike as U, RelatedModelClass as Ua, PrismaLikeSortOrder as Ui, MIGRATION_BRAND as Un, PrismaSchemaSyncOptions as Uo, QueryOrderBy as Ur, createEmptyAppliedMigrationsState as Ut, getRuntimePrismaClient as V, ModelUpdateData as Va, PrismaLikeScalarFilter as Vi, SeederConstructor as Vn, PrimaryKeyGeneration as Vo, QueryLogicalOperator as Vr, buildMigrationRunId as Vt, isQuerySchemaLike as W, Model as Wa, PrismaLikeWhereInput as Wi, Migration as Wn, SchemaColumn as Wo, QueryRawCondition as Wr, deleteAppliedMigrationsStateFromStore as Wt, PRISMA_ENUM_MEMBER_REGEX as X, MorphOneRelation as Xa, QuerySchemaFindManyArgs as Xi, ModelsSyncCommand as Xn, SchemaTableAlterOperation as Xo, RelationLoadPlan as Xr, markMigrationRun as Xt, PrimaryKeyGenerationPlanner as Y, MorphToManyRelation as Ya, QuerySchemaCreateData as Yi, SeedCommand as Yn, SchemaOperation as Yo, RelationFilterSpec as Yr, markMigrationApplied as Yt, PRISMA_ENUM_REGEX as Z, MorphManyRelation as Za, QuerySchemaInclude as Zi, MigrationHistoryCommand as Zn, SchemaTableCreateOperation as Zo, RelationLoadSpec as Zr, readAppliedMigrationsState as Zt, registerPaths as _, LengthAwarePaginator as _a, DelegateInclude as _i, getPersistedTimestampColumns as _n, FactoryState as _o, AdapterCapability as _r, deriveRelationAlias as _t, getRegisteredFactories as a, QuerySchemaWhere as aa, AdapterQueryInspection as ai, PersistedMetadataFeatures as an, Relation as ao, InitCommand as ar, applyMigrationToPrismaSchema as at, RuntimeModuleLoader as b, AttributeOrderBy as ba, DelegateRows as bi, resetPersistedColumnMappingsCache as bn, BelongsToManyRelationMetadata as bo, AdapterModelFieldStructure as br, escapeRegex as bt, getRegisteredPaths as c, SimplePaginationMeta as ca, ArkormDebugEvent as ci, PersistedTimestampColumn as cn, RelationConstraint as co, Attribute as cr, buildFieldLine as ct, loadMigrationsFrom as d, TransactionCapableClient as da, CastHandler as di, deletePersistedColumnMappingsState as dn, RelationMetadataProvider as do, PrismaDelegateNameMapping as dr, buildMigrationSource as dt, QuerySchemaRows as ea, SortDirection as ei, resolveMigrationStateFilePath as en, HasManyThroughRelation as eo, MigrateCommand as er, applyCreateTableOperation as et, loadModelsFrom as f, TransactionContext as fa, CastMap as fi, getPersistedColumnMap as fn, RelationTableLookupSpec as fo, createPrismaCompatibilityAdapter as fr, buildModelBlock as ft, registerModels as g, QueryBuilder as ga, DelegateFindManyArgs as gi, getPersistedTableMetadata as gn, FactoryModelConstructor as go, AdapterCapabilities as gr, deriveInverseRelationAlias as gt, registerMigrations as h, RelationshipModelStatic as ha, DelegateCreateData as hi, getPersistedPrimaryKeyGeneration as hn, FactoryDefinition as ho, createKyselyAdapter as hr, deriveCollectionFieldName as ht, RegisteredModel as i, QuerySchemaUpdateData as ia, AdapterBindableModel as ii, PersistedColumnMappingsState as in, BelongsToManyRelation as io, MakeFactoryCommand as ir, applyMigrationToDatabase as it, emitRuntimeDebugEvent as j, ModelCreateData as ja, PaginationCurrentPageResolver as ji, QueryExecutionExceptionContext as jn, PivotModelStatic as jo, DatabaseRows as jr, resolvePrismaType as jt, configureArkormRuntime as k, ModelAttributes as ka, ModelQuerySchemaLike as ki, RelationResolutionException as kn, MorphOneRelationMetadata as ko, DatabasePrimitive as kr, resolveEnumName as kt, getRegisteredSeeders as l, SoftDeleteConfig as la, ArkormDebugHandler as li, applyOperationsToPersistedColumnMappingsState as ln, RelationDefaultResolver as lo, AttributeOptions as lr, buildIndexLine as lt, registerFactories as m, ModelStatic as ma, ClientResolver as mi, getPersistedEnumTsType as mn, FactoryAttributes as mo, KyselyDatabaseAdapter as mr, createMigrationTimestamp as mt, PivotModel as n, QuerySchemaUniqueWhere as na, UpdateSpec as ni, writeAppliedMigrationsState as nn, BelongsToRelation as no, MakeModelCommand as nr, applyMigrationRollbackToDatabase as nt, getRegisteredMigrations as o, RuntimeClientLike as oa, ArkormBootContext as oi, PersistedPrimaryKeyGeneration as on, RelationTableLoader as oo, CliApp as or, applyOperationsToPrismaSchema as ot, loadSeedersFrom as p, TransactionOptions as pa, CastType as pi, getPersistedEnumMap as pn, ArkormCollection as po, createPrismaDatabaseAdapter as pr, buildRelationLine as pt, resetArkormRuntimeForTests as q, defineFactory as qa, PrismaTransactionContext as qi, TableBuilder as qn, SchemaForeignKeyAction as qo, RawQuerySpec as qr, getLatestAppliedMigrations as qt, RegisteredFactory as r, QuerySchemaUpdateArgs as ra, UpsertSpec as ri, writeAppliedMigrationsStateToStore as rn, SingleResultRelation as ro, MakeMigrationCommand as rr, applyMigrationRollbackToPrismaSchema as rt, getRegisteredModels as s, Serializable as sa, ArkormConfig as si, PersistedTableMetadata as sn, RelationColumnLookupSpec as so, resolveCast as sr, buildEnumBlock as st, URLDriver as t, QuerySchemaSelect as ta, UpdateManySpec as ti, supportsDatabaseMigrationState as tn, HasManyRelation as to, MakeSeederCommand as tr, applyDropTableOperation as tt, loadFactoriesFrom as u, TransactionCallback as ua, CastDefinition as ui, createEmptyPersistedColumnMappingsState as un, RelationDefaultValue as uo, PrismaDatabaseAdapter as ur, buildInverseRelationLine as ut, registerSeeders as v, Paginator as va, DelegateOrderBy as vi, readPersistedColumnMappingsState as vn, DatabaseTableOptions as vo, AdapterDatabaseCreationResult as vr, deriveRelationFieldName as vt, PrismaDelegateMap as w, AttributeUpdateInput as wa, DelegateUpdateData as wi, validatePersistedMetadataFeaturesForMigrations as wn, HasManyThroughRelationMetadata as wo, AdapterTransactionContext as wr, formatEnumDefaultValue as wt, getRuntimeCompatibilityAdapter as x, AttributeQuerySchema as xa, DelegateSelect as xi, resolveColumnMappingsFilePath as xn, BelongsToRelationMetadata as xo, AdapterModelIntrospectionOptions as xr, findEnumBlock as xt, resetRuntimeRegistryForTests as y, AttributeCreateInput as ya, DelegateRow as yi, rebuildPersistedColumnMappingsState as yn, DatabaseTablePersistedMetadataOptions as yo, AdapterInspectionRequest as yr, deriveSingularFieldName as yt, getRuntimePaginationCurrentPageResolver as z, ModelRelationshipKey as za, PrismaLikeInclude as zi, Seeder as zn, MigrationClass as zo, QueryCondition as zr, toModelName as zt };
|
|
5704
|
+
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 };
|