efiber-prisma-schema 2.0.7 → 2.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2450 @@
1
+
2
+ /* !!! This is code generated by Prisma. Do not edit directly. !!!
3
+ /* eslint-disable */
4
+ // biome-ignore-all lint: generated file
5
+
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+
8
+ const {
9
+ Decimal,
10
+ objectEnumValues,
11
+ makeStrictEnum,
12
+ Public,
13
+ getRuntime,
14
+ skip
15
+ } = require('./runtime/index-browser.js')
16
+
17
+
18
+ const Prisma = {}
19
+
20
+ exports.Prisma = Prisma
21
+ exports.$Enums = {}
22
+
23
+ /**
24
+ * Prisma Client JS version: 6.19.2
25
+ * Query Engine version: c2990dca591cba766e3b7ef5d9e8a84796e47ab7
26
+ */
27
+ Prisma.prismaVersion = {
28
+ client: "6.19.2",
29
+ engine: "c2990dca591cba766e3b7ef5d9e8a84796e47ab7"
30
+ }
31
+
32
+ Prisma.PrismaClientKnownRequestError = () => {
33
+ const runtimeName = getRuntime().prettyName;
34
+ throw new Error(`PrismaClientKnownRequestError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
35
+ In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
36
+ )};
37
+ Prisma.PrismaClientUnknownRequestError = () => {
38
+ const runtimeName = getRuntime().prettyName;
39
+ throw new Error(`PrismaClientUnknownRequestError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
40
+ In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
41
+ )}
42
+ Prisma.PrismaClientRustPanicError = () => {
43
+ const runtimeName = getRuntime().prettyName;
44
+ throw new Error(`PrismaClientRustPanicError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
45
+ In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
46
+ )}
47
+ Prisma.PrismaClientInitializationError = () => {
48
+ const runtimeName = getRuntime().prettyName;
49
+ throw new Error(`PrismaClientInitializationError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
50
+ In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
51
+ )}
52
+ Prisma.PrismaClientValidationError = () => {
53
+ const runtimeName = getRuntime().prettyName;
54
+ throw new Error(`PrismaClientValidationError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
55
+ In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
56
+ )}
57
+ Prisma.Decimal = Decimal
58
+
59
+ /**
60
+ * Re-export of sql-template-tag
61
+ */
62
+ Prisma.sql = () => {
63
+ const runtimeName = getRuntime().prettyName;
64
+ throw new Error(`sqltag is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
65
+ In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
66
+ )}
67
+ Prisma.empty = () => {
68
+ const runtimeName = getRuntime().prettyName;
69
+ throw new Error(`empty is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
70
+ In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
71
+ )}
72
+ Prisma.join = () => {
73
+ const runtimeName = getRuntime().prettyName;
74
+ throw new Error(`join is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
75
+ In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
76
+ )}
77
+ Prisma.raw = () => {
78
+ const runtimeName = getRuntime().prettyName;
79
+ throw new Error(`raw is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
80
+ In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
81
+ )}
82
+ Prisma.validator = Public.validator
83
+
84
+ /**
85
+ * Extensions
86
+ */
87
+ Prisma.getExtensionContext = () => {
88
+ const runtimeName = getRuntime().prettyName;
89
+ throw new Error(`Extensions.getExtensionContext is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
90
+ In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
91
+ )}
92
+ Prisma.defineExtension = () => {
93
+ const runtimeName = getRuntime().prettyName;
94
+ throw new Error(`Extensions.defineExtension is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
95
+ In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
96
+ )}
97
+
98
+ /**
99
+ * Shorthand utilities for JSON filtering
100
+ */
101
+ Prisma.DbNull = objectEnumValues.instances.DbNull
102
+ Prisma.JsonNull = objectEnumValues.instances.JsonNull
103
+ Prisma.AnyNull = objectEnumValues.instances.AnyNull
104
+
105
+ Prisma.NullTypes = {
106
+ DbNull: objectEnumValues.classes.DbNull,
107
+ JsonNull: objectEnumValues.classes.JsonNull,
108
+ AnyNull: objectEnumValues.classes.AnyNull
109
+ }
110
+
111
+
112
+
113
+ /**
114
+ * Enums
115
+ */
116
+
117
+ exports.Prisma.TransactionIsolationLevel = makeStrictEnum({
118
+ ReadUncommitted: 'ReadUncommitted',
119
+ ReadCommitted: 'ReadCommitted',
120
+ RepeatableRead: 'RepeatableRead',
121
+ Serializable: 'Serializable'
122
+ });
123
+
124
+ exports.Prisma.CountryScalarFieldEnum = {
125
+ id: 'id',
126
+ no: 'no',
127
+ name: 'name',
128
+ official_name: 'official_name',
129
+ code: 'code',
130
+ capital: 'capital',
131
+ region: 'region',
132
+ subregion: 'subregion',
133
+ population: 'population',
134
+ timezones: 'timezones',
135
+ flag: 'flag',
136
+ createdAt: 'createdAt',
137
+ updatedAt: 'updatedAt'
138
+ };
139
+
140
+ exports.Prisma.CamusatCountryScalarFieldEnum = {
141
+ id: 'id',
142
+ no: 'no',
143
+ name: 'name',
144
+ original: 'original',
145
+ description: 'description',
146
+ status: 'status',
147
+ type: 'type',
148
+ createdAt: 'createdAt',
149
+ updatedAt: 'updatedAt',
150
+ deletedAt: 'deletedAt',
151
+ countryId: 'countryId'
152
+ };
153
+
154
+ exports.Prisma.CamusatClientScalarFieldEnum = {
155
+ id: 'id',
156
+ no: 'no',
157
+ name: 'name',
158
+ logo: 'logo',
159
+ type: 'type',
160
+ createdAt: 'createdAt',
161
+ updatedAt: 'updatedAt',
162
+ deletedAt: 'deletedAt',
163
+ countryId: 'countryId'
164
+ };
165
+
166
+ exports.Prisma.PlatformScalarFieldEnum = {
167
+ id: 'id',
168
+ no: 'no',
169
+ name: 'name',
170
+ url: 'url',
171
+ directory: 'directory',
172
+ status: 'status',
173
+ countries: 'countries',
174
+ createdAt: 'createdAt',
175
+ updatedAt: 'updatedAt',
176
+ deletedAt: 'deletedAt'
177
+ };
178
+
179
+ exports.Prisma.PositionScalarFieldEnum = {
180
+ id: 'id',
181
+ no: 'no',
182
+ name: 'name',
183
+ description: 'description',
184
+ status: 'status',
185
+ countries: 'countries',
186
+ createdAt: 'createdAt',
187
+ updatedAt: 'updatedAt',
188
+ deletedAt: 'deletedAt'
189
+ };
190
+
191
+ exports.Prisma.RoleScalarFieldEnum = {
192
+ id: 'id',
193
+ no: 'no',
194
+ name: 'name',
195
+ description: 'description',
196
+ status: 'status',
197
+ countries: 'countries',
198
+ platforms: 'platforms',
199
+ login: 'login',
200
+ access_web: 'access_web',
201
+ access_mobile: 'access_mobile',
202
+ add_users: 'add_users',
203
+ view_users: 'view_users',
204
+ delete_users: 'delete_users',
205
+ view_requests: 'view_requests',
206
+ manage_requests: 'manage_requests',
207
+ add_main_projects: 'add_main_projects',
208
+ view_main_projects: 'view_main_projects',
209
+ edit_main_projects: 'edit_main_projects',
210
+ delete_main_projects: 'delete_main_projects',
211
+ view_settings: 'view_settings',
212
+ view_audit: 'view_audit',
213
+ full_projects: 'full_projects',
214
+ add_projects: 'add_projects',
215
+ edit_projects: 'edit_projects',
216
+ view_projects: 'view_projects',
217
+ delete_projects: 'delete_projects',
218
+ add_sub_projects: 'add_sub_projects',
219
+ manage_work_orders: 'manage_work_orders',
220
+ full_teams: 'full_teams',
221
+ add_team: 'add_team',
222
+ view_team: 'view_team',
223
+ quality: 'quality',
224
+ dispatch_web_access: 'dispatch_web_access',
225
+ dispatch_mobile: 'dispatch_mobile',
226
+ dispatch_add_workorders: 'dispatch_add_workorders',
227
+ dispatch_view_workorders: 'dispatch_view_workorders',
228
+ dispatch_edit_workorders: 'dispatch_edit_workorders',
229
+ dispatch_view_schedule: 'dispatch_view_schedule',
230
+ dispatch_add_teams: 'dispatch_add_teams',
231
+ dispatch_view_teams: 'dispatch_view_teams',
232
+ dispatch_edit_teams: 'dispatch_edit_teams',
233
+ dispatch_delete_teams: 'dispatch_delete_teams',
234
+ dispatch_view_projects: 'dispatch_view_projects',
235
+ dispatch_edit_projects: 'dispatch_edit_projects',
236
+ dispatch_edit_materials: 'dispatch_edit_materials',
237
+ dispatch_view_materials: 'dispatch_view_materials',
238
+ dispatch_add_materials: 'dispatch_add_materials',
239
+ dispatch_delete_materials: 'dispatch_delete_materials',
240
+ dispatch_view_reports: 'dispatch_view_reports',
241
+ dispatch_view_kpi: 'dispatch_view_kpi',
242
+ integration_web_access: 'integration_web_access',
243
+ integration_mobile: 'integration_mobile',
244
+ createdAt: 'createdAt',
245
+ updatedAt: 'updatedAt',
246
+ deletedAt: 'deletedAt'
247
+ };
248
+
249
+ exports.Prisma.TemplateScalarFieldEnum = {
250
+ id: 'id',
251
+ no: 'no',
252
+ name: 'name',
253
+ statusColor: 'statusColor',
254
+ buttonName: 'buttonName',
255
+ workflowType: 'workflowType',
256
+ createdAt: 'createdAt'
257
+ };
258
+
259
+ exports.Prisma.FeatureScalarFieldEnum = {
260
+ id: 'id',
261
+ no: 'no',
262
+ functionality: 'functionality',
263
+ description: 'description',
264
+ classification: 'classification',
265
+ KPI: 'KPI',
266
+ options: 'options',
267
+ linkToScheduler: 'linkToScheduler',
268
+ value: 'value',
269
+ createdAt: 'createdAt',
270
+ updatedAt: 'updatedAt',
271
+ deletedAt: 'deletedAt',
272
+ featureTypeId: 'featureTypeId',
273
+ templateId: 'templateId'
274
+ };
275
+
276
+ exports.Prisma.FeatureTypeScalarFieldEnum = {
277
+ id: 'id',
278
+ no: 'no',
279
+ type: 'type',
280
+ functionality: 'functionality',
281
+ createdAt: 'createdAt',
282
+ updatedAt: 'updatedAt',
283
+ deletedAt: 'deletedAt'
284
+ };
285
+
286
+ exports.Prisma.TemplateComponentScalarFieldEnum = {
287
+ id: 'id',
288
+ no: 'no',
289
+ type: 'type',
290
+ createdAt: 'createdAt',
291
+ templateId: 'templateId',
292
+ bomComponentId: 'bomComponentId',
293
+ dispatchProjectId: 'dispatchProjectId',
294
+ index: 'index'
295
+ };
296
+
297
+ exports.Prisma.ProjectWorkFlowScalarFieldEnum = {
298
+ id: 'id',
299
+ no: 'no',
300
+ name: 'name',
301
+ projectId: 'projectId',
302
+ index: 'index',
303
+ createdAt: 'createdAt',
304
+ updatedAt: 'updatedAt',
305
+ templateId: 'templateId',
306
+ billofMaterialId: 'billofMaterialId'
307
+ };
308
+
309
+ exports.Prisma.TeamTypeScalarFieldEnum = {
310
+ id: 'id',
311
+ no: 'no',
312
+ name: 'name',
313
+ description: 'description',
314
+ status: 'status',
315
+ countries: 'countries',
316
+ platforms: 'platforms',
317
+ createdAt: 'createdAt',
318
+ updatedAt: 'updatedAt',
319
+ deletedAt: 'deletedAt'
320
+ };
321
+
322
+ exports.Prisma.TeamScalarFieldEnum = {
323
+ id: 'id',
324
+ no: 'no',
325
+ name: 'name',
326
+ description: 'description',
327
+ status: 'status',
328
+ countries: 'countries',
329
+ platforms: 'platforms',
330
+ createdAt: 'createdAt',
331
+ updatedAt: 'updatedAt',
332
+ deletedAt: 'deletedAt',
333
+ teamTypeId: 'teamTypeId'
334
+ };
335
+
336
+ exports.Prisma.TeamPlatformScalarFieldEnum = {
337
+ id: 'id',
338
+ no: 'no',
339
+ name: 'name',
340
+ description: 'description',
341
+ priority: 'priority',
342
+ status: 'status',
343
+ countries: 'countries',
344
+ platforms: 'platforms',
345
+ staffs: 'staffs',
346
+ createdAt: 'createdAt',
347
+ updatedAt: 'updatedAt',
348
+ deletedAt: 'deletedAt',
349
+ teamId: 'teamId',
350
+ userId: 'userId'
351
+ };
352
+
353
+ exports.Prisma.UserScalarFieldEnum = {
354
+ id: 'id',
355
+ no: 'no',
356
+ name: 'name',
357
+ surname: 'surname',
358
+ email: 'email',
359
+ mobile: 'mobile',
360
+ password: 'password',
361
+ otp: 'otp',
362
+ passport: 'passport',
363
+ passportFile: 'passportFile',
364
+ status: 'status',
365
+ countries: 'countries',
366
+ platforms: 'platforms',
367
+ staffId: 'staffId',
368
+ deviceId1: 'deviceId1',
369
+ deviceId2: 'deviceId2',
370
+ notificationTokens: 'notificationTokens',
371
+ webNotificationTokens: 'webNotificationTokens',
372
+ refreshToken: 'refreshToken',
373
+ createdAt: 'createdAt',
374
+ updatedAt: 'updatedAt',
375
+ activatedAt: 'activatedAt',
376
+ deletedAt: 'deletedAt',
377
+ positionId: 'positionId',
378
+ teamTypeId: 'teamTypeId',
379
+ teamId: 'teamId',
380
+ countryId: 'countryId',
381
+ roleId: 'roleId'
382
+ };
383
+
384
+ exports.Prisma.MainProjectScalarFieldEnum = {
385
+ id: 'id',
386
+ no: 'no',
387
+ camusatCountryId: 'camusatCountryId',
388
+ camusatClientId: 'camusatClientId',
389
+ name: 'name'
390
+ };
391
+
392
+ exports.Prisma.ProjectScalarFieldEnum = {
393
+ id: 'id',
394
+ no: 'no',
395
+ name: 'name',
396
+ logo: 'logo',
397
+ status: 'status',
398
+ countries: 'countries',
399
+ auditMatrices: 'auditMatrices',
400
+ projectPhase: 'projectPhase',
401
+ createdAt: 'createdAt',
402
+ updatedAt: 'updatedAt',
403
+ activatedAt: 'activatedAt',
404
+ deletedAt: 'deletedAt',
405
+ mainProjectId: 'mainProjectId',
406
+ userId: 'userId',
407
+ conduitTemplateId: 'conduitTemplateId'
408
+ };
409
+
410
+ exports.Prisma.IntegrationProjectUserStatusScalarFieldEnum = {
411
+ id: 'id',
412
+ no: 'no',
413
+ isOnline: 'isOnline',
414
+ connectedAt: 'connectedAt',
415
+ createdAt: 'createdAt',
416
+ updatedAt: 'updatedAt',
417
+ deletedAt: 'deletedAt',
418
+ userId: 'userId',
419
+ projectId: 'projectId',
420
+ clusterId: 'clusterId'
421
+ };
422
+
423
+ exports.Prisma.ProjectPhaseLogScalarFieldEnum = {
424
+ id: 'id',
425
+ no: 'no',
426
+ projectId: 'projectId',
427
+ phase: 'phase',
428
+ action: 'action',
429
+ comment: 'comment',
430
+ createdAt: 'createdAt',
431
+ updatedAt: 'updatedAt',
432
+ deletedAt: 'deletedAt',
433
+ updatedById: 'updatedById'
434
+ };
435
+
436
+ exports.Prisma.AuditScalarFieldEnum = {
437
+ id: 'id',
438
+ no: 'no',
439
+ module: 'module',
440
+ moduleId: 'moduleId',
441
+ activity: 'activity',
442
+ detail: 'detail',
443
+ device: 'device',
444
+ deviceIp: 'deviceIp',
445
+ platform: 'platform',
446
+ status: 'status',
447
+ createdAt: 'createdAt',
448
+ updatedAt: 'updatedAt',
449
+ deletedAt: 'deletedAt',
450
+ userId: 'userId'
451
+ };
452
+
453
+ exports.Prisma.DispatchTeamScalarFieldEnum = {
454
+ id: 'id',
455
+ name: 'name',
456
+ status: 'status',
457
+ createdAt: 'createdAt',
458
+ updatedAt: 'updatedAt',
459
+ deletedAt: 'deletedAt',
460
+ type: 'type',
461
+ leadTechnicianId: 'leadTechnicianId',
462
+ firstTechnicianId: 'firstTechnicianId',
463
+ secondTechnicianId: 'secondTechnicianId',
464
+ otherTechnicianId: 'otherTechnicianId',
465
+ contractorTeamId: 'contractorTeamId'
466
+ };
467
+
468
+ exports.Prisma.DispatchProjectScalarFieldEnum = {
469
+ id: 'id',
470
+ no: 'no',
471
+ name: 'name',
472
+ type: 'type',
473
+ logo: 'logo',
474
+ status: 'status',
475
+ createdAt: 'createdAt',
476
+ updatedAt: 'updatedAt',
477
+ activatedAt: 'activatedAt',
478
+ deletedAt: 'deletedAt',
479
+ userId: 'userId',
480
+ projectId: 'projectId',
481
+ subsidiaryId: 'subsidiaryId'
482
+ };
483
+
484
+ exports.Prisma.ProjectTypeScalarFieldEnum = {
485
+ id: 'id',
486
+ no: 'no',
487
+ name: 'name'
488
+ };
489
+
490
+ exports.Prisma.EmailConfigurationsScalarFieldEnum = {
491
+ id: 'id',
492
+ no: 'no',
493
+ name: 'name',
494
+ email: 'email',
495
+ password: 'password',
496
+ typeserver: 'typeserver',
497
+ server: 'server',
498
+ serverportincoming: 'serverportincoming',
499
+ serverportoutgoing: 'serverportoutgoing',
500
+ authincoming: 'authincoming',
501
+ authoutgoing: 'authoutgoing',
502
+ sslincoming: 'sslincoming',
503
+ ssloutgoing: 'ssloutgoing',
504
+ infodelimiter: 'infodelimiter',
505
+ otherdelimiter: 'otherdelimiter',
506
+ subject: 'subject',
507
+ status: 'status',
508
+ channel: 'channel',
509
+ mainId: 'mainId',
510
+ column1title: 'column1title',
511
+ column1key: 'column1key',
512
+ column2title: 'column2title',
513
+ column2key: 'column2key',
514
+ typeKey: 'typeKey',
515
+ types: 'types',
516
+ data: 'data',
517
+ sampleData: 'sampleData',
518
+ emailcount: 'emailcount',
519
+ emailsamplenumber: 'emailsamplenumber',
520
+ emailuid: 'emailuid',
521
+ emailfirstpull: 'emailfirstpull',
522
+ emailfirstcount: 'emailfirstcount',
523
+ excelrownumber: 'excelrownumber',
524
+ isCustomSla: 'isCustomSla',
525
+ slaFieldKey: 'slaFieldKey',
526
+ createdAt: 'createdAt',
527
+ updatedAt: 'updatedAt',
528
+ activatedAt: 'activatedAt',
529
+ deletedAt: 'deletedAt',
530
+ projectId: 'projectId'
531
+ };
532
+
533
+ exports.Prisma.EmailsIncomingSampleScalarFieldEnum = {
534
+ id: 'id',
535
+ messageId: 'messageId',
536
+ subject: 'subject',
537
+ rawbody: 'rawbody',
538
+ attachment: 'attachment',
539
+ headers: 'headers',
540
+ body: 'body',
541
+ createdAt: 'createdAt',
542
+ updatedAt: 'updatedAt',
543
+ emailConfigurationsId: 'emailConfigurationsId'
544
+ };
545
+
546
+ exports.Prisma.EmailsIncomingScalarFieldEnum = {
547
+ id: 'id',
548
+ no: 'no',
549
+ messageId: 'messageId',
550
+ sender: 'sender',
551
+ receiver: 'receiver',
552
+ datereceived: 'datereceived',
553
+ datesent: 'datesent',
554
+ subject: 'subject',
555
+ body: 'body',
556
+ attachment: 'attachment',
557
+ seen: 'seen',
558
+ status: 'status',
559
+ createdAt: 'createdAt',
560
+ updatedAt: 'updatedAt',
561
+ activatedAt: 'activatedAt',
562
+ deletedAt: 'deletedAt',
563
+ emailConfigurationsId: 'emailConfigurationsId'
564
+ };
565
+
566
+ exports.Prisma.EmailsOutgoingScalarFieldEnum = {
567
+ id: 'id',
568
+ no: 'no',
569
+ receiver: 'receiver',
570
+ subject: 'subject',
571
+ body: 'body',
572
+ attachment: 'attachment',
573
+ status: 'status',
574
+ createdAt: 'createdAt',
575
+ updatedAt: 'updatedAt',
576
+ activatedAt: 'activatedAt',
577
+ deletedAt: 'deletedAt',
578
+ emailConfigurationsId: 'emailConfigurationsId'
579
+ };
580
+
581
+ exports.Prisma.EmailTemplatesScalarFieldEnum = {
582
+ id: 'id',
583
+ no: 'no',
584
+ name: 'name',
585
+ subject: 'subject',
586
+ body: 'body',
587
+ signature: 'signature',
588
+ attachments: 'attachments',
589
+ workOrderInfo: 'workOrderInfo',
590
+ mailingList: 'mailingList',
591
+ carbonCopyList: 'carbonCopyList',
592
+ templateInfo: 'templateInfo',
593
+ status: 'status',
594
+ createdAt: 'createdAt',
595
+ updatedAt: 'updatedAt',
596
+ deletedAt: 'deletedAt',
597
+ projectId: 'projectId'
598
+ };
599
+
600
+ exports.Prisma.WorkOrderScalarFieldEnum = {
601
+ id: 'id',
602
+ no: 'no',
603
+ mainId: 'mainId',
604
+ column1: 'column1',
605
+ column2: 'column2',
606
+ type: 'type',
607
+ channel: 'channel',
608
+ data: 'data',
609
+ rawData: 'rawData',
610
+ status: 'status',
611
+ statusColour: 'statusColour',
612
+ workOrderTeamStatus: 'workOrderTeamStatus',
613
+ scheduledStartAt: 'scheduledStartAt',
614
+ scheduledEndAt: 'scheduledEndAt',
615
+ actionDate: 'actionDate',
616
+ auditMatrices: 'auditMatrices',
617
+ slaStartAt: 'slaStartAt',
618
+ sla: 'sla',
619
+ isPaused: 'isPaused',
620
+ createdAt: 'createdAt',
621
+ updatedAt: 'updatedAt',
622
+ deletedAt: 'deletedAt',
623
+ teamId: 'teamId',
624
+ projectId: 'projectId',
625
+ emailConfigurationsId: 'emailConfigurationsId',
626
+ emailsIncomingId: 'emailsIncomingId',
627
+ managerId: 'managerId',
628
+ pboFatId: 'pboFatId',
629
+ sFUId: 'sFUId',
630
+ buildingId: 'buildingId'
631
+ };
632
+
633
+ exports.Prisma.WorkOrderChannelScalarFieldEnum = {
634
+ id: 'id',
635
+ no: 'no',
636
+ name: 'name',
637
+ projectId: 'projectId',
638
+ createdAt: 'createdAt',
639
+ updatedAt: 'updatedAt',
640
+ deletedAt: 'deletedAt'
641
+ };
642
+
643
+ exports.Prisma.WorkOrderTaskScalarFieldEnum = {
644
+ id: 'id',
645
+ no: 'no',
646
+ name: 'name',
647
+ buttonName: 'buttonName',
648
+ isSpecialFeature: 'isSpecialFeature',
649
+ statusColor: 'statusColor',
650
+ featureName: 'featureName',
651
+ status: 'status',
652
+ features: 'features',
653
+ comments: 'comments',
654
+ scheduledStartAt: 'scheduledStartAt',
655
+ createdAt: 'createdAt',
656
+ updatedAt: 'updatedAt',
657
+ deletedAt: 'deletedAt',
658
+ technicianId: 'technicianId',
659
+ workOrderId: 'workOrderId',
660
+ templateComponentId: 'templateComponentId'
661
+ };
662
+
663
+ exports.Prisma.WorkOrderActivityLogScalarFieldEnum = {
664
+ id: 'id',
665
+ no: 'no',
666
+ type: 'type',
667
+ activity: 'activity',
668
+ detail: 'detail',
669
+ reason: 'reason',
670
+ comment: 'comment',
671
+ statusUpdate: 'statusUpdate',
672
+ actionDate: 'actionDate',
673
+ createdAt: 'createdAt',
674
+ updatedAt: 'updatedAt',
675
+ deletedAt: 'deletedAt',
676
+ workOrderId: 'workOrderId',
677
+ userId: 'userId',
678
+ teamId: 'teamId'
679
+ };
680
+
681
+ exports.Prisma.WorkOrderEditLogScalarFieldEnum = {
682
+ id: 'id',
683
+ no: 'no',
684
+ action: 'action',
685
+ description: 'description',
686
+ newValues: 'newValues',
687
+ oldValues: 'oldValues',
688
+ createdAt: 'createdAt',
689
+ updatedAt: 'updatedAt',
690
+ deletedAt: 'deletedAt',
691
+ workOrderId: 'workOrderId',
692
+ userId: 'userId'
693
+ };
694
+
695
+ exports.Prisma.WorkOrderTaskDataScalarFieldEnum = {
696
+ id: 'id',
697
+ no: 'no',
698
+ description: 'description',
699
+ value: 'value',
700
+ createdAt: 'createdAt',
701
+ updatedAt: 'updatedAt',
702
+ deletedAt: 'deletedAt'
703
+ };
704
+
705
+ exports.Prisma.WorkOrderPausesScalarFieldEnum = {
706
+ id: 'id',
707
+ no: 'no',
708
+ pauseStartAt: 'pauseStartAt',
709
+ pauseEndAt: 'pauseEndAt',
710
+ createdAt: 'createdAt',
711
+ updatedAt: 'updatedAt',
712
+ workOrderId: 'workOrderId'
713
+ };
714
+
715
+ exports.Prisma.WorkOrderCommentsScalarFieldEnum = {
716
+ id: 'id',
717
+ no: 'no',
718
+ comment: 'comment',
719
+ hasAttachment: 'hasAttachment',
720
+ attachment: 'attachment',
721
+ createdAt: 'createdAt',
722
+ updatedAt: 'updatedAt',
723
+ workOrderId: 'workOrderId',
724
+ createdById: 'createdById'
725
+ };
726
+
727
+ exports.Prisma.BillOfMaterialScalarFieldEnum = {
728
+ id: 'id',
729
+ no: 'no',
730
+ name: 'name',
731
+ projectId: 'projectId',
732
+ workflowType: 'workflowType',
733
+ createdAt: 'createdAt',
734
+ updatedAt: 'updatedAt',
735
+ deletedAt: 'deletedAt'
736
+ };
737
+
738
+ exports.Prisma.MaterialScalarFieldEnum = {
739
+ id: 'id',
740
+ no: 'no',
741
+ name: 'name',
742
+ code: 'code',
743
+ description: 'description',
744
+ unit: 'unit',
745
+ status: 'status',
746
+ createdAt: 'createdAt',
747
+ updatedAt: 'updatedAt',
748
+ deletedAt: 'deletedAt'
749
+ };
750
+
751
+ exports.Prisma.MaterialBillOfMaterialScalarFieldEnum = {
752
+ id: 'id',
753
+ no: 'no',
754
+ createdAt: 'createdAt',
755
+ updatedAt: 'updatedAt',
756
+ deletedAt: 'deletedAt',
757
+ materialId: 'materialId',
758
+ billOfMaterialId: 'billOfMaterialId'
759
+ };
760
+
761
+ exports.Prisma.DispatchMaterialScalarFieldEnum = {
762
+ id: 'id',
763
+ no: 'no',
764
+ materialbomId: 'materialbomId',
765
+ dispatchProjectId: 'dispatchProjectId',
766
+ materialCode: 'materialCode',
767
+ materialName: 'materialName',
768
+ description: 'description',
769
+ unit: 'unit',
770
+ status: 'status',
771
+ quantityAdded: 'quantityAdded',
772
+ quantityUsed: 'quantityUsed',
773
+ quantityRemaining: 'quantityRemaining',
774
+ createdAt: 'createdAt',
775
+ updatedAt: 'updatedAt',
776
+ deletedAt: 'deletedAt'
777
+ };
778
+
779
+ exports.Prisma.StockMovementScalarFieldEnum = {
780
+ id: 'id',
781
+ no: 'no',
782
+ movementType: 'movementType',
783
+ to: 'to',
784
+ toId: 'toId',
785
+ from: 'from',
786
+ fromId: 'fromId',
787
+ quantity: 'quantity',
788
+ createdAt: 'createdAt',
789
+ updatedAt: 'updatedAt'
790
+ };
791
+
792
+ exports.Prisma.ClientMaterialScalarFieldEnum = {
793
+ id: 'id',
794
+ no: 'no',
795
+ materialId: 'materialId',
796
+ clientId: 'clientId',
797
+ quantityAdded: 'quantityAdded',
798
+ quantityUsed: 'quantityUsed',
799
+ quantityRemaining: 'quantityRemaining',
800
+ status: 'status',
801
+ type: 'type',
802
+ createdAt: 'createdAt',
803
+ updatedAt: 'updatedAt',
804
+ deletedAt: 'deletedAt'
805
+ };
806
+
807
+ exports.Prisma.ClientMaterialMovementLogScalarFieldEnum = {
808
+ id: 'id',
809
+ no: 'no',
810
+ movementType: 'movementType',
811
+ movementFrom: 'movementFrom',
812
+ movementFromName: 'movementFromName',
813
+ movementFromId: 'movementFromId',
814
+ movementTo: 'movementTo',
815
+ movementToName: 'movementToName',
816
+ movementToId: 'movementToId',
817
+ quantity: 'quantity',
818
+ materialMoved: 'materialMoved',
819
+ dispatchProjectId: 'dispatchProjectId',
820
+ createdAt: 'createdAt',
821
+ updatedAt: 'updatedAt',
822
+ deletedAt: 'deletedAt'
823
+ };
824
+
825
+ exports.Prisma.SubsidiaryMaterialScalarFieldEnum = {
826
+ id: 'id',
827
+ no: 'no',
828
+ materialId: 'materialId',
829
+ subsidiaryId: 'subsidiaryId',
830
+ quantityAdded: 'quantityAdded',
831
+ quantityUsed: 'quantityUsed',
832
+ quantityRemaining: 'quantityRemaining',
833
+ status: 'status',
834
+ type: 'type',
835
+ createdAt: 'createdAt',
836
+ updatedAt: 'updatedAt',
837
+ deletedAt: 'deletedAt'
838
+ };
839
+
840
+ exports.Prisma.SubsidiaryMaterialMovementLogScalarFieldEnum = {
841
+ id: 'id',
842
+ no: 'no',
843
+ movementType: 'movementType',
844
+ movementFrom: 'movementFrom',
845
+ movementFromName: 'movementFromName',
846
+ movementFromId: 'movementFromId',
847
+ movementTo: 'movementTo',
848
+ movementToName: 'movementToName',
849
+ movementToId: 'movementToId',
850
+ quantity: 'quantity',
851
+ materialMoved: 'materialMoved',
852
+ dispatchProjectId: 'dispatchProjectId',
853
+ createdAt: 'createdAt',
854
+ updatedAt: 'updatedAt',
855
+ deletedAt: 'deletedAt'
856
+ };
857
+
858
+ exports.Prisma.TeamMaterialScalarFieldEnum = {
859
+ id: 'id',
860
+ no: 'no',
861
+ materialId: 'materialId',
862
+ teamId: 'teamId',
863
+ quantityAdded: 'quantityAdded',
864
+ quantityUsed: 'quantityUsed',
865
+ quantityRemaining: 'quantityRemaining',
866
+ status: 'status',
867
+ type: 'type',
868
+ createdAt: 'createdAt',
869
+ updatedAt: 'updatedAt',
870
+ deletedAt: 'deletedAt'
871
+ };
872
+
873
+ exports.Prisma.TeamMaterialMovementLogScalarFieldEnum = {
874
+ id: 'id',
875
+ no: 'no',
876
+ movementType: 'movementType',
877
+ movementFrom: 'movementFrom',
878
+ movementFromName: 'movementFromName',
879
+ movementFromId: 'movementFromId',
880
+ movementTo: 'movementTo',
881
+ movementToName: 'movementToName',
882
+ movementToId: 'movementToId',
883
+ quantity: 'quantity',
884
+ materialMoved: 'materialMoved',
885
+ dispatchProjectId: 'dispatchProjectId',
886
+ createdAt: 'createdAt',
887
+ updatedAt: 'updatedAt',
888
+ deletedAt: 'deletedAt'
889
+ };
890
+
891
+ exports.Prisma.WorkOrderMaterialScalarFieldEnum = {
892
+ id: 'id',
893
+ no: 'no',
894
+ materialId: 'materialId',
895
+ quantityAdded: 'quantityAdded',
896
+ quantityUsed: 'quantityUsed',
897
+ quantityRemaining: 'quantityRemaining',
898
+ status: 'status',
899
+ createdAt: 'createdAt',
900
+ updatedAt: 'updatedAt',
901
+ deletedAt: 'deletedAt'
902
+ };
903
+
904
+ exports.Prisma.TicketMaterialMovementLogScalarFieldEnum = {
905
+ id: 'id',
906
+ no: 'no',
907
+ movementType: 'movementType',
908
+ movementFrom: 'movementFrom',
909
+ movementFromId: 'movementFromId',
910
+ movementTo: 'movementTo',
911
+ movementToId: 'movementToId',
912
+ quantity: 'quantity',
913
+ materialMoved: 'materialMoved',
914
+ createdAt: 'createdAt',
915
+ updatedAt: 'updatedAt',
916
+ deletedAt: 'deletedAt'
917
+ };
918
+
919
+ exports.Prisma.MaterialChangeLogScalarFieldEnum = {
920
+ id: 'id',
921
+ no: 'no',
922
+ materialId: 'materialId',
923
+ action: 'action',
924
+ createdAt: 'createdAt',
925
+ updatedAt: 'updatedAt',
926
+ deletedAt: 'deletedAt'
927
+ };
928
+
929
+ exports.Prisma.ProblemCategorizationScalarFieldEnum = {
930
+ id: 'id',
931
+ no: 'no',
932
+ reason: 'reason',
933
+ problemType: 'problemType',
934
+ platformName: 'platformName',
935
+ projectId: 'projectId',
936
+ createdAt: 'createdAt',
937
+ updatedAt: 'updatedAt',
938
+ deletedAt: 'deletedAt'
939
+ };
940
+
941
+ exports.Prisma.NotificationsScalarFieldEnum = {
942
+ id: 'id',
943
+ no: 'no',
944
+ title: 'title',
945
+ description: 'description',
946
+ status: 'status',
947
+ platform: 'platform',
948
+ createdAt: 'createdAt',
949
+ updatedAt: 'updatedAt',
950
+ deletedAt: 'deletedAt',
951
+ userId: 'userId'
952
+ };
953
+
954
+ exports.Prisma.ReportFormatsScalarFieldEnum = {
955
+ id: 'id',
956
+ no: 'no',
957
+ name: 'name',
958
+ header1: 'header1',
959
+ header2: 'header2',
960
+ header3: 'header3',
961
+ mainInfo: 'mainInfo',
962
+ ticketDetails: 'ticketDetails',
963
+ materialInfo: 'materialInfo',
964
+ teamInfo: 'teamInfo',
965
+ interventionResults: 'interventionResults',
966
+ attachments: 'attachments',
967
+ status: 'status',
968
+ createdAt: 'createdAt',
969
+ updatedAt: 'updatedAt',
970
+ deletedAt: 'deletedAt',
971
+ projectId: 'projectId'
972
+ };
973
+
974
+ exports.Prisma.NetworkElementScalarFieldEnum = {
975
+ id: 'id',
976
+ no: 'no',
977
+ type: 'type',
978
+ createdAt: 'createdAt',
979
+ updatedAt: 'updatedAt',
980
+ deletedAt: 'deletedAt',
981
+ classification: 'classification'
982
+ };
983
+
984
+ exports.Prisma.ElementNodeScalarFieldEnum = {
985
+ id: 'id',
986
+ typeId: 'typeId',
987
+ name: 'name',
988
+ lat: 'lat',
989
+ lng: 'lng',
990
+ geometry: 'geometry',
991
+ isInstalled: 'isInstalled',
992
+ installationDate: 'installationDate',
993
+ createdAt: 'createdAt',
994
+ updatedAt: 'updatedAt'
995
+ };
996
+
997
+ exports.Prisma.ElementRelationScalarFieldEnum = {
998
+ id: 'id',
999
+ fromId: 'fromId',
1000
+ toId: 'toId',
1001
+ relationType: 'relationType',
1002
+ metadata: 'metadata',
1003
+ clusterId: 'clusterId'
1004
+ };
1005
+
1006
+ exports.Prisma.AttributeDefinitionScalarFieldEnum = {
1007
+ id: 'id',
1008
+ no: 'no',
1009
+ key: 'key',
1010
+ label: 'label',
1011
+ type: 'type',
1012
+ required: 'required',
1013
+ visibleOnWeb: 'visibleOnWeb',
1014
+ visibleOnMobile: 'visibleOnMobile',
1015
+ visibleOnDispatchMobile: 'visibleOnDispatchMobile'
1016
+ };
1017
+
1018
+ exports.Prisma.OptionSourceScalarFieldEnum = {
1019
+ id: 'id',
1020
+ sourceType: 'sourceType',
1021
+ staticOptions: 'staticOptions',
1022
+ dynamicOptions: 'dynamicOptions',
1023
+ foreignTable: 'foreignTable'
1024
+ };
1025
+
1026
+ exports.Prisma.AttributeValueScalarFieldEnum = {
1027
+ id: 'id',
1028
+ attributeDefId: 'attributeDefId',
1029
+ value: 'value',
1030
+ nodeId: 'nodeId'
1031
+ };
1032
+
1033
+ exports.Prisma.CableScalarFieldEnum = {
1034
+ id: 'id',
1035
+ no: 'no',
1036
+ status: 'status',
1037
+ name: 'name',
1038
+ terminalAccess: 'terminalAccess',
1039
+ photos: 'photos',
1040
+ texts: 'texts',
1041
+ files: 'files',
1042
+ zone: 'zone',
1043
+ geometry: 'geometry',
1044
+ attributes: 'attributes',
1045
+ coordinates: 'coordinates',
1046
+ autoincrement: 'autoincrement',
1047
+ namePrefix: 'namePrefix',
1048
+ templateIndex: 'templateIndex',
1049
+ asBuiltCoordinates: 'asBuiltCoordinates',
1050
+ isInstalled: 'isInstalled',
1051
+ installationDate: 'installationDate',
1052
+ isInRevision: 'isInRevision',
1053
+ installationStatus: 'installationStatus',
1054
+ comments: 'comments',
1055
+ enclosureOriginType: 'enclosureOriginType',
1056
+ enclosureOriginId: 'enclosureOriginId',
1057
+ enclosureDestinationType: 'enclosureDestinationType',
1058
+ enclosureDestinationId: 'enclosureDestinationId',
1059
+ cableLength: 'cableLength',
1060
+ actualCableLength: 'actualCableLength',
1061
+ type: 'type',
1062
+ capacity: 'capacity',
1063
+ fibersActive: 'fibersActive',
1064
+ fibersReserved: 'fibersReserved',
1065
+ fibersDark: 'fibersDark',
1066
+ fibersDedicated: 'fibersDedicated',
1067
+ brand: 'brand',
1068
+ brandDescription: 'brandDescription',
1069
+ centralOffice: 'centralOffice',
1070
+ mainProject: 'mainProject',
1071
+ projectPhase: 'projectPhase',
1072
+ client: 'client',
1073
+ subsidiary: 'subsidiary',
1074
+ isSubcable: 'isSubcable',
1075
+ parentCableId: 'parentCableId',
1076
+ parentCableName: 'parentCableName',
1077
+ createdAt: 'createdAt',
1078
+ updatedAt: 'updatedAt',
1079
+ deletedAt: 'deletedAt',
1080
+ updatedById: 'updatedById',
1081
+ networkElementId: 'networkElementId',
1082
+ templateId: 'templateId',
1083
+ projectId: 'projectId',
1084
+ nodeId: 'nodeId',
1085
+ installationId: 'installationId',
1086
+ clusterId: 'clusterId'
1087
+ };
1088
+
1089
+ exports.Prisma.CableAttachmentScalarFieldEnum = {
1090
+ id: 'id',
1091
+ no: 'no',
1092
+ cableId: 'cableId',
1093
+ targetType: 'targetType',
1094
+ targetId: 'targetId',
1095
+ role: 'role',
1096
+ metadata: 'metadata',
1097
+ createdAt: 'createdAt',
1098
+ updatedAt: 'updatedAt'
1099
+ };
1100
+
1101
+ exports.Prisma.CableTemplateScalarFieldEnum = {
1102
+ id: 'id',
1103
+ no: 'no',
1104
+ status: 'status',
1105
+ name: 'name',
1106
+ terminalAccess: 'terminalAccess',
1107
+ photos: 'photos',
1108
+ files: 'files',
1109
+ texts: 'texts',
1110
+ zone: 'zone',
1111
+ geometry: 'geometry',
1112
+ attributes: 'attributes',
1113
+ coordinates: 'coordinates',
1114
+ autoincrement: 'autoincrement',
1115
+ namePrefix: 'namePrefix',
1116
+ createdAt: 'createdAt',
1117
+ updatedAt: 'updatedAt',
1118
+ deletedAt: 'deletedAt',
1119
+ updatedById: 'updatedById',
1120
+ networkElementId: 'networkElementId',
1121
+ clusterId: 'clusterId'
1122
+ };
1123
+
1124
+ exports.Prisma.ConduitScalarFieldEnum = {
1125
+ id: 'id',
1126
+ no: 'no',
1127
+ status: 'status',
1128
+ name: 'name',
1129
+ terminalAccess: 'terminalAccess',
1130
+ photos: 'photos',
1131
+ texts: 'texts',
1132
+ files: 'files',
1133
+ zone: 'zone',
1134
+ geometry: 'geometry',
1135
+ attributes: 'attributes',
1136
+ coordinates: 'coordinates',
1137
+ createdAt: 'createdAt',
1138
+ updatedAt: 'updatedAt',
1139
+ deletedAt: 'deletedAt',
1140
+ namePrefix: 'namePrefix',
1141
+ asBuiltCoordinates: 'asBuiltCoordinates',
1142
+ isInstalled: 'isInstalled',
1143
+ installationDate: 'installationDate',
1144
+ isInRevision: 'isInRevision',
1145
+ installationStatus: 'installationStatus',
1146
+ address: 'address',
1147
+ deploymentPhase: 'deploymentPhase',
1148
+ trenchConfiguration: 'trenchConfiguration',
1149
+ trenchDepth: 'trenchDepth',
1150
+ backfillMaterial: 'backfillMaterial',
1151
+ reinforcementMaterial: 'reinforcementMaterial',
1152
+ specialCharacteristics: 'specialCharacteristics',
1153
+ enclosureOriginType: 'enclosureOriginType',
1154
+ enclosureOriginId: 'enclosureOriginId',
1155
+ enclosureDestinationType: 'enclosureDestinationType',
1156
+ enclosureDestinationId: 'enclosureDestinationId',
1157
+ conduitLength: 'conduitLength',
1158
+ brand: 'brand',
1159
+ brandDescription: 'brandDescription',
1160
+ materialListReference: 'materialListReference',
1161
+ comments: 'comments',
1162
+ updatedById: 'updatedById',
1163
+ networkElementId: 'networkElementId',
1164
+ nodeId: 'nodeId',
1165
+ installationId: 'installationId',
1166
+ templateId: 'templateId',
1167
+ clusterId: 'clusterId'
1168
+ };
1169
+
1170
+ exports.Prisma.DuctScalarFieldEnum = {
1171
+ id: 'id',
1172
+ no: 'no',
1173
+ type: 'type',
1174
+ material: 'material',
1175
+ dimension: 'dimension',
1176
+ typeOptions: 'typeOptions',
1177
+ materialOptions: 'materialOptions',
1178
+ createdAt: 'createdAt',
1179
+ updatedAt: 'updatedAt',
1180
+ deletedAt: 'deletedAt',
1181
+ conduitId: 'conduitId'
1182
+ };
1183
+
1184
+ exports.Prisma.DuctTemplateScalarFieldEnum = {
1185
+ id: 'id',
1186
+ no: 'no',
1187
+ type: 'type',
1188
+ material: 'material',
1189
+ dimension: 'dimension',
1190
+ typeOptions: 'typeOptions',
1191
+ materialOptions: 'materialOptions',
1192
+ createdAt: 'createdAt',
1193
+ updatedAt: 'updatedAt',
1194
+ deletedAt: 'deletedAt',
1195
+ conduitTemplateId: 'conduitTemplateId'
1196
+ };
1197
+
1198
+ exports.Prisma.ConduitTemplateScalarFieldEnum = {
1199
+ id: 'id',
1200
+ no: 'no',
1201
+ status: 'status',
1202
+ name: 'name',
1203
+ terminalAccess: 'terminalAccess',
1204
+ photos: 'photos',
1205
+ texts: 'texts',
1206
+ files: 'files',
1207
+ zone: 'zone',
1208
+ geometry: 'geometry',
1209
+ attributes: 'attributes',
1210
+ createdAt: 'createdAt',
1211
+ updatedAt: 'updatedAt',
1212
+ deletedAt: 'deletedAt',
1213
+ updatedById: 'updatedById',
1214
+ networkElementId: 'networkElementId',
1215
+ clusterId: 'clusterId'
1216
+ };
1217
+
1218
+ exports.Prisma.CableAttributesScalarFieldEnum = {
1219
+ id: 'id',
1220
+ no: 'no',
1221
+ name: 'name',
1222
+ description: 'description',
1223
+ value: 'value',
1224
+ visibleOnMobile: 'visibleOnMobile',
1225
+ createdAt: 'createdAt',
1226
+ updatedAt: 'updatedAt',
1227
+ deletedAt: 'deletedAt',
1228
+ cableId: 'cableId',
1229
+ projectId: 'projectId',
1230
+ materialId: 'materialId',
1231
+ cableTemplateId: 'cableTemplateId'
1232
+ };
1233
+
1234
+ exports.Prisma.SplitterScalarFieldEnum = {
1235
+ id: 'id',
1236
+ no: 'no',
1237
+ noOfPorts: 'noOfPorts',
1238
+ createdAt: 'createdAt',
1239
+ updatedAt: 'updatedAt',
1240
+ deletedAt: 'deletedAt'
1241
+ };
1242
+
1243
+ exports.Prisma.PboFatTemplateScalarFieldEnum = {
1244
+ id: 'id',
1245
+ no: 'no',
1246
+ status: 'status',
1247
+ terminalAccess: 'terminalAccess',
1248
+ name: 'name',
1249
+ photos: 'photos',
1250
+ texts: 'texts',
1251
+ files: 'files',
1252
+ zone: 'zone',
1253
+ geometry: 'geometry',
1254
+ attributes: 'attributes',
1255
+ autoincrement: 'autoincrement',
1256
+ namePrefix: 'namePrefix',
1257
+ createdAt: 'createdAt',
1258
+ updatedAt: 'updatedAt',
1259
+ deletedAt: 'deletedAt',
1260
+ updatedById: 'updatedById',
1261
+ networkElementId: 'networkElementId',
1262
+ clusterId: 'clusterId'
1263
+ };
1264
+
1265
+ exports.Prisma.PboFatScalarFieldEnum = {
1266
+ id: 'id',
1267
+ no: 'no',
1268
+ status: 'status',
1269
+ terminalAccess: 'terminalAccess',
1270
+ name: 'name',
1271
+ photos: 'photos',
1272
+ texts: 'texts',
1273
+ files: 'files',
1274
+ zone: 'zone',
1275
+ geometry: 'geometry',
1276
+ attributes: 'attributes',
1277
+ coordinates: 'coordinates',
1278
+ autoincrement: 'autoincrement',
1279
+ namePrefix: 'namePrefix',
1280
+ templateIndex: 'templateIndex',
1281
+ asBuiltCoordinates: 'asBuiltCoordinates',
1282
+ isInstalled: 'isInstalled',
1283
+ installationDate: 'installationDate',
1284
+ comments: 'comments',
1285
+ isInRevision: 'isInRevision',
1286
+ installationStatus: 'installationStatus',
1287
+ fatMaximumCapacity: 'fatMaximumCapacity',
1288
+ fatExistingSubscribers: 'fatExistingSubscribers',
1289
+ fatAvailableCapacity: 'fatAvailableCapacity',
1290
+ placeOfInstallation: 'placeOfInstallation',
1291
+ address: 'address',
1292
+ splitter1: 'splitter1',
1293
+ splitter2: 'splitter2',
1294
+ previousEquipmentType: 'previousEquipmentType',
1295
+ previousEquipmentId: 'previousEquipmentId',
1296
+ nextEquipmentType: 'nextEquipmentType',
1297
+ nextEquipmentId: 'nextEquipmentId',
1298
+ brand: 'brand',
1299
+ brandDescription: 'brandDescription',
1300
+ materialListReference: 'materialListReference',
1301
+ createdAt: 'createdAt',
1302
+ updatedAt: 'updatedAt',
1303
+ deletedAt: 'deletedAt',
1304
+ updatedById: 'updatedById',
1305
+ networkElementId: 'networkElementId',
1306
+ templateId: 'templateId',
1307
+ projectId: 'projectId',
1308
+ installationId: 'installationId',
1309
+ clusterId: 'clusterId',
1310
+ centralOffice: 'centralOffice',
1311
+ projectPhase: 'projectPhase',
1312
+ mainProject: 'mainProject',
1313
+ client: 'client',
1314
+ subsidiary: 'subsidiary',
1315
+ nodeId: 'nodeId'
1316
+ };
1317
+
1318
+ exports.Prisma.PboFatAttributesScalarFieldEnum = {
1319
+ id: 'id',
1320
+ no: 'no',
1321
+ name: 'name',
1322
+ description: 'description',
1323
+ value: 'value',
1324
+ visibleOnMobile: 'visibleOnMobile',
1325
+ createdAt: 'createdAt',
1326
+ updatedAt: 'updatedAt',
1327
+ deletedAt: 'deletedAt',
1328
+ cableId: 'cableId',
1329
+ materialId: 'materialId',
1330
+ pboFatTemplateId: 'pboFatTemplateId',
1331
+ pboFatId: 'pboFatId'
1332
+ };
1333
+
1334
+ exports.Prisma.SpliceClosureScalarFieldEnum = {
1335
+ id: 'id',
1336
+ no: 'no',
1337
+ name: 'name',
1338
+ status: 'status',
1339
+ terminalAccess: 'terminalAccess',
1340
+ photos: 'photos',
1341
+ texts: 'texts',
1342
+ files: 'files',
1343
+ zone: 'zone',
1344
+ geometry: 'geometry',
1345
+ attributes: 'attributes',
1346
+ coordinates: 'coordinates',
1347
+ description: 'description',
1348
+ autoincrement: 'autoincrement',
1349
+ namePrefix: 'namePrefix',
1350
+ templateIndex: 'templateIndex',
1351
+ asBuiltCoordinates: 'asBuiltCoordinates',
1352
+ isInstalled: 'isInstalled',
1353
+ installationDate: 'installationDate',
1354
+ isInRevision: 'isInRevision',
1355
+ installationStatus: 'installationStatus',
1356
+ comments: 'comments',
1357
+ spliceClosureMaximumCapacity: 'spliceClosureMaximumCapacity',
1358
+ placeOfInstallation: 'placeOfInstallation',
1359
+ address: 'address',
1360
+ previousEquipmentType: 'previousEquipmentType',
1361
+ previousEquipmentId: 'previousEquipmentId',
1362
+ nextEquipmentType: 'nextEquipmentType',
1363
+ nextEquipmentId: 'nextEquipmentId',
1364
+ brand: 'brand',
1365
+ brandDescription: 'brandDescription',
1366
+ materialListReference: 'materialListReference',
1367
+ createdAt: 'createdAt',
1368
+ updatedAt: 'updatedAt',
1369
+ updatedById: 'updatedById',
1370
+ deletedAt: 'deletedAt',
1371
+ networkElementId: 'networkElementId',
1372
+ projectId: 'projectId',
1373
+ templateId: 'templateId',
1374
+ clusterId: 'clusterId',
1375
+ nodeId: 'nodeId',
1376
+ installationId: 'installationId'
1377
+ };
1378
+
1379
+ exports.Prisma.SpliceClosureTemplateScalarFieldEnum = {
1380
+ id: 'id',
1381
+ no: 'no',
1382
+ name: 'name',
1383
+ status: 'status',
1384
+ terminalAccess: 'terminalAccess',
1385
+ photos: 'photos',
1386
+ texts: 'texts',
1387
+ files: 'files',
1388
+ zone: 'zone',
1389
+ geometry: 'geometry',
1390
+ attributes: 'attributes',
1391
+ description: 'description',
1392
+ autoincrement: 'autoincrement',
1393
+ namePrefix: 'namePrefix',
1394
+ createdAt: 'createdAt',
1395
+ updatedAt: 'updatedAt',
1396
+ updatedById: 'updatedById',
1397
+ deletedAt: 'deletedAt',
1398
+ networkElementId: 'networkElementId',
1399
+ clusterId: 'clusterId'
1400
+ };
1401
+
1402
+ exports.Prisma.SpliceClosureAttributesScalarFieldEnum = {
1403
+ id: 'id',
1404
+ no: 'no',
1405
+ name: 'name',
1406
+ description: 'description',
1407
+ value: 'value',
1408
+ createdAt: 'createdAt',
1409
+ updatedAt: 'updatedAt',
1410
+ deletedAt: 'deletedAt',
1411
+ projectId: 'projectId',
1412
+ materialId: 'materialId',
1413
+ spliceClosureId: 'spliceClosureId',
1414
+ spliceClosureTemplateId: 'spliceClosureTemplateId'
1415
+ };
1416
+
1417
+ exports.Prisma.ZoneNroScalarFieldEnum = {
1418
+ id: 'id',
1419
+ no: 'no',
1420
+ status: 'status',
1421
+ terminalAccess: 'terminalAccess',
1422
+ name: 'name',
1423
+ photos: 'photos',
1424
+ texts: 'texts',
1425
+ files: 'files',
1426
+ zone: 'zone',
1427
+ geometry: 'geometry',
1428
+ attributes: 'attributes',
1429
+ coordinates: 'coordinates',
1430
+ autoincrement: 'autoincrement',
1431
+ namePrefix: 'namePrefix',
1432
+ templateIndex: 'templateIndex',
1433
+ zoneHouseCount: 'zoneHouseCount',
1434
+ createdAt: 'createdAt',
1435
+ updatedAt: 'updatedAt',
1436
+ deletedAt: 'deletedAt',
1437
+ updatedById: 'updatedById',
1438
+ networkElementId: 'networkElementId',
1439
+ templateId: 'templateId',
1440
+ projectId: 'projectId',
1441
+ clusterId: 'clusterId',
1442
+ nodeId: 'nodeId',
1443
+ installationId: 'installationId'
1444
+ };
1445
+
1446
+ exports.Prisma.ZoneNroTemplateScalarFieldEnum = {
1447
+ id: 'id',
1448
+ no: 'no',
1449
+ status: 'status',
1450
+ terminalAccess: 'terminalAccess',
1451
+ name: 'name',
1452
+ photos: 'photos',
1453
+ texts: 'texts',
1454
+ files: 'files',
1455
+ zone: 'zone',
1456
+ geometry: 'geometry',
1457
+ attributes: 'attributes',
1458
+ coordinates: 'coordinates',
1459
+ autoincrement: 'autoincrement',
1460
+ namePrefix: 'namePrefix',
1461
+ createdAt: 'createdAt',
1462
+ updatedAt: 'updatedAt',
1463
+ deletedAt: 'deletedAt',
1464
+ updatedById: 'updatedById',
1465
+ networkElementId: 'networkElementId',
1466
+ clusterId: 'clusterId'
1467
+ };
1468
+
1469
+ exports.Prisma.PoleScalarFieldEnum = {
1470
+ id: 'id',
1471
+ no: 'no',
1472
+ status: 'status',
1473
+ terminalAccess: 'terminalAccess',
1474
+ name: 'name',
1475
+ photos: 'photos',
1476
+ texts: 'texts',
1477
+ files: 'files',
1478
+ zone: 'zone',
1479
+ geometry: 'geometry',
1480
+ attributes: 'attributes',
1481
+ coordinates: 'coordinates',
1482
+ autoincrement: 'autoincrement',
1483
+ namePrefix: 'namePrefix',
1484
+ templateIndex: 'templateIndex',
1485
+ asBuiltCoordinates: 'asBuiltCoordinates',
1486
+ isInstalled: 'isInstalled',
1487
+ installationDate: 'installationDate',
1488
+ address: 'address',
1489
+ material: 'material',
1490
+ height: 'height',
1491
+ topDiameter: 'topDiameter',
1492
+ bottomDiameter: 'bottomDiameter',
1493
+ downGuy: 'downGuy',
1494
+ brand: 'brand',
1495
+ brandDescription: 'brandDescription',
1496
+ materialListReference: 'materialListReference',
1497
+ comments: 'comments',
1498
+ isInRevision: 'isInRevision',
1499
+ installationStatus: 'installationStatus',
1500
+ createdAt: 'createdAt',
1501
+ updatedAt: 'updatedAt',
1502
+ deletedAt: 'deletedAt',
1503
+ updatedById: 'updatedById',
1504
+ networkElementId: 'networkElementId',
1505
+ templateId: 'templateId',
1506
+ projectId: 'projectId',
1507
+ clusterId: 'clusterId',
1508
+ nodeId: 'nodeId',
1509
+ installationId: 'installationId'
1510
+ };
1511
+
1512
+ exports.Prisma.PoleTemplateScalarFieldEnum = {
1513
+ id: 'id',
1514
+ no: 'no',
1515
+ status: 'status',
1516
+ terminalAccess: 'terminalAccess',
1517
+ name: 'name',
1518
+ photos: 'photos',
1519
+ texts: 'texts',
1520
+ files: 'files',
1521
+ zone: 'zone',
1522
+ geometry: 'geometry',
1523
+ attributes: 'attributes',
1524
+ autoincrement: 'autoincrement',
1525
+ namePrefix: 'namePrefix',
1526
+ createdAt: 'createdAt',
1527
+ updatedAt: 'updatedAt',
1528
+ deletedAt: 'deletedAt',
1529
+ updatedById: 'updatedById',
1530
+ networkElementId: 'networkElementId',
1531
+ clusterId: 'clusterId'
1532
+ };
1533
+
1534
+ exports.Prisma.ManholeScalarFieldEnum = {
1535
+ id: 'id',
1536
+ no: 'no',
1537
+ status: 'status',
1538
+ terminalAccess: 'terminalAccess',
1539
+ name: 'name',
1540
+ photos: 'photos',
1541
+ texts: 'texts',
1542
+ files: 'files',
1543
+ zone: 'zone',
1544
+ geometry: 'geometry',
1545
+ attributes: 'attributes',
1546
+ coordinates: 'coordinates',
1547
+ autoincrement: 'autoincrement',
1548
+ namePrefix: 'namePrefix',
1549
+ templateIndex: 'templateIndex',
1550
+ asBuiltCoordinates: 'asBuiltCoordinates',
1551
+ isInstalled: 'isInstalled',
1552
+ installationDate: 'installationDate',
1553
+ address: 'address',
1554
+ material: 'material',
1555
+ dimension: 'dimension',
1556
+ coverType: 'coverType',
1557
+ brand: 'brand',
1558
+ brandDescription: 'brandDescription',
1559
+ materialListReference: 'materialListReference',
1560
+ comments: 'comments',
1561
+ isInRevision: 'isInRevision',
1562
+ installationStatus: 'installationStatus',
1563
+ createdAt: 'createdAt',
1564
+ updatedAt: 'updatedAt',
1565
+ deletedAt: 'deletedAt',
1566
+ updatedById: 'updatedById',
1567
+ networkElementId: 'networkElementId',
1568
+ templateId: 'templateId',
1569
+ projectId: 'projectId',
1570
+ clusterId: 'clusterId',
1571
+ nodeId: 'nodeId',
1572
+ installationId: 'installationId'
1573
+ };
1574
+
1575
+ exports.Prisma.ManholeTemplateScalarFieldEnum = {
1576
+ id: 'id',
1577
+ no: 'no',
1578
+ status: 'status',
1579
+ terminalAccess: 'terminalAccess',
1580
+ name: 'name',
1581
+ photos: 'photos',
1582
+ texts: 'texts',
1583
+ files: 'files',
1584
+ zone: 'zone',
1585
+ geometry: 'geometry',
1586
+ attributes: 'attributes',
1587
+ autoincrement: 'autoincrement',
1588
+ namePrefix: 'namePrefix',
1589
+ createdAt: 'createdAt',
1590
+ updatedAt: 'updatedAt',
1591
+ deletedAt: 'deletedAt',
1592
+ updatedById: 'updatedById',
1593
+ networkElementId: 'networkElementId',
1594
+ clusterId: 'clusterId'
1595
+ };
1596
+
1597
+ exports.Prisma.LoopScalarFieldEnum = {
1598
+ id: 'id',
1599
+ no: 'no',
1600
+ status: 'status',
1601
+ terminalAccess: 'terminalAccess',
1602
+ name: 'name',
1603
+ photos: 'photos',
1604
+ texts: 'texts',
1605
+ files: 'files',
1606
+ zone: 'zone',
1607
+ geometry: 'geometry',
1608
+ attributes: 'attributes',
1609
+ coordinates: 'coordinates',
1610
+ autoincrement: 'autoincrement',
1611
+ namePrefix: 'namePrefix',
1612
+ templateIndex: 'templateIndex',
1613
+ asBuiltCoordinates: 'asBuiltCoordinates',
1614
+ isInstalled: 'isInstalled',
1615
+ installationDate: 'installationDate',
1616
+ length: 'length',
1617
+ brand: 'brand',
1618
+ brandDescription: 'brandDescription',
1619
+ materialListReference: 'materialListReference',
1620
+ comments: 'comments',
1621
+ isInRevision: 'isInRevision',
1622
+ installationStatus: 'installationStatus',
1623
+ createdAt: 'createdAt',
1624
+ updatedAt: 'updatedAt',
1625
+ deletedAt: 'deletedAt',
1626
+ updatedById: 'updatedById',
1627
+ networkElementId: 'networkElementId',
1628
+ templateId: 'templateId',
1629
+ projectId: 'projectId',
1630
+ clusterId: 'clusterId',
1631
+ nodeId: 'nodeId',
1632
+ installationId: 'installationId',
1633
+ cableId: 'cableId'
1634
+ };
1635
+
1636
+ exports.Prisma.LoopTemplateScalarFieldEnum = {
1637
+ id: 'id',
1638
+ no: 'no',
1639
+ status: 'status',
1640
+ terminalAccess: 'terminalAccess',
1641
+ name: 'name',
1642
+ photos: 'photos',
1643
+ texts: 'texts',
1644
+ files: 'files',
1645
+ zone: 'zone',
1646
+ geometry: 'geometry',
1647
+ attributes: 'attributes',
1648
+ autoincrement: 'autoincrement',
1649
+ namePrefix: 'namePrefix',
1650
+ createdAt: 'createdAt',
1651
+ updatedAt: 'updatedAt',
1652
+ deletedAt: 'deletedAt',
1653
+ updatedById: 'updatedById',
1654
+ networkElementId: 'networkElementId',
1655
+ clusterId: 'clusterId'
1656
+ };
1657
+
1658
+ exports.Prisma.FDTSROScalarFieldEnum = {
1659
+ id: 'id',
1660
+ no: 'no',
1661
+ status: 'status',
1662
+ terminalAccess: 'terminalAccess',
1663
+ name: 'name',
1664
+ photos: 'photos',
1665
+ texts: 'texts',
1666
+ files: 'files',
1667
+ zone: 'zone',
1668
+ geometry: 'geometry',
1669
+ attributes: 'attributes',
1670
+ coordinates: 'coordinates',
1671
+ autoincrement: 'autoincrement',
1672
+ namePrefix: 'namePrefix',
1673
+ templateIndex: 'templateIndex',
1674
+ asBuiltCoordinates: 'asBuiltCoordinates',
1675
+ isInstalled: 'isInstalled',
1676
+ installationDate: 'installationDate',
1677
+ comments: 'comments',
1678
+ isInRevision: 'isInRevision',
1679
+ installationStatus: 'installationStatus',
1680
+ maximumCapacity: 'maximumCapacity',
1681
+ typeOfEnclosure: 'typeOfEnclosure',
1682
+ placeOfInstallation: 'placeOfInstallation',
1683
+ address: 'address',
1684
+ previousEquipmentType: 'previousEquipmentType',
1685
+ previousEquipmentId: 'previousEquipmentId',
1686
+ nextEquipmentType: 'nextEquipmentType',
1687
+ nextEquipmentId: 'nextEquipmentId',
1688
+ splitter1: 'splitter1',
1689
+ brand: 'brand',
1690
+ brandDescription: 'brandDescription',
1691
+ materialListReference: 'materialListReference',
1692
+ createdAt: 'createdAt',
1693
+ updatedAt: 'updatedAt',
1694
+ deletedAt: 'deletedAt',
1695
+ updatedById: 'updatedById',
1696
+ networkElementId: 'networkElementId',
1697
+ templateId: 'templateId',
1698
+ projectId: 'projectId',
1699
+ clusterId: 'clusterId',
1700
+ nodeId: 'nodeId',
1701
+ installationId: 'installationId'
1702
+ };
1703
+
1704
+ exports.Prisma.FDTSROTemplateScalarFieldEnum = {
1705
+ id: 'id',
1706
+ no: 'no',
1707
+ status: 'status',
1708
+ terminalAccess: 'terminalAccess',
1709
+ name: 'name',
1710
+ photos: 'photos',
1711
+ texts: 'texts',
1712
+ files: 'files',
1713
+ zone: 'zone',
1714
+ geometry: 'geometry',
1715
+ attributes: 'attributes',
1716
+ autoincrement: 'autoincrement',
1717
+ namePrefix: 'namePrefix',
1718
+ createdAt: 'createdAt',
1719
+ updatedAt: 'updatedAt',
1720
+ deletedAt: 'deletedAt',
1721
+ updatedById: 'updatedById',
1722
+ networkElementId: 'networkElementId',
1723
+ clusterId: 'clusterId'
1724
+ };
1725
+
1726
+ exports.Prisma.SFUScalarFieldEnum = {
1727
+ id: 'id',
1728
+ no: 'no',
1729
+ status: 'status',
1730
+ terminalAccess: 'terminalAccess',
1731
+ name: 'name',
1732
+ photos: 'photos',
1733
+ texts: 'texts',
1734
+ files: 'files',
1735
+ zone: 'zone',
1736
+ geometry: 'geometry',
1737
+ attributes: 'attributes',
1738
+ coordinates: 'coordinates',
1739
+ autoincrement: 'autoincrement',
1740
+ namePrefix: 'namePrefix',
1741
+ templateIndex: 'templateIndex',
1742
+ asBuiltCoordinates: 'asBuiltCoordinates',
1743
+ isInstalled: 'isInstalled',
1744
+ installationDate: 'installationDate',
1745
+ address: 'address',
1746
+ linkToDispatch: 'linkToDispatch',
1747
+ macAddress: 'macAddress',
1748
+ gponAddress: 'gponAddress',
1749
+ isInRevision: 'isInRevision',
1750
+ installationStatus: 'installationStatus',
1751
+ comments: 'comments',
1752
+ createdAt: 'createdAt',
1753
+ updatedAt: 'updatedAt',
1754
+ deletedAt: 'deletedAt',
1755
+ updatedById: 'updatedById',
1756
+ networkElementId: 'networkElementId',
1757
+ templateId: 'templateId',
1758
+ projectId: 'projectId',
1759
+ clusterId: 'clusterId',
1760
+ nodeId: 'nodeId',
1761
+ installationId: 'installationId',
1762
+ pboFatId: 'pboFatId',
1763
+ buildingId: 'buildingId'
1764
+ };
1765
+
1766
+ exports.Prisma.SFUTemplateScalarFieldEnum = {
1767
+ id: 'id',
1768
+ no: 'no',
1769
+ status: 'status',
1770
+ terminalAccess: 'terminalAccess',
1771
+ name: 'name',
1772
+ photos: 'photos',
1773
+ texts: 'texts',
1774
+ files: 'files',
1775
+ zone: 'zone',
1776
+ geometry: 'geometry',
1777
+ attributes: 'attributes',
1778
+ autoincrement: 'autoincrement',
1779
+ namePrefix: 'namePrefix',
1780
+ createdAt: 'createdAt',
1781
+ updatedAt: 'updatedAt',
1782
+ deletedAt: 'deletedAt',
1783
+ updatedById: 'updatedById',
1784
+ networkElementId: 'networkElementId',
1785
+ clusterId: 'clusterId'
1786
+ };
1787
+
1788
+ exports.Prisma.BuildingScalarFieldEnum = {
1789
+ id: 'id',
1790
+ no: 'no',
1791
+ status: 'status',
1792
+ terminalAccess: 'terminalAccess',
1793
+ name: 'name',
1794
+ photos: 'photos',
1795
+ texts: 'texts',
1796
+ files: 'files',
1797
+ zone: 'zone',
1798
+ geometry: 'geometry',
1799
+ attributes: 'attributes',
1800
+ coordinates: 'coordinates',
1801
+ autoincrement: 'autoincrement',
1802
+ namePrefix: 'namePrefix',
1803
+ templateIndex: 'templateIndex',
1804
+ asBuiltCoordinates: 'asBuiltCoordinates',
1805
+ isInstalled: 'isInstalled',
1806
+ installationDate: 'installationDate',
1807
+ comments: 'comments',
1808
+ isInRevision: 'isInRevision',
1809
+ installationStatus: 'installationStatus',
1810
+ address: 'address',
1811
+ buildingName: 'buildingName',
1812
+ totalFlats: 'totalFlats',
1813
+ floorCount: 'floorCount',
1814
+ flatsPerFloor: 'flatsPerFloor',
1815
+ managerName: 'managerName',
1816
+ managerPhone: 'managerPhone',
1817
+ createdAt: 'createdAt',
1818
+ updatedAt: 'updatedAt',
1819
+ deletedAt: 'deletedAt',
1820
+ updatedById: 'updatedById',
1821
+ networkElementId: 'networkElementId',
1822
+ templateId: 'templateId',
1823
+ projectId: 'projectId',
1824
+ clusterId: 'clusterId',
1825
+ nodeId: 'nodeId',
1826
+ installationId: 'installationId',
1827
+ pboFatId: 'pboFatId'
1828
+ };
1829
+
1830
+ exports.Prisma.BuildingTemplateScalarFieldEnum = {
1831
+ id: 'id',
1832
+ no: 'no',
1833
+ status: 'status',
1834
+ terminalAccess: 'terminalAccess',
1835
+ name: 'name',
1836
+ photos: 'photos',
1837
+ texts: 'texts',
1838
+ files: 'files',
1839
+ zone: 'zone',
1840
+ geometry: 'geometry',
1841
+ attributes: 'attributes',
1842
+ autoincrement: 'autoincrement',
1843
+ namePrefix: 'namePrefix',
1844
+ createdAt: 'createdAt',
1845
+ updatedAt: 'updatedAt',
1846
+ deletedAt: 'deletedAt',
1847
+ updatedById: 'updatedById',
1848
+ networkElementId: 'networkElementId',
1849
+ clusterId: 'clusterId'
1850
+ };
1851
+
1852
+ exports.Prisma.RevisionScalarFieldEnum = {
1853
+ id: 'id',
1854
+ pboFatId: 'pboFatId',
1855
+ spliceClosureId: 'spliceClosureId',
1856
+ manholeId: 'manholeId',
1857
+ loopId: 'loopId',
1858
+ fdtsroId: 'fdtsroId',
1859
+ sfuId: 'sfuId',
1860
+ buildingId: 'buildingId',
1861
+ cableId: 'cableId',
1862
+ poleId: 'poleId',
1863
+ title: 'title',
1864
+ comment: 'comment',
1865
+ status: 'status',
1866
+ priority: 'priority',
1867
+ createdById: 'createdById',
1868
+ resolvedById: 'resolvedById',
1869
+ clusterId: 'clusterId',
1870
+ createdAt: 'createdAt',
1871
+ updatedAt: 'updatedAt',
1872
+ resolvedAt: 'resolvedAt',
1873
+ clientRevisionId: 'clientRevisionId',
1874
+ resolutionNotes: 'resolutionNotes'
1875
+ };
1876
+
1877
+ exports.Prisma.MapElementTemplateScalarFieldEnum = {
1878
+ id: 'id',
1879
+ no: 'no',
1880
+ status: 'status',
1881
+ name: 'name',
1882
+ photos: 'photos',
1883
+ texts: 'texts',
1884
+ files: 'files',
1885
+ zone: 'zone',
1886
+ geometry: 'geometry',
1887
+ mapElementType: 'mapElementType',
1888
+ createdAt: 'createdAt',
1889
+ updatedAt: 'updatedAt',
1890
+ deletedAt: 'deletedAt',
1891
+ updatedById: 'updatedById',
1892
+ networkElementId: 'networkElementId',
1893
+ clusterId: 'clusterId'
1894
+ };
1895
+
1896
+ exports.Prisma.MapElementScalarFieldEnum = {
1897
+ id: 'id',
1898
+ no: 'no',
1899
+ status: 'status',
1900
+ name: 'name',
1901
+ photos: 'photos',
1902
+ texts: 'texts',
1903
+ files: 'files',
1904
+ zone: 'zone',
1905
+ geometry: 'geometry',
1906
+ coordinates: 'coordinates',
1907
+ autoincrement: 'autoincrement',
1908
+ namePrefix: 'namePrefix',
1909
+ templateIndex: 'templateIndex',
1910
+ mapElementType: 'mapElementType',
1911
+ createdAt: 'createdAt',
1912
+ updatedAt: 'updatedAt',
1913
+ deletedAt: 'deletedAt',
1914
+ updatedById: 'updatedById',
1915
+ networkElementId: 'networkElementId',
1916
+ templateId: 'templateId',
1917
+ projectId: 'projectId',
1918
+ clusterId: 'clusterId',
1919
+ nodeId: 'nodeId'
1920
+ };
1921
+
1922
+ exports.Prisma.NetworkElementInstallationScalarFieldEnum = {
1923
+ id: 'id',
1924
+ no: 'no',
1925
+ createdAt: 'createdAt',
1926
+ updatedAt: 'updatedAt',
1927
+ networkElementId: 'networkElementId',
1928
+ previousType: 'previousType',
1929
+ previousName: 'previousName',
1930
+ previousId: 'previousId',
1931
+ nextType: 'nextType',
1932
+ nextName: 'nextName',
1933
+ nextId: 'nextId'
1934
+ };
1935
+
1936
+ exports.Prisma.CentralOfficeScalarFieldEnum = {
1937
+ id: 'id',
1938
+ no: 'no',
1939
+ name: 'name',
1940
+ createdAt: 'createdAt',
1941
+ updatedAt: 'updatedAt',
1942
+ deletedAt: 'deletedAt',
1943
+ projectId: 'projectId'
1944
+ };
1945
+
1946
+ exports.Prisma.ClusterScalarFieldEnum = {
1947
+ id: 'id',
1948
+ no: 'no',
1949
+ name: 'name',
1950
+ coordinates: 'coordinates',
1951
+ color: 'color',
1952
+ createdAt: 'createdAt',
1953
+ updatedAt: 'updatedAt',
1954
+ deletedAt: 'deletedAt',
1955
+ projectPhase: 'projectPhase',
1956
+ surveyProjectStatus: 'surveyProjectStatus',
1957
+ designProjectStatus: 'designProjectStatus',
1958
+ constructionProjectStatus: 'constructionProjectStatus',
1959
+ gisProjectStatus: 'gisProjectStatus',
1960
+ dispatchProjectStatus: 'dispatchProjectStatus',
1961
+ namingConvention: 'namingConvention',
1962
+ installationStatus: 'installationStatus',
1963
+ centralOfficeId: 'centralOfficeId'
1964
+ };
1965
+
1966
+ exports.Prisma.ClusterCommentsScalarFieldEnum = {
1967
+ id: 'id',
1968
+ no: 'no',
1969
+ comment: 'comment',
1970
+ type: 'type',
1971
+ createdAt: 'createdAt',
1972
+ updatedAt: 'updatedAt',
1973
+ deletedAt: 'deletedAt',
1974
+ userId: 'userId',
1975
+ clusterId: 'clusterId'
1976
+ };
1977
+
1978
+ exports.Prisma.ClusterNotesScalarFieldEnum = {
1979
+ id: 'id',
1980
+ no: 'no',
1981
+ comment: 'comment',
1982
+ hasPicture: 'hasPicture',
1983
+ coordinates: 'coordinates',
1984
+ picture: 'picture',
1985
+ createdAt: 'createdAt',
1986
+ updatedAt: 'updatedAt',
1987
+ createdById: 'createdById',
1988
+ clusterId: 'clusterId'
1989
+ };
1990
+
1991
+ exports.Prisma.CentralOfficeTeamScalarFieldEnum = {
1992
+ id: 'id',
1993
+ no: 'no',
1994
+ name: 'name',
1995
+ createdAt: 'createdAt',
1996
+ updatedAt: 'updatedAt',
1997
+ deletedAt: 'deletedAt',
1998
+ centralOfficeId: 'centralOfficeId'
1999
+ };
2000
+
2001
+ exports.Prisma.CentralOfficeUserScalarFieldEnum = {
2002
+ id: 'id',
2003
+ no: 'no',
2004
+ role: 'role',
2005
+ createdAt: 'createdAt',
2006
+ updatedAt: 'updatedAt',
2007
+ deletedAt: 'deletedAt',
2008
+ centralOfficeTeamId: 'centralOfficeTeamId',
2009
+ userId: 'userId'
2010
+ };
2011
+
2012
+ exports.Prisma.QrCodeTemplateScalarFieldEnum = {
2013
+ id: 'id',
2014
+ no: 'no',
2015
+ name: 'name',
2016
+ prefix: 'prefix',
2017
+ index: 'index',
2018
+ scanned: 'scanned',
2019
+ link: 'link',
2020
+ tagDetails: 'tagDetails',
2021
+ status: 'status',
2022
+ createdAt: 'createdAt',
2023
+ updatedAt: 'updatedAt',
2024
+ deletedAt: 'deletedAt',
2025
+ projectId: 'projectId',
2026
+ clusterId: 'clusterId',
2027
+ networkElementTypeId: 'networkElementTypeId',
2028
+ networkElementId: 'networkElementId',
2029
+ templateId: 'templateId',
2030
+ pboFatTemplateId: 'pboFatTemplateId',
2031
+ cableTemplateId: 'cableTemplateId',
2032
+ spliceClosureTemplateId: 'spliceClosureTemplateId',
2033
+ zoneNroTemplateId: 'zoneNroTemplateId',
2034
+ poleTemplateId: 'poleTemplateId',
2035
+ manholeTemplateId: 'manholeTemplateId',
2036
+ loopTemplateId: 'loopTemplateId',
2037
+ fdtsroTemplateId: 'fdtsroTemplateId',
2038
+ sfuTemplateId: 'sfuTemplateId',
2039
+ buildingTemplateId: 'buildingTemplateId',
2040
+ mapElementTemplateId: 'mapElementTemplateId',
2041
+ conduitTemplateId: 'conduitTemplateId'
2042
+ };
2043
+
2044
+ exports.Prisma.QrCodeTagScalarFieldEnum = {
2045
+ id: 'id',
2046
+ no: 'no',
2047
+ image: 'image',
2048
+ link: 'link',
2049
+ scanned: 'scanned',
2050
+ createdAt: 'createdAt',
2051
+ updatedAt: 'updatedAt',
2052
+ deletedAt: 'deletedAt',
2053
+ templateId: 'templateId',
2054
+ networkElementId: 'networkElementId',
2055
+ qrCodeTemplateId: 'qrCodeTemplateId',
2056
+ cableId: 'cableId',
2057
+ pboFatId: 'pboFatId',
2058
+ spliceClosureId: 'spliceClosureId',
2059
+ zoneNroId: 'zoneNroId',
2060
+ poleId: 'poleId',
2061
+ manholeId: 'manholeId',
2062
+ loopId: 'loopId',
2063
+ fdtsroId: 'fdtsroId',
2064
+ sfuId: 'sfuId',
2065
+ buildingId: 'buildingId',
2066
+ mapElementId: 'mapElementId',
2067
+ conduitId: 'conduitId'
2068
+ };
2069
+
2070
+ exports.Prisma.InstallationSequenceScalarFieldEnum = {
2071
+ id: 'id',
2072
+ no: 'no',
2073
+ installationId: 'installationId',
2074
+ sequenceOrder: 'sequenceOrder',
2075
+ elementChildType: 'elementChildType',
2076
+ elementChildId: 'elementChildId',
2077
+ previousInstallationSeqId: 'previousInstallationSeqId',
2078
+ createdAt: 'createdAt',
2079
+ updatedAt: 'updatedAt'
2080
+ };
2081
+
2082
+ exports.Prisma.PreviousEquipmentScalarFieldEnum = {
2083
+ id: 'id',
2084
+ no: 'no',
2085
+ fromTable: 'fromTable',
2086
+ fromId: 'fromId',
2087
+ toTable: 'toTable',
2088
+ toId: 'toId',
2089
+ pboFatId: 'pboFatId',
2090
+ spliceClosureId: 'spliceClosureId',
2091
+ fdtsroId: 'fdtsroId'
2092
+ };
2093
+
2094
+ exports.Prisma.IntegrationUserLocationScalarFieldEnum = {
2095
+ id: 'id',
2096
+ no: 'no',
2097
+ userId: 'userId',
2098
+ coordinates: 'coordinates',
2099
+ clusterId: 'clusterId',
2100
+ isActive: 'isActive',
2101
+ createdAt: 'createdAt',
2102
+ updatedAt: 'updatedAt',
2103
+ deletedAt: 'deletedAt'
2104
+ };
2105
+
2106
+ exports.Prisma.IntegrationReportTemplateScalarFieldEnum = {
2107
+ id: 'id',
2108
+ no: 'no',
2109
+ name: 'name',
2110
+ createdAt: 'createdAt',
2111
+ updatedAt: 'updatedAt',
2112
+ deletedAt: 'deletedAt',
2113
+ createdById: 'createdById'
2114
+ };
2115
+
2116
+ exports.Prisma.ReportMetricScalarFieldEnum = {
2117
+ id: 'id',
2118
+ reportTemplateId: 'reportTemplateId',
2119
+ elementType: 'elementType',
2120
+ attributeName: 'attributeName',
2121
+ metricType: 'metricType',
2122
+ formula: 'formula',
2123
+ groupByLevel: 'groupByLevel',
2124
+ usage: 'usage'
2125
+ };
2126
+
2127
+ exports.Prisma.ReportFormulaConfigScalarFieldEnum = {
2128
+ metricId: 'metricId',
2129
+ resultName: 'resultName',
2130
+ numberOfVariables: 'numberOfVariables',
2131
+ variableAttributes: 'variableAttributes',
2132
+ operations: 'operations',
2133
+ resultFormat: 'resultFormat'
2134
+ };
2135
+
2136
+ exports.Prisma.ReportVisualizationScalarFieldEnum = {
2137
+ id: 'id',
2138
+ templateId: 'templateId',
2139
+ metricIds: 'metricIds',
2140
+ chartType: 'chartType',
2141
+ xAxisField: 'xAxisField',
2142
+ yAxisField: 'yAxisField',
2143
+ useCustomColors: 'useCustomColors',
2144
+ customColors: 'customColors'
2145
+ };
2146
+
2147
+ exports.Prisma.ReportTableScalarFieldEnum = {
2148
+ id: 'id',
2149
+ templateId: 'templateId',
2150
+ metricId: 'metricId',
2151
+ columns: 'columns',
2152
+ includeHeader: 'includeHeader',
2153
+ sortBy: 'sortBy'
2154
+ };
2155
+
2156
+ exports.Prisma.SortOrder = {
2157
+ asc: 'asc',
2158
+ desc: 'desc'
2159
+ };
2160
+
2161
+ exports.Prisma.NullableJsonNullValueInput = {
2162
+ DbNull: Prisma.DbNull,
2163
+ JsonNull: Prisma.JsonNull
2164
+ };
2165
+
2166
+ exports.Prisma.JsonNullValueInput = {
2167
+ JsonNull: Prisma.JsonNull
2168
+ };
2169
+
2170
+ exports.Prisma.QueryMode = {
2171
+ default: 'default',
2172
+ insensitive: 'insensitive'
2173
+ };
2174
+
2175
+ exports.Prisma.NullsOrder = {
2176
+ first: 'first',
2177
+ last: 'last'
2178
+ };
2179
+
2180
+ exports.Prisma.JsonNullValueFilter = {
2181
+ DbNull: Prisma.DbNull,
2182
+ JsonNull: Prisma.JsonNull,
2183
+ AnyNull: Prisma.AnyNull
2184
+ };
2185
+ exports.NotificationPlatform = exports.$Enums.NotificationPlatform = {
2186
+ Web: 'Web',
2187
+ Mobile: 'Mobile'
2188
+ };
2189
+
2190
+ exports.NetworkElementClassification = exports.$Enums.NetworkElementClassification = {
2191
+ NetworkElement: 'NetworkElement',
2192
+ InfrastructureElement: 'InfrastructureElement',
2193
+ MapElement: 'MapElement'
2194
+ };
2195
+
2196
+ exports.RelationType = exports.$Enums.RelationType = {
2197
+ INSTALLED_ON: 'INSTALLED_ON',
2198
+ CONNECTED_TO: 'CONNECTED_TO',
2199
+ ENCLOSURE_ORIGIN: 'ENCLOSURE_ORIGIN',
2200
+ ENCLOSURE_DESTINATION: 'ENCLOSURE_DESTINATION'
2201
+ };
2202
+
2203
+ exports.AttributeType = exports.$Enums.AttributeType = {
2204
+ TEXT: 'TEXT',
2205
+ NUMBER: 'NUMBER',
2206
+ BOOLEAN: 'BOOLEAN',
2207
+ DROPDOWN: 'DROPDOWN',
2208
+ OPTIONS: 'OPTIONS',
2209
+ DATE: 'DATE',
2210
+ JSON: 'JSON'
2211
+ };
2212
+
2213
+ exports.CableAttachmentRole = exports.$Enums.CableAttachmentRole = {
2214
+ DESTINATION: 'DESTINATION',
2215
+ ORIGIN: 'ORIGIN'
2216
+ };
2217
+
2218
+ exports.RevisionStatus = exports.$Enums.RevisionStatus = {
2219
+ IN_PROGRESS: 'IN_PROGRESS',
2220
+ SUBMITTED: 'SUBMITTED',
2221
+ APPROVED: 'APPROVED',
2222
+ REJECTED: 'REJECTED'
2223
+ };
2224
+
2225
+ exports.MapElementType = exports.$Enums.MapElementType = {
2226
+ Marker: 'Marker',
2227
+ Polyline: 'Polyline',
2228
+ Polygon: 'Polygon'
2229
+ };
2230
+
2231
+ exports.ClusterProjectPhase = exports.$Enums.ClusterProjectPhase = {
2232
+ Survey: 'Survey',
2233
+ Design: 'Design',
2234
+ Construction: 'Construction',
2235
+ GIS: 'GIS',
2236
+ Dispatch: 'Dispatch'
2237
+ };
2238
+
2239
+ exports.CentralOfficeTeamPosition = exports.$Enums.CentralOfficeTeamPosition = {
2240
+ Supervisor: 'Supervisor',
2241
+ Designer: 'Designer',
2242
+ Technician: 'Technician'
2243
+ };
2244
+
2245
+ exports.NetworkElementChildType = exports.$Enums.NetworkElementChildType = {
2246
+ PboFat: 'PboFat',
2247
+ Cable: 'Cable',
2248
+ SpliceClosure: 'SpliceClosure',
2249
+ Zone: 'Zone',
2250
+ SFU: 'SFU',
2251
+ Loop: 'Loop',
2252
+ FDTSRO: 'FDTSRO',
2253
+ Manhole: 'Manhole',
2254
+ Building: 'Building',
2255
+ Pole: 'Pole'
2256
+ };
2257
+
2258
+ exports.EquipmentType = exports.$Enums.EquipmentType = {
2259
+ PboFat: 'PboFat',
2260
+ SpliceClosure: 'SpliceClosure',
2261
+ FDTSRO: 'FDTSRO'
2262
+ };
2263
+
2264
+ exports.MetricType = exports.$Enums.MetricType = {
2265
+ ProjectInfo: 'ProjectInfo',
2266
+ NetworkElement: 'NetworkElement',
2267
+ NetworkElementAttributes: 'NetworkElementAttributes',
2268
+ FormulaResult: 'FormulaResult'
2269
+ };
2270
+
2271
+ exports.AggregationOperation = exports.$Enums.AggregationOperation = {
2272
+ LIST: 'LIST',
2273
+ SUM: 'SUM',
2274
+ COUNT: 'COUNT',
2275
+ AVERAGE: 'AVERAGE'
2276
+ };
2277
+
2278
+ exports.ProjectLevel = exports.$Enums.ProjectLevel = {
2279
+ Subsidiary: 'Subsidiary',
2280
+ Client: 'Client',
2281
+ MainProject: 'MainProject',
2282
+ Project: 'Project',
2283
+ CentralOffice: 'CentralOffice',
2284
+ Cluster: 'Cluster'
2285
+ };
2286
+
2287
+ exports.ReportUsage = exports.$Enums.ReportUsage = {
2288
+ TABLE: 'TABLE',
2289
+ VISUALIZATION: 'VISUALIZATION'
2290
+ };
2291
+
2292
+ exports.ValueFormat = exports.$Enums.ValueFormat = {
2293
+ PERCENTAGE: 'PERCENTAGE',
2294
+ NUMBER: 'NUMBER'
2295
+ };
2296
+
2297
+ exports.ArithmeticOperation = exports.$Enums.ArithmeticOperation = {
2298
+ ADD: 'ADD',
2299
+ SUBTRACT: 'SUBTRACT',
2300
+ MULTIPLY: 'MULTIPLY',
2301
+ DIVIDE: 'DIVIDE'
2302
+ };
2303
+
2304
+ exports.ChartType = exports.$Enums.ChartType = {
2305
+ BAR: 'BAR',
2306
+ LINE: 'LINE',
2307
+ PIE: 'PIE'
2308
+ };
2309
+
2310
+ exports.Prisma.ModelName = {
2311
+ Country: 'Country',
2312
+ CamusatCountry: 'CamusatCountry',
2313
+ CamusatClient: 'CamusatClient',
2314
+ Platform: 'Platform',
2315
+ Position: 'Position',
2316
+ Role: 'Role',
2317
+ Template: 'Template',
2318
+ Feature: 'Feature',
2319
+ FeatureType: 'FeatureType',
2320
+ TemplateComponent: 'TemplateComponent',
2321
+ ProjectWorkFlow: 'ProjectWorkFlow',
2322
+ TeamType: 'TeamType',
2323
+ Team: 'Team',
2324
+ TeamPlatform: 'TeamPlatform',
2325
+ User: 'User',
2326
+ MainProject: 'MainProject',
2327
+ Project: 'Project',
2328
+ integrationProjectUserStatus: 'integrationProjectUserStatus',
2329
+ projectPhaseLog: 'projectPhaseLog',
2330
+ Audit: 'Audit',
2331
+ DispatchTeam: 'DispatchTeam',
2332
+ DispatchProject: 'DispatchProject',
2333
+ ProjectType: 'ProjectType',
2334
+ EmailConfigurations: 'EmailConfigurations',
2335
+ EmailsIncomingSample: 'EmailsIncomingSample',
2336
+ EmailsIncoming: 'EmailsIncoming',
2337
+ EmailsOutgoing: 'EmailsOutgoing',
2338
+ EmailTemplates: 'EmailTemplates',
2339
+ WorkOrder: 'WorkOrder',
2340
+ WorkOrderChannel: 'WorkOrderChannel',
2341
+ WorkOrderTask: 'WorkOrderTask',
2342
+ WorkOrderActivityLog: 'WorkOrderActivityLog',
2343
+ WorkOrderEditLog: 'WorkOrderEditLog',
2344
+ WorkOrderTaskData: 'WorkOrderTaskData',
2345
+ WorkOrderPauses: 'WorkOrderPauses',
2346
+ WorkOrderComments: 'WorkOrderComments',
2347
+ BillOfMaterial: 'BillOfMaterial',
2348
+ Material: 'Material',
2349
+ MaterialBillOfMaterial: 'MaterialBillOfMaterial',
2350
+ DispatchMaterial: 'DispatchMaterial',
2351
+ StockMovement: 'StockMovement',
2352
+ clientMaterial: 'clientMaterial',
2353
+ clientMaterialMovementLog: 'clientMaterialMovementLog',
2354
+ SubsidiaryMaterial: 'SubsidiaryMaterial',
2355
+ SubsidiaryMaterialMovementLog: 'SubsidiaryMaterialMovementLog',
2356
+ TeamMaterial: 'TeamMaterial',
2357
+ TeamMaterialMovementLog: 'TeamMaterialMovementLog',
2358
+ WorkOrderMaterial: 'WorkOrderMaterial',
2359
+ ticketMaterialMovementLog: 'ticketMaterialMovementLog',
2360
+ MaterialChangeLog: 'MaterialChangeLog',
2361
+ problemCategorization: 'problemCategorization',
2362
+ Notifications: 'Notifications',
2363
+ ReportFormats: 'ReportFormats',
2364
+ NetworkElement: 'NetworkElement',
2365
+ ElementNode: 'ElementNode',
2366
+ ElementRelation: 'ElementRelation',
2367
+ AttributeDefinition: 'AttributeDefinition',
2368
+ OptionSource: 'OptionSource',
2369
+ AttributeValue: 'AttributeValue',
2370
+ Cable: 'Cable',
2371
+ CableAttachment: 'CableAttachment',
2372
+ CableTemplate: 'CableTemplate',
2373
+ Conduit: 'Conduit',
2374
+ Duct: 'Duct',
2375
+ ductTemplate: 'ductTemplate',
2376
+ ConduitTemplate: 'ConduitTemplate',
2377
+ CableAttributes: 'CableAttributes',
2378
+ Splitter: 'Splitter',
2379
+ PboFatTemplate: 'PboFatTemplate',
2380
+ PboFat: 'PboFat',
2381
+ PboFatAttributes: 'PboFatAttributes',
2382
+ SpliceClosure: 'SpliceClosure',
2383
+ SpliceClosureTemplate: 'SpliceClosureTemplate',
2384
+ SpliceClosureAttributes: 'SpliceClosureAttributes',
2385
+ ZoneNro: 'ZoneNro',
2386
+ ZoneNroTemplate: 'ZoneNroTemplate',
2387
+ Pole: 'Pole',
2388
+ PoleTemplate: 'PoleTemplate',
2389
+ Manhole: 'Manhole',
2390
+ ManholeTemplate: 'ManholeTemplate',
2391
+ Loop: 'Loop',
2392
+ LoopTemplate: 'LoopTemplate',
2393
+ FDTSRO: 'FDTSRO',
2394
+ FDTSROTemplate: 'FDTSROTemplate',
2395
+ SFU: 'SFU',
2396
+ SFUTemplate: 'SFUTemplate',
2397
+ Building: 'Building',
2398
+ BuildingTemplate: 'BuildingTemplate',
2399
+ Revision: 'Revision',
2400
+ MapElementTemplate: 'MapElementTemplate',
2401
+ MapElement: 'MapElement',
2402
+ NetworkElementInstallation: 'NetworkElementInstallation',
2403
+ CentralOffice: 'CentralOffice',
2404
+ Cluster: 'Cluster',
2405
+ ClusterComments: 'ClusterComments',
2406
+ ClusterNotes: 'ClusterNotes',
2407
+ CentralOfficeTeam: 'CentralOfficeTeam',
2408
+ CentralOfficeUser: 'CentralOfficeUser',
2409
+ qrCodeTemplate: 'qrCodeTemplate',
2410
+ qrCodeTag: 'qrCodeTag',
2411
+ installationSequence: 'installationSequence',
2412
+ PreviousEquipment: 'PreviousEquipment',
2413
+ integrationUserLocation: 'integrationUserLocation',
2414
+ IntegrationReportTemplate: 'IntegrationReportTemplate',
2415
+ ReportMetric: 'ReportMetric',
2416
+ ReportFormulaConfig: 'ReportFormulaConfig',
2417
+ ReportVisualization: 'ReportVisualization',
2418
+ ReportTable: 'ReportTable'
2419
+ };
2420
+
2421
+ /**
2422
+ * This is a stub Prisma Client that will error at runtime if called.
2423
+ */
2424
+ class PrismaClient {
2425
+ constructor() {
2426
+ return new Proxy(this, {
2427
+ get(target, prop) {
2428
+ let message
2429
+ const runtime = getRuntime()
2430
+ if (runtime.isEdge) {
2431
+ message = `PrismaClient is not configured to run in ${runtime.prettyName}. In order to run Prisma Client on edge runtime, either:
2432
+ - Use Prisma Accelerate: https://pris.ly/d/accelerate
2433
+ - Use Driver Adapters: https://pris.ly/d/driver-adapters
2434
+ `;
2435
+ } else {
2436
+ message = 'PrismaClient is unable to run in this browser environment, or has been bundled for the browser (running in `' + runtime.prettyName + '`).'
2437
+ }
2438
+
2439
+ message += `
2440
+ If this is unexpected, please open an issue: https://pris.ly/prisma-prisma-bug-report`
2441
+
2442
+ throw new Error(message)
2443
+ }
2444
+ })
2445
+ }
2446
+ }
2447
+
2448
+ exports.PrismaClient = PrismaClient
2449
+
2450
+ Object.assign(exports, Prisma)