|
@@ -969,6 +969,12 @@ export interface ClientConstructor<T> {
|
|
|
export type FileOrderByInput =
|
|
|
| "id_ASC"
|
|
|
| "id_DESC"
|
|
|
+ | "path_ASC"
|
|
|
+ | "path_DESC"
|
|
|
+ | "name_ASC"
|
|
|
+ | "name_DESC"
|
|
|
+ | "description_ASC"
|
|
|
+ | "description_DESC"
|
|
|
| "filename_ASC"
|
|
|
| "filename_DESC"
|
|
|
| "mimetype_ASC"
|
|
@@ -1229,6 +1235,48 @@ export interface FileWhereInput {
|
|
|
id_not_starts_with?: ID_Input;
|
|
|
id_ends_with?: ID_Input;
|
|
|
id_not_ends_with?: ID_Input;
|
|
|
+ path?: String;
|
|
|
+ path_not?: String;
|
|
|
+ path_in?: String[] | String;
|
|
|
+ path_not_in?: String[] | String;
|
|
|
+ path_lt?: String;
|
|
|
+ path_lte?: String;
|
|
|
+ path_gt?: String;
|
|
|
+ path_gte?: String;
|
|
|
+ path_contains?: String;
|
|
|
+ path_not_contains?: String;
|
|
|
+ path_starts_with?: String;
|
|
|
+ path_not_starts_with?: String;
|
|
|
+ path_ends_with?: String;
|
|
|
+ path_not_ends_with?: String;
|
|
|
+ name?: String;
|
|
|
+ name_not?: String;
|
|
|
+ name_in?: String[] | String;
|
|
|
+ name_not_in?: String[] | String;
|
|
|
+ name_lt?: String;
|
|
|
+ name_lte?: String;
|
|
|
+ name_gt?: String;
|
|
|
+ name_gte?: String;
|
|
|
+ name_contains?: String;
|
|
|
+ name_not_contains?: String;
|
|
|
+ name_starts_with?: String;
|
|
|
+ name_not_starts_with?: String;
|
|
|
+ name_ends_with?: String;
|
|
|
+ name_not_ends_with?: String;
|
|
|
+ description?: String;
|
|
|
+ description_not?: String;
|
|
|
+ description_in?: String[] | String;
|
|
|
+ description_not_in?: String[] | String;
|
|
|
+ description_lt?: String;
|
|
|
+ description_lte?: String;
|
|
|
+ description_gt?: String;
|
|
|
+ description_gte?: String;
|
|
|
+ description_contains?: String;
|
|
|
+ description_not_contains?: String;
|
|
|
+ description_starts_with?: String;
|
|
|
+ description_not_starts_with?: String;
|
|
|
+ description_ends_with?: String;
|
|
|
+ description_not_ends_with?: String;
|
|
|
filename?: String;
|
|
|
filename_not?: String;
|
|
|
filename_in?: String[] | String;
|
|
@@ -2381,6 +2429,9 @@ export interface FileCreateManyInput {
|
|
|
}
|
|
|
|
|
|
export interface FileCreateInput {
|
|
|
+ path: String;
|
|
|
+ name?: String;
|
|
|
+ description?: String;
|
|
|
filename: String;
|
|
|
mimetype: String;
|
|
|
truncated: Boolean;
|
|
@@ -2654,6 +2705,9 @@ export interface FileUpdateWithWhereUniqueNestedInput {
|
|
|
}
|
|
|
|
|
|
export interface FileUpdateDataInput {
|
|
|
+ path?: String;
|
|
|
+ name?: String;
|
|
|
+ description?: String;
|
|
|
filename?: String;
|
|
|
mimetype?: String;
|
|
|
truncated?: Boolean;
|
|
@@ -2682,6 +2736,48 @@ export interface FileScalarWhereInput {
|
|
|
id_not_starts_with?: ID_Input;
|
|
|
id_ends_with?: ID_Input;
|
|
|
id_not_ends_with?: ID_Input;
|
|
|
+ path?: String;
|
|
|
+ path_not?: String;
|
|
|
+ path_in?: String[] | String;
|
|
|
+ path_not_in?: String[] | String;
|
|
|
+ path_lt?: String;
|
|
|
+ path_lte?: String;
|
|
|
+ path_gt?: String;
|
|
|
+ path_gte?: String;
|
|
|
+ path_contains?: String;
|
|
|
+ path_not_contains?: String;
|
|
|
+ path_starts_with?: String;
|
|
|
+ path_not_starts_with?: String;
|
|
|
+ path_ends_with?: String;
|
|
|
+ path_not_ends_with?: String;
|
|
|
+ name?: String;
|
|
|
+ name_not?: String;
|
|
|
+ name_in?: String[] | String;
|
|
|
+ name_not_in?: String[] | String;
|
|
|
+ name_lt?: String;
|
|
|
+ name_lte?: String;
|
|
|
+ name_gt?: String;
|
|
|
+ name_gte?: String;
|
|
|
+ name_contains?: String;
|
|
|
+ name_not_contains?: String;
|
|
|
+ name_starts_with?: String;
|
|
|
+ name_not_starts_with?: String;
|
|
|
+ name_ends_with?: String;
|
|
|
+ name_not_ends_with?: String;
|
|
|
+ description?: String;
|
|
|
+ description_not?: String;
|
|
|
+ description_in?: String[] | String;
|
|
|
+ description_not_in?: String[] | String;
|
|
|
+ description_lt?: String;
|
|
|
+ description_lte?: String;
|
|
|
+ description_gt?: String;
|
|
|
+ description_gte?: String;
|
|
|
+ description_contains?: String;
|
|
|
+ description_not_contains?: String;
|
|
|
+ description_starts_with?: String;
|
|
|
+ description_not_starts_with?: String;
|
|
|
+ description_ends_with?: String;
|
|
|
+ description_not_ends_with?: String;
|
|
|
filename?: String;
|
|
|
filename_not?: String;
|
|
|
filename_in?: String[] | String;
|
|
@@ -2745,6 +2841,9 @@ export interface FileUpdateManyWithWhereNestedInput {
|
|
|
}
|
|
|
|
|
|
export interface FileUpdateManyDataInput {
|
|
|
+ path?: String;
|
|
|
+ name?: String;
|
|
|
+ description?: String;
|
|
|
filename?: String;
|
|
|
mimetype?: String;
|
|
|
truncated?: Boolean;
|
|
@@ -4141,6 +4240,9 @@ export interface EventUpdateManyMutationInput {
|
|
|
}
|
|
|
|
|
|
export interface FileUpdateInput {
|
|
|
+ path?: String;
|
|
|
+ name?: String;
|
|
|
+ description?: String;
|
|
|
filename?: String;
|
|
|
mimetype?: String;
|
|
|
truncated?: Boolean;
|
|
@@ -4149,6 +4251,9 @@ export interface FileUpdateInput {
|
|
|
}
|
|
|
|
|
|
export interface FileUpdateManyMutationInput {
|
|
|
+ path?: String;
|
|
|
+ name?: String;
|
|
|
+ description?: String;
|
|
|
filename?: String;
|
|
|
mimetype?: String;
|
|
|
truncated?: Boolean;
|
|
@@ -4683,6 +4788,9 @@ export interface ProjectSubscription
|
|
|
|
|
|
export interface File {
|
|
|
id: ID_Output;
|
|
|
+ path: String;
|
|
|
+ name?: String;
|
|
|
+ description?: String;
|
|
|
filename: String;
|
|
|
mimetype: String;
|
|
|
truncated: Boolean;
|
|
@@ -4692,6 +4800,9 @@ export interface File {
|
|
|
|
|
|
export interface FilePromise extends Promise<File>, Fragmentable {
|
|
|
id: () => Promise<ID_Output>;
|
|
|
+ path: () => Promise<String>;
|
|
|
+ name: () => Promise<String>;
|
|
|
+ description: () => Promise<String>;
|
|
|
filename: () => Promise<String>;
|
|
|
mimetype: () => Promise<String>;
|
|
|
truncated: () => Promise<Boolean>;
|
|
@@ -4703,6 +4814,9 @@ export interface FileSubscription
|
|
|
extends Promise<AsyncIterator<File>>,
|
|
|
Fragmentable {
|
|
|
id: () => Promise<AsyncIterator<ID_Output>>;
|
|
|
+ path: () => Promise<AsyncIterator<String>>;
|
|
|
+ name: () => Promise<AsyncIterator<String>>;
|
|
|
+ description: () => Promise<AsyncIterator<String>>;
|
|
|
filename: () => Promise<AsyncIterator<String>>;
|
|
|
mimetype: () => Promise<AsyncIterator<String>>;
|
|
|
truncated: () => Promise<AsyncIterator<Boolean>>;
|
|
@@ -6759,6 +6873,9 @@ export interface FileSubscriptionPayloadSubscription
|
|
|
|
|
|
export interface FilePreviousValues {
|
|
|
id: ID_Output;
|
|
|
+ path: String;
|
|
|
+ name?: String;
|
|
|
+ description?: String;
|
|
|
filename: String;
|
|
|
mimetype: String;
|
|
|
truncated: Boolean;
|
|
@@ -6770,6 +6887,9 @@ export interface FilePreviousValuesPromise
|
|
|
extends Promise<FilePreviousValues>,
|
|
|
Fragmentable {
|
|
|
id: () => Promise<ID_Output>;
|
|
|
+ path: () => Promise<String>;
|
|
|
+ name: () => Promise<String>;
|
|
|
+ description: () => Promise<String>;
|
|
|
filename: () => Promise<String>;
|
|
|
mimetype: () => Promise<String>;
|
|
|
truncated: () => Promise<Boolean>;
|
|
@@ -6781,6 +6901,9 @@ export interface FilePreviousValuesSubscription
|
|
|
extends Promise<AsyncIterator<FilePreviousValues>>,
|
|
|
Fragmentable {
|
|
|
id: () => Promise<AsyncIterator<ID_Output>>;
|
|
|
+ path: () => Promise<AsyncIterator<String>>;
|
|
|
+ name: () => Promise<AsyncIterator<String>>;
|
|
|
+ description: () => Promise<AsyncIterator<String>>;
|
|
|
filename: () => Promise<AsyncIterator<String>>;
|
|
|
mimetype: () => Promise<AsyncIterator<String>>;
|
|
|
truncated: () => Promise<AsyncIterator<Boolean>>;
|