@naturalcycles/abba 1.4.0 → 1.7.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/dist/prisma-output/index-browser.js +4 -4
- package/dist/prisma-output/index.d.ts +24 -19
- package/dist/prisma-output/index.js +56 -15
- package/dist/prisma-output/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/dist/prisma-output/libquery_engine-darwin.dylib.node +0 -0
- package/dist/prisma-output/libquery_engine-debian-openssl-1.1.x.so.node +0 -0
- package/dist/prisma-output/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/dist/prisma-output/runtime/index-browser.js +1 -1
- package/dist/prisma-output/runtime/index.d.ts +54 -43
- package/dist/prisma-output/runtime/index.js +23660 -17332
- package/dist/prisma-output/runtime/proxy.d.ts +54 -43
- package/dist/prisma-output/runtime/proxy.js +11326 -11467
- package/dist/prisma-output/schema.prisma +2 -1
- package/package.json +3 -3
- package/src/prisma-output/index-browser.js +4 -4
- package/src/prisma-output/index.d.ts +24 -19
- package/src/prisma-output/index.js +56 -15
- package/src/prisma-output/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/src/prisma-output/libquery_engine-darwin.dylib.node +0 -0
- package/src/prisma-output/libquery_engine-debian-openssl-1.1.x.so.node +0 -0
- package/src/prisma-output/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/src/prisma-output/runtime/index-browser.js +1 -1
- package/src/prisma-output/runtime/index.d.ts +54 -43
- package/src/prisma-output/runtime/index.js +23660 -17332
- package/src/prisma-output/runtime/proxy.d.ts +54 -43
- package/src/prisma-output/runtime/proxy.js +11326 -11467
- package/src/prisma-output/schema.prisma +2 -1
|
@@ -7,12 +7,12 @@ const Prisma = {}
|
|
|
7
7
|
exports.Prisma = Prisma
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
|
-
* Prisma Client JS version: 3.
|
|
11
|
-
* Query Engine version:
|
|
10
|
+
* Prisma Client JS version: 3.13.0
|
|
11
|
+
* Query Engine version: efdf9b1183dddfd4258cd181a72125755215ab7b
|
|
12
12
|
*/
|
|
13
13
|
Prisma.prismaVersion = {
|
|
14
|
-
client: '3.
|
|
15
|
-
engine: '
|
|
14
|
+
client: '3.13.0',
|
|
15
|
+
engine: 'efdf9b1183dddfd4258cd181a72125755215ab7b',
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
Prisma.PrismaClientKnownRequestError = () => {
|
|
@@ -270,8 +270,8 @@ export namespace Prisma {
|
|
|
270
270
|
export import Decimal = runtime.Decimal
|
|
271
271
|
|
|
272
272
|
/**
|
|
273
|
-
* Prisma Client JS version: 3.
|
|
274
|
-
* Query Engine version:
|
|
273
|
+
* Prisma Client JS version: 3.13.0
|
|
274
|
+
* Query Engine version: efdf9b1183dddfd4258cd181a72125755215ab7b
|
|
275
275
|
*/
|
|
276
276
|
export type PrismaVersion = {
|
|
277
277
|
client: string
|
|
@@ -430,7 +430,11 @@ export namespace Prisma {
|
|
|
430
430
|
* XOR is needed to have a real mutually exclusive union type
|
|
431
431
|
* https://stackoverflow.com/questions/42123407/does-typescript-support-mutually-exclusive-types
|
|
432
432
|
*/
|
|
433
|
-
type XOR<T, U> = T
|
|
433
|
+
type XOR<T, U> = T extends object
|
|
434
|
+
? U extends object
|
|
435
|
+
? (Without<T, U> & U) | (Without<U, T> & T)
|
|
436
|
+
: U
|
|
437
|
+
: T
|
|
434
438
|
|
|
435
439
|
/**
|
|
436
440
|
* Is T a Record?
|
|
@@ -686,7 +690,7 @@ export namespace Prisma {
|
|
|
686
690
|
? IsReject<LocalRejectSettings>
|
|
687
691
|
: GlobalRejectSettings extends RejectPerOperation
|
|
688
692
|
? Action extends keyof GlobalRejectSettings
|
|
689
|
-
? GlobalRejectSettings[Action] extends
|
|
693
|
+
? GlobalRejectSettings[Action] extends RejectOnNotFound
|
|
690
694
|
? IsReject<GlobalRejectSettings[Action]>
|
|
691
695
|
: GlobalRejectSettings[Action] extends RejectPerModel
|
|
692
696
|
? Model extends keyof GlobalRejectSettings[Action]
|
|
@@ -819,6 +823,7 @@ export namespace Prisma {
|
|
|
819
823
|
|
|
820
824
|
// tested in getLogLevel.test.ts
|
|
821
825
|
export function getLogLevel(log: Array<LogLevel | LogDefinition>): LogLevel | undefined
|
|
826
|
+
|
|
822
827
|
export type Datasource = {
|
|
823
828
|
url?: string
|
|
824
829
|
}
|
|
@@ -1115,7 +1120,7 @@ export namespace Prisma {
|
|
|
1115
1120
|
_max: BucketMaxAggregateOutputType | null
|
|
1116
1121
|
}
|
|
1117
1122
|
|
|
1118
|
-
type GetBucketGroupByPayload<T extends BucketGroupByArgs> =
|
|
1123
|
+
type GetBucketGroupByPayload<T extends BucketGroupByArgs> = PrismaPromise<
|
|
1119
1124
|
Array<
|
|
1120
1125
|
PickArray<BucketGroupByOutputType, T['by']> & {
|
|
1121
1126
|
[P in keyof T & keyof BucketGroupByOutputType]: P extends '_count'
|
|
@@ -1165,14 +1170,14 @@ export namespace Prisma {
|
|
|
1165
1170
|
}
|
|
1166
1171
|
: 'select' extends U
|
|
1167
1172
|
? {
|
|
1168
|
-
[P in TrueKeys<S['select']>]: P extends
|
|
1169
|
-
? Bucket[P]
|
|
1170
|
-
: P extends 'experiment'
|
|
1173
|
+
[P in TrueKeys<S['select']>]: P extends 'experiment'
|
|
1171
1174
|
? ExperimentGetPayload<S['select'][P]>
|
|
1172
1175
|
: P extends 'userAssignments'
|
|
1173
1176
|
? Array<UserAssignmentGetPayload<S['select'][P]>>
|
|
1174
1177
|
: P extends '_count'
|
|
1175
1178
|
? BucketCountOutputTypeGetPayload<S['select'][P]>
|
|
1179
|
+
: P extends keyof Bucket
|
|
1180
|
+
? Bucket[P]
|
|
1176
1181
|
: never
|
|
1177
1182
|
}
|
|
1178
1183
|
: Bucket
|
|
@@ -1504,7 +1509,7 @@ export namespace Prisma {
|
|
|
1504
1509
|
}[OrderFields],
|
|
1505
1510
|
>(
|
|
1506
1511
|
args: SubsetIntersection<T, BucketGroupByArgs, OrderByArg> & InputErrors,
|
|
1507
|
-
): {} extends InputErrors ? GetBucketGroupByPayload<T> :
|
|
1512
|
+
): {} extends InputErrors ? GetBucketGroupByPayload<T> : PrismaPromise<InputErrors>
|
|
1508
1513
|
}
|
|
1509
1514
|
|
|
1510
1515
|
/**
|
|
@@ -2082,7 +2087,7 @@ export namespace Prisma {
|
|
|
2082
2087
|
_max: ExperimentMaxAggregateOutputType | null
|
|
2083
2088
|
}
|
|
2084
2089
|
|
|
2085
|
-
type GetExperimentGroupByPayload<T extends ExperimentGroupByArgs> =
|
|
2090
|
+
type GetExperimentGroupByPayload<T extends ExperimentGroupByArgs> = PrismaPromise<
|
|
2086
2091
|
Array<
|
|
2087
2092
|
PickArray<ExperimentGroupByOutputType, T['by']> & {
|
|
2088
2093
|
[P in keyof T & keyof ExperimentGroupByOutputType]: P extends '_count'
|
|
@@ -2134,14 +2139,14 @@ export namespace Prisma {
|
|
|
2134
2139
|
}
|
|
2135
2140
|
: 'select' extends U
|
|
2136
2141
|
? {
|
|
2137
|
-
[P in TrueKeys<S['select']>]: P extends
|
|
2138
|
-
? Experiment[P]
|
|
2139
|
-
: P extends 'buckets'
|
|
2142
|
+
[P in TrueKeys<S['select']>]: P extends 'buckets'
|
|
2140
2143
|
? Array<BucketGetPayload<S['select'][P]>>
|
|
2141
2144
|
: P extends 'userAssignments'
|
|
2142
2145
|
? Array<UserAssignmentGetPayload<S['select'][P]>>
|
|
2143
2146
|
: P extends '_count'
|
|
2144
2147
|
? ExperimentCountOutputTypeGetPayload<S['select'][P]>
|
|
2148
|
+
: P extends keyof Experiment
|
|
2149
|
+
? Experiment[P]
|
|
2145
2150
|
: never
|
|
2146
2151
|
}
|
|
2147
2152
|
: Experiment
|
|
@@ -2501,7 +2506,7 @@ export namespace Prisma {
|
|
|
2501
2506
|
}[OrderFields],
|
|
2502
2507
|
>(
|
|
2503
2508
|
args: SubsetIntersection<T, ExperimentGroupByArgs, OrderByArg> & InputErrors,
|
|
2504
|
-
): {} extends InputErrors ? GetExperimentGroupByPayload<T> :
|
|
2509
|
+
): {} extends InputErrors ? GetExperimentGroupByPayload<T> : PrismaPromise<InputErrors>
|
|
2505
2510
|
}
|
|
2506
2511
|
|
|
2507
2512
|
/**
|
|
@@ -3065,7 +3070,7 @@ export namespace Prisma {
|
|
|
3065
3070
|
_max: UserAssignmentMaxAggregateOutputType | null
|
|
3066
3071
|
}
|
|
3067
3072
|
|
|
3068
|
-
type GetUserAssignmentGroupByPayload<T extends UserAssignmentGroupByArgs> =
|
|
3073
|
+
type GetUserAssignmentGroupByPayload<T extends UserAssignmentGroupByArgs> = PrismaPromise<
|
|
3069
3074
|
Array<
|
|
3070
3075
|
PickArray<UserAssignmentGroupByOutputType, T['by']> & {
|
|
3071
3076
|
[P in keyof T & keyof UserAssignmentGroupByOutputType]: P extends '_count'
|
|
@@ -3111,12 +3116,12 @@ export namespace Prisma {
|
|
|
3111
3116
|
}
|
|
3112
3117
|
: 'select' extends U
|
|
3113
3118
|
? {
|
|
3114
|
-
[P in TrueKeys<S['select']>]: P extends
|
|
3115
|
-
? UserAssignment[P]
|
|
3116
|
-
: P extends 'bucket'
|
|
3119
|
+
[P in TrueKeys<S['select']>]: P extends 'bucket'
|
|
3117
3120
|
? BucketGetPayload<S['select'][P]> | null
|
|
3118
3121
|
: P extends 'experiment'
|
|
3119
3122
|
? ExperimentGetPayload<S['select'][P]>
|
|
3123
|
+
: P extends keyof UserAssignment
|
|
3124
|
+
? UserAssignment[P]
|
|
3120
3125
|
: never
|
|
3121
3126
|
}
|
|
3122
3127
|
: UserAssignment
|
|
@@ -3486,7 +3491,7 @@ export namespace Prisma {
|
|
|
3486
3491
|
}[OrderFields],
|
|
3487
3492
|
>(
|
|
3488
3493
|
args: SubsetIntersection<T, UserAssignmentGroupByArgs, OrderByArg> & InputErrors,
|
|
3489
|
-
): {} extends InputErrors ? GetUserAssignmentGroupByPayload<T> :
|
|
3494
|
+
): {} extends InputErrors ? GetUserAssignmentGroupByPayload<T> : PrismaPromise<InputErrors>
|
|
3490
3495
|
}
|
|
3491
3496
|
|
|
3492
3497
|
/**
|