@crossauth/fastify 1.1.7 → 1.1.8
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.cjs +1 -1
- package/dist/index.js +2 -2
- package/package.json +3 -3
- package/dist/lib/generated/prisma/browser.d.ts +0 -44
- package/dist/lib/generated/prisma/client.d.ts +0 -61
- package/dist/lib/generated/prisma/commonInputTypes.d.ts +0 -355
- package/dist/lib/generated/prisma/enums.d.ts +0 -1
- package/dist/lib/generated/prisma/internal/class.d.ts +0 -203
- package/dist/lib/generated/prisma/internal/prismaNamespace.d.ts +0 -1105
- package/dist/lib/generated/prisma/internal/prismaNamespaceBrowser.d.ts +0 -117
- package/dist/lib/generated/prisma/models/ApiKey.d.ts +0 -1300
- package/dist/lib/generated/prisma/models/Key.d.ts +0 -1308
- package/dist/lib/generated/prisma/models/OAuthAuthorization.d.ts +0 -1310
- package/dist/lib/generated/prisma/models/OAuthClient.d.ts +0 -1576
- package/dist/lib/generated/prisma/models/OAuthClientRedirectUri.d.ts +0 -1136
- package/dist/lib/generated/prisma/models/OAuthClientValidFlow.d.ts +0 -1136
- package/dist/lib/generated/prisma/models/User.d.ts +0 -1890
- package/dist/lib/generated/prisma/models/UserSecrets.d.ts +0 -1099
- package/dist/lib/generated/prisma/models.d.ts +0 -9
package/dist/index.js
CHANGED
|
@@ -4754,7 +4754,7 @@ class Ye {
|
|
|
4754
4754
|
);
|
|
4755
4755
|
d.logger.debug(c({
|
|
4756
4756
|
msg: "Valid API key",
|
|
4757
|
-
|
|
4757
|
+
hashedApiKey: Y.hashSignedApiKeyValue(t.value)
|
|
4758
4758
|
}));
|
|
4759
4759
|
const a = Fe.decodeData(t.data);
|
|
4760
4760
|
if (i.apiKey = { ...t, ...a }, "scope" in a && Array.isArray(a.scope)) {
|
|
@@ -4766,7 +4766,7 @@ class Ye {
|
|
|
4766
4766
|
if (t.userid)
|
|
4767
4767
|
try {
|
|
4768
4768
|
const { user: h } = await this.userStorage.getUserById(t.userid);
|
|
4769
|
-
i.user = h, i.authType = "apiKey", d.logger.debug(c({ msg: "API key is for user", userid: h.id, user: h.username,
|
|
4769
|
+
i.user = h, i.authType = "apiKey", d.logger.debug(c({ msg: "API key is for user", userid: h.id, user: h.username, hashedApiKey: Y.hashSignedApiKeyValue(t.value) }));
|
|
4770
4770
|
} catch (h) {
|
|
4771
4771
|
d.logger.error(c({ msg: "API key has invalid user", userid: t.userid, hashedApiKey: Y.hashSignedApiKeyValue(t.value) })), d.logger.debug(c({ err: h }));
|
|
4772
4772
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crossauth/fastify",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.8",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.cjs",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"otplib": "^12.0.1",
|
|
55
55
|
"qrcode": "^1.5.3",
|
|
56
56
|
"sonic-boom": "^3.7.0",
|
|
57
|
-
"@crossauth/backend": "^1.1.
|
|
58
|
-
"@crossauth/common": "^1.1.
|
|
57
|
+
"@crossauth/backend": "^1.1.8",
|
|
58
|
+
"@crossauth/common": "^1.1.8"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
61
|
"dev": "vite",
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import * as Prisma from './internal/prismaNamespaceBrowser.ts';
|
|
2
|
-
export { Prisma };
|
|
3
|
-
export * as $Enums from './enums.ts';
|
|
4
|
-
export * from './enums.ts';
|
|
5
|
-
/**
|
|
6
|
-
* Model User
|
|
7
|
-
*
|
|
8
|
-
*/
|
|
9
|
-
export type User = Prisma.UserModel;
|
|
10
|
-
/**
|
|
11
|
-
* Model UserSecrets
|
|
12
|
-
*
|
|
13
|
-
*/
|
|
14
|
-
export type UserSecrets = Prisma.UserSecretsModel;
|
|
15
|
-
/**
|
|
16
|
-
* Model Key
|
|
17
|
-
*
|
|
18
|
-
*/
|
|
19
|
-
export type Key = Prisma.KeyModel;
|
|
20
|
-
/**
|
|
21
|
-
* Model ApiKey
|
|
22
|
-
*
|
|
23
|
-
*/
|
|
24
|
-
export type ApiKey = Prisma.ApiKeyModel;
|
|
25
|
-
/**
|
|
26
|
-
* Model OAuthClient
|
|
27
|
-
*
|
|
28
|
-
*/
|
|
29
|
-
export type OAuthClient = Prisma.OAuthClientModel;
|
|
30
|
-
/**
|
|
31
|
-
* Model OAuthClientRedirectUri
|
|
32
|
-
*
|
|
33
|
-
*/
|
|
34
|
-
export type OAuthClientRedirectUri = Prisma.OAuthClientRedirectUriModel;
|
|
35
|
-
/**
|
|
36
|
-
* Model OAuthClientValidFlow
|
|
37
|
-
*
|
|
38
|
-
*/
|
|
39
|
-
export type OAuthClientValidFlow = Prisma.OAuthClientValidFlowModel;
|
|
40
|
-
/**
|
|
41
|
-
* Model OAuthAuthorization
|
|
42
|
-
*
|
|
43
|
-
*/
|
|
44
|
-
export type OAuthAuthorization = Prisma.OAuthAuthorizationModel;
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
import * as runtime from "@prisma/client/runtime/client";
|
|
2
|
-
import * as $Class from "./internal/class.ts";
|
|
3
|
-
import * as Prisma from "./internal/prismaNamespace.ts";
|
|
4
|
-
export * as $Enums from './enums.ts';
|
|
5
|
-
export * from './enums.ts';
|
|
6
|
-
/**
|
|
7
|
-
* ## Prisma Client
|
|
8
|
-
*
|
|
9
|
-
* Type-safe database client for TypeScript
|
|
10
|
-
* @example
|
|
11
|
-
* ```
|
|
12
|
-
* const prisma = new PrismaClient()
|
|
13
|
-
* // Fetch zero or more Users
|
|
14
|
-
* const users = await prisma.user.findMany()
|
|
15
|
-
* ```
|
|
16
|
-
*
|
|
17
|
-
* Read more in our [docs](https://pris.ly/d/client).
|
|
18
|
-
*/
|
|
19
|
-
export declare const PrismaClient: $Class.PrismaClientConstructor;
|
|
20
|
-
export type PrismaClient<LogOpts extends Prisma.LogLevel = never, OmitOpts extends Prisma.PrismaClientOptions["omit"] = Prisma.PrismaClientOptions["omit"], ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = $Class.PrismaClient<LogOpts, OmitOpts, ExtArgs>;
|
|
21
|
-
export { Prisma };
|
|
22
|
-
/**
|
|
23
|
-
* Model User
|
|
24
|
-
*
|
|
25
|
-
*/
|
|
26
|
-
export type User = Prisma.UserModel;
|
|
27
|
-
/**
|
|
28
|
-
* Model UserSecrets
|
|
29
|
-
*
|
|
30
|
-
*/
|
|
31
|
-
export type UserSecrets = Prisma.UserSecretsModel;
|
|
32
|
-
/**
|
|
33
|
-
* Model Key
|
|
34
|
-
*
|
|
35
|
-
*/
|
|
36
|
-
export type Key = Prisma.KeyModel;
|
|
37
|
-
/**
|
|
38
|
-
* Model ApiKey
|
|
39
|
-
*
|
|
40
|
-
*/
|
|
41
|
-
export type ApiKey = Prisma.ApiKeyModel;
|
|
42
|
-
/**
|
|
43
|
-
* Model OAuthClient
|
|
44
|
-
*
|
|
45
|
-
*/
|
|
46
|
-
export type OAuthClient = Prisma.OAuthClientModel;
|
|
47
|
-
/**
|
|
48
|
-
* Model OAuthClientRedirectUri
|
|
49
|
-
*
|
|
50
|
-
*/
|
|
51
|
-
export type OAuthClientRedirectUri = Prisma.OAuthClientRedirectUriModel;
|
|
52
|
-
/**
|
|
53
|
-
* Model OAuthClientValidFlow
|
|
54
|
-
*
|
|
55
|
-
*/
|
|
56
|
-
export type OAuthClientValidFlow = Prisma.OAuthClientValidFlowModel;
|
|
57
|
-
/**
|
|
58
|
-
* Model OAuthAuthorization
|
|
59
|
-
*
|
|
60
|
-
*/
|
|
61
|
-
export type OAuthAuthorization = Prisma.OAuthAuthorizationModel;
|
|
@@ -1,355 +0,0 @@
|
|
|
1
|
-
import type * as Prisma from "./internal/prismaNamespace.ts";
|
|
2
|
-
export type IntFilter<$PrismaModel = never> = {
|
|
3
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
4
|
-
in?: number[];
|
|
5
|
-
notIn?: number[];
|
|
6
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
7
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
8
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
9
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
10
|
-
not?: Prisma.NestedIntFilter<$PrismaModel> | number;
|
|
11
|
-
};
|
|
12
|
-
export type StringFilter<$PrismaModel = never> = {
|
|
13
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
14
|
-
in?: string[];
|
|
15
|
-
notIn?: string[];
|
|
16
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
17
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
18
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
19
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
20
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
21
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
22
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
23
|
-
not?: Prisma.NestedStringFilter<$PrismaModel> | string;
|
|
24
|
-
};
|
|
25
|
-
export type StringNullableFilter<$PrismaModel = never> = {
|
|
26
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
27
|
-
in?: string[] | null;
|
|
28
|
-
notIn?: string[] | null;
|
|
29
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
30
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
31
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
32
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
33
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
34
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
35
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
36
|
-
not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null;
|
|
37
|
-
};
|
|
38
|
-
export type SortOrderInput = {
|
|
39
|
-
sort: Prisma.SortOrder;
|
|
40
|
-
nulls?: Prisma.NullsOrder;
|
|
41
|
-
};
|
|
42
|
-
export type IntWithAggregatesFilter<$PrismaModel = never> = {
|
|
43
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
44
|
-
in?: number[];
|
|
45
|
-
notIn?: number[];
|
|
46
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
47
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
48
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
49
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
50
|
-
not?: Prisma.NestedIntWithAggregatesFilter<$PrismaModel> | number;
|
|
51
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
52
|
-
_avg?: Prisma.NestedFloatFilter<$PrismaModel>;
|
|
53
|
-
_sum?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
54
|
-
_min?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
55
|
-
_max?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
56
|
-
};
|
|
57
|
-
export type StringWithAggregatesFilter<$PrismaModel = never> = {
|
|
58
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
59
|
-
in?: string[];
|
|
60
|
-
notIn?: string[];
|
|
61
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
62
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
63
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
64
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
65
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
66
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
67
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
68
|
-
not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string;
|
|
69
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
70
|
-
_min?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
71
|
-
_max?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
72
|
-
};
|
|
73
|
-
export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
74
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
75
|
-
in?: string[] | null;
|
|
76
|
-
notIn?: string[] | null;
|
|
77
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
78
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
79
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
80
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
81
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
82
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
83
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
84
|
-
not?: Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null;
|
|
85
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
86
|
-
_min?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
87
|
-
_max?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
88
|
-
};
|
|
89
|
-
export type IntNullableFilter<$PrismaModel = never> = {
|
|
90
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
91
|
-
in?: number[] | null;
|
|
92
|
-
notIn?: number[] | null;
|
|
93
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
94
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
95
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
96
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
97
|
-
not?: Prisma.NestedIntNullableFilter<$PrismaModel> | number | null;
|
|
98
|
-
};
|
|
99
|
-
export type DateTimeFilter<$PrismaModel = never> = {
|
|
100
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
101
|
-
in?: Date[] | string[];
|
|
102
|
-
notIn?: Date[] | string[];
|
|
103
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
104
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
105
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
106
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
107
|
-
not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string;
|
|
108
|
-
};
|
|
109
|
-
export type DateTimeNullableFilter<$PrismaModel = never> = {
|
|
110
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
111
|
-
in?: Date[] | string[] | null;
|
|
112
|
-
notIn?: Date[] | string[] | null;
|
|
113
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
114
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
115
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
116
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
117
|
-
not?: Prisma.NestedDateTimeNullableFilter<$PrismaModel> | Date | string | null;
|
|
118
|
-
};
|
|
119
|
-
export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
120
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
121
|
-
in?: number[] | null;
|
|
122
|
-
notIn?: number[] | null;
|
|
123
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
124
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
125
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
126
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
127
|
-
not?: Prisma.NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null;
|
|
128
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
129
|
-
_avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
130
|
-
_sum?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
131
|
-
_min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
132
|
-
_max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
133
|
-
};
|
|
134
|
-
export type DateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
135
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
136
|
-
in?: Date[] | string[];
|
|
137
|
-
notIn?: Date[] | string[];
|
|
138
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
139
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
140
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
141
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
142
|
-
not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string;
|
|
143
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
144
|
-
_min?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
145
|
-
_max?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
146
|
-
};
|
|
147
|
-
export type DateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
148
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
149
|
-
in?: Date[] | string[] | null;
|
|
150
|
-
notIn?: Date[] | string[] | null;
|
|
151
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
152
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
153
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
154
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
155
|
-
not?: Prisma.NestedDateTimeNullableWithAggregatesFilter<$PrismaModel> | Date | string | null;
|
|
156
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
157
|
-
_min?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
158
|
-
_max?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
159
|
-
};
|
|
160
|
-
export type BoolFilter<$PrismaModel = never> = {
|
|
161
|
-
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
162
|
-
not?: Prisma.NestedBoolFilter<$PrismaModel> | boolean;
|
|
163
|
-
};
|
|
164
|
-
export type BoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
165
|
-
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
166
|
-
not?: Prisma.NestedBoolWithAggregatesFilter<$PrismaModel> | boolean;
|
|
167
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
168
|
-
_min?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
169
|
-
_max?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
170
|
-
};
|
|
171
|
-
export type NestedIntFilter<$PrismaModel = never> = {
|
|
172
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
173
|
-
in?: number[];
|
|
174
|
-
notIn?: number[];
|
|
175
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
176
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
177
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
178
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
179
|
-
not?: Prisma.NestedIntFilter<$PrismaModel> | number;
|
|
180
|
-
};
|
|
181
|
-
export type NestedStringFilter<$PrismaModel = never> = {
|
|
182
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
183
|
-
in?: string[];
|
|
184
|
-
notIn?: string[];
|
|
185
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
186
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
187
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
188
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
189
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
190
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
191
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
192
|
-
not?: Prisma.NestedStringFilter<$PrismaModel> | string;
|
|
193
|
-
};
|
|
194
|
-
export type NestedStringNullableFilter<$PrismaModel = never> = {
|
|
195
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
196
|
-
in?: string[] | null;
|
|
197
|
-
notIn?: string[] | null;
|
|
198
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
199
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
200
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
201
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
202
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
203
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
204
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
205
|
-
not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null;
|
|
206
|
-
};
|
|
207
|
-
export type NestedIntWithAggregatesFilter<$PrismaModel = never> = {
|
|
208
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
209
|
-
in?: number[];
|
|
210
|
-
notIn?: number[];
|
|
211
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
212
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
213
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
214
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
215
|
-
not?: Prisma.NestedIntWithAggregatesFilter<$PrismaModel> | number;
|
|
216
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
217
|
-
_avg?: Prisma.NestedFloatFilter<$PrismaModel>;
|
|
218
|
-
_sum?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
219
|
-
_min?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
220
|
-
_max?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
221
|
-
};
|
|
222
|
-
export type NestedFloatFilter<$PrismaModel = never> = {
|
|
223
|
-
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
224
|
-
in?: number[];
|
|
225
|
-
notIn?: number[];
|
|
226
|
-
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
227
|
-
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
228
|
-
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
229
|
-
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
230
|
-
not?: Prisma.NestedFloatFilter<$PrismaModel> | number;
|
|
231
|
-
};
|
|
232
|
-
export type NestedStringWithAggregatesFilter<$PrismaModel = never> = {
|
|
233
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
234
|
-
in?: string[];
|
|
235
|
-
notIn?: string[];
|
|
236
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
237
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
238
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
239
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
240
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
241
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
242
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
243
|
-
not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string;
|
|
244
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
245
|
-
_min?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
246
|
-
_max?: Prisma.NestedStringFilter<$PrismaModel>;
|
|
247
|
-
};
|
|
248
|
-
export type NestedStringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
249
|
-
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null;
|
|
250
|
-
in?: string[] | null;
|
|
251
|
-
notIn?: string[] | null;
|
|
252
|
-
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
253
|
-
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
254
|
-
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
255
|
-
gte?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
256
|
-
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
257
|
-
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
258
|
-
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>;
|
|
259
|
-
not?: Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null;
|
|
260
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
261
|
-
_min?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
262
|
-
_max?: Prisma.NestedStringNullableFilter<$PrismaModel>;
|
|
263
|
-
};
|
|
264
|
-
export type NestedIntNullableFilter<$PrismaModel = never> = {
|
|
265
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
266
|
-
in?: number[] | null;
|
|
267
|
-
notIn?: number[] | null;
|
|
268
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
269
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
270
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
271
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
272
|
-
not?: Prisma.NestedIntNullableFilter<$PrismaModel> | number | null;
|
|
273
|
-
};
|
|
274
|
-
export type NestedDateTimeFilter<$PrismaModel = never> = {
|
|
275
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
276
|
-
in?: Date[] | string[];
|
|
277
|
-
notIn?: Date[] | string[];
|
|
278
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
279
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
280
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
281
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
282
|
-
not?: Prisma.NestedDateTimeFilter<$PrismaModel> | Date | string;
|
|
283
|
-
};
|
|
284
|
-
export type NestedDateTimeNullableFilter<$PrismaModel = never> = {
|
|
285
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
286
|
-
in?: Date[] | string[] | null;
|
|
287
|
-
notIn?: Date[] | string[] | null;
|
|
288
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
289
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
290
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
291
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
292
|
-
not?: Prisma.NestedDateTimeNullableFilter<$PrismaModel> | Date | string | null;
|
|
293
|
-
};
|
|
294
|
-
export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
295
|
-
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null;
|
|
296
|
-
in?: number[] | null;
|
|
297
|
-
notIn?: number[] | null;
|
|
298
|
-
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
299
|
-
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
300
|
-
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
301
|
-
gte?: number | Prisma.IntFieldRefInput<$PrismaModel>;
|
|
302
|
-
not?: Prisma.NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null;
|
|
303
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
304
|
-
_avg?: Prisma.NestedFloatNullableFilter<$PrismaModel>;
|
|
305
|
-
_sum?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
306
|
-
_min?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
307
|
-
_max?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
308
|
-
};
|
|
309
|
-
export type NestedFloatNullableFilter<$PrismaModel = never> = {
|
|
310
|
-
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null;
|
|
311
|
-
in?: number[] | null;
|
|
312
|
-
notIn?: number[] | null;
|
|
313
|
-
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
314
|
-
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
315
|
-
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
316
|
-
gte?: number | Prisma.FloatFieldRefInput<$PrismaModel>;
|
|
317
|
-
not?: Prisma.NestedFloatNullableFilter<$PrismaModel> | number | null;
|
|
318
|
-
};
|
|
319
|
-
export type NestedDateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
320
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
321
|
-
in?: Date[] | string[];
|
|
322
|
-
notIn?: Date[] | string[];
|
|
323
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
324
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
325
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
326
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
327
|
-
not?: Prisma.NestedDateTimeWithAggregatesFilter<$PrismaModel> | Date | string;
|
|
328
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
329
|
-
_min?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
330
|
-
_max?: Prisma.NestedDateTimeFilter<$PrismaModel>;
|
|
331
|
-
};
|
|
332
|
-
export type NestedDateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
333
|
-
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null;
|
|
334
|
-
in?: Date[] | string[] | null;
|
|
335
|
-
notIn?: Date[] | string[] | null;
|
|
336
|
-
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
337
|
-
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
338
|
-
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
339
|
-
gte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>;
|
|
340
|
-
not?: Prisma.NestedDateTimeNullableWithAggregatesFilter<$PrismaModel> | Date | string | null;
|
|
341
|
-
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>;
|
|
342
|
-
_min?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
343
|
-
_max?: Prisma.NestedDateTimeNullableFilter<$PrismaModel>;
|
|
344
|
-
};
|
|
345
|
-
export type NestedBoolFilter<$PrismaModel = never> = {
|
|
346
|
-
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
347
|
-
not?: Prisma.NestedBoolFilter<$PrismaModel> | boolean;
|
|
348
|
-
};
|
|
349
|
-
export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
350
|
-
equals?: boolean | Prisma.BooleanFieldRefInput<$PrismaModel>;
|
|
351
|
-
not?: Prisma.NestedBoolWithAggregatesFilter<$PrismaModel> | boolean;
|
|
352
|
-
_count?: Prisma.NestedIntFilter<$PrismaModel>;
|
|
353
|
-
_min?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
354
|
-
_max?: Prisma.NestedBoolFilter<$PrismaModel>;
|
|
355
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|