@delpa/mt-prisma 0.16.0 → 0.18.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/generated/generated/client/edge.js +19 -5
- package/dist/generated/generated/client/index-browser.js +17 -3
- package/dist/generated/generated/client/index.d.ts +1285 -35
- package/dist/generated/generated/client/index.js +19 -5
- package/dist/generated/generated/client/package.json +1 -1
- package/dist/generated/generated/client/schema.prisma +45 -22
- package/generated/client/edge.js +19 -5
- package/generated/client/index-browser.js +17 -3
- package/generated/client/index.d.ts +1285 -35
- package/generated/client/index.js +19 -5
- package/generated/client/package.json +1 -1
- package/generated/client/schema.prisma +45 -22
- package/package.json +2 -1
- package/prisma/migrations/20260204205146_add_company_id_to_orders/migration.sql +12 -0
- package/prisma/schema.prisma +60 -37
|
@@ -391,6 +391,15 @@ export const EquipmentStatus: {
|
|
|
391
391
|
export type EquipmentStatus = (typeof EquipmentStatus)[keyof typeof EquipmentStatus]
|
|
392
392
|
|
|
393
393
|
|
|
394
|
+
export const VehicleStatus: {
|
|
395
|
+
ACTIVE: 'ACTIVE',
|
|
396
|
+
INACTIVE: 'INACTIVE',
|
|
397
|
+
MAINTENANCE: 'MAINTENANCE'
|
|
398
|
+
};
|
|
399
|
+
|
|
400
|
+
export type VehicleStatus = (typeof VehicleStatus)[keyof typeof VehicleStatus]
|
|
401
|
+
|
|
402
|
+
|
|
394
403
|
export const GpsProviders: {
|
|
395
404
|
BEERMAN: 'BEERMAN',
|
|
396
405
|
GETRAK: 'GETRAK',
|
|
@@ -410,11 +419,12 @@ export type GpsProviders = (typeof GpsProviders)[keyof typeof GpsProviders]
|
|
|
410
419
|
|
|
411
420
|
|
|
412
421
|
export const TenderStatus: {
|
|
422
|
+
DRAFT: 'DRAFT',
|
|
413
423
|
OPEN: 'OPEN',
|
|
414
424
|
CLOSED: 'CLOSED',
|
|
415
425
|
AWARDED: 'AWARDED',
|
|
426
|
+
NOT_AWARDED: 'NOT_AWARDED',
|
|
416
427
|
CANCELLED: 'CANCELLED',
|
|
417
|
-
DRAFT: 'DRAFT',
|
|
418
428
|
PAUSED: 'PAUSED'
|
|
419
429
|
};
|
|
420
430
|
|
|
@@ -439,8 +449,8 @@ export type TripType = (typeof TripType)[keyof typeof TripType]
|
|
|
439
449
|
|
|
440
450
|
export const ApplicationStatus: {
|
|
441
451
|
PENDING: 'PENDING',
|
|
442
|
-
|
|
443
|
-
|
|
452
|
+
AWARDED: 'AWARDED',
|
|
453
|
+
NOT_AWARDED: 'NOT_AWARDED',
|
|
444
454
|
WITHDRAWN: 'WITHDRAWN'
|
|
445
455
|
};
|
|
446
456
|
|
|
@@ -567,6 +577,10 @@ export type EquipmentStatus = $Enums.EquipmentStatus
|
|
|
567
577
|
|
|
568
578
|
export const EquipmentStatus: typeof $Enums.EquipmentStatus
|
|
569
579
|
|
|
580
|
+
export type VehicleStatus = $Enums.VehicleStatus
|
|
581
|
+
|
|
582
|
+
export const VehicleStatus: typeof $Enums.VehicleStatus
|
|
583
|
+
|
|
570
584
|
export type GpsProviders = $Enums.GpsProviders
|
|
571
585
|
|
|
572
586
|
export const GpsProviders: typeof $Enums.GpsProviders
|
|
@@ -5024,11 +5038,13 @@ export namespace Prisma {
|
|
|
5024
5038
|
form_responses: number
|
|
5025
5039
|
forms: number
|
|
5026
5040
|
tenders: number
|
|
5041
|
+
orders: number
|
|
5027
5042
|
groups: number
|
|
5028
5043
|
companyLocations: number
|
|
5029
5044
|
regularSuppliers: number
|
|
5030
5045
|
products: number
|
|
5031
5046
|
regularSuppliers2: number
|
|
5047
|
+
supplierNotifications: number
|
|
5032
5048
|
}
|
|
5033
5049
|
|
|
5034
5050
|
export type CompaniesCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -5040,11 +5056,13 @@ export namespace Prisma {
|
|
|
5040
5056
|
form_responses?: boolean | CompaniesCountOutputTypeCountForm_responsesArgs
|
|
5041
5057
|
forms?: boolean | CompaniesCountOutputTypeCountFormsArgs
|
|
5042
5058
|
tenders?: boolean | CompaniesCountOutputTypeCountTendersArgs
|
|
5059
|
+
orders?: boolean | CompaniesCountOutputTypeCountOrdersArgs
|
|
5043
5060
|
groups?: boolean | CompaniesCountOutputTypeCountGroupsArgs
|
|
5044
5061
|
companyLocations?: boolean | CompaniesCountOutputTypeCountCompanyLocationsArgs
|
|
5045
5062
|
regularSuppliers?: boolean | CompaniesCountOutputTypeCountRegularSuppliersArgs
|
|
5046
5063
|
products?: boolean | CompaniesCountOutputTypeCountProductsArgs
|
|
5047
5064
|
regularSuppliers2?: boolean | CompaniesCountOutputTypeCountRegularSuppliers2Args
|
|
5065
|
+
supplierNotifications?: boolean | CompaniesCountOutputTypeCountSupplierNotificationsArgs
|
|
5048
5066
|
}
|
|
5049
5067
|
|
|
5050
5068
|
// Custom InputTypes
|
|
@@ -5114,6 +5132,13 @@ export namespace Prisma {
|
|
|
5114
5132
|
where?: TenderWhereInput
|
|
5115
5133
|
}
|
|
5116
5134
|
|
|
5135
|
+
/**
|
|
5136
|
+
* CompaniesCountOutputType without action
|
|
5137
|
+
*/
|
|
5138
|
+
export type CompaniesCountOutputTypeCountOrdersArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5139
|
+
where?: OrderWhereInput
|
|
5140
|
+
}
|
|
5141
|
+
|
|
5117
5142
|
/**
|
|
5118
5143
|
* CompaniesCountOutputType without action
|
|
5119
5144
|
*/
|
|
@@ -5149,6 +5174,13 @@ export namespace Prisma {
|
|
|
5149
5174
|
where?: RegularSupplierWhereInput
|
|
5150
5175
|
}
|
|
5151
5176
|
|
|
5177
|
+
/**
|
|
5178
|
+
* CompaniesCountOutputType without action
|
|
5179
|
+
*/
|
|
5180
|
+
export type CompaniesCountOutputTypeCountSupplierNotificationsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5181
|
+
where?: TenderNotificationWhereInput
|
|
5182
|
+
}
|
|
5183
|
+
|
|
5152
5184
|
|
|
5153
5185
|
/**
|
|
5154
5186
|
* Count Type HandlingUnitCountOutputType
|
|
@@ -10882,6 +10914,8 @@ export namespace Prisma {
|
|
|
10882
10914
|
id: string | null
|
|
10883
10915
|
reference: string | null
|
|
10884
10916
|
shipper_id: string | null
|
|
10917
|
+
company_id: string | null
|
|
10918
|
+
created_by: string | null
|
|
10885
10919
|
status: $Enums.RouteStatus | null
|
|
10886
10920
|
created_at: Date | null
|
|
10887
10921
|
updated_at: Date | null
|
|
@@ -10891,6 +10925,8 @@ export namespace Prisma {
|
|
|
10891
10925
|
id: string | null
|
|
10892
10926
|
reference: string | null
|
|
10893
10927
|
shipper_id: string | null
|
|
10928
|
+
company_id: string | null
|
|
10929
|
+
created_by: string | null
|
|
10894
10930
|
status: $Enums.RouteStatus | null
|
|
10895
10931
|
created_at: Date | null
|
|
10896
10932
|
updated_at: Date | null
|
|
@@ -10900,6 +10936,8 @@ export namespace Prisma {
|
|
|
10900
10936
|
id: number
|
|
10901
10937
|
reference: number
|
|
10902
10938
|
shipper_id: number
|
|
10939
|
+
company_id: number
|
|
10940
|
+
created_by: number
|
|
10903
10941
|
attachments: number
|
|
10904
10942
|
status: number
|
|
10905
10943
|
created_at: number
|
|
@@ -10912,6 +10950,8 @@ export namespace Prisma {
|
|
|
10912
10950
|
id?: true
|
|
10913
10951
|
reference?: true
|
|
10914
10952
|
shipper_id?: true
|
|
10953
|
+
company_id?: true
|
|
10954
|
+
created_by?: true
|
|
10915
10955
|
status?: true
|
|
10916
10956
|
created_at?: true
|
|
10917
10957
|
updated_at?: true
|
|
@@ -10921,6 +10961,8 @@ export namespace Prisma {
|
|
|
10921
10961
|
id?: true
|
|
10922
10962
|
reference?: true
|
|
10923
10963
|
shipper_id?: true
|
|
10964
|
+
company_id?: true
|
|
10965
|
+
created_by?: true
|
|
10924
10966
|
status?: true
|
|
10925
10967
|
created_at?: true
|
|
10926
10968
|
updated_at?: true
|
|
@@ -10930,6 +10972,8 @@ export namespace Prisma {
|
|
|
10930
10972
|
id?: true
|
|
10931
10973
|
reference?: true
|
|
10932
10974
|
shipper_id?: true
|
|
10975
|
+
company_id?: true
|
|
10976
|
+
created_by?: true
|
|
10933
10977
|
attachments?: true
|
|
10934
10978
|
status?: true
|
|
10935
10979
|
created_at?: true
|
|
@@ -11013,6 +11057,8 @@ export namespace Prisma {
|
|
|
11013
11057
|
id: string
|
|
11014
11058
|
reference: string | null
|
|
11015
11059
|
shipper_id: string | null
|
|
11060
|
+
company_id: string | null
|
|
11061
|
+
created_by: string | null
|
|
11016
11062
|
attachments: JsonValue | null
|
|
11017
11063
|
status: $Enums.RouteStatus
|
|
11018
11064
|
created_at: Date
|
|
@@ -11040,11 +11086,14 @@ export namespace Prisma {
|
|
|
11040
11086
|
id?: boolean
|
|
11041
11087
|
reference?: boolean
|
|
11042
11088
|
shipper_id?: boolean
|
|
11089
|
+
company_id?: boolean
|
|
11090
|
+
created_by?: boolean
|
|
11043
11091
|
attachments?: boolean
|
|
11044
11092
|
status?: boolean
|
|
11045
11093
|
created_at?: boolean
|
|
11046
11094
|
updated_at?: boolean
|
|
11047
11095
|
shipper?: boolean | Order$shipperArgs<ExtArgs>
|
|
11096
|
+
company?: boolean | Order$companyArgs<ExtArgs>
|
|
11048
11097
|
handling_units?: boolean | Order$handling_unitsArgs<ExtArgs>
|
|
11049
11098
|
routes?: boolean | Order$routesArgs<ExtArgs>
|
|
11050
11099
|
tenders?: boolean | Order$tendersArgs<ExtArgs>
|
|
@@ -11055,37 +11104,46 @@ export namespace Prisma {
|
|
|
11055
11104
|
id?: boolean
|
|
11056
11105
|
reference?: boolean
|
|
11057
11106
|
shipper_id?: boolean
|
|
11107
|
+
company_id?: boolean
|
|
11108
|
+
created_by?: boolean
|
|
11058
11109
|
attachments?: boolean
|
|
11059
11110
|
status?: boolean
|
|
11060
11111
|
created_at?: boolean
|
|
11061
11112
|
updated_at?: boolean
|
|
11062
11113
|
shipper?: boolean | Order$shipperArgs<ExtArgs>
|
|
11114
|
+
company?: boolean | Order$companyArgs<ExtArgs>
|
|
11063
11115
|
}, ExtArgs["result"]["order"]>
|
|
11064
11116
|
|
|
11065
11117
|
export type OrderSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
11066
11118
|
id?: boolean
|
|
11067
11119
|
reference?: boolean
|
|
11068
11120
|
shipper_id?: boolean
|
|
11121
|
+
company_id?: boolean
|
|
11122
|
+
created_by?: boolean
|
|
11069
11123
|
attachments?: boolean
|
|
11070
11124
|
status?: boolean
|
|
11071
11125
|
created_at?: boolean
|
|
11072
11126
|
updated_at?: boolean
|
|
11073
11127
|
shipper?: boolean | Order$shipperArgs<ExtArgs>
|
|
11128
|
+
company?: boolean | Order$companyArgs<ExtArgs>
|
|
11074
11129
|
}, ExtArgs["result"]["order"]>
|
|
11075
11130
|
|
|
11076
11131
|
export type OrderSelectScalar = {
|
|
11077
11132
|
id?: boolean
|
|
11078
11133
|
reference?: boolean
|
|
11079
11134
|
shipper_id?: boolean
|
|
11135
|
+
company_id?: boolean
|
|
11136
|
+
created_by?: boolean
|
|
11080
11137
|
attachments?: boolean
|
|
11081
11138
|
status?: boolean
|
|
11082
11139
|
created_at?: boolean
|
|
11083
11140
|
updated_at?: boolean
|
|
11084
11141
|
}
|
|
11085
11142
|
|
|
11086
|
-
export type OrderOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "reference" | "shipper_id" | "attachments" | "status" | "created_at" | "updated_at", ExtArgs["result"]["order"]>
|
|
11143
|
+
export type OrderOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "reference" | "shipper_id" | "company_id" | "created_by" | "attachments" | "status" | "created_at" | "updated_at", ExtArgs["result"]["order"]>
|
|
11087
11144
|
export type OrderInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11088
11145
|
shipper?: boolean | Order$shipperArgs<ExtArgs>
|
|
11146
|
+
company?: boolean | Order$companyArgs<ExtArgs>
|
|
11089
11147
|
handling_units?: boolean | Order$handling_unitsArgs<ExtArgs>
|
|
11090
11148
|
routes?: boolean | Order$routesArgs<ExtArgs>
|
|
11091
11149
|
tenders?: boolean | Order$tendersArgs<ExtArgs>
|
|
@@ -11093,15 +11151,18 @@ export namespace Prisma {
|
|
|
11093
11151
|
}
|
|
11094
11152
|
export type OrderIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11095
11153
|
shipper?: boolean | Order$shipperArgs<ExtArgs>
|
|
11154
|
+
company?: boolean | Order$companyArgs<ExtArgs>
|
|
11096
11155
|
}
|
|
11097
11156
|
export type OrderIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11098
11157
|
shipper?: boolean | Order$shipperArgs<ExtArgs>
|
|
11158
|
+
company?: boolean | Order$companyArgs<ExtArgs>
|
|
11099
11159
|
}
|
|
11100
11160
|
|
|
11101
11161
|
export type $OrderPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11102
11162
|
name: "Order"
|
|
11103
11163
|
objects: {
|
|
11104
11164
|
shipper: Prisma.$ClientPayload<ExtArgs> | null
|
|
11165
|
+
company: Prisma.$CompaniesPayload<ExtArgs> | null
|
|
11105
11166
|
handling_units: Prisma.$HandlingUnitPayload<ExtArgs>[]
|
|
11106
11167
|
routes: Prisma.$RoutePayload<ExtArgs>[]
|
|
11107
11168
|
tenders: Prisma.$TenderPayload<ExtArgs>[]
|
|
@@ -11110,6 +11171,8 @@ export namespace Prisma {
|
|
|
11110
11171
|
id: string
|
|
11111
11172
|
reference: string | null
|
|
11112
11173
|
shipper_id: string | null
|
|
11174
|
+
company_id: string | null
|
|
11175
|
+
created_by: string | null
|
|
11113
11176
|
attachments: Prisma.JsonValue | null
|
|
11114
11177
|
status: $Enums.RouteStatus
|
|
11115
11178
|
created_at: Date
|
|
@@ -11509,6 +11572,7 @@ export namespace Prisma {
|
|
|
11509
11572
|
export interface Prisma__OrderClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
11510
11573
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
11511
11574
|
shipper<T extends Order$shipperArgs<ExtArgs> = {}>(args?: Subset<T, Order$shipperArgs<ExtArgs>>): Prisma__ClientClient<$Result.GetResult<Prisma.$ClientPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
11575
|
+
company<T extends Order$companyArgs<ExtArgs> = {}>(args?: Subset<T, Order$companyArgs<ExtArgs>>): Prisma__CompaniesClient<$Result.GetResult<Prisma.$CompaniesPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
11512
11576
|
handling_units<T extends Order$handling_unitsArgs<ExtArgs> = {}>(args?: Subset<T, Order$handling_unitsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$HandlingUnitPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
11513
11577
|
routes<T extends Order$routesArgs<ExtArgs> = {}>(args?: Subset<T, Order$routesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RoutePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
11514
11578
|
tenders<T extends Order$tendersArgs<ExtArgs> = {}>(args?: Subset<T, Order$tendersArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TenderPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
@@ -11544,6 +11608,8 @@ export namespace Prisma {
|
|
|
11544
11608
|
readonly id: FieldRef<"Order", 'String'>
|
|
11545
11609
|
readonly reference: FieldRef<"Order", 'String'>
|
|
11546
11610
|
readonly shipper_id: FieldRef<"Order", 'String'>
|
|
11611
|
+
readonly company_id: FieldRef<"Order", 'String'>
|
|
11612
|
+
readonly created_by: FieldRef<"Order", 'String'>
|
|
11547
11613
|
readonly attachments: FieldRef<"Order", 'Json'>
|
|
11548
11614
|
readonly status: FieldRef<"Order", 'RouteStatus'>
|
|
11549
11615
|
readonly created_at: FieldRef<"Order", 'DateTime'>
|
|
@@ -11962,6 +12028,25 @@ export namespace Prisma {
|
|
|
11962
12028
|
where?: ClientWhereInput
|
|
11963
12029
|
}
|
|
11964
12030
|
|
|
12031
|
+
/**
|
|
12032
|
+
* Order.company
|
|
12033
|
+
*/
|
|
12034
|
+
export type Order$companyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
12035
|
+
/**
|
|
12036
|
+
* Select specific fields to fetch from the Companies
|
|
12037
|
+
*/
|
|
12038
|
+
select?: CompaniesSelect<ExtArgs> | null
|
|
12039
|
+
/**
|
|
12040
|
+
* Omit specific fields from the Companies
|
|
12041
|
+
*/
|
|
12042
|
+
omit?: CompaniesOmit<ExtArgs> | null
|
|
12043
|
+
/**
|
|
12044
|
+
* Choose, which related nodes to fetch as well
|
|
12045
|
+
*/
|
|
12046
|
+
include?: CompaniesInclude<ExtArgs> | null
|
|
12047
|
+
where?: CompaniesWhereInput
|
|
12048
|
+
}
|
|
12049
|
+
|
|
11965
12050
|
/**
|
|
11966
12051
|
* Order.handling_units
|
|
11967
12052
|
*/
|
|
@@ -12253,11 +12338,13 @@ export namespace Prisma {
|
|
|
12253
12338
|
form_responses?: boolean | Companies$form_responsesArgs<ExtArgs>
|
|
12254
12339
|
forms?: boolean | Companies$formsArgs<ExtArgs>
|
|
12255
12340
|
tenders?: boolean | Companies$tendersArgs<ExtArgs>
|
|
12341
|
+
orders?: boolean | Companies$ordersArgs<ExtArgs>
|
|
12256
12342
|
groups?: boolean | Companies$groupsArgs<ExtArgs>
|
|
12257
12343
|
companyLocations?: boolean | Companies$companyLocationsArgs<ExtArgs>
|
|
12258
12344
|
regularSuppliers?: boolean | Companies$regularSuppliersArgs<ExtArgs>
|
|
12259
12345
|
products?: boolean | Companies$productsArgs<ExtArgs>
|
|
12260
12346
|
regularSuppliers2?: boolean | Companies$regularSuppliers2Args<ExtArgs>
|
|
12347
|
+
supplierNotifications?: boolean | Companies$supplierNotificationsArgs<ExtArgs>
|
|
12261
12348
|
_count?: boolean | CompaniesCountOutputTypeDefaultArgs<ExtArgs>
|
|
12262
12349
|
}, ExtArgs["result"]["companies"]>
|
|
12263
12350
|
|
|
@@ -12310,11 +12397,13 @@ export namespace Prisma {
|
|
|
12310
12397
|
form_responses?: boolean | Companies$form_responsesArgs<ExtArgs>
|
|
12311
12398
|
forms?: boolean | Companies$formsArgs<ExtArgs>
|
|
12312
12399
|
tenders?: boolean | Companies$tendersArgs<ExtArgs>
|
|
12400
|
+
orders?: boolean | Companies$ordersArgs<ExtArgs>
|
|
12313
12401
|
groups?: boolean | Companies$groupsArgs<ExtArgs>
|
|
12314
12402
|
companyLocations?: boolean | Companies$companyLocationsArgs<ExtArgs>
|
|
12315
12403
|
regularSuppliers?: boolean | Companies$regularSuppliersArgs<ExtArgs>
|
|
12316
12404
|
products?: boolean | Companies$productsArgs<ExtArgs>
|
|
12317
12405
|
regularSuppliers2?: boolean | Companies$regularSuppliers2Args<ExtArgs>
|
|
12406
|
+
supplierNotifications?: boolean | Companies$supplierNotificationsArgs<ExtArgs>
|
|
12318
12407
|
_count?: boolean | CompaniesCountOutputTypeDefaultArgs<ExtArgs>
|
|
12319
12408
|
}
|
|
12320
12409
|
export type CompaniesIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
|
|
@@ -12331,11 +12420,13 @@ export namespace Prisma {
|
|
|
12331
12420
|
form_responses: Prisma.$FormResponsePayload<ExtArgs>[]
|
|
12332
12421
|
forms: Prisma.$FormPayload<ExtArgs>[]
|
|
12333
12422
|
tenders: Prisma.$TenderPayload<ExtArgs>[]
|
|
12423
|
+
orders: Prisma.$OrderPayload<ExtArgs>[]
|
|
12334
12424
|
groups: Prisma.$GroupPayload<ExtArgs>[]
|
|
12335
12425
|
companyLocations: Prisma.$CompanyLocationPayload<ExtArgs>[]
|
|
12336
12426
|
regularSuppliers: Prisma.$RegularSupplierPayload<ExtArgs>[]
|
|
12337
12427
|
products: Prisma.$ProductPayload<ExtArgs>[]
|
|
12338
12428
|
regularSuppliers2: Prisma.$RegularSupplierPayload<ExtArgs>[]
|
|
12429
|
+
supplierNotifications: Prisma.$TenderNotificationPayload<ExtArgs>[]
|
|
12339
12430
|
}
|
|
12340
12431
|
scalars: $Extensions.GetPayloadResult<{
|
|
12341
12432
|
id: string
|
|
@@ -12750,11 +12841,13 @@ export namespace Prisma {
|
|
|
12750
12841
|
form_responses<T extends Companies$form_responsesArgs<ExtArgs> = {}>(args?: Subset<T, Companies$form_responsesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$FormResponsePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
12751
12842
|
forms<T extends Companies$formsArgs<ExtArgs> = {}>(args?: Subset<T, Companies$formsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$FormPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
12752
12843
|
tenders<T extends Companies$tendersArgs<ExtArgs> = {}>(args?: Subset<T, Companies$tendersArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TenderPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
12844
|
+
orders<T extends Companies$ordersArgs<ExtArgs> = {}>(args?: Subset<T, Companies$ordersArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$OrderPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
12753
12845
|
groups<T extends Companies$groupsArgs<ExtArgs> = {}>(args?: Subset<T, Companies$groupsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$GroupPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
12754
12846
|
companyLocations<T extends Companies$companyLocationsArgs<ExtArgs> = {}>(args?: Subset<T, Companies$companyLocationsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CompanyLocationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
12755
12847
|
regularSuppliers<T extends Companies$regularSuppliersArgs<ExtArgs> = {}>(args?: Subset<T, Companies$regularSuppliersArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RegularSupplierPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
12756
12848
|
products<T extends Companies$productsArgs<ExtArgs> = {}>(args?: Subset<T, Companies$productsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProductPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
12757
12849
|
regularSuppliers2<T extends Companies$regularSuppliers2Args<ExtArgs> = {}>(args?: Subset<T, Companies$regularSuppliers2Args<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RegularSupplierPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
12850
|
+
supplierNotifications<T extends Companies$supplierNotificationsArgs<ExtArgs> = {}>(args?: Subset<T, Companies$supplierNotificationsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TenderNotificationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
12758
12851
|
/**
|
|
12759
12852
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
12760
12853
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -13373,6 +13466,30 @@ export namespace Prisma {
|
|
|
13373
13466
|
distinct?: TenderScalarFieldEnum | TenderScalarFieldEnum[]
|
|
13374
13467
|
}
|
|
13375
13468
|
|
|
13469
|
+
/**
|
|
13470
|
+
* Companies.orders
|
|
13471
|
+
*/
|
|
13472
|
+
export type Companies$ordersArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
13473
|
+
/**
|
|
13474
|
+
* Select specific fields to fetch from the Order
|
|
13475
|
+
*/
|
|
13476
|
+
select?: OrderSelect<ExtArgs> | null
|
|
13477
|
+
/**
|
|
13478
|
+
* Omit specific fields from the Order
|
|
13479
|
+
*/
|
|
13480
|
+
omit?: OrderOmit<ExtArgs> | null
|
|
13481
|
+
/**
|
|
13482
|
+
* Choose, which related nodes to fetch as well
|
|
13483
|
+
*/
|
|
13484
|
+
include?: OrderInclude<ExtArgs> | null
|
|
13485
|
+
where?: OrderWhereInput
|
|
13486
|
+
orderBy?: OrderOrderByWithRelationInput | OrderOrderByWithRelationInput[]
|
|
13487
|
+
cursor?: OrderWhereUniqueInput
|
|
13488
|
+
take?: number
|
|
13489
|
+
skip?: number
|
|
13490
|
+
distinct?: OrderScalarFieldEnum | OrderScalarFieldEnum[]
|
|
13491
|
+
}
|
|
13492
|
+
|
|
13376
13493
|
/**
|
|
13377
13494
|
* Companies.groups
|
|
13378
13495
|
*/
|
|
@@ -13493,6 +13610,30 @@ export namespace Prisma {
|
|
|
13493
13610
|
distinct?: RegularSupplierScalarFieldEnum | RegularSupplierScalarFieldEnum[]
|
|
13494
13611
|
}
|
|
13495
13612
|
|
|
13613
|
+
/**
|
|
13614
|
+
* Companies.supplierNotifications
|
|
13615
|
+
*/
|
|
13616
|
+
export type Companies$supplierNotificationsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
13617
|
+
/**
|
|
13618
|
+
* Select specific fields to fetch from the TenderNotification
|
|
13619
|
+
*/
|
|
13620
|
+
select?: TenderNotificationSelect<ExtArgs> | null
|
|
13621
|
+
/**
|
|
13622
|
+
* Omit specific fields from the TenderNotification
|
|
13623
|
+
*/
|
|
13624
|
+
omit?: TenderNotificationOmit<ExtArgs> | null
|
|
13625
|
+
/**
|
|
13626
|
+
* Choose, which related nodes to fetch as well
|
|
13627
|
+
*/
|
|
13628
|
+
include?: TenderNotificationInclude<ExtArgs> | null
|
|
13629
|
+
where?: TenderNotificationWhereInput
|
|
13630
|
+
orderBy?: TenderNotificationOrderByWithRelationInput | TenderNotificationOrderByWithRelationInput[]
|
|
13631
|
+
cursor?: TenderNotificationWhereUniqueInput
|
|
13632
|
+
take?: number
|
|
13633
|
+
skip?: number
|
|
13634
|
+
distinct?: TenderNotificationScalarFieldEnum | TenderNotificationScalarFieldEnum[]
|
|
13635
|
+
}
|
|
13636
|
+
|
|
13496
13637
|
/**
|
|
13497
13638
|
* Companies without action
|
|
13498
13639
|
*/
|
|
@@ -20743,6 +20884,7 @@ export namespace Prisma {
|
|
|
20743
20884
|
color: $Enums.VehicleColor | null
|
|
20744
20885
|
chassis_number: string | null
|
|
20745
20886
|
size: $Enums.VehicleSize | null
|
|
20887
|
+
status: $Enums.VehicleStatus | null
|
|
20746
20888
|
gps_enabled: boolean | null
|
|
20747
20889
|
company_id: string | null
|
|
20748
20890
|
is_validated: boolean | null
|
|
@@ -20762,6 +20904,7 @@ export namespace Prisma {
|
|
|
20762
20904
|
color: $Enums.VehicleColor | null
|
|
20763
20905
|
chassis_number: string | null
|
|
20764
20906
|
size: $Enums.VehicleSize | null
|
|
20907
|
+
status: $Enums.VehicleStatus | null
|
|
20765
20908
|
gps_enabled: boolean | null
|
|
20766
20909
|
company_id: string | null
|
|
20767
20910
|
is_validated: boolean | null
|
|
@@ -20781,6 +20924,7 @@ export namespace Prisma {
|
|
|
20781
20924
|
color: number
|
|
20782
20925
|
chassis_number: number
|
|
20783
20926
|
size: number
|
|
20927
|
+
status: number
|
|
20784
20928
|
gps_enabled: number
|
|
20785
20929
|
image_url: number
|
|
20786
20930
|
company_id: number
|
|
@@ -20814,6 +20958,7 @@ export namespace Prisma {
|
|
|
20814
20958
|
color?: true
|
|
20815
20959
|
chassis_number?: true
|
|
20816
20960
|
size?: true
|
|
20961
|
+
status?: true
|
|
20817
20962
|
gps_enabled?: true
|
|
20818
20963
|
company_id?: true
|
|
20819
20964
|
is_validated?: true
|
|
@@ -20833,6 +20978,7 @@ export namespace Prisma {
|
|
|
20833
20978
|
color?: true
|
|
20834
20979
|
chassis_number?: true
|
|
20835
20980
|
size?: true
|
|
20981
|
+
status?: true
|
|
20836
20982
|
gps_enabled?: true
|
|
20837
20983
|
company_id?: true
|
|
20838
20984
|
is_validated?: true
|
|
@@ -20852,6 +20998,7 @@ export namespace Prisma {
|
|
|
20852
20998
|
color?: true
|
|
20853
20999
|
chassis_number?: true
|
|
20854
21000
|
size?: true
|
|
21001
|
+
status?: true
|
|
20855
21002
|
gps_enabled?: true
|
|
20856
21003
|
image_url?: true
|
|
20857
21004
|
company_id?: true
|
|
@@ -20960,6 +21107,7 @@ export namespace Prisma {
|
|
|
20960
21107
|
color: $Enums.VehicleColor | null
|
|
20961
21108
|
chassis_number: string | null
|
|
20962
21109
|
size: $Enums.VehicleSize | null
|
|
21110
|
+
status: $Enums.VehicleStatus
|
|
20963
21111
|
gps_enabled: boolean
|
|
20964
21112
|
image_url: JsonValue | null
|
|
20965
21113
|
company_id: string | null
|
|
@@ -21000,6 +21148,7 @@ export namespace Prisma {
|
|
|
21000
21148
|
color?: boolean
|
|
21001
21149
|
chassis_number?: boolean
|
|
21002
21150
|
size?: boolean
|
|
21151
|
+
status?: boolean
|
|
21003
21152
|
gps_enabled?: boolean
|
|
21004
21153
|
image_url?: boolean
|
|
21005
21154
|
company_id?: boolean
|
|
@@ -21030,6 +21179,7 @@ export namespace Prisma {
|
|
|
21030
21179
|
color?: boolean
|
|
21031
21180
|
chassis_number?: boolean
|
|
21032
21181
|
size?: boolean
|
|
21182
|
+
status?: boolean
|
|
21033
21183
|
gps_enabled?: boolean
|
|
21034
21184
|
image_url?: boolean
|
|
21035
21185
|
company_id?: boolean
|
|
@@ -21055,6 +21205,7 @@ export namespace Prisma {
|
|
|
21055
21205
|
color?: boolean
|
|
21056
21206
|
chassis_number?: boolean
|
|
21057
21207
|
size?: boolean
|
|
21208
|
+
status?: boolean
|
|
21058
21209
|
gps_enabled?: boolean
|
|
21059
21210
|
image_url?: boolean
|
|
21060
21211
|
company_id?: boolean
|
|
@@ -21080,6 +21231,7 @@ export namespace Prisma {
|
|
|
21080
21231
|
color?: boolean
|
|
21081
21232
|
chassis_number?: boolean
|
|
21082
21233
|
size?: boolean
|
|
21234
|
+
status?: boolean
|
|
21083
21235
|
gps_enabled?: boolean
|
|
21084
21236
|
image_url?: boolean
|
|
21085
21237
|
company_id?: boolean
|
|
@@ -21089,7 +21241,7 @@ export namespace Prisma {
|
|
|
21089
21241
|
updated_at?: boolean
|
|
21090
21242
|
}
|
|
21091
21243
|
|
|
21092
|
-
export type VehicleOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "license_plate" | "brand_id" | "model_id" | "vehicle_type_id" | "capacity" | "year" | "fuel_type" | "color" | "chassis_number" | "size" | "gps_enabled" | "image_url" | "company_id" | "is_validated" | "documents" | "created_at" | "updated_at", ExtArgs["result"]["vehicle"]>
|
|
21244
|
+
export type VehicleOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "license_plate" | "brand_id" | "model_id" | "vehicle_type_id" | "capacity" | "year" | "fuel_type" | "color" | "chassis_number" | "size" | "status" | "gps_enabled" | "image_url" | "company_id" | "is_validated" | "documents" | "created_at" | "updated_at", ExtArgs["result"]["vehicle"]>
|
|
21093
21245
|
export type VehicleInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
21094
21246
|
brand?: boolean | Vehicle$brandArgs<ExtArgs>
|
|
21095
21247
|
model?: boolean | Vehicle$modelArgs<ExtArgs>
|
|
@@ -21138,6 +21290,7 @@ export namespace Prisma {
|
|
|
21138
21290
|
color: $Enums.VehicleColor | null
|
|
21139
21291
|
chassis_number: string | null
|
|
21140
21292
|
size: $Enums.VehicleSize | null
|
|
21293
|
+
status: $Enums.VehicleStatus
|
|
21141
21294
|
gps_enabled: boolean
|
|
21142
21295
|
image_url: Prisma.JsonValue | null
|
|
21143
21296
|
company_id: string | null
|
|
@@ -21587,6 +21740,7 @@ export namespace Prisma {
|
|
|
21587
21740
|
readonly color: FieldRef<"Vehicle", 'VehicleColor'>
|
|
21588
21741
|
readonly chassis_number: FieldRef<"Vehicle", 'String'>
|
|
21589
21742
|
readonly size: FieldRef<"Vehicle", 'VehicleSize'>
|
|
21743
|
+
readonly status: FieldRef<"Vehicle", 'VehicleStatus'>
|
|
21590
21744
|
readonly gps_enabled: FieldRef<"Vehicle", 'Boolean'>
|
|
21591
21745
|
readonly image_url: FieldRef<"Vehicle", 'Json'>
|
|
21592
21746
|
readonly company_id: FieldRef<"Vehicle", 'String'>
|
|
@@ -41527,6 +41681,7 @@ export namespace Prisma {
|
|
|
41527
41681
|
|
|
41528
41682
|
export type TenderMinAggregateOutputType = {
|
|
41529
41683
|
id: string | null
|
|
41684
|
+
code: string | null
|
|
41530
41685
|
title: string | null
|
|
41531
41686
|
description: string | null
|
|
41532
41687
|
status: $Enums.TenderStatus | null
|
|
@@ -41545,6 +41700,7 @@ export namespace Prisma {
|
|
|
41545
41700
|
|
|
41546
41701
|
export type TenderMaxAggregateOutputType = {
|
|
41547
41702
|
id: string | null
|
|
41703
|
+
code: string | null
|
|
41548
41704
|
title: string | null
|
|
41549
41705
|
description: string | null
|
|
41550
41706
|
status: $Enums.TenderStatus | null
|
|
@@ -41563,6 +41719,7 @@ export namespace Prisma {
|
|
|
41563
41719
|
|
|
41564
41720
|
export type TenderCountAggregateOutputType = {
|
|
41565
41721
|
id: number
|
|
41722
|
+
code: number
|
|
41566
41723
|
title: number
|
|
41567
41724
|
description: number
|
|
41568
41725
|
status: number
|
|
@@ -41592,6 +41749,7 @@ export namespace Prisma {
|
|
|
41592
41749
|
|
|
41593
41750
|
export type TenderMinAggregateInputType = {
|
|
41594
41751
|
id?: true
|
|
41752
|
+
code?: true
|
|
41595
41753
|
title?: true
|
|
41596
41754
|
description?: true
|
|
41597
41755
|
status?: true
|
|
@@ -41610,6 +41768,7 @@ export namespace Prisma {
|
|
|
41610
41768
|
|
|
41611
41769
|
export type TenderMaxAggregateInputType = {
|
|
41612
41770
|
id?: true
|
|
41771
|
+
code?: true
|
|
41613
41772
|
title?: true
|
|
41614
41773
|
description?: true
|
|
41615
41774
|
status?: true
|
|
@@ -41628,6 +41787,7 @@ export namespace Prisma {
|
|
|
41628
41787
|
|
|
41629
41788
|
export type TenderCountAggregateInputType = {
|
|
41630
41789
|
id?: true
|
|
41790
|
+
code?: true
|
|
41631
41791
|
title?: true
|
|
41632
41792
|
description?: true
|
|
41633
41793
|
status?: true
|
|
@@ -41734,6 +41894,7 @@ export namespace Prisma {
|
|
|
41734
41894
|
|
|
41735
41895
|
export type TenderGroupByOutputType = {
|
|
41736
41896
|
id: string
|
|
41897
|
+
code: string | null
|
|
41737
41898
|
title: string
|
|
41738
41899
|
description: string | null
|
|
41739
41900
|
status: $Enums.TenderStatus
|
|
@@ -41772,6 +41933,7 @@ export namespace Prisma {
|
|
|
41772
41933
|
|
|
41773
41934
|
export type TenderSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
41774
41935
|
id?: boolean
|
|
41936
|
+
code?: boolean
|
|
41775
41937
|
title?: boolean
|
|
41776
41938
|
description?: boolean
|
|
41777
41939
|
status?: boolean
|
|
@@ -41799,6 +41961,7 @@ export namespace Prisma {
|
|
|
41799
41961
|
|
|
41800
41962
|
export type TenderSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
41801
41963
|
id?: boolean
|
|
41964
|
+
code?: boolean
|
|
41802
41965
|
title?: boolean
|
|
41803
41966
|
description?: boolean
|
|
41804
41967
|
status?: boolean
|
|
@@ -41821,6 +41984,7 @@ export namespace Prisma {
|
|
|
41821
41984
|
|
|
41822
41985
|
export type TenderSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
41823
41986
|
id?: boolean
|
|
41987
|
+
code?: boolean
|
|
41824
41988
|
title?: boolean
|
|
41825
41989
|
description?: boolean
|
|
41826
41990
|
status?: boolean
|
|
@@ -41843,6 +42007,7 @@ export namespace Prisma {
|
|
|
41843
42007
|
|
|
41844
42008
|
export type TenderSelectScalar = {
|
|
41845
42009
|
id?: boolean
|
|
42010
|
+
code?: boolean
|
|
41846
42011
|
title?: boolean
|
|
41847
42012
|
description?: boolean
|
|
41848
42013
|
status?: boolean
|
|
@@ -41860,7 +42025,7 @@ export namespace Prisma {
|
|
|
41860
42025
|
updated_at?: boolean
|
|
41861
42026
|
}
|
|
41862
42027
|
|
|
41863
|
-
export type TenderOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "title" | "description" | "status" | "tender_type" | "tender_mode" | "budget" | "currency" | "user_id" | "company_id" | "order_id" | "trip_type" | "expiration_date" | "terms_and_conditions" | "created_at" | "updated_at", ExtArgs["result"]["tender"]>
|
|
42028
|
+
export type TenderOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "code" | "title" | "description" | "status" | "tender_type" | "tender_mode" | "budget" | "currency" | "user_id" | "company_id" | "order_id" | "trip_type" | "expiration_date" | "terms_and_conditions" | "created_at" | "updated_at", ExtArgs["result"]["tender"]>
|
|
41864
42029
|
export type TenderInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
41865
42030
|
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
41866
42031
|
company?: boolean | CompaniesDefaultArgs<ExtArgs>
|
|
@@ -41895,6 +42060,7 @@ export namespace Prisma {
|
|
|
41895
42060
|
}
|
|
41896
42061
|
scalars: $Extensions.GetPayloadResult<{
|
|
41897
42062
|
id: string
|
|
42063
|
+
code: string | null
|
|
41898
42064
|
title: string
|
|
41899
42065
|
description: string | null
|
|
41900
42066
|
status: $Enums.TenderStatus
|
|
@@ -42341,6 +42507,7 @@ export namespace Prisma {
|
|
|
42341
42507
|
*/
|
|
42342
42508
|
interface TenderFieldRefs {
|
|
42343
42509
|
readonly id: FieldRef<"Tender", 'String'>
|
|
42510
|
+
readonly code: FieldRef<"Tender", 'String'>
|
|
42344
42511
|
readonly title: FieldRef<"Tender", 'String'>
|
|
42345
42512
|
readonly description: FieldRef<"Tender", 'String'>
|
|
42346
42513
|
readonly status: FieldRef<"Tender", 'TenderStatus'>
|
|
@@ -45310,6 +45477,7 @@ export namespace Prisma {
|
|
|
45310
45477
|
user_sends_id: string | null
|
|
45311
45478
|
user_receives_id: string | null
|
|
45312
45479
|
message: string | null
|
|
45480
|
+
read_at: Date | null
|
|
45313
45481
|
created_at: Date | null
|
|
45314
45482
|
}
|
|
45315
45483
|
|
|
@@ -45319,6 +45487,7 @@ export namespace Prisma {
|
|
|
45319
45487
|
user_sends_id: string | null
|
|
45320
45488
|
user_receives_id: string | null
|
|
45321
45489
|
message: string | null
|
|
45490
|
+
read_at: Date | null
|
|
45322
45491
|
created_at: Date | null
|
|
45323
45492
|
}
|
|
45324
45493
|
|
|
@@ -45328,6 +45497,7 @@ export namespace Prisma {
|
|
|
45328
45497
|
user_sends_id: number
|
|
45329
45498
|
user_receives_id: number
|
|
45330
45499
|
message: number
|
|
45500
|
+
read_at: number
|
|
45331
45501
|
created_at: number
|
|
45332
45502
|
_all: number
|
|
45333
45503
|
}
|
|
@@ -45339,6 +45509,7 @@ export namespace Prisma {
|
|
|
45339
45509
|
user_sends_id?: true
|
|
45340
45510
|
user_receives_id?: true
|
|
45341
45511
|
message?: true
|
|
45512
|
+
read_at?: true
|
|
45342
45513
|
created_at?: true
|
|
45343
45514
|
}
|
|
45344
45515
|
|
|
@@ -45348,6 +45519,7 @@ export namespace Prisma {
|
|
|
45348
45519
|
user_sends_id?: true
|
|
45349
45520
|
user_receives_id?: true
|
|
45350
45521
|
message?: true
|
|
45522
|
+
read_at?: true
|
|
45351
45523
|
created_at?: true
|
|
45352
45524
|
}
|
|
45353
45525
|
|
|
@@ -45357,6 +45529,7 @@ export namespace Prisma {
|
|
|
45357
45529
|
user_sends_id?: true
|
|
45358
45530
|
user_receives_id?: true
|
|
45359
45531
|
message?: true
|
|
45532
|
+
read_at?: true
|
|
45360
45533
|
created_at?: true
|
|
45361
45534
|
_all?: true
|
|
45362
45535
|
}
|
|
@@ -45439,6 +45612,7 @@ export namespace Prisma {
|
|
|
45439
45612
|
user_sends_id: string
|
|
45440
45613
|
user_receives_id: string
|
|
45441
45614
|
message: string
|
|
45615
|
+
read_at: Date | null
|
|
45442
45616
|
created_at: Date
|
|
45443
45617
|
_count: TenderChatCountAggregateOutputType | null
|
|
45444
45618
|
_min: TenderChatMinAggregateOutputType | null
|
|
@@ -45465,6 +45639,7 @@ export namespace Prisma {
|
|
|
45465
45639
|
user_sends_id?: boolean
|
|
45466
45640
|
user_receives_id?: boolean
|
|
45467
45641
|
message?: boolean
|
|
45642
|
+
read_at?: boolean
|
|
45468
45643
|
created_at?: boolean
|
|
45469
45644
|
tender?: boolean | TenderDefaultArgs<ExtArgs>
|
|
45470
45645
|
user_sends?: boolean | UserDefaultArgs<ExtArgs>
|
|
@@ -45477,6 +45652,7 @@ export namespace Prisma {
|
|
|
45477
45652
|
user_sends_id?: boolean
|
|
45478
45653
|
user_receives_id?: boolean
|
|
45479
45654
|
message?: boolean
|
|
45655
|
+
read_at?: boolean
|
|
45480
45656
|
created_at?: boolean
|
|
45481
45657
|
tender?: boolean | TenderDefaultArgs<ExtArgs>
|
|
45482
45658
|
user_sends?: boolean | UserDefaultArgs<ExtArgs>
|
|
@@ -45489,6 +45665,7 @@ export namespace Prisma {
|
|
|
45489
45665
|
user_sends_id?: boolean
|
|
45490
45666
|
user_receives_id?: boolean
|
|
45491
45667
|
message?: boolean
|
|
45668
|
+
read_at?: boolean
|
|
45492
45669
|
created_at?: boolean
|
|
45493
45670
|
tender?: boolean | TenderDefaultArgs<ExtArgs>
|
|
45494
45671
|
user_sends?: boolean | UserDefaultArgs<ExtArgs>
|
|
@@ -45501,10 +45678,11 @@ export namespace Prisma {
|
|
|
45501
45678
|
user_sends_id?: boolean
|
|
45502
45679
|
user_receives_id?: boolean
|
|
45503
45680
|
message?: boolean
|
|
45681
|
+
read_at?: boolean
|
|
45504
45682
|
created_at?: boolean
|
|
45505
45683
|
}
|
|
45506
45684
|
|
|
45507
|
-
export type TenderChatOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "tender_id" | "user_sends_id" | "user_receives_id" | "message" | "created_at", ExtArgs["result"]["tenderChat"]>
|
|
45685
|
+
export type TenderChatOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "tender_id" | "user_sends_id" | "user_receives_id" | "message" | "read_at" | "created_at", ExtArgs["result"]["tenderChat"]>
|
|
45508
45686
|
export type TenderChatInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45509
45687
|
tender?: boolean | TenderDefaultArgs<ExtArgs>
|
|
45510
45688
|
user_sends?: boolean | UserDefaultArgs<ExtArgs>
|
|
@@ -45534,6 +45712,7 @@ export namespace Prisma {
|
|
|
45534
45712
|
user_sends_id: string
|
|
45535
45713
|
user_receives_id: string
|
|
45536
45714
|
message: string
|
|
45715
|
+
read_at: Date | null
|
|
45537
45716
|
created_at: Date
|
|
45538
45717
|
}, ExtArgs["result"]["tenderChat"]>
|
|
45539
45718
|
composites: {}
|
|
@@ -45966,6 +46145,7 @@ export namespace Prisma {
|
|
|
45966
46145
|
readonly user_sends_id: FieldRef<"TenderChat", 'String'>
|
|
45967
46146
|
readonly user_receives_id: FieldRef<"TenderChat", 'String'>
|
|
45968
46147
|
readonly message: FieldRef<"TenderChat", 'String'>
|
|
46148
|
+
readonly read_at: FieldRef<"TenderChat", 'DateTime'>
|
|
45969
46149
|
readonly created_at: FieldRef<"TenderChat", 'DateTime'>
|
|
45970
46150
|
}
|
|
45971
46151
|
|
|
@@ -49804,6 +49984,7 @@ export namespace Prisma {
|
|
|
49804
49984
|
tender_id: string | null
|
|
49805
49985
|
user_id: string | null
|
|
49806
49986
|
group_id: string | null
|
|
49987
|
+
supplier_company_id: string | null
|
|
49807
49988
|
whatsapp: boolean | null
|
|
49808
49989
|
email: boolean | null
|
|
49809
49990
|
push: boolean | null
|
|
@@ -49816,6 +49997,7 @@ export namespace Prisma {
|
|
|
49816
49997
|
tender_id: string | null
|
|
49817
49998
|
user_id: string | null
|
|
49818
49999
|
group_id: string | null
|
|
50000
|
+
supplier_company_id: string | null
|
|
49819
50001
|
whatsapp: boolean | null
|
|
49820
50002
|
email: boolean | null
|
|
49821
50003
|
push: boolean | null
|
|
@@ -49828,6 +50010,7 @@ export namespace Prisma {
|
|
|
49828
50010
|
tender_id: number
|
|
49829
50011
|
user_id: number
|
|
49830
50012
|
group_id: number
|
|
50013
|
+
supplier_company_id: number
|
|
49831
50014
|
whatsapp: number
|
|
49832
50015
|
email: number
|
|
49833
50016
|
push: number
|
|
@@ -49842,6 +50025,7 @@ export namespace Prisma {
|
|
|
49842
50025
|
tender_id?: true
|
|
49843
50026
|
user_id?: true
|
|
49844
50027
|
group_id?: true
|
|
50028
|
+
supplier_company_id?: true
|
|
49845
50029
|
whatsapp?: true
|
|
49846
50030
|
email?: true
|
|
49847
50031
|
push?: true
|
|
@@ -49854,6 +50038,7 @@ export namespace Prisma {
|
|
|
49854
50038
|
tender_id?: true
|
|
49855
50039
|
user_id?: true
|
|
49856
50040
|
group_id?: true
|
|
50041
|
+
supplier_company_id?: true
|
|
49857
50042
|
whatsapp?: true
|
|
49858
50043
|
email?: true
|
|
49859
50044
|
push?: true
|
|
@@ -49866,6 +50051,7 @@ export namespace Prisma {
|
|
|
49866
50051
|
tender_id?: true
|
|
49867
50052
|
user_id?: true
|
|
49868
50053
|
group_id?: true
|
|
50054
|
+
supplier_company_id?: true
|
|
49869
50055
|
whatsapp?: true
|
|
49870
50056
|
email?: true
|
|
49871
50057
|
push?: true
|
|
@@ -49951,6 +50137,7 @@ export namespace Prisma {
|
|
|
49951
50137
|
tender_id: string
|
|
49952
50138
|
user_id: string | null
|
|
49953
50139
|
group_id: string | null
|
|
50140
|
+
supplier_company_id: string | null
|
|
49954
50141
|
whatsapp: boolean
|
|
49955
50142
|
email: boolean
|
|
49956
50143
|
push: boolean
|
|
@@ -49980,6 +50167,7 @@ export namespace Prisma {
|
|
|
49980
50167
|
tender_id?: boolean
|
|
49981
50168
|
user_id?: boolean
|
|
49982
50169
|
group_id?: boolean
|
|
50170
|
+
supplier_company_id?: boolean
|
|
49983
50171
|
whatsapp?: boolean
|
|
49984
50172
|
email?: boolean
|
|
49985
50173
|
push?: boolean
|
|
@@ -49988,6 +50176,7 @@ export namespace Prisma {
|
|
|
49988
50176
|
tender?: boolean | TenderDefaultArgs<ExtArgs>
|
|
49989
50177
|
user?: boolean | TenderNotification$userArgs<ExtArgs>
|
|
49990
50178
|
group?: boolean | TenderNotification$groupArgs<ExtArgs>
|
|
50179
|
+
supplierCompany?: boolean | TenderNotification$supplierCompanyArgs<ExtArgs>
|
|
49991
50180
|
}, ExtArgs["result"]["tenderNotification"]>
|
|
49992
50181
|
|
|
49993
50182
|
export type TenderNotificationSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -49995,6 +50184,7 @@ export namespace Prisma {
|
|
|
49995
50184
|
tender_id?: boolean
|
|
49996
50185
|
user_id?: boolean
|
|
49997
50186
|
group_id?: boolean
|
|
50187
|
+
supplier_company_id?: boolean
|
|
49998
50188
|
whatsapp?: boolean
|
|
49999
50189
|
email?: boolean
|
|
50000
50190
|
push?: boolean
|
|
@@ -50003,6 +50193,7 @@ export namespace Prisma {
|
|
|
50003
50193
|
tender?: boolean | TenderDefaultArgs<ExtArgs>
|
|
50004
50194
|
user?: boolean | TenderNotification$userArgs<ExtArgs>
|
|
50005
50195
|
group?: boolean | TenderNotification$groupArgs<ExtArgs>
|
|
50196
|
+
supplierCompany?: boolean | TenderNotification$supplierCompanyArgs<ExtArgs>
|
|
50006
50197
|
}, ExtArgs["result"]["tenderNotification"]>
|
|
50007
50198
|
|
|
50008
50199
|
export type TenderNotificationSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -50010,6 +50201,7 @@ export namespace Prisma {
|
|
|
50010
50201
|
tender_id?: boolean
|
|
50011
50202
|
user_id?: boolean
|
|
50012
50203
|
group_id?: boolean
|
|
50204
|
+
supplier_company_id?: boolean
|
|
50013
50205
|
whatsapp?: boolean
|
|
50014
50206
|
email?: boolean
|
|
50015
50207
|
push?: boolean
|
|
@@ -50018,6 +50210,7 @@ export namespace Prisma {
|
|
|
50018
50210
|
tender?: boolean | TenderDefaultArgs<ExtArgs>
|
|
50019
50211
|
user?: boolean | TenderNotification$userArgs<ExtArgs>
|
|
50020
50212
|
group?: boolean | TenderNotification$groupArgs<ExtArgs>
|
|
50213
|
+
supplierCompany?: boolean | TenderNotification$supplierCompanyArgs<ExtArgs>
|
|
50021
50214
|
}, ExtArgs["result"]["tenderNotification"]>
|
|
50022
50215
|
|
|
50023
50216
|
export type TenderNotificationSelectScalar = {
|
|
@@ -50025,6 +50218,7 @@ export namespace Prisma {
|
|
|
50025
50218
|
tender_id?: boolean
|
|
50026
50219
|
user_id?: boolean
|
|
50027
50220
|
group_id?: boolean
|
|
50221
|
+
supplier_company_id?: boolean
|
|
50028
50222
|
whatsapp?: boolean
|
|
50029
50223
|
email?: boolean
|
|
50030
50224
|
push?: boolean
|
|
@@ -50032,21 +50226,24 @@ export namespace Prisma {
|
|
|
50032
50226
|
created_at?: boolean
|
|
50033
50227
|
}
|
|
50034
50228
|
|
|
50035
|
-
export type TenderNotificationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "tender_id" | "user_id" | "group_id" | "whatsapp" | "email" | "push" | "message" | "created_at", ExtArgs["result"]["tenderNotification"]>
|
|
50229
|
+
export type TenderNotificationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "tender_id" | "user_id" | "group_id" | "supplier_company_id" | "whatsapp" | "email" | "push" | "message" | "created_at", ExtArgs["result"]["tenderNotification"]>
|
|
50036
50230
|
export type TenderNotificationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50037
50231
|
tender?: boolean | TenderDefaultArgs<ExtArgs>
|
|
50038
50232
|
user?: boolean | TenderNotification$userArgs<ExtArgs>
|
|
50039
50233
|
group?: boolean | TenderNotification$groupArgs<ExtArgs>
|
|
50234
|
+
supplierCompany?: boolean | TenderNotification$supplierCompanyArgs<ExtArgs>
|
|
50040
50235
|
}
|
|
50041
50236
|
export type TenderNotificationIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50042
50237
|
tender?: boolean | TenderDefaultArgs<ExtArgs>
|
|
50043
50238
|
user?: boolean | TenderNotification$userArgs<ExtArgs>
|
|
50044
50239
|
group?: boolean | TenderNotification$groupArgs<ExtArgs>
|
|
50240
|
+
supplierCompany?: boolean | TenderNotification$supplierCompanyArgs<ExtArgs>
|
|
50045
50241
|
}
|
|
50046
50242
|
export type TenderNotificationIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50047
50243
|
tender?: boolean | TenderDefaultArgs<ExtArgs>
|
|
50048
50244
|
user?: boolean | TenderNotification$userArgs<ExtArgs>
|
|
50049
50245
|
group?: boolean | TenderNotification$groupArgs<ExtArgs>
|
|
50246
|
+
supplierCompany?: boolean | TenderNotification$supplierCompanyArgs<ExtArgs>
|
|
50050
50247
|
}
|
|
50051
50248
|
|
|
50052
50249
|
export type $TenderNotificationPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -50055,12 +50252,14 @@ export namespace Prisma {
|
|
|
50055
50252
|
tender: Prisma.$TenderPayload<ExtArgs>
|
|
50056
50253
|
user: Prisma.$UserPayload<ExtArgs> | null
|
|
50057
50254
|
group: Prisma.$GroupPayload<ExtArgs> | null
|
|
50255
|
+
supplierCompany: Prisma.$CompaniesPayload<ExtArgs> | null
|
|
50058
50256
|
}
|
|
50059
50257
|
scalars: $Extensions.GetPayloadResult<{
|
|
50060
50258
|
id: string
|
|
50061
50259
|
tender_id: string
|
|
50062
50260
|
user_id: string | null
|
|
50063
50261
|
group_id: string | null
|
|
50262
|
+
supplier_company_id: string | null
|
|
50064
50263
|
whatsapp: boolean
|
|
50065
50264
|
email: boolean
|
|
50066
50265
|
push: boolean
|
|
@@ -50463,6 +50662,7 @@ export namespace Prisma {
|
|
|
50463
50662
|
tender<T extends TenderDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TenderDefaultArgs<ExtArgs>>): Prisma__TenderClient<$Result.GetResult<Prisma.$TenderPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
50464
50663
|
user<T extends TenderNotification$userArgs<ExtArgs> = {}>(args?: Subset<T, TenderNotification$userArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
50465
50664
|
group<T extends TenderNotification$groupArgs<ExtArgs> = {}>(args?: Subset<T, TenderNotification$groupArgs<ExtArgs>>): Prisma__GroupClient<$Result.GetResult<Prisma.$GroupPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
50665
|
+
supplierCompany<T extends TenderNotification$supplierCompanyArgs<ExtArgs> = {}>(args?: Subset<T, TenderNotification$supplierCompanyArgs<ExtArgs>>): Prisma__CompaniesClient<$Result.GetResult<Prisma.$CompaniesPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
50466
50666
|
/**
|
|
50467
50667
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
50468
50668
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -50496,6 +50696,7 @@ export namespace Prisma {
|
|
|
50496
50696
|
readonly tender_id: FieldRef<"TenderNotification", 'String'>
|
|
50497
50697
|
readonly user_id: FieldRef<"TenderNotification", 'String'>
|
|
50498
50698
|
readonly group_id: FieldRef<"TenderNotification", 'String'>
|
|
50699
|
+
readonly supplier_company_id: FieldRef<"TenderNotification", 'String'>
|
|
50499
50700
|
readonly whatsapp: FieldRef<"TenderNotification", 'Boolean'>
|
|
50500
50701
|
readonly email: FieldRef<"TenderNotification", 'Boolean'>
|
|
50501
50702
|
readonly push: FieldRef<"TenderNotification", 'Boolean'>
|
|
@@ -50934,6 +51135,25 @@ export namespace Prisma {
|
|
|
50934
51135
|
where?: GroupWhereInput
|
|
50935
51136
|
}
|
|
50936
51137
|
|
|
51138
|
+
/**
|
|
51139
|
+
* TenderNotification.supplierCompany
|
|
51140
|
+
*/
|
|
51141
|
+
export type TenderNotification$supplierCompanyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
51142
|
+
/**
|
|
51143
|
+
* Select specific fields to fetch from the Companies
|
|
51144
|
+
*/
|
|
51145
|
+
select?: CompaniesSelect<ExtArgs> | null
|
|
51146
|
+
/**
|
|
51147
|
+
* Omit specific fields from the Companies
|
|
51148
|
+
*/
|
|
51149
|
+
omit?: CompaniesOmit<ExtArgs> | null
|
|
51150
|
+
/**
|
|
51151
|
+
* Choose, which related nodes to fetch as well
|
|
51152
|
+
*/
|
|
51153
|
+
include?: CompaniesInclude<ExtArgs> | null
|
|
51154
|
+
where?: CompaniesWhereInput
|
|
51155
|
+
}
|
|
51156
|
+
|
|
50937
51157
|
/**
|
|
50938
51158
|
* TenderNotification without action
|
|
50939
51159
|
*/
|
|
@@ -54073,6 +54293,7 @@ export namespace Prisma {
|
|
|
54073
54293
|
id: string | null
|
|
54074
54294
|
company_id: string | null
|
|
54075
54295
|
supplier_id: string | null
|
|
54296
|
+
created_by: string | null
|
|
54076
54297
|
created_at: Date | null
|
|
54077
54298
|
updated_at: Date | null
|
|
54078
54299
|
}
|
|
@@ -54081,6 +54302,7 @@ export namespace Prisma {
|
|
|
54081
54302
|
id: string | null
|
|
54082
54303
|
company_id: string | null
|
|
54083
54304
|
supplier_id: string | null
|
|
54305
|
+
created_by: string | null
|
|
54084
54306
|
created_at: Date | null
|
|
54085
54307
|
updated_at: Date | null
|
|
54086
54308
|
}
|
|
@@ -54089,6 +54311,7 @@ export namespace Prisma {
|
|
|
54089
54311
|
id: number
|
|
54090
54312
|
company_id: number
|
|
54091
54313
|
supplier_id: number
|
|
54314
|
+
created_by: number
|
|
54092
54315
|
created_at: number
|
|
54093
54316
|
updated_at: number
|
|
54094
54317
|
_all: number
|
|
@@ -54099,6 +54322,7 @@ export namespace Prisma {
|
|
|
54099
54322
|
id?: true
|
|
54100
54323
|
company_id?: true
|
|
54101
54324
|
supplier_id?: true
|
|
54325
|
+
created_by?: true
|
|
54102
54326
|
created_at?: true
|
|
54103
54327
|
updated_at?: true
|
|
54104
54328
|
}
|
|
@@ -54107,6 +54331,7 @@ export namespace Prisma {
|
|
|
54107
54331
|
id?: true
|
|
54108
54332
|
company_id?: true
|
|
54109
54333
|
supplier_id?: true
|
|
54334
|
+
created_by?: true
|
|
54110
54335
|
created_at?: true
|
|
54111
54336
|
updated_at?: true
|
|
54112
54337
|
}
|
|
@@ -54115,6 +54340,7 @@ export namespace Prisma {
|
|
|
54115
54340
|
id?: true
|
|
54116
54341
|
company_id?: true
|
|
54117
54342
|
supplier_id?: true
|
|
54343
|
+
created_by?: true
|
|
54118
54344
|
created_at?: true
|
|
54119
54345
|
updated_at?: true
|
|
54120
54346
|
_all?: true
|
|
@@ -54196,6 +54422,7 @@ export namespace Prisma {
|
|
|
54196
54422
|
id: string
|
|
54197
54423
|
company_id: string
|
|
54198
54424
|
supplier_id: string
|
|
54425
|
+
created_by: string | null
|
|
54199
54426
|
created_at: Date
|
|
54200
54427
|
updated_at: Date
|
|
54201
54428
|
_count: RegularSupplierCountAggregateOutputType | null
|
|
@@ -54221,6 +54448,7 @@ export namespace Prisma {
|
|
|
54221
54448
|
id?: boolean
|
|
54222
54449
|
company_id?: boolean
|
|
54223
54450
|
supplier_id?: boolean
|
|
54451
|
+
created_by?: boolean
|
|
54224
54452
|
created_at?: boolean
|
|
54225
54453
|
updated_at?: boolean
|
|
54226
54454
|
company?: boolean | CompaniesDefaultArgs<ExtArgs>
|
|
@@ -54231,6 +54459,7 @@ export namespace Prisma {
|
|
|
54231
54459
|
id?: boolean
|
|
54232
54460
|
company_id?: boolean
|
|
54233
54461
|
supplier_id?: boolean
|
|
54462
|
+
created_by?: boolean
|
|
54234
54463
|
created_at?: boolean
|
|
54235
54464
|
updated_at?: boolean
|
|
54236
54465
|
company?: boolean | CompaniesDefaultArgs<ExtArgs>
|
|
@@ -54241,6 +54470,7 @@ export namespace Prisma {
|
|
|
54241
54470
|
id?: boolean
|
|
54242
54471
|
company_id?: boolean
|
|
54243
54472
|
supplier_id?: boolean
|
|
54473
|
+
created_by?: boolean
|
|
54244
54474
|
created_at?: boolean
|
|
54245
54475
|
updated_at?: boolean
|
|
54246
54476
|
company?: boolean | CompaniesDefaultArgs<ExtArgs>
|
|
@@ -54251,11 +54481,12 @@ export namespace Prisma {
|
|
|
54251
54481
|
id?: boolean
|
|
54252
54482
|
company_id?: boolean
|
|
54253
54483
|
supplier_id?: boolean
|
|
54484
|
+
created_by?: boolean
|
|
54254
54485
|
created_at?: boolean
|
|
54255
54486
|
updated_at?: boolean
|
|
54256
54487
|
}
|
|
54257
54488
|
|
|
54258
|
-
export type RegularSupplierOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "company_id" | "supplier_id" | "created_at" | "updated_at", ExtArgs["result"]["regularSupplier"]>
|
|
54489
|
+
export type RegularSupplierOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "company_id" | "supplier_id" | "created_by" | "created_at" | "updated_at", ExtArgs["result"]["regularSupplier"]>
|
|
54259
54490
|
export type RegularSupplierInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
54260
54491
|
company?: boolean | CompaniesDefaultArgs<ExtArgs>
|
|
54261
54492
|
supplier?: boolean | CompaniesDefaultArgs<ExtArgs>
|
|
@@ -54279,6 +54510,7 @@ export namespace Prisma {
|
|
|
54279
54510
|
id: string
|
|
54280
54511
|
company_id: string
|
|
54281
54512
|
supplier_id: string
|
|
54513
|
+
created_by: string | null
|
|
54282
54514
|
created_at: Date
|
|
54283
54515
|
updated_at: Date
|
|
54284
54516
|
}, ExtArgs["result"]["regularSupplier"]>
|
|
@@ -54709,6 +54941,7 @@ export namespace Prisma {
|
|
|
54709
54941
|
readonly id: FieldRef<"RegularSupplier", 'String'>
|
|
54710
54942
|
readonly company_id: FieldRef<"RegularSupplier", 'String'>
|
|
54711
54943
|
readonly supplier_id: FieldRef<"RegularSupplier", 'String'>
|
|
54944
|
+
readonly created_by: FieldRef<"RegularSupplier", 'String'>
|
|
54712
54945
|
readonly created_at: FieldRef<"RegularSupplier", 'DateTime'>
|
|
54713
54946
|
readonly updated_at: FieldRef<"RegularSupplier", 'DateTime'>
|
|
54714
54947
|
}
|
|
@@ -55218,6 +55451,8 @@ export namespace Prisma {
|
|
|
55218
55451
|
id: 'id',
|
|
55219
55452
|
reference: 'reference',
|
|
55220
55453
|
shipper_id: 'shipper_id',
|
|
55454
|
+
company_id: 'company_id',
|
|
55455
|
+
created_by: 'created_by',
|
|
55221
55456
|
attachments: 'attachments',
|
|
55222
55457
|
status: 'status',
|
|
55223
55458
|
created_at: 'created_at',
|
|
@@ -55342,6 +55577,7 @@ export namespace Prisma {
|
|
|
55342
55577
|
color: 'color',
|
|
55343
55578
|
chassis_number: 'chassis_number',
|
|
55344
55579
|
size: 'size',
|
|
55580
|
+
status: 'status',
|
|
55345
55581
|
gps_enabled: 'gps_enabled',
|
|
55346
55582
|
image_url: 'image_url',
|
|
55347
55583
|
company_id: 'company_id',
|
|
@@ -55628,6 +55864,7 @@ export namespace Prisma {
|
|
|
55628
55864
|
|
|
55629
55865
|
export const TenderScalarFieldEnum: {
|
|
55630
55866
|
id: 'id',
|
|
55867
|
+
code: 'code',
|
|
55631
55868
|
title: 'title',
|
|
55632
55869
|
description: 'description',
|
|
55633
55870
|
status: 'status',
|
|
@@ -55689,6 +55926,7 @@ export namespace Prisma {
|
|
|
55689
55926
|
user_sends_id: 'user_sends_id',
|
|
55690
55927
|
user_receives_id: 'user_receives_id',
|
|
55691
55928
|
message: 'message',
|
|
55929
|
+
read_at: 'read_at',
|
|
55692
55930
|
created_at: 'created_at'
|
|
55693
55931
|
};
|
|
55694
55932
|
|
|
@@ -55740,6 +55978,7 @@ export namespace Prisma {
|
|
|
55740
55978
|
tender_id: 'tender_id',
|
|
55741
55979
|
user_id: 'user_id',
|
|
55742
55980
|
group_id: 'group_id',
|
|
55981
|
+
supplier_company_id: 'supplier_company_id',
|
|
55743
55982
|
whatsapp: 'whatsapp',
|
|
55744
55983
|
email: 'email',
|
|
55745
55984
|
push: 'push',
|
|
@@ -55790,6 +56029,7 @@ export namespace Prisma {
|
|
|
55790
56029
|
id: 'id',
|
|
55791
56030
|
company_id: 'company_id',
|
|
55792
56031
|
supplier_id: 'supplier_id',
|
|
56032
|
+
created_by: 'created_by',
|
|
55793
56033
|
created_at: 'created_at',
|
|
55794
56034
|
updated_at: 'updated_at'
|
|
55795
56035
|
};
|
|
@@ -56081,6 +56321,20 @@ export namespace Prisma {
|
|
|
56081
56321
|
|
|
56082
56322
|
|
|
56083
56323
|
|
|
56324
|
+
/**
|
|
56325
|
+
* Reference to a field of type 'VehicleStatus'
|
|
56326
|
+
*/
|
|
56327
|
+
export type EnumVehicleStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'VehicleStatus'>
|
|
56328
|
+
|
|
56329
|
+
|
|
56330
|
+
|
|
56331
|
+
/**
|
|
56332
|
+
* Reference to a field of type 'VehicleStatus[]'
|
|
56333
|
+
*/
|
|
56334
|
+
export type ListEnumVehicleStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'VehicleStatus[]'>
|
|
56335
|
+
|
|
56336
|
+
|
|
56337
|
+
|
|
56084
56338
|
/**
|
|
56085
56339
|
* Reference to a field of type 'EquipmentStatus'
|
|
56086
56340
|
*/
|
|
@@ -56653,11 +56907,14 @@ export namespace Prisma {
|
|
|
56653
56907
|
id?: UuidFilter<"Order"> | string
|
|
56654
56908
|
reference?: StringNullableFilter<"Order"> | string | null
|
|
56655
56909
|
shipper_id?: UuidNullableFilter<"Order"> | string | null
|
|
56910
|
+
company_id?: UuidNullableFilter<"Order"> | string | null
|
|
56911
|
+
created_by?: UuidNullableFilter<"Order"> | string | null
|
|
56656
56912
|
attachments?: JsonNullableFilter<"Order">
|
|
56657
56913
|
status?: EnumRouteStatusFilter<"Order"> | $Enums.RouteStatus
|
|
56658
56914
|
created_at?: DateTimeFilter<"Order"> | Date | string
|
|
56659
56915
|
updated_at?: DateTimeFilter<"Order"> | Date | string
|
|
56660
56916
|
shipper?: XOR<ClientNullableScalarRelationFilter, ClientWhereInput> | null
|
|
56917
|
+
company?: XOR<CompaniesNullableScalarRelationFilter, CompaniesWhereInput> | null
|
|
56661
56918
|
handling_units?: HandlingUnitListRelationFilter
|
|
56662
56919
|
routes?: RouteListRelationFilter
|
|
56663
56920
|
tenders?: TenderListRelationFilter
|
|
@@ -56667,11 +56924,14 @@ export namespace Prisma {
|
|
|
56667
56924
|
id?: SortOrder
|
|
56668
56925
|
reference?: SortOrderInput | SortOrder
|
|
56669
56926
|
shipper_id?: SortOrderInput | SortOrder
|
|
56927
|
+
company_id?: SortOrderInput | SortOrder
|
|
56928
|
+
created_by?: SortOrderInput | SortOrder
|
|
56670
56929
|
attachments?: SortOrderInput | SortOrder
|
|
56671
56930
|
status?: SortOrder
|
|
56672
56931
|
created_at?: SortOrder
|
|
56673
56932
|
updated_at?: SortOrder
|
|
56674
56933
|
shipper?: ClientOrderByWithRelationInput
|
|
56934
|
+
company?: CompaniesOrderByWithRelationInput
|
|
56675
56935
|
handling_units?: HandlingUnitOrderByRelationAggregateInput
|
|
56676
56936
|
routes?: RouteOrderByRelationAggregateInput
|
|
56677
56937
|
tenders?: TenderOrderByRelationAggregateInput
|
|
@@ -56684,11 +56944,14 @@ export namespace Prisma {
|
|
|
56684
56944
|
NOT?: OrderWhereInput | OrderWhereInput[]
|
|
56685
56945
|
reference?: StringNullableFilter<"Order"> | string | null
|
|
56686
56946
|
shipper_id?: UuidNullableFilter<"Order"> | string | null
|
|
56947
|
+
company_id?: UuidNullableFilter<"Order"> | string | null
|
|
56948
|
+
created_by?: UuidNullableFilter<"Order"> | string | null
|
|
56687
56949
|
attachments?: JsonNullableFilter<"Order">
|
|
56688
56950
|
status?: EnumRouteStatusFilter<"Order"> | $Enums.RouteStatus
|
|
56689
56951
|
created_at?: DateTimeFilter<"Order"> | Date | string
|
|
56690
56952
|
updated_at?: DateTimeFilter<"Order"> | Date | string
|
|
56691
56953
|
shipper?: XOR<ClientNullableScalarRelationFilter, ClientWhereInput> | null
|
|
56954
|
+
company?: XOR<CompaniesNullableScalarRelationFilter, CompaniesWhereInput> | null
|
|
56692
56955
|
handling_units?: HandlingUnitListRelationFilter
|
|
56693
56956
|
routes?: RouteListRelationFilter
|
|
56694
56957
|
tenders?: TenderListRelationFilter
|
|
@@ -56698,6 +56961,8 @@ export namespace Prisma {
|
|
|
56698
56961
|
id?: SortOrder
|
|
56699
56962
|
reference?: SortOrderInput | SortOrder
|
|
56700
56963
|
shipper_id?: SortOrderInput | SortOrder
|
|
56964
|
+
company_id?: SortOrderInput | SortOrder
|
|
56965
|
+
created_by?: SortOrderInput | SortOrder
|
|
56701
56966
|
attachments?: SortOrderInput | SortOrder
|
|
56702
56967
|
status?: SortOrder
|
|
56703
56968
|
created_at?: SortOrder
|
|
@@ -56714,6 +56979,8 @@ export namespace Prisma {
|
|
|
56714
56979
|
id?: UuidWithAggregatesFilter<"Order"> | string
|
|
56715
56980
|
reference?: StringNullableWithAggregatesFilter<"Order"> | string | null
|
|
56716
56981
|
shipper_id?: UuidNullableWithAggregatesFilter<"Order"> | string | null
|
|
56982
|
+
company_id?: UuidNullableWithAggregatesFilter<"Order"> | string | null
|
|
56983
|
+
created_by?: UuidNullableWithAggregatesFilter<"Order"> | string | null
|
|
56717
56984
|
attachments?: JsonNullableWithAggregatesFilter<"Order">
|
|
56718
56985
|
status?: EnumRouteStatusWithAggregatesFilter<"Order"> | $Enums.RouteStatus
|
|
56719
56986
|
created_at?: DateTimeWithAggregatesFilter<"Order"> | Date | string
|
|
@@ -56742,11 +57009,13 @@ export namespace Prisma {
|
|
|
56742
57009
|
form_responses?: FormResponseListRelationFilter
|
|
56743
57010
|
forms?: FormListRelationFilter
|
|
56744
57011
|
tenders?: TenderListRelationFilter
|
|
57012
|
+
orders?: OrderListRelationFilter
|
|
56745
57013
|
groups?: GroupListRelationFilter
|
|
56746
57014
|
companyLocations?: CompanyLocationListRelationFilter
|
|
56747
57015
|
regularSuppliers?: RegularSupplierListRelationFilter
|
|
56748
57016
|
products?: ProductListRelationFilter
|
|
56749
57017
|
regularSuppliers2?: RegularSupplierListRelationFilter
|
|
57018
|
+
supplierNotifications?: TenderNotificationListRelationFilter
|
|
56750
57019
|
}
|
|
56751
57020
|
|
|
56752
57021
|
export type CompaniesOrderByWithRelationInput = {
|
|
@@ -56768,11 +57037,13 @@ export namespace Prisma {
|
|
|
56768
57037
|
form_responses?: FormResponseOrderByRelationAggregateInput
|
|
56769
57038
|
forms?: FormOrderByRelationAggregateInput
|
|
56770
57039
|
tenders?: TenderOrderByRelationAggregateInput
|
|
57040
|
+
orders?: OrderOrderByRelationAggregateInput
|
|
56771
57041
|
groups?: GroupOrderByRelationAggregateInput
|
|
56772
57042
|
companyLocations?: CompanyLocationOrderByRelationAggregateInput
|
|
56773
57043
|
regularSuppliers?: RegularSupplierOrderByRelationAggregateInput
|
|
56774
57044
|
products?: ProductOrderByRelationAggregateInput
|
|
56775
57045
|
regularSuppliers2?: RegularSupplierOrderByRelationAggregateInput
|
|
57046
|
+
supplierNotifications?: TenderNotificationOrderByRelationAggregateInput
|
|
56776
57047
|
}
|
|
56777
57048
|
|
|
56778
57049
|
export type CompaniesWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -56797,11 +57068,13 @@ export namespace Prisma {
|
|
|
56797
57068
|
form_responses?: FormResponseListRelationFilter
|
|
56798
57069
|
forms?: FormListRelationFilter
|
|
56799
57070
|
tenders?: TenderListRelationFilter
|
|
57071
|
+
orders?: OrderListRelationFilter
|
|
56800
57072
|
groups?: GroupListRelationFilter
|
|
56801
57073
|
companyLocations?: CompanyLocationListRelationFilter
|
|
56802
57074
|
regularSuppliers?: RegularSupplierListRelationFilter
|
|
56803
57075
|
products?: ProductListRelationFilter
|
|
56804
57076
|
regularSuppliers2?: RegularSupplierListRelationFilter
|
|
57077
|
+
supplierNotifications?: TenderNotificationListRelationFilter
|
|
56805
57078
|
}, "id" | "tax_id">
|
|
56806
57079
|
|
|
56807
57080
|
export type CompaniesOrderByWithAggregationInput = {
|
|
@@ -57350,6 +57623,7 @@ export namespace Prisma {
|
|
|
57350
57623
|
color?: EnumVehicleColorNullableFilter<"Vehicle"> | $Enums.VehicleColor | null
|
|
57351
57624
|
chassis_number?: StringNullableFilter<"Vehicle"> | string | null
|
|
57352
57625
|
size?: EnumVehicleSizeNullableFilter<"Vehicle"> | $Enums.VehicleSize | null
|
|
57626
|
+
status?: EnumVehicleStatusFilter<"Vehicle"> | $Enums.VehicleStatus
|
|
57353
57627
|
gps_enabled?: BoolFilter<"Vehicle"> | boolean
|
|
57354
57628
|
image_url?: JsonNullableFilter<"Vehicle">
|
|
57355
57629
|
company_id?: UuidNullableFilter<"Vehicle"> | string | null
|
|
@@ -57379,6 +57653,7 @@ export namespace Prisma {
|
|
|
57379
57653
|
color?: SortOrderInput | SortOrder
|
|
57380
57654
|
chassis_number?: SortOrderInput | SortOrder
|
|
57381
57655
|
size?: SortOrderInput | SortOrder
|
|
57656
|
+
status?: SortOrder
|
|
57382
57657
|
gps_enabled?: SortOrder
|
|
57383
57658
|
image_url?: SortOrderInput | SortOrder
|
|
57384
57659
|
company_id?: SortOrderInput | SortOrder
|
|
@@ -57411,6 +57686,7 @@ export namespace Prisma {
|
|
|
57411
57686
|
fuel_type?: EnumFuelTypeNullableFilter<"Vehicle"> | $Enums.FuelType | null
|
|
57412
57687
|
color?: EnumVehicleColorNullableFilter<"Vehicle"> | $Enums.VehicleColor | null
|
|
57413
57688
|
size?: EnumVehicleSizeNullableFilter<"Vehicle"> | $Enums.VehicleSize | null
|
|
57689
|
+
status?: EnumVehicleStatusFilter<"Vehicle"> | $Enums.VehicleStatus
|
|
57414
57690
|
gps_enabled?: BoolFilter<"Vehicle"> | boolean
|
|
57415
57691
|
image_url?: JsonNullableFilter<"Vehicle">
|
|
57416
57692
|
company_id?: UuidNullableFilter<"Vehicle"> | string | null
|
|
@@ -57440,6 +57716,7 @@ export namespace Prisma {
|
|
|
57440
57716
|
color?: SortOrderInput | SortOrder
|
|
57441
57717
|
chassis_number?: SortOrderInput | SortOrder
|
|
57442
57718
|
size?: SortOrderInput | SortOrder
|
|
57719
|
+
status?: SortOrder
|
|
57443
57720
|
gps_enabled?: SortOrder
|
|
57444
57721
|
image_url?: SortOrderInput | SortOrder
|
|
57445
57722
|
company_id?: SortOrderInput | SortOrder
|
|
@@ -57469,6 +57746,7 @@ export namespace Prisma {
|
|
|
57469
57746
|
color?: EnumVehicleColorNullableWithAggregatesFilter<"Vehicle"> | $Enums.VehicleColor | null
|
|
57470
57747
|
chassis_number?: StringNullableWithAggregatesFilter<"Vehicle"> | string | null
|
|
57471
57748
|
size?: EnumVehicleSizeNullableWithAggregatesFilter<"Vehicle"> | $Enums.VehicleSize | null
|
|
57749
|
+
status?: EnumVehicleStatusWithAggregatesFilter<"Vehicle"> | $Enums.VehicleStatus
|
|
57472
57750
|
gps_enabled?: BoolWithAggregatesFilter<"Vehicle"> | boolean
|
|
57473
57751
|
image_url?: JsonNullableWithAggregatesFilter<"Vehicle">
|
|
57474
57752
|
company_id?: UuidNullableWithAggregatesFilter<"Vehicle"> | string | null
|
|
@@ -58938,6 +59216,7 @@ export namespace Prisma {
|
|
|
58938
59216
|
OR?: TenderWhereInput[]
|
|
58939
59217
|
NOT?: TenderWhereInput | TenderWhereInput[]
|
|
58940
59218
|
id?: UuidFilter<"Tender"> | string
|
|
59219
|
+
code?: StringNullableFilter<"Tender"> | string | null
|
|
58941
59220
|
title?: StringFilter<"Tender"> | string
|
|
58942
59221
|
description?: StringNullableFilter<"Tender"> | string | null
|
|
58943
59222
|
status?: EnumTenderStatusFilter<"Tender"> | $Enums.TenderStatus
|
|
@@ -58964,6 +59243,7 @@ export namespace Prisma {
|
|
|
58964
59243
|
|
|
58965
59244
|
export type TenderOrderByWithRelationInput = {
|
|
58966
59245
|
id?: SortOrder
|
|
59246
|
+
code?: SortOrderInput | SortOrder
|
|
58967
59247
|
title?: SortOrder
|
|
58968
59248
|
description?: SortOrderInput | SortOrder
|
|
58969
59249
|
status?: SortOrder
|
|
@@ -58990,6 +59270,7 @@ export namespace Prisma {
|
|
|
58990
59270
|
|
|
58991
59271
|
export type TenderWhereUniqueInput = Prisma.AtLeast<{
|
|
58992
59272
|
id?: string
|
|
59273
|
+
code?: string
|
|
58993
59274
|
AND?: TenderWhereInput | TenderWhereInput[]
|
|
58994
59275
|
OR?: TenderWhereInput[]
|
|
58995
59276
|
NOT?: TenderWhereInput | TenderWhereInput[]
|
|
@@ -59015,10 +59296,11 @@ export namespace Prisma {
|
|
|
59015
59296
|
tenderChats?: TenderChatListRelationFilter
|
|
59016
59297
|
tenderNotifications?: TenderNotificationListRelationFilter
|
|
59017
59298
|
tenderLocationNotifications?: TenderLocationNotificationListRelationFilter
|
|
59018
|
-
}, "id">
|
|
59299
|
+
}, "id" | "code">
|
|
59019
59300
|
|
|
59020
59301
|
export type TenderOrderByWithAggregationInput = {
|
|
59021
59302
|
id?: SortOrder
|
|
59303
|
+
code?: SortOrderInput | SortOrder
|
|
59022
59304
|
title?: SortOrder
|
|
59023
59305
|
description?: SortOrderInput | SortOrder
|
|
59024
59306
|
status?: SortOrder
|
|
@@ -59046,6 +59328,7 @@ export namespace Prisma {
|
|
|
59046
59328
|
OR?: TenderScalarWhereWithAggregatesInput[]
|
|
59047
59329
|
NOT?: TenderScalarWhereWithAggregatesInput | TenderScalarWhereWithAggregatesInput[]
|
|
59048
59330
|
id?: UuidWithAggregatesFilter<"Tender"> | string
|
|
59331
|
+
code?: StringNullableWithAggregatesFilter<"Tender"> | string | null
|
|
59049
59332
|
title?: StringWithAggregatesFilter<"Tender"> | string
|
|
59050
59333
|
description?: StringNullableWithAggregatesFilter<"Tender"> | string | null
|
|
59051
59334
|
status?: EnumTenderStatusWithAggregatesFilter<"Tender"> | $Enums.TenderStatus
|
|
@@ -59261,6 +59544,7 @@ export namespace Prisma {
|
|
|
59261
59544
|
user_sends_id?: UuidFilter<"TenderChat"> | string
|
|
59262
59545
|
user_receives_id?: UuidFilter<"TenderChat"> | string
|
|
59263
59546
|
message?: StringFilter<"TenderChat"> | string
|
|
59547
|
+
read_at?: DateTimeNullableFilter<"TenderChat"> | Date | string | null
|
|
59264
59548
|
created_at?: DateTimeFilter<"TenderChat"> | Date | string
|
|
59265
59549
|
tender?: XOR<TenderScalarRelationFilter, TenderWhereInput>
|
|
59266
59550
|
user_sends?: XOR<UserScalarRelationFilter, UserWhereInput>
|
|
@@ -59273,6 +59557,7 @@ export namespace Prisma {
|
|
|
59273
59557
|
user_sends_id?: SortOrder
|
|
59274
59558
|
user_receives_id?: SortOrder
|
|
59275
59559
|
message?: SortOrder
|
|
59560
|
+
read_at?: SortOrderInput | SortOrder
|
|
59276
59561
|
created_at?: SortOrder
|
|
59277
59562
|
tender?: TenderOrderByWithRelationInput
|
|
59278
59563
|
user_sends?: UserOrderByWithRelationInput
|
|
@@ -59288,6 +59573,7 @@ export namespace Prisma {
|
|
|
59288
59573
|
user_sends_id?: UuidFilter<"TenderChat"> | string
|
|
59289
59574
|
user_receives_id?: UuidFilter<"TenderChat"> | string
|
|
59290
59575
|
message?: StringFilter<"TenderChat"> | string
|
|
59576
|
+
read_at?: DateTimeNullableFilter<"TenderChat"> | Date | string | null
|
|
59291
59577
|
created_at?: DateTimeFilter<"TenderChat"> | Date | string
|
|
59292
59578
|
tender?: XOR<TenderScalarRelationFilter, TenderWhereInput>
|
|
59293
59579
|
user_sends?: XOR<UserScalarRelationFilter, UserWhereInput>
|
|
@@ -59300,6 +59586,7 @@ export namespace Prisma {
|
|
|
59300
59586
|
user_sends_id?: SortOrder
|
|
59301
59587
|
user_receives_id?: SortOrder
|
|
59302
59588
|
message?: SortOrder
|
|
59589
|
+
read_at?: SortOrderInput | SortOrder
|
|
59303
59590
|
created_at?: SortOrder
|
|
59304
59591
|
_count?: TenderChatCountOrderByAggregateInput
|
|
59305
59592
|
_max?: TenderChatMaxOrderByAggregateInput
|
|
@@ -59315,6 +59602,7 @@ export namespace Prisma {
|
|
|
59315
59602
|
user_sends_id?: UuidWithAggregatesFilter<"TenderChat"> | string
|
|
59316
59603
|
user_receives_id?: UuidWithAggregatesFilter<"TenderChat"> | string
|
|
59317
59604
|
message?: StringWithAggregatesFilter<"TenderChat"> | string
|
|
59605
|
+
read_at?: DateTimeNullableWithAggregatesFilter<"TenderChat"> | Date | string | null
|
|
59318
59606
|
created_at?: DateTimeWithAggregatesFilter<"TenderChat"> | Date | string
|
|
59319
59607
|
}
|
|
59320
59608
|
|
|
@@ -59547,6 +59835,7 @@ export namespace Prisma {
|
|
|
59547
59835
|
tender_id?: UuidFilter<"TenderNotification"> | string
|
|
59548
59836
|
user_id?: UuidNullableFilter<"TenderNotification"> | string | null
|
|
59549
59837
|
group_id?: UuidNullableFilter<"TenderNotification"> | string | null
|
|
59838
|
+
supplier_company_id?: UuidNullableFilter<"TenderNotification"> | string | null
|
|
59550
59839
|
whatsapp?: BoolFilter<"TenderNotification"> | boolean
|
|
59551
59840
|
email?: BoolFilter<"TenderNotification"> | boolean
|
|
59552
59841
|
push?: BoolFilter<"TenderNotification"> | boolean
|
|
@@ -59555,6 +59844,7 @@ export namespace Prisma {
|
|
|
59555
59844
|
tender?: XOR<TenderScalarRelationFilter, TenderWhereInput>
|
|
59556
59845
|
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
59557
59846
|
group?: XOR<GroupNullableScalarRelationFilter, GroupWhereInput> | null
|
|
59847
|
+
supplierCompany?: XOR<CompaniesNullableScalarRelationFilter, CompaniesWhereInput> | null
|
|
59558
59848
|
}
|
|
59559
59849
|
|
|
59560
59850
|
export type TenderNotificationOrderByWithRelationInput = {
|
|
@@ -59562,6 +59852,7 @@ export namespace Prisma {
|
|
|
59562
59852
|
tender_id?: SortOrder
|
|
59563
59853
|
user_id?: SortOrderInput | SortOrder
|
|
59564
59854
|
group_id?: SortOrderInput | SortOrder
|
|
59855
|
+
supplier_company_id?: SortOrderInput | SortOrder
|
|
59565
59856
|
whatsapp?: SortOrder
|
|
59566
59857
|
email?: SortOrder
|
|
59567
59858
|
push?: SortOrder
|
|
@@ -59570,6 +59861,7 @@ export namespace Prisma {
|
|
|
59570
59861
|
tender?: TenderOrderByWithRelationInput
|
|
59571
59862
|
user?: UserOrderByWithRelationInput
|
|
59572
59863
|
group?: GroupOrderByWithRelationInput
|
|
59864
|
+
supplierCompany?: CompaniesOrderByWithRelationInput
|
|
59573
59865
|
}
|
|
59574
59866
|
|
|
59575
59867
|
export type TenderNotificationWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -59580,6 +59872,7 @@ export namespace Prisma {
|
|
|
59580
59872
|
tender_id?: UuidFilter<"TenderNotification"> | string
|
|
59581
59873
|
user_id?: UuidNullableFilter<"TenderNotification"> | string | null
|
|
59582
59874
|
group_id?: UuidNullableFilter<"TenderNotification"> | string | null
|
|
59875
|
+
supplier_company_id?: UuidNullableFilter<"TenderNotification"> | string | null
|
|
59583
59876
|
whatsapp?: BoolFilter<"TenderNotification"> | boolean
|
|
59584
59877
|
email?: BoolFilter<"TenderNotification"> | boolean
|
|
59585
59878
|
push?: BoolFilter<"TenderNotification"> | boolean
|
|
@@ -59588,6 +59881,7 @@ export namespace Prisma {
|
|
|
59588
59881
|
tender?: XOR<TenderScalarRelationFilter, TenderWhereInput>
|
|
59589
59882
|
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
59590
59883
|
group?: XOR<GroupNullableScalarRelationFilter, GroupWhereInput> | null
|
|
59884
|
+
supplierCompany?: XOR<CompaniesNullableScalarRelationFilter, CompaniesWhereInput> | null
|
|
59591
59885
|
}, "id">
|
|
59592
59886
|
|
|
59593
59887
|
export type TenderNotificationOrderByWithAggregationInput = {
|
|
@@ -59595,6 +59889,7 @@ export namespace Prisma {
|
|
|
59595
59889
|
tender_id?: SortOrder
|
|
59596
59890
|
user_id?: SortOrderInput | SortOrder
|
|
59597
59891
|
group_id?: SortOrderInput | SortOrder
|
|
59892
|
+
supplier_company_id?: SortOrderInput | SortOrder
|
|
59598
59893
|
whatsapp?: SortOrder
|
|
59599
59894
|
email?: SortOrder
|
|
59600
59895
|
push?: SortOrder
|
|
@@ -59613,6 +59908,7 @@ export namespace Prisma {
|
|
|
59613
59908
|
tender_id?: UuidWithAggregatesFilter<"TenderNotification"> | string
|
|
59614
59909
|
user_id?: UuidNullableWithAggregatesFilter<"TenderNotification"> | string | null
|
|
59615
59910
|
group_id?: UuidNullableWithAggregatesFilter<"TenderNotification"> | string | null
|
|
59911
|
+
supplier_company_id?: UuidNullableWithAggregatesFilter<"TenderNotification"> | string | null
|
|
59616
59912
|
whatsapp?: BoolWithAggregatesFilter<"TenderNotification"> | boolean
|
|
59617
59913
|
email?: BoolWithAggregatesFilter<"TenderNotification"> | boolean
|
|
59618
59914
|
push?: BoolWithAggregatesFilter<"TenderNotification"> | boolean
|
|
@@ -59817,6 +60113,7 @@ export namespace Prisma {
|
|
|
59817
60113
|
id?: UuidFilter<"RegularSupplier"> | string
|
|
59818
60114
|
company_id?: UuidFilter<"RegularSupplier"> | string
|
|
59819
60115
|
supplier_id?: UuidFilter<"RegularSupplier"> | string
|
|
60116
|
+
created_by?: UuidNullableFilter<"RegularSupplier"> | string | null
|
|
59820
60117
|
created_at?: DateTimeFilter<"RegularSupplier"> | Date | string
|
|
59821
60118
|
updated_at?: DateTimeFilter<"RegularSupplier"> | Date | string
|
|
59822
60119
|
company?: XOR<CompaniesScalarRelationFilter, CompaniesWhereInput>
|
|
@@ -59827,6 +60124,7 @@ export namespace Prisma {
|
|
|
59827
60124
|
id?: SortOrder
|
|
59828
60125
|
company_id?: SortOrder
|
|
59829
60126
|
supplier_id?: SortOrder
|
|
60127
|
+
created_by?: SortOrderInput | SortOrder
|
|
59830
60128
|
created_at?: SortOrder
|
|
59831
60129
|
updated_at?: SortOrder
|
|
59832
60130
|
company?: CompaniesOrderByWithRelationInput
|
|
@@ -59841,6 +60139,7 @@ export namespace Prisma {
|
|
|
59841
60139
|
NOT?: RegularSupplierWhereInput | RegularSupplierWhereInput[]
|
|
59842
60140
|
company_id?: UuidFilter<"RegularSupplier"> | string
|
|
59843
60141
|
supplier_id?: UuidFilter<"RegularSupplier"> | string
|
|
60142
|
+
created_by?: UuidNullableFilter<"RegularSupplier"> | string | null
|
|
59844
60143
|
created_at?: DateTimeFilter<"RegularSupplier"> | Date | string
|
|
59845
60144
|
updated_at?: DateTimeFilter<"RegularSupplier"> | Date | string
|
|
59846
60145
|
company?: XOR<CompaniesScalarRelationFilter, CompaniesWhereInput>
|
|
@@ -59851,6 +60150,7 @@ export namespace Prisma {
|
|
|
59851
60150
|
id?: SortOrder
|
|
59852
60151
|
company_id?: SortOrder
|
|
59853
60152
|
supplier_id?: SortOrder
|
|
60153
|
+
created_by?: SortOrderInput | SortOrder
|
|
59854
60154
|
created_at?: SortOrder
|
|
59855
60155
|
updated_at?: SortOrder
|
|
59856
60156
|
_count?: RegularSupplierCountOrderByAggregateInput
|
|
@@ -59865,6 +60165,7 @@ export namespace Prisma {
|
|
|
59865
60165
|
id?: UuidWithAggregatesFilter<"RegularSupplier"> | string
|
|
59866
60166
|
company_id?: UuidWithAggregatesFilter<"RegularSupplier"> | string
|
|
59867
60167
|
supplier_id?: UuidWithAggregatesFilter<"RegularSupplier"> | string
|
|
60168
|
+
created_by?: UuidNullableWithAggregatesFilter<"RegularSupplier"> | string | null
|
|
59868
60169
|
created_at?: DateTimeWithAggregatesFilter<"RegularSupplier"> | Date | string
|
|
59869
60170
|
updated_at?: DateTimeWithAggregatesFilter<"RegularSupplier"> | Date | string
|
|
59870
60171
|
}
|
|
@@ -60329,11 +60630,13 @@ export namespace Prisma {
|
|
|
60329
60630
|
export type OrderCreateInput = {
|
|
60330
60631
|
id?: string
|
|
60331
60632
|
reference?: string | null
|
|
60633
|
+
created_by?: string | null
|
|
60332
60634
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
60333
60635
|
status?: $Enums.RouteStatus
|
|
60334
60636
|
created_at?: Date | string
|
|
60335
60637
|
updated_at?: Date | string
|
|
60336
60638
|
shipper?: ClientCreateNestedOneWithoutOrders_as_shipperInput
|
|
60639
|
+
company?: CompaniesCreateNestedOneWithoutOrdersInput
|
|
60337
60640
|
handling_units?: HandlingUnitCreateNestedManyWithoutOrderInput
|
|
60338
60641
|
routes?: RouteCreateNestedManyWithoutOrderInput
|
|
60339
60642
|
tenders?: TenderCreateNestedManyWithoutOrderInput
|
|
@@ -60343,6 +60646,8 @@ export namespace Prisma {
|
|
|
60343
60646
|
id?: string
|
|
60344
60647
|
reference?: string | null
|
|
60345
60648
|
shipper_id?: string | null
|
|
60649
|
+
company_id?: string | null
|
|
60650
|
+
created_by?: string | null
|
|
60346
60651
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
60347
60652
|
status?: $Enums.RouteStatus
|
|
60348
60653
|
created_at?: Date | string
|
|
@@ -60355,11 +60660,13 @@ export namespace Prisma {
|
|
|
60355
60660
|
export type OrderUpdateInput = {
|
|
60356
60661
|
id?: StringFieldUpdateOperationsInput | string
|
|
60357
60662
|
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60663
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60358
60664
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
60359
60665
|
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
60360
60666
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60361
60667
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60362
60668
|
shipper?: ClientUpdateOneWithoutOrders_as_shipperNestedInput
|
|
60669
|
+
company?: CompaniesUpdateOneWithoutOrdersNestedInput
|
|
60363
60670
|
handling_units?: HandlingUnitUpdateManyWithoutOrderNestedInput
|
|
60364
60671
|
routes?: RouteUpdateManyWithoutOrderNestedInput
|
|
60365
60672
|
tenders?: TenderUpdateManyWithoutOrderNestedInput
|
|
@@ -60369,6 +60676,8 @@ export namespace Prisma {
|
|
|
60369
60676
|
id?: StringFieldUpdateOperationsInput | string
|
|
60370
60677
|
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60371
60678
|
shipper_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60679
|
+
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60680
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60372
60681
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
60373
60682
|
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
60374
60683
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -60382,6 +60691,8 @@ export namespace Prisma {
|
|
|
60382
60691
|
id?: string
|
|
60383
60692
|
reference?: string | null
|
|
60384
60693
|
shipper_id?: string | null
|
|
60694
|
+
company_id?: string | null
|
|
60695
|
+
created_by?: string | null
|
|
60385
60696
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
60386
60697
|
status?: $Enums.RouteStatus
|
|
60387
60698
|
created_at?: Date | string
|
|
@@ -60391,6 +60702,7 @@ export namespace Prisma {
|
|
|
60391
60702
|
export type OrderUpdateManyMutationInput = {
|
|
60392
60703
|
id?: StringFieldUpdateOperationsInput | string
|
|
60393
60704
|
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60705
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60394
60706
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
60395
60707
|
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
60396
60708
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -60401,6 +60713,8 @@ export namespace Prisma {
|
|
|
60401
60713
|
id?: StringFieldUpdateOperationsInput | string
|
|
60402
60714
|
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60403
60715
|
shipper_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60716
|
+
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60717
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60404
60718
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
60405
60719
|
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
60406
60720
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -60426,11 +60740,13 @@ export namespace Prisma {
|
|
|
60426
60740
|
form_responses?: FormResponseCreateNestedManyWithoutCompanyInput
|
|
60427
60741
|
forms?: FormCreateNestedManyWithoutCompanyInput
|
|
60428
60742
|
tenders?: TenderCreateNestedManyWithoutCompanyInput
|
|
60743
|
+
orders?: OrderCreateNestedManyWithoutCompanyInput
|
|
60429
60744
|
groups?: GroupCreateNestedManyWithoutCompanyInput
|
|
60430
60745
|
companyLocations?: CompanyLocationCreateNestedManyWithoutCompanyInput
|
|
60431
60746
|
regularSuppliers?: RegularSupplierCreateNestedManyWithoutCompanyInput
|
|
60432
60747
|
products?: ProductCreateNestedManyWithoutCompanyInput
|
|
60433
60748
|
regularSuppliers2?: RegularSupplierCreateNestedManyWithoutSupplierInput
|
|
60749
|
+
supplierNotifications?: TenderNotificationCreateNestedManyWithoutSupplierCompanyInput
|
|
60434
60750
|
}
|
|
60435
60751
|
|
|
60436
60752
|
export type CompaniesUncheckedCreateInput = {
|
|
@@ -60452,11 +60768,13 @@ export namespace Prisma {
|
|
|
60452
60768
|
form_responses?: FormResponseUncheckedCreateNestedManyWithoutCompanyInput
|
|
60453
60769
|
forms?: FormUncheckedCreateNestedManyWithoutCompanyInput
|
|
60454
60770
|
tenders?: TenderUncheckedCreateNestedManyWithoutCompanyInput
|
|
60771
|
+
orders?: OrderUncheckedCreateNestedManyWithoutCompanyInput
|
|
60455
60772
|
groups?: GroupUncheckedCreateNestedManyWithoutCompanyInput
|
|
60456
60773
|
companyLocations?: CompanyLocationUncheckedCreateNestedManyWithoutCompanyInput
|
|
60457
60774
|
regularSuppliers?: RegularSupplierUncheckedCreateNestedManyWithoutCompanyInput
|
|
60458
60775
|
products?: ProductUncheckedCreateNestedManyWithoutCompanyInput
|
|
60459
60776
|
regularSuppliers2?: RegularSupplierUncheckedCreateNestedManyWithoutSupplierInput
|
|
60777
|
+
supplierNotifications?: TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput
|
|
60460
60778
|
}
|
|
60461
60779
|
|
|
60462
60780
|
export type CompaniesUpdateInput = {
|
|
@@ -60478,11 +60796,13 @@ export namespace Prisma {
|
|
|
60478
60796
|
form_responses?: FormResponseUpdateManyWithoutCompanyNestedInput
|
|
60479
60797
|
forms?: FormUpdateManyWithoutCompanyNestedInput
|
|
60480
60798
|
tenders?: TenderUpdateManyWithoutCompanyNestedInput
|
|
60799
|
+
orders?: OrderUpdateManyWithoutCompanyNestedInput
|
|
60481
60800
|
groups?: GroupUpdateManyWithoutCompanyNestedInput
|
|
60482
60801
|
companyLocations?: CompanyLocationUpdateManyWithoutCompanyNestedInput
|
|
60483
60802
|
regularSuppliers?: RegularSupplierUpdateManyWithoutCompanyNestedInput
|
|
60484
60803
|
products?: ProductUpdateManyWithoutCompanyNestedInput
|
|
60485
60804
|
regularSuppliers2?: RegularSupplierUpdateManyWithoutSupplierNestedInput
|
|
60805
|
+
supplierNotifications?: TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput
|
|
60486
60806
|
}
|
|
60487
60807
|
|
|
60488
60808
|
export type CompaniesUncheckedUpdateInput = {
|
|
@@ -60504,11 +60824,13 @@ export namespace Prisma {
|
|
|
60504
60824
|
form_responses?: FormResponseUncheckedUpdateManyWithoutCompanyNestedInput
|
|
60505
60825
|
forms?: FormUncheckedUpdateManyWithoutCompanyNestedInput
|
|
60506
60826
|
tenders?: TenderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
60827
|
+
orders?: OrderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
60507
60828
|
groups?: GroupUncheckedUpdateManyWithoutCompanyNestedInput
|
|
60508
60829
|
companyLocations?: CompanyLocationUncheckedUpdateManyWithoutCompanyNestedInput
|
|
60509
60830
|
regularSuppliers?: RegularSupplierUncheckedUpdateManyWithoutCompanyNestedInput
|
|
60510
60831
|
products?: ProductUncheckedUpdateManyWithoutCompanyNestedInput
|
|
60511
60832
|
regularSuppliers2?: RegularSupplierUncheckedUpdateManyWithoutSupplierNestedInput
|
|
60833
|
+
supplierNotifications?: TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput
|
|
60512
60834
|
}
|
|
60513
60835
|
|
|
60514
60836
|
export type CompaniesCreateManyInput = {
|
|
@@ -61111,6 +61433,7 @@ export namespace Prisma {
|
|
|
61111
61433
|
color?: $Enums.VehicleColor | null
|
|
61112
61434
|
chassis_number?: string | null
|
|
61113
61435
|
size?: $Enums.VehicleSize | null
|
|
61436
|
+
status?: $Enums.VehicleStatus
|
|
61114
61437
|
gps_enabled?: boolean
|
|
61115
61438
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
61116
61439
|
is_validated?: boolean | null
|
|
@@ -61139,6 +61462,7 @@ export namespace Prisma {
|
|
|
61139
61462
|
color?: $Enums.VehicleColor | null
|
|
61140
61463
|
chassis_number?: string | null
|
|
61141
61464
|
size?: $Enums.VehicleSize | null
|
|
61465
|
+
status?: $Enums.VehicleStatus
|
|
61142
61466
|
gps_enabled?: boolean
|
|
61143
61467
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
61144
61468
|
company_id?: string | null
|
|
@@ -61161,6 +61485,7 @@ export namespace Prisma {
|
|
|
61161
61485
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
61162
61486
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61163
61487
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
61488
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
61164
61489
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
61165
61490
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
61166
61491
|
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -61189,6 +61514,7 @@ export namespace Prisma {
|
|
|
61189
61514
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
61190
61515
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61191
61516
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
61517
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
61192
61518
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
61193
61519
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
61194
61520
|
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -61214,6 +61540,7 @@ export namespace Prisma {
|
|
|
61214
61540
|
color?: $Enums.VehicleColor | null
|
|
61215
61541
|
chassis_number?: string | null
|
|
61216
61542
|
size?: $Enums.VehicleSize | null
|
|
61543
|
+
status?: $Enums.VehicleStatus
|
|
61217
61544
|
gps_enabled?: boolean
|
|
61218
61545
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
61219
61546
|
company_id?: string | null
|
|
@@ -61232,6 +61559,7 @@ export namespace Prisma {
|
|
|
61232
61559
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
61233
61560
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61234
61561
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
61562
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
61235
61563
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
61236
61564
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
61237
61565
|
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -61252,6 +61580,7 @@ export namespace Prisma {
|
|
|
61252
61580
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
61253
61581
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61254
61582
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
61583
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
61255
61584
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
61256
61585
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
61257
61586
|
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -62864,6 +63193,7 @@ export namespace Prisma {
|
|
|
62864
63193
|
|
|
62865
63194
|
export type TenderCreateInput = {
|
|
62866
63195
|
id?: string
|
|
63196
|
+
code?: string | null
|
|
62867
63197
|
title: string
|
|
62868
63198
|
description?: string | null
|
|
62869
63199
|
status?: $Enums.TenderStatus
|
|
@@ -62887,6 +63217,7 @@ export namespace Prisma {
|
|
|
62887
63217
|
|
|
62888
63218
|
export type TenderUncheckedCreateInput = {
|
|
62889
63219
|
id?: string
|
|
63220
|
+
code?: string | null
|
|
62890
63221
|
title: string
|
|
62891
63222
|
description?: string | null
|
|
62892
63223
|
status?: $Enums.TenderStatus
|
|
@@ -62910,6 +63241,7 @@ export namespace Prisma {
|
|
|
62910
63241
|
|
|
62911
63242
|
export type TenderUpdateInput = {
|
|
62912
63243
|
id?: StringFieldUpdateOperationsInput | string
|
|
63244
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62913
63245
|
title?: StringFieldUpdateOperationsInput | string
|
|
62914
63246
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62915
63247
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -62933,6 +63265,7 @@ export namespace Prisma {
|
|
|
62933
63265
|
|
|
62934
63266
|
export type TenderUncheckedUpdateInput = {
|
|
62935
63267
|
id?: StringFieldUpdateOperationsInput | string
|
|
63268
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62936
63269
|
title?: StringFieldUpdateOperationsInput | string
|
|
62937
63270
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62938
63271
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -62956,6 +63289,7 @@ export namespace Prisma {
|
|
|
62956
63289
|
|
|
62957
63290
|
export type TenderCreateManyInput = {
|
|
62958
63291
|
id?: string
|
|
63292
|
+
code?: string | null
|
|
62959
63293
|
title: string
|
|
62960
63294
|
description?: string | null
|
|
62961
63295
|
status?: $Enums.TenderStatus
|
|
@@ -62975,6 +63309,7 @@ export namespace Prisma {
|
|
|
62975
63309
|
|
|
62976
63310
|
export type TenderUpdateManyMutationInput = {
|
|
62977
63311
|
id?: StringFieldUpdateOperationsInput | string
|
|
63312
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62978
63313
|
title?: StringFieldUpdateOperationsInput | string
|
|
62979
63314
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62980
63315
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -62991,6 +63326,7 @@ export namespace Prisma {
|
|
|
62991
63326
|
|
|
62992
63327
|
export type TenderUncheckedUpdateManyInput = {
|
|
62993
63328
|
id?: StringFieldUpdateOperationsInput | string
|
|
63329
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62994
63330
|
title?: StringFieldUpdateOperationsInput | string
|
|
62995
63331
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62996
63332
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -63218,6 +63554,7 @@ export namespace Prisma {
|
|
|
63218
63554
|
export type TenderChatCreateInput = {
|
|
63219
63555
|
id?: string
|
|
63220
63556
|
message: string
|
|
63557
|
+
read_at?: Date | string | null
|
|
63221
63558
|
created_at?: Date | string
|
|
63222
63559
|
tender: TenderCreateNestedOneWithoutTenderChatsInput
|
|
63223
63560
|
user_sends: UserCreateNestedOneWithoutTenderChatsInput
|
|
@@ -63230,12 +63567,14 @@ export namespace Prisma {
|
|
|
63230
63567
|
user_sends_id: string
|
|
63231
63568
|
user_receives_id: string
|
|
63232
63569
|
message: string
|
|
63570
|
+
read_at?: Date | string | null
|
|
63233
63571
|
created_at?: Date | string
|
|
63234
63572
|
}
|
|
63235
63573
|
|
|
63236
63574
|
export type TenderChatUpdateInput = {
|
|
63237
63575
|
id?: StringFieldUpdateOperationsInput | string
|
|
63238
63576
|
message?: StringFieldUpdateOperationsInput | string
|
|
63577
|
+
read_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
63239
63578
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63240
63579
|
tender?: TenderUpdateOneRequiredWithoutTenderChatsNestedInput
|
|
63241
63580
|
user_sends?: UserUpdateOneRequiredWithoutTenderChatsNestedInput
|
|
@@ -63248,6 +63587,7 @@ export namespace Prisma {
|
|
|
63248
63587
|
user_sends_id?: StringFieldUpdateOperationsInput | string
|
|
63249
63588
|
user_receives_id?: StringFieldUpdateOperationsInput | string
|
|
63250
63589
|
message?: StringFieldUpdateOperationsInput | string
|
|
63590
|
+
read_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
63251
63591
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63252
63592
|
}
|
|
63253
63593
|
|
|
@@ -63257,12 +63597,14 @@ export namespace Prisma {
|
|
|
63257
63597
|
user_sends_id: string
|
|
63258
63598
|
user_receives_id: string
|
|
63259
63599
|
message: string
|
|
63600
|
+
read_at?: Date | string | null
|
|
63260
63601
|
created_at?: Date | string
|
|
63261
63602
|
}
|
|
63262
63603
|
|
|
63263
63604
|
export type TenderChatUpdateManyMutationInput = {
|
|
63264
63605
|
id?: StringFieldUpdateOperationsInput | string
|
|
63265
63606
|
message?: StringFieldUpdateOperationsInput | string
|
|
63607
|
+
read_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
63266
63608
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63267
63609
|
}
|
|
63268
63610
|
|
|
@@ -63272,6 +63614,7 @@ export namespace Prisma {
|
|
|
63272
63614
|
user_sends_id?: StringFieldUpdateOperationsInput | string
|
|
63273
63615
|
user_receives_id?: StringFieldUpdateOperationsInput | string
|
|
63274
63616
|
message?: StringFieldUpdateOperationsInput | string
|
|
63617
|
+
read_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
63275
63618
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63276
63619
|
}
|
|
63277
63620
|
|
|
@@ -63503,6 +63846,7 @@ export namespace Prisma {
|
|
|
63503
63846
|
tender: TenderCreateNestedOneWithoutTenderNotificationsInput
|
|
63504
63847
|
user?: UserCreateNestedOneWithoutTenderNotificationsInput
|
|
63505
63848
|
group?: GroupCreateNestedOneWithoutTenderNotificationsInput
|
|
63849
|
+
supplierCompany?: CompaniesCreateNestedOneWithoutSupplierNotificationsInput
|
|
63506
63850
|
}
|
|
63507
63851
|
|
|
63508
63852
|
export type TenderNotificationUncheckedCreateInput = {
|
|
@@ -63510,6 +63854,7 @@ export namespace Prisma {
|
|
|
63510
63854
|
tender_id: string
|
|
63511
63855
|
user_id?: string | null
|
|
63512
63856
|
group_id?: string | null
|
|
63857
|
+
supplier_company_id?: string | null
|
|
63513
63858
|
whatsapp?: boolean
|
|
63514
63859
|
email?: boolean
|
|
63515
63860
|
push?: boolean
|
|
@@ -63527,6 +63872,7 @@ export namespace Prisma {
|
|
|
63527
63872
|
tender?: TenderUpdateOneRequiredWithoutTenderNotificationsNestedInput
|
|
63528
63873
|
user?: UserUpdateOneWithoutTenderNotificationsNestedInput
|
|
63529
63874
|
group?: GroupUpdateOneWithoutTenderNotificationsNestedInput
|
|
63875
|
+
supplierCompany?: CompaniesUpdateOneWithoutSupplierNotificationsNestedInput
|
|
63530
63876
|
}
|
|
63531
63877
|
|
|
63532
63878
|
export type TenderNotificationUncheckedUpdateInput = {
|
|
@@ -63534,6 +63880,7 @@ export namespace Prisma {
|
|
|
63534
63880
|
tender_id?: StringFieldUpdateOperationsInput | string
|
|
63535
63881
|
user_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63536
63882
|
group_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63883
|
+
supplier_company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63537
63884
|
whatsapp?: BoolFieldUpdateOperationsInput | boolean
|
|
63538
63885
|
email?: BoolFieldUpdateOperationsInput | boolean
|
|
63539
63886
|
push?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -63546,6 +63893,7 @@ export namespace Prisma {
|
|
|
63546
63893
|
tender_id: string
|
|
63547
63894
|
user_id?: string | null
|
|
63548
63895
|
group_id?: string | null
|
|
63896
|
+
supplier_company_id?: string | null
|
|
63549
63897
|
whatsapp?: boolean
|
|
63550
63898
|
email?: boolean
|
|
63551
63899
|
push?: boolean
|
|
@@ -63567,6 +63915,7 @@ export namespace Prisma {
|
|
|
63567
63915
|
tender_id?: StringFieldUpdateOperationsInput | string
|
|
63568
63916
|
user_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63569
63917
|
group_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63918
|
+
supplier_company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63570
63919
|
whatsapp?: BoolFieldUpdateOperationsInput | boolean
|
|
63571
63920
|
email?: BoolFieldUpdateOperationsInput | boolean
|
|
63572
63921
|
push?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -63735,6 +64084,7 @@ export namespace Prisma {
|
|
|
63735
64084
|
|
|
63736
64085
|
export type RegularSupplierCreateInput = {
|
|
63737
64086
|
id?: string
|
|
64087
|
+
created_by?: string | null
|
|
63738
64088
|
created_at?: Date | string
|
|
63739
64089
|
updated_at?: Date | string
|
|
63740
64090
|
company: CompaniesCreateNestedOneWithoutRegularSuppliersInput
|
|
@@ -63745,12 +64095,14 @@ export namespace Prisma {
|
|
|
63745
64095
|
id?: string
|
|
63746
64096
|
company_id: string
|
|
63747
64097
|
supplier_id: string
|
|
64098
|
+
created_by?: string | null
|
|
63748
64099
|
created_at?: Date | string
|
|
63749
64100
|
updated_at?: Date | string
|
|
63750
64101
|
}
|
|
63751
64102
|
|
|
63752
64103
|
export type RegularSupplierUpdateInput = {
|
|
63753
64104
|
id?: StringFieldUpdateOperationsInput | string
|
|
64105
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63754
64106
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63755
64107
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63756
64108
|
company?: CompaniesUpdateOneRequiredWithoutRegularSuppliersNestedInput
|
|
@@ -63761,6 +64113,7 @@ export namespace Prisma {
|
|
|
63761
64113
|
id?: StringFieldUpdateOperationsInput | string
|
|
63762
64114
|
company_id?: StringFieldUpdateOperationsInput | string
|
|
63763
64115
|
supplier_id?: StringFieldUpdateOperationsInput | string
|
|
64116
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63764
64117
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63765
64118
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63766
64119
|
}
|
|
@@ -63769,12 +64122,14 @@ export namespace Prisma {
|
|
|
63769
64122
|
id?: string
|
|
63770
64123
|
company_id: string
|
|
63771
64124
|
supplier_id: string
|
|
64125
|
+
created_by?: string | null
|
|
63772
64126
|
created_at?: Date | string
|
|
63773
64127
|
updated_at?: Date | string
|
|
63774
64128
|
}
|
|
63775
64129
|
|
|
63776
64130
|
export type RegularSupplierUpdateManyMutationInput = {
|
|
63777
64131
|
id?: StringFieldUpdateOperationsInput | string
|
|
64132
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63778
64133
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63779
64134
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63780
64135
|
}
|
|
@@ -63783,6 +64138,7 @@ export namespace Prisma {
|
|
|
63783
64138
|
id?: StringFieldUpdateOperationsInput | string
|
|
63784
64139
|
company_id?: StringFieldUpdateOperationsInput | string
|
|
63785
64140
|
supplier_id?: StringFieldUpdateOperationsInput | string
|
|
64141
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63786
64142
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63787
64143
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63788
64144
|
}
|
|
@@ -64435,6 +64791,8 @@ export namespace Prisma {
|
|
|
64435
64791
|
id?: SortOrder
|
|
64436
64792
|
reference?: SortOrder
|
|
64437
64793
|
shipper_id?: SortOrder
|
|
64794
|
+
company_id?: SortOrder
|
|
64795
|
+
created_by?: SortOrder
|
|
64438
64796
|
attachments?: SortOrder
|
|
64439
64797
|
status?: SortOrder
|
|
64440
64798
|
created_at?: SortOrder
|
|
@@ -64445,6 +64803,8 @@ export namespace Prisma {
|
|
|
64445
64803
|
id?: SortOrder
|
|
64446
64804
|
reference?: SortOrder
|
|
64447
64805
|
shipper_id?: SortOrder
|
|
64806
|
+
company_id?: SortOrder
|
|
64807
|
+
created_by?: SortOrder
|
|
64448
64808
|
status?: SortOrder
|
|
64449
64809
|
created_at?: SortOrder
|
|
64450
64810
|
updated_at?: SortOrder
|
|
@@ -64454,6 +64814,8 @@ export namespace Prisma {
|
|
|
64454
64814
|
id?: SortOrder
|
|
64455
64815
|
reference?: SortOrder
|
|
64456
64816
|
shipper_id?: SortOrder
|
|
64817
|
+
company_id?: SortOrder
|
|
64818
|
+
created_by?: SortOrder
|
|
64457
64819
|
status?: SortOrder
|
|
64458
64820
|
created_at?: SortOrder
|
|
64459
64821
|
updated_at?: SortOrder
|
|
@@ -64566,6 +64928,12 @@ export namespace Prisma {
|
|
|
64566
64928
|
none?: ProductWhereInput
|
|
64567
64929
|
}
|
|
64568
64930
|
|
|
64931
|
+
export type TenderNotificationListRelationFilter = {
|
|
64932
|
+
every?: TenderNotificationWhereInput
|
|
64933
|
+
some?: TenderNotificationWhereInput
|
|
64934
|
+
none?: TenderNotificationWhereInput
|
|
64935
|
+
}
|
|
64936
|
+
|
|
64569
64937
|
export type ClientOrderByRelationAggregateInput = {
|
|
64570
64938
|
_count?: SortOrder
|
|
64571
64939
|
}
|
|
@@ -64610,6 +64978,10 @@ export namespace Prisma {
|
|
|
64610
64978
|
_count?: SortOrder
|
|
64611
64979
|
}
|
|
64612
64980
|
|
|
64981
|
+
export type TenderNotificationOrderByRelationAggregateInput = {
|
|
64982
|
+
_count?: SortOrder
|
|
64983
|
+
}
|
|
64984
|
+
|
|
64613
64985
|
export type CompaniesCountOrderByAggregateInput = {
|
|
64614
64986
|
id?: SortOrder
|
|
64615
64987
|
tax_id?: SortOrder
|
|
@@ -64798,12 +65170,6 @@ export namespace Prisma {
|
|
|
64798
65170
|
none?: UserGroupWhereInput
|
|
64799
65171
|
}
|
|
64800
65172
|
|
|
64801
|
-
export type TenderNotificationListRelationFilter = {
|
|
64802
|
-
every?: TenderNotificationWhereInput
|
|
64803
|
-
some?: TenderNotificationWhereInput
|
|
64804
|
-
none?: TenderNotificationWhereInput
|
|
64805
|
-
}
|
|
64806
|
-
|
|
64807
65173
|
export type SessionOrderByRelationAggregateInput = {
|
|
64808
65174
|
_count?: SortOrder
|
|
64809
65175
|
}
|
|
@@ -64824,10 +65190,6 @@ export namespace Prisma {
|
|
|
64824
65190
|
_count?: SortOrder
|
|
64825
65191
|
}
|
|
64826
65192
|
|
|
64827
|
-
export type TenderNotificationOrderByRelationAggregateInput = {
|
|
64828
|
-
_count?: SortOrder
|
|
64829
|
-
}
|
|
64830
|
-
|
|
64831
65193
|
export type UserCountOrderByAggregateInput = {
|
|
64832
65194
|
id?: SortOrder
|
|
64833
65195
|
email?: SortOrder
|
|
@@ -65048,6 +65410,13 @@ export namespace Prisma {
|
|
|
65048
65410
|
not?: NestedEnumVehicleSizeNullableFilter<$PrismaModel> | $Enums.VehicleSize | null
|
|
65049
65411
|
}
|
|
65050
65412
|
|
|
65413
|
+
export type EnumVehicleStatusFilter<$PrismaModel = never> = {
|
|
65414
|
+
equals?: $Enums.VehicleStatus | EnumVehicleStatusFieldRefInput<$PrismaModel>
|
|
65415
|
+
in?: $Enums.VehicleStatus[] | ListEnumVehicleStatusFieldRefInput<$PrismaModel>
|
|
65416
|
+
notIn?: $Enums.VehicleStatus[] | ListEnumVehicleStatusFieldRefInput<$PrismaModel>
|
|
65417
|
+
not?: NestedEnumVehicleStatusFilter<$PrismaModel> | $Enums.VehicleStatus
|
|
65418
|
+
}
|
|
65419
|
+
|
|
65051
65420
|
export type VehicleBrandNullableScalarRelationFilter = {
|
|
65052
65421
|
is?: VehicleBrandWhereInput | null
|
|
65053
65422
|
isNot?: VehicleBrandWhereInput | null
|
|
@@ -65085,6 +65454,7 @@ export namespace Prisma {
|
|
|
65085
65454
|
color?: SortOrder
|
|
65086
65455
|
chassis_number?: SortOrder
|
|
65087
65456
|
size?: SortOrder
|
|
65457
|
+
status?: SortOrder
|
|
65088
65458
|
gps_enabled?: SortOrder
|
|
65089
65459
|
image_url?: SortOrder
|
|
65090
65460
|
company_id?: SortOrder
|
|
@@ -65111,6 +65481,7 @@ export namespace Prisma {
|
|
|
65111
65481
|
color?: SortOrder
|
|
65112
65482
|
chassis_number?: SortOrder
|
|
65113
65483
|
size?: SortOrder
|
|
65484
|
+
status?: SortOrder
|
|
65114
65485
|
gps_enabled?: SortOrder
|
|
65115
65486
|
company_id?: SortOrder
|
|
65116
65487
|
is_validated?: SortOrder
|
|
@@ -65130,6 +65501,7 @@ export namespace Prisma {
|
|
|
65130
65501
|
color?: SortOrder
|
|
65131
65502
|
chassis_number?: SortOrder
|
|
65132
65503
|
size?: SortOrder
|
|
65504
|
+
status?: SortOrder
|
|
65133
65505
|
gps_enabled?: SortOrder
|
|
65134
65506
|
company_id?: SortOrder
|
|
65135
65507
|
is_validated?: SortOrder
|
|
@@ -65188,6 +65560,16 @@ export namespace Prisma {
|
|
|
65188
65560
|
_max?: NestedEnumVehicleSizeNullableFilter<$PrismaModel>
|
|
65189
65561
|
}
|
|
65190
65562
|
|
|
65563
|
+
export type EnumVehicleStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
65564
|
+
equals?: $Enums.VehicleStatus | EnumVehicleStatusFieldRefInput<$PrismaModel>
|
|
65565
|
+
in?: $Enums.VehicleStatus[] | ListEnumVehicleStatusFieldRefInput<$PrismaModel>
|
|
65566
|
+
notIn?: $Enums.VehicleStatus[] | ListEnumVehicleStatusFieldRefInput<$PrismaModel>
|
|
65567
|
+
not?: NestedEnumVehicleStatusWithAggregatesFilter<$PrismaModel> | $Enums.VehicleStatus
|
|
65568
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
65569
|
+
_min?: NestedEnumVehicleStatusFilter<$PrismaModel>
|
|
65570
|
+
_max?: NestedEnumVehicleStatusFilter<$PrismaModel>
|
|
65571
|
+
}
|
|
65572
|
+
|
|
65191
65573
|
export type OrderNullableScalarRelationFilter = {
|
|
65192
65574
|
is?: OrderWhereInput | null
|
|
65193
65575
|
isNot?: OrderWhereInput | null
|
|
@@ -66300,6 +66682,7 @@ export namespace Prisma {
|
|
|
66300
66682
|
|
|
66301
66683
|
export type TenderCountOrderByAggregateInput = {
|
|
66302
66684
|
id?: SortOrder
|
|
66685
|
+
code?: SortOrder
|
|
66303
66686
|
title?: SortOrder
|
|
66304
66687
|
description?: SortOrder
|
|
66305
66688
|
status?: SortOrder
|
|
@@ -66323,6 +66706,7 @@ export namespace Prisma {
|
|
|
66323
66706
|
|
|
66324
66707
|
export type TenderMaxOrderByAggregateInput = {
|
|
66325
66708
|
id?: SortOrder
|
|
66709
|
+
code?: SortOrder
|
|
66326
66710
|
title?: SortOrder
|
|
66327
66711
|
description?: SortOrder
|
|
66328
66712
|
status?: SortOrder
|
|
@@ -66341,6 +66725,7 @@ export namespace Prisma {
|
|
|
66341
66725
|
|
|
66342
66726
|
export type TenderMinOrderByAggregateInput = {
|
|
66343
66727
|
id?: SortOrder
|
|
66728
|
+
code?: SortOrder
|
|
66344
66729
|
title?: SortOrder
|
|
66345
66730
|
description?: SortOrder
|
|
66346
66731
|
status?: SortOrder
|
|
@@ -66530,6 +66915,7 @@ export namespace Prisma {
|
|
|
66530
66915
|
user_sends_id?: SortOrder
|
|
66531
66916
|
user_receives_id?: SortOrder
|
|
66532
66917
|
message?: SortOrder
|
|
66918
|
+
read_at?: SortOrder
|
|
66533
66919
|
created_at?: SortOrder
|
|
66534
66920
|
}
|
|
66535
66921
|
|
|
@@ -66539,6 +66925,7 @@ export namespace Prisma {
|
|
|
66539
66925
|
user_sends_id?: SortOrder
|
|
66540
66926
|
user_receives_id?: SortOrder
|
|
66541
66927
|
message?: SortOrder
|
|
66928
|
+
read_at?: SortOrder
|
|
66542
66929
|
created_at?: SortOrder
|
|
66543
66930
|
}
|
|
66544
66931
|
|
|
@@ -66548,6 +66935,7 @@ export namespace Prisma {
|
|
|
66548
66935
|
user_sends_id?: SortOrder
|
|
66549
66936
|
user_receives_id?: SortOrder
|
|
66550
66937
|
message?: SortOrder
|
|
66938
|
+
read_at?: SortOrder
|
|
66551
66939
|
created_at?: SortOrder
|
|
66552
66940
|
}
|
|
66553
66941
|
|
|
@@ -66694,6 +67082,7 @@ export namespace Prisma {
|
|
|
66694
67082
|
tender_id?: SortOrder
|
|
66695
67083
|
user_id?: SortOrder
|
|
66696
67084
|
group_id?: SortOrder
|
|
67085
|
+
supplier_company_id?: SortOrder
|
|
66697
67086
|
whatsapp?: SortOrder
|
|
66698
67087
|
email?: SortOrder
|
|
66699
67088
|
push?: SortOrder
|
|
@@ -66706,6 +67095,7 @@ export namespace Prisma {
|
|
|
66706
67095
|
tender_id?: SortOrder
|
|
66707
67096
|
user_id?: SortOrder
|
|
66708
67097
|
group_id?: SortOrder
|
|
67098
|
+
supplier_company_id?: SortOrder
|
|
66709
67099
|
whatsapp?: SortOrder
|
|
66710
67100
|
email?: SortOrder
|
|
66711
67101
|
push?: SortOrder
|
|
@@ -66718,6 +67108,7 @@ export namespace Prisma {
|
|
|
66718
67108
|
tender_id?: SortOrder
|
|
66719
67109
|
user_id?: SortOrder
|
|
66720
67110
|
group_id?: SortOrder
|
|
67111
|
+
supplier_company_id?: SortOrder
|
|
66721
67112
|
whatsapp?: SortOrder
|
|
66722
67113
|
email?: SortOrder
|
|
66723
67114
|
push?: SortOrder
|
|
@@ -66842,6 +67233,7 @@ export namespace Prisma {
|
|
|
66842
67233
|
id?: SortOrder
|
|
66843
67234
|
company_id?: SortOrder
|
|
66844
67235
|
supplier_id?: SortOrder
|
|
67236
|
+
created_by?: SortOrder
|
|
66845
67237
|
created_at?: SortOrder
|
|
66846
67238
|
updated_at?: SortOrder
|
|
66847
67239
|
}
|
|
@@ -66850,6 +67242,7 @@ export namespace Prisma {
|
|
|
66850
67242
|
id?: SortOrder
|
|
66851
67243
|
company_id?: SortOrder
|
|
66852
67244
|
supplier_id?: SortOrder
|
|
67245
|
+
created_by?: SortOrder
|
|
66853
67246
|
created_at?: SortOrder
|
|
66854
67247
|
updated_at?: SortOrder
|
|
66855
67248
|
}
|
|
@@ -66858,6 +67251,7 @@ export namespace Prisma {
|
|
|
66858
67251
|
id?: SortOrder
|
|
66859
67252
|
company_id?: SortOrder
|
|
66860
67253
|
supplier_id?: SortOrder
|
|
67254
|
+
created_by?: SortOrder
|
|
66861
67255
|
created_at?: SortOrder
|
|
66862
67256
|
updated_at?: SortOrder
|
|
66863
67257
|
}
|
|
@@ -67192,6 +67586,12 @@ export namespace Prisma {
|
|
|
67192
67586
|
connect?: ClientWhereUniqueInput
|
|
67193
67587
|
}
|
|
67194
67588
|
|
|
67589
|
+
export type CompaniesCreateNestedOneWithoutOrdersInput = {
|
|
67590
|
+
create?: XOR<CompaniesCreateWithoutOrdersInput, CompaniesUncheckedCreateWithoutOrdersInput>
|
|
67591
|
+
connectOrCreate?: CompaniesCreateOrConnectWithoutOrdersInput
|
|
67592
|
+
connect?: CompaniesWhereUniqueInput
|
|
67593
|
+
}
|
|
67594
|
+
|
|
67195
67595
|
export type HandlingUnitCreateNestedManyWithoutOrderInput = {
|
|
67196
67596
|
create?: XOR<HandlingUnitCreateWithoutOrderInput, HandlingUnitUncheckedCreateWithoutOrderInput> | HandlingUnitCreateWithoutOrderInput[] | HandlingUnitUncheckedCreateWithoutOrderInput[]
|
|
67197
67597
|
connectOrCreate?: HandlingUnitCreateOrConnectWithoutOrderInput | HandlingUnitCreateOrConnectWithoutOrderInput[]
|
|
@@ -67248,6 +67648,16 @@ export namespace Prisma {
|
|
|
67248
67648
|
update?: XOR<XOR<ClientUpdateToOneWithWhereWithoutOrders_as_shipperInput, ClientUpdateWithoutOrders_as_shipperInput>, ClientUncheckedUpdateWithoutOrders_as_shipperInput>
|
|
67249
67649
|
}
|
|
67250
67650
|
|
|
67651
|
+
export type CompaniesUpdateOneWithoutOrdersNestedInput = {
|
|
67652
|
+
create?: XOR<CompaniesCreateWithoutOrdersInput, CompaniesUncheckedCreateWithoutOrdersInput>
|
|
67653
|
+
connectOrCreate?: CompaniesCreateOrConnectWithoutOrdersInput
|
|
67654
|
+
upsert?: CompaniesUpsertWithoutOrdersInput
|
|
67655
|
+
disconnect?: CompaniesWhereInput | boolean
|
|
67656
|
+
delete?: CompaniesWhereInput | boolean
|
|
67657
|
+
connect?: CompaniesWhereUniqueInput
|
|
67658
|
+
update?: XOR<XOR<CompaniesUpdateToOneWithWhereWithoutOrdersInput, CompaniesUpdateWithoutOrdersInput>, CompaniesUncheckedUpdateWithoutOrdersInput>
|
|
67659
|
+
}
|
|
67660
|
+
|
|
67251
67661
|
export type HandlingUnitUpdateManyWithoutOrderNestedInput = {
|
|
67252
67662
|
create?: XOR<HandlingUnitCreateWithoutOrderInput, HandlingUnitUncheckedCreateWithoutOrderInput> | HandlingUnitCreateWithoutOrderInput[] | HandlingUnitUncheckedCreateWithoutOrderInput[]
|
|
67253
67663
|
connectOrCreate?: HandlingUnitCreateOrConnectWithoutOrderInput | HandlingUnitCreateOrConnectWithoutOrderInput[]
|
|
@@ -67388,6 +67798,13 @@ export namespace Prisma {
|
|
|
67388
67798
|
connect?: TenderWhereUniqueInput | TenderWhereUniqueInput[]
|
|
67389
67799
|
}
|
|
67390
67800
|
|
|
67801
|
+
export type OrderCreateNestedManyWithoutCompanyInput = {
|
|
67802
|
+
create?: XOR<OrderCreateWithoutCompanyInput, OrderUncheckedCreateWithoutCompanyInput> | OrderCreateWithoutCompanyInput[] | OrderUncheckedCreateWithoutCompanyInput[]
|
|
67803
|
+
connectOrCreate?: OrderCreateOrConnectWithoutCompanyInput | OrderCreateOrConnectWithoutCompanyInput[]
|
|
67804
|
+
createMany?: OrderCreateManyCompanyInputEnvelope
|
|
67805
|
+
connect?: OrderWhereUniqueInput | OrderWhereUniqueInput[]
|
|
67806
|
+
}
|
|
67807
|
+
|
|
67391
67808
|
export type GroupCreateNestedManyWithoutCompanyInput = {
|
|
67392
67809
|
create?: XOR<GroupCreateWithoutCompanyInput, GroupUncheckedCreateWithoutCompanyInput> | GroupCreateWithoutCompanyInput[] | GroupUncheckedCreateWithoutCompanyInput[]
|
|
67393
67810
|
connectOrCreate?: GroupCreateOrConnectWithoutCompanyInput | GroupCreateOrConnectWithoutCompanyInput[]
|
|
@@ -67423,6 +67840,13 @@ export namespace Prisma {
|
|
|
67423
67840
|
connect?: RegularSupplierWhereUniqueInput | RegularSupplierWhereUniqueInput[]
|
|
67424
67841
|
}
|
|
67425
67842
|
|
|
67843
|
+
export type TenderNotificationCreateNestedManyWithoutSupplierCompanyInput = {
|
|
67844
|
+
create?: XOR<TenderNotificationCreateWithoutSupplierCompanyInput, TenderNotificationUncheckedCreateWithoutSupplierCompanyInput> | TenderNotificationCreateWithoutSupplierCompanyInput[] | TenderNotificationUncheckedCreateWithoutSupplierCompanyInput[]
|
|
67845
|
+
connectOrCreate?: TenderNotificationCreateOrConnectWithoutSupplierCompanyInput | TenderNotificationCreateOrConnectWithoutSupplierCompanyInput[]
|
|
67846
|
+
createMany?: TenderNotificationCreateManySupplierCompanyInputEnvelope
|
|
67847
|
+
connect?: TenderNotificationWhereUniqueInput | TenderNotificationWhereUniqueInput[]
|
|
67848
|
+
}
|
|
67849
|
+
|
|
67426
67850
|
export type ClientUncheckedCreateNestedManyWithoutCompanyInput = {
|
|
67427
67851
|
create?: XOR<ClientCreateWithoutCompanyInput, ClientUncheckedCreateWithoutCompanyInput> | ClientCreateWithoutCompanyInput[] | ClientUncheckedCreateWithoutCompanyInput[]
|
|
67428
67852
|
connectOrCreate?: ClientCreateOrConnectWithoutCompanyInput | ClientCreateOrConnectWithoutCompanyInput[]
|
|
@@ -67479,6 +67903,13 @@ export namespace Prisma {
|
|
|
67479
67903
|
connect?: TenderWhereUniqueInput | TenderWhereUniqueInput[]
|
|
67480
67904
|
}
|
|
67481
67905
|
|
|
67906
|
+
export type OrderUncheckedCreateNestedManyWithoutCompanyInput = {
|
|
67907
|
+
create?: XOR<OrderCreateWithoutCompanyInput, OrderUncheckedCreateWithoutCompanyInput> | OrderCreateWithoutCompanyInput[] | OrderUncheckedCreateWithoutCompanyInput[]
|
|
67908
|
+
connectOrCreate?: OrderCreateOrConnectWithoutCompanyInput | OrderCreateOrConnectWithoutCompanyInput[]
|
|
67909
|
+
createMany?: OrderCreateManyCompanyInputEnvelope
|
|
67910
|
+
connect?: OrderWhereUniqueInput | OrderWhereUniqueInput[]
|
|
67911
|
+
}
|
|
67912
|
+
|
|
67482
67913
|
export type GroupUncheckedCreateNestedManyWithoutCompanyInput = {
|
|
67483
67914
|
create?: XOR<GroupCreateWithoutCompanyInput, GroupUncheckedCreateWithoutCompanyInput> | GroupCreateWithoutCompanyInput[] | GroupUncheckedCreateWithoutCompanyInput[]
|
|
67484
67915
|
connectOrCreate?: GroupCreateOrConnectWithoutCompanyInput | GroupCreateOrConnectWithoutCompanyInput[]
|
|
@@ -67514,6 +67945,13 @@ export namespace Prisma {
|
|
|
67514
67945
|
connect?: RegularSupplierWhereUniqueInput | RegularSupplierWhereUniqueInput[]
|
|
67515
67946
|
}
|
|
67516
67947
|
|
|
67948
|
+
export type TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput = {
|
|
67949
|
+
create?: XOR<TenderNotificationCreateWithoutSupplierCompanyInput, TenderNotificationUncheckedCreateWithoutSupplierCompanyInput> | TenderNotificationCreateWithoutSupplierCompanyInput[] | TenderNotificationUncheckedCreateWithoutSupplierCompanyInput[]
|
|
67950
|
+
connectOrCreate?: TenderNotificationCreateOrConnectWithoutSupplierCompanyInput | TenderNotificationCreateOrConnectWithoutSupplierCompanyInput[]
|
|
67951
|
+
createMany?: TenderNotificationCreateManySupplierCompanyInputEnvelope
|
|
67952
|
+
connect?: TenderNotificationWhereUniqueInput | TenderNotificationWhereUniqueInput[]
|
|
67953
|
+
}
|
|
67954
|
+
|
|
67517
67955
|
export type NullableBoolFieldUpdateOperationsInput = {
|
|
67518
67956
|
set?: boolean | null
|
|
67519
67957
|
}
|
|
@@ -67630,6 +68068,20 @@ export namespace Prisma {
|
|
|
67630
68068
|
deleteMany?: TenderScalarWhereInput | TenderScalarWhereInput[]
|
|
67631
68069
|
}
|
|
67632
68070
|
|
|
68071
|
+
export type OrderUpdateManyWithoutCompanyNestedInput = {
|
|
68072
|
+
create?: XOR<OrderCreateWithoutCompanyInput, OrderUncheckedCreateWithoutCompanyInput> | OrderCreateWithoutCompanyInput[] | OrderUncheckedCreateWithoutCompanyInput[]
|
|
68073
|
+
connectOrCreate?: OrderCreateOrConnectWithoutCompanyInput | OrderCreateOrConnectWithoutCompanyInput[]
|
|
68074
|
+
upsert?: OrderUpsertWithWhereUniqueWithoutCompanyInput | OrderUpsertWithWhereUniqueWithoutCompanyInput[]
|
|
68075
|
+
createMany?: OrderCreateManyCompanyInputEnvelope
|
|
68076
|
+
set?: OrderWhereUniqueInput | OrderWhereUniqueInput[]
|
|
68077
|
+
disconnect?: OrderWhereUniqueInput | OrderWhereUniqueInput[]
|
|
68078
|
+
delete?: OrderWhereUniqueInput | OrderWhereUniqueInput[]
|
|
68079
|
+
connect?: OrderWhereUniqueInput | OrderWhereUniqueInput[]
|
|
68080
|
+
update?: OrderUpdateWithWhereUniqueWithoutCompanyInput | OrderUpdateWithWhereUniqueWithoutCompanyInput[]
|
|
68081
|
+
updateMany?: OrderUpdateManyWithWhereWithoutCompanyInput | OrderUpdateManyWithWhereWithoutCompanyInput[]
|
|
68082
|
+
deleteMany?: OrderScalarWhereInput | OrderScalarWhereInput[]
|
|
68083
|
+
}
|
|
68084
|
+
|
|
67633
68085
|
export type GroupUpdateManyWithoutCompanyNestedInput = {
|
|
67634
68086
|
create?: XOR<GroupCreateWithoutCompanyInput, GroupUncheckedCreateWithoutCompanyInput> | GroupCreateWithoutCompanyInput[] | GroupUncheckedCreateWithoutCompanyInput[]
|
|
67635
68087
|
connectOrCreate?: GroupCreateOrConnectWithoutCompanyInput | GroupCreateOrConnectWithoutCompanyInput[]
|
|
@@ -67700,6 +68152,20 @@ export namespace Prisma {
|
|
|
67700
68152
|
deleteMany?: RegularSupplierScalarWhereInput | RegularSupplierScalarWhereInput[]
|
|
67701
68153
|
}
|
|
67702
68154
|
|
|
68155
|
+
export type TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput = {
|
|
68156
|
+
create?: XOR<TenderNotificationCreateWithoutSupplierCompanyInput, TenderNotificationUncheckedCreateWithoutSupplierCompanyInput> | TenderNotificationCreateWithoutSupplierCompanyInput[] | TenderNotificationUncheckedCreateWithoutSupplierCompanyInput[]
|
|
68157
|
+
connectOrCreate?: TenderNotificationCreateOrConnectWithoutSupplierCompanyInput | TenderNotificationCreateOrConnectWithoutSupplierCompanyInput[]
|
|
68158
|
+
upsert?: TenderNotificationUpsertWithWhereUniqueWithoutSupplierCompanyInput | TenderNotificationUpsertWithWhereUniqueWithoutSupplierCompanyInput[]
|
|
68159
|
+
createMany?: TenderNotificationCreateManySupplierCompanyInputEnvelope
|
|
68160
|
+
set?: TenderNotificationWhereUniqueInput | TenderNotificationWhereUniqueInput[]
|
|
68161
|
+
disconnect?: TenderNotificationWhereUniqueInput | TenderNotificationWhereUniqueInput[]
|
|
68162
|
+
delete?: TenderNotificationWhereUniqueInput | TenderNotificationWhereUniqueInput[]
|
|
68163
|
+
connect?: TenderNotificationWhereUniqueInput | TenderNotificationWhereUniqueInput[]
|
|
68164
|
+
update?: TenderNotificationUpdateWithWhereUniqueWithoutSupplierCompanyInput | TenderNotificationUpdateWithWhereUniqueWithoutSupplierCompanyInput[]
|
|
68165
|
+
updateMany?: TenderNotificationUpdateManyWithWhereWithoutSupplierCompanyInput | TenderNotificationUpdateManyWithWhereWithoutSupplierCompanyInput[]
|
|
68166
|
+
deleteMany?: TenderNotificationScalarWhereInput | TenderNotificationScalarWhereInput[]
|
|
68167
|
+
}
|
|
68168
|
+
|
|
67703
68169
|
export type ClientUncheckedUpdateManyWithoutCompanyNestedInput = {
|
|
67704
68170
|
create?: XOR<ClientCreateWithoutCompanyInput, ClientUncheckedCreateWithoutCompanyInput> | ClientCreateWithoutCompanyInput[] | ClientUncheckedCreateWithoutCompanyInput[]
|
|
67705
68171
|
connectOrCreate?: ClientCreateOrConnectWithoutCompanyInput | ClientCreateOrConnectWithoutCompanyInput[]
|
|
@@ -67812,6 +68278,20 @@ export namespace Prisma {
|
|
|
67812
68278
|
deleteMany?: TenderScalarWhereInput | TenderScalarWhereInput[]
|
|
67813
68279
|
}
|
|
67814
68280
|
|
|
68281
|
+
export type OrderUncheckedUpdateManyWithoutCompanyNestedInput = {
|
|
68282
|
+
create?: XOR<OrderCreateWithoutCompanyInput, OrderUncheckedCreateWithoutCompanyInput> | OrderCreateWithoutCompanyInput[] | OrderUncheckedCreateWithoutCompanyInput[]
|
|
68283
|
+
connectOrCreate?: OrderCreateOrConnectWithoutCompanyInput | OrderCreateOrConnectWithoutCompanyInput[]
|
|
68284
|
+
upsert?: OrderUpsertWithWhereUniqueWithoutCompanyInput | OrderUpsertWithWhereUniqueWithoutCompanyInput[]
|
|
68285
|
+
createMany?: OrderCreateManyCompanyInputEnvelope
|
|
68286
|
+
set?: OrderWhereUniqueInput | OrderWhereUniqueInput[]
|
|
68287
|
+
disconnect?: OrderWhereUniqueInput | OrderWhereUniqueInput[]
|
|
68288
|
+
delete?: OrderWhereUniqueInput | OrderWhereUniqueInput[]
|
|
68289
|
+
connect?: OrderWhereUniqueInput | OrderWhereUniqueInput[]
|
|
68290
|
+
update?: OrderUpdateWithWhereUniqueWithoutCompanyInput | OrderUpdateWithWhereUniqueWithoutCompanyInput[]
|
|
68291
|
+
updateMany?: OrderUpdateManyWithWhereWithoutCompanyInput | OrderUpdateManyWithWhereWithoutCompanyInput[]
|
|
68292
|
+
deleteMany?: OrderScalarWhereInput | OrderScalarWhereInput[]
|
|
68293
|
+
}
|
|
68294
|
+
|
|
67815
68295
|
export type GroupUncheckedUpdateManyWithoutCompanyNestedInput = {
|
|
67816
68296
|
create?: XOR<GroupCreateWithoutCompanyInput, GroupUncheckedCreateWithoutCompanyInput> | GroupCreateWithoutCompanyInput[] | GroupUncheckedCreateWithoutCompanyInput[]
|
|
67817
68297
|
connectOrCreate?: GroupCreateOrConnectWithoutCompanyInput | GroupCreateOrConnectWithoutCompanyInput[]
|
|
@@ -67882,6 +68362,20 @@ export namespace Prisma {
|
|
|
67882
68362
|
deleteMany?: RegularSupplierScalarWhereInput | RegularSupplierScalarWhereInput[]
|
|
67883
68363
|
}
|
|
67884
68364
|
|
|
68365
|
+
export type TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput = {
|
|
68366
|
+
create?: XOR<TenderNotificationCreateWithoutSupplierCompanyInput, TenderNotificationUncheckedCreateWithoutSupplierCompanyInput> | TenderNotificationCreateWithoutSupplierCompanyInput[] | TenderNotificationUncheckedCreateWithoutSupplierCompanyInput[]
|
|
68367
|
+
connectOrCreate?: TenderNotificationCreateOrConnectWithoutSupplierCompanyInput | TenderNotificationCreateOrConnectWithoutSupplierCompanyInput[]
|
|
68368
|
+
upsert?: TenderNotificationUpsertWithWhereUniqueWithoutSupplierCompanyInput | TenderNotificationUpsertWithWhereUniqueWithoutSupplierCompanyInput[]
|
|
68369
|
+
createMany?: TenderNotificationCreateManySupplierCompanyInputEnvelope
|
|
68370
|
+
set?: TenderNotificationWhereUniqueInput | TenderNotificationWhereUniqueInput[]
|
|
68371
|
+
disconnect?: TenderNotificationWhereUniqueInput | TenderNotificationWhereUniqueInput[]
|
|
68372
|
+
delete?: TenderNotificationWhereUniqueInput | TenderNotificationWhereUniqueInput[]
|
|
68373
|
+
connect?: TenderNotificationWhereUniqueInput | TenderNotificationWhereUniqueInput[]
|
|
68374
|
+
update?: TenderNotificationUpdateWithWhereUniqueWithoutSupplierCompanyInput | TenderNotificationUpdateWithWhereUniqueWithoutSupplierCompanyInput[]
|
|
68375
|
+
updateMany?: TenderNotificationUpdateManyWithWhereWithoutSupplierCompanyInput | TenderNotificationUpdateManyWithWhereWithoutSupplierCompanyInput[]
|
|
68376
|
+
deleteMany?: TenderNotificationScalarWhereInput | TenderNotificationScalarWhereInput[]
|
|
68377
|
+
}
|
|
68378
|
+
|
|
67885
68379
|
export type OrderCreateNestedOneWithoutHandling_unitsInput = {
|
|
67886
68380
|
create?: XOR<OrderCreateWithoutHandling_unitsInput, OrderUncheckedCreateWithoutHandling_unitsInput>
|
|
67887
68381
|
connectOrCreate?: OrderCreateOrConnectWithoutHandling_unitsInput
|
|
@@ -68890,6 +69384,10 @@ export namespace Prisma {
|
|
|
68890
69384
|
set?: $Enums.VehicleSize | null
|
|
68891
69385
|
}
|
|
68892
69386
|
|
|
69387
|
+
export type EnumVehicleStatusFieldUpdateOperationsInput = {
|
|
69388
|
+
set?: $Enums.VehicleStatus
|
|
69389
|
+
}
|
|
69390
|
+
|
|
68893
69391
|
export type VehicleBrandUpdateOneWithoutVehiclesNestedInput = {
|
|
68894
69392
|
create?: XOR<VehicleBrandCreateWithoutVehiclesInput, VehicleBrandUncheckedCreateWithoutVehiclesInput>
|
|
68895
69393
|
connectOrCreate?: VehicleBrandCreateOrConnectWithoutVehiclesInput
|
|
@@ -70745,6 +71243,12 @@ export namespace Prisma {
|
|
|
70745
71243
|
connect?: GroupWhereUniqueInput
|
|
70746
71244
|
}
|
|
70747
71245
|
|
|
71246
|
+
export type CompaniesCreateNestedOneWithoutSupplierNotificationsInput = {
|
|
71247
|
+
create?: XOR<CompaniesCreateWithoutSupplierNotificationsInput, CompaniesUncheckedCreateWithoutSupplierNotificationsInput>
|
|
71248
|
+
connectOrCreate?: CompaniesCreateOrConnectWithoutSupplierNotificationsInput
|
|
71249
|
+
connect?: CompaniesWhereUniqueInput
|
|
71250
|
+
}
|
|
71251
|
+
|
|
70748
71252
|
export type TenderUpdateOneRequiredWithoutTenderNotificationsNestedInput = {
|
|
70749
71253
|
create?: XOR<TenderCreateWithoutTenderNotificationsInput, TenderUncheckedCreateWithoutTenderNotificationsInput>
|
|
70750
71254
|
connectOrCreate?: TenderCreateOrConnectWithoutTenderNotificationsInput
|
|
@@ -70773,6 +71277,16 @@ export namespace Prisma {
|
|
|
70773
71277
|
update?: XOR<XOR<GroupUpdateToOneWithWhereWithoutTenderNotificationsInput, GroupUpdateWithoutTenderNotificationsInput>, GroupUncheckedUpdateWithoutTenderNotificationsInput>
|
|
70774
71278
|
}
|
|
70775
71279
|
|
|
71280
|
+
export type CompaniesUpdateOneWithoutSupplierNotificationsNestedInput = {
|
|
71281
|
+
create?: XOR<CompaniesCreateWithoutSupplierNotificationsInput, CompaniesUncheckedCreateWithoutSupplierNotificationsInput>
|
|
71282
|
+
connectOrCreate?: CompaniesCreateOrConnectWithoutSupplierNotificationsInput
|
|
71283
|
+
upsert?: CompaniesUpsertWithoutSupplierNotificationsInput
|
|
71284
|
+
disconnect?: CompaniesWhereInput | boolean
|
|
71285
|
+
delete?: CompaniesWhereInput | boolean
|
|
71286
|
+
connect?: CompaniesWhereUniqueInput
|
|
71287
|
+
update?: XOR<XOR<CompaniesUpdateToOneWithWhereWithoutSupplierNotificationsInput, CompaniesUpdateWithoutSupplierNotificationsInput>, CompaniesUncheckedUpdateWithoutSupplierNotificationsInput>
|
|
71288
|
+
}
|
|
71289
|
+
|
|
70776
71290
|
export type EnumLocationTypeFieldUpdateOperationsInput = {
|
|
70777
71291
|
set?: $Enums.LocationType
|
|
70778
71292
|
}
|
|
@@ -71351,6 +71865,13 @@ export namespace Prisma {
|
|
|
71351
71865
|
not?: NestedEnumVehicleSizeNullableFilter<$PrismaModel> | $Enums.VehicleSize | null
|
|
71352
71866
|
}
|
|
71353
71867
|
|
|
71868
|
+
export type NestedEnumVehicleStatusFilter<$PrismaModel = never> = {
|
|
71869
|
+
equals?: $Enums.VehicleStatus | EnumVehicleStatusFieldRefInput<$PrismaModel>
|
|
71870
|
+
in?: $Enums.VehicleStatus[] | ListEnumVehicleStatusFieldRefInput<$PrismaModel>
|
|
71871
|
+
notIn?: $Enums.VehicleStatus[] | ListEnumVehicleStatusFieldRefInput<$PrismaModel>
|
|
71872
|
+
not?: NestedEnumVehicleStatusFilter<$PrismaModel> | $Enums.VehicleStatus
|
|
71873
|
+
}
|
|
71874
|
+
|
|
71354
71875
|
export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
71355
71876
|
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
|
71356
71877
|
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
|
@@ -71397,6 +71918,16 @@ export namespace Prisma {
|
|
|
71397
71918
|
_max?: NestedEnumVehicleSizeNullableFilter<$PrismaModel>
|
|
71398
71919
|
}
|
|
71399
71920
|
|
|
71921
|
+
export type NestedEnumVehicleStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
71922
|
+
equals?: $Enums.VehicleStatus | EnumVehicleStatusFieldRefInput<$PrismaModel>
|
|
71923
|
+
in?: $Enums.VehicleStatus[] | ListEnumVehicleStatusFieldRefInput<$PrismaModel>
|
|
71924
|
+
notIn?: $Enums.VehicleStatus[] | ListEnumVehicleStatusFieldRefInput<$PrismaModel>
|
|
71925
|
+
not?: NestedEnumVehicleStatusWithAggregatesFilter<$PrismaModel> | $Enums.VehicleStatus
|
|
71926
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
71927
|
+
_min?: NestedEnumVehicleStatusFilter<$PrismaModel>
|
|
71928
|
+
_max?: NestedEnumVehicleStatusFilter<$PrismaModel>
|
|
71929
|
+
}
|
|
71930
|
+
|
|
71400
71931
|
export type NestedEnumEquipmentStatusFilter<$PrismaModel = never> = {
|
|
71401
71932
|
equals?: $Enums.EquipmentStatus | EnumEquipmentStatusFieldRefInput<$PrismaModel>
|
|
71402
71933
|
in?: $Enums.EquipmentStatus[] | ListEnumEquipmentStatusFieldRefInput<$PrismaModel>
|
|
@@ -71709,10 +72240,12 @@ export namespace Prisma {
|
|
|
71709
72240
|
form_responses?: FormResponseCreateNestedManyWithoutCompanyInput
|
|
71710
72241
|
forms?: FormCreateNestedManyWithoutCompanyInput
|
|
71711
72242
|
tenders?: TenderCreateNestedManyWithoutCompanyInput
|
|
72243
|
+
orders?: OrderCreateNestedManyWithoutCompanyInput
|
|
71712
72244
|
groups?: GroupCreateNestedManyWithoutCompanyInput
|
|
71713
72245
|
companyLocations?: CompanyLocationCreateNestedManyWithoutCompanyInput
|
|
71714
72246
|
regularSuppliers?: RegularSupplierCreateNestedManyWithoutCompanyInput
|
|
71715
72247
|
regularSuppliers2?: RegularSupplierCreateNestedManyWithoutSupplierInput
|
|
72248
|
+
supplierNotifications?: TenderNotificationCreateNestedManyWithoutSupplierCompanyInput
|
|
71716
72249
|
}
|
|
71717
72250
|
|
|
71718
72251
|
export type CompaniesUncheckedCreateWithoutProductsInput = {
|
|
@@ -71734,10 +72267,12 @@ export namespace Prisma {
|
|
|
71734
72267
|
form_responses?: FormResponseUncheckedCreateNestedManyWithoutCompanyInput
|
|
71735
72268
|
forms?: FormUncheckedCreateNestedManyWithoutCompanyInput
|
|
71736
72269
|
tenders?: TenderUncheckedCreateNestedManyWithoutCompanyInput
|
|
72270
|
+
orders?: OrderUncheckedCreateNestedManyWithoutCompanyInput
|
|
71737
72271
|
groups?: GroupUncheckedCreateNestedManyWithoutCompanyInput
|
|
71738
72272
|
companyLocations?: CompanyLocationUncheckedCreateNestedManyWithoutCompanyInput
|
|
71739
72273
|
regularSuppliers?: RegularSupplierUncheckedCreateNestedManyWithoutCompanyInput
|
|
71740
72274
|
regularSuppliers2?: RegularSupplierUncheckedCreateNestedManyWithoutSupplierInput
|
|
72275
|
+
supplierNotifications?: TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput
|
|
71741
72276
|
}
|
|
71742
72277
|
|
|
71743
72278
|
export type CompaniesCreateOrConnectWithoutProductsInput = {
|
|
@@ -71813,10 +72348,12 @@ export namespace Prisma {
|
|
|
71813
72348
|
form_responses?: FormResponseUpdateManyWithoutCompanyNestedInput
|
|
71814
72349
|
forms?: FormUpdateManyWithoutCompanyNestedInput
|
|
71815
72350
|
tenders?: TenderUpdateManyWithoutCompanyNestedInput
|
|
72351
|
+
orders?: OrderUpdateManyWithoutCompanyNestedInput
|
|
71816
72352
|
groups?: GroupUpdateManyWithoutCompanyNestedInput
|
|
71817
72353
|
companyLocations?: CompanyLocationUpdateManyWithoutCompanyNestedInput
|
|
71818
72354
|
regularSuppliers?: RegularSupplierUpdateManyWithoutCompanyNestedInput
|
|
71819
72355
|
regularSuppliers2?: RegularSupplierUpdateManyWithoutSupplierNestedInput
|
|
72356
|
+
supplierNotifications?: TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput
|
|
71820
72357
|
}
|
|
71821
72358
|
|
|
71822
72359
|
export type CompaniesUncheckedUpdateWithoutProductsInput = {
|
|
@@ -71838,10 +72375,12 @@ export namespace Prisma {
|
|
|
71838
72375
|
form_responses?: FormResponseUncheckedUpdateManyWithoutCompanyNestedInput
|
|
71839
72376
|
forms?: FormUncheckedUpdateManyWithoutCompanyNestedInput
|
|
71840
72377
|
tenders?: TenderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
72378
|
+
orders?: OrderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
71841
72379
|
groups?: GroupUncheckedUpdateManyWithoutCompanyNestedInput
|
|
71842
72380
|
companyLocations?: CompanyLocationUncheckedUpdateManyWithoutCompanyNestedInput
|
|
71843
72381
|
regularSuppliers?: RegularSupplierUncheckedUpdateManyWithoutCompanyNestedInput
|
|
71844
72382
|
regularSuppliers2?: RegularSupplierUncheckedUpdateManyWithoutSupplierNestedInput
|
|
72383
|
+
supplierNotifications?: TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput
|
|
71845
72384
|
}
|
|
71846
72385
|
|
|
71847
72386
|
export type CompaniesCreateWithoutClientsInput = {
|
|
@@ -71862,11 +72401,13 @@ export namespace Prisma {
|
|
|
71862
72401
|
form_responses?: FormResponseCreateNestedManyWithoutCompanyInput
|
|
71863
72402
|
forms?: FormCreateNestedManyWithoutCompanyInput
|
|
71864
72403
|
tenders?: TenderCreateNestedManyWithoutCompanyInput
|
|
72404
|
+
orders?: OrderCreateNestedManyWithoutCompanyInput
|
|
71865
72405
|
groups?: GroupCreateNestedManyWithoutCompanyInput
|
|
71866
72406
|
companyLocations?: CompanyLocationCreateNestedManyWithoutCompanyInput
|
|
71867
72407
|
regularSuppliers?: RegularSupplierCreateNestedManyWithoutCompanyInput
|
|
71868
72408
|
products?: ProductCreateNestedManyWithoutCompanyInput
|
|
71869
72409
|
regularSuppliers2?: RegularSupplierCreateNestedManyWithoutSupplierInput
|
|
72410
|
+
supplierNotifications?: TenderNotificationCreateNestedManyWithoutSupplierCompanyInput
|
|
71870
72411
|
}
|
|
71871
72412
|
|
|
71872
72413
|
export type CompaniesUncheckedCreateWithoutClientsInput = {
|
|
@@ -71887,11 +72428,13 @@ export namespace Prisma {
|
|
|
71887
72428
|
form_responses?: FormResponseUncheckedCreateNestedManyWithoutCompanyInput
|
|
71888
72429
|
forms?: FormUncheckedCreateNestedManyWithoutCompanyInput
|
|
71889
72430
|
tenders?: TenderUncheckedCreateNestedManyWithoutCompanyInput
|
|
72431
|
+
orders?: OrderUncheckedCreateNestedManyWithoutCompanyInput
|
|
71890
72432
|
groups?: GroupUncheckedCreateNestedManyWithoutCompanyInput
|
|
71891
72433
|
companyLocations?: CompanyLocationUncheckedCreateNestedManyWithoutCompanyInput
|
|
71892
72434
|
regularSuppliers?: RegularSupplierUncheckedCreateNestedManyWithoutCompanyInput
|
|
71893
72435
|
products?: ProductUncheckedCreateNestedManyWithoutCompanyInput
|
|
71894
72436
|
regularSuppliers2?: RegularSupplierUncheckedCreateNestedManyWithoutSupplierInput
|
|
72437
|
+
supplierNotifications?: TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput
|
|
71895
72438
|
}
|
|
71896
72439
|
|
|
71897
72440
|
export type CompaniesCreateOrConnectWithoutClientsInput = {
|
|
@@ -71978,10 +72521,12 @@ export namespace Prisma {
|
|
|
71978
72521
|
export type OrderCreateWithoutShipperInput = {
|
|
71979
72522
|
id?: string
|
|
71980
72523
|
reference?: string | null
|
|
72524
|
+
created_by?: string | null
|
|
71981
72525
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
71982
72526
|
status?: $Enums.RouteStatus
|
|
71983
72527
|
created_at?: Date | string
|
|
71984
72528
|
updated_at?: Date | string
|
|
72529
|
+
company?: CompaniesCreateNestedOneWithoutOrdersInput
|
|
71985
72530
|
handling_units?: HandlingUnitCreateNestedManyWithoutOrderInput
|
|
71986
72531
|
routes?: RouteCreateNestedManyWithoutOrderInput
|
|
71987
72532
|
tenders?: TenderCreateNestedManyWithoutOrderInput
|
|
@@ -71990,6 +72535,8 @@ export namespace Prisma {
|
|
|
71990
72535
|
export type OrderUncheckedCreateWithoutShipperInput = {
|
|
71991
72536
|
id?: string
|
|
71992
72537
|
reference?: string | null
|
|
72538
|
+
company_id?: string | null
|
|
72539
|
+
created_by?: string | null
|
|
71993
72540
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
71994
72541
|
status?: $Enums.RouteStatus
|
|
71995
72542
|
created_at?: Date | string
|
|
@@ -72088,11 +72635,13 @@ export namespace Prisma {
|
|
|
72088
72635
|
form_responses?: FormResponseUpdateManyWithoutCompanyNestedInput
|
|
72089
72636
|
forms?: FormUpdateManyWithoutCompanyNestedInput
|
|
72090
72637
|
tenders?: TenderUpdateManyWithoutCompanyNestedInput
|
|
72638
|
+
orders?: OrderUpdateManyWithoutCompanyNestedInput
|
|
72091
72639
|
groups?: GroupUpdateManyWithoutCompanyNestedInput
|
|
72092
72640
|
companyLocations?: CompanyLocationUpdateManyWithoutCompanyNestedInput
|
|
72093
72641
|
regularSuppliers?: RegularSupplierUpdateManyWithoutCompanyNestedInput
|
|
72094
72642
|
products?: ProductUpdateManyWithoutCompanyNestedInput
|
|
72095
72643
|
regularSuppliers2?: RegularSupplierUpdateManyWithoutSupplierNestedInput
|
|
72644
|
+
supplierNotifications?: TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput
|
|
72096
72645
|
}
|
|
72097
72646
|
|
|
72098
72647
|
export type CompaniesUncheckedUpdateWithoutClientsInput = {
|
|
@@ -72113,11 +72662,13 @@ export namespace Prisma {
|
|
|
72113
72662
|
form_responses?: FormResponseUncheckedUpdateManyWithoutCompanyNestedInput
|
|
72114
72663
|
forms?: FormUncheckedUpdateManyWithoutCompanyNestedInput
|
|
72115
72664
|
tenders?: TenderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
72665
|
+
orders?: OrderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
72116
72666
|
groups?: GroupUncheckedUpdateManyWithoutCompanyNestedInput
|
|
72117
72667
|
companyLocations?: CompanyLocationUncheckedUpdateManyWithoutCompanyNestedInput
|
|
72118
72668
|
regularSuppliers?: RegularSupplierUncheckedUpdateManyWithoutCompanyNestedInput
|
|
72119
72669
|
products?: ProductUncheckedUpdateManyWithoutCompanyNestedInput
|
|
72120
72670
|
regularSuppliers2?: RegularSupplierUncheckedUpdateManyWithoutSupplierNestedInput
|
|
72671
|
+
supplierNotifications?: TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput
|
|
72121
72672
|
}
|
|
72122
72673
|
|
|
72123
72674
|
export type ClientAddressUpsertWithWhereUniqueWithoutClientInput = {
|
|
@@ -72211,6 +72762,8 @@ export namespace Prisma {
|
|
|
72211
72762
|
id?: UuidFilter<"Order"> | string
|
|
72212
72763
|
reference?: StringNullableFilter<"Order"> | string | null
|
|
72213
72764
|
shipper_id?: UuidNullableFilter<"Order"> | string | null
|
|
72765
|
+
company_id?: UuidNullableFilter<"Order"> | string | null
|
|
72766
|
+
created_by?: UuidNullableFilter<"Order"> | string | null
|
|
72214
72767
|
attachments?: JsonNullableFilter<"Order">
|
|
72215
72768
|
status?: EnumRouteStatusFilter<"Order"> | $Enums.RouteStatus
|
|
72216
72769
|
created_at?: DateTimeFilter<"Order"> | Date | string
|
|
@@ -72430,6 +72983,65 @@ export namespace Prisma {
|
|
|
72430
72983
|
create: XOR<ClientCreateWithoutOrders_as_shipperInput, ClientUncheckedCreateWithoutOrders_as_shipperInput>
|
|
72431
72984
|
}
|
|
72432
72985
|
|
|
72986
|
+
export type CompaniesCreateWithoutOrdersInput = {
|
|
72987
|
+
id?: string
|
|
72988
|
+
tax_id?: string | null
|
|
72989
|
+
name: string
|
|
72990
|
+
address?: NullableJsonNullValueInput | InputJsonValue
|
|
72991
|
+
contact_info?: NullableJsonNullValueInput | InputJsonValue
|
|
72992
|
+
country_code?: string | null
|
|
72993
|
+
is_validated?: boolean | null
|
|
72994
|
+
documents?: NullableJsonNullValueInput | InputJsonValue
|
|
72995
|
+
created_at?: Date | string
|
|
72996
|
+
updated_at?: Date | string
|
|
72997
|
+
clients?: ClientCreateNestedManyWithoutCompanyInput
|
|
72998
|
+
vehicles?: VehicleCreateNestedManyWithoutCompanyInput
|
|
72999
|
+
user_companies?: UserCompanyCreateNestedManyWithoutCompanyInput
|
|
73000
|
+
equipments?: EquipmentCreateNestedManyWithoutCompanyInput
|
|
73001
|
+
form_templates?: FormTemplateCreateNestedManyWithoutCompanyInput
|
|
73002
|
+
form_responses?: FormResponseCreateNestedManyWithoutCompanyInput
|
|
73003
|
+
forms?: FormCreateNestedManyWithoutCompanyInput
|
|
73004
|
+
tenders?: TenderCreateNestedManyWithoutCompanyInput
|
|
73005
|
+
groups?: GroupCreateNestedManyWithoutCompanyInput
|
|
73006
|
+
companyLocations?: CompanyLocationCreateNestedManyWithoutCompanyInput
|
|
73007
|
+
regularSuppliers?: RegularSupplierCreateNestedManyWithoutCompanyInput
|
|
73008
|
+
products?: ProductCreateNestedManyWithoutCompanyInput
|
|
73009
|
+
regularSuppliers2?: RegularSupplierCreateNestedManyWithoutSupplierInput
|
|
73010
|
+
supplierNotifications?: TenderNotificationCreateNestedManyWithoutSupplierCompanyInput
|
|
73011
|
+
}
|
|
73012
|
+
|
|
73013
|
+
export type CompaniesUncheckedCreateWithoutOrdersInput = {
|
|
73014
|
+
id?: string
|
|
73015
|
+
tax_id?: string | null
|
|
73016
|
+
name: string
|
|
73017
|
+
address?: NullableJsonNullValueInput | InputJsonValue
|
|
73018
|
+
contact_info?: NullableJsonNullValueInput | InputJsonValue
|
|
73019
|
+
country_code?: string | null
|
|
73020
|
+
is_validated?: boolean | null
|
|
73021
|
+
documents?: NullableJsonNullValueInput | InputJsonValue
|
|
73022
|
+
created_at?: Date | string
|
|
73023
|
+
updated_at?: Date | string
|
|
73024
|
+
clients?: ClientUncheckedCreateNestedManyWithoutCompanyInput
|
|
73025
|
+
vehicles?: VehicleUncheckedCreateNestedManyWithoutCompanyInput
|
|
73026
|
+
user_companies?: UserCompanyUncheckedCreateNestedManyWithoutCompanyInput
|
|
73027
|
+
equipments?: EquipmentUncheckedCreateNestedManyWithoutCompanyInput
|
|
73028
|
+
form_templates?: FormTemplateUncheckedCreateNestedManyWithoutCompanyInput
|
|
73029
|
+
form_responses?: FormResponseUncheckedCreateNestedManyWithoutCompanyInput
|
|
73030
|
+
forms?: FormUncheckedCreateNestedManyWithoutCompanyInput
|
|
73031
|
+
tenders?: TenderUncheckedCreateNestedManyWithoutCompanyInput
|
|
73032
|
+
groups?: GroupUncheckedCreateNestedManyWithoutCompanyInput
|
|
73033
|
+
companyLocations?: CompanyLocationUncheckedCreateNestedManyWithoutCompanyInput
|
|
73034
|
+
regularSuppliers?: RegularSupplierUncheckedCreateNestedManyWithoutCompanyInput
|
|
73035
|
+
products?: ProductUncheckedCreateNestedManyWithoutCompanyInput
|
|
73036
|
+
regularSuppliers2?: RegularSupplierUncheckedCreateNestedManyWithoutSupplierInput
|
|
73037
|
+
supplierNotifications?: TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput
|
|
73038
|
+
}
|
|
73039
|
+
|
|
73040
|
+
export type CompaniesCreateOrConnectWithoutOrdersInput = {
|
|
73041
|
+
where: CompaniesWhereUniqueInput
|
|
73042
|
+
create: XOR<CompaniesCreateWithoutOrdersInput, CompaniesUncheckedCreateWithoutOrdersInput>
|
|
73043
|
+
}
|
|
73044
|
+
|
|
72433
73045
|
export type HandlingUnitCreateWithoutOrderInput = {
|
|
72434
73046
|
id?: string
|
|
72435
73047
|
quantity?: number
|
|
@@ -72534,6 +73146,7 @@ export namespace Prisma {
|
|
|
72534
73146
|
|
|
72535
73147
|
export type TenderCreateWithoutOrderInput = {
|
|
72536
73148
|
id?: string
|
|
73149
|
+
code?: string | null
|
|
72537
73150
|
title: string
|
|
72538
73151
|
description?: string | null
|
|
72539
73152
|
status?: $Enums.TenderStatus
|
|
@@ -72556,6 +73169,7 @@ export namespace Prisma {
|
|
|
72556
73169
|
|
|
72557
73170
|
export type TenderUncheckedCreateWithoutOrderInput = {
|
|
72558
73171
|
id?: string
|
|
73172
|
+
code?: string | null
|
|
72559
73173
|
title: string
|
|
72560
73174
|
description?: string | null
|
|
72561
73175
|
status?: $Enums.TenderStatus
|
|
@@ -72629,6 +73243,71 @@ export namespace Prisma {
|
|
|
72629
73243
|
handling_units_as_consignee?: HandlingUnitUncheckedUpdateManyWithoutClientNestedInput
|
|
72630
73244
|
}
|
|
72631
73245
|
|
|
73246
|
+
export type CompaniesUpsertWithoutOrdersInput = {
|
|
73247
|
+
update: XOR<CompaniesUpdateWithoutOrdersInput, CompaniesUncheckedUpdateWithoutOrdersInput>
|
|
73248
|
+
create: XOR<CompaniesCreateWithoutOrdersInput, CompaniesUncheckedCreateWithoutOrdersInput>
|
|
73249
|
+
where?: CompaniesWhereInput
|
|
73250
|
+
}
|
|
73251
|
+
|
|
73252
|
+
export type CompaniesUpdateToOneWithWhereWithoutOrdersInput = {
|
|
73253
|
+
where?: CompaniesWhereInput
|
|
73254
|
+
data: XOR<CompaniesUpdateWithoutOrdersInput, CompaniesUncheckedUpdateWithoutOrdersInput>
|
|
73255
|
+
}
|
|
73256
|
+
|
|
73257
|
+
export type CompaniesUpdateWithoutOrdersInput = {
|
|
73258
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
73259
|
+
tax_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
73260
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
73261
|
+
address?: NullableJsonNullValueInput | InputJsonValue
|
|
73262
|
+
contact_info?: NullableJsonNullValueInput | InputJsonValue
|
|
73263
|
+
country_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
73264
|
+
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
73265
|
+
documents?: NullableJsonNullValueInput | InputJsonValue
|
|
73266
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
73267
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
73268
|
+
clients?: ClientUpdateManyWithoutCompanyNestedInput
|
|
73269
|
+
vehicles?: VehicleUpdateManyWithoutCompanyNestedInput
|
|
73270
|
+
user_companies?: UserCompanyUpdateManyWithoutCompanyNestedInput
|
|
73271
|
+
equipments?: EquipmentUpdateManyWithoutCompanyNestedInput
|
|
73272
|
+
form_templates?: FormTemplateUpdateManyWithoutCompanyNestedInput
|
|
73273
|
+
form_responses?: FormResponseUpdateManyWithoutCompanyNestedInput
|
|
73274
|
+
forms?: FormUpdateManyWithoutCompanyNestedInput
|
|
73275
|
+
tenders?: TenderUpdateManyWithoutCompanyNestedInput
|
|
73276
|
+
groups?: GroupUpdateManyWithoutCompanyNestedInput
|
|
73277
|
+
companyLocations?: CompanyLocationUpdateManyWithoutCompanyNestedInput
|
|
73278
|
+
regularSuppliers?: RegularSupplierUpdateManyWithoutCompanyNestedInput
|
|
73279
|
+
products?: ProductUpdateManyWithoutCompanyNestedInput
|
|
73280
|
+
regularSuppliers2?: RegularSupplierUpdateManyWithoutSupplierNestedInput
|
|
73281
|
+
supplierNotifications?: TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput
|
|
73282
|
+
}
|
|
73283
|
+
|
|
73284
|
+
export type CompaniesUncheckedUpdateWithoutOrdersInput = {
|
|
73285
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
73286
|
+
tax_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
73287
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
73288
|
+
address?: NullableJsonNullValueInput | InputJsonValue
|
|
73289
|
+
contact_info?: NullableJsonNullValueInput | InputJsonValue
|
|
73290
|
+
country_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
73291
|
+
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
73292
|
+
documents?: NullableJsonNullValueInput | InputJsonValue
|
|
73293
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
73294
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
73295
|
+
clients?: ClientUncheckedUpdateManyWithoutCompanyNestedInput
|
|
73296
|
+
vehicles?: VehicleUncheckedUpdateManyWithoutCompanyNestedInput
|
|
73297
|
+
user_companies?: UserCompanyUncheckedUpdateManyWithoutCompanyNestedInput
|
|
73298
|
+
equipments?: EquipmentUncheckedUpdateManyWithoutCompanyNestedInput
|
|
73299
|
+
form_templates?: FormTemplateUncheckedUpdateManyWithoutCompanyNestedInput
|
|
73300
|
+
form_responses?: FormResponseUncheckedUpdateManyWithoutCompanyNestedInput
|
|
73301
|
+
forms?: FormUncheckedUpdateManyWithoutCompanyNestedInput
|
|
73302
|
+
tenders?: TenderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
73303
|
+
groups?: GroupUncheckedUpdateManyWithoutCompanyNestedInput
|
|
73304
|
+
companyLocations?: CompanyLocationUncheckedUpdateManyWithoutCompanyNestedInput
|
|
73305
|
+
regularSuppliers?: RegularSupplierUncheckedUpdateManyWithoutCompanyNestedInput
|
|
73306
|
+
products?: ProductUncheckedUpdateManyWithoutCompanyNestedInput
|
|
73307
|
+
regularSuppliers2?: RegularSupplierUncheckedUpdateManyWithoutSupplierNestedInput
|
|
73308
|
+
supplierNotifications?: TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput
|
|
73309
|
+
}
|
|
73310
|
+
|
|
72632
73311
|
export type HandlingUnitUpsertWithWhereUniqueWithoutOrderInput = {
|
|
72633
73312
|
where: HandlingUnitWhereUniqueInput
|
|
72634
73313
|
update: XOR<HandlingUnitUpdateWithoutOrderInput, HandlingUnitUncheckedUpdateWithoutOrderInput>
|
|
@@ -72705,6 +73384,7 @@ export namespace Prisma {
|
|
|
72705
73384
|
OR?: TenderScalarWhereInput[]
|
|
72706
73385
|
NOT?: TenderScalarWhereInput | TenderScalarWhereInput[]
|
|
72707
73386
|
id?: UuidFilter<"Tender"> | string
|
|
73387
|
+
code?: StringNullableFilter<"Tender"> | string | null
|
|
72708
73388
|
title?: StringFilter<"Tender"> | string
|
|
72709
73389
|
description?: StringNullableFilter<"Tender"> | string | null
|
|
72710
73390
|
status?: EnumTenderStatusFilter<"Tender"> | $Enums.TenderStatus
|
|
@@ -72773,6 +73453,7 @@ export namespace Prisma {
|
|
|
72773
73453
|
color?: $Enums.VehicleColor | null
|
|
72774
73454
|
chassis_number?: string | null
|
|
72775
73455
|
size?: $Enums.VehicleSize | null
|
|
73456
|
+
status?: $Enums.VehicleStatus
|
|
72776
73457
|
gps_enabled?: boolean
|
|
72777
73458
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
72778
73459
|
is_validated?: boolean | null
|
|
@@ -72800,6 +73481,7 @@ export namespace Prisma {
|
|
|
72800
73481
|
color?: $Enums.VehicleColor | null
|
|
72801
73482
|
chassis_number?: string | null
|
|
72802
73483
|
size?: $Enums.VehicleSize | null
|
|
73484
|
+
status?: $Enums.VehicleStatus
|
|
72803
73485
|
gps_enabled?: boolean
|
|
72804
73486
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
72805
73487
|
is_validated?: boolean | null
|
|
@@ -73038,6 +73720,7 @@ export namespace Prisma {
|
|
|
73038
73720
|
|
|
73039
73721
|
export type TenderCreateWithoutCompanyInput = {
|
|
73040
73722
|
id?: string
|
|
73723
|
+
code?: string | null
|
|
73041
73724
|
title: string
|
|
73042
73725
|
description?: string | null
|
|
73043
73726
|
status?: $Enums.TenderStatus
|
|
@@ -73060,6 +73743,7 @@ export namespace Prisma {
|
|
|
73060
73743
|
|
|
73061
73744
|
export type TenderUncheckedCreateWithoutCompanyInput = {
|
|
73062
73745
|
id?: string
|
|
73746
|
+
code?: string | null
|
|
73063
73747
|
title: string
|
|
73064
73748
|
description?: string | null
|
|
73065
73749
|
status?: $Enums.TenderStatus
|
|
@@ -73090,6 +73774,44 @@ export namespace Prisma {
|
|
|
73090
73774
|
skipDuplicates?: boolean
|
|
73091
73775
|
}
|
|
73092
73776
|
|
|
73777
|
+
export type OrderCreateWithoutCompanyInput = {
|
|
73778
|
+
id?: string
|
|
73779
|
+
reference?: string | null
|
|
73780
|
+
created_by?: string | null
|
|
73781
|
+
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
73782
|
+
status?: $Enums.RouteStatus
|
|
73783
|
+
created_at?: Date | string
|
|
73784
|
+
updated_at?: Date | string
|
|
73785
|
+
shipper?: ClientCreateNestedOneWithoutOrders_as_shipperInput
|
|
73786
|
+
handling_units?: HandlingUnitCreateNestedManyWithoutOrderInput
|
|
73787
|
+
routes?: RouteCreateNestedManyWithoutOrderInput
|
|
73788
|
+
tenders?: TenderCreateNestedManyWithoutOrderInput
|
|
73789
|
+
}
|
|
73790
|
+
|
|
73791
|
+
export type OrderUncheckedCreateWithoutCompanyInput = {
|
|
73792
|
+
id?: string
|
|
73793
|
+
reference?: string | null
|
|
73794
|
+
shipper_id?: string | null
|
|
73795
|
+
created_by?: string | null
|
|
73796
|
+
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
73797
|
+
status?: $Enums.RouteStatus
|
|
73798
|
+
created_at?: Date | string
|
|
73799
|
+
updated_at?: Date | string
|
|
73800
|
+
handling_units?: HandlingUnitUncheckedCreateNestedManyWithoutOrderInput
|
|
73801
|
+
routes?: RouteUncheckedCreateNestedManyWithoutOrderInput
|
|
73802
|
+
tenders?: TenderUncheckedCreateNestedManyWithoutOrderInput
|
|
73803
|
+
}
|
|
73804
|
+
|
|
73805
|
+
export type OrderCreateOrConnectWithoutCompanyInput = {
|
|
73806
|
+
where: OrderWhereUniqueInput
|
|
73807
|
+
create: XOR<OrderCreateWithoutCompanyInput, OrderUncheckedCreateWithoutCompanyInput>
|
|
73808
|
+
}
|
|
73809
|
+
|
|
73810
|
+
export type OrderCreateManyCompanyInputEnvelope = {
|
|
73811
|
+
data: OrderCreateManyCompanyInput | OrderCreateManyCompanyInput[]
|
|
73812
|
+
skipDuplicates?: boolean
|
|
73813
|
+
}
|
|
73814
|
+
|
|
73093
73815
|
export type GroupCreateWithoutCompanyInput = {
|
|
73094
73816
|
id?: string
|
|
73095
73817
|
name: string
|
|
@@ -73146,6 +73868,7 @@ export namespace Prisma {
|
|
|
73146
73868
|
|
|
73147
73869
|
export type RegularSupplierCreateWithoutCompanyInput = {
|
|
73148
73870
|
id?: string
|
|
73871
|
+
created_by?: string | null
|
|
73149
73872
|
created_at?: Date | string
|
|
73150
73873
|
updated_at?: Date | string
|
|
73151
73874
|
supplier: CompaniesCreateNestedOneWithoutRegularSuppliers2Input
|
|
@@ -73154,6 +73877,7 @@ export namespace Prisma {
|
|
|
73154
73877
|
export type RegularSupplierUncheckedCreateWithoutCompanyInput = {
|
|
73155
73878
|
id?: string
|
|
73156
73879
|
supplier_id: string
|
|
73880
|
+
created_by?: string | null
|
|
73157
73881
|
created_at?: Date | string
|
|
73158
73882
|
updated_at?: Date | string
|
|
73159
73883
|
}
|
|
@@ -73220,6 +73944,7 @@ export namespace Prisma {
|
|
|
73220
73944
|
|
|
73221
73945
|
export type RegularSupplierCreateWithoutSupplierInput = {
|
|
73222
73946
|
id?: string
|
|
73947
|
+
created_by?: string | null
|
|
73223
73948
|
created_at?: Date | string
|
|
73224
73949
|
updated_at?: Date | string
|
|
73225
73950
|
company: CompaniesCreateNestedOneWithoutRegularSuppliersInput
|
|
@@ -73228,6 +73953,7 @@ export namespace Prisma {
|
|
|
73228
73953
|
export type RegularSupplierUncheckedCreateWithoutSupplierInput = {
|
|
73229
73954
|
id?: string
|
|
73230
73955
|
company_id: string
|
|
73956
|
+
created_by?: string | null
|
|
73231
73957
|
created_at?: Date | string
|
|
73232
73958
|
updated_at?: Date | string
|
|
73233
73959
|
}
|
|
@@ -73242,6 +73968,40 @@ export namespace Prisma {
|
|
|
73242
73968
|
skipDuplicates?: boolean
|
|
73243
73969
|
}
|
|
73244
73970
|
|
|
73971
|
+
export type TenderNotificationCreateWithoutSupplierCompanyInput = {
|
|
73972
|
+
id?: string
|
|
73973
|
+
whatsapp?: boolean
|
|
73974
|
+
email?: boolean
|
|
73975
|
+
push?: boolean
|
|
73976
|
+
message: string
|
|
73977
|
+
created_at?: Date | string
|
|
73978
|
+
tender: TenderCreateNestedOneWithoutTenderNotificationsInput
|
|
73979
|
+
user?: UserCreateNestedOneWithoutTenderNotificationsInput
|
|
73980
|
+
group?: GroupCreateNestedOneWithoutTenderNotificationsInput
|
|
73981
|
+
}
|
|
73982
|
+
|
|
73983
|
+
export type TenderNotificationUncheckedCreateWithoutSupplierCompanyInput = {
|
|
73984
|
+
id?: string
|
|
73985
|
+
tender_id: string
|
|
73986
|
+
user_id?: string | null
|
|
73987
|
+
group_id?: string | null
|
|
73988
|
+
whatsapp?: boolean
|
|
73989
|
+
email?: boolean
|
|
73990
|
+
push?: boolean
|
|
73991
|
+
message: string
|
|
73992
|
+
created_at?: Date | string
|
|
73993
|
+
}
|
|
73994
|
+
|
|
73995
|
+
export type TenderNotificationCreateOrConnectWithoutSupplierCompanyInput = {
|
|
73996
|
+
where: TenderNotificationWhereUniqueInput
|
|
73997
|
+
create: XOR<TenderNotificationCreateWithoutSupplierCompanyInput, TenderNotificationUncheckedCreateWithoutSupplierCompanyInput>
|
|
73998
|
+
}
|
|
73999
|
+
|
|
74000
|
+
export type TenderNotificationCreateManySupplierCompanyInputEnvelope = {
|
|
74001
|
+
data: TenderNotificationCreateManySupplierCompanyInput | TenderNotificationCreateManySupplierCompanyInput[]
|
|
74002
|
+
skipDuplicates?: boolean
|
|
74003
|
+
}
|
|
74004
|
+
|
|
73245
74005
|
export type ClientUpsertWithWhereUniqueWithoutCompanyInput = {
|
|
73246
74006
|
where: ClientWhereUniqueInput
|
|
73247
74007
|
update: XOR<ClientUpdateWithoutCompanyInput, ClientUncheckedUpdateWithoutCompanyInput>
|
|
@@ -73305,6 +74065,7 @@ export namespace Prisma {
|
|
|
73305
74065
|
color?: EnumVehicleColorNullableFilter<"Vehicle"> | $Enums.VehicleColor | null
|
|
73306
74066
|
chassis_number?: StringNullableFilter<"Vehicle"> | string | null
|
|
73307
74067
|
size?: EnumVehicleSizeNullableFilter<"Vehicle"> | $Enums.VehicleSize | null
|
|
74068
|
+
status?: EnumVehicleStatusFilter<"Vehicle"> | $Enums.VehicleStatus
|
|
73308
74069
|
gps_enabled?: BoolFilter<"Vehicle"> | boolean
|
|
73309
74070
|
image_url?: JsonNullableFilter<"Vehicle">
|
|
73310
74071
|
company_id?: UuidNullableFilter<"Vehicle"> | string | null
|
|
@@ -73506,6 +74267,22 @@ export namespace Prisma {
|
|
|
73506
74267
|
data: XOR<TenderUpdateManyMutationInput, TenderUncheckedUpdateManyWithoutCompanyInput>
|
|
73507
74268
|
}
|
|
73508
74269
|
|
|
74270
|
+
export type OrderUpsertWithWhereUniqueWithoutCompanyInput = {
|
|
74271
|
+
where: OrderWhereUniqueInput
|
|
74272
|
+
update: XOR<OrderUpdateWithoutCompanyInput, OrderUncheckedUpdateWithoutCompanyInput>
|
|
74273
|
+
create: XOR<OrderCreateWithoutCompanyInput, OrderUncheckedCreateWithoutCompanyInput>
|
|
74274
|
+
}
|
|
74275
|
+
|
|
74276
|
+
export type OrderUpdateWithWhereUniqueWithoutCompanyInput = {
|
|
74277
|
+
where: OrderWhereUniqueInput
|
|
74278
|
+
data: XOR<OrderUpdateWithoutCompanyInput, OrderUncheckedUpdateWithoutCompanyInput>
|
|
74279
|
+
}
|
|
74280
|
+
|
|
74281
|
+
export type OrderUpdateManyWithWhereWithoutCompanyInput = {
|
|
74282
|
+
where: OrderScalarWhereInput
|
|
74283
|
+
data: XOR<OrderUpdateManyMutationInput, OrderUncheckedUpdateManyWithoutCompanyInput>
|
|
74284
|
+
}
|
|
74285
|
+
|
|
73509
74286
|
export type GroupUpsertWithWhereUniqueWithoutCompanyInput = {
|
|
73510
74287
|
where: GroupWhereUniqueInput
|
|
73511
74288
|
update: XOR<GroupUpdateWithoutCompanyInput, GroupUncheckedUpdateWithoutCompanyInput>
|
|
@@ -73584,6 +74361,7 @@ export namespace Prisma {
|
|
|
73584
74361
|
id?: UuidFilter<"RegularSupplier"> | string
|
|
73585
74362
|
company_id?: UuidFilter<"RegularSupplier"> | string
|
|
73586
74363
|
supplier_id?: UuidFilter<"RegularSupplier"> | string
|
|
74364
|
+
created_by?: UuidNullableFilter<"RegularSupplier"> | string | null
|
|
73587
74365
|
created_at?: DateTimeFilter<"RegularSupplier"> | Date | string
|
|
73588
74366
|
updated_at?: DateTimeFilter<"RegularSupplier"> | Date | string
|
|
73589
74367
|
}
|
|
@@ -73643,14 +74421,48 @@ export namespace Prisma {
|
|
|
73643
74421
|
data: XOR<RegularSupplierUpdateManyMutationInput, RegularSupplierUncheckedUpdateManyWithoutSupplierInput>
|
|
73644
74422
|
}
|
|
73645
74423
|
|
|
74424
|
+
export type TenderNotificationUpsertWithWhereUniqueWithoutSupplierCompanyInput = {
|
|
74425
|
+
where: TenderNotificationWhereUniqueInput
|
|
74426
|
+
update: XOR<TenderNotificationUpdateWithoutSupplierCompanyInput, TenderNotificationUncheckedUpdateWithoutSupplierCompanyInput>
|
|
74427
|
+
create: XOR<TenderNotificationCreateWithoutSupplierCompanyInput, TenderNotificationUncheckedCreateWithoutSupplierCompanyInput>
|
|
74428
|
+
}
|
|
74429
|
+
|
|
74430
|
+
export type TenderNotificationUpdateWithWhereUniqueWithoutSupplierCompanyInput = {
|
|
74431
|
+
where: TenderNotificationWhereUniqueInput
|
|
74432
|
+
data: XOR<TenderNotificationUpdateWithoutSupplierCompanyInput, TenderNotificationUncheckedUpdateWithoutSupplierCompanyInput>
|
|
74433
|
+
}
|
|
74434
|
+
|
|
74435
|
+
export type TenderNotificationUpdateManyWithWhereWithoutSupplierCompanyInput = {
|
|
74436
|
+
where: TenderNotificationScalarWhereInput
|
|
74437
|
+
data: XOR<TenderNotificationUpdateManyMutationInput, TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyInput>
|
|
74438
|
+
}
|
|
74439
|
+
|
|
74440
|
+
export type TenderNotificationScalarWhereInput = {
|
|
74441
|
+
AND?: TenderNotificationScalarWhereInput | TenderNotificationScalarWhereInput[]
|
|
74442
|
+
OR?: TenderNotificationScalarWhereInput[]
|
|
74443
|
+
NOT?: TenderNotificationScalarWhereInput | TenderNotificationScalarWhereInput[]
|
|
74444
|
+
id?: UuidFilter<"TenderNotification"> | string
|
|
74445
|
+
tender_id?: UuidFilter<"TenderNotification"> | string
|
|
74446
|
+
user_id?: UuidNullableFilter<"TenderNotification"> | string | null
|
|
74447
|
+
group_id?: UuidNullableFilter<"TenderNotification"> | string | null
|
|
74448
|
+
supplier_company_id?: UuidNullableFilter<"TenderNotification"> | string | null
|
|
74449
|
+
whatsapp?: BoolFilter<"TenderNotification"> | boolean
|
|
74450
|
+
email?: BoolFilter<"TenderNotification"> | boolean
|
|
74451
|
+
push?: BoolFilter<"TenderNotification"> | boolean
|
|
74452
|
+
message?: StringFilter<"TenderNotification"> | string
|
|
74453
|
+
created_at?: DateTimeFilter<"TenderNotification"> | Date | string
|
|
74454
|
+
}
|
|
74455
|
+
|
|
73646
74456
|
export type OrderCreateWithoutHandling_unitsInput = {
|
|
73647
74457
|
id?: string
|
|
73648
74458
|
reference?: string | null
|
|
74459
|
+
created_by?: string | null
|
|
73649
74460
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
73650
74461
|
status?: $Enums.RouteStatus
|
|
73651
74462
|
created_at?: Date | string
|
|
73652
74463
|
updated_at?: Date | string
|
|
73653
74464
|
shipper?: ClientCreateNestedOneWithoutOrders_as_shipperInput
|
|
74465
|
+
company?: CompaniesCreateNestedOneWithoutOrdersInput
|
|
73654
74466
|
routes?: RouteCreateNestedManyWithoutOrderInput
|
|
73655
74467
|
tenders?: TenderCreateNestedManyWithoutOrderInput
|
|
73656
74468
|
}
|
|
@@ -73659,6 +74471,8 @@ export namespace Prisma {
|
|
|
73659
74471
|
id?: string
|
|
73660
74472
|
reference?: string | null
|
|
73661
74473
|
shipper_id?: string | null
|
|
74474
|
+
company_id?: string | null
|
|
74475
|
+
created_by?: string | null
|
|
73662
74476
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
73663
74477
|
status?: $Enums.RouteStatus
|
|
73664
74478
|
created_at?: Date | string
|
|
@@ -73816,11 +74630,13 @@ export namespace Prisma {
|
|
|
73816
74630
|
export type OrderUpdateWithoutHandling_unitsInput = {
|
|
73817
74631
|
id?: StringFieldUpdateOperationsInput | string
|
|
73818
74632
|
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
74633
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
73819
74634
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
73820
74635
|
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
73821
74636
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
73822
74637
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
73823
74638
|
shipper?: ClientUpdateOneWithoutOrders_as_shipperNestedInput
|
|
74639
|
+
company?: CompaniesUpdateOneWithoutOrdersNestedInput
|
|
73824
74640
|
routes?: RouteUpdateManyWithoutOrderNestedInput
|
|
73825
74641
|
tenders?: TenderUpdateManyWithoutOrderNestedInput
|
|
73826
74642
|
}
|
|
@@ -73829,6 +74645,8 @@ export namespace Prisma {
|
|
|
73829
74645
|
id?: StringFieldUpdateOperationsInput | string
|
|
73830
74646
|
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
73831
74647
|
shipper_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
74648
|
+
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
74649
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
73832
74650
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
73833
74651
|
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
73834
74652
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -74245,6 +75063,7 @@ export namespace Prisma {
|
|
|
74245
75063
|
|
|
74246
75064
|
export type TenderCreateWithoutUserInput = {
|
|
74247
75065
|
id?: string
|
|
75066
|
+
code?: string | null
|
|
74248
75067
|
title: string
|
|
74249
75068
|
description?: string | null
|
|
74250
75069
|
status?: $Enums.TenderStatus
|
|
@@ -74267,6 +75086,7 @@ export namespace Prisma {
|
|
|
74267
75086
|
|
|
74268
75087
|
export type TenderUncheckedCreateWithoutUserInput = {
|
|
74269
75088
|
id?: string
|
|
75089
|
+
code?: string | null
|
|
74270
75090
|
title: string
|
|
74271
75091
|
description?: string | null
|
|
74272
75092
|
status?: $Enums.TenderStatus
|
|
@@ -74300,6 +75120,7 @@ export namespace Prisma {
|
|
|
74300
75120
|
export type TenderChatCreateWithoutUser_sendsInput = {
|
|
74301
75121
|
id?: string
|
|
74302
75122
|
message: string
|
|
75123
|
+
read_at?: Date | string | null
|
|
74303
75124
|
created_at?: Date | string
|
|
74304
75125
|
tender: TenderCreateNestedOneWithoutTenderChatsInput
|
|
74305
75126
|
user_receives: UserCreateNestedOneWithoutTenderChats2Input
|
|
@@ -74310,6 +75131,7 @@ export namespace Prisma {
|
|
|
74310
75131
|
tender_id: string
|
|
74311
75132
|
user_receives_id: string
|
|
74312
75133
|
message: string
|
|
75134
|
+
read_at?: Date | string | null
|
|
74313
75135
|
created_at?: Date | string
|
|
74314
75136
|
}
|
|
74315
75137
|
|
|
@@ -74326,6 +75148,7 @@ export namespace Prisma {
|
|
|
74326
75148
|
export type TenderChatCreateWithoutUser_receivesInput = {
|
|
74327
75149
|
id?: string
|
|
74328
75150
|
message: string
|
|
75151
|
+
read_at?: Date | string | null
|
|
74329
75152
|
created_at?: Date | string
|
|
74330
75153
|
tender: TenderCreateNestedOneWithoutTenderChatsInput
|
|
74331
75154
|
user_sends: UserCreateNestedOneWithoutTenderChatsInput
|
|
@@ -74336,6 +75159,7 @@ export namespace Prisma {
|
|
|
74336
75159
|
tender_id: string
|
|
74337
75160
|
user_sends_id: string
|
|
74338
75161
|
message: string
|
|
75162
|
+
read_at?: Date | string | null
|
|
74339
75163
|
created_at?: Date | string
|
|
74340
75164
|
}
|
|
74341
75165
|
|
|
@@ -74458,12 +75282,14 @@ export namespace Prisma {
|
|
|
74458
75282
|
created_at?: Date | string
|
|
74459
75283
|
tender: TenderCreateNestedOneWithoutTenderNotificationsInput
|
|
74460
75284
|
group?: GroupCreateNestedOneWithoutTenderNotificationsInput
|
|
75285
|
+
supplierCompany?: CompaniesCreateNestedOneWithoutSupplierNotificationsInput
|
|
74461
75286
|
}
|
|
74462
75287
|
|
|
74463
75288
|
export type TenderNotificationUncheckedCreateWithoutUserInput = {
|
|
74464
75289
|
id?: string
|
|
74465
75290
|
tender_id: string
|
|
74466
75291
|
group_id?: string | null
|
|
75292
|
+
supplier_company_id?: string | null
|
|
74467
75293
|
whatsapp?: boolean
|
|
74468
75294
|
email?: boolean
|
|
74469
75295
|
push?: boolean
|
|
@@ -74660,6 +75486,7 @@ export namespace Prisma {
|
|
|
74660
75486
|
user_sends_id?: UuidFilter<"TenderChat"> | string
|
|
74661
75487
|
user_receives_id?: UuidFilter<"TenderChat"> | string
|
|
74662
75488
|
message?: StringFilter<"TenderChat"> | string
|
|
75489
|
+
read_at?: DateTimeNullableFilter<"TenderChat"> | Date | string | null
|
|
74663
75490
|
created_at?: DateTimeFilter<"TenderChat"> | Date | string
|
|
74664
75491
|
}
|
|
74665
75492
|
|
|
@@ -74772,21 +75599,6 @@ export namespace Prisma {
|
|
|
74772
75599
|
data: XOR<TenderNotificationUpdateManyMutationInput, TenderNotificationUncheckedUpdateManyWithoutUserInput>
|
|
74773
75600
|
}
|
|
74774
75601
|
|
|
74775
|
-
export type TenderNotificationScalarWhereInput = {
|
|
74776
|
-
AND?: TenderNotificationScalarWhereInput | TenderNotificationScalarWhereInput[]
|
|
74777
|
-
OR?: TenderNotificationScalarWhereInput[]
|
|
74778
|
-
NOT?: TenderNotificationScalarWhereInput | TenderNotificationScalarWhereInput[]
|
|
74779
|
-
id?: UuidFilter<"TenderNotification"> | string
|
|
74780
|
-
tender_id?: UuidFilter<"TenderNotification"> | string
|
|
74781
|
-
user_id?: UuidNullableFilter<"TenderNotification"> | string | null
|
|
74782
|
-
group_id?: UuidNullableFilter<"TenderNotification"> | string | null
|
|
74783
|
-
whatsapp?: BoolFilter<"TenderNotification"> | boolean
|
|
74784
|
-
email?: BoolFilter<"TenderNotification"> | boolean
|
|
74785
|
-
push?: BoolFilter<"TenderNotification"> | boolean
|
|
74786
|
-
message?: StringFilter<"TenderNotification"> | string
|
|
74787
|
-
created_at?: DateTimeFilter<"TenderNotification"> | Date | string
|
|
74788
|
-
}
|
|
74789
|
-
|
|
74790
75602
|
export type UserCreateWithoutUser_companiesInput = {
|
|
74791
75603
|
id?: string
|
|
74792
75604
|
email: string
|
|
@@ -74860,11 +75672,13 @@ export namespace Prisma {
|
|
|
74860
75672
|
form_responses?: FormResponseCreateNestedManyWithoutCompanyInput
|
|
74861
75673
|
forms?: FormCreateNestedManyWithoutCompanyInput
|
|
74862
75674
|
tenders?: TenderCreateNestedManyWithoutCompanyInput
|
|
75675
|
+
orders?: OrderCreateNestedManyWithoutCompanyInput
|
|
74863
75676
|
groups?: GroupCreateNestedManyWithoutCompanyInput
|
|
74864
75677
|
companyLocations?: CompanyLocationCreateNestedManyWithoutCompanyInput
|
|
74865
75678
|
regularSuppliers?: RegularSupplierCreateNestedManyWithoutCompanyInput
|
|
74866
75679
|
products?: ProductCreateNestedManyWithoutCompanyInput
|
|
74867
75680
|
regularSuppliers2?: RegularSupplierCreateNestedManyWithoutSupplierInput
|
|
75681
|
+
supplierNotifications?: TenderNotificationCreateNestedManyWithoutSupplierCompanyInput
|
|
74868
75682
|
}
|
|
74869
75683
|
|
|
74870
75684
|
export type CompaniesUncheckedCreateWithoutUser_companiesInput = {
|
|
@@ -74885,11 +75699,13 @@ export namespace Prisma {
|
|
|
74885
75699
|
form_responses?: FormResponseUncheckedCreateNestedManyWithoutCompanyInput
|
|
74886
75700
|
forms?: FormUncheckedCreateNestedManyWithoutCompanyInput
|
|
74887
75701
|
tenders?: TenderUncheckedCreateNestedManyWithoutCompanyInput
|
|
75702
|
+
orders?: OrderUncheckedCreateNestedManyWithoutCompanyInput
|
|
74888
75703
|
groups?: GroupUncheckedCreateNestedManyWithoutCompanyInput
|
|
74889
75704
|
companyLocations?: CompanyLocationUncheckedCreateNestedManyWithoutCompanyInput
|
|
74890
75705
|
regularSuppliers?: RegularSupplierUncheckedCreateNestedManyWithoutCompanyInput
|
|
74891
75706
|
products?: ProductUncheckedCreateNestedManyWithoutCompanyInput
|
|
74892
75707
|
regularSuppliers2?: RegularSupplierUncheckedCreateNestedManyWithoutSupplierInput
|
|
75708
|
+
supplierNotifications?: TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput
|
|
74893
75709
|
}
|
|
74894
75710
|
|
|
74895
75711
|
export type CompaniesCreateOrConnectWithoutUser_companiesInput = {
|
|
@@ -74987,11 +75803,13 @@ export namespace Prisma {
|
|
|
74987
75803
|
form_responses?: FormResponseUpdateManyWithoutCompanyNestedInput
|
|
74988
75804
|
forms?: FormUpdateManyWithoutCompanyNestedInput
|
|
74989
75805
|
tenders?: TenderUpdateManyWithoutCompanyNestedInput
|
|
75806
|
+
orders?: OrderUpdateManyWithoutCompanyNestedInput
|
|
74990
75807
|
groups?: GroupUpdateManyWithoutCompanyNestedInput
|
|
74991
75808
|
companyLocations?: CompanyLocationUpdateManyWithoutCompanyNestedInput
|
|
74992
75809
|
regularSuppliers?: RegularSupplierUpdateManyWithoutCompanyNestedInput
|
|
74993
75810
|
products?: ProductUpdateManyWithoutCompanyNestedInput
|
|
74994
75811
|
regularSuppliers2?: RegularSupplierUpdateManyWithoutSupplierNestedInput
|
|
75812
|
+
supplierNotifications?: TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput
|
|
74995
75813
|
}
|
|
74996
75814
|
|
|
74997
75815
|
export type CompaniesUncheckedUpdateWithoutUser_companiesInput = {
|
|
@@ -75012,11 +75830,13 @@ export namespace Prisma {
|
|
|
75012
75830
|
form_responses?: FormResponseUncheckedUpdateManyWithoutCompanyNestedInput
|
|
75013
75831
|
forms?: FormUncheckedUpdateManyWithoutCompanyNestedInput
|
|
75014
75832
|
tenders?: TenderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
75833
|
+
orders?: OrderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
75015
75834
|
groups?: GroupUncheckedUpdateManyWithoutCompanyNestedInput
|
|
75016
75835
|
companyLocations?: CompanyLocationUncheckedUpdateManyWithoutCompanyNestedInput
|
|
75017
75836
|
regularSuppliers?: RegularSupplierUncheckedUpdateManyWithoutCompanyNestedInput
|
|
75018
75837
|
products?: ProductUncheckedUpdateManyWithoutCompanyNestedInput
|
|
75019
75838
|
regularSuppliers2?: RegularSupplierUncheckedUpdateManyWithoutSupplierNestedInput
|
|
75839
|
+
supplierNotifications?: TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput
|
|
75020
75840
|
}
|
|
75021
75841
|
|
|
75022
75842
|
export type UserCreateWithoutSessionsInput = {
|
|
@@ -75172,6 +75992,7 @@ export namespace Prisma {
|
|
|
75172
75992
|
color?: $Enums.VehicleColor | null
|
|
75173
75993
|
chassis_number?: string | null
|
|
75174
75994
|
size?: $Enums.VehicleSize | null
|
|
75995
|
+
status?: $Enums.VehicleStatus
|
|
75175
75996
|
gps_enabled?: boolean
|
|
75176
75997
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
75177
75998
|
is_validated?: boolean | null
|
|
@@ -75198,6 +76019,7 @@ export namespace Prisma {
|
|
|
75198
76019
|
color?: $Enums.VehicleColor | null
|
|
75199
76020
|
chassis_number?: string | null
|
|
75200
76021
|
size?: $Enums.VehicleSize | null
|
|
76022
|
+
status?: $Enums.VehicleStatus
|
|
75201
76023
|
gps_enabled?: boolean
|
|
75202
76024
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
75203
76025
|
company_id?: string | null
|
|
@@ -75299,6 +76121,7 @@ export namespace Prisma {
|
|
|
75299
76121
|
color?: $Enums.VehicleColor | null
|
|
75300
76122
|
chassis_number?: string | null
|
|
75301
76123
|
size?: $Enums.VehicleSize | null
|
|
76124
|
+
status?: $Enums.VehicleStatus
|
|
75302
76125
|
gps_enabled?: boolean
|
|
75303
76126
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
75304
76127
|
is_validated?: boolean | null
|
|
@@ -75325,6 +76148,7 @@ export namespace Prisma {
|
|
|
75325
76148
|
color?: $Enums.VehicleColor | null
|
|
75326
76149
|
chassis_number?: string | null
|
|
75327
76150
|
size?: $Enums.VehicleSize | null
|
|
76151
|
+
status?: $Enums.VehicleStatus
|
|
75328
76152
|
gps_enabled?: boolean
|
|
75329
76153
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
75330
76154
|
company_id?: string | null
|
|
@@ -75461,11 +76285,13 @@ export namespace Prisma {
|
|
|
75461
76285
|
form_responses?: FormResponseCreateNestedManyWithoutCompanyInput
|
|
75462
76286
|
forms?: FormCreateNestedManyWithoutCompanyInput
|
|
75463
76287
|
tenders?: TenderCreateNestedManyWithoutCompanyInput
|
|
76288
|
+
orders?: OrderCreateNestedManyWithoutCompanyInput
|
|
75464
76289
|
groups?: GroupCreateNestedManyWithoutCompanyInput
|
|
75465
76290
|
companyLocations?: CompanyLocationCreateNestedManyWithoutCompanyInput
|
|
75466
76291
|
regularSuppliers?: RegularSupplierCreateNestedManyWithoutCompanyInput
|
|
75467
76292
|
products?: ProductCreateNestedManyWithoutCompanyInput
|
|
75468
76293
|
regularSuppliers2?: RegularSupplierCreateNestedManyWithoutSupplierInput
|
|
76294
|
+
supplierNotifications?: TenderNotificationCreateNestedManyWithoutSupplierCompanyInput
|
|
75469
76295
|
}
|
|
75470
76296
|
|
|
75471
76297
|
export type CompaniesUncheckedCreateWithoutVehiclesInput = {
|
|
@@ -75486,11 +76312,13 @@ export namespace Prisma {
|
|
|
75486
76312
|
form_responses?: FormResponseUncheckedCreateNestedManyWithoutCompanyInput
|
|
75487
76313
|
forms?: FormUncheckedCreateNestedManyWithoutCompanyInput
|
|
75488
76314
|
tenders?: TenderUncheckedCreateNestedManyWithoutCompanyInput
|
|
76315
|
+
orders?: OrderUncheckedCreateNestedManyWithoutCompanyInput
|
|
75489
76316
|
groups?: GroupUncheckedCreateNestedManyWithoutCompanyInput
|
|
75490
76317
|
companyLocations?: CompanyLocationUncheckedCreateNestedManyWithoutCompanyInput
|
|
75491
76318
|
regularSuppliers?: RegularSupplierUncheckedCreateNestedManyWithoutCompanyInput
|
|
75492
76319
|
products?: ProductUncheckedCreateNestedManyWithoutCompanyInput
|
|
75493
76320
|
regularSuppliers2?: RegularSupplierUncheckedCreateNestedManyWithoutSupplierInput
|
|
76321
|
+
supplierNotifications?: TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput
|
|
75494
76322
|
}
|
|
75495
76323
|
|
|
75496
76324
|
export type CompaniesCreateOrConnectWithoutVehiclesInput = {
|
|
@@ -75814,11 +76642,13 @@ export namespace Prisma {
|
|
|
75814
76642
|
form_responses?: FormResponseUpdateManyWithoutCompanyNestedInput
|
|
75815
76643
|
forms?: FormUpdateManyWithoutCompanyNestedInput
|
|
75816
76644
|
tenders?: TenderUpdateManyWithoutCompanyNestedInput
|
|
76645
|
+
orders?: OrderUpdateManyWithoutCompanyNestedInput
|
|
75817
76646
|
groups?: GroupUpdateManyWithoutCompanyNestedInput
|
|
75818
76647
|
companyLocations?: CompanyLocationUpdateManyWithoutCompanyNestedInput
|
|
75819
76648
|
regularSuppliers?: RegularSupplierUpdateManyWithoutCompanyNestedInput
|
|
75820
76649
|
products?: ProductUpdateManyWithoutCompanyNestedInput
|
|
75821
76650
|
regularSuppliers2?: RegularSupplierUpdateManyWithoutSupplierNestedInput
|
|
76651
|
+
supplierNotifications?: TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput
|
|
75822
76652
|
}
|
|
75823
76653
|
|
|
75824
76654
|
export type CompaniesUncheckedUpdateWithoutVehiclesInput = {
|
|
@@ -75839,11 +76669,13 @@ export namespace Prisma {
|
|
|
75839
76669
|
form_responses?: FormResponseUncheckedUpdateManyWithoutCompanyNestedInput
|
|
75840
76670
|
forms?: FormUncheckedUpdateManyWithoutCompanyNestedInput
|
|
75841
76671
|
tenders?: TenderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
76672
|
+
orders?: OrderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
75842
76673
|
groups?: GroupUncheckedUpdateManyWithoutCompanyNestedInput
|
|
75843
76674
|
companyLocations?: CompanyLocationUncheckedUpdateManyWithoutCompanyNestedInput
|
|
75844
76675
|
regularSuppliers?: RegularSupplierUncheckedUpdateManyWithoutCompanyNestedInput
|
|
75845
76676
|
products?: ProductUncheckedUpdateManyWithoutCompanyNestedInput
|
|
75846
76677
|
regularSuppliers2?: RegularSupplierUncheckedUpdateManyWithoutSupplierNestedInput
|
|
76678
|
+
supplierNotifications?: TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput
|
|
75847
76679
|
}
|
|
75848
76680
|
|
|
75849
76681
|
export type VehicleTypeUpsertWithoutVehiclesInput = {
|
|
@@ -75967,11 +76799,13 @@ export namespace Prisma {
|
|
|
75967
76799
|
export type OrderCreateWithoutRoutesInput = {
|
|
75968
76800
|
id?: string
|
|
75969
76801
|
reference?: string | null
|
|
76802
|
+
created_by?: string | null
|
|
75970
76803
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
75971
76804
|
status?: $Enums.RouteStatus
|
|
75972
76805
|
created_at?: Date | string
|
|
75973
76806
|
updated_at?: Date | string
|
|
75974
76807
|
shipper?: ClientCreateNestedOneWithoutOrders_as_shipperInput
|
|
76808
|
+
company?: CompaniesCreateNestedOneWithoutOrdersInput
|
|
75975
76809
|
handling_units?: HandlingUnitCreateNestedManyWithoutOrderInput
|
|
75976
76810
|
tenders?: TenderCreateNestedManyWithoutOrderInput
|
|
75977
76811
|
}
|
|
@@ -75980,6 +76814,8 @@ export namespace Prisma {
|
|
|
75980
76814
|
id?: string
|
|
75981
76815
|
reference?: string | null
|
|
75982
76816
|
shipper_id?: string | null
|
|
76817
|
+
company_id?: string | null
|
|
76818
|
+
created_by?: string | null
|
|
75983
76819
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
75984
76820
|
status?: $Enums.RouteStatus
|
|
75985
76821
|
created_at?: Date | string
|
|
@@ -76057,6 +76893,7 @@ export namespace Prisma {
|
|
|
76057
76893
|
color?: $Enums.VehicleColor | null
|
|
76058
76894
|
chassis_number?: string | null
|
|
76059
76895
|
size?: $Enums.VehicleSize | null
|
|
76896
|
+
status?: $Enums.VehicleStatus
|
|
76060
76897
|
gps_enabled?: boolean
|
|
76061
76898
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
76062
76899
|
is_validated?: boolean | null
|
|
@@ -76084,6 +76921,7 @@ export namespace Prisma {
|
|
|
76084
76921
|
color?: $Enums.VehicleColor | null
|
|
76085
76922
|
chassis_number?: string | null
|
|
76086
76923
|
size?: $Enums.VehicleSize | null
|
|
76924
|
+
status?: $Enums.VehicleStatus
|
|
76087
76925
|
gps_enabled?: boolean
|
|
76088
76926
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
76089
76927
|
company_id?: string | null
|
|
@@ -76189,11 +77027,13 @@ export namespace Prisma {
|
|
|
76189
77027
|
export type OrderUpdateWithoutRoutesInput = {
|
|
76190
77028
|
id?: StringFieldUpdateOperationsInput | string
|
|
76191
77029
|
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77030
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76192
77031
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
76193
77032
|
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
76194
77033
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76195
77034
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76196
77035
|
shipper?: ClientUpdateOneWithoutOrders_as_shipperNestedInput
|
|
77036
|
+
company?: CompaniesUpdateOneWithoutOrdersNestedInput
|
|
76197
77037
|
handling_units?: HandlingUnitUpdateManyWithoutOrderNestedInput
|
|
76198
77038
|
tenders?: TenderUpdateManyWithoutOrderNestedInput
|
|
76199
77039
|
}
|
|
@@ -76202,6 +77042,8 @@ export namespace Prisma {
|
|
|
76202
77042
|
id?: StringFieldUpdateOperationsInput | string
|
|
76203
77043
|
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76204
77044
|
shipper_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77045
|
+
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77046
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76205
77047
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
76206
77048
|
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
76207
77049
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -76291,6 +77133,7 @@ export namespace Prisma {
|
|
|
76291
77133
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
76292
77134
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76293
77135
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
77136
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
76294
77137
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
76295
77138
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
76296
77139
|
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -76318,6 +77161,7 @@ export namespace Prisma {
|
|
|
76318
77161
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
76319
77162
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76320
77163
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
77164
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
76321
77165
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
76322
77166
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
76323
77167
|
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -77251,11 +78095,13 @@ export namespace Prisma {
|
|
|
77251
78095
|
form_responses?: FormResponseCreateNestedManyWithoutCompanyInput
|
|
77252
78096
|
forms?: FormCreateNestedManyWithoutCompanyInput
|
|
77253
78097
|
tenders?: TenderCreateNestedManyWithoutCompanyInput
|
|
78098
|
+
orders?: OrderCreateNestedManyWithoutCompanyInput
|
|
77254
78099
|
groups?: GroupCreateNestedManyWithoutCompanyInput
|
|
77255
78100
|
companyLocations?: CompanyLocationCreateNestedManyWithoutCompanyInput
|
|
77256
78101
|
regularSuppliers?: RegularSupplierCreateNestedManyWithoutCompanyInput
|
|
77257
78102
|
products?: ProductCreateNestedManyWithoutCompanyInput
|
|
77258
78103
|
regularSuppliers2?: RegularSupplierCreateNestedManyWithoutSupplierInput
|
|
78104
|
+
supplierNotifications?: TenderNotificationCreateNestedManyWithoutSupplierCompanyInput
|
|
77259
78105
|
}
|
|
77260
78106
|
|
|
77261
78107
|
export type CompaniesUncheckedCreateWithoutEquipmentsInput = {
|
|
@@ -77276,11 +78122,13 @@ export namespace Prisma {
|
|
|
77276
78122
|
form_responses?: FormResponseUncheckedCreateNestedManyWithoutCompanyInput
|
|
77277
78123
|
forms?: FormUncheckedCreateNestedManyWithoutCompanyInput
|
|
77278
78124
|
tenders?: TenderUncheckedCreateNestedManyWithoutCompanyInput
|
|
78125
|
+
orders?: OrderUncheckedCreateNestedManyWithoutCompanyInput
|
|
77279
78126
|
groups?: GroupUncheckedCreateNestedManyWithoutCompanyInput
|
|
77280
78127
|
companyLocations?: CompanyLocationUncheckedCreateNestedManyWithoutCompanyInput
|
|
77281
78128
|
regularSuppliers?: RegularSupplierUncheckedCreateNestedManyWithoutCompanyInput
|
|
77282
78129
|
products?: ProductUncheckedCreateNestedManyWithoutCompanyInput
|
|
77283
78130
|
regularSuppliers2?: RegularSupplierUncheckedCreateNestedManyWithoutSupplierInput
|
|
78131
|
+
supplierNotifications?: TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput
|
|
77284
78132
|
}
|
|
77285
78133
|
|
|
77286
78134
|
export type CompaniesCreateOrConnectWithoutEquipmentsInput = {
|
|
@@ -77297,6 +78145,7 @@ export namespace Prisma {
|
|
|
77297
78145
|
color?: $Enums.VehicleColor | null
|
|
77298
78146
|
chassis_number?: string | null
|
|
77299
78147
|
size?: $Enums.VehicleSize | null
|
|
78148
|
+
status?: $Enums.VehicleStatus
|
|
77300
78149
|
gps_enabled?: boolean
|
|
77301
78150
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
77302
78151
|
is_validated?: boolean | null
|
|
@@ -77324,6 +78173,7 @@ export namespace Prisma {
|
|
|
77324
78173
|
color?: $Enums.VehicleColor | null
|
|
77325
78174
|
chassis_number?: string | null
|
|
77326
78175
|
size?: $Enums.VehicleSize | null
|
|
78176
|
+
status?: $Enums.VehicleStatus
|
|
77327
78177
|
gps_enabled?: boolean
|
|
77328
78178
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
77329
78179
|
company_id?: string | null
|
|
@@ -77478,11 +78328,13 @@ export namespace Prisma {
|
|
|
77478
78328
|
form_responses?: FormResponseUpdateManyWithoutCompanyNestedInput
|
|
77479
78329
|
forms?: FormUpdateManyWithoutCompanyNestedInput
|
|
77480
78330
|
tenders?: TenderUpdateManyWithoutCompanyNestedInput
|
|
78331
|
+
orders?: OrderUpdateManyWithoutCompanyNestedInput
|
|
77481
78332
|
groups?: GroupUpdateManyWithoutCompanyNestedInput
|
|
77482
78333
|
companyLocations?: CompanyLocationUpdateManyWithoutCompanyNestedInput
|
|
77483
78334
|
regularSuppliers?: RegularSupplierUpdateManyWithoutCompanyNestedInput
|
|
77484
78335
|
products?: ProductUpdateManyWithoutCompanyNestedInput
|
|
77485
78336
|
regularSuppliers2?: RegularSupplierUpdateManyWithoutSupplierNestedInput
|
|
78337
|
+
supplierNotifications?: TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput
|
|
77486
78338
|
}
|
|
77487
78339
|
|
|
77488
78340
|
export type CompaniesUncheckedUpdateWithoutEquipmentsInput = {
|
|
@@ -77503,11 +78355,13 @@ export namespace Prisma {
|
|
|
77503
78355
|
form_responses?: FormResponseUncheckedUpdateManyWithoutCompanyNestedInput
|
|
77504
78356
|
forms?: FormUncheckedUpdateManyWithoutCompanyNestedInput
|
|
77505
78357
|
tenders?: TenderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
78358
|
+
orders?: OrderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
77506
78359
|
groups?: GroupUncheckedUpdateManyWithoutCompanyNestedInput
|
|
77507
78360
|
companyLocations?: CompanyLocationUncheckedUpdateManyWithoutCompanyNestedInput
|
|
77508
78361
|
regularSuppliers?: RegularSupplierUncheckedUpdateManyWithoutCompanyNestedInput
|
|
77509
78362
|
products?: ProductUncheckedUpdateManyWithoutCompanyNestedInput
|
|
77510
78363
|
regularSuppliers2?: RegularSupplierUncheckedUpdateManyWithoutSupplierNestedInput
|
|
78364
|
+
supplierNotifications?: TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput
|
|
77511
78365
|
}
|
|
77512
78366
|
|
|
77513
78367
|
export type VehicleUpsertWithoutEquipmentsInput = {
|
|
@@ -77530,6 +78384,7 @@ export namespace Prisma {
|
|
|
77530
78384
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
77531
78385
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77532
78386
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
78387
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
77533
78388
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
77534
78389
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
77535
78390
|
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -77557,6 +78412,7 @@ export namespace Prisma {
|
|
|
77557
78412
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
77558
78413
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77559
78414
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
78415
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
77560
78416
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
77561
78417
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
77562
78418
|
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -77594,6 +78450,7 @@ export namespace Prisma {
|
|
|
77594
78450
|
color?: $Enums.VehicleColor | null
|
|
77595
78451
|
chassis_number?: string | null
|
|
77596
78452
|
size?: $Enums.VehicleSize | null
|
|
78453
|
+
status?: $Enums.VehicleStatus
|
|
77597
78454
|
gps_enabled?: boolean
|
|
77598
78455
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
77599
78456
|
is_validated?: boolean | null
|
|
@@ -77621,6 +78478,7 @@ export namespace Prisma {
|
|
|
77621
78478
|
color?: $Enums.VehicleColor | null
|
|
77622
78479
|
chassis_number?: string | null
|
|
77623
78480
|
size?: $Enums.VehicleSize | null
|
|
78481
|
+
status?: $Enums.VehicleStatus
|
|
77624
78482
|
gps_enabled?: boolean
|
|
77625
78483
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
77626
78484
|
company_id?: string | null
|
|
@@ -77717,6 +78575,7 @@ export namespace Prisma {
|
|
|
77717
78575
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
77718
78576
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77719
78577
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
78578
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
77720
78579
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
77721
78580
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
77722
78581
|
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -77744,6 +78603,7 @@ export namespace Prisma {
|
|
|
77744
78603
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
77745
78604
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77746
78605
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
78606
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
77747
78607
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
77748
78608
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
77749
78609
|
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -77955,11 +78815,13 @@ export namespace Prisma {
|
|
|
77955
78815
|
form_responses?: FormResponseCreateNestedManyWithoutCompanyInput
|
|
77956
78816
|
forms?: FormCreateNestedManyWithoutCompanyInput
|
|
77957
78817
|
tenders?: TenderCreateNestedManyWithoutCompanyInput
|
|
78818
|
+
orders?: OrderCreateNestedManyWithoutCompanyInput
|
|
77958
78819
|
groups?: GroupCreateNestedManyWithoutCompanyInput
|
|
77959
78820
|
companyLocations?: CompanyLocationCreateNestedManyWithoutCompanyInput
|
|
77960
78821
|
regularSuppliers?: RegularSupplierCreateNestedManyWithoutCompanyInput
|
|
77961
78822
|
products?: ProductCreateNestedManyWithoutCompanyInput
|
|
77962
78823
|
regularSuppliers2?: RegularSupplierCreateNestedManyWithoutSupplierInput
|
|
78824
|
+
supplierNotifications?: TenderNotificationCreateNestedManyWithoutSupplierCompanyInput
|
|
77963
78825
|
}
|
|
77964
78826
|
|
|
77965
78827
|
export type CompaniesUncheckedCreateWithoutForm_templatesInput = {
|
|
@@ -77980,11 +78842,13 @@ export namespace Prisma {
|
|
|
77980
78842
|
form_responses?: FormResponseUncheckedCreateNestedManyWithoutCompanyInput
|
|
77981
78843
|
forms?: FormUncheckedCreateNestedManyWithoutCompanyInput
|
|
77982
78844
|
tenders?: TenderUncheckedCreateNestedManyWithoutCompanyInput
|
|
78845
|
+
orders?: OrderUncheckedCreateNestedManyWithoutCompanyInput
|
|
77983
78846
|
groups?: GroupUncheckedCreateNestedManyWithoutCompanyInput
|
|
77984
78847
|
companyLocations?: CompanyLocationUncheckedCreateNestedManyWithoutCompanyInput
|
|
77985
78848
|
regularSuppliers?: RegularSupplierUncheckedCreateNestedManyWithoutCompanyInput
|
|
77986
78849
|
products?: ProductUncheckedCreateNestedManyWithoutCompanyInput
|
|
77987
78850
|
regularSuppliers2?: RegularSupplierUncheckedCreateNestedManyWithoutSupplierInput
|
|
78851
|
+
supplierNotifications?: TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput
|
|
77988
78852
|
}
|
|
77989
78853
|
|
|
77990
78854
|
export type CompaniesCreateOrConnectWithoutForm_templatesInput = {
|
|
@@ -78200,11 +79064,13 @@ export namespace Prisma {
|
|
|
78200
79064
|
form_responses?: FormResponseUpdateManyWithoutCompanyNestedInput
|
|
78201
79065
|
forms?: FormUpdateManyWithoutCompanyNestedInput
|
|
78202
79066
|
tenders?: TenderUpdateManyWithoutCompanyNestedInput
|
|
79067
|
+
orders?: OrderUpdateManyWithoutCompanyNestedInput
|
|
78203
79068
|
groups?: GroupUpdateManyWithoutCompanyNestedInput
|
|
78204
79069
|
companyLocations?: CompanyLocationUpdateManyWithoutCompanyNestedInput
|
|
78205
79070
|
regularSuppliers?: RegularSupplierUpdateManyWithoutCompanyNestedInput
|
|
78206
79071
|
products?: ProductUpdateManyWithoutCompanyNestedInput
|
|
78207
79072
|
regularSuppliers2?: RegularSupplierUpdateManyWithoutSupplierNestedInput
|
|
79073
|
+
supplierNotifications?: TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput
|
|
78208
79074
|
}
|
|
78209
79075
|
|
|
78210
79076
|
export type CompaniesUncheckedUpdateWithoutForm_templatesInput = {
|
|
@@ -78225,11 +79091,13 @@ export namespace Prisma {
|
|
|
78225
79091
|
form_responses?: FormResponseUncheckedUpdateManyWithoutCompanyNestedInput
|
|
78226
79092
|
forms?: FormUncheckedUpdateManyWithoutCompanyNestedInput
|
|
78227
79093
|
tenders?: TenderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79094
|
+
orders?: OrderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
78228
79095
|
groups?: GroupUncheckedUpdateManyWithoutCompanyNestedInput
|
|
78229
79096
|
companyLocations?: CompanyLocationUncheckedUpdateManyWithoutCompanyNestedInput
|
|
78230
79097
|
regularSuppliers?: RegularSupplierUncheckedUpdateManyWithoutCompanyNestedInput
|
|
78231
79098
|
products?: ProductUncheckedUpdateManyWithoutCompanyNestedInput
|
|
78232
79099
|
regularSuppliers2?: RegularSupplierUncheckedUpdateManyWithoutSupplierNestedInput
|
|
79100
|
+
supplierNotifications?: TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput
|
|
78233
79101
|
}
|
|
78234
79102
|
|
|
78235
79103
|
export type UserUpsertWithoutForm_templates_createdInput = {
|
|
@@ -78535,11 +79403,13 @@ export namespace Prisma {
|
|
|
78535
79403
|
form_templates?: FormTemplateCreateNestedManyWithoutCompanyInput
|
|
78536
79404
|
forms?: FormCreateNestedManyWithoutCompanyInput
|
|
78537
79405
|
tenders?: TenderCreateNestedManyWithoutCompanyInput
|
|
79406
|
+
orders?: OrderCreateNestedManyWithoutCompanyInput
|
|
78538
79407
|
groups?: GroupCreateNestedManyWithoutCompanyInput
|
|
78539
79408
|
companyLocations?: CompanyLocationCreateNestedManyWithoutCompanyInput
|
|
78540
79409
|
regularSuppliers?: RegularSupplierCreateNestedManyWithoutCompanyInput
|
|
78541
79410
|
products?: ProductCreateNestedManyWithoutCompanyInput
|
|
78542
79411
|
regularSuppliers2?: RegularSupplierCreateNestedManyWithoutSupplierInput
|
|
79412
|
+
supplierNotifications?: TenderNotificationCreateNestedManyWithoutSupplierCompanyInput
|
|
78543
79413
|
}
|
|
78544
79414
|
|
|
78545
79415
|
export type CompaniesUncheckedCreateWithoutForm_responsesInput = {
|
|
@@ -78560,11 +79430,13 @@ export namespace Prisma {
|
|
|
78560
79430
|
form_templates?: FormTemplateUncheckedCreateNestedManyWithoutCompanyInput
|
|
78561
79431
|
forms?: FormUncheckedCreateNestedManyWithoutCompanyInput
|
|
78562
79432
|
tenders?: TenderUncheckedCreateNestedManyWithoutCompanyInput
|
|
79433
|
+
orders?: OrderUncheckedCreateNestedManyWithoutCompanyInput
|
|
78563
79434
|
groups?: GroupUncheckedCreateNestedManyWithoutCompanyInput
|
|
78564
79435
|
companyLocations?: CompanyLocationUncheckedCreateNestedManyWithoutCompanyInput
|
|
78565
79436
|
regularSuppliers?: RegularSupplierUncheckedCreateNestedManyWithoutCompanyInput
|
|
78566
79437
|
products?: ProductUncheckedCreateNestedManyWithoutCompanyInput
|
|
78567
79438
|
regularSuppliers2?: RegularSupplierUncheckedCreateNestedManyWithoutSupplierInput
|
|
79439
|
+
supplierNotifications?: TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput
|
|
78568
79440
|
}
|
|
78569
79441
|
|
|
78570
79442
|
export type CompaniesCreateOrConnectWithoutForm_responsesInput = {
|
|
@@ -78744,11 +79616,13 @@ export namespace Prisma {
|
|
|
78744
79616
|
form_templates?: FormTemplateUpdateManyWithoutCompanyNestedInput
|
|
78745
79617
|
forms?: FormUpdateManyWithoutCompanyNestedInput
|
|
78746
79618
|
tenders?: TenderUpdateManyWithoutCompanyNestedInput
|
|
79619
|
+
orders?: OrderUpdateManyWithoutCompanyNestedInput
|
|
78747
79620
|
groups?: GroupUpdateManyWithoutCompanyNestedInput
|
|
78748
79621
|
companyLocations?: CompanyLocationUpdateManyWithoutCompanyNestedInput
|
|
78749
79622
|
regularSuppliers?: RegularSupplierUpdateManyWithoutCompanyNestedInput
|
|
78750
79623
|
products?: ProductUpdateManyWithoutCompanyNestedInput
|
|
78751
79624
|
regularSuppliers2?: RegularSupplierUpdateManyWithoutSupplierNestedInput
|
|
79625
|
+
supplierNotifications?: TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput
|
|
78752
79626
|
}
|
|
78753
79627
|
|
|
78754
79628
|
export type CompaniesUncheckedUpdateWithoutForm_responsesInput = {
|
|
@@ -78769,11 +79643,13 @@ export namespace Prisma {
|
|
|
78769
79643
|
form_templates?: FormTemplateUncheckedUpdateManyWithoutCompanyNestedInput
|
|
78770
79644
|
forms?: FormUncheckedUpdateManyWithoutCompanyNestedInput
|
|
78771
79645
|
tenders?: TenderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79646
|
+
orders?: OrderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
78772
79647
|
groups?: GroupUncheckedUpdateManyWithoutCompanyNestedInput
|
|
78773
79648
|
companyLocations?: CompanyLocationUncheckedUpdateManyWithoutCompanyNestedInput
|
|
78774
79649
|
regularSuppliers?: RegularSupplierUncheckedUpdateManyWithoutCompanyNestedInput
|
|
78775
79650
|
products?: ProductUncheckedUpdateManyWithoutCompanyNestedInput
|
|
78776
79651
|
regularSuppliers2?: RegularSupplierUncheckedUpdateManyWithoutSupplierNestedInput
|
|
79652
|
+
supplierNotifications?: TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput
|
|
78777
79653
|
}
|
|
78778
79654
|
|
|
78779
79655
|
export type UserUpsertWithoutForm_responsesInput = {
|
|
@@ -78892,11 +79768,13 @@ export namespace Prisma {
|
|
|
78892
79768
|
form_templates?: FormTemplateCreateNestedManyWithoutCompanyInput
|
|
78893
79769
|
form_responses?: FormResponseCreateNestedManyWithoutCompanyInput
|
|
78894
79770
|
tenders?: TenderCreateNestedManyWithoutCompanyInput
|
|
79771
|
+
orders?: OrderCreateNestedManyWithoutCompanyInput
|
|
78895
79772
|
groups?: GroupCreateNestedManyWithoutCompanyInput
|
|
78896
79773
|
companyLocations?: CompanyLocationCreateNestedManyWithoutCompanyInput
|
|
78897
79774
|
regularSuppliers?: RegularSupplierCreateNestedManyWithoutCompanyInput
|
|
78898
79775
|
products?: ProductCreateNestedManyWithoutCompanyInput
|
|
78899
79776
|
regularSuppliers2?: RegularSupplierCreateNestedManyWithoutSupplierInput
|
|
79777
|
+
supplierNotifications?: TenderNotificationCreateNestedManyWithoutSupplierCompanyInput
|
|
78900
79778
|
}
|
|
78901
79779
|
|
|
78902
79780
|
export type CompaniesUncheckedCreateWithoutFormsInput = {
|
|
@@ -78917,11 +79795,13 @@ export namespace Prisma {
|
|
|
78917
79795
|
form_templates?: FormTemplateUncheckedCreateNestedManyWithoutCompanyInput
|
|
78918
79796
|
form_responses?: FormResponseUncheckedCreateNestedManyWithoutCompanyInput
|
|
78919
79797
|
tenders?: TenderUncheckedCreateNestedManyWithoutCompanyInput
|
|
79798
|
+
orders?: OrderUncheckedCreateNestedManyWithoutCompanyInput
|
|
78920
79799
|
groups?: GroupUncheckedCreateNestedManyWithoutCompanyInput
|
|
78921
79800
|
companyLocations?: CompanyLocationUncheckedCreateNestedManyWithoutCompanyInput
|
|
78922
79801
|
regularSuppliers?: RegularSupplierUncheckedCreateNestedManyWithoutCompanyInput
|
|
78923
79802
|
products?: ProductUncheckedCreateNestedManyWithoutCompanyInput
|
|
78924
79803
|
regularSuppliers2?: RegularSupplierUncheckedCreateNestedManyWithoutSupplierInput
|
|
79804
|
+
supplierNotifications?: TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput
|
|
78925
79805
|
}
|
|
78926
79806
|
|
|
78927
79807
|
export type CompaniesCreateOrConnectWithoutFormsInput = {
|
|
@@ -79138,11 +80018,13 @@ export namespace Prisma {
|
|
|
79138
80018
|
form_templates?: FormTemplateUpdateManyWithoutCompanyNestedInput
|
|
79139
80019
|
form_responses?: FormResponseUpdateManyWithoutCompanyNestedInput
|
|
79140
80020
|
tenders?: TenderUpdateManyWithoutCompanyNestedInput
|
|
80021
|
+
orders?: OrderUpdateManyWithoutCompanyNestedInput
|
|
79141
80022
|
groups?: GroupUpdateManyWithoutCompanyNestedInput
|
|
79142
80023
|
companyLocations?: CompanyLocationUpdateManyWithoutCompanyNestedInput
|
|
79143
80024
|
regularSuppliers?: RegularSupplierUpdateManyWithoutCompanyNestedInput
|
|
79144
80025
|
products?: ProductUpdateManyWithoutCompanyNestedInput
|
|
79145
80026
|
regularSuppliers2?: RegularSupplierUpdateManyWithoutSupplierNestedInput
|
|
80027
|
+
supplierNotifications?: TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput
|
|
79146
80028
|
}
|
|
79147
80029
|
|
|
79148
80030
|
export type CompaniesUncheckedUpdateWithoutFormsInput = {
|
|
@@ -79163,11 +80045,13 @@ export namespace Prisma {
|
|
|
79163
80045
|
form_templates?: FormTemplateUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79164
80046
|
form_responses?: FormResponseUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79165
80047
|
tenders?: TenderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
80048
|
+
orders?: OrderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79166
80049
|
groups?: GroupUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79167
80050
|
companyLocations?: CompanyLocationUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79168
80051
|
regularSuppliers?: RegularSupplierUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79169
80052
|
products?: ProductUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79170
80053
|
regularSuppliers2?: RegularSupplierUncheckedUpdateManyWithoutSupplierNestedInput
|
|
80054
|
+
supplierNotifications?: TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput
|
|
79171
80055
|
}
|
|
79172
80056
|
|
|
79173
80057
|
export type UserUpsertWithoutForms_createdInput = {
|
|
@@ -79377,6 +80261,7 @@ export namespace Prisma {
|
|
|
79377
80261
|
color?: $Enums.VehicleColor | null
|
|
79378
80262
|
chassis_number?: string | null
|
|
79379
80263
|
size?: $Enums.VehicleSize | null
|
|
80264
|
+
status?: $Enums.VehicleStatus
|
|
79380
80265
|
gps_enabled?: boolean
|
|
79381
80266
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
79382
80267
|
is_validated?: boolean | null
|
|
@@ -79403,6 +80288,7 @@ export namespace Prisma {
|
|
|
79403
80288
|
color?: $Enums.VehicleColor | null
|
|
79404
80289
|
chassis_number?: string | null
|
|
79405
80290
|
size?: $Enums.VehicleSize | null
|
|
80291
|
+
status?: $Enums.VehicleStatus
|
|
79406
80292
|
gps_enabled?: boolean
|
|
79407
80293
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
79408
80294
|
company_id?: string | null
|
|
@@ -79660,11 +80546,13 @@ export namespace Prisma {
|
|
|
79660
80546
|
form_templates?: FormTemplateCreateNestedManyWithoutCompanyInput
|
|
79661
80547
|
form_responses?: FormResponseCreateNestedManyWithoutCompanyInput
|
|
79662
80548
|
forms?: FormCreateNestedManyWithoutCompanyInput
|
|
80549
|
+
orders?: OrderCreateNestedManyWithoutCompanyInput
|
|
79663
80550
|
groups?: GroupCreateNestedManyWithoutCompanyInput
|
|
79664
80551
|
companyLocations?: CompanyLocationCreateNestedManyWithoutCompanyInput
|
|
79665
80552
|
regularSuppliers?: RegularSupplierCreateNestedManyWithoutCompanyInput
|
|
79666
80553
|
products?: ProductCreateNestedManyWithoutCompanyInput
|
|
79667
80554
|
regularSuppliers2?: RegularSupplierCreateNestedManyWithoutSupplierInput
|
|
80555
|
+
supplierNotifications?: TenderNotificationCreateNestedManyWithoutSupplierCompanyInput
|
|
79668
80556
|
}
|
|
79669
80557
|
|
|
79670
80558
|
export type CompaniesUncheckedCreateWithoutTendersInput = {
|
|
@@ -79685,11 +80573,13 @@ export namespace Prisma {
|
|
|
79685
80573
|
form_templates?: FormTemplateUncheckedCreateNestedManyWithoutCompanyInput
|
|
79686
80574
|
form_responses?: FormResponseUncheckedCreateNestedManyWithoutCompanyInput
|
|
79687
80575
|
forms?: FormUncheckedCreateNestedManyWithoutCompanyInput
|
|
80576
|
+
orders?: OrderUncheckedCreateNestedManyWithoutCompanyInput
|
|
79688
80577
|
groups?: GroupUncheckedCreateNestedManyWithoutCompanyInput
|
|
79689
80578
|
companyLocations?: CompanyLocationUncheckedCreateNestedManyWithoutCompanyInput
|
|
79690
80579
|
regularSuppliers?: RegularSupplierUncheckedCreateNestedManyWithoutCompanyInput
|
|
79691
80580
|
products?: ProductUncheckedCreateNestedManyWithoutCompanyInput
|
|
79692
80581
|
regularSuppliers2?: RegularSupplierUncheckedCreateNestedManyWithoutSupplierInput
|
|
80582
|
+
supplierNotifications?: TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput
|
|
79693
80583
|
}
|
|
79694
80584
|
|
|
79695
80585
|
export type CompaniesCreateOrConnectWithoutTendersInput = {
|
|
@@ -79700,11 +80590,13 @@ export namespace Prisma {
|
|
|
79700
80590
|
export type OrderCreateWithoutTendersInput = {
|
|
79701
80591
|
id?: string
|
|
79702
80592
|
reference?: string | null
|
|
80593
|
+
created_by?: string | null
|
|
79703
80594
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
79704
80595
|
status?: $Enums.RouteStatus
|
|
79705
80596
|
created_at?: Date | string
|
|
79706
80597
|
updated_at?: Date | string
|
|
79707
80598
|
shipper?: ClientCreateNestedOneWithoutOrders_as_shipperInput
|
|
80599
|
+
company?: CompaniesCreateNestedOneWithoutOrdersInput
|
|
79708
80600
|
handling_units?: HandlingUnitCreateNestedManyWithoutOrderInput
|
|
79709
80601
|
routes?: RouteCreateNestedManyWithoutOrderInput
|
|
79710
80602
|
}
|
|
@@ -79713,6 +80605,8 @@ export namespace Prisma {
|
|
|
79713
80605
|
id?: string
|
|
79714
80606
|
reference?: string | null
|
|
79715
80607
|
shipper_id?: string | null
|
|
80608
|
+
company_id?: string | null
|
|
80609
|
+
created_by?: string | null
|
|
79716
80610
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
79717
80611
|
status?: $Enums.RouteStatus
|
|
79718
80612
|
created_at?: Date | string
|
|
@@ -79783,6 +80677,7 @@ export namespace Prisma {
|
|
|
79783
80677
|
export type TenderChatCreateWithoutTenderInput = {
|
|
79784
80678
|
id?: string
|
|
79785
80679
|
message: string
|
|
80680
|
+
read_at?: Date | string | null
|
|
79786
80681
|
created_at?: Date | string
|
|
79787
80682
|
user_sends: UserCreateNestedOneWithoutTenderChatsInput
|
|
79788
80683
|
user_receives: UserCreateNestedOneWithoutTenderChats2Input
|
|
@@ -79793,6 +80688,7 @@ export namespace Prisma {
|
|
|
79793
80688
|
user_sends_id: string
|
|
79794
80689
|
user_receives_id: string
|
|
79795
80690
|
message: string
|
|
80691
|
+
read_at?: Date | string | null
|
|
79796
80692
|
created_at?: Date | string
|
|
79797
80693
|
}
|
|
79798
80694
|
|
|
@@ -79815,12 +80711,14 @@ export namespace Prisma {
|
|
|
79815
80711
|
created_at?: Date | string
|
|
79816
80712
|
user?: UserCreateNestedOneWithoutTenderNotificationsInput
|
|
79817
80713
|
group?: GroupCreateNestedOneWithoutTenderNotificationsInput
|
|
80714
|
+
supplierCompany?: CompaniesCreateNestedOneWithoutSupplierNotificationsInput
|
|
79818
80715
|
}
|
|
79819
80716
|
|
|
79820
80717
|
export type TenderNotificationUncheckedCreateWithoutTenderInput = {
|
|
79821
80718
|
id?: string
|
|
79822
80719
|
user_id?: string | null
|
|
79823
80720
|
group_id?: string | null
|
|
80721
|
+
supplier_company_id?: string | null
|
|
79824
80722
|
whatsapp?: boolean
|
|
79825
80723
|
email?: boolean
|
|
79826
80724
|
push?: boolean
|
|
@@ -79952,11 +80850,13 @@ export namespace Prisma {
|
|
|
79952
80850
|
form_templates?: FormTemplateUpdateManyWithoutCompanyNestedInput
|
|
79953
80851
|
form_responses?: FormResponseUpdateManyWithoutCompanyNestedInput
|
|
79954
80852
|
forms?: FormUpdateManyWithoutCompanyNestedInput
|
|
80853
|
+
orders?: OrderUpdateManyWithoutCompanyNestedInput
|
|
79955
80854
|
groups?: GroupUpdateManyWithoutCompanyNestedInput
|
|
79956
80855
|
companyLocations?: CompanyLocationUpdateManyWithoutCompanyNestedInput
|
|
79957
80856
|
regularSuppliers?: RegularSupplierUpdateManyWithoutCompanyNestedInput
|
|
79958
80857
|
products?: ProductUpdateManyWithoutCompanyNestedInput
|
|
79959
80858
|
regularSuppliers2?: RegularSupplierUpdateManyWithoutSupplierNestedInput
|
|
80859
|
+
supplierNotifications?: TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput
|
|
79960
80860
|
}
|
|
79961
80861
|
|
|
79962
80862
|
export type CompaniesUncheckedUpdateWithoutTendersInput = {
|
|
@@ -79977,11 +80877,13 @@ export namespace Prisma {
|
|
|
79977
80877
|
form_templates?: FormTemplateUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79978
80878
|
form_responses?: FormResponseUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79979
80879
|
forms?: FormUncheckedUpdateManyWithoutCompanyNestedInput
|
|
80880
|
+
orders?: OrderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79980
80881
|
groups?: GroupUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79981
80882
|
companyLocations?: CompanyLocationUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79982
80883
|
regularSuppliers?: RegularSupplierUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79983
80884
|
products?: ProductUncheckedUpdateManyWithoutCompanyNestedInput
|
|
79984
80885
|
regularSuppliers2?: RegularSupplierUncheckedUpdateManyWithoutSupplierNestedInput
|
|
80886
|
+
supplierNotifications?: TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput
|
|
79985
80887
|
}
|
|
79986
80888
|
|
|
79987
80889
|
export type OrderUpsertWithoutTendersInput = {
|
|
@@ -79998,11 +80900,13 @@ export namespace Prisma {
|
|
|
79998
80900
|
export type OrderUpdateWithoutTendersInput = {
|
|
79999
80901
|
id?: StringFieldUpdateOperationsInput | string
|
|
80000
80902
|
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80903
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80001
80904
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
80002
80905
|
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
80003
80906
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
80004
80907
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
80005
80908
|
shipper?: ClientUpdateOneWithoutOrders_as_shipperNestedInput
|
|
80909
|
+
company?: CompaniesUpdateOneWithoutOrdersNestedInput
|
|
80006
80910
|
handling_units?: HandlingUnitUpdateManyWithoutOrderNestedInput
|
|
80007
80911
|
routes?: RouteUpdateManyWithoutOrderNestedInput
|
|
80008
80912
|
}
|
|
@@ -80011,6 +80915,8 @@ export namespace Prisma {
|
|
|
80011
80915
|
id?: StringFieldUpdateOperationsInput | string
|
|
80012
80916
|
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80013
80917
|
shipper_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80918
|
+
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80919
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80014
80920
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
80015
80921
|
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
80016
80922
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -80096,6 +81002,7 @@ export namespace Prisma {
|
|
|
80096
81002
|
|
|
80097
81003
|
export type TenderCreateWithoutTenderVehiclesInput = {
|
|
80098
81004
|
id?: string
|
|
81005
|
+
code?: string | null
|
|
80099
81006
|
title: string
|
|
80100
81007
|
description?: string | null
|
|
80101
81008
|
status?: $Enums.TenderStatus
|
|
@@ -80118,6 +81025,7 @@ export namespace Prisma {
|
|
|
80118
81025
|
|
|
80119
81026
|
export type TenderUncheckedCreateWithoutTenderVehiclesInput = {
|
|
80120
81027
|
id?: string
|
|
81028
|
+
code?: string | null
|
|
80121
81029
|
title: string
|
|
80122
81030
|
description?: string | null
|
|
80123
81031
|
status?: $Enums.TenderStatus
|
|
@@ -80243,6 +81151,7 @@ export namespace Prisma {
|
|
|
80243
81151
|
|
|
80244
81152
|
export type TenderUpdateWithoutTenderVehiclesInput = {
|
|
80245
81153
|
id?: StringFieldUpdateOperationsInput | string
|
|
81154
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80246
81155
|
title?: StringFieldUpdateOperationsInput | string
|
|
80247
81156
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80248
81157
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -80265,6 +81174,7 @@ export namespace Prisma {
|
|
|
80265
81174
|
|
|
80266
81175
|
export type TenderUncheckedUpdateWithoutTenderVehiclesInput = {
|
|
80267
81176
|
id?: StringFieldUpdateOperationsInput | string
|
|
81177
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80268
81178
|
title?: StringFieldUpdateOperationsInput | string
|
|
80269
81179
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80270
81180
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -80490,6 +81400,7 @@ export namespace Prisma {
|
|
|
80490
81400
|
|
|
80491
81401
|
export type TenderCreateWithoutTenderChatsInput = {
|
|
80492
81402
|
id?: string
|
|
81403
|
+
code?: string | null
|
|
80493
81404
|
title: string
|
|
80494
81405
|
description?: string | null
|
|
80495
81406
|
status?: $Enums.TenderStatus
|
|
@@ -80512,6 +81423,7 @@ export namespace Prisma {
|
|
|
80512
81423
|
|
|
80513
81424
|
export type TenderUncheckedCreateWithoutTenderChatsInput = {
|
|
80514
81425
|
id?: string
|
|
81426
|
+
code?: string | null
|
|
80515
81427
|
title: string
|
|
80516
81428
|
description?: string | null
|
|
80517
81429
|
status?: $Enums.TenderStatus
|
|
@@ -80660,6 +81572,7 @@ export namespace Prisma {
|
|
|
80660
81572
|
|
|
80661
81573
|
export type TenderUpdateWithoutTenderChatsInput = {
|
|
80662
81574
|
id?: StringFieldUpdateOperationsInput | string
|
|
81575
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80663
81576
|
title?: StringFieldUpdateOperationsInput | string
|
|
80664
81577
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80665
81578
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -80682,6 +81595,7 @@ export namespace Prisma {
|
|
|
80682
81595
|
|
|
80683
81596
|
export type TenderUncheckedUpdateWithoutTenderChatsInput = {
|
|
80684
81597
|
id?: StringFieldUpdateOperationsInput | string
|
|
81598
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80685
81599
|
title?: StringFieldUpdateOperationsInput | string
|
|
80686
81600
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80687
81601
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -80882,6 +81796,7 @@ export namespace Prisma {
|
|
|
80882
81796
|
color?: $Enums.VehicleColor | null
|
|
80883
81797
|
chassis_number?: string | null
|
|
80884
81798
|
size?: $Enums.VehicleSize | null
|
|
81799
|
+
status?: $Enums.VehicleStatus
|
|
80885
81800
|
gps_enabled?: boolean
|
|
80886
81801
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
80887
81802
|
is_validated?: boolean | null
|
|
@@ -80909,6 +81824,7 @@ export namespace Prisma {
|
|
|
80909
81824
|
color?: $Enums.VehicleColor | null
|
|
80910
81825
|
chassis_number?: string | null
|
|
80911
81826
|
size?: $Enums.VehicleSize | null
|
|
81827
|
+
status?: $Enums.VehicleStatus
|
|
80912
81828
|
gps_enabled?: boolean
|
|
80913
81829
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
80914
81830
|
company_id?: string | null
|
|
@@ -81111,6 +82027,7 @@ export namespace Prisma {
|
|
|
81111
82027
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
81112
82028
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
81113
82029
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
82030
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
81114
82031
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
81115
82032
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
81116
82033
|
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -81138,6 +82055,7 @@ export namespace Prisma {
|
|
|
81138
82055
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
81139
82056
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
81140
82057
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
82058
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
81141
82059
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
81142
82060
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
81143
82061
|
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -81291,10 +82209,12 @@ export namespace Prisma {
|
|
|
81291
82209
|
form_responses?: FormResponseCreateNestedManyWithoutCompanyInput
|
|
81292
82210
|
forms?: FormCreateNestedManyWithoutCompanyInput
|
|
81293
82211
|
tenders?: TenderCreateNestedManyWithoutCompanyInput
|
|
82212
|
+
orders?: OrderCreateNestedManyWithoutCompanyInput
|
|
81294
82213
|
companyLocations?: CompanyLocationCreateNestedManyWithoutCompanyInput
|
|
81295
82214
|
regularSuppliers?: RegularSupplierCreateNestedManyWithoutCompanyInput
|
|
81296
82215
|
products?: ProductCreateNestedManyWithoutCompanyInput
|
|
81297
82216
|
regularSuppliers2?: RegularSupplierCreateNestedManyWithoutSupplierInput
|
|
82217
|
+
supplierNotifications?: TenderNotificationCreateNestedManyWithoutSupplierCompanyInput
|
|
81298
82218
|
}
|
|
81299
82219
|
|
|
81300
82220
|
export type CompaniesUncheckedCreateWithoutGroupsInput = {
|
|
@@ -81316,10 +82236,12 @@ export namespace Prisma {
|
|
|
81316
82236
|
form_responses?: FormResponseUncheckedCreateNestedManyWithoutCompanyInput
|
|
81317
82237
|
forms?: FormUncheckedCreateNestedManyWithoutCompanyInput
|
|
81318
82238
|
tenders?: TenderUncheckedCreateNestedManyWithoutCompanyInput
|
|
82239
|
+
orders?: OrderUncheckedCreateNestedManyWithoutCompanyInput
|
|
81319
82240
|
companyLocations?: CompanyLocationUncheckedCreateNestedManyWithoutCompanyInput
|
|
81320
82241
|
regularSuppliers?: RegularSupplierUncheckedCreateNestedManyWithoutCompanyInput
|
|
81321
82242
|
products?: ProductUncheckedCreateNestedManyWithoutCompanyInput
|
|
81322
82243
|
regularSuppliers2?: RegularSupplierUncheckedCreateNestedManyWithoutSupplierInput
|
|
82244
|
+
supplierNotifications?: TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput
|
|
81323
82245
|
}
|
|
81324
82246
|
|
|
81325
82247
|
export type CompaniesCreateOrConnectWithoutGroupsInput = {
|
|
@@ -81360,12 +82282,14 @@ export namespace Prisma {
|
|
|
81360
82282
|
created_at?: Date | string
|
|
81361
82283
|
tender: TenderCreateNestedOneWithoutTenderNotificationsInput
|
|
81362
82284
|
user?: UserCreateNestedOneWithoutTenderNotificationsInput
|
|
82285
|
+
supplierCompany?: CompaniesCreateNestedOneWithoutSupplierNotificationsInput
|
|
81363
82286
|
}
|
|
81364
82287
|
|
|
81365
82288
|
export type TenderNotificationUncheckedCreateWithoutGroupInput = {
|
|
81366
82289
|
id?: string
|
|
81367
82290
|
tender_id: string
|
|
81368
82291
|
user_id?: string | null
|
|
82292
|
+
supplier_company_id?: string | null
|
|
81369
82293
|
whatsapp?: boolean
|
|
81370
82294
|
email?: boolean
|
|
81371
82295
|
push?: boolean
|
|
@@ -81413,10 +82337,12 @@ export namespace Prisma {
|
|
|
81413
82337
|
form_responses?: FormResponseUpdateManyWithoutCompanyNestedInput
|
|
81414
82338
|
forms?: FormUpdateManyWithoutCompanyNestedInput
|
|
81415
82339
|
tenders?: TenderUpdateManyWithoutCompanyNestedInput
|
|
82340
|
+
orders?: OrderUpdateManyWithoutCompanyNestedInput
|
|
81416
82341
|
companyLocations?: CompanyLocationUpdateManyWithoutCompanyNestedInput
|
|
81417
82342
|
regularSuppliers?: RegularSupplierUpdateManyWithoutCompanyNestedInput
|
|
81418
82343
|
products?: ProductUpdateManyWithoutCompanyNestedInput
|
|
81419
82344
|
regularSuppliers2?: RegularSupplierUpdateManyWithoutSupplierNestedInput
|
|
82345
|
+
supplierNotifications?: TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput
|
|
81420
82346
|
}
|
|
81421
82347
|
|
|
81422
82348
|
export type CompaniesUncheckedUpdateWithoutGroupsInput = {
|
|
@@ -81438,10 +82364,12 @@ export namespace Prisma {
|
|
|
81438
82364
|
form_responses?: FormResponseUncheckedUpdateManyWithoutCompanyNestedInput
|
|
81439
82365
|
forms?: FormUncheckedUpdateManyWithoutCompanyNestedInput
|
|
81440
82366
|
tenders?: TenderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82367
|
+
orders?: OrderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
81441
82368
|
companyLocations?: CompanyLocationUncheckedUpdateManyWithoutCompanyNestedInput
|
|
81442
82369
|
regularSuppliers?: RegularSupplierUncheckedUpdateManyWithoutCompanyNestedInput
|
|
81443
82370
|
products?: ProductUncheckedUpdateManyWithoutCompanyNestedInput
|
|
81444
82371
|
regularSuppliers2?: RegularSupplierUncheckedUpdateManyWithoutSupplierNestedInput
|
|
82372
|
+
supplierNotifications?: TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput
|
|
81445
82373
|
}
|
|
81446
82374
|
|
|
81447
82375
|
export type UserGroupUpsertWithWhereUniqueWithoutGroupInput = {
|
|
@@ -81646,6 +82574,7 @@ export namespace Prisma {
|
|
|
81646
82574
|
|
|
81647
82575
|
export type TenderCreateWithoutTenderNotificationsInput = {
|
|
81648
82576
|
id?: string
|
|
82577
|
+
code?: string | null
|
|
81649
82578
|
title: string
|
|
81650
82579
|
description?: string | null
|
|
81651
82580
|
status?: $Enums.TenderStatus
|
|
@@ -81668,6 +82597,7 @@ export namespace Prisma {
|
|
|
81668
82597
|
|
|
81669
82598
|
export type TenderUncheckedCreateWithoutTenderNotificationsInput = {
|
|
81670
82599
|
id?: string
|
|
82600
|
+
code?: string | null
|
|
81671
82601
|
title: string
|
|
81672
82602
|
description?: string | null
|
|
81673
82603
|
status?: $Enums.TenderStatus
|
|
@@ -81771,6 +82701,65 @@ export namespace Prisma {
|
|
|
81771
82701
|
create: XOR<GroupCreateWithoutTenderNotificationsInput, GroupUncheckedCreateWithoutTenderNotificationsInput>
|
|
81772
82702
|
}
|
|
81773
82703
|
|
|
82704
|
+
export type CompaniesCreateWithoutSupplierNotificationsInput = {
|
|
82705
|
+
id?: string
|
|
82706
|
+
tax_id?: string | null
|
|
82707
|
+
name: string
|
|
82708
|
+
address?: NullableJsonNullValueInput | InputJsonValue
|
|
82709
|
+
contact_info?: NullableJsonNullValueInput | InputJsonValue
|
|
82710
|
+
country_code?: string | null
|
|
82711
|
+
is_validated?: boolean | null
|
|
82712
|
+
documents?: NullableJsonNullValueInput | InputJsonValue
|
|
82713
|
+
created_at?: Date | string
|
|
82714
|
+
updated_at?: Date | string
|
|
82715
|
+
clients?: ClientCreateNestedManyWithoutCompanyInput
|
|
82716
|
+
vehicles?: VehicleCreateNestedManyWithoutCompanyInput
|
|
82717
|
+
user_companies?: UserCompanyCreateNestedManyWithoutCompanyInput
|
|
82718
|
+
equipments?: EquipmentCreateNestedManyWithoutCompanyInput
|
|
82719
|
+
form_templates?: FormTemplateCreateNestedManyWithoutCompanyInput
|
|
82720
|
+
form_responses?: FormResponseCreateNestedManyWithoutCompanyInput
|
|
82721
|
+
forms?: FormCreateNestedManyWithoutCompanyInput
|
|
82722
|
+
tenders?: TenderCreateNestedManyWithoutCompanyInput
|
|
82723
|
+
orders?: OrderCreateNestedManyWithoutCompanyInput
|
|
82724
|
+
groups?: GroupCreateNestedManyWithoutCompanyInput
|
|
82725
|
+
companyLocations?: CompanyLocationCreateNestedManyWithoutCompanyInput
|
|
82726
|
+
regularSuppliers?: RegularSupplierCreateNestedManyWithoutCompanyInput
|
|
82727
|
+
products?: ProductCreateNestedManyWithoutCompanyInput
|
|
82728
|
+
regularSuppliers2?: RegularSupplierCreateNestedManyWithoutSupplierInput
|
|
82729
|
+
}
|
|
82730
|
+
|
|
82731
|
+
export type CompaniesUncheckedCreateWithoutSupplierNotificationsInput = {
|
|
82732
|
+
id?: string
|
|
82733
|
+
tax_id?: string | null
|
|
82734
|
+
name: string
|
|
82735
|
+
address?: NullableJsonNullValueInput | InputJsonValue
|
|
82736
|
+
contact_info?: NullableJsonNullValueInput | InputJsonValue
|
|
82737
|
+
country_code?: string | null
|
|
82738
|
+
is_validated?: boolean | null
|
|
82739
|
+
documents?: NullableJsonNullValueInput | InputJsonValue
|
|
82740
|
+
created_at?: Date | string
|
|
82741
|
+
updated_at?: Date | string
|
|
82742
|
+
clients?: ClientUncheckedCreateNestedManyWithoutCompanyInput
|
|
82743
|
+
vehicles?: VehicleUncheckedCreateNestedManyWithoutCompanyInput
|
|
82744
|
+
user_companies?: UserCompanyUncheckedCreateNestedManyWithoutCompanyInput
|
|
82745
|
+
equipments?: EquipmentUncheckedCreateNestedManyWithoutCompanyInput
|
|
82746
|
+
form_templates?: FormTemplateUncheckedCreateNestedManyWithoutCompanyInput
|
|
82747
|
+
form_responses?: FormResponseUncheckedCreateNestedManyWithoutCompanyInput
|
|
82748
|
+
forms?: FormUncheckedCreateNestedManyWithoutCompanyInput
|
|
82749
|
+
tenders?: TenderUncheckedCreateNestedManyWithoutCompanyInput
|
|
82750
|
+
orders?: OrderUncheckedCreateNestedManyWithoutCompanyInput
|
|
82751
|
+
groups?: GroupUncheckedCreateNestedManyWithoutCompanyInput
|
|
82752
|
+
companyLocations?: CompanyLocationUncheckedCreateNestedManyWithoutCompanyInput
|
|
82753
|
+
regularSuppliers?: RegularSupplierUncheckedCreateNestedManyWithoutCompanyInput
|
|
82754
|
+
products?: ProductUncheckedCreateNestedManyWithoutCompanyInput
|
|
82755
|
+
regularSuppliers2?: RegularSupplierUncheckedCreateNestedManyWithoutSupplierInput
|
|
82756
|
+
}
|
|
82757
|
+
|
|
82758
|
+
export type CompaniesCreateOrConnectWithoutSupplierNotificationsInput = {
|
|
82759
|
+
where: CompaniesWhereUniqueInput
|
|
82760
|
+
create: XOR<CompaniesCreateWithoutSupplierNotificationsInput, CompaniesUncheckedCreateWithoutSupplierNotificationsInput>
|
|
82761
|
+
}
|
|
82762
|
+
|
|
81774
82763
|
export type TenderUpsertWithoutTenderNotificationsInput = {
|
|
81775
82764
|
update: XOR<TenderUpdateWithoutTenderNotificationsInput, TenderUncheckedUpdateWithoutTenderNotificationsInput>
|
|
81776
82765
|
create: XOR<TenderCreateWithoutTenderNotificationsInput, TenderUncheckedCreateWithoutTenderNotificationsInput>
|
|
@@ -81784,6 +82773,7 @@ export namespace Prisma {
|
|
|
81784
82773
|
|
|
81785
82774
|
export type TenderUpdateWithoutTenderNotificationsInput = {
|
|
81786
82775
|
id?: StringFieldUpdateOperationsInput | string
|
|
82776
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
81787
82777
|
title?: StringFieldUpdateOperationsInput | string
|
|
81788
82778
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
81789
82779
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -81806,6 +82796,7 @@ export namespace Prisma {
|
|
|
81806
82796
|
|
|
81807
82797
|
export type TenderUncheckedUpdateWithoutTenderNotificationsInput = {
|
|
81808
82798
|
id?: StringFieldUpdateOperationsInput | string
|
|
82799
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
81809
82800
|
title?: StringFieldUpdateOperationsInput | string
|
|
81810
82801
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
81811
82802
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -81916,6 +82907,71 @@ export namespace Prisma {
|
|
|
81916
82907
|
userGroups?: UserGroupUncheckedUpdateManyWithoutGroupNestedInput
|
|
81917
82908
|
}
|
|
81918
82909
|
|
|
82910
|
+
export type CompaniesUpsertWithoutSupplierNotificationsInput = {
|
|
82911
|
+
update: XOR<CompaniesUpdateWithoutSupplierNotificationsInput, CompaniesUncheckedUpdateWithoutSupplierNotificationsInput>
|
|
82912
|
+
create: XOR<CompaniesCreateWithoutSupplierNotificationsInput, CompaniesUncheckedCreateWithoutSupplierNotificationsInput>
|
|
82913
|
+
where?: CompaniesWhereInput
|
|
82914
|
+
}
|
|
82915
|
+
|
|
82916
|
+
export type CompaniesUpdateToOneWithWhereWithoutSupplierNotificationsInput = {
|
|
82917
|
+
where?: CompaniesWhereInput
|
|
82918
|
+
data: XOR<CompaniesUpdateWithoutSupplierNotificationsInput, CompaniesUncheckedUpdateWithoutSupplierNotificationsInput>
|
|
82919
|
+
}
|
|
82920
|
+
|
|
82921
|
+
export type CompaniesUpdateWithoutSupplierNotificationsInput = {
|
|
82922
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
82923
|
+
tax_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82924
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
82925
|
+
address?: NullableJsonNullValueInput | InputJsonValue
|
|
82926
|
+
contact_info?: NullableJsonNullValueInput | InputJsonValue
|
|
82927
|
+
country_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82928
|
+
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
82929
|
+
documents?: NullableJsonNullValueInput | InputJsonValue
|
|
82930
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82931
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82932
|
+
clients?: ClientUpdateManyWithoutCompanyNestedInput
|
|
82933
|
+
vehicles?: VehicleUpdateManyWithoutCompanyNestedInput
|
|
82934
|
+
user_companies?: UserCompanyUpdateManyWithoutCompanyNestedInput
|
|
82935
|
+
equipments?: EquipmentUpdateManyWithoutCompanyNestedInput
|
|
82936
|
+
form_templates?: FormTemplateUpdateManyWithoutCompanyNestedInput
|
|
82937
|
+
form_responses?: FormResponseUpdateManyWithoutCompanyNestedInput
|
|
82938
|
+
forms?: FormUpdateManyWithoutCompanyNestedInput
|
|
82939
|
+
tenders?: TenderUpdateManyWithoutCompanyNestedInput
|
|
82940
|
+
orders?: OrderUpdateManyWithoutCompanyNestedInput
|
|
82941
|
+
groups?: GroupUpdateManyWithoutCompanyNestedInput
|
|
82942
|
+
companyLocations?: CompanyLocationUpdateManyWithoutCompanyNestedInput
|
|
82943
|
+
regularSuppliers?: RegularSupplierUpdateManyWithoutCompanyNestedInput
|
|
82944
|
+
products?: ProductUpdateManyWithoutCompanyNestedInput
|
|
82945
|
+
regularSuppliers2?: RegularSupplierUpdateManyWithoutSupplierNestedInput
|
|
82946
|
+
}
|
|
82947
|
+
|
|
82948
|
+
export type CompaniesUncheckedUpdateWithoutSupplierNotificationsInput = {
|
|
82949
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
82950
|
+
tax_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82951
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
82952
|
+
address?: NullableJsonNullValueInput | InputJsonValue
|
|
82953
|
+
contact_info?: NullableJsonNullValueInput | InputJsonValue
|
|
82954
|
+
country_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82955
|
+
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
82956
|
+
documents?: NullableJsonNullValueInput | InputJsonValue
|
|
82957
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82958
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82959
|
+
clients?: ClientUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82960
|
+
vehicles?: VehicleUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82961
|
+
user_companies?: UserCompanyUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82962
|
+
equipments?: EquipmentUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82963
|
+
form_templates?: FormTemplateUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82964
|
+
form_responses?: FormResponseUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82965
|
+
forms?: FormUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82966
|
+
tenders?: TenderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82967
|
+
orders?: OrderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82968
|
+
groups?: GroupUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82969
|
+
companyLocations?: CompanyLocationUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82970
|
+
regularSuppliers?: RegularSupplierUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82971
|
+
products?: ProductUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82972
|
+
regularSuppliers2?: RegularSupplierUncheckedUpdateManyWithoutSupplierNestedInput
|
|
82973
|
+
}
|
|
82974
|
+
|
|
81919
82975
|
export type CompanyLocationCreateWithoutLocationInput = {
|
|
81920
82976
|
id?: string
|
|
81921
82977
|
is_active?: boolean
|
|
@@ -82017,10 +83073,12 @@ export namespace Prisma {
|
|
|
82017
83073
|
form_responses?: FormResponseCreateNestedManyWithoutCompanyInput
|
|
82018
83074
|
forms?: FormCreateNestedManyWithoutCompanyInput
|
|
82019
83075
|
tenders?: TenderCreateNestedManyWithoutCompanyInput
|
|
83076
|
+
orders?: OrderCreateNestedManyWithoutCompanyInput
|
|
82020
83077
|
groups?: GroupCreateNestedManyWithoutCompanyInput
|
|
82021
83078
|
regularSuppliers?: RegularSupplierCreateNestedManyWithoutCompanyInput
|
|
82022
83079
|
products?: ProductCreateNestedManyWithoutCompanyInput
|
|
82023
83080
|
regularSuppliers2?: RegularSupplierCreateNestedManyWithoutSupplierInput
|
|
83081
|
+
supplierNotifications?: TenderNotificationCreateNestedManyWithoutSupplierCompanyInput
|
|
82024
83082
|
}
|
|
82025
83083
|
|
|
82026
83084
|
export type CompaniesUncheckedCreateWithoutCompanyLocationsInput = {
|
|
@@ -82042,10 +83100,12 @@ export namespace Prisma {
|
|
|
82042
83100
|
form_responses?: FormResponseUncheckedCreateNestedManyWithoutCompanyInput
|
|
82043
83101
|
forms?: FormUncheckedCreateNestedManyWithoutCompanyInput
|
|
82044
83102
|
tenders?: TenderUncheckedCreateNestedManyWithoutCompanyInput
|
|
83103
|
+
orders?: OrderUncheckedCreateNestedManyWithoutCompanyInput
|
|
82045
83104
|
groups?: GroupUncheckedCreateNestedManyWithoutCompanyInput
|
|
82046
83105
|
regularSuppliers?: RegularSupplierUncheckedCreateNestedManyWithoutCompanyInput
|
|
82047
83106
|
products?: ProductUncheckedCreateNestedManyWithoutCompanyInput
|
|
82048
83107
|
regularSuppliers2?: RegularSupplierUncheckedCreateNestedManyWithoutSupplierInput
|
|
83108
|
+
supplierNotifications?: TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput
|
|
82049
83109
|
}
|
|
82050
83110
|
|
|
82051
83111
|
export type CompaniesCreateOrConnectWithoutCompanyLocationsInput = {
|
|
@@ -82083,10 +83143,12 @@ export namespace Prisma {
|
|
|
82083
83143
|
form_responses?: FormResponseUpdateManyWithoutCompanyNestedInput
|
|
82084
83144
|
forms?: FormUpdateManyWithoutCompanyNestedInput
|
|
82085
83145
|
tenders?: TenderUpdateManyWithoutCompanyNestedInput
|
|
83146
|
+
orders?: OrderUpdateManyWithoutCompanyNestedInput
|
|
82086
83147
|
groups?: GroupUpdateManyWithoutCompanyNestedInput
|
|
82087
83148
|
regularSuppliers?: RegularSupplierUpdateManyWithoutCompanyNestedInput
|
|
82088
83149
|
products?: ProductUpdateManyWithoutCompanyNestedInput
|
|
82089
83150
|
regularSuppliers2?: RegularSupplierUpdateManyWithoutSupplierNestedInput
|
|
83151
|
+
supplierNotifications?: TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput
|
|
82090
83152
|
}
|
|
82091
83153
|
|
|
82092
83154
|
export type CompaniesUncheckedUpdateWithoutCompanyLocationsInput = {
|
|
@@ -82108,10 +83170,12 @@ export namespace Prisma {
|
|
|
82108
83170
|
form_responses?: FormResponseUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82109
83171
|
forms?: FormUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82110
83172
|
tenders?: TenderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
83173
|
+
orders?: OrderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82111
83174
|
groups?: GroupUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82112
83175
|
regularSuppliers?: RegularSupplierUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82113
83176
|
products?: ProductUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82114
83177
|
regularSuppliers2?: RegularSupplierUncheckedUpdateManyWithoutSupplierNestedInput
|
|
83178
|
+
supplierNotifications?: TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput
|
|
82115
83179
|
}
|
|
82116
83180
|
|
|
82117
83181
|
export type LocationUpdateToOneWithWhereWithoutCompanyLocationsInput = {
|
|
@@ -82143,6 +83207,7 @@ export namespace Prisma {
|
|
|
82143
83207
|
|
|
82144
83208
|
export type TenderCreateWithoutTenderLocationNotificationsInput = {
|
|
82145
83209
|
id?: string
|
|
83210
|
+
code?: string | null
|
|
82146
83211
|
title: string
|
|
82147
83212
|
description?: string | null
|
|
82148
83213
|
status?: $Enums.TenderStatus
|
|
@@ -82165,6 +83230,7 @@ export namespace Prisma {
|
|
|
82165
83230
|
|
|
82166
83231
|
export type TenderUncheckedCreateWithoutTenderLocationNotificationsInput = {
|
|
82167
83232
|
id?: string
|
|
83233
|
+
code?: string | null
|
|
82168
83234
|
title: string
|
|
82169
83235
|
description?: string | null
|
|
82170
83236
|
status?: $Enums.TenderStatus
|
|
@@ -82203,6 +83269,7 @@ export namespace Prisma {
|
|
|
82203
83269
|
|
|
82204
83270
|
export type TenderUpdateWithoutTenderLocationNotificationsInput = {
|
|
82205
83271
|
id?: StringFieldUpdateOperationsInput | string
|
|
83272
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82206
83273
|
title?: StringFieldUpdateOperationsInput | string
|
|
82207
83274
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82208
83275
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -82225,6 +83292,7 @@ export namespace Prisma {
|
|
|
82225
83292
|
|
|
82226
83293
|
export type TenderUncheckedUpdateWithoutTenderLocationNotificationsInput = {
|
|
82227
83294
|
id?: StringFieldUpdateOperationsInput | string
|
|
83295
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82228
83296
|
title?: StringFieldUpdateOperationsInput | string
|
|
82229
83297
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82230
83298
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -82291,10 +83359,12 @@ export namespace Prisma {
|
|
|
82291
83359
|
form_responses?: FormResponseCreateNestedManyWithoutCompanyInput
|
|
82292
83360
|
forms?: FormCreateNestedManyWithoutCompanyInput
|
|
82293
83361
|
tenders?: TenderCreateNestedManyWithoutCompanyInput
|
|
83362
|
+
orders?: OrderCreateNestedManyWithoutCompanyInput
|
|
82294
83363
|
groups?: GroupCreateNestedManyWithoutCompanyInput
|
|
82295
83364
|
companyLocations?: CompanyLocationCreateNestedManyWithoutCompanyInput
|
|
82296
83365
|
products?: ProductCreateNestedManyWithoutCompanyInput
|
|
82297
83366
|
regularSuppliers2?: RegularSupplierCreateNestedManyWithoutSupplierInput
|
|
83367
|
+
supplierNotifications?: TenderNotificationCreateNestedManyWithoutSupplierCompanyInput
|
|
82298
83368
|
}
|
|
82299
83369
|
|
|
82300
83370
|
export type CompaniesUncheckedCreateWithoutRegularSuppliersInput = {
|
|
@@ -82316,10 +83386,12 @@ export namespace Prisma {
|
|
|
82316
83386
|
form_responses?: FormResponseUncheckedCreateNestedManyWithoutCompanyInput
|
|
82317
83387
|
forms?: FormUncheckedCreateNestedManyWithoutCompanyInput
|
|
82318
83388
|
tenders?: TenderUncheckedCreateNestedManyWithoutCompanyInput
|
|
83389
|
+
orders?: OrderUncheckedCreateNestedManyWithoutCompanyInput
|
|
82319
83390
|
groups?: GroupUncheckedCreateNestedManyWithoutCompanyInput
|
|
82320
83391
|
companyLocations?: CompanyLocationUncheckedCreateNestedManyWithoutCompanyInput
|
|
82321
83392
|
products?: ProductUncheckedCreateNestedManyWithoutCompanyInput
|
|
82322
83393
|
regularSuppliers2?: RegularSupplierUncheckedCreateNestedManyWithoutSupplierInput
|
|
83394
|
+
supplierNotifications?: TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput
|
|
82323
83395
|
}
|
|
82324
83396
|
|
|
82325
83397
|
export type CompaniesCreateOrConnectWithoutRegularSuppliersInput = {
|
|
@@ -82346,10 +83418,12 @@ export namespace Prisma {
|
|
|
82346
83418
|
form_responses?: FormResponseCreateNestedManyWithoutCompanyInput
|
|
82347
83419
|
forms?: FormCreateNestedManyWithoutCompanyInput
|
|
82348
83420
|
tenders?: TenderCreateNestedManyWithoutCompanyInput
|
|
83421
|
+
orders?: OrderCreateNestedManyWithoutCompanyInput
|
|
82349
83422
|
groups?: GroupCreateNestedManyWithoutCompanyInput
|
|
82350
83423
|
companyLocations?: CompanyLocationCreateNestedManyWithoutCompanyInput
|
|
82351
83424
|
regularSuppliers?: RegularSupplierCreateNestedManyWithoutCompanyInput
|
|
82352
83425
|
products?: ProductCreateNestedManyWithoutCompanyInput
|
|
83426
|
+
supplierNotifications?: TenderNotificationCreateNestedManyWithoutSupplierCompanyInput
|
|
82353
83427
|
}
|
|
82354
83428
|
|
|
82355
83429
|
export type CompaniesUncheckedCreateWithoutRegularSuppliers2Input = {
|
|
@@ -82371,10 +83445,12 @@ export namespace Prisma {
|
|
|
82371
83445
|
form_responses?: FormResponseUncheckedCreateNestedManyWithoutCompanyInput
|
|
82372
83446
|
forms?: FormUncheckedCreateNestedManyWithoutCompanyInput
|
|
82373
83447
|
tenders?: TenderUncheckedCreateNestedManyWithoutCompanyInput
|
|
83448
|
+
orders?: OrderUncheckedCreateNestedManyWithoutCompanyInput
|
|
82374
83449
|
groups?: GroupUncheckedCreateNestedManyWithoutCompanyInput
|
|
82375
83450
|
companyLocations?: CompanyLocationUncheckedCreateNestedManyWithoutCompanyInput
|
|
82376
83451
|
regularSuppliers?: RegularSupplierUncheckedCreateNestedManyWithoutCompanyInput
|
|
82377
83452
|
products?: ProductUncheckedCreateNestedManyWithoutCompanyInput
|
|
83453
|
+
supplierNotifications?: TenderNotificationUncheckedCreateNestedManyWithoutSupplierCompanyInput
|
|
82378
83454
|
}
|
|
82379
83455
|
|
|
82380
83456
|
export type CompaniesCreateOrConnectWithoutRegularSuppliers2Input = {
|
|
@@ -82412,10 +83488,12 @@ export namespace Prisma {
|
|
|
82412
83488
|
form_responses?: FormResponseUpdateManyWithoutCompanyNestedInput
|
|
82413
83489
|
forms?: FormUpdateManyWithoutCompanyNestedInput
|
|
82414
83490
|
tenders?: TenderUpdateManyWithoutCompanyNestedInput
|
|
83491
|
+
orders?: OrderUpdateManyWithoutCompanyNestedInput
|
|
82415
83492
|
groups?: GroupUpdateManyWithoutCompanyNestedInput
|
|
82416
83493
|
companyLocations?: CompanyLocationUpdateManyWithoutCompanyNestedInput
|
|
82417
83494
|
products?: ProductUpdateManyWithoutCompanyNestedInput
|
|
82418
83495
|
regularSuppliers2?: RegularSupplierUpdateManyWithoutSupplierNestedInput
|
|
83496
|
+
supplierNotifications?: TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput
|
|
82419
83497
|
}
|
|
82420
83498
|
|
|
82421
83499
|
export type CompaniesUncheckedUpdateWithoutRegularSuppliersInput = {
|
|
@@ -82437,10 +83515,12 @@ export namespace Prisma {
|
|
|
82437
83515
|
form_responses?: FormResponseUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82438
83516
|
forms?: FormUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82439
83517
|
tenders?: TenderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
83518
|
+
orders?: OrderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82440
83519
|
groups?: GroupUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82441
83520
|
companyLocations?: CompanyLocationUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82442
83521
|
products?: ProductUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82443
83522
|
regularSuppliers2?: RegularSupplierUncheckedUpdateManyWithoutSupplierNestedInput
|
|
83523
|
+
supplierNotifications?: TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput
|
|
82444
83524
|
}
|
|
82445
83525
|
|
|
82446
83526
|
export type CompaniesUpsertWithoutRegularSuppliers2Input = {
|
|
@@ -82473,10 +83553,12 @@ export namespace Prisma {
|
|
|
82473
83553
|
form_responses?: FormResponseUpdateManyWithoutCompanyNestedInput
|
|
82474
83554
|
forms?: FormUpdateManyWithoutCompanyNestedInput
|
|
82475
83555
|
tenders?: TenderUpdateManyWithoutCompanyNestedInput
|
|
83556
|
+
orders?: OrderUpdateManyWithoutCompanyNestedInput
|
|
82476
83557
|
groups?: GroupUpdateManyWithoutCompanyNestedInput
|
|
82477
83558
|
companyLocations?: CompanyLocationUpdateManyWithoutCompanyNestedInput
|
|
82478
83559
|
regularSuppliers?: RegularSupplierUpdateManyWithoutCompanyNestedInput
|
|
82479
83560
|
products?: ProductUpdateManyWithoutCompanyNestedInput
|
|
83561
|
+
supplierNotifications?: TenderNotificationUpdateManyWithoutSupplierCompanyNestedInput
|
|
82480
83562
|
}
|
|
82481
83563
|
|
|
82482
83564
|
export type CompaniesUncheckedUpdateWithoutRegularSuppliers2Input = {
|
|
@@ -82498,10 +83580,12 @@ export namespace Prisma {
|
|
|
82498
83580
|
form_responses?: FormResponseUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82499
83581
|
forms?: FormUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82500
83582
|
tenders?: TenderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
83583
|
+
orders?: OrderUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82501
83584
|
groups?: GroupUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82502
83585
|
companyLocations?: CompanyLocationUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82503
83586
|
regularSuppliers?: RegularSupplierUncheckedUpdateManyWithoutCompanyNestedInput
|
|
82504
83587
|
products?: ProductUncheckedUpdateManyWithoutCompanyNestedInput
|
|
83588
|
+
supplierNotifications?: TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyNestedInput
|
|
82505
83589
|
}
|
|
82506
83590
|
|
|
82507
83591
|
export type HandlingUnitCreateManyProductInput = {
|
|
@@ -82611,6 +83695,8 @@ export namespace Prisma {
|
|
|
82611
83695
|
export type OrderCreateManyShipperInput = {
|
|
82612
83696
|
id?: string
|
|
82613
83697
|
reference?: string | null
|
|
83698
|
+
company_id?: string | null
|
|
83699
|
+
created_by?: string | null
|
|
82614
83700
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
82615
83701
|
status?: $Enums.RouteStatus
|
|
82616
83702
|
created_at?: Date | string
|
|
@@ -82722,10 +83808,12 @@ export namespace Prisma {
|
|
|
82722
83808
|
export type OrderUpdateWithoutShipperInput = {
|
|
82723
83809
|
id?: StringFieldUpdateOperationsInput | string
|
|
82724
83810
|
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83811
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82725
83812
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
82726
83813
|
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
82727
83814
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82728
83815
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83816
|
+
company?: CompaniesUpdateOneWithoutOrdersNestedInput
|
|
82729
83817
|
handling_units?: HandlingUnitUpdateManyWithoutOrderNestedInput
|
|
82730
83818
|
routes?: RouteUpdateManyWithoutOrderNestedInput
|
|
82731
83819
|
tenders?: TenderUpdateManyWithoutOrderNestedInput
|
|
@@ -82734,6 +83822,8 @@ export namespace Prisma {
|
|
|
82734
83822
|
export type OrderUncheckedUpdateWithoutShipperInput = {
|
|
82735
83823
|
id?: StringFieldUpdateOperationsInput | string
|
|
82736
83824
|
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83825
|
+
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83826
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82737
83827
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
82738
83828
|
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
82739
83829
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -82746,6 +83836,8 @@ export namespace Prisma {
|
|
|
82746
83836
|
export type OrderUncheckedUpdateManyWithoutShipperInput = {
|
|
82747
83837
|
id?: StringFieldUpdateOperationsInput | string
|
|
82748
83838
|
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83839
|
+
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83840
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82749
83841
|
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
82750
83842
|
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
82751
83843
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -82849,6 +83941,7 @@ export namespace Prisma {
|
|
|
82849
83941
|
|
|
82850
83942
|
export type TenderCreateManyOrderInput = {
|
|
82851
83943
|
id?: string
|
|
83944
|
+
code?: string | null
|
|
82852
83945
|
title: string
|
|
82853
83946
|
description?: string | null
|
|
82854
83947
|
status?: $Enums.TenderStatus
|
|
@@ -82986,6 +84079,7 @@ export namespace Prisma {
|
|
|
82986
84079
|
|
|
82987
84080
|
export type TenderUpdateWithoutOrderInput = {
|
|
82988
84081
|
id?: StringFieldUpdateOperationsInput | string
|
|
84082
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82989
84083
|
title?: StringFieldUpdateOperationsInput | string
|
|
82990
84084
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82991
84085
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -83008,6 +84102,7 @@ export namespace Prisma {
|
|
|
83008
84102
|
|
|
83009
84103
|
export type TenderUncheckedUpdateWithoutOrderInput = {
|
|
83010
84104
|
id?: StringFieldUpdateOperationsInput | string
|
|
84105
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83011
84106
|
title?: StringFieldUpdateOperationsInput | string
|
|
83012
84107
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83013
84108
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -83030,6 +84125,7 @@ export namespace Prisma {
|
|
|
83030
84125
|
|
|
83031
84126
|
export type TenderUncheckedUpdateManyWithoutOrderInput = {
|
|
83032
84127
|
id?: StringFieldUpdateOperationsInput | string
|
|
84128
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83033
84129
|
title?: StringFieldUpdateOperationsInput | string
|
|
83034
84130
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83035
84131
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -83070,6 +84166,7 @@ export namespace Prisma {
|
|
|
83070
84166
|
color?: $Enums.VehicleColor | null
|
|
83071
84167
|
chassis_number?: string | null
|
|
83072
84168
|
size?: $Enums.VehicleSize | null
|
|
84169
|
+
status?: $Enums.VehicleStatus
|
|
83073
84170
|
gps_enabled?: boolean
|
|
83074
84171
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
83075
84172
|
is_validated?: boolean | null
|
|
@@ -83156,6 +84253,7 @@ export namespace Prisma {
|
|
|
83156
84253
|
|
|
83157
84254
|
export type TenderCreateManyCompanyInput = {
|
|
83158
84255
|
id?: string
|
|
84256
|
+
code?: string | null
|
|
83159
84257
|
title: string
|
|
83160
84258
|
description?: string | null
|
|
83161
84259
|
status?: $Enums.TenderStatus
|
|
@@ -83172,6 +84270,17 @@ export namespace Prisma {
|
|
|
83172
84270
|
updated_at?: Date | string
|
|
83173
84271
|
}
|
|
83174
84272
|
|
|
84273
|
+
export type OrderCreateManyCompanyInput = {
|
|
84274
|
+
id?: string
|
|
84275
|
+
reference?: string | null
|
|
84276
|
+
shipper_id?: string | null
|
|
84277
|
+
created_by?: string | null
|
|
84278
|
+
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
84279
|
+
status?: $Enums.RouteStatus
|
|
84280
|
+
created_at?: Date | string
|
|
84281
|
+
updated_at?: Date | string
|
|
84282
|
+
}
|
|
84283
|
+
|
|
83175
84284
|
export type GroupCreateManyCompanyInput = {
|
|
83176
84285
|
id?: string
|
|
83177
84286
|
name: string
|
|
@@ -83190,6 +84299,7 @@ export namespace Prisma {
|
|
|
83190
84299
|
export type RegularSupplierCreateManyCompanyInput = {
|
|
83191
84300
|
id?: string
|
|
83192
84301
|
supplier_id: string
|
|
84302
|
+
created_by?: string | null
|
|
83193
84303
|
created_at?: Date | string
|
|
83194
84304
|
updated_at?: Date | string
|
|
83195
84305
|
}
|
|
@@ -83216,10 +84326,23 @@ export namespace Prisma {
|
|
|
83216
84326
|
export type RegularSupplierCreateManySupplierInput = {
|
|
83217
84327
|
id?: string
|
|
83218
84328
|
company_id: string
|
|
84329
|
+
created_by?: string | null
|
|
83219
84330
|
created_at?: Date | string
|
|
83220
84331
|
updated_at?: Date | string
|
|
83221
84332
|
}
|
|
83222
84333
|
|
|
84334
|
+
export type TenderNotificationCreateManySupplierCompanyInput = {
|
|
84335
|
+
id?: string
|
|
84336
|
+
tender_id: string
|
|
84337
|
+
user_id?: string | null
|
|
84338
|
+
group_id?: string | null
|
|
84339
|
+
whatsapp?: boolean
|
|
84340
|
+
email?: boolean
|
|
84341
|
+
push?: boolean
|
|
84342
|
+
message: string
|
|
84343
|
+
created_at?: Date | string
|
|
84344
|
+
}
|
|
84345
|
+
|
|
83223
84346
|
export type ClientUpdateWithoutCompanyInput = {
|
|
83224
84347
|
id?: StringFieldUpdateOperationsInput | string
|
|
83225
84348
|
tax_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -83273,6 +84396,7 @@ export namespace Prisma {
|
|
|
83273
84396
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
83274
84397
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83275
84398
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
84399
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
83276
84400
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
83277
84401
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
83278
84402
|
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -83300,6 +84424,7 @@ export namespace Prisma {
|
|
|
83300
84424
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
83301
84425
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83302
84426
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
84427
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
83303
84428
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
83304
84429
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
83305
84430
|
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -83324,6 +84449,7 @@ export namespace Prisma {
|
|
|
83324
84449
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
83325
84450
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83326
84451
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
84452
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
83327
84453
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
83328
84454
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
83329
84455
|
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -83574,6 +84700,7 @@ export namespace Prisma {
|
|
|
83574
84700
|
|
|
83575
84701
|
export type TenderUpdateWithoutCompanyInput = {
|
|
83576
84702
|
id?: StringFieldUpdateOperationsInput | string
|
|
84703
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83577
84704
|
title?: StringFieldUpdateOperationsInput | string
|
|
83578
84705
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83579
84706
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -83596,6 +84723,7 @@ export namespace Prisma {
|
|
|
83596
84723
|
|
|
83597
84724
|
export type TenderUncheckedUpdateWithoutCompanyInput = {
|
|
83598
84725
|
id?: StringFieldUpdateOperationsInput | string
|
|
84726
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83599
84727
|
title?: StringFieldUpdateOperationsInput | string
|
|
83600
84728
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83601
84729
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -83618,6 +84746,7 @@ export namespace Prisma {
|
|
|
83618
84746
|
|
|
83619
84747
|
export type TenderUncheckedUpdateManyWithoutCompanyInput = {
|
|
83620
84748
|
id?: StringFieldUpdateOperationsInput | string
|
|
84749
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83621
84750
|
title?: StringFieldUpdateOperationsInput | string
|
|
83622
84751
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83623
84752
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -83634,6 +84763,45 @@ export namespace Prisma {
|
|
|
83634
84763
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83635
84764
|
}
|
|
83636
84765
|
|
|
84766
|
+
export type OrderUpdateWithoutCompanyInput = {
|
|
84767
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
84768
|
+
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84769
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84770
|
+
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
84771
|
+
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
84772
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84773
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84774
|
+
shipper?: ClientUpdateOneWithoutOrders_as_shipperNestedInput
|
|
84775
|
+
handling_units?: HandlingUnitUpdateManyWithoutOrderNestedInput
|
|
84776
|
+
routes?: RouteUpdateManyWithoutOrderNestedInput
|
|
84777
|
+
tenders?: TenderUpdateManyWithoutOrderNestedInput
|
|
84778
|
+
}
|
|
84779
|
+
|
|
84780
|
+
export type OrderUncheckedUpdateWithoutCompanyInput = {
|
|
84781
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
84782
|
+
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84783
|
+
shipper_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84784
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84785
|
+
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
84786
|
+
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
84787
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84788
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84789
|
+
handling_units?: HandlingUnitUncheckedUpdateManyWithoutOrderNestedInput
|
|
84790
|
+
routes?: RouteUncheckedUpdateManyWithoutOrderNestedInput
|
|
84791
|
+
tenders?: TenderUncheckedUpdateManyWithoutOrderNestedInput
|
|
84792
|
+
}
|
|
84793
|
+
|
|
84794
|
+
export type OrderUncheckedUpdateManyWithoutCompanyInput = {
|
|
84795
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
84796
|
+
reference?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84797
|
+
shipper_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84798
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84799
|
+
attachments?: NullableJsonNullValueInput | InputJsonValue
|
|
84800
|
+
status?: EnumRouteStatusFieldUpdateOperationsInput | $Enums.RouteStatus
|
|
84801
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84802
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84803
|
+
}
|
|
84804
|
+
|
|
83637
84805
|
export type GroupUpdateWithoutCompanyInput = {
|
|
83638
84806
|
id?: StringFieldUpdateOperationsInput | string
|
|
83639
84807
|
name?: StringFieldUpdateOperationsInput | string
|
|
@@ -83685,6 +84853,7 @@ export namespace Prisma {
|
|
|
83685
84853
|
|
|
83686
84854
|
export type RegularSupplierUpdateWithoutCompanyInput = {
|
|
83687
84855
|
id?: StringFieldUpdateOperationsInput | string
|
|
84856
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83688
84857
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83689
84858
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83690
84859
|
supplier?: CompaniesUpdateOneRequiredWithoutRegularSuppliers2NestedInput
|
|
@@ -83693,6 +84862,7 @@ export namespace Prisma {
|
|
|
83693
84862
|
export type RegularSupplierUncheckedUpdateWithoutCompanyInput = {
|
|
83694
84863
|
id?: StringFieldUpdateOperationsInput | string
|
|
83695
84864
|
supplier_id?: StringFieldUpdateOperationsInput | string
|
|
84865
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83696
84866
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83697
84867
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83698
84868
|
}
|
|
@@ -83700,6 +84870,7 @@ export namespace Prisma {
|
|
|
83700
84870
|
export type RegularSupplierUncheckedUpdateManyWithoutCompanyInput = {
|
|
83701
84871
|
id?: StringFieldUpdateOperationsInput | string
|
|
83702
84872
|
supplier_id?: StringFieldUpdateOperationsInput | string
|
|
84873
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83703
84874
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83704
84875
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83705
84876
|
}
|
|
@@ -83765,6 +84936,7 @@ export namespace Prisma {
|
|
|
83765
84936
|
|
|
83766
84937
|
export type RegularSupplierUpdateWithoutSupplierInput = {
|
|
83767
84938
|
id?: StringFieldUpdateOperationsInput | string
|
|
84939
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83768
84940
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83769
84941
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83770
84942
|
company?: CompaniesUpdateOneRequiredWithoutRegularSuppliersNestedInput
|
|
@@ -83773,6 +84945,7 @@ export namespace Prisma {
|
|
|
83773
84945
|
export type RegularSupplierUncheckedUpdateWithoutSupplierInput = {
|
|
83774
84946
|
id?: StringFieldUpdateOperationsInput | string
|
|
83775
84947
|
company_id?: StringFieldUpdateOperationsInput | string
|
|
84948
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83776
84949
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83777
84950
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83778
84951
|
}
|
|
@@ -83780,10 +84953,47 @@ export namespace Prisma {
|
|
|
83780
84953
|
export type RegularSupplierUncheckedUpdateManyWithoutSupplierInput = {
|
|
83781
84954
|
id?: StringFieldUpdateOperationsInput | string
|
|
83782
84955
|
company_id?: StringFieldUpdateOperationsInput | string
|
|
84956
|
+
created_by?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83783
84957
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83784
84958
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83785
84959
|
}
|
|
83786
84960
|
|
|
84961
|
+
export type TenderNotificationUpdateWithoutSupplierCompanyInput = {
|
|
84962
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
84963
|
+
whatsapp?: BoolFieldUpdateOperationsInput | boolean
|
|
84964
|
+
email?: BoolFieldUpdateOperationsInput | boolean
|
|
84965
|
+
push?: BoolFieldUpdateOperationsInput | boolean
|
|
84966
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
84967
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84968
|
+
tender?: TenderUpdateOneRequiredWithoutTenderNotificationsNestedInput
|
|
84969
|
+
user?: UserUpdateOneWithoutTenderNotificationsNestedInput
|
|
84970
|
+
group?: GroupUpdateOneWithoutTenderNotificationsNestedInput
|
|
84971
|
+
}
|
|
84972
|
+
|
|
84973
|
+
export type TenderNotificationUncheckedUpdateWithoutSupplierCompanyInput = {
|
|
84974
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
84975
|
+
tender_id?: StringFieldUpdateOperationsInput | string
|
|
84976
|
+
user_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84977
|
+
group_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84978
|
+
whatsapp?: BoolFieldUpdateOperationsInput | boolean
|
|
84979
|
+
email?: BoolFieldUpdateOperationsInput | boolean
|
|
84980
|
+
push?: BoolFieldUpdateOperationsInput | boolean
|
|
84981
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
84982
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84983
|
+
}
|
|
84984
|
+
|
|
84985
|
+
export type TenderNotificationUncheckedUpdateManyWithoutSupplierCompanyInput = {
|
|
84986
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
84987
|
+
tender_id?: StringFieldUpdateOperationsInput | string
|
|
84988
|
+
user_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84989
|
+
group_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84990
|
+
whatsapp?: BoolFieldUpdateOperationsInput | boolean
|
|
84991
|
+
email?: BoolFieldUpdateOperationsInput | boolean
|
|
84992
|
+
push?: BoolFieldUpdateOperationsInput | boolean
|
|
84993
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
84994
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84995
|
+
}
|
|
84996
|
+
|
|
83787
84997
|
export type RouteHandlingUnitCreateManyHandling_unitInput = {
|
|
83788
84998
|
id?: string
|
|
83789
84999
|
route_id: string
|
|
@@ -83929,6 +85139,7 @@ export namespace Prisma {
|
|
|
83929
85139
|
|
|
83930
85140
|
export type TenderCreateManyUserInput = {
|
|
83931
85141
|
id?: string
|
|
85142
|
+
code?: string | null
|
|
83932
85143
|
title: string
|
|
83933
85144
|
description?: string | null
|
|
83934
85145
|
status?: $Enums.TenderStatus
|
|
@@ -83950,6 +85161,7 @@ export namespace Prisma {
|
|
|
83950
85161
|
tender_id: string
|
|
83951
85162
|
user_receives_id: string
|
|
83952
85163
|
message: string
|
|
85164
|
+
read_at?: Date | string | null
|
|
83953
85165
|
created_at?: Date | string
|
|
83954
85166
|
}
|
|
83955
85167
|
|
|
@@ -83958,6 +85170,7 @@ export namespace Prisma {
|
|
|
83958
85170
|
tender_id: string
|
|
83959
85171
|
user_sends_id: string
|
|
83960
85172
|
message: string
|
|
85173
|
+
read_at?: Date | string | null
|
|
83961
85174
|
created_at?: Date | string
|
|
83962
85175
|
}
|
|
83963
85176
|
|
|
@@ -84000,6 +85213,7 @@ export namespace Prisma {
|
|
|
84000
85213
|
id?: string
|
|
84001
85214
|
tender_id: string
|
|
84002
85215
|
group_id?: string | null
|
|
85216
|
+
supplier_company_id?: string | null
|
|
84003
85217
|
whatsapp?: boolean
|
|
84004
85218
|
email?: boolean
|
|
84005
85219
|
push?: boolean
|
|
@@ -84284,6 +85498,7 @@ export namespace Prisma {
|
|
|
84284
85498
|
|
|
84285
85499
|
export type TenderUpdateWithoutUserInput = {
|
|
84286
85500
|
id?: StringFieldUpdateOperationsInput | string
|
|
85501
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84287
85502
|
title?: StringFieldUpdateOperationsInput | string
|
|
84288
85503
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84289
85504
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -84306,6 +85521,7 @@ export namespace Prisma {
|
|
|
84306
85521
|
|
|
84307
85522
|
export type TenderUncheckedUpdateWithoutUserInput = {
|
|
84308
85523
|
id?: StringFieldUpdateOperationsInput | string
|
|
85524
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84309
85525
|
title?: StringFieldUpdateOperationsInput | string
|
|
84310
85526
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84311
85527
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -84328,6 +85544,7 @@ export namespace Prisma {
|
|
|
84328
85544
|
|
|
84329
85545
|
export type TenderUncheckedUpdateManyWithoutUserInput = {
|
|
84330
85546
|
id?: StringFieldUpdateOperationsInput | string
|
|
85547
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84331
85548
|
title?: StringFieldUpdateOperationsInput | string
|
|
84332
85549
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84333
85550
|
status?: EnumTenderStatusFieldUpdateOperationsInput | $Enums.TenderStatus
|
|
@@ -84347,6 +85564,7 @@ export namespace Prisma {
|
|
|
84347
85564
|
export type TenderChatUpdateWithoutUser_sendsInput = {
|
|
84348
85565
|
id?: StringFieldUpdateOperationsInput | string
|
|
84349
85566
|
message?: StringFieldUpdateOperationsInput | string
|
|
85567
|
+
read_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
84350
85568
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84351
85569
|
tender?: TenderUpdateOneRequiredWithoutTenderChatsNestedInput
|
|
84352
85570
|
user_receives?: UserUpdateOneRequiredWithoutTenderChats2NestedInput
|
|
@@ -84357,6 +85575,7 @@ export namespace Prisma {
|
|
|
84357
85575
|
tender_id?: StringFieldUpdateOperationsInput | string
|
|
84358
85576
|
user_receives_id?: StringFieldUpdateOperationsInput | string
|
|
84359
85577
|
message?: StringFieldUpdateOperationsInput | string
|
|
85578
|
+
read_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
84360
85579
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84361
85580
|
}
|
|
84362
85581
|
|
|
@@ -84365,12 +85584,14 @@ export namespace Prisma {
|
|
|
84365
85584
|
tender_id?: StringFieldUpdateOperationsInput | string
|
|
84366
85585
|
user_receives_id?: StringFieldUpdateOperationsInput | string
|
|
84367
85586
|
message?: StringFieldUpdateOperationsInput | string
|
|
85587
|
+
read_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
84368
85588
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84369
85589
|
}
|
|
84370
85590
|
|
|
84371
85591
|
export type TenderChatUpdateWithoutUser_receivesInput = {
|
|
84372
85592
|
id?: StringFieldUpdateOperationsInput | string
|
|
84373
85593
|
message?: StringFieldUpdateOperationsInput | string
|
|
85594
|
+
read_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
84374
85595
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84375
85596
|
tender?: TenderUpdateOneRequiredWithoutTenderChatsNestedInput
|
|
84376
85597
|
user_sends?: UserUpdateOneRequiredWithoutTenderChatsNestedInput
|
|
@@ -84381,6 +85602,7 @@ export namespace Prisma {
|
|
|
84381
85602
|
tender_id?: StringFieldUpdateOperationsInput | string
|
|
84382
85603
|
user_sends_id?: StringFieldUpdateOperationsInput | string
|
|
84383
85604
|
message?: StringFieldUpdateOperationsInput | string
|
|
85605
|
+
read_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
84384
85606
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84385
85607
|
}
|
|
84386
85608
|
|
|
@@ -84389,6 +85611,7 @@ export namespace Prisma {
|
|
|
84389
85611
|
tender_id?: StringFieldUpdateOperationsInput | string
|
|
84390
85612
|
user_sends_id?: StringFieldUpdateOperationsInput | string
|
|
84391
85613
|
message?: StringFieldUpdateOperationsInput | string
|
|
85614
|
+
read_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
84392
85615
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84393
85616
|
}
|
|
84394
85617
|
|
|
@@ -84506,12 +85729,14 @@ export namespace Prisma {
|
|
|
84506
85729
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84507
85730
|
tender?: TenderUpdateOneRequiredWithoutTenderNotificationsNestedInput
|
|
84508
85731
|
group?: GroupUpdateOneWithoutTenderNotificationsNestedInput
|
|
85732
|
+
supplierCompany?: CompaniesUpdateOneWithoutSupplierNotificationsNestedInput
|
|
84509
85733
|
}
|
|
84510
85734
|
|
|
84511
85735
|
export type TenderNotificationUncheckedUpdateWithoutUserInput = {
|
|
84512
85736
|
id?: StringFieldUpdateOperationsInput | string
|
|
84513
85737
|
tender_id?: StringFieldUpdateOperationsInput | string
|
|
84514
85738
|
group_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85739
|
+
supplier_company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84515
85740
|
whatsapp?: BoolFieldUpdateOperationsInput | boolean
|
|
84516
85741
|
email?: BoolFieldUpdateOperationsInput | boolean
|
|
84517
85742
|
push?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -84523,6 +85748,7 @@ export namespace Prisma {
|
|
|
84523
85748
|
id?: StringFieldUpdateOperationsInput | string
|
|
84524
85749
|
tender_id?: StringFieldUpdateOperationsInput | string
|
|
84525
85750
|
group_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85751
|
+
supplier_company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84526
85752
|
whatsapp?: BoolFieldUpdateOperationsInput | boolean
|
|
84527
85753
|
email?: BoolFieldUpdateOperationsInput | boolean
|
|
84528
85754
|
push?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -84549,6 +85775,7 @@ export namespace Prisma {
|
|
|
84549
85775
|
color?: $Enums.VehicleColor | null
|
|
84550
85776
|
chassis_number?: string | null
|
|
84551
85777
|
size?: $Enums.VehicleSize | null
|
|
85778
|
+
status?: $Enums.VehicleStatus
|
|
84552
85779
|
gps_enabled?: boolean
|
|
84553
85780
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
84554
85781
|
company_id?: string | null
|
|
@@ -84593,6 +85820,7 @@ export namespace Prisma {
|
|
|
84593
85820
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
84594
85821
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84595
85822
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
85823
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
84596
85824
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
84597
85825
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
84598
85826
|
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -84619,6 +85847,7 @@ export namespace Prisma {
|
|
|
84619
85847
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
84620
85848
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84621
85849
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
85850
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
84622
85851
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
84623
85852
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
84624
85853
|
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -84643,6 +85872,7 @@ export namespace Prisma {
|
|
|
84643
85872
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
84644
85873
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84645
85874
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
85875
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
84646
85876
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
84647
85877
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
84648
85878
|
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -84663,6 +85893,7 @@ export namespace Prisma {
|
|
|
84663
85893
|
color?: $Enums.VehicleColor | null
|
|
84664
85894
|
chassis_number?: string | null
|
|
84665
85895
|
size?: $Enums.VehicleSize | null
|
|
85896
|
+
status?: $Enums.VehicleStatus
|
|
84666
85897
|
gps_enabled?: boolean
|
|
84667
85898
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
84668
85899
|
company_id?: string | null
|
|
@@ -84681,6 +85912,7 @@ export namespace Prisma {
|
|
|
84681
85912
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
84682
85913
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84683
85914
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
85915
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
84684
85916
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
84685
85917
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
84686
85918
|
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -84707,6 +85939,7 @@ export namespace Prisma {
|
|
|
84707
85939
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
84708
85940
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84709
85941
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
85942
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
84710
85943
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
84711
85944
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
84712
85945
|
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -84731,6 +85964,7 @@ export namespace Prisma {
|
|
|
84731
85964
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
84732
85965
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84733
85966
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
85967
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
84734
85968
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
84735
85969
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
84736
85970
|
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -85833,6 +87067,7 @@ export namespace Prisma {
|
|
|
85833
87067
|
color?: $Enums.VehicleColor | null
|
|
85834
87068
|
chassis_number?: string | null
|
|
85835
87069
|
size?: $Enums.VehicleSize | null
|
|
87070
|
+
status?: $Enums.VehicleStatus
|
|
85836
87071
|
gps_enabled?: boolean
|
|
85837
87072
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
85838
87073
|
company_id?: string | null
|
|
@@ -85871,6 +87106,7 @@ export namespace Prisma {
|
|
|
85871
87106
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
85872
87107
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85873
87108
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
87109
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
85874
87110
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
85875
87111
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
85876
87112
|
is_validated?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -85897,6 +87133,7 @@ export namespace Prisma {
|
|
|
85897
87133
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
85898
87134
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85899
87135
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
87136
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
85900
87137
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
85901
87138
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
85902
87139
|
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -85921,6 +87158,7 @@ export namespace Prisma {
|
|
|
85921
87158
|
color?: NullableEnumVehicleColorFieldUpdateOperationsInput | $Enums.VehicleColor | null
|
|
85922
87159
|
chassis_number?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85923
87160
|
size?: NullableEnumVehicleSizeFieldUpdateOperationsInput | $Enums.VehicleSize | null
|
|
87161
|
+
status?: EnumVehicleStatusFieldUpdateOperationsInput | $Enums.VehicleStatus
|
|
85924
87162
|
gps_enabled?: BoolFieldUpdateOperationsInput | boolean
|
|
85925
87163
|
image_url?: NullableJsonNullValueInput | InputJsonValue
|
|
85926
87164
|
company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -86047,6 +87285,7 @@ export namespace Prisma {
|
|
|
86047
87285
|
user_sends_id: string
|
|
86048
87286
|
user_receives_id: string
|
|
86049
87287
|
message: string
|
|
87288
|
+
read_at?: Date | string | null
|
|
86050
87289
|
created_at?: Date | string
|
|
86051
87290
|
}
|
|
86052
87291
|
|
|
@@ -86054,6 +87293,7 @@ export namespace Prisma {
|
|
|
86054
87293
|
id?: string
|
|
86055
87294
|
user_id?: string | null
|
|
86056
87295
|
group_id?: string | null
|
|
87296
|
+
supplier_company_id?: string | null
|
|
86057
87297
|
whatsapp?: boolean
|
|
86058
87298
|
email?: boolean
|
|
86059
87299
|
push?: boolean
|
|
@@ -86135,6 +87375,7 @@ export namespace Prisma {
|
|
|
86135
87375
|
export type TenderChatUpdateWithoutTenderInput = {
|
|
86136
87376
|
id?: StringFieldUpdateOperationsInput | string
|
|
86137
87377
|
message?: StringFieldUpdateOperationsInput | string
|
|
87378
|
+
read_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
86138
87379
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86139
87380
|
user_sends?: UserUpdateOneRequiredWithoutTenderChatsNestedInput
|
|
86140
87381
|
user_receives?: UserUpdateOneRequiredWithoutTenderChats2NestedInput
|
|
@@ -86145,6 +87386,7 @@ export namespace Prisma {
|
|
|
86145
87386
|
user_sends_id?: StringFieldUpdateOperationsInput | string
|
|
86146
87387
|
user_receives_id?: StringFieldUpdateOperationsInput | string
|
|
86147
87388
|
message?: StringFieldUpdateOperationsInput | string
|
|
87389
|
+
read_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
86148
87390
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86149
87391
|
}
|
|
86150
87392
|
|
|
@@ -86153,6 +87395,7 @@ export namespace Prisma {
|
|
|
86153
87395
|
user_sends_id?: StringFieldUpdateOperationsInput | string
|
|
86154
87396
|
user_receives_id?: StringFieldUpdateOperationsInput | string
|
|
86155
87397
|
message?: StringFieldUpdateOperationsInput | string
|
|
87398
|
+
read_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
86156
87399
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86157
87400
|
}
|
|
86158
87401
|
|
|
@@ -86165,12 +87408,14 @@ export namespace Prisma {
|
|
|
86165
87408
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86166
87409
|
user?: UserUpdateOneWithoutTenderNotificationsNestedInput
|
|
86167
87410
|
group?: GroupUpdateOneWithoutTenderNotificationsNestedInput
|
|
87411
|
+
supplierCompany?: CompaniesUpdateOneWithoutSupplierNotificationsNestedInput
|
|
86168
87412
|
}
|
|
86169
87413
|
|
|
86170
87414
|
export type TenderNotificationUncheckedUpdateWithoutTenderInput = {
|
|
86171
87415
|
id?: StringFieldUpdateOperationsInput | string
|
|
86172
87416
|
user_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86173
87417
|
group_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
87418
|
+
supplier_company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86174
87419
|
whatsapp?: BoolFieldUpdateOperationsInput | boolean
|
|
86175
87420
|
email?: BoolFieldUpdateOperationsInput | boolean
|
|
86176
87421
|
push?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -86182,6 +87427,7 @@ export namespace Prisma {
|
|
|
86182
87427
|
id?: StringFieldUpdateOperationsInput | string
|
|
86183
87428
|
user_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86184
87429
|
group_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
87430
|
+
supplier_company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86185
87431
|
whatsapp?: BoolFieldUpdateOperationsInput | boolean
|
|
86186
87432
|
email?: BoolFieldUpdateOperationsInput | boolean
|
|
86187
87433
|
push?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -86305,6 +87551,7 @@ export namespace Prisma {
|
|
|
86305
87551
|
id?: string
|
|
86306
87552
|
tender_id: string
|
|
86307
87553
|
user_id?: string | null
|
|
87554
|
+
supplier_company_id?: string | null
|
|
86308
87555
|
whatsapp?: boolean
|
|
86309
87556
|
email?: boolean
|
|
86310
87557
|
push?: boolean
|
|
@@ -86342,12 +87589,14 @@ export namespace Prisma {
|
|
|
86342
87589
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86343
87590
|
tender?: TenderUpdateOneRequiredWithoutTenderNotificationsNestedInput
|
|
86344
87591
|
user?: UserUpdateOneWithoutTenderNotificationsNestedInput
|
|
87592
|
+
supplierCompany?: CompaniesUpdateOneWithoutSupplierNotificationsNestedInput
|
|
86345
87593
|
}
|
|
86346
87594
|
|
|
86347
87595
|
export type TenderNotificationUncheckedUpdateWithoutGroupInput = {
|
|
86348
87596
|
id?: StringFieldUpdateOperationsInput | string
|
|
86349
87597
|
tender_id?: StringFieldUpdateOperationsInput | string
|
|
86350
87598
|
user_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
87599
|
+
supplier_company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86351
87600
|
whatsapp?: BoolFieldUpdateOperationsInput | boolean
|
|
86352
87601
|
email?: BoolFieldUpdateOperationsInput | boolean
|
|
86353
87602
|
push?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -86359,6 +87608,7 @@ export namespace Prisma {
|
|
|
86359
87608
|
id?: StringFieldUpdateOperationsInput | string
|
|
86360
87609
|
tender_id?: StringFieldUpdateOperationsInput | string
|
|
86361
87610
|
user_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
87611
|
+
supplier_company_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86362
87612
|
whatsapp?: BoolFieldUpdateOperationsInput | boolean
|
|
86363
87613
|
email?: BoolFieldUpdateOperationsInput | boolean
|
|
86364
87614
|
push?: BoolFieldUpdateOperationsInput | boolean
|