@memberjunction/core-entities 2.48.0 → 2.50.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/custom/AIAgentExtended.d.ts.map +1 -1
- package/dist/custom/AIAgentExtended.js +2 -2
- package/dist/custom/AIAgentExtended.js.map +1 -1
- package/dist/custom/AIPromptCategoryExtended.d.ts.map +1 -1
- package/dist/custom/AIPromptCategoryExtended.js +2 -2
- package/dist/custom/AIPromptCategoryExtended.js.map +1 -1
- package/dist/generated/entity_subclasses.d.ts +1020 -162
- package/dist/generated/entity_subclasses.d.ts.map +1 -1
- package/dist/generated/entity_subclasses.js +1578 -34
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/package.json +3 -3
|
@@ -52,7 +52,7 @@ export declare const ActionCategorySchema: z.ZodObject<{
|
|
|
52
52
|
Name?: string;
|
|
53
53
|
Description?: string;
|
|
54
54
|
ParentID?: string;
|
|
55
|
-
Status?: "
|
|
55
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
56
56
|
Parent?: string;
|
|
57
57
|
}, {
|
|
58
58
|
ID?: string;
|
|
@@ -61,7 +61,7 @@ export declare const ActionCategorySchema: z.ZodObject<{
|
|
|
61
61
|
Name?: string;
|
|
62
62
|
Description?: string;
|
|
63
63
|
ParentID?: string;
|
|
64
|
-
Status?: "
|
|
64
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
65
65
|
Parent?: string;
|
|
66
66
|
}>;
|
|
67
67
|
export type ActionCategoryEntityType = z.infer<typeof ActionCategorySchema>;
|
|
@@ -106,7 +106,7 @@ export declare const ActionContextSchema: z.ZodObject<{
|
|
|
106
106
|
__mj_CreatedAt?: Date;
|
|
107
107
|
__mj_UpdatedAt?: Date;
|
|
108
108
|
Action?: string;
|
|
109
|
-
Status?: "
|
|
109
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
110
110
|
ContextTypeID?: string;
|
|
111
111
|
ContextType?: string;
|
|
112
112
|
}, {
|
|
@@ -115,7 +115,7 @@ export declare const ActionContextSchema: z.ZodObject<{
|
|
|
115
115
|
__mj_CreatedAt?: Date;
|
|
116
116
|
__mj_UpdatedAt?: Date;
|
|
117
117
|
Action?: string;
|
|
118
|
-
Status?: "
|
|
118
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
119
119
|
ContextTypeID?: string;
|
|
120
120
|
ContextType?: string;
|
|
121
121
|
}>;
|
|
@@ -251,7 +251,7 @@ export declare const ActionParamSchema: z.ZodObject<{
|
|
|
251
251
|
Description?: string;
|
|
252
252
|
DefaultValue?: string;
|
|
253
253
|
Type?: "Input" | "Output" | "Both";
|
|
254
|
-
ValueType?: "
|
|
254
|
+
ValueType?: "Scalar" | "Simple Object" | "BaseEntity Sub-Class" | "Other";
|
|
255
255
|
IsArray?: boolean;
|
|
256
256
|
IsRequired?: boolean;
|
|
257
257
|
}, {
|
|
@@ -264,7 +264,7 @@ export declare const ActionParamSchema: z.ZodObject<{
|
|
|
264
264
|
Description?: string;
|
|
265
265
|
DefaultValue?: string;
|
|
266
266
|
Type?: "Input" | "Output" | "Both";
|
|
267
|
-
ValueType?: "
|
|
267
|
+
ValueType?: "Scalar" | "Simple Object" | "BaseEntity Sub-Class" | "Other";
|
|
268
268
|
IsArray?: boolean;
|
|
269
269
|
IsRequired?: boolean;
|
|
270
270
|
}>;
|
|
@@ -324,51 +324,54 @@ export declare const ActionSchema: z.ZodObject<{
|
|
|
324
324
|
Status: z.ZodUnion<[z.ZodLiteral<"Disabled">, z.ZodLiteral<"Active">, z.ZodLiteral<"Pending">]>;
|
|
325
325
|
__mj_CreatedAt: z.ZodDate;
|
|
326
326
|
__mj_UpdatedAt: z.ZodDate;
|
|
327
|
+
DriverClass: z.ZodNullable<z.ZodString>;
|
|
327
328
|
Category: z.ZodNullable<z.ZodString>;
|
|
328
329
|
CodeApprovedByUser: z.ZodNullable<z.ZodString>;
|
|
329
330
|
}, "strip", z.ZodTypeAny, {
|
|
330
|
-
Category?: string;
|
|
331
331
|
ID?: string;
|
|
332
332
|
__mj_CreatedAt?: Date;
|
|
333
333
|
__mj_UpdatedAt?: Date;
|
|
334
334
|
Name?: string;
|
|
335
335
|
Description?: string;
|
|
336
|
-
Status?: "
|
|
336
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
337
337
|
RetentionPeriod?: number;
|
|
338
338
|
UserComments?: string;
|
|
339
339
|
Code?: string;
|
|
340
|
-
Type?: "
|
|
340
|
+
Type?: "Generated" | "Custom";
|
|
341
341
|
CategoryID?: string;
|
|
342
342
|
UserPrompt?: string;
|
|
343
343
|
CodeComments?: string;
|
|
344
|
-
CodeApprovalStatus?: "Pending" | "
|
|
344
|
+
CodeApprovalStatus?: "Pending" | "Rejected" | "Approved";
|
|
345
345
|
CodeApprovalComments?: string;
|
|
346
346
|
CodeApprovedByUserID?: string;
|
|
347
347
|
CodeApprovedAt?: Date;
|
|
348
348
|
CodeLocked?: boolean;
|
|
349
349
|
ForceCodeGeneration?: boolean;
|
|
350
|
+
DriverClass?: string;
|
|
351
|
+
Category?: string;
|
|
350
352
|
CodeApprovedByUser?: string;
|
|
351
353
|
}, {
|
|
352
|
-
Category?: string;
|
|
353
354
|
ID?: string;
|
|
354
355
|
__mj_CreatedAt?: Date;
|
|
355
356
|
__mj_UpdatedAt?: Date;
|
|
356
357
|
Name?: string;
|
|
357
358
|
Description?: string;
|
|
358
|
-
Status?: "
|
|
359
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
359
360
|
RetentionPeriod?: number;
|
|
360
361
|
UserComments?: string;
|
|
361
362
|
Code?: string;
|
|
362
|
-
Type?: "
|
|
363
|
+
Type?: "Generated" | "Custom";
|
|
363
364
|
CategoryID?: string;
|
|
364
365
|
UserPrompt?: string;
|
|
365
366
|
CodeComments?: string;
|
|
366
|
-
CodeApprovalStatus?: "Pending" | "
|
|
367
|
+
CodeApprovalStatus?: "Pending" | "Rejected" | "Approved";
|
|
367
368
|
CodeApprovalComments?: string;
|
|
368
369
|
CodeApprovedByUserID?: string;
|
|
369
370
|
CodeApprovedAt?: Date;
|
|
370
371
|
CodeLocked?: boolean;
|
|
371
372
|
ForceCodeGeneration?: boolean;
|
|
373
|
+
DriverClass?: string;
|
|
374
|
+
Category?: string;
|
|
372
375
|
CodeApprovedByUser?: string;
|
|
373
376
|
}>;
|
|
374
377
|
export type ActionEntityType = z.infer<typeof ActionSchema>;
|
|
@@ -425,7 +428,7 @@ export declare const AIAgentActionSchema: z.ZodObject<{
|
|
|
425
428
|
__mj_CreatedAt?: Date;
|
|
426
429
|
__mj_UpdatedAt?: Date;
|
|
427
430
|
Action?: string;
|
|
428
|
-
Status?: "
|
|
431
|
+
Status?: "Active" | "Pending" | "Revoked";
|
|
429
432
|
AgentID?: string;
|
|
430
433
|
Agent?: string;
|
|
431
434
|
}, {
|
|
@@ -434,7 +437,7 @@ export declare const AIAgentActionSchema: z.ZodObject<{
|
|
|
434
437
|
__mj_CreatedAt?: Date;
|
|
435
438
|
__mj_UpdatedAt?: Date;
|
|
436
439
|
Action?: string;
|
|
437
|
-
Status?: "
|
|
440
|
+
Status?: "Active" | "Pending" | "Revoked";
|
|
438
441
|
AgentID?: string;
|
|
439
442
|
Agent?: string;
|
|
440
443
|
}>;
|
|
@@ -456,7 +459,7 @@ export declare const AIAgentLearningCycleSchema: z.ZodObject<{
|
|
|
456
459
|
ID?: string;
|
|
457
460
|
__mj_CreatedAt?: Date;
|
|
458
461
|
__mj_UpdatedAt?: Date;
|
|
459
|
-
Status?: "
|
|
462
|
+
Status?: "In-Progress" | "Complete" | "Failed";
|
|
460
463
|
StartedAt?: Date;
|
|
461
464
|
EndedAt?: Date;
|
|
462
465
|
AgentID?: string;
|
|
@@ -466,7 +469,7 @@ export declare const AIAgentLearningCycleSchema: z.ZodObject<{
|
|
|
466
469
|
ID?: string;
|
|
467
470
|
__mj_CreatedAt?: Date;
|
|
468
471
|
__mj_UpdatedAt?: Date;
|
|
469
|
-
Status?: "
|
|
472
|
+
Status?: "In-Progress" | "Complete" | "Failed";
|
|
470
473
|
StartedAt?: Date;
|
|
471
474
|
EndedAt?: Date;
|
|
472
475
|
AgentID?: string;
|
|
@@ -488,20 +491,20 @@ export declare const AIAgentModelSchema: z.ZodObject<{
|
|
|
488
491
|
Agent: z.ZodNullable<z.ZodString>;
|
|
489
492
|
Model: z.ZodNullable<z.ZodString>;
|
|
490
493
|
}, "strip", z.ZodTypeAny, {
|
|
491
|
-
Active?: boolean;
|
|
492
494
|
ID?: string;
|
|
493
495
|
__mj_CreatedAt?: Date;
|
|
494
496
|
__mj_UpdatedAt?: Date;
|
|
497
|
+
Active?: boolean;
|
|
495
498
|
AgentID?: string;
|
|
496
499
|
Agent?: string;
|
|
497
500
|
ModelID?: string;
|
|
498
501
|
Priority?: number;
|
|
499
502
|
Model?: string;
|
|
500
503
|
}, {
|
|
501
|
-
Active?: boolean;
|
|
502
504
|
ID?: string;
|
|
503
505
|
__mj_CreatedAt?: Date;
|
|
504
506
|
__mj_UpdatedAt?: Date;
|
|
507
|
+
Active?: boolean;
|
|
505
508
|
AgentID?: string;
|
|
506
509
|
Agent?: string;
|
|
507
510
|
ModelID?: string;
|
|
@@ -597,7 +600,7 @@ export declare const AIAgentRequestSchema: z.ZodObject<{
|
|
|
597
600
|
Comments?: string;
|
|
598
601
|
__mj_CreatedAt?: Date;
|
|
599
602
|
__mj_UpdatedAt?: Date;
|
|
600
|
-
Status?: "
|
|
603
|
+
Status?: "Rejected" | "Approved" | "Requested" | "Canceled";
|
|
601
604
|
AgentID?: string;
|
|
602
605
|
Agent?: string;
|
|
603
606
|
RequestedAt?: Date;
|
|
@@ -613,7 +616,7 @@ export declare const AIAgentRequestSchema: z.ZodObject<{
|
|
|
613
616
|
Comments?: string;
|
|
614
617
|
__mj_CreatedAt?: Date;
|
|
615
618
|
__mj_UpdatedAt?: Date;
|
|
616
|
-
Status?: "
|
|
619
|
+
Status?: "Rejected" | "Approved" | "Requested" | "Canceled";
|
|
617
620
|
AgentID?: string;
|
|
618
621
|
Agent?: string;
|
|
619
622
|
RequestedAt?: Date;
|
|
@@ -645,6 +648,8 @@ export declare const AIAgentSchema: z.ZodObject<{
|
|
|
645
648
|
ContextCompressionPromptID: z.ZodNullable<z.ZodString>;
|
|
646
649
|
ContextCompressionMessageRetentionCount: z.ZodNullable<z.ZodNumber>;
|
|
647
650
|
TypeID: z.ZodNullable<z.ZodString>;
|
|
651
|
+
Status: z.ZodNullable<z.ZodString>;
|
|
652
|
+
DriverClass: z.ZodNullable<z.ZodString>;
|
|
648
653
|
Parent: z.ZodNullable<z.ZodString>;
|
|
649
654
|
ContextCompressionPrompt: z.ZodNullable<z.ZodString>;
|
|
650
655
|
Type: z.ZodNullable<z.ZodString>;
|
|
@@ -655,8 +660,10 @@ export declare const AIAgentSchema: z.ZodObject<{
|
|
|
655
660
|
Name?: string;
|
|
656
661
|
Description?: string;
|
|
657
662
|
ParentID?: string;
|
|
663
|
+
Status?: string;
|
|
658
664
|
Parent?: string;
|
|
659
665
|
Type?: string;
|
|
666
|
+
DriverClass?: string;
|
|
660
667
|
LogoURL?: string;
|
|
661
668
|
ExposeAsAction?: boolean;
|
|
662
669
|
ExecutionOrder?: number;
|
|
@@ -674,8 +681,10 @@ export declare const AIAgentSchema: z.ZodObject<{
|
|
|
674
681
|
Name?: string;
|
|
675
682
|
Description?: string;
|
|
676
683
|
ParentID?: string;
|
|
684
|
+
Status?: string;
|
|
677
685
|
Parent?: string;
|
|
678
686
|
Type?: string;
|
|
687
|
+
DriverClass?: string;
|
|
679
688
|
LogoURL?: string;
|
|
680
689
|
ExposeAsAction?: boolean;
|
|
681
690
|
ExecutionOrder?: number;
|
|
@@ -772,6 +781,7 @@ export declare const AIModelSchema: z.ZodObject<{
|
|
|
772
781
|
__mj_UpdatedAt?: Date;
|
|
773
782
|
Name?: string;
|
|
774
783
|
Description?: string;
|
|
784
|
+
DriverClass?: string;
|
|
775
785
|
IsActive?: boolean;
|
|
776
786
|
AIModelTypeID?: string;
|
|
777
787
|
PowerRank?: number;
|
|
@@ -780,7 +790,6 @@ export declare const AIModelSchema: z.ZodObject<{
|
|
|
780
790
|
ModelSelectionInsights?: string;
|
|
781
791
|
AIModelType?: string;
|
|
782
792
|
Vendor?: string;
|
|
783
|
-
DriverClass?: string;
|
|
784
793
|
DriverImportPath?: string;
|
|
785
794
|
APIName?: string;
|
|
786
795
|
InputTokenLimit?: number;
|
|
@@ -792,6 +801,7 @@ export declare const AIModelSchema: z.ZodObject<{
|
|
|
792
801
|
__mj_UpdatedAt?: Date;
|
|
793
802
|
Name?: string;
|
|
794
803
|
Description?: string;
|
|
804
|
+
DriverClass?: string;
|
|
795
805
|
IsActive?: boolean;
|
|
796
806
|
AIModelTypeID?: string;
|
|
797
807
|
PowerRank?: number;
|
|
@@ -800,7 +810,6 @@ export declare const AIModelSchema: z.ZodObject<{
|
|
|
800
810
|
ModelSelectionInsights?: string;
|
|
801
811
|
AIModelType?: string;
|
|
802
812
|
Vendor?: string;
|
|
803
|
-
DriverClass?: string;
|
|
804
813
|
DriverImportPath?: string;
|
|
805
814
|
APIName?: string;
|
|
806
815
|
InputTokenLimit?: number;
|
|
@@ -905,15 +914,15 @@ export declare const AIPromptSchema: z.ZodObject<{
|
|
|
905
914
|
AIModelType: z.ZodNullable<z.ZodString>;
|
|
906
915
|
ResultSelectorPrompt: z.ZodNullable<z.ZodString>;
|
|
907
916
|
}, "strip", z.ZodTypeAny, {
|
|
908
|
-
Category?: string;
|
|
909
917
|
ID?: string;
|
|
910
918
|
__mj_CreatedAt?: Date;
|
|
911
919
|
__mj_UpdatedAt?: Date;
|
|
912
920
|
Name?: string;
|
|
913
921
|
Description?: string;
|
|
914
|
-
Status?: "
|
|
922
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
915
923
|
Type?: string;
|
|
916
924
|
CategoryID?: string;
|
|
925
|
+
Category?: string;
|
|
917
926
|
TypeID?: string;
|
|
918
927
|
AIModelTypeID?: string;
|
|
919
928
|
AIModelType?: string;
|
|
@@ -923,7 +932,7 @@ export declare const AIPromptSchema: z.ZodObject<{
|
|
|
923
932
|
MinPowerRank?: number;
|
|
924
933
|
SelectionStrategy?: "Default" | "Specific" | "ByPower";
|
|
925
934
|
PowerPreference?: "Highest" | "Lowest" | "Balanced";
|
|
926
|
-
ParallelizationMode?: "
|
|
935
|
+
ParallelizationMode?: "ModelSpecific" | "None" | "StaticCount" | "ConfigParam";
|
|
927
936
|
ParallelCount?: number;
|
|
928
937
|
ParallelConfigParam?: string;
|
|
929
938
|
OutputType?: "string" | "number" | "boolean" | "object" | "date";
|
|
@@ -946,15 +955,15 @@ export declare const AIPromptSchema: z.ZodObject<{
|
|
|
946
955
|
Template?: string;
|
|
947
956
|
ResultSelectorPrompt?: string;
|
|
948
957
|
}, {
|
|
949
|
-
Category?: string;
|
|
950
958
|
ID?: string;
|
|
951
959
|
__mj_CreatedAt?: Date;
|
|
952
960
|
__mj_UpdatedAt?: Date;
|
|
953
961
|
Name?: string;
|
|
954
962
|
Description?: string;
|
|
955
|
-
Status?: "
|
|
963
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
956
964
|
Type?: string;
|
|
957
965
|
CategoryID?: string;
|
|
966
|
+
Category?: string;
|
|
958
967
|
TypeID?: string;
|
|
959
968
|
AIModelTypeID?: string;
|
|
960
969
|
AIModelType?: string;
|
|
@@ -964,7 +973,7 @@ export declare const AIPromptSchema: z.ZodObject<{
|
|
|
964
973
|
MinPowerRank?: number;
|
|
965
974
|
SelectionStrategy?: "Default" | "Specific" | "ByPower";
|
|
966
975
|
PowerPreference?: "Highest" | "Lowest" | "Balanced";
|
|
967
|
-
ParallelizationMode?: "
|
|
976
|
+
ParallelizationMode?: "ModelSpecific" | "None" | "StaticCount" | "ConfigParam";
|
|
968
977
|
ParallelCount?: number;
|
|
969
978
|
ParallelConfigParam?: string;
|
|
970
979
|
OutputType?: "string" | "number" | "boolean" | "object" | "date";
|
|
@@ -1222,7 +1231,6 @@ export declare const AuditLogSchema: z.ZodObject<{
|
|
|
1222
1231
|
Authorization: z.ZodNullable<z.ZodString>;
|
|
1223
1232
|
Entity: z.ZodNullable<z.ZodString>;
|
|
1224
1233
|
}, "strip", z.ZodTypeAny, {
|
|
1225
|
-
Details?: string;
|
|
1226
1234
|
ID?: string;
|
|
1227
1235
|
AuthorizationID?: string;
|
|
1228
1236
|
__mj_CreatedAt?: Date;
|
|
@@ -1235,10 +1243,10 @@ export declare const AuditLogSchema: z.ZodObject<{
|
|
|
1235
1243
|
EntityID?: string;
|
|
1236
1244
|
Entity?: string;
|
|
1237
1245
|
AuditLogTypeID?: string;
|
|
1246
|
+
Details?: string;
|
|
1238
1247
|
RecordID?: string;
|
|
1239
1248
|
AuditLogType?: string;
|
|
1240
1249
|
}, {
|
|
1241
|
-
Details?: string;
|
|
1242
1250
|
ID?: string;
|
|
1243
1251
|
AuthorizationID?: string;
|
|
1244
1252
|
__mj_CreatedAt?: Date;
|
|
@@ -1251,6 +1259,7 @@ export declare const AuditLogSchema: z.ZodObject<{
|
|
|
1251
1259
|
EntityID?: string;
|
|
1252
1260
|
Entity?: string;
|
|
1253
1261
|
AuditLogTypeID?: string;
|
|
1262
|
+
Details?: string;
|
|
1254
1263
|
RecordID?: string;
|
|
1255
1264
|
AuditLogType?: string;
|
|
1256
1265
|
}>;
|
|
@@ -1375,7 +1384,7 @@ export declare const CommunicationLogSchema: z.ZodObject<{
|
|
|
1375
1384
|
ID?: string;
|
|
1376
1385
|
__mj_CreatedAt?: Date;
|
|
1377
1386
|
__mj_UpdatedAt?: Date;
|
|
1378
|
-
Status?: "Pending" | "
|
|
1387
|
+
Status?: "Pending" | "In-Progress" | "Complete" | "Failed";
|
|
1379
1388
|
CommunicationProviderID?: string;
|
|
1380
1389
|
CommunicationProviderMessageTypeID?: string;
|
|
1381
1390
|
CommunicationRunID?: string;
|
|
@@ -1389,7 +1398,7 @@ export declare const CommunicationLogSchema: z.ZodObject<{
|
|
|
1389
1398
|
ID?: string;
|
|
1390
1399
|
__mj_CreatedAt?: Date;
|
|
1391
1400
|
__mj_UpdatedAt?: Date;
|
|
1392
|
-
Status?: "Pending" | "
|
|
1401
|
+
Status?: "Pending" | "In-Progress" | "Complete" | "Failed";
|
|
1393
1402
|
CommunicationProviderID?: string;
|
|
1394
1403
|
CommunicationProviderMessageTypeID?: string;
|
|
1395
1404
|
CommunicationRunID?: string;
|
|
@@ -1420,7 +1429,7 @@ export declare const CommunicationProviderMessageTypeSchema: z.ZodObject<{
|
|
|
1420
1429
|
__mj_CreatedAt?: Date;
|
|
1421
1430
|
__mj_UpdatedAt?: Date;
|
|
1422
1431
|
Name?: string;
|
|
1423
|
-
Status?: "
|
|
1432
|
+
Status?: "Disabled" | "Active";
|
|
1424
1433
|
CommunicationProviderID?: string;
|
|
1425
1434
|
CommunicationProvider?: string;
|
|
1426
1435
|
CommunicationBaseMessageTypeID?: string;
|
|
@@ -1431,7 +1440,7 @@ export declare const CommunicationProviderMessageTypeSchema: z.ZodObject<{
|
|
|
1431
1440
|
__mj_CreatedAt?: Date;
|
|
1432
1441
|
__mj_UpdatedAt?: Date;
|
|
1433
1442
|
Name?: string;
|
|
1434
|
-
Status?: "
|
|
1443
|
+
Status?: "Disabled" | "Active";
|
|
1435
1444
|
CommunicationProviderID?: string;
|
|
1436
1445
|
CommunicationProvider?: string;
|
|
1437
1446
|
CommunicationBaseMessageTypeID?: string;
|
|
@@ -1460,7 +1469,7 @@ export declare const CommunicationProviderSchema: z.ZodObject<{
|
|
|
1460
1469
|
__mj_UpdatedAt?: Date;
|
|
1461
1470
|
Name?: string;
|
|
1462
1471
|
Description?: string;
|
|
1463
|
-
Status?: "
|
|
1472
|
+
Status?: "Disabled" | "Active";
|
|
1464
1473
|
SupportsSending?: boolean;
|
|
1465
1474
|
SupportsReceiving?: boolean;
|
|
1466
1475
|
SupportsScheduledSending?: boolean;
|
|
@@ -1472,7 +1481,7 @@ export declare const CommunicationProviderSchema: z.ZodObject<{
|
|
|
1472
1481
|
__mj_UpdatedAt?: Date;
|
|
1473
1482
|
Name?: string;
|
|
1474
1483
|
Description?: string;
|
|
1475
|
-
Status?: "
|
|
1484
|
+
Status?: "Disabled" | "Active";
|
|
1476
1485
|
SupportsSending?: boolean;
|
|
1477
1486
|
SupportsReceiving?: boolean;
|
|
1478
1487
|
SupportsScheduledSending?: boolean;
|
|
@@ -1500,7 +1509,7 @@ export declare const CommunicationRunSchema: z.ZodObject<{
|
|
|
1500
1509
|
Comments?: string;
|
|
1501
1510
|
__mj_CreatedAt?: Date;
|
|
1502
1511
|
__mj_UpdatedAt?: Date;
|
|
1503
|
-
Status?: "Pending" | "
|
|
1512
|
+
Status?: "Pending" | "In-Progress" | "Complete" | "Failed";
|
|
1504
1513
|
StartedAt?: Date;
|
|
1505
1514
|
EndedAt?: Date;
|
|
1506
1515
|
UserID?: string;
|
|
@@ -1512,7 +1521,7 @@ export declare const CommunicationRunSchema: z.ZodObject<{
|
|
|
1512
1521
|
Comments?: string;
|
|
1513
1522
|
__mj_CreatedAt?: Date;
|
|
1514
1523
|
__mj_UpdatedAt?: Date;
|
|
1515
|
-
Status?: "Pending" | "
|
|
1524
|
+
Status?: "Pending" | "In-Progress" | "Complete" | "Failed";
|
|
1516
1525
|
StartedAt?: Date;
|
|
1517
1526
|
EndedAt?: Date;
|
|
1518
1527
|
UserID?: string;
|
|
@@ -1688,7 +1697,7 @@ export declare const CompanyIntegrationRunSchema: z.ZodObject<{
|
|
|
1688
1697
|
Comments?: string;
|
|
1689
1698
|
__mj_CreatedAt?: Date;
|
|
1690
1699
|
__mj_UpdatedAt?: Date;
|
|
1691
|
-
Status?: "Pending" | "
|
|
1700
|
+
Status?: "Pending" | "Failed" | "Success" | "In Progress";
|
|
1692
1701
|
StartedAt?: Date;
|
|
1693
1702
|
EndedAt?: Date;
|
|
1694
1703
|
CompanyIntegrationID?: string;
|
|
@@ -1704,7 +1713,7 @@ export declare const CompanyIntegrationRunSchema: z.ZodObject<{
|
|
|
1704
1713
|
Comments?: string;
|
|
1705
1714
|
__mj_CreatedAt?: Date;
|
|
1706
1715
|
__mj_UpdatedAt?: Date;
|
|
1707
|
-
Status?: "Pending" | "
|
|
1716
|
+
Status?: "Pending" | "Failed" | "Success" | "In Progress";
|
|
1708
1717
|
StartedAt?: Date;
|
|
1709
1718
|
EndedAt?: Date;
|
|
1710
1719
|
CompanyIntegrationID?: string;
|
|
@@ -2174,15 +2183,15 @@ export declare const ConversationDetailSchema: z.ZodObject<{
|
|
|
2174
2183
|
User: z.ZodNullable<z.ZodString>;
|
|
2175
2184
|
Artifact: z.ZodNullable<z.ZodString>;
|
|
2176
2185
|
}, "strip", z.ZodTypeAny, {
|
|
2177
|
-
Error?: string;
|
|
2178
2186
|
ID?: string;
|
|
2179
2187
|
__mj_CreatedAt?: Date;
|
|
2180
2188
|
__mj_UpdatedAt?: Date;
|
|
2181
2189
|
UserID?: string;
|
|
2182
2190
|
User?: string;
|
|
2183
|
-
Role?: "
|
|
2191
|
+
Role?: "User" | "AI" | "Error";
|
|
2184
2192
|
ConversationID?: string;
|
|
2185
2193
|
ExternalID?: string;
|
|
2194
|
+
Error?: string;
|
|
2186
2195
|
Message?: string;
|
|
2187
2196
|
HiddenToUser?: boolean;
|
|
2188
2197
|
UserRating?: number;
|
|
@@ -2195,15 +2204,15 @@ export declare const ConversationDetailSchema: z.ZodObject<{
|
|
|
2195
2204
|
Conversation?: string;
|
|
2196
2205
|
Artifact?: string;
|
|
2197
2206
|
}, {
|
|
2198
|
-
Error?: string;
|
|
2199
2207
|
ID?: string;
|
|
2200
2208
|
__mj_CreatedAt?: Date;
|
|
2201
2209
|
__mj_UpdatedAt?: Date;
|
|
2202
2210
|
UserID?: string;
|
|
2203
2211
|
User?: string;
|
|
2204
|
-
Role?: "
|
|
2212
|
+
Role?: "User" | "AI" | "Error";
|
|
2205
2213
|
ConversationID?: string;
|
|
2206
2214
|
ExternalID?: string;
|
|
2215
|
+
Error?: string;
|
|
2207
2216
|
Message?: string;
|
|
2208
2217
|
HiddenToUser?: boolean;
|
|
2209
2218
|
UserRating?: number;
|
|
@@ -2330,7 +2339,6 @@ export declare const DashboardSchema: z.ZodObject<{
|
|
|
2330
2339
|
Category: z.ZodNullable<z.ZodString>;
|
|
2331
2340
|
Application: z.ZodNullable<z.ZodString>;
|
|
2332
2341
|
}, "strip", z.ZodTypeAny, {
|
|
2333
|
-
Category?: string;
|
|
2334
2342
|
ID?: string;
|
|
2335
2343
|
__mj_CreatedAt?: Date;
|
|
2336
2344
|
__mj_UpdatedAt?: Date;
|
|
@@ -2342,13 +2350,13 @@ export declare const DashboardSchema: z.ZodObject<{
|
|
|
2342
2350
|
Type?: "Code" | "Config" | "Dynamic Code";
|
|
2343
2351
|
CategoryID?: string;
|
|
2344
2352
|
DriverClass?: string;
|
|
2353
|
+
Category?: string;
|
|
2345
2354
|
ApplicationID?: string;
|
|
2346
2355
|
Application?: string;
|
|
2347
2356
|
UIConfigDetails?: string;
|
|
2348
2357
|
Thumbnail?: string;
|
|
2349
2358
|
Scope?: "Global" | "App";
|
|
2350
2359
|
}, {
|
|
2351
|
-
Category?: string;
|
|
2352
2360
|
ID?: string;
|
|
2353
2361
|
__mj_CreatedAt?: Date;
|
|
2354
2362
|
__mj_UpdatedAt?: Date;
|
|
@@ -2360,6 +2368,7 @@ export declare const DashboardSchema: z.ZodObject<{
|
|
|
2360
2368
|
Type?: "Code" | "Config" | "Dynamic Code";
|
|
2361
2369
|
CategoryID?: string;
|
|
2362
2370
|
DriverClass?: string;
|
|
2371
|
+
Category?: string;
|
|
2363
2372
|
ApplicationID?: string;
|
|
2364
2373
|
Application?: string;
|
|
2365
2374
|
UIConfigDetails?: string;
|
|
@@ -2558,7 +2567,7 @@ export declare const DuplicateRunDetailMatchSchema: z.ZodObject<{
|
|
|
2558
2567
|
MatchRecordID?: string;
|
|
2559
2568
|
MatchProbability?: number;
|
|
2560
2569
|
MatchedAt?: Date;
|
|
2561
|
-
ApprovalStatus?: "Pending" | "
|
|
2570
|
+
ApprovalStatus?: "Pending" | "Rejected" | "Approved";
|
|
2562
2571
|
RecordMergeLogID?: string;
|
|
2563
2572
|
MergeStatus?: "Pending" | "Complete" | "Error";
|
|
2564
2573
|
MergedAt?: Date;
|
|
@@ -2572,7 +2581,7 @@ export declare const DuplicateRunDetailMatchSchema: z.ZodObject<{
|
|
|
2572
2581
|
MatchRecordID?: string;
|
|
2573
2582
|
MatchProbability?: number;
|
|
2574
2583
|
MatchedAt?: Date;
|
|
2575
|
-
ApprovalStatus?: "Pending" | "
|
|
2584
|
+
ApprovalStatus?: "Pending" | "Rejected" | "Approved";
|
|
2576
2585
|
RecordMergeLogID?: string;
|
|
2577
2586
|
MergeStatus?: "Pending" | "Complete" | "Error";
|
|
2578
2587
|
MergedAt?: Date;
|
|
@@ -2645,12 +2654,12 @@ export declare const DuplicateRunSchema: z.ZodObject<{
|
|
|
2645
2654
|
EndedAt?: Date;
|
|
2646
2655
|
EntityID?: string;
|
|
2647
2656
|
Entity?: string;
|
|
2648
|
-
ApprovalStatus?: "Pending" | "
|
|
2657
|
+
ApprovalStatus?: "Pending" | "Rejected" | "Approved";
|
|
2649
2658
|
StartedByUserID?: string;
|
|
2650
2659
|
SourceListID?: string;
|
|
2651
2660
|
ApprovalComments?: string;
|
|
2652
2661
|
ApprovedByUserID?: string;
|
|
2653
|
-
ProcessingStatus?: "Pending" | "Complete" | "
|
|
2662
|
+
ProcessingStatus?: "Pending" | "Complete" | "Failed" | "In Progress";
|
|
2654
2663
|
ProcessingErrorMessage?: string;
|
|
2655
2664
|
StartedByUser?: string;
|
|
2656
2665
|
SourceList?: string;
|
|
@@ -2663,12 +2672,12 @@ export declare const DuplicateRunSchema: z.ZodObject<{
|
|
|
2663
2672
|
EndedAt?: Date;
|
|
2664
2673
|
EntityID?: string;
|
|
2665
2674
|
Entity?: string;
|
|
2666
|
-
ApprovalStatus?: "Pending" | "
|
|
2675
|
+
ApprovalStatus?: "Pending" | "Rejected" | "Approved";
|
|
2667
2676
|
StartedByUserID?: string;
|
|
2668
2677
|
SourceListID?: string;
|
|
2669
2678
|
ApprovalComments?: string;
|
|
2670
2679
|
ApprovedByUserID?: string;
|
|
2671
|
-
ProcessingStatus?: "Pending" | "Complete" | "
|
|
2680
|
+
ProcessingStatus?: "Pending" | "Complete" | "Failed" | "In Progress";
|
|
2672
2681
|
ProcessingErrorMessage?: string;
|
|
2673
2682
|
StartedByUser?: string;
|
|
2674
2683
|
SourceList?: string;
|
|
@@ -2778,10 +2787,10 @@ export declare const EmployeeSchema: z.ZodObject<{
|
|
|
2778
2787
|
SupervisorLastName: z.ZodNullable<z.ZodString>;
|
|
2779
2788
|
SupervisorEmail: z.ZodNullable<z.ZodString>;
|
|
2780
2789
|
}, "strip", z.ZodTypeAny, {
|
|
2781
|
-
Active?: boolean;
|
|
2782
2790
|
ID?: string;
|
|
2783
2791
|
__mj_CreatedAt?: Date;
|
|
2784
2792
|
__mj_UpdatedAt?: Date;
|
|
2793
|
+
Active?: boolean;
|
|
2785
2794
|
CompanyID?: string;
|
|
2786
2795
|
BCMID?: string;
|
|
2787
2796
|
FirstName?: string;
|
|
@@ -2796,10 +2805,10 @@ export declare const EmployeeSchema: z.ZodObject<{
|
|
|
2796
2805
|
SupervisorLastName?: string;
|
|
2797
2806
|
SupervisorEmail?: string;
|
|
2798
2807
|
}, {
|
|
2799
|
-
Active?: boolean;
|
|
2800
2808
|
ID?: string;
|
|
2801
2809
|
__mj_CreatedAt?: Date;
|
|
2802
2810
|
__mj_UpdatedAt?: Date;
|
|
2811
|
+
Active?: boolean;
|
|
2803
2812
|
CompanyID?: string;
|
|
2804
2813
|
BCMID?: string;
|
|
2805
2814
|
FirstName?: string;
|
|
@@ -2888,7 +2897,7 @@ export declare const EntitySchema: z.ZodObject<{
|
|
|
2888
2897
|
Name?: string;
|
|
2889
2898
|
Description?: string;
|
|
2890
2899
|
ParentID?: string;
|
|
2891
|
-
Status?: "
|
|
2900
|
+
Status?: "Disabled" | "Active" | "Deprecated";
|
|
2892
2901
|
Icon?: string;
|
|
2893
2902
|
CodeName?: string;
|
|
2894
2903
|
NameSuffix?: string;
|
|
@@ -2932,7 +2941,7 @@ export declare const EntitySchema: z.ZodObject<{
|
|
|
2932
2941
|
EntityObjectSubclassImport?: string;
|
|
2933
2942
|
PreferredCommunicationField?: string;
|
|
2934
2943
|
ScopeDefault?: string;
|
|
2935
|
-
RowsToPackWithSchema?: "None" | "
|
|
2944
|
+
RowsToPackWithSchema?: "None" | "Sample" | "All";
|
|
2936
2945
|
RowsToPackSampleMethod?: "random" | "top n" | "bottom n";
|
|
2937
2946
|
RowsToPackSampleCount?: number;
|
|
2938
2947
|
RowsToPackSampleOrder?: string;
|
|
@@ -2951,7 +2960,7 @@ export declare const EntitySchema: z.ZodObject<{
|
|
|
2951
2960
|
Name?: string;
|
|
2952
2961
|
Description?: string;
|
|
2953
2962
|
ParentID?: string;
|
|
2954
|
-
Status?: "
|
|
2963
|
+
Status?: "Disabled" | "Active" | "Deprecated";
|
|
2955
2964
|
Icon?: string;
|
|
2956
2965
|
CodeName?: string;
|
|
2957
2966
|
NameSuffix?: string;
|
|
@@ -2995,7 +3004,7 @@ export declare const EntitySchema: z.ZodObject<{
|
|
|
2995
3004
|
EntityObjectSubclassImport?: string;
|
|
2996
3005
|
PreferredCommunicationField?: string;
|
|
2997
3006
|
ScopeDefault?: string;
|
|
2998
|
-
RowsToPackWithSchema?: "None" | "
|
|
3007
|
+
RowsToPackWithSchema?: "None" | "Sample" | "All";
|
|
2999
3008
|
RowsToPackSampleMethod?: "random" | "top n" | "bottom n";
|
|
3000
3009
|
RowsToPackSampleCount?: number;
|
|
3001
3010
|
RowsToPackSampleOrder?: string;
|
|
@@ -3024,7 +3033,7 @@ export declare const EntityActionFilterSchema: z.ZodObject<{
|
|
|
3024
3033
|
ID?: string;
|
|
3025
3034
|
__mj_CreatedAt?: Date;
|
|
3026
3035
|
__mj_UpdatedAt?: Date;
|
|
3027
|
-
Status?: "
|
|
3036
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
3028
3037
|
Sequence?: number;
|
|
3029
3038
|
EntityActionID?: string;
|
|
3030
3039
|
ActionFilterID?: string;
|
|
@@ -3032,7 +3041,7 @@ export declare const EntityActionFilterSchema: z.ZodObject<{
|
|
|
3032
3041
|
ID?: string;
|
|
3033
3042
|
__mj_CreatedAt?: Date;
|
|
3034
3043
|
__mj_UpdatedAt?: Date;
|
|
3035
|
-
Status?: "
|
|
3044
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
3036
3045
|
Sequence?: number;
|
|
3037
3046
|
EntityActionID?: string;
|
|
3038
3047
|
ActionFilterID?: string;
|
|
@@ -3079,7 +3088,7 @@ export declare const EntityActionInvocationSchema: z.ZodObject<{
|
|
|
3079
3088
|
ID?: string;
|
|
3080
3089
|
__mj_CreatedAt?: Date;
|
|
3081
3090
|
__mj_UpdatedAt?: Date;
|
|
3082
|
-
Status?: "
|
|
3091
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
3083
3092
|
EntityActionID?: string;
|
|
3084
3093
|
InvocationTypeID?: string;
|
|
3085
3094
|
InvocationType?: string;
|
|
@@ -3087,7 +3096,7 @@ export declare const EntityActionInvocationSchema: z.ZodObject<{
|
|
|
3087
3096
|
ID?: string;
|
|
3088
3097
|
__mj_CreatedAt?: Date;
|
|
3089
3098
|
__mj_UpdatedAt?: Date;
|
|
3090
|
-
Status?: "
|
|
3099
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
3091
3100
|
EntityActionID?: string;
|
|
3092
3101
|
InvocationTypeID?: string;
|
|
3093
3102
|
InvocationType?: string;
|
|
@@ -3146,7 +3155,7 @@ export declare const EntityActionSchema: z.ZodObject<{
|
|
|
3146
3155
|
__mj_CreatedAt?: Date;
|
|
3147
3156
|
__mj_UpdatedAt?: Date;
|
|
3148
3157
|
Action?: string;
|
|
3149
|
-
Status?: "
|
|
3158
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
3150
3159
|
EntityID?: string;
|
|
3151
3160
|
Entity?: string;
|
|
3152
3161
|
}, {
|
|
@@ -3155,7 +3164,7 @@ export declare const EntityActionSchema: z.ZodObject<{
|
|
|
3155
3164
|
__mj_CreatedAt?: Date;
|
|
3156
3165
|
__mj_UpdatedAt?: Date;
|
|
3157
3166
|
Action?: string;
|
|
3158
|
-
Status?: "
|
|
3167
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
3159
3168
|
EntityID?: string;
|
|
3160
3169
|
Entity?: string;
|
|
3161
3170
|
}>;
|
|
@@ -3193,7 +3202,7 @@ export declare const EntityAIActionSchema: z.ZodObject<{
|
|
|
3193
3202
|
AIActionID?: string;
|
|
3194
3203
|
AIModel?: string;
|
|
3195
3204
|
AIAction?: string;
|
|
3196
|
-
OutputType?: "
|
|
3205
|
+
OutputType?: "entity" | "field";
|
|
3197
3206
|
EntityID?: string;
|
|
3198
3207
|
Entity?: string;
|
|
3199
3208
|
Prompt?: string;
|
|
@@ -3213,7 +3222,7 @@ export declare const EntityAIActionSchema: z.ZodObject<{
|
|
|
3213
3222
|
AIActionID?: string;
|
|
3214
3223
|
AIModel?: string;
|
|
3215
3224
|
AIAction?: string;
|
|
3216
|
-
OutputType?: "
|
|
3225
|
+
OutputType?: "entity" | "field";
|
|
3217
3226
|
EntityID?: string;
|
|
3218
3227
|
Entity?: string;
|
|
3219
3228
|
Prompt?: string;
|
|
@@ -3532,15 +3541,15 @@ export declare const EntityFieldSchema: z.ZodObject<{
|
|
|
3532
3541
|
RelatedEntityCodeName: z.ZodNullable<z.ZodString>;
|
|
3533
3542
|
RelatedEntityClassName: z.ZodNullable<z.ZodString>;
|
|
3534
3543
|
}, "strip", z.ZodTypeAny, {
|
|
3535
|
-
Category?: string;
|
|
3536
3544
|
ID?: string;
|
|
3537
3545
|
__mj_CreatedAt?: Date;
|
|
3538
3546
|
__mj_UpdatedAt?: Date;
|
|
3539
3547
|
Name?: string;
|
|
3540
3548
|
Description?: string;
|
|
3541
|
-
Status?: "
|
|
3549
|
+
Status?: "Disabled" | "Active" | "Deprecated";
|
|
3542
3550
|
DefaultValue?: string;
|
|
3543
3551
|
Type?: string;
|
|
3552
|
+
Category?: string;
|
|
3544
3553
|
EntityID?: string;
|
|
3545
3554
|
Sequence?: number;
|
|
3546
3555
|
Entity?: string;
|
|
@@ -3562,7 +3571,7 @@ export declare const EntityFieldSchema: z.ZodObject<{
|
|
|
3562
3571
|
AllowsNull?: boolean;
|
|
3563
3572
|
AutoIncrement?: boolean;
|
|
3564
3573
|
ValueListType?: "None" | "List" | "ListOrUserEntry";
|
|
3565
|
-
ExtendedType?: "
|
|
3574
|
+
ExtendedType?: "Code" | "Other" | "URL" | "Email" | "Tel" | "SMS" | "Geo" | "WhatsApp" | "FaceTime" | "Skype" | "SIP" | "MSTeams" | "ZoomMtg";
|
|
3566
3575
|
CodeType?: "Other" | "SQL" | "TypeScript" | "HTML" | "CSS" | "JavaScript";
|
|
3567
3576
|
DefaultInView?: boolean;
|
|
3568
3577
|
ViewCellTemplate?: string;
|
|
@@ -3571,7 +3580,7 @@ export declare const EntityFieldSchema: z.ZodObject<{
|
|
|
3571
3580
|
IncludeInUserSearchAPI?: boolean;
|
|
3572
3581
|
UserSearchParamFormatAPI?: string;
|
|
3573
3582
|
IncludeInGeneratedForm?: boolean;
|
|
3574
|
-
GeneratedFormSection?: "
|
|
3583
|
+
GeneratedFormSection?: "Category" | "Details" | "Top";
|
|
3575
3584
|
IsVirtual?: boolean;
|
|
3576
3585
|
IsNameField?: boolean;
|
|
3577
3586
|
RelatedEntityID?: string;
|
|
@@ -3581,7 +3590,7 @@ export declare const EntityFieldSchema: z.ZodObject<{
|
|
|
3581
3590
|
RelatedEntityDisplayType?: string;
|
|
3582
3591
|
EntityIDFieldName?: string;
|
|
3583
3592
|
AutoUpdateRelatedEntityInfo?: boolean;
|
|
3584
|
-
ValuesToPackWithSchema?: "None" | "
|
|
3593
|
+
ValuesToPackWithSchema?: "None" | "All" | "Auto";
|
|
3585
3594
|
FieldCodeName?: string;
|
|
3586
3595
|
RelatedEntity?: string;
|
|
3587
3596
|
RelatedEntitySchemaName?: string;
|
|
@@ -3590,15 +3599,15 @@ export declare const EntityFieldSchema: z.ZodObject<{
|
|
|
3590
3599
|
RelatedEntityCodeName?: string;
|
|
3591
3600
|
RelatedEntityClassName?: string;
|
|
3592
3601
|
}, {
|
|
3593
|
-
Category?: string;
|
|
3594
3602
|
ID?: string;
|
|
3595
3603
|
__mj_CreatedAt?: Date;
|
|
3596
3604
|
__mj_UpdatedAt?: Date;
|
|
3597
3605
|
Name?: string;
|
|
3598
3606
|
Description?: string;
|
|
3599
|
-
Status?: "
|
|
3607
|
+
Status?: "Disabled" | "Active" | "Deprecated";
|
|
3600
3608
|
DefaultValue?: string;
|
|
3601
3609
|
Type?: string;
|
|
3610
|
+
Category?: string;
|
|
3602
3611
|
EntityID?: string;
|
|
3603
3612
|
Sequence?: number;
|
|
3604
3613
|
Entity?: string;
|
|
@@ -3620,7 +3629,7 @@ export declare const EntityFieldSchema: z.ZodObject<{
|
|
|
3620
3629
|
AllowsNull?: boolean;
|
|
3621
3630
|
AutoIncrement?: boolean;
|
|
3622
3631
|
ValueListType?: "None" | "List" | "ListOrUserEntry";
|
|
3623
|
-
ExtendedType?: "
|
|
3632
|
+
ExtendedType?: "Code" | "Other" | "URL" | "Email" | "Tel" | "SMS" | "Geo" | "WhatsApp" | "FaceTime" | "Skype" | "SIP" | "MSTeams" | "ZoomMtg";
|
|
3624
3633
|
CodeType?: "Other" | "SQL" | "TypeScript" | "HTML" | "CSS" | "JavaScript";
|
|
3625
3634
|
DefaultInView?: boolean;
|
|
3626
3635
|
ViewCellTemplate?: string;
|
|
@@ -3629,7 +3638,7 @@ export declare const EntityFieldSchema: z.ZodObject<{
|
|
|
3629
3638
|
IncludeInUserSearchAPI?: boolean;
|
|
3630
3639
|
UserSearchParamFormatAPI?: string;
|
|
3631
3640
|
IncludeInGeneratedForm?: boolean;
|
|
3632
|
-
GeneratedFormSection?: "
|
|
3641
|
+
GeneratedFormSection?: "Category" | "Details" | "Top";
|
|
3633
3642
|
IsVirtual?: boolean;
|
|
3634
3643
|
IsNameField?: boolean;
|
|
3635
3644
|
RelatedEntityID?: string;
|
|
@@ -3639,7 +3648,7 @@ export declare const EntityFieldSchema: z.ZodObject<{
|
|
|
3639
3648
|
RelatedEntityDisplayType?: string;
|
|
3640
3649
|
EntityIDFieldName?: string;
|
|
3641
3650
|
AutoUpdateRelatedEntityInfo?: boolean;
|
|
3642
|
-
ValuesToPackWithSchema?: "None" | "
|
|
3651
|
+
ValuesToPackWithSchema?: "None" | "All" | "Auto";
|
|
3643
3652
|
FieldCodeName?: string;
|
|
3644
3653
|
RelatedEntity?: string;
|
|
3645
3654
|
RelatedEntitySchemaName?: string;
|
|
@@ -3855,7 +3864,7 @@ export declare const EntityRelationshipSchema: z.ZodObject<{
|
|
|
3855
3864
|
JoinEntityInverseJoinField?: string;
|
|
3856
3865
|
DisplayInForm?: boolean;
|
|
3857
3866
|
DisplayLocation?: "After Field Tabs" | "Before Field Tabs";
|
|
3858
|
-
DisplayIconType?: "None" | "Related Entity Icon"
|
|
3867
|
+
DisplayIconType?: "Custom" | "None" | "Related Entity Icon";
|
|
3859
3868
|
DisplayIcon?: string;
|
|
3860
3869
|
DisplayUserViewID?: string;
|
|
3861
3870
|
DisplayComponentID?: string;
|
|
@@ -3889,7 +3898,7 @@ export declare const EntityRelationshipSchema: z.ZodObject<{
|
|
|
3889
3898
|
JoinEntityInverseJoinField?: string;
|
|
3890
3899
|
DisplayInForm?: boolean;
|
|
3891
3900
|
DisplayLocation?: "After Field Tabs" | "Before Field Tabs";
|
|
3892
|
-
DisplayIconType?: "None" | "Related Entity Icon"
|
|
3901
|
+
DisplayIconType?: "Custom" | "None" | "Related Entity Icon";
|
|
3893
3902
|
DisplayIcon?: string;
|
|
3894
3903
|
DisplayUserViewID?: string;
|
|
3895
3904
|
DisplayComponentID?: string;
|
|
@@ -3948,25 +3957,25 @@ export declare const ErrorLogSchema: z.ZodObject<{
|
|
|
3948
3957
|
__mj_CreatedAt: z.ZodDate;
|
|
3949
3958
|
__mj_UpdatedAt: z.ZodDate;
|
|
3950
3959
|
}, "strip", z.ZodTypeAny, {
|
|
3951
|
-
Details?: string;
|
|
3952
|
-
Category?: string;
|
|
3953
3960
|
ID?: string;
|
|
3954
3961
|
__mj_CreatedAt?: Date;
|
|
3955
3962
|
__mj_UpdatedAt?: Date;
|
|
3956
3963
|
Status?: string;
|
|
3957
3964
|
Code?: string;
|
|
3965
|
+
Category?: string;
|
|
3966
|
+
Details?: string;
|
|
3958
3967
|
CompanyIntegrationRunID?: string;
|
|
3959
3968
|
Message?: string;
|
|
3960
3969
|
CompanyIntegrationRunDetailID?: string;
|
|
3961
3970
|
CreatedBy?: string;
|
|
3962
3971
|
}, {
|
|
3963
|
-
Details?: string;
|
|
3964
|
-
Category?: string;
|
|
3965
3972
|
ID?: string;
|
|
3966
3973
|
__mj_CreatedAt?: Date;
|
|
3967
3974
|
__mj_UpdatedAt?: Date;
|
|
3968
3975
|
Status?: string;
|
|
3969
3976
|
Code?: string;
|
|
3977
|
+
Category?: string;
|
|
3978
|
+
Details?: string;
|
|
3970
3979
|
CompanyIntegrationRunID?: string;
|
|
3971
3980
|
Message?: string;
|
|
3972
3981
|
CompanyIntegrationRunDetailID?: string;
|
|
@@ -4130,7 +4139,6 @@ export declare const FileSchema: z.ZodObject<{
|
|
|
4130
4139
|
Category: z.ZodNullable<z.ZodString>;
|
|
4131
4140
|
Provider: z.ZodString;
|
|
4132
4141
|
}, "strip", z.ZodTypeAny, {
|
|
4133
|
-
Category?: string;
|
|
4134
4142
|
ID?: string;
|
|
4135
4143
|
__mj_CreatedAt?: Date;
|
|
4136
4144
|
__mj_UpdatedAt?: Date;
|
|
@@ -4138,12 +4146,12 @@ export declare const FileSchema: z.ZodObject<{
|
|
|
4138
4146
|
Description?: string;
|
|
4139
4147
|
Status?: string;
|
|
4140
4148
|
CategoryID?: string;
|
|
4149
|
+
Category?: string;
|
|
4141
4150
|
ContentType?: string;
|
|
4142
4151
|
ProviderID?: string;
|
|
4143
4152
|
ProviderKey?: string;
|
|
4144
4153
|
Provider?: string;
|
|
4145
4154
|
}, {
|
|
4146
|
-
Category?: string;
|
|
4147
4155
|
ID?: string;
|
|
4148
4156
|
__mj_CreatedAt?: Date;
|
|
4149
4157
|
__mj_UpdatedAt?: Date;
|
|
@@ -4151,6 +4159,7 @@ export declare const FileSchema: z.ZodObject<{
|
|
|
4151
4159
|
Description?: string;
|
|
4152
4160
|
Status?: string;
|
|
4153
4161
|
CategoryID?: string;
|
|
4162
|
+
Category?: string;
|
|
4154
4163
|
ContentType?: string;
|
|
4155
4164
|
ProviderID?: string;
|
|
4156
4165
|
ProviderKey?: string;
|
|
@@ -4208,15 +4217,15 @@ export declare const GeneratedCodeSchema: z.ZodObject<{
|
|
|
4208
4217
|
GeneratedByModel: z.ZodString;
|
|
4209
4218
|
LinkedEntity: z.ZodNullable<z.ZodString>;
|
|
4210
4219
|
}, "strip", z.ZodTypeAny, {
|
|
4211
|
-
Category?: string;
|
|
4212
4220
|
ID?: string;
|
|
4213
4221
|
__mj_CreatedAt?: Date;
|
|
4214
4222
|
__mj_UpdatedAt?: Date;
|
|
4215
4223
|
Name?: string;
|
|
4216
4224
|
Description?: string;
|
|
4217
|
-
Status?: "Pending" | "
|
|
4225
|
+
Status?: "Pending" | "Rejected" | "Approved";
|
|
4218
4226
|
Code?: string;
|
|
4219
4227
|
CategoryID?: string;
|
|
4228
|
+
Category?: string;
|
|
4220
4229
|
Source?: string;
|
|
4221
4230
|
LinkedEntityID?: string;
|
|
4222
4231
|
LinkedEntity?: string;
|
|
@@ -4226,15 +4235,15 @@ export declare const GeneratedCodeSchema: z.ZodObject<{
|
|
|
4226
4235
|
Language?: "Other" | "SQL" | "TypeScript" | "HTML" | "CSS" | "JavaScript" | "Python";
|
|
4227
4236
|
GeneratedByModel?: string;
|
|
4228
4237
|
}, {
|
|
4229
|
-
Category?: string;
|
|
4230
4238
|
ID?: string;
|
|
4231
4239
|
__mj_CreatedAt?: Date;
|
|
4232
4240
|
__mj_UpdatedAt?: Date;
|
|
4233
4241
|
Name?: string;
|
|
4234
4242
|
Description?: string;
|
|
4235
|
-
Status?: "Pending" | "
|
|
4243
|
+
Status?: "Pending" | "Rejected" | "Approved";
|
|
4236
4244
|
Code?: string;
|
|
4237
4245
|
CategoryID?: string;
|
|
4246
|
+
Category?: string;
|
|
4238
4247
|
Source?: string;
|
|
4239
4248
|
LinkedEntityID?: string;
|
|
4240
4249
|
LinkedEntity?: string;
|
|
@@ -4339,7 +4348,7 @@ export declare const LibrarySchema: z.ZodObject<{
|
|
|
4339
4348
|
__mj_UpdatedAt?: Date;
|
|
4340
4349
|
Name?: string;
|
|
4341
4350
|
Description?: string;
|
|
4342
|
-
Status?: "
|
|
4351
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
4343
4352
|
TypeDefinitions?: string;
|
|
4344
4353
|
SampleCode?: string;
|
|
4345
4354
|
}, {
|
|
@@ -4348,7 +4357,7 @@ export declare const LibrarySchema: z.ZodObject<{
|
|
|
4348
4357
|
__mj_UpdatedAt?: Date;
|
|
4349
4358
|
Name?: string;
|
|
4350
4359
|
Description?: string;
|
|
4351
|
-
Status?: "
|
|
4360
|
+
Status?: "Disabled" | "Active" | "Pending";
|
|
4352
4361
|
TypeDefinitions?: string;
|
|
4353
4362
|
SampleCode?: string;
|
|
4354
4363
|
}>;
|
|
@@ -4431,23 +4440,23 @@ export declare const ListDetailSchema: z.ZodObject<{
|
|
|
4431
4440
|
AdditionalData: z.ZodNullable<z.ZodString>;
|
|
4432
4441
|
List: z.ZodString;
|
|
4433
4442
|
}, "strip", z.ZodTypeAny, {
|
|
4434
|
-
List?: string;
|
|
4435
4443
|
ID?: string;
|
|
4436
4444
|
__mj_CreatedAt?: Date;
|
|
4437
4445
|
__mj_UpdatedAt?: Date;
|
|
4438
|
-
Status?: "
|
|
4446
|
+
Status?: "Disabled" | "Active" | "Pending" | "Other" | "Rejected" | "Complete" | "Error";
|
|
4439
4447
|
Sequence?: number;
|
|
4440
4448
|
RecordID?: string;
|
|
4449
|
+
List?: string;
|
|
4441
4450
|
ListID?: string;
|
|
4442
4451
|
AdditionalData?: string;
|
|
4443
4452
|
}, {
|
|
4444
|
-
List?: string;
|
|
4445
4453
|
ID?: string;
|
|
4446
4454
|
__mj_CreatedAt?: Date;
|
|
4447
4455
|
__mj_UpdatedAt?: Date;
|
|
4448
|
-
Status?: "
|
|
4456
|
+
Status?: "Disabled" | "Active" | "Pending" | "Other" | "Rejected" | "Complete" | "Error";
|
|
4449
4457
|
Sequence?: number;
|
|
4450
4458
|
RecordID?: string;
|
|
4459
|
+
List?: string;
|
|
4451
4460
|
ListID?: string;
|
|
4452
4461
|
AdditionalData?: string;
|
|
4453
4462
|
}>;
|
|
@@ -4470,7 +4479,6 @@ export declare const ListSchema: z.ZodObject<{
|
|
|
4470
4479
|
User: z.ZodString;
|
|
4471
4480
|
Category: z.ZodNullable<z.ZodString>;
|
|
4472
4481
|
}, "strip", z.ZodTypeAny, {
|
|
4473
|
-
Category?: string;
|
|
4474
4482
|
ID?: string;
|
|
4475
4483
|
__mj_CreatedAt?: Date;
|
|
4476
4484
|
__mj_UpdatedAt?: Date;
|
|
@@ -4479,12 +4487,12 @@ export declare const ListSchema: z.ZodObject<{
|
|
|
4479
4487
|
UserID?: string;
|
|
4480
4488
|
User?: string;
|
|
4481
4489
|
CategoryID?: string;
|
|
4490
|
+
Category?: string;
|
|
4482
4491
|
EntityID?: string;
|
|
4483
4492
|
Entity?: string;
|
|
4484
4493
|
CompanyIntegrationID?: string;
|
|
4485
4494
|
ExternalSystemRecordID?: string;
|
|
4486
4495
|
}, {
|
|
4487
|
-
Category?: string;
|
|
4488
4496
|
ID?: string;
|
|
4489
4497
|
__mj_CreatedAt?: Date;
|
|
4490
4498
|
__mj_UpdatedAt?: Date;
|
|
@@ -4493,6 +4501,7 @@ export declare const ListSchema: z.ZodObject<{
|
|
|
4493
4501
|
UserID?: string;
|
|
4494
4502
|
User?: string;
|
|
4495
4503
|
CategoryID?: string;
|
|
4504
|
+
Category?: string;
|
|
4496
4505
|
EntityID?: string;
|
|
4497
4506
|
Entity?: string;
|
|
4498
4507
|
CompanyIntegrationID?: string;
|
|
@@ -4530,7 +4539,7 @@ export declare const AIAgentPromptSchema: z.ZodObject<{
|
|
|
4530
4539
|
Prompt?: string;
|
|
4531
4540
|
PromptID?: string;
|
|
4532
4541
|
Purpose?: string;
|
|
4533
|
-
ContextBehavior?: "
|
|
4542
|
+
ContextBehavior?: "Custom" | "Complete" | "None" | "Smart" | "RecentMessages" | "InitialMessages";
|
|
4534
4543
|
ContextMessageCount?: number;
|
|
4535
4544
|
}, {
|
|
4536
4545
|
ID?: string;
|
|
@@ -4545,7 +4554,7 @@ export declare const AIAgentPromptSchema: z.ZodObject<{
|
|
|
4545
4554
|
Prompt?: string;
|
|
4546
4555
|
PromptID?: string;
|
|
4547
4556
|
Purpose?: string;
|
|
4548
|
-
ContextBehavior?: "
|
|
4557
|
+
ContextBehavior?: "Custom" | "Complete" | "None" | "Smart" | "RecentMessages" | "InitialMessages";
|
|
4549
4558
|
ContextMessageCount?: number;
|
|
4550
4559
|
}>;
|
|
4551
4560
|
export type AIAgentPromptEntityType = z.infer<typeof AIAgentPromptSchema>;
|
|
@@ -4569,12 +4578,12 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
|
|
|
4569
4578
|
__mj_CreatedAt: z.ZodDate;
|
|
4570
4579
|
__mj_UpdatedAt: z.ZodDate;
|
|
4571
4580
|
}, "strip", z.ZodTypeAny, {
|
|
4572
|
-
Success?: boolean;
|
|
4573
4581
|
ID?: string;
|
|
4574
4582
|
__mj_CreatedAt?: Date;
|
|
4575
4583
|
__mj_UpdatedAt?: Date;
|
|
4576
4584
|
Status?: "Failed" | "Running" | "Completed" | "Cancelled";
|
|
4577
4585
|
StartedAt?: Date;
|
|
4586
|
+
Success?: boolean;
|
|
4578
4587
|
ErrorMessage?: string;
|
|
4579
4588
|
AgentRunID?: string;
|
|
4580
4589
|
StepNumber?: number;
|
|
@@ -4585,12 +4594,12 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
|
|
|
4585
4594
|
InputData?: string;
|
|
4586
4595
|
OutputData?: string;
|
|
4587
4596
|
}, {
|
|
4588
|
-
Success?: boolean;
|
|
4589
4597
|
ID?: string;
|
|
4590
4598
|
__mj_CreatedAt?: Date;
|
|
4591
4599
|
__mj_UpdatedAt?: Date;
|
|
4592
4600
|
Status?: "Failed" | "Running" | "Completed" | "Cancelled";
|
|
4593
4601
|
StartedAt?: Date;
|
|
4602
|
+
Success?: boolean;
|
|
4594
4603
|
ErrorMessage?: string;
|
|
4595
4604
|
AgentRunID?: string;
|
|
4596
4605
|
StepNumber?: number;
|
|
@@ -4622,11 +4631,16 @@ export declare const AIAgentRunSchema: z.ZodObject<{
|
|
|
4622
4631
|
TotalCost: z.ZodNullable<z.ZodNumber>;
|
|
4623
4632
|
__mj_CreatedAt: z.ZodDate;
|
|
4624
4633
|
__mj_UpdatedAt: z.ZodDate;
|
|
4634
|
+
TotalPromptTokensUsed: z.ZodNullable<z.ZodNumber>;
|
|
4635
|
+
TotalCompletionTokensUsed: z.ZodNullable<z.ZodNumber>;
|
|
4636
|
+
TotalTokensUsedRollup: z.ZodNullable<z.ZodNumber>;
|
|
4637
|
+
TotalPromptTokensUsedRollup: z.ZodNullable<z.ZodNumber>;
|
|
4638
|
+
TotalCompletionTokensUsedRollup: z.ZodNullable<z.ZodNumber>;
|
|
4639
|
+
TotalCostRollup: z.ZodNullable<z.ZodNumber>;
|
|
4625
4640
|
Agent: z.ZodNullable<z.ZodString>;
|
|
4626
4641
|
Conversation: z.ZodNullable<z.ZodString>;
|
|
4627
4642
|
User: z.ZodNullable<z.ZodString>;
|
|
4628
4643
|
}, "strip", z.ZodTypeAny, {
|
|
4629
|
-
Success?: boolean;
|
|
4630
4644
|
ID?: string;
|
|
4631
4645
|
__mj_CreatedAt?: Date;
|
|
4632
4646
|
__mj_UpdatedAt?: Date;
|
|
@@ -4636,6 +4650,7 @@ export declare const AIAgentRunSchema: z.ZodObject<{
|
|
|
4636
4650
|
User?: string;
|
|
4637
4651
|
AgentID?: string;
|
|
4638
4652
|
Agent?: string;
|
|
4653
|
+
Success?: boolean;
|
|
4639
4654
|
ErrorMessage?: string;
|
|
4640
4655
|
ConversationID?: string;
|
|
4641
4656
|
Conversation?: string;
|
|
@@ -4645,8 +4660,13 @@ export declare const AIAgentRunSchema: z.ZodObject<{
|
|
|
4645
4660
|
AgentState?: string;
|
|
4646
4661
|
TotalTokensUsed?: number;
|
|
4647
4662
|
TotalCost?: number;
|
|
4663
|
+
TotalPromptTokensUsed?: number;
|
|
4664
|
+
TotalCompletionTokensUsed?: number;
|
|
4665
|
+
TotalTokensUsedRollup?: number;
|
|
4666
|
+
TotalPromptTokensUsedRollup?: number;
|
|
4667
|
+
TotalCompletionTokensUsedRollup?: number;
|
|
4668
|
+
TotalCostRollup?: number;
|
|
4648
4669
|
}, {
|
|
4649
|
-
Success?: boolean;
|
|
4650
4670
|
ID?: string;
|
|
4651
4671
|
__mj_CreatedAt?: Date;
|
|
4652
4672
|
__mj_UpdatedAt?: Date;
|
|
@@ -4656,6 +4676,7 @@ export declare const AIAgentRunSchema: z.ZodObject<{
|
|
|
4656
4676
|
User?: string;
|
|
4657
4677
|
AgentID?: string;
|
|
4658
4678
|
Agent?: string;
|
|
4679
|
+
Success?: boolean;
|
|
4659
4680
|
ErrorMessage?: string;
|
|
4660
4681
|
ConversationID?: string;
|
|
4661
4682
|
Conversation?: string;
|
|
@@ -4665,6 +4686,12 @@ export declare const AIAgentRunSchema: z.ZodObject<{
|
|
|
4665
4686
|
AgentState?: string;
|
|
4666
4687
|
TotalTokensUsed?: number;
|
|
4667
4688
|
TotalCost?: number;
|
|
4689
|
+
TotalPromptTokensUsed?: number;
|
|
4690
|
+
TotalCompletionTokensUsed?: number;
|
|
4691
|
+
TotalTokensUsedRollup?: number;
|
|
4692
|
+
TotalPromptTokensUsedRollup?: number;
|
|
4693
|
+
TotalCompletionTokensUsedRollup?: number;
|
|
4694
|
+
TotalCostRollup?: number;
|
|
4668
4695
|
}>;
|
|
4669
4696
|
export type AIAgentRunEntityType = z.infer<typeof AIAgentRunSchema>;
|
|
4670
4697
|
/**
|
|
@@ -4678,6 +4705,8 @@ export declare const AIAgentTypeSchema: z.ZodObject<{
|
|
|
4678
4705
|
IsActive: z.ZodBoolean;
|
|
4679
4706
|
__mj_CreatedAt: z.ZodDate;
|
|
4680
4707
|
__mj_UpdatedAt: z.ZodDate;
|
|
4708
|
+
AgentPromptPlaceholder: z.ZodNullable<z.ZodString>;
|
|
4709
|
+
DriverClass: z.ZodNullable<z.ZodString>;
|
|
4681
4710
|
SystemPrompt: z.ZodNullable<z.ZodString>;
|
|
4682
4711
|
}, "strip", z.ZodTypeAny, {
|
|
4683
4712
|
ID?: string;
|
|
@@ -4685,8 +4714,10 @@ export declare const AIAgentTypeSchema: z.ZodObject<{
|
|
|
4685
4714
|
__mj_UpdatedAt?: Date;
|
|
4686
4715
|
Name?: string;
|
|
4687
4716
|
Description?: string;
|
|
4717
|
+
DriverClass?: string;
|
|
4688
4718
|
IsActive?: boolean;
|
|
4689
4719
|
SystemPromptID?: string;
|
|
4720
|
+
AgentPromptPlaceholder?: string;
|
|
4690
4721
|
SystemPrompt?: string;
|
|
4691
4722
|
}, {
|
|
4692
4723
|
ID?: string;
|
|
@@ -4694,8 +4725,10 @@ export declare const AIAgentTypeSchema: z.ZodObject<{
|
|
|
4694
4725
|
__mj_UpdatedAt?: Date;
|
|
4695
4726
|
Name?: string;
|
|
4696
4727
|
Description?: string;
|
|
4728
|
+
DriverClass?: string;
|
|
4697
4729
|
IsActive?: boolean;
|
|
4698
4730
|
SystemPromptID?: string;
|
|
4731
|
+
AgentPromptPlaceholder?: string;
|
|
4699
4732
|
SystemPrompt?: string;
|
|
4700
4733
|
}>;
|
|
4701
4734
|
export type AIAgentTypeEntityType = z.infer<typeof AIAgentTypeSchema>;
|
|
@@ -4775,6 +4808,120 @@ export declare const AIConfigurationSchema: z.ZodObject<{
|
|
|
4775
4808
|
DefaultPromptForContextSummarization?: string;
|
|
4776
4809
|
}>;
|
|
4777
4810
|
export type AIConfigurationEntityType = z.infer<typeof AIConfigurationSchema>;
|
|
4811
|
+
/**
|
|
4812
|
+
* zod schema definition for the entity MJ: AI Model Costs
|
|
4813
|
+
*/
|
|
4814
|
+
export declare const AIModelCostSchema: z.ZodObject<{
|
|
4815
|
+
ID: z.ZodString;
|
|
4816
|
+
ModelID: z.ZodString;
|
|
4817
|
+
VendorID: z.ZodString;
|
|
4818
|
+
StartedAt: z.ZodNullable<z.ZodDate>;
|
|
4819
|
+
EndedAt: z.ZodNullable<z.ZodDate>;
|
|
4820
|
+
Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Pending">, z.ZodLiteral<"Expired">, z.ZodLiteral<"Invalid">]>;
|
|
4821
|
+
Currency: z.ZodString;
|
|
4822
|
+
PriceTypeID: z.ZodString;
|
|
4823
|
+
InputPricePerUnit: z.ZodNumber;
|
|
4824
|
+
OutputPricePerUnit: z.ZodNumber;
|
|
4825
|
+
UnitTypeID: z.ZodString;
|
|
4826
|
+
ProcessingType: z.ZodUnion<[z.ZodLiteral<"Realtime">, z.ZodLiteral<"Batch">]>;
|
|
4827
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
4828
|
+
__mj_CreatedAt: z.ZodDate;
|
|
4829
|
+
__mj_UpdatedAt: z.ZodDate;
|
|
4830
|
+
Model: z.ZodString;
|
|
4831
|
+
Vendor: z.ZodString;
|
|
4832
|
+
PriceType: z.ZodString;
|
|
4833
|
+
UnitType: z.ZodString;
|
|
4834
|
+
}, "strip", z.ZodTypeAny, {
|
|
4835
|
+
ID?: string;
|
|
4836
|
+
Comments?: string;
|
|
4837
|
+
__mj_CreatedAt?: Date;
|
|
4838
|
+
__mj_UpdatedAt?: Date;
|
|
4839
|
+
Status?: "Active" | "Pending" | "Expired" | "Invalid";
|
|
4840
|
+
StartedAt?: Date;
|
|
4841
|
+
EndedAt?: Date;
|
|
4842
|
+
ModelID?: string;
|
|
4843
|
+
Model?: string;
|
|
4844
|
+
Vendor?: string;
|
|
4845
|
+
VendorID?: string;
|
|
4846
|
+
Currency?: string;
|
|
4847
|
+
PriceTypeID?: string;
|
|
4848
|
+
InputPricePerUnit?: number;
|
|
4849
|
+
OutputPricePerUnit?: number;
|
|
4850
|
+
UnitTypeID?: string;
|
|
4851
|
+
ProcessingType?: "Realtime" | "Batch";
|
|
4852
|
+
PriceType?: string;
|
|
4853
|
+
UnitType?: string;
|
|
4854
|
+
}, {
|
|
4855
|
+
ID?: string;
|
|
4856
|
+
Comments?: string;
|
|
4857
|
+
__mj_CreatedAt?: Date;
|
|
4858
|
+
__mj_UpdatedAt?: Date;
|
|
4859
|
+
Status?: "Active" | "Pending" | "Expired" | "Invalid";
|
|
4860
|
+
StartedAt?: Date;
|
|
4861
|
+
EndedAt?: Date;
|
|
4862
|
+
ModelID?: string;
|
|
4863
|
+
Model?: string;
|
|
4864
|
+
Vendor?: string;
|
|
4865
|
+
VendorID?: string;
|
|
4866
|
+
Currency?: string;
|
|
4867
|
+
PriceTypeID?: string;
|
|
4868
|
+
InputPricePerUnit?: number;
|
|
4869
|
+
OutputPricePerUnit?: number;
|
|
4870
|
+
UnitTypeID?: string;
|
|
4871
|
+
ProcessingType?: "Realtime" | "Batch";
|
|
4872
|
+
PriceType?: string;
|
|
4873
|
+
UnitType?: string;
|
|
4874
|
+
}>;
|
|
4875
|
+
export type AIModelCostEntityType = z.infer<typeof AIModelCostSchema>;
|
|
4876
|
+
/**
|
|
4877
|
+
* zod schema definition for the entity MJ: AI Model Price Types
|
|
4878
|
+
*/
|
|
4879
|
+
export declare const AIModelPriceTypeSchema: z.ZodObject<{
|
|
4880
|
+
ID: z.ZodString;
|
|
4881
|
+
Name: z.ZodString;
|
|
4882
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4883
|
+
__mj_CreatedAt: z.ZodDate;
|
|
4884
|
+
__mj_UpdatedAt: z.ZodDate;
|
|
4885
|
+
}, "strip", z.ZodTypeAny, {
|
|
4886
|
+
ID?: string;
|
|
4887
|
+
__mj_CreatedAt?: Date;
|
|
4888
|
+
__mj_UpdatedAt?: Date;
|
|
4889
|
+
Name?: string;
|
|
4890
|
+
Description?: string;
|
|
4891
|
+
}, {
|
|
4892
|
+
ID?: string;
|
|
4893
|
+
__mj_CreatedAt?: Date;
|
|
4894
|
+
__mj_UpdatedAt?: Date;
|
|
4895
|
+
Name?: string;
|
|
4896
|
+
Description?: string;
|
|
4897
|
+
}>;
|
|
4898
|
+
export type AIModelPriceTypeEntityType = z.infer<typeof AIModelPriceTypeSchema>;
|
|
4899
|
+
/**
|
|
4900
|
+
* zod schema definition for the entity MJ: AI Model Price Unit Types
|
|
4901
|
+
*/
|
|
4902
|
+
export declare const AIModelPriceUnitTypeSchema: z.ZodObject<{
|
|
4903
|
+
ID: z.ZodString;
|
|
4904
|
+
Name: z.ZodString;
|
|
4905
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4906
|
+
DriverClass: z.ZodString;
|
|
4907
|
+
__mj_CreatedAt: z.ZodDate;
|
|
4908
|
+
__mj_UpdatedAt: z.ZodDate;
|
|
4909
|
+
}, "strip", z.ZodTypeAny, {
|
|
4910
|
+
ID?: string;
|
|
4911
|
+
__mj_CreatedAt?: Date;
|
|
4912
|
+
__mj_UpdatedAt?: Date;
|
|
4913
|
+
Name?: string;
|
|
4914
|
+
Description?: string;
|
|
4915
|
+
DriverClass?: string;
|
|
4916
|
+
}, {
|
|
4917
|
+
ID?: string;
|
|
4918
|
+
__mj_CreatedAt?: Date;
|
|
4919
|
+
__mj_UpdatedAt?: Date;
|
|
4920
|
+
Name?: string;
|
|
4921
|
+
Description?: string;
|
|
4922
|
+
DriverClass?: string;
|
|
4923
|
+
}>;
|
|
4924
|
+
export type AIModelPriceUnitTypeEntityType = z.infer<typeof AIModelPriceUnitTypeSchema>;
|
|
4778
4925
|
/**
|
|
4779
4926
|
* zod schema definition for the entity MJ: AI Model Vendors
|
|
4780
4927
|
*/
|
|
@@ -4804,12 +4951,12 @@ export declare const AIModelVendorSchema: z.ZodObject<{
|
|
|
4804
4951
|
__mj_UpdatedAt?: Date;
|
|
4805
4952
|
Status?: "Active" | "Deprecated" | "Inactive" | "Preview";
|
|
4806
4953
|
Type?: string;
|
|
4954
|
+
DriverClass?: string;
|
|
4807
4955
|
ModelID?: string;
|
|
4808
4956
|
Priority?: number;
|
|
4809
4957
|
Model?: string;
|
|
4810
4958
|
TypeID?: string;
|
|
4811
4959
|
Vendor?: string;
|
|
4812
|
-
DriverClass?: string;
|
|
4813
4960
|
DriverImportPath?: string;
|
|
4814
4961
|
APIName?: string;
|
|
4815
4962
|
SupportedResponseFormats?: string;
|
|
@@ -4824,12 +4971,12 @@ export declare const AIModelVendorSchema: z.ZodObject<{
|
|
|
4824
4971
|
__mj_UpdatedAt?: Date;
|
|
4825
4972
|
Status?: "Active" | "Deprecated" | "Inactive" | "Preview";
|
|
4826
4973
|
Type?: string;
|
|
4974
|
+
DriverClass?: string;
|
|
4827
4975
|
ModelID?: string;
|
|
4828
4976
|
Priority?: number;
|
|
4829
4977
|
Model?: string;
|
|
4830
4978
|
TypeID?: string;
|
|
4831
4979
|
Vendor?: string;
|
|
4832
|
-
DriverClass?: string;
|
|
4833
4980
|
DriverImportPath?: string;
|
|
4834
4981
|
APIName?: string;
|
|
4835
4982
|
SupportedResponseFormats?: string;
|
|
@@ -4929,13 +5076,17 @@ export declare const AIPromptRunSchema: z.ZodObject<{
|
|
|
4929
5076
|
RunType: z.ZodUnion<[z.ZodLiteral<"Single">, z.ZodLiteral<"ParallelParent">, z.ZodLiteral<"ParallelChild">, z.ZodLiteral<"ResultSelector">]>;
|
|
4930
5077
|
ExecutionOrder: z.ZodNullable<z.ZodNumber>;
|
|
4931
5078
|
AgentRunID: z.ZodNullable<z.ZodString>;
|
|
5079
|
+
Cost: z.ZodNullable<z.ZodNumber>;
|
|
5080
|
+
CostCurrency: z.ZodNullable<z.ZodString>;
|
|
5081
|
+
TokensUsedRollup: z.ZodNullable<z.ZodNumber>;
|
|
5082
|
+
TokensPromptRollup: z.ZodNullable<z.ZodNumber>;
|
|
5083
|
+
TokensCompletionRollup: z.ZodNullable<z.ZodNumber>;
|
|
4932
5084
|
Prompt: z.ZodString;
|
|
4933
5085
|
Model: z.ZodString;
|
|
4934
5086
|
Vendor: z.ZodString;
|
|
4935
5087
|
Agent: z.ZodNullable<z.ZodString>;
|
|
4936
5088
|
Configuration: z.ZodNullable<z.ZodString>;
|
|
4937
5089
|
}, "strip", z.ZodTypeAny, {
|
|
4938
|
-
Success?: boolean;
|
|
4939
5090
|
ID?: string;
|
|
4940
5091
|
__mj_CreatedAt?: Date;
|
|
4941
5092
|
__mj_UpdatedAt?: Date;
|
|
@@ -4950,6 +5101,7 @@ export declare const AIPromptRunSchema: z.ZodObject<{
|
|
|
4950
5101
|
VendorID?: string;
|
|
4951
5102
|
ConfigurationID?: string;
|
|
4952
5103
|
Configuration?: string;
|
|
5104
|
+
Success?: boolean;
|
|
4953
5105
|
ErrorMessage?: string;
|
|
4954
5106
|
Prompt?: string;
|
|
4955
5107
|
PromptID?: string;
|
|
@@ -4963,8 +5115,12 @@ export declare const AIPromptRunSchema: z.ZodObject<{
|
|
|
4963
5115
|
TokensPrompt?: number;
|
|
4964
5116
|
TokensCompletion?: number;
|
|
4965
5117
|
RunType?: "Single" | "ParallelParent" | "ParallelChild" | "ResultSelector";
|
|
5118
|
+
Cost?: number;
|
|
5119
|
+
CostCurrency?: string;
|
|
5120
|
+
TokensUsedRollup?: number;
|
|
5121
|
+
TokensPromptRollup?: number;
|
|
5122
|
+
TokensCompletionRollup?: number;
|
|
4966
5123
|
}, {
|
|
4967
|
-
Success?: boolean;
|
|
4968
5124
|
ID?: string;
|
|
4969
5125
|
__mj_CreatedAt?: Date;
|
|
4970
5126
|
__mj_UpdatedAt?: Date;
|
|
@@ -4979,6 +5135,7 @@ export declare const AIPromptRunSchema: z.ZodObject<{
|
|
|
4979
5135
|
VendorID?: string;
|
|
4980
5136
|
ConfigurationID?: string;
|
|
4981
5137
|
Configuration?: string;
|
|
5138
|
+
Success?: boolean;
|
|
4982
5139
|
ErrorMessage?: string;
|
|
4983
5140
|
Prompt?: string;
|
|
4984
5141
|
PromptID?: string;
|
|
@@ -4992,6 +5149,11 @@ export declare const AIPromptRunSchema: z.ZodObject<{
|
|
|
4992
5149
|
TokensPrompt?: number;
|
|
4993
5150
|
TokensCompletion?: number;
|
|
4994
5151
|
RunType?: "Single" | "ParallelParent" | "ParallelChild" | "ResultSelector";
|
|
5152
|
+
Cost?: number;
|
|
5153
|
+
CostCurrency?: string;
|
|
5154
|
+
TokensUsedRollup?: number;
|
|
5155
|
+
TokensPromptRollup?: number;
|
|
5156
|
+
TokensCompletionRollup?: number;
|
|
4995
5157
|
}>;
|
|
4996
5158
|
export type AIPromptRunEntityType = z.infer<typeof AIPromptRunSchema>;
|
|
4997
5159
|
/**
|
|
@@ -5444,14 +5606,14 @@ export declare const QuerySchema: z.ZodObject<{
|
|
|
5444
5606
|
__mj_UpdatedAt: z.ZodDate;
|
|
5445
5607
|
Category: z.ZodNullable<z.ZodString>;
|
|
5446
5608
|
}, "strip", z.ZodTypeAny, {
|
|
5447
|
-
Category?: string;
|
|
5448
5609
|
ID?: string;
|
|
5449
5610
|
__mj_CreatedAt?: Date;
|
|
5450
5611
|
__mj_UpdatedAt?: Date;
|
|
5451
5612
|
Name?: string;
|
|
5452
5613
|
Description?: string;
|
|
5453
|
-
Status?: "Pending" | "
|
|
5614
|
+
Status?: "Pending" | "Rejected" | "Approved" | "Expired";
|
|
5454
5615
|
CategoryID?: string;
|
|
5616
|
+
Category?: string;
|
|
5455
5617
|
SQL?: string;
|
|
5456
5618
|
UserQuestion?: string;
|
|
5457
5619
|
TechnicalDescription?: string;
|
|
@@ -5460,14 +5622,14 @@ export declare const QuerySchema: z.ZodObject<{
|
|
|
5460
5622
|
QualityRank?: number;
|
|
5461
5623
|
ExecutionCostRank?: number;
|
|
5462
5624
|
}, {
|
|
5463
|
-
Category?: string;
|
|
5464
5625
|
ID?: string;
|
|
5465
5626
|
__mj_CreatedAt?: Date;
|
|
5466
5627
|
__mj_UpdatedAt?: Date;
|
|
5467
5628
|
Name?: string;
|
|
5468
5629
|
Description?: string;
|
|
5469
|
-
Status?: "Pending" | "
|
|
5630
|
+
Status?: "Pending" | "Rejected" | "Approved" | "Expired";
|
|
5470
5631
|
CategoryID?: string;
|
|
5632
|
+
Category?: string;
|
|
5471
5633
|
SQL?: string;
|
|
5472
5634
|
UserQuestion?: string;
|
|
5473
5635
|
TechnicalDescription?: string;
|
|
@@ -5651,7 +5813,7 @@ export declare const QueueTaskSchema: z.ZodObject<{
|
|
|
5651
5813
|
Comments?: string;
|
|
5652
5814
|
__mj_CreatedAt?: Date;
|
|
5653
5815
|
__mj_UpdatedAt?: Date;
|
|
5654
|
-
Status?: "
|
|
5816
|
+
Status?: "Failed" | "In Progress" | "Completed";
|
|
5655
5817
|
StartedAt?: Date;
|
|
5656
5818
|
EndedAt?: Date;
|
|
5657
5819
|
Output?: string;
|
|
@@ -5665,7 +5827,7 @@ export declare const QueueTaskSchema: z.ZodObject<{
|
|
|
5665
5827
|
Comments?: string;
|
|
5666
5828
|
__mj_CreatedAt?: Date;
|
|
5667
5829
|
__mj_UpdatedAt?: Date;
|
|
5668
|
-
Status?: "
|
|
5830
|
+
Status?: "Failed" | "In Progress" | "Completed";
|
|
5669
5831
|
StartedAt?: Date;
|
|
5670
5832
|
EndedAt?: Date;
|
|
5671
5833
|
Output?: string;
|
|
@@ -5694,8 +5856,8 @@ export declare const QueueTypeSchema: z.ZodObject<{
|
|
|
5694
5856
|
__mj_UpdatedAt?: Date;
|
|
5695
5857
|
Name?: string;
|
|
5696
5858
|
Description?: string;
|
|
5697
|
-
IsActive?: boolean;
|
|
5698
5859
|
DriverClass?: string;
|
|
5860
|
+
IsActive?: boolean;
|
|
5699
5861
|
DriverImportPath?: string;
|
|
5700
5862
|
}, {
|
|
5701
5863
|
ID?: string;
|
|
@@ -5703,8 +5865,8 @@ export declare const QueueTypeSchema: z.ZodObject<{
|
|
|
5703
5865
|
__mj_UpdatedAt?: Date;
|
|
5704
5866
|
Name?: string;
|
|
5705
5867
|
Description?: string;
|
|
5706
|
-
IsActive?: boolean;
|
|
5707
5868
|
DriverClass?: string;
|
|
5869
|
+
IsActive?: boolean;
|
|
5708
5870
|
DriverImportPath?: string;
|
|
5709
5871
|
}>;
|
|
5710
5872
|
export type QueueTypeEntityType = z.infer<typeof QueueTypeSchema>;
|
|
@@ -5851,7 +6013,7 @@ export declare const RecommendationRunSchema: z.ZodObject<{
|
|
|
5851
6013
|
__mj_CreatedAt?: Date;
|
|
5852
6014
|
__mj_UpdatedAt?: Date;
|
|
5853
6015
|
Description?: string;
|
|
5854
|
-
Status?: "Pending" | "
|
|
6016
|
+
Status?: "Pending" | "Canceled" | "In Progress" | "Error" | "Completed";
|
|
5855
6017
|
RunByUserID?: string;
|
|
5856
6018
|
RunByUser?: string;
|
|
5857
6019
|
RecommendationProviderID?: string;
|
|
@@ -5863,7 +6025,7 @@ export declare const RecommendationRunSchema: z.ZodObject<{
|
|
|
5863
6025
|
__mj_CreatedAt?: Date;
|
|
5864
6026
|
__mj_UpdatedAt?: Date;
|
|
5865
6027
|
Description?: string;
|
|
5866
|
-
Status?: "Pending" | "
|
|
6028
|
+
Status?: "Pending" | "Canceled" | "In Progress" | "Error" | "Completed";
|
|
5867
6029
|
RunByUserID?: string;
|
|
5868
6030
|
RunByUser?: string;
|
|
5869
6031
|
RecommendationProviderID?: string;
|
|
@@ -5917,7 +6079,7 @@ export declare const RecordChangeReplayRunSchema: z.ZodObject<{
|
|
|
5917
6079
|
ID?: string;
|
|
5918
6080
|
__mj_CreatedAt?: Date;
|
|
5919
6081
|
__mj_UpdatedAt?: Date;
|
|
5920
|
-
Status?: "Pending" | "Complete" | "
|
|
6082
|
+
Status?: "Pending" | "Complete" | "In Progress" | "Error";
|
|
5921
6083
|
StartedAt?: Date;
|
|
5922
6084
|
EndedAt?: Date;
|
|
5923
6085
|
UserID?: string;
|
|
@@ -5926,7 +6088,7 @@ export declare const RecordChangeReplayRunSchema: z.ZodObject<{
|
|
|
5926
6088
|
ID?: string;
|
|
5927
6089
|
__mj_CreatedAt?: Date;
|
|
5928
6090
|
__mj_UpdatedAt?: Date;
|
|
5929
|
-
Status?: "Pending" | "Complete" | "
|
|
6091
|
+
Status?: "Pending" | "Complete" | "In Progress" | "Error";
|
|
5930
6092
|
StartedAt?: Date;
|
|
5931
6093
|
EndedAt?: Date;
|
|
5932
6094
|
UserID?: string;
|
|
@@ -6057,7 +6219,7 @@ export declare const RecordMergeLogSchema: z.ZodObject<{
|
|
|
6057
6219
|
__mj_UpdatedAt?: Date;
|
|
6058
6220
|
EntityID?: string;
|
|
6059
6221
|
Entity?: string;
|
|
6060
|
-
ApprovalStatus?: "Pending" | "
|
|
6222
|
+
ApprovalStatus?: "Pending" | "Rejected" | "Approved";
|
|
6061
6223
|
ApprovedByUserID?: string;
|
|
6062
6224
|
ProcessingStatus?: "Complete" | "Error" | "Started";
|
|
6063
6225
|
ApprovedByUser?: string;
|
|
@@ -6074,7 +6236,7 @@ export declare const RecordMergeLogSchema: z.ZodObject<{
|
|
|
6074
6236
|
__mj_UpdatedAt?: Date;
|
|
6075
6237
|
EntityID?: string;
|
|
6076
6238
|
Entity?: string;
|
|
6077
|
-
ApprovalStatus?: "Pending" | "
|
|
6239
|
+
ApprovalStatus?: "Pending" | "Rejected" | "Approved";
|
|
6078
6240
|
ApprovedByUserID?: string;
|
|
6079
6241
|
ProcessingStatus?: "Complete" | "Error" | "Started";
|
|
6080
6242
|
ApprovedByUser?: string;
|
|
@@ -6185,7 +6347,6 @@ export declare const ReportSchema: z.ZodObject<{
|
|
|
6185
6347
|
OutputDeliveryType: z.ZodNullable<z.ZodString>;
|
|
6186
6348
|
OutputWorkflow: z.ZodNullable<z.ZodString>;
|
|
6187
6349
|
}, "strip", z.ZodTypeAny, {
|
|
6188
|
-
Category?: string;
|
|
6189
6350
|
ID?: string;
|
|
6190
6351
|
__mj_CreatedAt?: Date;
|
|
6191
6352
|
__mj_UpdatedAt?: Date;
|
|
@@ -6194,13 +6355,14 @@ export declare const ReportSchema: z.ZodObject<{
|
|
|
6194
6355
|
UserID?: string;
|
|
6195
6356
|
User?: string;
|
|
6196
6357
|
CategoryID?: string;
|
|
6358
|
+
Category?: string;
|
|
6197
6359
|
Configuration?: string;
|
|
6198
6360
|
ConversationID?: string;
|
|
6199
6361
|
Conversation?: string;
|
|
6200
6362
|
DataContextID?: string;
|
|
6201
6363
|
DataContext?: string;
|
|
6202
6364
|
Thumbnail?: string;
|
|
6203
|
-
SharingScope?: "
|
|
6365
|
+
SharingScope?: "Specific" | "None" | "Everyone";
|
|
6204
6366
|
ConversationDetailID?: string;
|
|
6205
6367
|
OutputTriggerTypeID?: string;
|
|
6206
6368
|
OutputFormatTypeID?: string;
|
|
@@ -6213,7 +6375,6 @@ export declare const ReportSchema: z.ZodObject<{
|
|
|
6213
6375
|
OutputDeliveryType?: string;
|
|
6214
6376
|
OutputWorkflow?: string;
|
|
6215
6377
|
}, {
|
|
6216
|
-
Category?: string;
|
|
6217
6378
|
ID?: string;
|
|
6218
6379
|
__mj_CreatedAt?: Date;
|
|
6219
6380
|
__mj_UpdatedAt?: Date;
|
|
@@ -6222,13 +6383,14 @@ export declare const ReportSchema: z.ZodObject<{
|
|
|
6222
6383
|
UserID?: string;
|
|
6223
6384
|
User?: string;
|
|
6224
6385
|
CategoryID?: string;
|
|
6386
|
+
Category?: string;
|
|
6225
6387
|
Configuration?: string;
|
|
6226
6388
|
ConversationID?: string;
|
|
6227
6389
|
Conversation?: string;
|
|
6228
6390
|
DataContextID?: string;
|
|
6229
6391
|
DataContext?: string;
|
|
6230
6392
|
Thumbnail?: string;
|
|
6231
|
-
SharingScope?: "
|
|
6393
|
+
SharingScope?: "Specific" | "None" | "Everyone";
|
|
6232
6394
|
ConversationDetailID?: string;
|
|
6233
6395
|
OutputTriggerTypeID?: string;
|
|
6234
6396
|
OutputFormatTypeID?: string;
|
|
@@ -6300,7 +6462,7 @@ export declare const ResourcePermissionSchema: z.ZodObject<{
|
|
|
6300
6462
|
ID?: string;
|
|
6301
6463
|
__mj_CreatedAt?: Date;
|
|
6302
6464
|
__mj_UpdatedAt?: Date;
|
|
6303
|
-
Status?: "
|
|
6465
|
+
Status?: "Rejected" | "Approved" | "Revoked" | "Requested";
|
|
6304
6466
|
UserID?: string;
|
|
6305
6467
|
User?: string;
|
|
6306
6468
|
Type?: "User" | "Role";
|
|
@@ -6316,7 +6478,7 @@ export declare const ResourcePermissionSchema: z.ZodObject<{
|
|
|
6316
6478
|
ID?: string;
|
|
6317
6479
|
__mj_CreatedAt?: Date;
|
|
6318
6480
|
__mj_UpdatedAt?: Date;
|
|
6319
|
-
Status?: "
|
|
6481
|
+
Status?: "Rejected" | "Approved" | "Revoked" | "Requested";
|
|
6320
6482
|
UserID?: string;
|
|
6321
6483
|
User?: string;
|
|
6322
6484
|
Type?: "User" | "Role";
|
|
@@ -6494,7 +6656,7 @@ export declare const ScheduledActionSchema: z.ZodObject<{
|
|
|
6494
6656
|
Action?: string;
|
|
6495
6657
|
Name?: string;
|
|
6496
6658
|
Description?: string;
|
|
6497
|
-
Status?: "
|
|
6659
|
+
Status?: "Disabled" | "Active" | "Pending" | "Expired";
|
|
6498
6660
|
Type?: "Custom" | "Daily" | "Weekly" | "Monthly" | "Yearly";
|
|
6499
6661
|
CreatedByUserID?: string;
|
|
6500
6662
|
CronExpression?: string;
|
|
@@ -6513,7 +6675,7 @@ export declare const ScheduledActionSchema: z.ZodObject<{
|
|
|
6513
6675
|
Action?: string;
|
|
6514
6676
|
Name?: string;
|
|
6515
6677
|
Description?: string;
|
|
6516
|
-
Status?: "
|
|
6678
|
+
Status?: "Disabled" | "Active" | "Pending" | "Expired";
|
|
6517
6679
|
Type?: "Custom" | "Daily" | "Weekly" | "Monthly" | "Yearly";
|
|
6518
6680
|
CreatedByUserID?: string;
|
|
6519
6681
|
CronExpression?: string;
|
|
@@ -6821,7 +6983,6 @@ export declare const TemplateSchema: z.ZodObject<{
|
|
|
6821
6983
|
Category: z.ZodNullable<z.ZodString>;
|
|
6822
6984
|
User: z.ZodString;
|
|
6823
6985
|
}, "strip", z.ZodTypeAny, {
|
|
6824
|
-
Category?: string;
|
|
6825
6986
|
ID?: string;
|
|
6826
6987
|
__mj_CreatedAt?: Date;
|
|
6827
6988
|
__mj_UpdatedAt?: Date;
|
|
@@ -6831,11 +6992,11 @@ export declare const TemplateSchema: z.ZodObject<{
|
|
|
6831
6992
|
User?: string;
|
|
6832
6993
|
CategoryID?: string;
|
|
6833
6994
|
UserPrompt?: string;
|
|
6995
|
+
Category?: string;
|
|
6834
6996
|
IsActive?: boolean;
|
|
6835
6997
|
ActiveAt?: Date;
|
|
6836
6998
|
DisabledAt?: Date;
|
|
6837
6999
|
}, {
|
|
6838
|
-
Category?: string;
|
|
6839
7000
|
ID?: string;
|
|
6840
7001
|
__mj_CreatedAt?: Date;
|
|
6841
7002
|
__mj_UpdatedAt?: Date;
|
|
@@ -6845,6 +7006,7 @@ export declare const TemplateSchema: z.ZodObject<{
|
|
|
6845
7006
|
User?: string;
|
|
6846
7007
|
CategoryID?: string;
|
|
6847
7008
|
UserPrompt?: string;
|
|
7009
|
+
Category?: string;
|
|
6848
7010
|
IsActive?: boolean;
|
|
6849
7011
|
ActiveAt?: Date;
|
|
6850
7012
|
DisabledAt?: Date;
|
|
@@ -7428,7 +7590,7 @@ export declare const VersionInstallationSchema: z.ZodObject<{
|
|
|
7428
7590
|
Comments?: string;
|
|
7429
7591
|
__mj_CreatedAt?: Date;
|
|
7430
7592
|
__mj_UpdatedAt?: Date;
|
|
7431
|
-
Status?: "Pending" | "Complete" | "
|
|
7593
|
+
Status?: "Pending" | "Complete" | "Failed" | "In Progress";
|
|
7432
7594
|
Type?: "New" | "Upgrade";
|
|
7433
7595
|
MajorVersion?: number;
|
|
7434
7596
|
MinorVersion?: number;
|
|
@@ -7441,7 +7603,7 @@ export declare const VersionInstallationSchema: z.ZodObject<{
|
|
|
7441
7603
|
Comments?: string;
|
|
7442
7604
|
__mj_CreatedAt?: Date;
|
|
7443
7605
|
__mj_UpdatedAt?: Date;
|
|
7444
|
-
Status?: "Pending" | "Complete" | "
|
|
7606
|
+
Status?: "Pending" | "Complete" | "Failed" | "In Progress";
|
|
7445
7607
|
Type?: "New" | "Upgrade";
|
|
7446
7608
|
MajorVersion?: number;
|
|
7447
7609
|
MinorVersion?: number;
|
|
@@ -7499,7 +7661,7 @@ export declare const WorkflowRunSchema: z.ZodObject<{
|
|
|
7499
7661
|
ID?: string;
|
|
7500
7662
|
__mj_CreatedAt?: Date;
|
|
7501
7663
|
__mj_UpdatedAt?: Date;
|
|
7502
|
-
Status?: "Pending" | "Complete" | "
|
|
7664
|
+
Status?: "Pending" | "Complete" | "Failed" | "In Progress";
|
|
7503
7665
|
StartedAt?: Date;
|
|
7504
7666
|
EndedAt?: Date;
|
|
7505
7667
|
ExternalSystemRecordID?: string;
|
|
@@ -7511,7 +7673,7 @@ export declare const WorkflowRunSchema: z.ZodObject<{
|
|
|
7511
7673
|
ID?: string;
|
|
7512
7674
|
__mj_CreatedAt?: Date;
|
|
7513
7675
|
__mj_UpdatedAt?: Date;
|
|
7514
|
-
Status?: "Pending" | "Complete" | "
|
|
7676
|
+
Status?: "Pending" | "Complete" | "Failed" | "In Progress";
|
|
7515
7677
|
StartedAt?: Date;
|
|
7516
7678
|
EndedAt?: Date;
|
|
7517
7679
|
ExternalSystemRecordID?: string;
|
|
@@ -7669,6 +7831,7 @@ export declare class ActionAuthorizationEntity extends BaseEntity<ActionAuthoriz
|
|
|
7669
7831
|
* * Default Value: newsequentialid()
|
|
7670
7832
|
*/
|
|
7671
7833
|
get ID(): string;
|
|
7834
|
+
set ID(value: string);
|
|
7672
7835
|
/**
|
|
7673
7836
|
* * Field Name: ActionID
|
|
7674
7837
|
* * Display Name: Action ID
|
|
@@ -7750,6 +7913,7 @@ export declare class ActionCategoryEntity extends BaseEntity<ActionCategoryEntit
|
|
|
7750
7913
|
* * Default Value: newsequentialid()
|
|
7751
7914
|
*/
|
|
7752
7915
|
get ID(): string;
|
|
7916
|
+
set ID(value: string);
|
|
7753
7917
|
/**
|
|
7754
7918
|
* * Field Name: Name
|
|
7755
7919
|
* * Display Name: Name
|
|
@@ -7840,6 +8004,7 @@ export declare class ActionContextTypeEntity extends BaseEntity<ActionContextTyp
|
|
|
7840
8004
|
* * Default Value: newsequentialid()
|
|
7841
8005
|
*/
|
|
7842
8006
|
get ID(): string;
|
|
8007
|
+
set ID(value: string);
|
|
7843
8008
|
/**
|
|
7844
8009
|
* * Field Name: Name
|
|
7845
8010
|
* * Display Name: Name
|
|
@@ -7902,6 +8067,7 @@ export declare class ActionContextEntity extends BaseEntity<ActionContextEntityT
|
|
|
7902
8067
|
* * Default Value: newsequentialid()
|
|
7903
8068
|
*/
|
|
7904
8069
|
get ID(): string;
|
|
8070
|
+
set ID(value: string);
|
|
7905
8071
|
/**
|
|
7906
8072
|
* * Field Name: ActionID
|
|
7907
8073
|
* * Display Name: Action ID
|
|
@@ -7990,6 +8156,7 @@ export declare class ActionExecutionLogEntity extends BaseEntity<ActionExecution
|
|
|
7990
8156
|
* * Default Value: newsequentialid()
|
|
7991
8157
|
*/
|
|
7992
8158
|
get ID(): string;
|
|
8159
|
+
set ID(value: string);
|
|
7993
8160
|
/**
|
|
7994
8161
|
* * Field Name: ActionID
|
|
7995
8162
|
* * Display Name: Action ID
|
|
@@ -8103,6 +8270,7 @@ export declare class ActionFilterEntity extends BaseEntity<ActionFilterEntityTyp
|
|
|
8103
8270
|
* * Default Value: newsequentialid()
|
|
8104
8271
|
*/
|
|
8105
8272
|
get ID(): string;
|
|
8273
|
+
set ID(value: string);
|
|
8106
8274
|
/**
|
|
8107
8275
|
* * Field Name: UserDescription
|
|
8108
8276
|
* * Display Name: User Description
|
|
@@ -8177,6 +8345,7 @@ export declare class ActionLibraryEntity extends BaseEntity<ActionLibraryEntityT
|
|
|
8177
8345
|
* * Default Value: newsequentialid()
|
|
8178
8346
|
*/
|
|
8179
8347
|
get ID(): string;
|
|
8348
|
+
set ID(value: string);
|
|
8180
8349
|
/**
|
|
8181
8350
|
* * Field Name: ActionID
|
|
8182
8351
|
* * Display Name: Action ID
|
|
@@ -8259,6 +8428,7 @@ export declare class ActionParamEntity extends BaseEntity<ActionParamEntityType>
|
|
|
8259
8428
|
* * Default Value: newsequentialid()
|
|
8260
8429
|
*/
|
|
8261
8430
|
get ID(): string;
|
|
8431
|
+
set ID(value: string);
|
|
8262
8432
|
/**
|
|
8263
8433
|
* * Field Name: ActionID
|
|
8264
8434
|
* * Display Name: Action ID
|
|
@@ -8382,6 +8552,7 @@ export declare class ActionResultCodeEntity extends BaseEntity<ActionResultCodeE
|
|
|
8382
8552
|
* * Default Value: newsequentialid()
|
|
8383
8553
|
*/
|
|
8384
8554
|
get ID(): string;
|
|
8555
|
+
set ID(value: string);
|
|
8385
8556
|
/**
|
|
8386
8557
|
* * Field Name: ActionID
|
|
8387
8558
|
* * Display Name: Action ID
|
|
@@ -8466,6 +8637,7 @@ export declare class ActionEntity extends BaseEntity<ActionEntityType> {
|
|
|
8466
8637
|
* * Default Value: newsequentialid()
|
|
8467
8638
|
*/
|
|
8468
8639
|
get ID(): string;
|
|
8640
|
+
set ID(value: string);
|
|
8469
8641
|
/**
|
|
8470
8642
|
* * Field Name: CategoryID
|
|
8471
8643
|
* * Display Name: Category ID
|
|
@@ -8624,6 +8796,14 @@ export declare class ActionEntity extends BaseEntity<ActionEntityType> {
|
|
|
8624
8796
|
*/
|
|
8625
8797
|
get __mj_UpdatedAt(): Date;
|
|
8626
8798
|
/**
|
|
8799
|
+
* * Field Name: DriverClass
|
|
8800
|
+
* * Display Name: Driver Class
|
|
8801
|
+
* * SQL Data Type: nvarchar(255)
|
|
8802
|
+
* * Description: For actions where Type='Custom', this specifies the fully qualified class name of the BaseAction sub-class that should be instantiated to handle the action execution. This provides a more reliable mechanism than relying on the Name field for class instantiation.
|
|
8803
|
+
*/
|
|
8804
|
+
get DriverClass(): string | null;
|
|
8805
|
+
set DriverClass(value: string | null);
|
|
8806
|
+
/**
|
|
8627
8807
|
* * Field Name: Category
|
|
8628
8808
|
* * Display Name: Category
|
|
8629
8809
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -8668,6 +8848,7 @@ export declare class AIActionEntity extends BaseEntity<AIActionEntityType> {
|
|
|
8668
8848
|
* * Default Value: newsequentialid()
|
|
8669
8849
|
*/
|
|
8670
8850
|
get ID(): string;
|
|
8851
|
+
set ID(value: string);
|
|
8671
8852
|
/**
|
|
8672
8853
|
* * Field Name: Name
|
|
8673
8854
|
* * Display Name: Name
|
|
@@ -8758,6 +8939,7 @@ export declare class AIAgentActionEntity extends BaseEntity<AIAgentActionEntityT
|
|
|
8758
8939
|
* * Description: The unique identifier for each AI agent-action mapping. Serves as the primary key.
|
|
8759
8940
|
*/
|
|
8760
8941
|
get ID(): string;
|
|
8942
|
+
set ID(value: string);
|
|
8761
8943
|
/**
|
|
8762
8944
|
* * Field Name: AgentID
|
|
8763
8945
|
* * Display Name: Agent ID
|
|
@@ -8848,6 +9030,7 @@ export declare class AIAgentLearningCycleEntity extends BaseEntity<AIAgentLearni
|
|
|
8848
9030
|
* * Description: Unique identifier for the learning cycle.
|
|
8849
9031
|
*/
|
|
8850
9032
|
get ID(): string;
|
|
9033
|
+
set ID(value: string);
|
|
8851
9034
|
/**
|
|
8852
9035
|
* * Field Name: AgentID
|
|
8853
9036
|
* * Display Name: Agent ID
|
|
@@ -8949,6 +9132,7 @@ export declare class AIAgentModelEntity extends BaseEntity<AIAgentModelEntityTyp
|
|
|
8949
9132
|
* * Description: The unique identifier for each AI agent-model mapping. Serves as the primary key.
|
|
8950
9133
|
*/
|
|
8951
9134
|
get ID(): string;
|
|
9135
|
+
set ID(value: string);
|
|
8952
9136
|
/**
|
|
8953
9137
|
* * Field Name: AgentID
|
|
8954
9138
|
* * Display Name: Agent ID
|
|
@@ -9039,6 +9223,7 @@ export declare class AIAgentNoteTypeEntity extends BaseEntity<AIAgentNoteTypeEnt
|
|
|
9039
9223
|
* * Default Value: newsequentialid()
|
|
9040
9224
|
*/
|
|
9041
9225
|
get ID(): string;
|
|
9226
|
+
set ID(value: string);
|
|
9042
9227
|
/**
|
|
9043
9228
|
* * Field Name: Name
|
|
9044
9229
|
* * Display Name: Name
|
|
@@ -9098,6 +9283,7 @@ export declare class AIAgentNoteEntity extends BaseEntity<AIAgentNoteEntityType>
|
|
|
9098
9283
|
* * Default Value: newsequentialid()
|
|
9099
9284
|
*/
|
|
9100
9285
|
get ID(): string;
|
|
9286
|
+
set ID(value: string);
|
|
9101
9287
|
/**
|
|
9102
9288
|
* * Field Name: AgentID
|
|
9103
9289
|
* * Display Name: Agent ID
|
|
@@ -9206,6 +9392,7 @@ export declare class AIAgentRequestEntity extends BaseEntity<AIAgentRequestEntit
|
|
|
9206
9392
|
* * Description: Primary key for the AIAgentRequest table, uniquely identifies each record.
|
|
9207
9393
|
*/
|
|
9208
9394
|
get ID(): string;
|
|
9395
|
+
set ID(value: string);
|
|
9209
9396
|
/**
|
|
9210
9397
|
* * Field Name: AgentID
|
|
9211
9398
|
* * Display Name: Agent ID
|
|
@@ -9375,6 +9562,7 @@ export declare class AIAgentEntity extends BaseEntity<AIAgentEntityType> {
|
|
|
9375
9562
|
* * Description: The unique identifier for each AI agent. Serves as the primary key.
|
|
9376
9563
|
*/
|
|
9377
9564
|
get ID(): string;
|
|
9565
|
+
set ID(value: string);
|
|
9378
9566
|
/**
|
|
9379
9567
|
* * Field Name: Name
|
|
9380
9568
|
* * Display Name: Name
|
|
@@ -9495,6 +9683,22 @@ export declare class AIAgentEntity extends BaseEntity<AIAgentEntityType> {
|
|
|
9495
9683
|
get TypeID(): string | null;
|
|
9496
9684
|
set TypeID(value: string | null);
|
|
9497
9685
|
/**
|
|
9686
|
+
* * Field Name: Status
|
|
9687
|
+
* * Display Name: Status
|
|
9688
|
+
* * SQL Data Type: nvarchar(20)
|
|
9689
|
+
* * Description: Current status of the AI agent. Active agents can be executed, Disabled agents are inactive, and Pending agents are awaiting configuration or approval. Allowed values: Active, Disabled, Pending.
|
|
9690
|
+
*/
|
|
9691
|
+
get Status(): string | null;
|
|
9692
|
+
set Status(value: string | null);
|
|
9693
|
+
/**
|
|
9694
|
+
* * Field Name: DriverClass
|
|
9695
|
+
* * Display Name: Driver Class
|
|
9696
|
+
* * SQL Data Type: nvarchar(255)
|
|
9697
|
+
* * Description: Optional override for the class name used by the MemberJunction class factory to instantiate this specific agent. If specified, this overrides the agent type's DriverClass. Useful for specialized agent implementations.
|
|
9698
|
+
*/
|
|
9699
|
+
get DriverClass(): string | null;
|
|
9700
|
+
set DriverClass(value: string | null);
|
|
9701
|
+
/**
|
|
9498
9702
|
* * Field Name: Parent
|
|
9499
9703
|
* * Display Name: Parent
|
|
9500
9704
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -9545,6 +9749,7 @@ export declare class AIModelActionEntity extends BaseEntity<AIModelActionEntityT
|
|
|
9545
9749
|
* * Default Value: newsequentialid()
|
|
9546
9750
|
*/
|
|
9547
9751
|
get ID(): string;
|
|
9752
|
+
set ID(value: string);
|
|
9548
9753
|
/**
|
|
9549
9754
|
* * Field Name: AIModelID
|
|
9550
9755
|
* * Display Name: AI Model ID
|
|
@@ -9627,6 +9832,7 @@ export declare class AIModelTypeEntity extends BaseEntity<AIModelTypeEntityType>
|
|
|
9627
9832
|
* * Default Value: newsequentialid()
|
|
9628
9833
|
*/
|
|
9629
9834
|
get ID(): string;
|
|
9835
|
+
set ID(value: string);
|
|
9630
9836
|
/**
|
|
9631
9837
|
* * Field Name: Name
|
|
9632
9838
|
* * Display Name: Name
|
|
@@ -9718,6 +9924,7 @@ export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
|
|
|
9718
9924
|
* * Default Value: newsequentialid()
|
|
9719
9925
|
*/
|
|
9720
9926
|
get ID(): string;
|
|
9927
|
+
set ID(value: string);
|
|
9721
9928
|
/**
|
|
9722
9929
|
* * Field Name: Name
|
|
9723
9930
|
* * Display Name: Name
|
|
@@ -9877,6 +10084,7 @@ export declare class AIPromptCategoryEntity extends BaseEntity<AIPromptCategoryE
|
|
|
9877
10084
|
* * Default Value: newsequentialid()
|
|
9878
10085
|
*/
|
|
9879
10086
|
get ID(): string;
|
|
10087
|
+
set ID(value: string);
|
|
9880
10088
|
/**
|
|
9881
10089
|
* * Field Name: Name
|
|
9882
10090
|
* * Display Name: Name
|
|
@@ -9952,6 +10160,7 @@ export declare class AIPromptTypeEntity extends BaseEntity<AIPromptTypeEntityTyp
|
|
|
9952
10160
|
* * Default Value: newsequentialid()
|
|
9953
10161
|
*/
|
|
9954
10162
|
get ID(): string;
|
|
10163
|
+
set ID(value: string);
|
|
9955
10164
|
/**
|
|
9956
10165
|
* * Field Name: Name
|
|
9957
10166
|
* * Display Name: Name
|
|
@@ -10009,11 +10218,11 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
|
|
|
10009
10218
|
* Validate() method override for AI Prompts entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
10010
10219
|
* * CacheSimilarityThreshold: This rule ensures that if a cache similarity threshold is provided, it must be a value between 0 and 1, inclusive. If no value is provided, that's also allowed.
|
|
10011
10220
|
* * CacheTTLSeconds: This rule ensures that if the cache expiration time in seconds is provided, it must be greater than zero.
|
|
10012
|
-
* * Table-Level: This rule ensures that if the OutputType is set to 'object', an OutputExample must be provided. If the OutputType is anything other than 'object', providing an OutputExample is not required.
|
|
10013
10221
|
* * Table-Level: This rule ensures that the ResultSelectorPromptID field must be different from the ID field. In other words, a result selector prompt cannot reference itself.
|
|
10014
10222
|
* * Table-Level: This rule ensures that if the cache match type is set to 'Vector', the cache similarity threshold must be specified. If the match type is anything other than 'Vector', the similarity threshold can be left empty.
|
|
10015
10223
|
* * Table-Level: This rule ensures that if the parallelization mode is set to 'StaticCount', then the number of parallel tasks (ParallelCount) must be provided.
|
|
10016
10224
|
* * Table-Level: This rule ensures that if the Parallelization Mode is set to 'ConfigParam', then the Parallel Config Param field must be filled in. For any other mode, the Parallel Config Param can be left empty.
|
|
10225
|
+
* * Table-Level: This rule ensures that if the OutputType is set to 'object', an OutputExample must be provided. If the OutputType is anything other than 'object', providing an OutputExample is not required.
|
|
10017
10226
|
* @public
|
|
10018
10227
|
* @method
|
|
10019
10228
|
* @override
|
|
@@ -10034,13 +10243,6 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
|
|
|
10034
10243
|
*/
|
|
10035
10244
|
ValidateCacheTTLSecondsGreaterThanZero(result: ValidationResult): void;
|
|
10036
10245
|
/**
|
|
10037
|
-
* This rule ensures that if the OutputType is set to 'object', an OutputExample must be provided. If the OutputType is anything other than 'object', providing an OutputExample is not required.
|
|
10038
|
-
* @param result - the ValidationResult object to add any errors or warnings to
|
|
10039
|
-
* @public
|
|
10040
|
-
* @method
|
|
10041
|
-
*/
|
|
10042
|
-
ValidateOutputExampleWhenOutputTypeObject(result: ValidationResult): void;
|
|
10043
|
-
/**
|
|
10044
10246
|
* This rule ensures that the ResultSelectorPromptID field must be different from the ID field. In other words, a result selector prompt cannot reference itself.
|
|
10045
10247
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
10046
10248
|
* @public
|
|
@@ -10069,12 +10271,20 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
|
|
|
10069
10271
|
*/
|
|
10070
10272
|
ValidateParallelConfigParamRequiredForConfigParamMode(result: ValidationResult): void;
|
|
10071
10273
|
/**
|
|
10274
|
+
* This rule ensures that if the OutputType is set to 'object', an OutputExample must be provided. If the OutputType is anything other than 'object', providing an OutputExample is not required.
|
|
10275
|
+
* @param result - the ValidationResult object to add any errors or warnings to
|
|
10276
|
+
* @public
|
|
10277
|
+
* @method
|
|
10278
|
+
*/
|
|
10279
|
+
ValidateOutputExampleWhenOutputTypeObject(result: ValidationResult): void;
|
|
10280
|
+
/**
|
|
10072
10281
|
* * Field Name: ID
|
|
10073
10282
|
* * Display Name: ID
|
|
10074
10283
|
* * SQL Data Type: uniqueidentifier
|
|
10075
10284
|
* * Default Value: newsequentialid()
|
|
10076
10285
|
*/
|
|
10077
10286
|
get ID(): string;
|
|
10287
|
+
set ID(value: string);
|
|
10078
10288
|
/**
|
|
10079
10289
|
* * Field Name: Name
|
|
10080
10290
|
* * Display Name: Name
|
|
@@ -10487,6 +10697,7 @@ export declare class AIResultCacheEntity extends BaseEntity<AIResultCacheEntityT
|
|
|
10487
10697
|
* * Default Value: newsequentialid()
|
|
10488
10698
|
*/
|
|
10489
10699
|
get ID(): string;
|
|
10700
|
+
set ID(value: string);
|
|
10490
10701
|
/**
|
|
10491
10702
|
* * Field Name: AIPromptID
|
|
10492
10703
|
* * Display Name: AIPrompt ID
|
|
@@ -10668,6 +10879,7 @@ export declare class ApplicationEntityEntity extends BaseEntity<ApplicationEntit
|
|
|
10668
10879
|
* * Default Value: newsequentialid()
|
|
10669
10880
|
*/
|
|
10670
10881
|
get ID(): string;
|
|
10882
|
+
set ID(value: string);
|
|
10671
10883
|
/**
|
|
10672
10884
|
* * Field Name: ApplicationID
|
|
10673
10885
|
* * Display Name: Application ID
|
|
@@ -10778,6 +10990,7 @@ export declare class ApplicationSettingEntity extends BaseEntity<ApplicationSett
|
|
|
10778
10990
|
* * Default Value: newsequentialid()
|
|
10779
10991
|
*/
|
|
10780
10992
|
get ID(): string;
|
|
10993
|
+
set ID(value: string);
|
|
10781
10994
|
/**
|
|
10782
10995
|
* * Field Name: ApplicationID
|
|
10783
10996
|
* * Display Name: Application ID
|
|
@@ -10858,6 +11071,7 @@ export declare class ApplicationEntity extends BaseEntity<ApplicationEntityType>
|
|
|
10858
11071
|
* * Default Value: newsequentialid()
|
|
10859
11072
|
*/
|
|
10860
11073
|
get ID(): string;
|
|
11074
|
+
set ID(value: string);
|
|
10861
11075
|
/**
|
|
10862
11076
|
* * Field Name: Name
|
|
10863
11077
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -10958,6 +11172,7 @@ export declare class AuditLogTypeEntity extends BaseEntity<AuditLogTypeEntityTyp
|
|
|
10958
11172
|
* * Default Value: newsequentialid()
|
|
10959
11173
|
*/
|
|
10960
11174
|
get ID(): string;
|
|
11175
|
+
set ID(value: string);
|
|
10961
11176
|
/**
|
|
10962
11177
|
* * Field Name: Name
|
|
10963
11178
|
* * Display Name: Name
|
|
@@ -11054,6 +11269,7 @@ export declare class AuditLogEntity extends BaseEntity<AuditLogEntityType> {
|
|
|
11054
11269
|
* * Default Value: newsequentialid()
|
|
11055
11270
|
*/
|
|
11056
11271
|
get ID(): string;
|
|
11272
|
+
set ID(value: string);
|
|
11057
11273
|
/**
|
|
11058
11274
|
* * Field Name: UserID
|
|
11059
11275
|
* * Display Name: User ID
|
|
@@ -11206,6 +11422,7 @@ export declare class AuthorizationRoleEntity extends BaseEntity<AuthorizationRol
|
|
|
11206
11422
|
* * Default Value: newsequentialid()
|
|
11207
11423
|
*/
|
|
11208
11424
|
get ID(): string;
|
|
11425
|
+
set ID(value: string);
|
|
11209
11426
|
/**
|
|
11210
11427
|
* * Field Name: AuthorizationID
|
|
11211
11428
|
* * Display Name: Authorization ID
|
|
@@ -11309,6 +11526,7 @@ export declare class AuthorizationEntity extends BaseEntity<AuthorizationEntityT
|
|
|
11309
11526
|
* * Default Value: newsequentialid()
|
|
11310
11527
|
*/
|
|
11311
11528
|
get ID(): string;
|
|
11529
|
+
set ID(value: string);
|
|
11312
11530
|
/**
|
|
11313
11531
|
* * Field Name: ParentID
|
|
11314
11532
|
* * Display Name: Parent ID
|
|
@@ -11400,6 +11618,7 @@ export declare class CommunicationBaseMessageTypeEntity extends BaseEntity<Commu
|
|
|
11400
11618
|
* * Default Value: newsequentialid()
|
|
11401
11619
|
*/
|
|
11402
11620
|
get ID(): string;
|
|
11621
|
+
set ID(value: string);
|
|
11403
11622
|
/**
|
|
11404
11623
|
* * Field Name: Type
|
|
11405
11624
|
* * Display Name: Type
|
|
@@ -11497,6 +11716,7 @@ export declare class CommunicationLogEntity extends BaseEntity<CommunicationLogE
|
|
|
11497
11716
|
* * Default Value: newsequentialid()
|
|
11498
11717
|
*/
|
|
11499
11718
|
get ID(): string;
|
|
11719
|
+
set ID(value: string);
|
|
11500
11720
|
/**
|
|
11501
11721
|
* * Field Name: CommunicationProviderID
|
|
11502
11722
|
* * Display Name: Communication Provider ID
|
|
@@ -11630,6 +11850,7 @@ export declare class CommunicationProviderMessageTypeEntity extends BaseEntity<C
|
|
|
11630
11850
|
* * Default Value: newsequentialid()
|
|
11631
11851
|
*/
|
|
11632
11852
|
get ID(): string;
|
|
11853
|
+
set ID(value: string);
|
|
11633
11854
|
/**
|
|
11634
11855
|
* * Field Name: CommunicationProviderID
|
|
11635
11856
|
* * Display Name: Communication Provider ID
|
|
@@ -11747,6 +11968,7 @@ export declare class CommunicationProviderEntity extends BaseEntity<Communicatio
|
|
|
11747
11968
|
* * Default Value: newsequentialid()
|
|
11748
11969
|
*/
|
|
11749
11970
|
get ID(): string;
|
|
11971
|
+
set ID(value: string);
|
|
11750
11972
|
/**
|
|
11751
11973
|
* * Field Name: Name
|
|
11752
11974
|
* * Display Name: Name
|
|
@@ -11874,6 +12096,7 @@ export declare class CommunicationRunEntity extends BaseEntity<CommunicationRunE
|
|
|
11874
12096
|
* * Default Value: newsequentialid()
|
|
11875
12097
|
*/
|
|
11876
12098
|
get ID(): string;
|
|
12099
|
+
set ID(value: string);
|
|
11877
12100
|
/**
|
|
11878
12101
|
* * Field Name: UserID
|
|
11879
12102
|
* * Display Name: User ID
|
|
@@ -11988,6 +12211,7 @@ export declare class CompanyEntity extends BaseEntity<CompanyEntityType> {
|
|
|
11988
12211
|
* * Default Value: newsequentialid()
|
|
11989
12212
|
*/
|
|
11990
12213
|
get ID(): string;
|
|
12214
|
+
set ID(value: string);
|
|
11991
12215
|
/**
|
|
11992
12216
|
* * Field Name: Name
|
|
11993
12217
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -12074,6 +12298,7 @@ export declare class CompanyIntegrationRecordMapEntity extends BaseEntity<Compan
|
|
|
12074
12298
|
* * Default Value: newsequentialid()
|
|
12075
12299
|
*/
|
|
12076
12300
|
get ID(): string;
|
|
12301
|
+
set ID(value: string);
|
|
12077
12302
|
/**
|
|
12078
12303
|
* * Field Name: CompanyIntegrationID
|
|
12079
12304
|
* * Display Name: Company Integration ID
|
|
@@ -12163,6 +12388,7 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity<Compan
|
|
|
12163
12388
|
* * Default Value: newsequentialid()
|
|
12164
12389
|
*/
|
|
12165
12390
|
get ID(): string;
|
|
12391
|
+
set ID(value: string);
|
|
12166
12392
|
/**
|
|
12167
12393
|
* * Field Name: CompanyIntegrationRunID
|
|
12168
12394
|
* * Display Name: Company Integration Run ID
|
|
@@ -12268,6 +12494,7 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity<Compan
|
|
|
12268
12494
|
* * Default Value: newsequentialid()
|
|
12269
12495
|
*/
|
|
12270
12496
|
get ID(): string;
|
|
12497
|
+
set ID(value: string);
|
|
12271
12498
|
/**
|
|
12272
12499
|
* * Field Name: CompanyIntegrationRunID
|
|
12273
12500
|
* * Display Name: CompanyIntegrationRun ID
|
|
@@ -12383,6 +12610,7 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity<CompanyInteg
|
|
|
12383
12610
|
* * Default Value: newsequentialid()
|
|
12384
12611
|
*/
|
|
12385
12612
|
get ID(): string;
|
|
12613
|
+
set ID(value: string);
|
|
12386
12614
|
/**
|
|
12387
12615
|
* * Field Name: CompanyIntegrationID
|
|
12388
12616
|
* * Display Name: CompanyIntegration ID
|
|
@@ -12520,6 +12748,7 @@ export declare class CompanyIntegrationEntity extends BaseEntity<CompanyIntegrat
|
|
|
12520
12748
|
* * Default Value: newsequentialid()
|
|
12521
12749
|
*/
|
|
12522
12750
|
get ID(): string;
|
|
12751
|
+
set ID(value: string);
|
|
12523
12752
|
/**
|
|
12524
12753
|
* * Field Name: CompanyID
|
|
12525
12754
|
* * Display Name: Company ID
|
|
@@ -12691,6 +12920,7 @@ export declare class ContentFileTypeEntity extends BaseEntity<ContentFileTypeEnt
|
|
|
12691
12920
|
* * Default Value: newsequentialid()
|
|
12692
12921
|
*/
|
|
12693
12922
|
get ID(): string;
|
|
12923
|
+
set ID(value: string);
|
|
12694
12924
|
/**
|
|
12695
12925
|
* * Field Name: Name
|
|
12696
12926
|
* * Display Name: Name
|
|
@@ -12750,6 +12980,7 @@ export declare class ContentItemAttributeEntity extends BaseEntity<ContentItemAt
|
|
|
12750
12980
|
* * Default Value: newsequentialid()
|
|
12751
12981
|
*/
|
|
12752
12982
|
get ID(): string;
|
|
12983
|
+
set ID(value: string);
|
|
12753
12984
|
/**
|
|
12754
12985
|
* * Field Name: ContentItemID
|
|
12755
12986
|
* * Display Name: Content Item ID
|
|
@@ -12823,6 +13054,7 @@ export declare class ContentItemTagEntity extends BaseEntity<ContentItemTagEntit
|
|
|
12823
13054
|
* * Default Value: newsequentialid()
|
|
12824
13055
|
*/
|
|
12825
13056
|
get ID(): string;
|
|
13057
|
+
set ID(value: string);
|
|
12826
13058
|
/**
|
|
12827
13059
|
* * Field Name: ItemID
|
|
12828
13060
|
* * Display Name: Item ID
|
|
@@ -12889,6 +13121,7 @@ export declare class ContentItemEntity extends BaseEntity<ContentItemEntityType>
|
|
|
12889
13121
|
* * Default Value: newsequentialid()
|
|
12890
13122
|
*/
|
|
12891
13123
|
get ID(): string;
|
|
13124
|
+
set ID(value: string);
|
|
12892
13125
|
/**
|
|
12893
13126
|
* * Field Name: ContentSourceID
|
|
12894
13127
|
* * Display Name: Content Source ID
|
|
@@ -13025,6 +13258,7 @@ export declare class ContentProcessRunEntity extends BaseEntity<ContentProcessRu
|
|
|
13025
13258
|
* * Default Value: newsequentialid()
|
|
13026
13259
|
*/
|
|
13027
13260
|
get ID(): string;
|
|
13261
|
+
set ID(value: string);
|
|
13028
13262
|
/**
|
|
13029
13263
|
* * Field Name: SourceID
|
|
13030
13264
|
* * Display Name: Source ID
|
|
@@ -13112,6 +13346,7 @@ export declare class ContentSourceParamEntity extends BaseEntity<ContentSourcePa
|
|
|
13112
13346
|
* * Default Value: newsequentialid()
|
|
13113
13347
|
*/
|
|
13114
13348
|
get ID(): string;
|
|
13349
|
+
set ID(value: string);
|
|
13115
13350
|
/**
|
|
13116
13351
|
* * Field Name: ContentSourceID
|
|
13117
13352
|
* * Display Name: Content Source ID
|
|
@@ -13185,6 +13420,7 @@ export declare class ContentSourceTypeParamEntity extends BaseEntity<ContentSour
|
|
|
13185
13420
|
* * Default Value: newsequentialid()
|
|
13186
13421
|
*/
|
|
13187
13422
|
get ID(): string;
|
|
13423
|
+
set ID(value: string);
|
|
13188
13424
|
/**
|
|
13189
13425
|
* * Field Name: Name
|
|
13190
13426
|
* * Display Name: Name
|
|
@@ -13265,6 +13501,7 @@ export declare class ContentSourceTypeEntity extends BaseEntity<ContentSourceTyp
|
|
|
13265
13501
|
* * Default Value: newsequentialid()
|
|
13266
13502
|
*/
|
|
13267
13503
|
get ID(): string;
|
|
13504
|
+
set ID(value: string);
|
|
13268
13505
|
/**
|
|
13269
13506
|
* * Field Name: Name
|
|
13270
13507
|
* * Display Name: Name
|
|
@@ -13324,6 +13561,7 @@ export declare class ContentSourceEntity extends BaseEntity<ContentSourceEntityT
|
|
|
13324
13561
|
* * Default Value: newsequentialid()
|
|
13325
13562
|
*/
|
|
13326
13563
|
get ID(): string;
|
|
13564
|
+
set ID(value: string);
|
|
13327
13565
|
/**
|
|
13328
13566
|
* * Field Name: Name
|
|
13329
13567
|
* * Display Name: Name
|
|
@@ -13425,6 +13663,7 @@ export declare class ContentTypeAttributeEntity extends BaseEntity<ContentTypeAt
|
|
|
13425
13663
|
* * Default Value: newsequentialid()
|
|
13426
13664
|
*/
|
|
13427
13665
|
get ID(): string;
|
|
13666
|
+
set ID(value: string);
|
|
13428
13667
|
/**
|
|
13429
13668
|
* * Field Name: ContentTypeID
|
|
13430
13669
|
* * Display Name: Content Type ID
|
|
@@ -13498,6 +13737,7 @@ export declare class ContentTypeEntity extends BaseEntity<ContentTypeEntityType>
|
|
|
13498
13737
|
* * Default Value: newsequentialid()
|
|
13499
13738
|
*/
|
|
13500
13739
|
get ID(): string;
|
|
13740
|
+
set ID(value: string);
|
|
13501
13741
|
/**
|
|
13502
13742
|
* * Field Name: Name
|
|
13503
13743
|
* * Display Name: Name
|
|
@@ -13600,6 +13840,7 @@ export declare class ConversationDetailEntity extends BaseEntity<ConversationDet
|
|
|
13600
13840
|
* * Default Value: newsequentialid()
|
|
13601
13841
|
*/
|
|
13602
13842
|
get ID(): string;
|
|
13843
|
+
set ID(value: string);
|
|
13603
13844
|
/**
|
|
13604
13845
|
* * Field Name: ConversationID
|
|
13605
13846
|
* * Display Name: Conversation ID
|
|
@@ -13780,6 +14021,7 @@ export declare class ConversationEntity extends BaseEntity<ConversationEntityTyp
|
|
|
13780
14021
|
* * Default Value: newsequentialid()
|
|
13781
14022
|
*/
|
|
13782
14023
|
get ID(): string;
|
|
14024
|
+
set ID(value: string);
|
|
13783
14025
|
/**
|
|
13784
14026
|
* * Field Name: UserID
|
|
13785
14027
|
* * Display Name: User ID
|
|
@@ -13924,6 +14166,7 @@ export declare class DashboardCategoryEntity extends BaseEntity<DashboardCategor
|
|
|
13924
14166
|
* * Default Value: newsequentialid()
|
|
13925
14167
|
*/
|
|
13926
14168
|
get ID(): string;
|
|
14169
|
+
set ID(value: string);
|
|
13927
14170
|
/**
|
|
13928
14171
|
* * Field Name: Name
|
|
13929
14172
|
* * Display Name: Name
|
|
@@ -14012,6 +14255,7 @@ export declare class DashboardEntity extends BaseEntity<DashboardEntityType> {
|
|
|
14012
14255
|
* * Default Value: newsequentialid()
|
|
14013
14256
|
*/
|
|
14014
14257
|
get ID(): string;
|
|
14258
|
+
set ID(value: string);
|
|
14015
14259
|
/**
|
|
14016
14260
|
* * Field Name: Name
|
|
14017
14261
|
* * Display Name: Name
|
|
@@ -14173,6 +14417,7 @@ export declare class DataContextItemEntity extends BaseEntity<DataContextItemEnt
|
|
|
14173
14417
|
* * Default Value: newsequentialid()
|
|
14174
14418
|
*/
|
|
14175
14419
|
get ID(): string;
|
|
14420
|
+
set ID(value: string);
|
|
14176
14421
|
/**
|
|
14177
14422
|
* * Field Name: DataContextID
|
|
14178
14423
|
* * Display Name: Data Context ID
|
|
@@ -14337,6 +14582,7 @@ export declare class DataContextEntity extends BaseEntity<DataContextEntityType>
|
|
|
14337
14582
|
* * Default Value: newsequentialid()
|
|
14338
14583
|
*/
|
|
14339
14584
|
get ID(): string;
|
|
14585
|
+
set ID(value: string);
|
|
14340
14586
|
/**
|
|
14341
14587
|
* * Field Name: Name
|
|
14342
14588
|
* * Display Name: Name
|
|
@@ -14427,6 +14673,7 @@ export declare class DatasetItemEntity extends BaseEntity<DatasetItemEntityType>
|
|
|
14427
14673
|
* * Default Value: newsequentialid()
|
|
14428
14674
|
*/
|
|
14429
14675
|
get ID(): string;
|
|
14676
|
+
set ID(value: string);
|
|
14430
14677
|
/**
|
|
14431
14678
|
* * Field Name: Code
|
|
14432
14679
|
* * Display Name: Code
|
|
@@ -14554,6 +14801,7 @@ export declare class DatasetEntity extends BaseEntity<DatasetEntityType> {
|
|
|
14554
14801
|
* * Default Value: newsequentialid()
|
|
14555
14802
|
*/
|
|
14556
14803
|
get ID(): string;
|
|
14804
|
+
set ID(value: string);
|
|
14557
14805
|
/**
|
|
14558
14806
|
* * Field Name: Name
|
|
14559
14807
|
* * Display Name: Name
|
|
@@ -14622,6 +14870,7 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity<DuplicateR
|
|
|
14622
14870
|
* * Default Value: newsequentialid()
|
|
14623
14871
|
*/
|
|
14624
14872
|
get ID(): string;
|
|
14873
|
+
set ID(value: string);
|
|
14625
14874
|
/**
|
|
14626
14875
|
* * Field Name: DuplicateRunDetailID
|
|
14627
14876
|
* * Display Name: Duplicate Run Detail ID
|
|
@@ -14771,6 +15020,7 @@ export declare class DuplicateRunDetailEntity extends BaseEntity<DuplicateRunDet
|
|
|
14771
15020
|
* * Default Value: newsequentialid()
|
|
14772
15021
|
*/
|
|
14773
15022
|
get ID(): string;
|
|
15023
|
+
set ID(value: string);
|
|
14774
15024
|
/**
|
|
14775
15025
|
* * Field Name: DuplicateRunID
|
|
14776
15026
|
* * Display Name: Duplicate Run ID
|
|
@@ -14891,6 +15141,7 @@ export declare class DuplicateRunEntity extends BaseEntity<DuplicateRunEntityTyp
|
|
|
14891
15141
|
* * Default Value: newsequentialid()
|
|
14892
15142
|
*/
|
|
14893
15143
|
get ID(): string;
|
|
15144
|
+
set ID(value: string);
|
|
14894
15145
|
/**
|
|
14895
15146
|
* * Field Name: EntityID
|
|
14896
15147
|
* * Display Name: Entity ID
|
|
@@ -15056,6 +15307,7 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity<Employe
|
|
|
15056
15307
|
* * Default Value: newsequentialid()
|
|
15057
15308
|
*/
|
|
15058
15309
|
get ID(): string;
|
|
15310
|
+
set ID(value: string);
|
|
15059
15311
|
/**
|
|
15060
15312
|
* * Field Name: EmployeeID
|
|
15061
15313
|
* * Display Name: Employee ID
|
|
@@ -15132,6 +15384,7 @@ export declare class EmployeeRoleEntity extends BaseEntity<EmployeeRoleEntityTyp
|
|
|
15132
15384
|
* * Default Value: newsequentialid()
|
|
15133
15385
|
*/
|
|
15134
15386
|
get ID(): string;
|
|
15387
|
+
set ID(value: string);
|
|
15135
15388
|
/**
|
|
15136
15389
|
* * Field Name: EmployeeID
|
|
15137
15390
|
* * Display Name: Employee ID
|
|
@@ -15199,6 +15452,7 @@ export declare class EmployeeSkillEntity extends BaseEntity<EmployeeSkillEntityT
|
|
|
15199
15452
|
* * Default Value: newsequentialid()
|
|
15200
15453
|
*/
|
|
15201
15454
|
get ID(): string;
|
|
15455
|
+
set ID(value: string);
|
|
15202
15456
|
/**
|
|
15203
15457
|
* * Field Name: EmployeeID
|
|
15204
15458
|
* * Display Name: Employee ID
|
|
@@ -15266,6 +15520,7 @@ export declare class EmployeeEntity extends BaseEntity<EmployeeEntityType> {
|
|
|
15266
15520
|
* * Default Value: newsequentialid()
|
|
15267
15521
|
*/
|
|
15268
15522
|
get ID(): string;
|
|
15523
|
+
set ID(value: string);
|
|
15269
15524
|
/**
|
|
15270
15525
|
* * Field Name: BCMID
|
|
15271
15526
|
* * Display Name: BCMID
|
|
@@ -15418,6 +15673,7 @@ export declare class EntityEntity extends BaseEntity<EntityEntityType> {
|
|
|
15418
15673
|
* * Default Value: newsequentialid()
|
|
15419
15674
|
*/
|
|
15420
15675
|
get ID(): string;
|
|
15676
|
+
set ID(value: string);
|
|
15421
15677
|
/**
|
|
15422
15678
|
* * Field Name: ParentID
|
|
15423
15679
|
* * Display Name: Parent ID
|
|
@@ -15950,6 +16206,7 @@ export declare class EntityActionFilterEntity extends BaseEntity<EntityActionFil
|
|
|
15950
16206
|
* * Default Value: newsequentialid()
|
|
15951
16207
|
*/
|
|
15952
16208
|
get ID(): string;
|
|
16209
|
+
set ID(value: string);
|
|
15953
16210
|
/**
|
|
15954
16211
|
* * Field Name: EntityActionID
|
|
15955
16212
|
* * Display Name: Entity Action ID
|
|
@@ -16034,6 +16291,7 @@ export declare class EntityActionInvocationTypeEntity extends BaseEntity<EntityA
|
|
|
16034
16291
|
* * Default Value: newsequentialid()
|
|
16035
16292
|
*/
|
|
16036
16293
|
get ID(): string;
|
|
16294
|
+
set ID(value: string);
|
|
16037
16295
|
/**
|
|
16038
16296
|
* * Field Name: Name
|
|
16039
16297
|
* * Display Name: Name
|
|
@@ -16104,6 +16362,7 @@ export declare class EntityActionInvocationEntity extends BaseEntity<EntityActio
|
|
|
16104
16362
|
* * Default Value: newsequentialid()
|
|
16105
16363
|
*/
|
|
16106
16364
|
get ID(): string;
|
|
16365
|
+
set ID(value: string);
|
|
16107
16366
|
/**
|
|
16108
16367
|
* * Field Name: EntityActionID
|
|
16109
16368
|
* * Display Name: Entity Action ID
|
|
@@ -16186,6 +16445,7 @@ export declare class EntityActionParamEntity extends BaseEntity<EntityActionPara
|
|
|
16186
16445
|
* * Default Value: newsequentialid()
|
|
16187
16446
|
*/
|
|
16188
16447
|
get ID(): string;
|
|
16448
|
+
set ID(value: string);
|
|
16189
16449
|
/**
|
|
16190
16450
|
* * Field Name: EntityActionID
|
|
16191
16451
|
* * Display Name: Entity Action ID
|
|
@@ -16328,6 +16588,7 @@ export declare class EntityActionEntity extends BaseEntity<EntityActionEntityTyp
|
|
|
16328
16588
|
* * Default Value: newsequentialid()
|
|
16329
16589
|
*/
|
|
16330
16590
|
get ID(): string;
|
|
16591
|
+
set ID(value: string);
|
|
16331
16592
|
/**
|
|
16332
16593
|
* * Field Name: Entity
|
|
16333
16594
|
* * Display Name: Entity
|
|
@@ -16373,6 +16634,7 @@ export declare class EntityAIActionEntity extends BaseEntity<EntityAIActionEntit
|
|
|
16373
16634
|
* * Default Value: newsequentialid()
|
|
16374
16635
|
*/
|
|
16375
16636
|
get ID(): string;
|
|
16637
|
+
set ID(value: string);
|
|
16376
16638
|
/**
|
|
16377
16639
|
* * Field Name: EntityID
|
|
16378
16640
|
* * Display Name: Entity ID
|
|
@@ -16542,6 +16804,7 @@ export declare class EntityCommunicationFieldEntity extends BaseEntity<EntityCom
|
|
|
16542
16804
|
* * Default Value: newsequentialid()
|
|
16543
16805
|
*/
|
|
16544
16806
|
get ID(): string;
|
|
16807
|
+
set ID(value: string);
|
|
16545
16808
|
/**
|
|
16546
16809
|
* * Field Name: EntityCommunicationMessageTypeID
|
|
16547
16810
|
* * Display Name: Entity Communication Message Type ID
|
|
@@ -16612,6 +16875,7 @@ export declare class EntityCommunicationMessageTypeEntity extends BaseEntity<Ent
|
|
|
16612
16875
|
* * Default Value: newsequentialid()
|
|
16613
16876
|
*/
|
|
16614
16877
|
get ID(): string;
|
|
16878
|
+
set ID(value: string);
|
|
16615
16879
|
/**
|
|
16616
16880
|
* * Field Name: EntityID
|
|
16617
16881
|
* * Display Name: Entity ID
|
|
@@ -16703,6 +16967,7 @@ export declare class EntityDocumentRunEntity extends BaseEntity<EntityDocumentRu
|
|
|
16703
16967
|
* * Default Value: newsequentialid()
|
|
16704
16968
|
*/
|
|
16705
16969
|
get ID(): string;
|
|
16970
|
+
set ID(value: string);
|
|
16706
16971
|
/**
|
|
16707
16972
|
* * Field Name: EntityDocumentID
|
|
16708
16973
|
* * Display Name: Entity Document ID
|
|
@@ -16790,6 +17055,7 @@ export declare class EntityDocumentSettingEntity extends BaseEntity<EntityDocume
|
|
|
16790
17055
|
* * Default Value: newsequentialid()
|
|
16791
17056
|
*/
|
|
16792
17057
|
get ID(): string;
|
|
17058
|
+
set ID(value: string);
|
|
16793
17059
|
/**
|
|
16794
17060
|
* * Field Name: EntityDocumentID
|
|
16795
17061
|
* * Display Name: Entity Document ID
|
|
@@ -16870,6 +17136,7 @@ export declare class EntityDocumentTypeEntity extends BaseEntity<EntityDocumentT
|
|
|
16870
17136
|
* * Default Value: newsequentialid()
|
|
16871
17137
|
*/
|
|
16872
17138
|
get ID(): string;
|
|
17139
|
+
set ID(value: string);
|
|
16873
17140
|
/**
|
|
16874
17141
|
* * Field Name: Name
|
|
16875
17142
|
* * Display Name: Name
|
|
@@ -16953,6 +17220,7 @@ export declare class EntityDocumentEntity extends BaseEntity<EntityDocumentEntit
|
|
|
16953
17220
|
* * Default Value: newsequentialid()
|
|
16954
17221
|
*/
|
|
16955
17222
|
get ID(): string;
|
|
17223
|
+
set ID(value: string);
|
|
16956
17224
|
/**
|
|
16957
17225
|
* * Field Name: Name
|
|
16958
17226
|
* * Display Name: Name
|
|
@@ -17114,6 +17382,7 @@ export declare class EntityFieldValueEntity extends BaseEntity<EntityFieldValueE
|
|
|
17114
17382
|
* * Default Value: newsequentialid()
|
|
17115
17383
|
*/
|
|
17116
17384
|
get ID(): string;
|
|
17385
|
+
set ID(value: string);
|
|
17117
17386
|
/**
|
|
17118
17387
|
* * Field Name: EntityFieldID
|
|
17119
17388
|
* * Display Name: Entity Field ID
|
|
@@ -17213,6 +17482,7 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
|
|
|
17213
17482
|
* * Default Value: newsequentialid()
|
|
17214
17483
|
*/
|
|
17215
17484
|
get ID(): string;
|
|
17485
|
+
set ID(value: string);
|
|
17216
17486
|
/**
|
|
17217
17487
|
* * Field Name: EntityID
|
|
17218
17488
|
* * Display Name: Entity ID
|
|
@@ -17708,6 +17978,7 @@ export declare class EntityPermissionEntity extends BaseEntity<EntityPermissionE
|
|
|
17708
17978
|
* * Default Value: newsequentialid()
|
|
17709
17979
|
*/
|
|
17710
17980
|
get ID(): string;
|
|
17981
|
+
set ID(value: string);
|
|
17711
17982
|
/**
|
|
17712
17983
|
* * Field Name: EntityID
|
|
17713
17984
|
* * Display Name: Entity ID
|
|
@@ -17884,6 +18155,7 @@ export declare class EntityRecordDocumentEntity extends BaseEntity<EntityRecordD
|
|
|
17884
18155
|
* * Default Value: newsequentialid()
|
|
17885
18156
|
*/
|
|
17886
18157
|
get ID(): string;
|
|
18158
|
+
set ID(value: string);
|
|
17887
18159
|
/**
|
|
17888
18160
|
* * Field Name: EntityID
|
|
17889
18161
|
* * Display Name: Entity ID
|
|
@@ -18016,6 +18288,7 @@ export declare class EntityRelationshipDisplayComponentEntity extends BaseEntity
|
|
|
18016
18288
|
* * Default Value: newsequentialid()
|
|
18017
18289
|
*/
|
|
18018
18290
|
get ID(): string;
|
|
18291
|
+
set ID(value: string);
|
|
18019
18292
|
/**
|
|
18020
18293
|
* * Field Name: Name
|
|
18021
18294
|
* * Display Name: Name
|
|
@@ -18088,6 +18361,7 @@ export declare class EntityRelationshipEntity extends BaseEntity<EntityRelations
|
|
|
18088
18361
|
* * Default Value: newsequentialid()
|
|
18089
18362
|
*/
|
|
18090
18363
|
get ID(): string;
|
|
18364
|
+
set ID(value: string);
|
|
18091
18365
|
/**
|
|
18092
18366
|
* * Field Name: EntityID
|
|
18093
18367
|
* * Display Name: Entity ID
|
|
@@ -18362,6 +18636,7 @@ export declare class EntitySettingEntity extends BaseEntity<EntitySettingEntityT
|
|
|
18362
18636
|
* * Default Value: newsequentialid()
|
|
18363
18637
|
*/
|
|
18364
18638
|
get ID(): string;
|
|
18639
|
+
set ID(value: string);
|
|
18365
18640
|
/**
|
|
18366
18641
|
* * Field Name: EntityID
|
|
18367
18642
|
* * Display Name: Entity ID
|
|
@@ -18450,6 +18725,7 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
|
|
|
18450
18725
|
* * Default Value: newsequentialid()
|
|
18451
18726
|
*/
|
|
18452
18727
|
get ID(): string;
|
|
18728
|
+
set ID(value: string);
|
|
18453
18729
|
/**
|
|
18454
18730
|
* * Field Name: CompanyIntegrationRunID
|
|
18455
18731
|
* * Display Name: CompanyIntegrationRun ID
|
|
@@ -18566,6 +18842,7 @@ export declare class ExplorerNavigationItemEntity extends BaseEntity<ExplorerNav
|
|
|
18566
18842
|
* * Description: Unique identifier for each navigation item
|
|
18567
18843
|
*/
|
|
18568
18844
|
get ID(): string;
|
|
18845
|
+
set ID(value: string);
|
|
18569
18846
|
/**
|
|
18570
18847
|
* * Field Name: Sequence
|
|
18571
18848
|
* * Display Name: Sequence
|
|
@@ -18686,6 +18963,7 @@ export declare class FileCategoryEntity extends BaseEntity<FileCategoryEntityTyp
|
|
|
18686
18963
|
* * Default Value: newsequentialid()
|
|
18687
18964
|
*/
|
|
18688
18965
|
get ID(): string;
|
|
18966
|
+
set ID(value: string);
|
|
18689
18967
|
/**
|
|
18690
18968
|
* * Field Name: Name
|
|
18691
18969
|
* * Display Name: Name
|
|
@@ -18759,6 +19037,7 @@ export declare class FileEntityRecordLinkEntity extends BaseEntity<FileEntityRec
|
|
|
18759
19037
|
* * Default Value: newsequentialid()
|
|
18760
19038
|
*/
|
|
18761
19039
|
get ID(): string;
|
|
19040
|
+
set ID(value: string);
|
|
18762
19041
|
/**
|
|
18763
19042
|
* * Field Name: FileID
|
|
18764
19043
|
* * Display Name: File ID
|
|
@@ -18839,6 +19118,7 @@ export declare class FileStorageProviderEntity extends BaseEntity<FileStoragePro
|
|
|
18839
19118
|
* * Default Value: newsequentialid()
|
|
18840
19119
|
*/
|
|
18841
19120
|
get ID(): string;
|
|
19121
|
+
set ID(value: string);
|
|
18842
19122
|
/**
|
|
18843
19123
|
* * Field Name: Name
|
|
18844
19124
|
* * Display Name: Name
|
|
@@ -18928,6 +19208,7 @@ export declare class FileEntity extends BaseEntity<FileEntityType> {
|
|
|
18928
19208
|
* * Default Value: newsequentialid()
|
|
18929
19209
|
*/
|
|
18930
19210
|
get ID(): string;
|
|
19211
|
+
set ID(value: string);
|
|
18931
19212
|
/**
|
|
18932
19213
|
* * Field Name: Name
|
|
18933
19214
|
* * Display Name: Name
|
|
@@ -19013,6 +19294,7 @@ export declare class FileEntity extends BaseEntity<FileEntityType> {
|
|
|
19013
19294
|
* * Schema: __mj
|
|
19014
19295
|
* * Base Table: GeneratedCodeCategory
|
|
19015
19296
|
* * Base View: vwGeneratedCodeCategories
|
|
19297
|
+
* * @description Categorization for generated code, including optional parent-child relationships.
|
|
19016
19298
|
* * Primary Key: ID
|
|
19017
19299
|
* @extends {BaseEntity}
|
|
19018
19300
|
* @class
|
|
@@ -19038,6 +19320,7 @@ export declare class GeneratedCodeCategoryEntity extends BaseEntity<GeneratedCod
|
|
|
19038
19320
|
* * Default Value: newsequentialid()
|
|
19039
19321
|
*/
|
|
19040
19322
|
get ID(): string;
|
|
19323
|
+
set ID(value: string);
|
|
19041
19324
|
/**
|
|
19042
19325
|
* * Field Name: Name
|
|
19043
19326
|
* * Display Name: Name
|
|
@@ -19112,6 +19395,7 @@ export declare class GeneratedCodeEntity extends BaseEntity<GeneratedCodeEntityT
|
|
|
19112
19395
|
* * Default Value: newsequentialid()
|
|
19113
19396
|
*/
|
|
19114
19397
|
get ID(): string;
|
|
19398
|
+
set ID(value: string);
|
|
19115
19399
|
/**
|
|
19116
19400
|
* * Field Name: GeneratedAt
|
|
19117
19401
|
* * Display Name: Generated At
|
|
@@ -19281,6 +19565,7 @@ export declare class IntegrationURLFormatEntity extends BaseEntity<IntegrationUR
|
|
|
19281
19565
|
* * Default Value: newsequentialid()
|
|
19282
19566
|
*/
|
|
19283
19567
|
get ID(): string;
|
|
19568
|
+
set ID(value: string);
|
|
19284
19569
|
/**
|
|
19285
19570
|
* * Field Name: IntegrationID
|
|
19286
19571
|
* * Display Name: Integration ID
|
|
@@ -19437,6 +19722,7 @@ export declare class IntegrationEntity extends BaseEntity<IntegrationEntityType>
|
|
|
19437
19722
|
* * Default Value: newsequentialid()
|
|
19438
19723
|
*/
|
|
19439
19724
|
get ID(): string;
|
|
19725
|
+
set ID(value: string);
|
|
19440
19726
|
}
|
|
19441
19727
|
/**
|
|
19442
19728
|
* Libraries - strongly typed entity sub-class
|
|
@@ -19469,6 +19755,7 @@ export declare class LibraryEntity extends BaseEntity<LibraryEntityType> {
|
|
|
19469
19755
|
* * Default Value: newsequentialid()
|
|
19470
19756
|
*/
|
|
19471
19757
|
get ID(): string;
|
|
19758
|
+
set ID(value: string);
|
|
19472
19759
|
/**
|
|
19473
19760
|
* * Field Name: Name
|
|
19474
19761
|
* * Display Name: Name
|
|
@@ -19559,6 +19846,7 @@ export declare class LibraryItemEntity extends BaseEntity<LibraryItemEntityType>
|
|
|
19559
19846
|
* * Default Value: newsequentialid()
|
|
19560
19847
|
*/
|
|
19561
19848
|
get ID(): string;
|
|
19849
|
+
set ID(value: string);
|
|
19562
19850
|
/**
|
|
19563
19851
|
* * Field Name: Name
|
|
19564
19852
|
* * Display Name: Name
|
|
@@ -19641,6 +19929,7 @@ export declare class ListCategoryEntity extends BaseEntity<ListCategoryEntityTyp
|
|
|
19641
19929
|
* * Default Value: newsequentialid()
|
|
19642
19930
|
*/
|
|
19643
19931
|
get ID(): string;
|
|
19932
|
+
set ID(value: string);
|
|
19644
19933
|
/**
|
|
19645
19934
|
* * Field Name: Name
|
|
19646
19935
|
* * Display Name: Name
|
|
@@ -19728,6 +20017,7 @@ export declare class ListDetailEntity extends BaseEntity<ListDetailEntityType> {
|
|
|
19728
20017
|
* * Default Value: newsequentialid()
|
|
19729
20018
|
*/
|
|
19730
20019
|
get ID(): string;
|
|
20020
|
+
set ID(value: string);
|
|
19731
20021
|
/**
|
|
19732
20022
|
* * Field Name: ListID
|
|
19733
20023
|
* * Display Name: List ID
|
|
@@ -19827,6 +20117,7 @@ export declare class ListEntity extends BaseEntity<ListEntityType> {
|
|
|
19827
20117
|
* * Default Value: newsequentialid()
|
|
19828
20118
|
*/
|
|
19829
20119
|
get ID(): string;
|
|
20120
|
+
set ID(value: string);
|
|
19830
20121
|
/**
|
|
19831
20122
|
* * Field Name: Name
|
|
19832
20123
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -19956,6 +20247,7 @@ export declare class AIAgentPromptEntity extends BaseEntity<AIAgentPromptEntityT
|
|
|
19956
20247
|
* * Default Value: newsequentialid()
|
|
19957
20248
|
*/
|
|
19958
20249
|
get ID(): string;
|
|
20250
|
+
set ID(value: string);
|
|
19959
20251
|
/**
|
|
19960
20252
|
* * Field Name: AgentID
|
|
19961
20253
|
* * Display Name: Agent ID
|
|
@@ -20119,6 +20411,7 @@ export declare class AIAgentRunStepEntity extends BaseEntity<AIAgentRunStepEntit
|
|
|
20119
20411
|
* * Description: Unique identifier for this execution step
|
|
20120
20412
|
*/
|
|
20121
20413
|
get ID(): string;
|
|
20414
|
+
set ID(value: string);
|
|
20122
20415
|
/**
|
|
20123
20416
|
* * Field Name: AgentRunID
|
|
20124
20417
|
* * Display Name: Agent Run ID
|
|
@@ -20270,6 +20563,7 @@ export declare class AIAgentRunEntity extends BaseEntity<AIAgentRunEntityType> {
|
|
|
20270
20563
|
* * Description: Unique identifier for this agent run
|
|
20271
20564
|
*/
|
|
20272
20565
|
get ID(): string;
|
|
20566
|
+
set ID(value: string);
|
|
20273
20567
|
/**
|
|
20274
20568
|
* * Field Name: AgentID
|
|
20275
20569
|
* * Display Name: Agent ID
|
|
@@ -20404,6 +20698,54 @@ export declare class AIAgentRunEntity extends BaseEntity<AIAgentRunEntityType> {
|
|
|
20404
20698
|
*/
|
|
20405
20699
|
get __mj_UpdatedAt(): Date;
|
|
20406
20700
|
/**
|
|
20701
|
+
* * Field Name: TotalPromptTokensUsed
|
|
20702
|
+
* * Display Name: Total Prompt Tokens Used
|
|
20703
|
+
* * SQL Data Type: int
|
|
20704
|
+
* * Description: Total number of prompt/input tokens used across all AIPromptRun executions during this agent run. This provides a breakdown of the TotalTokensUsed field to help analyze the ratio of input vs output tokens consumed by the agent.
|
|
20705
|
+
*/
|
|
20706
|
+
get TotalPromptTokensUsed(): number | null;
|
|
20707
|
+
set TotalPromptTokensUsed(value: number | null);
|
|
20708
|
+
/**
|
|
20709
|
+
* * Field Name: TotalCompletionTokensUsed
|
|
20710
|
+
* * Display Name: Total Completion Tokens Used
|
|
20711
|
+
* * SQL Data Type: int
|
|
20712
|
+
* * Description: Total number of completion/output tokens generated across all AIPromptRun executions during this agent run. This provides a breakdown of the TotalTokensUsed field to help analyze the ratio of input vs output tokens consumed by the agent.
|
|
20713
|
+
*/
|
|
20714
|
+
get TotalCompletionTokensUsed(): number | null;
|
|
20715
|
+
set TotalCompletionTokensUsed(value: number | null);
|
|
20716
|
+
/**
|
|
20717
|
+
* * Field Name: TotalTokensUsedRollup
|
|
20718
|
+
* * Display Name: Total Tokens Used Rollup
|
|
20719
|
+
* * SQL Data Type: int
|
|
20720
|
+
* * Description: Total tokens used including this agent run and all sub-agent runs. For leaf agents (no sub-agents), this equals TotalTokensUsed. For parent agents, this includes the sum of all descendant agent tokens. Calculated as TotalPromptTokensUsedRollup + TotalCompletionTokensUsedRollup.
|
|
20721
|
+
*/
|
|
20722
|
+
get TotalTokensUsedRollup(): number | null;
|
|
20723
|
+
set TotalTokensUsedRollup(value: number | null);
|
|
20724
|
+
/**
|
|
20725
|
+
* * Field Name: TotalPromptTokensUsedRollup
|
|
20726
|
+
* * Display Name: Total Prompt Tokens Used Rollup
|
|
20727
|
+
* * SQL Data Type: int
|
|
20728
|
+
* * Description: Total prompt/input tokens including this agent run and all sub-agent runs. For leaf agents (no sub-agents), this equals TotalPromptTokensUsed. For parent agents, this includes the sum of all descendant agent prompt tokens.
|
|
20729
|
+
*/
|
|
20730
|
+
get TotalPromptTokensUsedRollup(): number | null;
|
|
20731
|
+
set TotalPromptTokensUsedRollup(value: number | null);
|
|
20732
|
+
/**
|
|
20733
|
+
* * Field Name: TotalCompletionTokensUsedRollup
|
|
20734
|
+
* * Display Name: Total Completion Tokens Used Rollup
|
|
20735
|
+
* * SQL Data Type: int
|
|
20736
|
+
* * Description: Total completion/output tokens including this agent run and all sub-agent runs. For leaf agents (no sub-agents), this equals TotalCompletionTokensUsed. For parent agents, this includes the sum of all descendant agent completion tokens.
|
|
20737
|
+
*/
|
|
20738
|
+
get TotalCompletionTokensUsedRollup(): number | null;
|
|
20739
|
+
set TotalCompletionTokensUsedRollup(value: number | null);
|
|
20740
|
+
/**
|
|
20741
|
+
* * Field Name: TotalCostRollup
|
|
20742
|
+
* * Display Name: Total Cost Rollup
|
|
20743
|
+
* * SQL Data Type: decimal(19, 8)
|
|
20744
|
+
* * Description: Total cost including this agent run and all sub-agent runs. For leaf agents (no sub-agents), this equals TotalCost. For parent agents, this includes the sum of all descendant agent costs. Note: This assumes all costs are in the same currency for accurate rollup.
|
|
20745
|
+
*/
|
|
20746
|
+
get TotalCostRollup(): number | null;
|
|
20747
|
+
set TotalCostRollup(value: number | null);
|
|
20748
|
+
/**
|
|
20407
20749
|
* * Field Name: Agent
|
|
20408
20750
|
* * Display Name: Agent
|
|
20409
20751
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -20453,6 +20795,7 @@ export declare class AIAgentTypeEntity extends BaseEntity<AIAgentTypeEntityType>
|
|
|
20453
20795
|
* * Description: Unique identifier for the agent type
|
|
20454
20796
|
*/
|
|
20455
20797
|
get ID(): string;
|
|
20798
|
+
set ID(value: string);
|
|
20456
20799
|
/**
|
|
20457
20800
|
* * Field Name: Name
|
|
20458
20801
|
* * Display Name: Name
|
|
@@ -20502,6 +20845,22 @@ export declare class AIAgentTypeEntity extends BaseEntity<AIAgentTypeEntityType>
|
|
|
20502
20845
|
*/
|
|
20503
20846
|
get __mj_UpdatedAt(): Date;
|
|
20504
20847
|
/**
|
|
20848
|
+
* * Field Name: AgentPromptPlaceholder
|
|
20849
|
+
* * Display Name: Agent Prompt Placeholder
|
|
20850
|
+
* * SQL Data Type: nvarchar(255)
|
|
20851
|
+
* * Description: The placeholder name used in the system prompt template where the agent prompt result should be injected. For example, if the system prompt contains "{{ agentPrompt }}", this field should contain "agentPrompt". This enables proper hierarchical prompt execution where the agent type's system prompt acts as the parent and the agent's specific prompt acts as the child.
|
|
20852
|
+
*/
|
|
20853
|
+
get AgentPromptPlaceholder(): string | null;
|
|
20854
|
+
set AgentPromptPlaceholder(value: string | null);
|
|
20855
|
+
/**
|
|
20856
|
+
* * Field Name: DriverClass
|
|
20857
|
+
* * Display Name: Driver Class
|
|
20858
|
+
* * SQL Data Type: nvarchar(255)
|
|
20859
|
+
* * Description: The class name used by the MemberJunction class factory to instantiate the specific agent type implementation. For example, "LoopAgentType" for a looping agent pattern. If not specified, defaults to using the agent type Name for the DriverClass lookup key.
|
|
20860
|
+
*/
|
|
20861
|
+
get DriverClass(): string | null;
|
|
20862
|
+
set DriverClass(value: string | null);
|
|
20863
|
+
/**
|
|
20505
20864
|
* * Field Name: SystemPrompt
|
|
20506
20865
|
* * Display Name: System Prompt
|
|
20507
20866
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -20538,6 +20897,7 @@ export declare class AIConfigurationParamEntity extends BaseEntity<AIConfigurati
|
|
|
20538
20897
|
* * Default Value: newsequentialid()
|
|
20539
20898
|
*/
|
|
20540
20899
|
get ID(): string;
|
|
20900
|
+
set ID(value: string);
|
|
20541
20901
|
/**
|
|
20542
20902
|
* * Field Name: ConfigurationID
|
|
20543
20903
|
* * Display Name: Configuration ID
|
|
@@ -20637,6 +20997,7 @@ export declare class AIConfigurationEntity extends BaseEntity<AIConfigurationEnt
|
|
|
20637
20997
|
* * Default Value: newsequentialid()
|
|
20638
20998
|
*/
|
|
20639
20999
|
get ID(): string;
|
|
21000
|
+
set ID(value: string);
|
|
20640
21001
|
/**
|
|
20641
21002
|
* * Field Name: Name
|
|
20642
21003
|
* * Display Name: Name
|
|
@@ -20723,32 +21084,418 @@ export declare class AIConfigurationEntity extends BaseEntity<AIConfigurationEnt
|
|
|
20723
21084
|
get DefaultPromptForContextSummarization(): string | null;
|
|
20724
21085
|
}
|
|
20725
21086
|
/**
|
|
20726
|
-
* MJ: AI Model
|
|
21087
|
+
* MJ: AI Model Costs - strongly typed entity sub-class
|
|
20727
21088
|
* * Schema: __mj
|
|
20728
|
-
* * Base Table:
|
|
20729
|
-
* * Base View:
|
|
21089
|
+
* * Base Table: AIModelCost
|
|
21090
|
+
* * Base View: vwAIModelCosts
|
|
20730
21091
|
* * Primary Key: ID
|
|
20731
21092
|
* @extends {BaseEntity}
|
|
20732
21093
|
* @class
|
|
20733
21094
|
* @public
|
|
20734
21095
|
*/
|
|
20735
|
-
export declare class
|
|
21096
|
+
export declare class AIModelCostEntity extends BaseEntity<AIModelCostEntityType> {
|
|
20736
21097
|
/**
|
|
20737
|
-
* Loads the MJ: AI Model
|
|
20738
|
-
* @param ID: string - primary key value to load the MJ: AI Model
|
|
21098
|
+
* Loads the MJ: AI Model Costs record from the database
|
|
21099
|
+
* @param ID: string - primary key value to load the MJ: AI Model Costs record.
|
|
20739
21100
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
20740
21101
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
20741
21102
|
* @public
|
|
20742
21103
|
* @async
|
|
20743
|
-
* @memberof
|
|
21104
|
+
* @memberof AIModelCostEntity
|
|
20744
21105
|
* @method
|
|
20745
21106
|
* @override
|
|
20746
21107
|
*/
|
|
20747
21108
|
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
20748
21109
|
/**
|
|
20749
|
-
* Validate() method override for MJ: AI Model
|
|
20750
|
-
* *
|
|
20751
|
-
* *
|
|
21110
|
+
* Validate() method override for MJ: AI Model Costs entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
21111
|
+
* * Currency: This rule ensures that the currency code consists of exactly three uppercase letters. For example, 'USD', 'EUR', or 'JPY' are valid, but anything with lowercase letters or a different length is not allowed.
|
|
21112
|
+
* * InputPricePerUnit: This rule ensures that the input price per unit cannot be negative. It must be zero or greater.
|
|
21113
|
+
* * OutputPricePerUnit: This rule ensures that the output price per unit cannot be negative. It must be zero or greater.
|
|
21114
|
+
* * Table-Level: This rule ensures that the end date must be after the start date if both are specified. If either the start date or end date is missing, any value is allowed.
|
|
21115
|
+
* @public
|
|
21116
|
+
* @method
|
|
21117
|
+
* @override
|
|
21118
|
+
*/
|
|
21119
|
+
Validate(): ValidationResult;
|
|
21120
|
+
/**
|
|
21121
|
+
* This rule ensures that the currency code consists of exactly three uppercase letters. For example, 'USD', 'EUR', or 'JPY' are valid, but anything with lowercase letters or a different length is not allowed.
|
|
21122
|
+
* @param result - the ValidationResult object to add any errors or warnings to
|
|
21123
|
+
* @public
|
|
21124
|
+
* @method
|
|
21125
|
+
*/
|
|
21126
|
+
ValidateCurrencyIsThreeUppercaseLetters(result: ValidationResult): void;
|
|
21127
|
+
/**
|
|
21128
|
+
* This rule ensures that the input price per unit cannot be negative. It must be zero or greater.
|
|
21129
|
+
* @param result - the ValidationResult object to add any errors or warnings to
|
|
21130
|
+
* @public
|
|
21131
|
+
* @method
|
|
21132
|
+
*/
|
|
21133
|
+
ValidateInputPricePerUnitNonNegative(result: ValidationResult): void;
|
|
21134
|
+
/**
|
|
21135
|
+
* This rule ensures that the output price per unit cannot be negative. It must be zero or greater.
|
|
21136
|
+
* @param result - the ValidationResult object to add any errors or warnings to
|
|
21137
|
+
* @public
|
|
21138
|
+
* @method
|
|
21139
|
+
*/
|
|
21140
|
+
ValidateOutputPricePerUnitNonNegative(result: ValidationResult): void;
|
|
21141
|
+
/**
|
|
21142
|
+
* This rule ensures that the end date must be after the start date if both are specified. If either the start date or end date is missing, any value is allowed.
|
|
21143
|
+
* @param result - the ValidationResult object to add any errors or warnings to
|
|
21144
|
+
* @public
|
|
21145
|
+
* @method
|
|
21146
|
+
*/
|
|
21147
|
+
ValidateEndedAtAfterStartedAt(result: ValidationResult): void;
|
|
21148
|
+
/**
|
|
21149
|
+
* * Field Name: ID
|
|
21150
|
+
* * Display Name: ID
|
|
21151
|
+
* * SQL Data Type: uniqueidentifier
|
|
21152
|
+
* * Default Value: newsequentialid()
|
|
21153
|
+
*/
|
|
21154
|
+
get ID(): string;
|
|
21155
|
+
set ID(value: string);
|
|
21156
|
+
/**
|
|
21157
|
+
* * Field Name: ModelID
|
|
21158
|
+
* * Display Name: Model ID
|
|
21159
|
+
* * SQL Data Type: uniqueidentifier
|
|
21160
|
+
* * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
|
|
21161
|
+
*/
|
|
21162
|
+
get ModelID(): string;
|
|
21163
|
+
set ModelID(value: string);
|
|
21164
|
+
/**
|
|
21165
|
+
* * Field Name: VendorID
|
|
21166
|
+
* * Display Name: Vendor ID
|
|
21167
|
+
* * SQL Data Type: uniqueidentifier
|
|
21168
|
+
* * Related Entity/Foreign Key: MJ: AI Vendors (vwAIVendors.ID)
|
|
21169
|
+
*/
|
|
21170
|
+
get VendorID(): string;
|
|
21171
|
+
set VendorID(value: string);
|
|
21172
|
+
/**
|
|
21173
|
+
* * Field Name: StartedAt
|
|
21174
|
+
* * Display Name: Started At
|
|
21175
|
+
* * SQL Data Type: datetimeoffset
|
|
21176
|
+
* * Default Value: sysdatetimeoffset()
|
|
21177
|
+
* * Description: Date and time with timezone when this pricing became effective. NULL disables temporal tracking. Defaults to current UTC time when record is created
|
|
21178
|
+
*/
|
|
21179
|
+
get StartedAt(): Date | null;
|
|
21180
|
+
set StartedAt(value: Date | null);
|
|
21181
|
+
/**
|
|
21182
|
+
* * Field Name: EndedAt
|
|
21183
|
+
* * Display Name: Ended At
|
|
21184
|
+
* * SQL Data Type: datetimeoffset
|
|
21185
|
+
* * Description: Date and time with timezone when this pricing expired or will expire. NULL indicates currently active pricing
|
|
21186
|
+
*/
|
|
21187
|
+
get EndedAt(): Date | null;
|
|
21188
|
+
set EndedAt(value: Date | null);
|
|
21189
|
+
/**
|
|
21190
|
+
* * Field Name: Status
|
|
21191
|
+
* * Display Name: Status
|
|
21192
|
+
* * SQL Data Type: nvarchar(20)
|
|
21193
|
+
* * Value List Type: List
|
|
21194
|
+
* * Possible Values
|
|
21195
|
+
* * Active
|
|
21196
|
+
* * Pending
|
|
21197
|
+
* * Expired
|
|
21198
|
+
* * Invalid
|
|
21199
|
+
* * Description: Current status of this pricing record. Active=currently in use, Pending=scheduled for future, Expired=no longer valid, Invalid=data error
|
|
21200
|
+
*/
|
|
21201
|
+
get Status(): 'Active' | 'Pending' | 'Expired' | 'Invalid';
|
|
21202
|
+
set Status(value: 'Active' | 'Pending' | 'Expired' | 'Invalid');
|
|
21203
|
+
/**
|
|
21204
|
+
* * Field Name: Currency
|
|
21205
|
+
* * Display Name: Currency
|
|
21206
|
+
* * SQL Data Type: nchar(3)
|
|
21207
|
+
* * Description: ISO 4217 three-letter currency code (e.g., USD, EUR, GBP) in uppercase
|
|
21208
|
+
*/
|
|
21209
|
+
get Currency(): string;
|
|
21210
|
+
set Currency(value: string);
|
|
21211
|
+
/**
|
|
21212
|
+
* * Field Name: PriceTypeID
|
|
21213
|
+
* * Display Name: Price Type ID
|
|
21214
|
+
* * SQL Data Type: uniqueidentifier
|
|
21215
|
+
* * Related Entity/Foreign Key: MJ: AI Model Price Types (vwAIModelPriceTypes.ID)
|
|
21216
|
+
*/
|
|
21217
|
+
get PriceTypeID(): string;
|
|
21218
|
+
set PriceTypeID(value: string);
|
|
21219
|
+
/**
|
|
21220
|
+
* * Field Name: InputPricePerUnit
|
|
21221
|
+
* * Display Name: Input Price Per Unit
|
|
21222
|
+
* * SQL Data Type: decimal(18, 8)
|
|
21223
|
+
* * Description: Price per unit for input tokens/requests. Must be non-negative. Precision allows for micro-pricing scenarios
|
|
21224
|
+
*/
|
|
21225
|
+
get InputPricePerUnit(): number;
|
|
21226
|
+
set InputPricePerUnit(value: number);
|
|
21227
|
+
/**
|
|
21228
|
+
* * Field Name: OutputPricePerUnit
|
|
21229
|
+
* * Display Name: Output Price Per Unit
|
|
21230
|
+
* * SQL Data Type: decimal(18, 8)
|
|
21231
|
+
* * Description: Price per unit for output tokens/responses. Must be non-negative. Often higher than input pricing
|
|
21232
|
+
*/
|
|
21233
|
+
get OutputPricePerUnit(): number;
|
|
21234
|
+
set OutputPricePerUnit(value: number);
|
|
21235
|
+
/**
|
|
21236
|
+
* * Field Name: UnitTypeID
|
|
21237
|
+
* * Display Name: Unit Type ID
|
|
21238
|
+
* * SQL Data Type: uniqueidentifier
|
|
21239
|
+
* * Related Entity/Foreign Key: MJ: AI Model Price Unit Types (vwAIModelPriceUnitTypes.ID)
|
|
21240
|
+
*/
|
|
21241
|
+
get UnitTypeID(): string;
|
|
21242
|
+
set UnitTypeID(value: string);
|
|
21243
|
+
/**
|
|
21244
|
+
* * Field Name: ProcessingType
|
|
21245
|
+
* * Display Name: Processing Type
|
|
21246
|
+
* * SQL Data Type: nvarchar(20)
|
|
21247
|
+
* * Value List Type: List
|
|
21248
|
+
* * Possible Values
|
|
21249
|
+
* * Realtime
|
|
21250
|
+
* * Batch
|
|
21251
|
+
* * Description: Processing method that affects pricing. Realtime=immediate response, Batch=delayed processing often with discounts
|
|
21252
|
+
*/
|
|
21253
|
+
get ProcessingType(): 'Realtime' | 'Batch';
|
|
21254
|
+
set ProcessingType(value: 'Realtime' | 'Batch');
|
|
21255
|
+
/**
|
|
21256
|
+
* * Field Name: Comments
|
|
21257
|
+
* * Display Name: Comments
|
|
21258
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
21259
|
+
* * Description: Optional notes about pricing context, source, special conditions, or vendor-specific details
|
|
21260
|
+
*/
|
|
21261
|
+
get Comments(): string | null;
|
|
21262
|
+
set Comments(value: string | null);
|
|
21263
|
+
/**
|
|
21264
|
+
* * Field Name: __mj_CreatedAt
|
|
21265
|
+
* * Display Name: Created At
|
|
21266
|
+
* * SQL Data Type: datetimeoffset
|
|
21267
|
+
* * Default Value: getutcdate()
|
|
21268
|
+
*/
|
|
21269
|
+
get __mj_CreatedAt(): Date;
|
|
21270
|
+
/**
|
|
21271
|
+
* * Field Name: __mj_UpdatedAt
|
|
21272
|
+
* * Display Name: Updated At
|
|
21273
|
+
* * SQL Data Type: datetimeoffset
|
|
21274
|
+
* * Default Value: getutcdate()
|
|
21275
|
+
*/
|
|
21276
|
+
get __mj_UpdatedAt(): Date;
|
|
21277
|
+
/**
|
|
21278
|
+
* * Field Name: Model
|
|
21279
|
+
* * Display Name: Model
|
|
21280
|
+
* * SQL Data Type: nvarchar(50)
|
|
21281
|
+
*/
|
|
21282
|
+
get Model(): string;
|
|
21283
|
+
/**
|
|
21284
|
+
* * Field Name: Vendor
|
|
21285
|
+
* * Display Name: Vendor
|
|
21286
|
+
* * SQL Data Type: nvarchar(50)
|
|
21287
|
+
*/
|
|
21288
|
+
get Vendor(): string;
|
|
21289
|
+
/**
|
|
21290
|
+
* * Field Name: PriceType
|
|
21291
|
+
* * Display Name: Price Type
|
|
21292
|
+
* * SQL Data Type: nvarchar(100)
|
|
21293
|
+
*/
|
|
21294
|
+
get PriceType(): string;
|
|
21295
|
+
/**
|
|
21296
|
+
* * Field Name: UnitType
|
|
21297
|
+
* * Display Name: Unit Type
|
|
21298
|
+
* * SQL Data Type: nvarchar(100)
|
|
21299
|
+
*/
|
|
21300
|
+
get UnitType(): string;
|
|
21301
|
+
}
|
|
21302
|
+
/**
|
|
21303
|
+
* MJ: AI Model Price Types - strongly typed entity sub-class
|
|
21304
|
+
* * Schema: __mj
|
|
21305
|
+
* * Base Table: AIModelPriceType
|
|
21306
|
+
* * Base View: vwAIModelPriceTypes
|
|
21307
|
+
* * Primary Key: ID
|
|
21308
|
+
* @extends {BaseEntity}
|
|
21309
|
+
* @class
|
|
21310
|
+
* @public
|
|
21311
|
+
*/
|
|
21312
|
+
export declare class AIModelPriceTypeEntity extends BaseEntity<AIModelPriceTypeEntityType> {
|
|
21313
|
+
/**
|
|
21314
|
+
* Loads the MJ: AI Model Price Types record from the database
|
|
21315
|
+
* @param ID: string - primary key value to load the MJ: AI Model Price Types record.
|
|
21316
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
21317
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
21318
|
+
* @public
|
|
21319
|
+
* @async
|
|
21320
|
+
* @memberof AIModelPriceTypeEntity
|
|
21321
|
+
* @method
|
|
21322
|
+
* @override
|
|
21323
|
+
*/
|
|
21324
|
+
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
21325
|
+
/**
|
|
21326
|
+
* Validate() method override for MJ: AI Model Price Types entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
21327
|
+
* * Name: This rule ensures that the Name field cannot be empty or consist only of spaces; it must contain at least one non-space character.
|
|
21328
|
+
* @public
|
|
21329
|
+
* @method
|
|
21330
|
+
* @override
|
|
21331
|
+
*/
|
|
21332
|
+
Validate(): ValidationResult;
|
|
21333
|
+
/**
|
|
21334
|
+
* This rule ensures that the Name field cannot be empty or consist only of spaces; it must contain at least one non-space character.
|
|
21335
|
+
* @param result - the ValidationResult object to add any errors or warnings to
|
|
21336
|
+
* @public
|
|
21337
|
+
* @method
|
|
21338
|
+
*/
|
|
21339
|
+
ValidateNameNotEmptyOrWhitespace(result: ValidationResult): void;
|
|
21340
|
+
/**
|
|
21341
|
+
* * Field Name: ID
|
|
21342
|
+
* * Display Name: ID
|
|
21343
|
+
* * SQL Data Type: uniqueidentifier
|
|
21344
|
+
* * Default Value: newsequentialid()
|
|
21345
|
+
*/
|
|
21346
|
+
get ID(): string;
|
|
21347
|
+
set ID(value: string);
|
|
21348
|
+
/**
|
|
21349
|
+
* * Field Name: Name
|
|
21350
|
+
* * Display Name: Name
|
|
21351
|
+
* * SQL Data Type: nvarchar(100)
|
|
21352
|
+
* * Description: Short, descriptive name for the price type (e.g., "Tokens", "Minutes", "Characters")
|
|
21353
|
+
*/
|
|
21354
|
+
get Name(): string;
|
|
21355
|
+
set Name(value: string);
|
|
21356
|
+
/**
|
|
21357
|
+
* * Field Name: Description
|
|
21358
|
+
* * Display Name: Description
|
|
21359
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
21360
|
+
* * Description: Detailed description of what this price type represents and how it is measured
|
|
21361
|
+
*/
|
|
21362
|
+
get Description(): string | null;
|
|
21363
|
+
set Description(value: string | null);
|
|
21364
|
+
/**
|
|
21365
|
+
* * Field Name: __mj_CreatedAt
|
|
21366
|
+
* * Display Name: Created At
|
|
21367
|
+
* * SQL Data Type: datetimeoffset
|
|
21368
|
+
* * Default Value: getutcdate()
|
|
21369
|
+
*/
|
|
21370
|
+
get __mj_CreatedAt(): Date;
|
|
21371
|
+
/**
|
|
21372
|
+
* * Field Name: __mj_UpdatedAt
|
|
21373
|
+
* * Display Name: Updated At
|
|
21374
|
+
* * SQL Data Type: datetimeoffset
|
|
21375
|
+
* * Default Value: getutcdate()
|
|
21376
|
+
*/
|
|
21377
|
+
get __mj_UpdatedAt(): Date;
|
|
21378
|
+
}
|
|
21379
|
+
/**
|
|
21380
|
+
* MJ: AI Model Price Unit Types - strongly typed entity sub-class
|
|
21381
|
+
* * Schema: __mj
|
|
21382
|
+
* * Base Table: AIModelPriceUnitType
|
|
21383
|
+
* * Base View: vwAIModelPriceUnitTypes
|
|
21384
|
+
* * Primary Key: ID
|
|
21385
|
+
* @extends {BaseEntity}
|
|
21386
|
+
* @class
|
|
21387
|
+
* @public
|
|
21388
|
+
*/
|
|
21389
|
+
export declare class AIModelPriceUnitTypeEntity extends BaseEntity<AIModelPriceUnitTypeEntityType> {
|
|
21390
|
+
/**
|
|
21391
|
+
* Loads the MJ: AI Model Price Unit Types record from the database
|
|
21392
|
+
* @param ID: string - primary key value to load the MJ: AI Model Price Unit Types record.
|
|
21393
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
21394
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
21395
|
+
* @public
|
|
21396
|
+
* @async
|
|
21397
|
+
* @memberof AIModelPriceUnitTypeEntity
|
|
21398
|
+
* @method
|
|
21399
|
+
* @override
|
|
21400
|
+
*/
|
|
21401
|
+
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
21402
|
+
/**
|
|
21403
|
+
* Validate() method override for MJ: AI Model Price Unit Types entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
21404
|
+
* * Name: This rule ensures that the Name field cannot be empty or contain only spaces; it must have at least one non-space character.
|
|
21405
|
+
* * DriverClass: This rule ensures that the DriverClass field cannot be empty or consist only of spaces. The value must contain at least one character when leading and trailing spaces are ignored.
|
|
21406
|
+
* @public
|
|
21407
|
+
* @method
|
|
21408
|
+
* @override
|
|
21409
|
+
*/
|
|
21410
|
+
Validate(): ValidationResult;
|
|
21411
|
+
/**
|
|
21412
|
+
* This rule ensures that the Name field cannot be empty or contain only spaces; it must have at least one non-space character.
|
|
21413
|
+
* @param result - the ValidationResult object to add any errors or warnings to
|
|
21414
|
+
* @public
|
|
21415
|
+
* @method
|
|
21416
|
+
*/
|
|
21417
|
+
ValidateNameNotEmptyOrWhitespace(result: ValidationResult): void;
|
|
21418
|
+
/**
|
|
21419
|
+
* This rule ensures that the DriverClass field cannot be empty or consist only of spaces. The value must contain at least one character when leading and trailing spaces are ignored.
|
|
21420
|
+
* @param result - the ValidationResult object to add any errors or warnings to
|
|
21421
|
+
* @public
|
|
21422
|
+
* @method
|
|
21423
|
+
*/
|
|
21424
|
+
ValidateDriverClassNotEmpty(result: ValidationResult): void;
|
|
21425
|
+
/**
|
|
21426
|
+
* * Field Name: ID
|
|
21427
|
+
* * Display Name: ID
|
|
21428
|
+
* * SQL Data Type: uniqueidentifier
|
|
21429
|
+
* * Default Value: newsequentialid()
|
|
21430
|
+
*/
|
|
21431
|
+
get ID(): string;
|
|
21432
|
+
set ID(value: string);
|
|
21433
|
+
/**
|
|
21434
|
+
* * Field Name: Name
|
|
21435
|
+
* * Display Name: Name
|
|
21436
|
+
* * SQL Data Type: nvarchar(100)
|
|
21437
|
+
* * Description: Display name for the pricing unit (e.g., "Per 1M Tokens", "Per 1K Tokens", "Per Minute")
|
|
21438
|
+
*/
|
|
21439
|
+
get Name(): string;
|
|
21440
|
+
set Name(value: string);
|
|
21441
|
+
/**
|
|
21442
|
+
* * Field Name: Description
|
|
21443
|
+
* * Display Name: Description
|
|
21444
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
21445
|
+
* * Description: Detailed explanation of the unit scale and any special considerations for this pricing unit
|
|
21446
|
+
*/
|
|
21447
|
+
get Description(): string | null;
|
|
21448
|
+
set Description(value: string | null);
|
|
21449
|
+
/**
|
|
21450
|
+
* * Field Name: DriverClass
|
|
21451
|
+
* * Display Name: Driver Class
|
|
21452
|
+
* * SQL Data Type: nvarchar(255)
|
|
21453
|
+
* * Description: Fully qualified class name that handles cost calculations and unit normalization for this pricing unit (e.g., "TokenPer1M", "TokenPer1K")
|
|
21454
|
+
*/
|
|
21455
|
+
get DriverClass(): string;
|
|
21456
|
+
set DriverClass(value: string);
|
|
21457
|
+
/**
|
|
21458
|
+
* * Field Name: __mj_CreatedAt
|
|
21459
|
+
* * Display Name: Created At
|
|
21460
|
+
* * SQL Data Type: datetimeoffset
|
|
21461
|
+
* * Default Value: getutcdate()
|
|
21462
|
+
*/
|
|
21463
|
+
get __mj_CreatedAt(): Date;
|
|
21464
|
+
/**
|
|
21465
|
+
* * Field Name: __mj_UpdatedAt
|
|
21466
|
+
* * Display Name: Updated At
|
|
21467
|
+
* * SQL Data Type: datetimeoffset
|
|
21468
|
+
* * Default Value: getutcdate()
|
|
21469
|
+
*/
|
|
21470
|
+
get __mj_UpdatedAt(): Date;
|
|
21471
|
+
}
|
|
21472
|
+
/**
|
|
21473
|
+
* MJ: AI Model Vendors - strongly typed entity sub-class
|
|
21474
|
+
* * Schema: __mj
|
|
21475
|
+
* * Base Table: AIModelVendor
|
|
21476
|
+
* * Base View: vwAIModelVendors
|
|
21477
|
+
* * Primary Key: ID
|
|
21478
|
+
* @extends {BaseEntity}
|
|
21479
|
+
* @class
|
|
21480
|
+
* @public
|
|
21481
|
+
*/
|
|
21482
|
+
export declare class AIModelVendorEntity extends BaseEntity<AIModelVendorEntityType> {
|
|
21483
|
+
/**
|
|
21484
|
+
* Loads the MJ: AI Model Vendors record from the database
|
|
21485
|
+
* @param ID: string - primary key value to load the MJ: AI Model Vendors record.
|
|
21486
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
21487
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
21488
|
+
* @public
|
|
21489
|
+
* @async
|
|
21490
|
+
* @memberof AIModelVendorEntity
|
|
21491
|
+
* @method
|
|
21492
|
+
* @override
|
|
21493
|
+
*/
|
|
21494
|
+
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
21495
|
+
/**
|
|
21496
|
+
* Validate() method override for MJ: AI Model Vendors entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
21497
|
+
* * Priority: This rule ensures that the Priority value cannot be negative. It must be zero or greater.
|
|
21498
|
+
* * MaxInputTokens: This rule ensures that if the MaxInputTokens field is specified, it must be zero or a positive number. It cannot be negative.
|
|
20752
21499
|
* * MaxOutputTokens: This rule ensures that the maximum output tokens value must be zero or higher. If no value is provided, that's also acceptable.
|
|
20753
21500
|
* @public
|
|
20754
21501
|
* @method
|
|
@@ -20783,6 +21530,7 @@ export declare class AIModelVendorEntity extends BaseEntity<AIModelVendorEntityT
|
|
|
20783
21530
|
* * Default Value: newsequentialid()
|
|
20784
21531
|
*/
|
|
20785
21532
|
get ID(): string;
|
|
21533
|
+
set ID(value: string);
|
|
20786
21534
|
/**
|
|
20787
21535
|
* * Field Name: ModelID
|
|
20788
21536
|
* * Display Name: Model ID
|
|
@@ -20957,9 +21705,9 @@ export declare class AIPromptModelEntity extends BaseEntity<AIPromptModelEntityT
|
|
|
20957
21705
|
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
20958
21706
|
/**
|
|
20959
21707
|
* Validate() method override for MJ: AI Prompt Models entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
20960
|
-
* * ParallelCount: This rule ensures that the number of parallel tasks (ParallelCount) must be at least 1. It cannot be zero or negative.
|
|
20961
21708
|
* * Priority: This rule ensures that the Priority value must be greater than or equal to zero. Negative priorities are not allowed.
|
|
20962
21709
|
* * ExecutionGroup: This rule ensures that the ExecutionGroup value must be zero or a positive number. Negative numbers are not allowed.
|
|
21710
|
+
* * ParallelCount: This rule ensures that the number of parallel tasks (ParallelCount) must be at least 1. It cannot be zero or negative.
|
|
20963
21711
|
* * Table-Level: This rule ensures that if the parallelization mode is 'None' or 'StaticCount', then the parallel config parameter must be empty. If the parallelization mode is 'ConfigParam', then the parallel config parameter must be provided.
|
|
20964
21712
|
* @public
|
|
20965
21713
|
* @method
|
|
@@ -20967,26 +21715,26 @@ export declare class AIPromptModelEntity extends BaseEntity<AIPromptModelEntityT
|
|
|
20967
21715
|
*/
|
|
20968
21716
|
Validate(): ValidationResult;
|
|
20969
21717
|
/**
|
|
20970
|
-
* This rule ensures that the
|
|
21718
|
+
* This rule ensures that the Priority value must be greater than or equal to zero. Negative priorities are not allowed.
|
|
20971
21719
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
20972
21720
|
* @public
|
|
20973
21721
|
* @method
|
|
20974
21722
|
*/
|
|
20975
|
-
|
|
21723
|
+
ValidatePriorityIsNonNegative(result: ValidationResult): void;
|
|
20976
21724
|
/**
|
|
20977
|
-
* This rule ensures that the
|
|
21725
|
+
* This rule ensures that the ExecutionGroup value must be zero or a positive number. Negative numbers are not allowed.
|
|
20978
21726
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
20979
21727
|
* @public
|
|
20980
21728
|
* @method
|
|
20981
21729
|
*/
|
|
20982
|
-
|
|
21730
|
+
ValidateExecutionGroupIsNonNegative(result: ValidationResult): void;
|
|
20983
21731
|
/**
|
|
20984
|
-
* This rule ensures that the
|
|
21732
|
+
* This rule ensures that the number of parallel tasks (ParallelCount) must be at least 1. It cannot be zero or negative.
|
|
20985
21733
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
20986
21734
|
* @public
|
|
20987
21735
|
* @method
|
|
20988
21736
|
*/
|
|
20989
|
-
|
|
21737
|
+
ValidateParallelCountAtLeastOne(result: ValidationResult): void;
|
|
20990
21738
|
/**
|
|
20991
21739
|
* This rule ensures that if the parallelization mode is 'None' or 'StaticCount', then the parallel config parameter must be empty. If the parallelization mode is 'ConfigParam', then the parallel config parameter must be provided.
|
|
20992
21740
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
@@ -21001,6 +21749,7 @@ export declare class AIPromptModelEntity extends BaseEntity<AIPromptModelEntityT
|
|
|
21001
21749
|
* * Default Value: newsequentialid()
|
|
21002
21750
|
*/
|
|
21003
21751
|
get ID(): string;
|
|
21752
|
+
set ID(value: string);
|
|
21004
21753
|
/**
|
|
21005
21754
|
* * Field Name: PromptID
|
|
21006
21755
|
* * Display Name: Prompt ID
|
|
@@ -21201,6 +21950,7 @@ export declare class AIPromptRunEntity extends BaseEntity<AIPromptRunEntityType>
|
|
|
21201
21950
|
* * Default Value: newsequentialid()
|
|
21202
21951
|
*/
|
|
21203
21952
|
get ID(): string;
|
|
21953
|
+
set ID(value: string);
|
|
21204
21954
|
/**
|
|
21205
21955
|
* * Field Name: PromptID
|
|
21206
21956
|
* * Display Name: Prompt ID
|
|
@@ -21315,7 +22065,7 @@ export declare class AIPromptRunEntity extends BaseEntity<AIPromptRunEntityType>
|
|
|
21315
22065
|
* * Field Name: TotalCost
|
|
21316
22066
|
* * Display Name: Total Cost
|
|
21317
22067
|
* * SQL Data Type: decimal(18, 6)
|
|
21318
|
-
* * Description:
|
|
22068
|
+
* * Description: Total cost including this execution and all child/grandchild executions. For leaf nodes (no children), this equals Cost. For parent nodes, this includes the sum of all descendant costs. Note: This assumes all costs are in the same currency for accurate rollup. Currency conversions should be handled at the application layer if needed.
|
|
21319
22069
|
*/
|
|
21320
22070
|
get TotalCost(): number | null;
|
|
21321
22071
|
set TotalCost(value: number | null);
|
|
@@ -21392,6 +22142,46 @@ export declare class AIPromptRunEntity extends BaseEntity<AIPromptRunEntityType>
|
|
|
21392
22142
|
get AgentRunID(): string | null;
|
|
21393
22143
|
set AgentRunID(value: string | null);
|
|
21394
22144
|
/**
|
|
22145
|
+
* * Field Name: Cost
|
|
22146
|
+
* * Display Name: Cost
|
|
22147
|
+
* * SQL Data Type: decimal(19, 8)
|
|
22148
|
+
* * Description: The cost of this specific prompt execution as reported by the AI provider. This does not include costs from child executions. The currency is specified in CostCurrency field.
|
|
22149
|
+
*/
|
|
22150
|
+
get Cost(): number | null;
|
|
22151
|
+
set Cost(value: number | null);
|
|
22152
|
+
/**
|
|
22153
|
+
* * Field Name: CostCurrency
|
|
22154
|
+
* * Display Name: Cost Currency
|
|
22155
|
+
* * SQL Data Type: nvarchar(10)
|
|
22156
|
+
* * Description: ISO 4217 currency code for the Cost field (e.g., USD, EUR, GBP). Different AI providers may use different currencies.
|
|
22157
|
+
*/
|
|
22158
|
+
get CostCurrency(): string | null;
|
|
22159
|
+
set CostCurrency(value: string | null);
|
|
22160
|
+
/**
|
|
22161
|
+
* * Field Name: TokensUsedRollup
|
|
22162
|
+
* * Display Name: Tokens Used Rollup
|
|
22163
|
+
* * SQL Data Type: int
|
|
22164
|
+
* * Description: Total tokens used including this execution and all child/grandchild executions. This provides a complete view of token usage for hierarchical prompt trees. Calculated as TokensPromptRollup + TokensCompletionRollup.
|
|
22165
|
+
*/
|
|
22166
|
+
get TokensUsedRollup(): number | null;
|
|
22167
|
+
set TokensUsedRollup(value: number | null);
|
|
22168
|
+
/**
|
|
22169
|
+
* * Field Name: TokensPromptRollup
|
|
22170
|
+
* * Display Name: Tokens Prompt Rollup
|
|
22171
|
+
* * SQL Data Type: int
|
|
22172
|
+
* * Description: Total prompt/input tokens including this execution and all child/grandchild executions. For leaf nodes (no children), this equals TokensPrompt. For parent nodes, this includes the sum of all descendant prompt tokens.
|
|
22173
|
+
*/
|
|
22174
|
+
get TokensPromptRollup(): number | null;
|
|
22175
|
+
set TokensPromptRollup(value: number | null);
|
|
22176
|
+
/**
|
|
22177
|
+
* * Field Name: TokensCompletionRollup
|
|
22178
|
+
* * Display Name: Tokens Completion Rollup
|
|
22179
|
+
* * SQL Data Type: int
|
|
22180
|
+
* * Description: Total completion/output tokens including this execution and all child/grandchild executions. For leaf nodes (no children), this equals TokensCompletion. For parent nodes, this includes the sum of all descendant completion tokens.
|
|
22181
|
+
*/
|
|
22182
|
+
get TokensCompletionRollup(): number | null;
|
|
22183
|
+
set TokensCompletionRollup(value: number | null);
|
|
22184
|
+
/**
|
|
21395
22185
|
* * Field Name: Prompt
|
|
21396
22186
|
* * Display Name: Prompt
|
|
21397
22187
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -21451,6 +22241,7 @@ export declare class AIVendorTypeDefinitionEntity extends BaseEntity<AIVendorTyp
|
|
|
21451
22241
|
* * SQL Data Type: uniqueidentifier
|
|
21452
22242
|
*/
|
|
21453
22243
|
get ID(): string;
|
|
22244
|
+
set ID(value: string);
|
|
21454
22245
|
/**
|
|
21455
22246
|
* * Field Name: Name
|
|
21456
22247
|
* * Display Name: Name
|
|
@@ -21527,6 +22318,7 @@ export declare class AIVendorTypeEntity extends BaseEntity<AIVendorTypeEntityTyp
|
|
|
21527
22318
|
* * Default Value: newsequentialid()
|
|
21528
22319
|
*/
|
|
21529
22320
|
get ID(): string;
|
|
22321
|
+
set ID(value: string);
|
|
21530
22322
|
/**
|
|
21531
22323
|
* * Field Name: VendorID
|
|
21532
22324
|
* * Display Name: Vendor ID
|
|
@@ -21624,6 +22416,7 @@ export declare class AIVendorEntity extends BaseEntity<AIVendorEntityType> {
|
|
|
21624
22416
|
* * Default Value: newsequentialid()
|
|
21625
22417
|
*/
|
|
21626
22418
|
get ID(): string;
|
|
22419
|
+
set ID(value: string);
|
|
21627
22420
|
/**
|
|
21628
22421
|
* * Field Name: Name
|
|
21629
22422
|
* * Display Name: Name
|
|
@@ -21684,6 +22477,7 @@ export declare class ArtifactTypeEntity extends BaseEntity<ArtifactTypeEntityTyp
|
|
|
21684
22477
|
* * SQL Data Type: uniqueidentifier
|
|
21685
22478
|
*/
|
|
21686
22479
|
get ID(): string;
|
|
22480
|
+
set ID(value: string);
|
|
21687
22481
|
/**
|
|
21688
22482
|
* * Field Name: Name
|
|
21689
22483
|
* * Display Name: Name
|
|
@@ -21762,6 +22556,7 @@ export declare class ConversationArtifactPermissionEntity extends BaseEntity<Con
|
|
|
21762
22556
|
* * Default Value: newsequentialid()
|
|
21763
22557
|
*/
|
|
21764
22558
|
get ID(): string;
|
|
22559
|
+
set ID(value: string);
|
|
21765
22560
|
/**
|
|
21766
22561
|
* * Field Name: ConversationArtifactID
|
|
21767
22562
|
* * Display Name: Conversation Artifact ID
|
|
@@ -21858,6 +22653,7 @@ export declare class ConversationArtifactVersionEntity extends BaseEntity<Conver
|
|
|
21858
22653
|
* * Default Value: newsequentialid()
|
|
21859
22654
|
*/
|
|
21860
22655
|
get ID(): string;
|
|
22656
|
+
set ID(value: string);
|
|
21861
22657
|
/**
|
|
21862
22658
|
* * Field Name: ConversationArtifactID
|
|
21863
22659
|
* * Display Name: Conversation Artifact ID
|
|
@@ -21950,6 +22746,7 @@ export declare class ConversationArtifactEntity extends BaseEntity<ConversationA
|
|
|
21950
22746
|
* * Default Value: newsequentialid()
|
|
21951
22747
|
*/
|
|
21952
22748
|
get ID(): string;
|
|
22749
|
+
set ID(value: string);
|
|
21953
22750
|
/**
|
|
21954
22751
|
* * Field Name: Name
|
|
21955
22752
|
* * Display Name: Name
|
|
@@ -22078,6 +22875,7 @@ export declare class DashboardUserPreferenceEntity extends BaseEntity<DashboardU
|
|
|
22078
22875
|
* * Default Value: newsequentialid()
|
|
22079
22876
|
*/
|
|
22080
22877
|
get ID(): string;
|
|
22878
|
+
set ID(value: string);
|
|
22081
22879
|
/**
|
|
22082
22880
|
* * Field Name: UserID
|
|
22083
22881
|
* * Display Name: User ID
|
|
@@ -22188,6 +22986,7 @@ export declare class DashboardUserStateEntity extends BaseEntity<DashboardUserSt
|
|
|
22188
22986
|
* * Default Value: newsequentialid()
|
|
22189
22987
|
*/
|
|
22190
22988
|
get ID(): string;
|
|
22989
|
+
set ID(value: string);
|
|
22191
22990
|
/**
|
|
22192
22991
|
* * Field Name: DashboardID
|
|
22193
22992
|
* * Display Name: Dashboard ID
|
|
@@ -22271,6 +23070,7 @@ export declare class ReportUserStateEntity extends BaseEntity<ReportUserStateEnt
|
|
|
22271
23070
|
* * Default Value: newsequentialid()
|
|
22272
23071
|
*/
|
|
22273
23072
|
get ID(): string;
|
|
23073
|
+
set ID(value: string);
|
|
22274
23074
|
/**
|
|
22275
23075
|
* * Field Name: ReportID
|
|
22276
23076
|
* * Display Name: Report ID
|
|
@@ -22367,6 +23167,7 @@ export declare class ReportVersionEntity extends BaseEntity<ReportVersionEntityT
|
|
|
22367
23167
|
* * Default Value: newsequentialid()
|
|
22368
23168
|
*/
|
|
22369
23169
|
get ID(): string;
|
|
23170
|
+
set ID(value: string);
|
|
22370
23171
|
/**
|
|
22371
23172
|
* * Field Name: ReportID
|
|
22372
23173
|
* * Display Name: Report ID
|
|
@@ -22485,6 +23286,7 @@ export declare class OutputDeliveryTypeEntity extends BaseEntity<OutputDeliveryT
|
|
|
22485
23286
|
* * Default Value: newsequentialid()
|
|
22486
23287
|
*/
|
|
22487
23288
|
get ID(): string;
|
|
23289
|
+
set ID(value: string);
|
|
22488
23290
|
/**
|
|
22489
23291
|
* * Field Name: Name
|
|
22490
23292
|
* * Display Name: Name
|
|
@@ -22562,6 +23364,7 @@ export declare class OutputFormatTypeEntity extends BaseEntity<OutputFormatTypeE
|
|
|
22562
23364
|
* * Default Value: newsequentialid()
|
|
22563
23365
|
*/
|
|
22564
23366
|
get ID(): string;
|
|
23367
|
+
set ID(value: string);
|
|
22565
23368
|
/**
|
|
22566
23369
|
* * Field Name: Name
|
|
22567
23370
|
* * Display Name: Name
|
|
@@ -22646,6 +23449,7 @@ export declare class OutputTriggerTypeEntity extends BaseEntity<OutputTriggerTyp
|
|
|
22646
23449
|
* * Default Value: newsequentialid()
|
|
22647
23450
|
*/
|
|
22648
23451
|
get ID(): string;
|
|
23452
|
+
set ID(value: string);
|
|
22649
23453
|
/**
|
|
22650
23454
|
* * Field Name: Name
|
|
22651
23455
|
* * Display Name: Name
|
|
@@ -22706,6 +23510,7 @@ export declare class QueryEntity extends BaseEntity<QueryEntityType> {
|
|
|
22706
23510
|
* * Default Value: newsequentialid()
|
|
22707
23511
|
*/
|
|
22708
23512
|
get ID(): string;
|
|
23513
|
+
set ID(value: string);
|
|
22709
23514
|
/**
|
|
22710
23515
|
* * Field Name: Name
|
|
22711
23516
|
* * Display Name: Name
|
|
@@ -22845,6 +23650,7 @@ export declare class QueryCategoryEntity extends BaseEntity<QueryCategoryEntityT
|
|
|
22845
23650
|
* * Default Value: newsequentialid()
|
|
22846
23651
|
*/
|
|
22847
23652
|
get ID(): string;
|
|
23653
|
+
set ID(value: string);
|
|
22848
23654
|
/**
|
|
22849
23655
|
* * Field Name: Name
|
|
22850
23656
|
* * Display Name: Name
|
|
@@ -22934,6 +23740,7 @@ export declare class QueryEntityEntity extends BaseEntity<QueryEntityEntityType>
|
|
|
22934
23740
|
* * Description: Unique identifier for the QueryEntity record.
|
|
22935
23741
|
*/
|
|
22936
23742
|
get ID(): string;
|
|
23743
|
+
set ID(value: string);
|
|
22937
23744
|
/**
|
|
22938
23745
|
* * Field Name: QueryID
|
|
22939
23746
|
* * Display Name: Query ID
|
|
@@ -23009,6 +23816,7 @@ export declare class QueryFieldEntity extends BaseEntity<QueryFieldEntityType> {
|
|
|
23009
23816
|
* * Default Value: newsequentialid()
|
|
23010
23817
|
*/
|
|
23011
23818
|
get ID(): string;
|
|
23819
|
+
set ID(value: string);
|
|
23012
23820
|
/**
|
|
23013
23821
|
* * Field Name: QueryID
|
|
23014
23822
|
* * Display Name: Query ID
|
|
@@ -23156,6 +23964,7 @@ export declare class QueryPermissionEntity extends BaseEntity<QueryPermissionEnt
|
|
|
23156
23964
|
* * Default Value: newsequentialid()
|
|
23157
23965
|
*/
|
|
23158
23966
|
get ID(): string;
|
|
23967
|
+
set ID(value: string);
|
|
23159
23968
|
/**
|
|
23160
23969
|
* * Field Name: QueryID
|
|
23161
23970
|
* * Display Name: Query ID
|
|
@@ -23238,6 +24047,7 @@ export declare class QueueTaskEntity extends BaseEntity<QueueTaskEntityType> {
|
|
|
23238
24047
|
* * Default Value: newsequentialid()
|
|
23239
24048
|
*/
|
|
23240
24049
|
get ID(): string;
|
|
24050
|
+
set ID(value: string);
|
|
23241
24051
|
/**
|
|
23242
24052
|
* * Field Name: QueueID
|
|
23243
24053
|
* * Display Name: Queue ID
|
|
@@ -23368,6 +24178,7 @@ export declare class QueueTypeEntity extends BaseEntity<QueueTypeEntityType> {
|
|
|
23368
24178
|
* * Default Value: newsequentialid()
|
|
23369
24179
|
*/
|
|
23370
24180
|
get ID(): string;
|
|
24181
|
+
set ID(value: string);
|
|
23371
24182
|
/**
|
|
23372
24183
|
* * Field Name: Name
|
|
23373
24184
|
* * Display Name: Name
|
|
@@ -23459,6 +24270,7 @@ export declare class QueueEntity extends BaseEntity<QueueEntityType> {
|
|
|
23459
24270
|
* * Default Value: newsequentialid()
|
|
23460
24271
|
*/
|
|
23461
24272
|
get ID(): string;
|
|
24273
|
+
set ID(value: string);
|
|
23462
24274
|
/**
|
|
23463
24275
|
* * Field Name: Name
|
|
23464
24276
|
* * Display Name: Name
|
|
@@ -23650,6 +24462,7 @@ export declare class RecommendationItemEntity extends BaseEntity<RecommendationI
|
|
|
23650
24462
|
* * Default Value: newsequentialid()
|
|
23651
24463
|
*/
|
|
23652
24464
|
get ID(): string;
|
|
24465
|
+
set ID(value: string);
|
|
23653
24466
|
/**
|
|
23654
24467
|
* * Field Name: RecommendationID
|
|
23655
24468
|
* * Display Name: Recommendation ID
|
|
@@ -23734,6 +24547,7 @@ export declare class RecommendationProviderEntity extends BaseEntity<Recommendat
|
|
|
23734
24547
|
* * Default Value: newsequentialid()
|
|
23735
24548
|
*/
|
|
23736
24549
|
get ID(): string;
|
|
24550
|
+
set ID(value: string);
|
|
23737
24551
|
/**
|
|
23738
24552
|
* * Field Name: Name
|
|
23739
24553
|
* * Display Name: Name
|
|
@@ -23803,6 +24617,7 @@ export declare class RecommendationRunEntity extends BaseEntity<RecommendationRu
|
|
|
23803
24617
|
* * Default Value: newsequentialid()
|
|
23804
24618
|
*/
|
|
23805
24619
|
get ID(): string;
|
|
24620
|
+
set ID(value: string);
|
|
23806
24621
|
/**
|
|
23807
24622
|
* * Field Name: RecommendationProviderID
|
|
23808
24623
|
* * Display Name: Recommendation Provider ID
|
|
@@ -23924,6 +24739,7 @@ export declare class RecommendationEntity extends BaseEntity<RecommendationEntit
|
|
|
23924
24739
|
* * Default Value: newsequentialid()
|
|
23925
24740
|
*/
|
|
23926
24741
|
get ID(): string;
|
|
24742
|
+
set ID(value: string);
|
|
23927
24743
|
/**
|
|
23928
24744
|
* * Field Name: RecommendationRunID
|
|
23929
24745
|
* * Display Name: Recommendation Run ID
|
|
@@ -24009,6 +24825,7 @@ export declare class RecordChangeReplayRunEntity extends BaseEntity<RecordChange
|
|
|
24009
24825
|
* * Default Value: newsequentialid()
|
|
24010
24826
|
*/
|
|
24011
24827
|
get ID(): string;
|
|
24828
|
+
set ID(value: string);
|
|
24012
24829
|
/**
|
|
24013
24830
|
* * Field Name: StartedAt
|
|
24014
24831
|
* * Display Name: Started At
|
|
@@ -24107,6 +24924,7 @@ export declare class RecordChangeEntity extends BaseEntity<RecordChangeEntityTyp
|
|
|
24107
24924
|
* * Default Value: newsequentialid()
|
|
24108
24925
|
*/
|
|
24109
24926
|
get ID(): string;
|
|
24927
|
+
set ID(value: string);
|
|
24110
24928
|
/**
|
|
24111
24929
|
* * Field Name: EntityID
|
|
24112
24930
|
* * Display Name: Entity ID
|
|
@@ -24304,6 +25122,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
|
|
|
24304
25122
|
* * Default Value: newsequentialid()
|
|
24305
25123
|
*/
|
|
24306
25124
|
get ID(): string;
|
|
25125
|
+
set ID(value: string);
|
|
24307
25126
|
/**
|
|
24308
25127
|
* * Field Name: RecordMergeLogID
|
|
24309
25128
|
* * Display Name: Record Merge Log ID
|
|
@@ -24393,6 +25212,7 @@ export declare class RecordMergeLogEntity extends BaseEntity<RecordMergeLogEntit
|
|
|
24393
25212
|
* * Default Value: newsequentialid()
|
|
24394
25213
|
*/
|
|
24395
25214
|
get ID(): string;
|
|
25215
|
+
set ID(value: string);
|
|
24396
25216
|
/**
|
|
24397
25217
|
* * Field Name: EntityID
|
|
24398
25218
|
* * Display Name: Entity ID
|
|
@@ -24542,6 +25362,7 @@ export declare class ReportCategoryEntity extends BaseEntity<ReportCategoryEntit
|
|
|
24542
25362
|
* * Default Value: newsequentialid()
|
|
24543
25363
|
*/
|
|
24544
25364
|
get ID(): string;
|
|
25365
|
+
set ID(value: string);
|
|
24545
25366
|
/**
|
|
24546
25367
|
* * Field Name: Name
|
|
24547
25368
|
* * Display Name: Name
|
|
@@ -24629,6 +25450,7 @@ export declare class ReportSnapshotEntity extends BaseEntity<ReportSnapshotEntit
|
|
|
24629
25450
|
* * Default Value: newsequentialid()
|
|
24630
25451
|
*/
|
|
24631
25452
|
get ID(): string;
|
|
25453
|
+
set ID(value: string);
|
|
24632
25454
|
/**
|
|
24633
25455
|
* * Field Name: ReportID
|
|
24634
25456
|
* * Display Name: Report ID
|
|
@@ -24709,6 +25531,7 @@ export declare class ReportEntity extends BaseEntity<ReportEntityType> {
|
|
|
24709
25531
|
* * Default Value: newsequentialid()
|
|
24710
25532
|
*/
|
|
24711
25533
|
get ID(): string;
|
|
25534
|
+
set ID(value: string);
|
|
24712
25535
|
/**
|
|
24713
25536
|
* * Field Name: Name
|
|
24714
25537
|
* * Display Name: Name
|
|
@@ -24932,6 +25755,7 @@ export declare class ResourceLinkEntity extends BaseEntity<ResourceLinkEntityTyp
|
|
|
24932
25755
|
* * Description: Unique identifier for each resource link
|
|
24933
25756
|
*/
|
|
24934
25757
|
get ID(): string;
|
|
25758
|
+
set ID(value: string);
|
|
24935
25759
|
/**
|
|
24936
25760
|
* * Field Name: UserID
|
|
24937
25761
|
* * Display Name: User ID
|
|
@@ -25039,6 +25863,7 @@ export declare class ResourcePermissionEntity extends BaseEntity<ResourcePermiss
|
|
|
25039
25863
|
* * Default Value: newsequentialid()
|
|
25040
25864
|
*/
|
|
25041
25865
|
get ID(): string;
|
|
25866
|
+
set ID(value: string);
|
|
25042
25867
|
/**
|
|
25043
25868
|
* * Field Name: ResourceTypeID
|
|
25044
25869
|
* * Display Name: Resource Type ID
|
|
@@ -25209,6 +26034,7 @@ export declare class ResourceTypeEntity extends BaseEntity<ResourceTypeEntityTyp
|
|
|
25209
26034
|
* * Default Value: newsequentialid()
|
|
25210
26035
|
*/
|
|
25211
26036
|
get ID(): string;
|
|
26037
|
+
set ID(value: string);
|
|
25212
26038
|
/**
|
|
25213
26039
|
* * Field Name: Name
|
|
25214
26040
|
* * Display Name: Name
|
|
@@ -25311,6 +26137,7 @@ export declare class RoleEntity extends BaseEntity<RoleEntityType> {
|
|
|
25311
26137
|
* * Default Value: newsequentialid()
|
|
25312
26138
|
*/
|
|
25313
26139
|
get ID(): string;
|
|
26140
|
+
set ID(value: string);
|
|
25314
26141
|
/**
|
|
25315
26142
|
* * Field Name: Name
|
|
25316
26143
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -25393,6 +26220,7 @@ export declare class RowLevelSecurityFilterEntity extends BaseEntity<RowLevelSec
|
|
|
25393
26220
|
* * Default Value: newsequentialid()
|
|
25394
26221
|
*/
|
|
25395
26222
|
get ID(): string;
|
|
26223
|
+
set ID(value: string);
|
|
25396
26224
|
/**
|
|
25397
26225
|
* * Field Name: Name
|
|
25398
26226
|
* * Display Name: Name
|
|
@@ -25459,6 +26287,7 @@ export declare class ScheduledActionParamEntity extends BaseEntity<ScheduledActi
|
|
|
25459
26287
|
* * Default Value: newsequentialid()
|
|
25460
26288
|
*/
|
|
25461
26289
|
get ID(): string;
|
|
26290
|
+
set ID(value: string);
|
|
25462
26291
|
/**
|
|
25463
26292
|
* * Field Name: ScheduledActionID
|
|
25464
26293
|
* * Display Name: Scheduled Action ID
|
|
@@ -25558,6 +26387,7 @@ export declare class ScheduledActionEntity extends BaseEntity<ScheduledActionEnt
|
|
|
25558
26387
|
* * Default Value: newsequentialid()
|
|
25559
26388
|
*/
|
|
25560
26389
|
get ID(): string;
|
|
26390
|
+
set ID(value: string);
|
|
25561
26391
|
/**
|
|
25562
26392
|
* * Field Name: Name
|
|
25563
26393
|
* * Display Name: Name
|
|
@@ -25763,6 +26593,7 @@ export declare class SchemaInfoEntity extends BaseEntity<SchemaInfoEntityType> {
|
|
|
25763
26593
|
* * Default Value: newsequentialid()
|
|
25764
26594
|
*/
|
|
25765
26595
|
get ID(): string;
|
|
26596
|
+
set ID(value: string);
|
|
25766
26597
|
/**
|
|
25767
26598
|
* * Field Name: SchemaName
|
|
25768
26599
|
* * Display Name: Schema Name
|
|
@@ -25845,6 +26676,7 @@ export declare class SkillEntity extends BaseEntity<SkillEntityType> {
|
|
|
25845
26676
|
* * Default Value: newsequentialid()
|
|
25846
26677
|
*/
|
|
25847
26678
|
get ID(): string;
|
|
26679
|
+
set ID(value: string);
|
|
25848
26680
|
/**
|
|
25849
26681
|
* * Field Name: Name
|
|
25850
26682
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -25920,6 +26752,7 @@ export declare class TaggedItemEntity extends BaseEntity<TaggedItemEntityType> {
|
|
|
25920
26752
|
* * Default Value: newsequentialid()
|
|
25921
26753
|
*/
|
|
25922
26754
|
get ID(): string;
|
|
26755
|
+
set ID(value: string);
|
|
25923
26756
|
/**
|
|
25924
26757
|
* * Field Name: TagID
|
|
25925
26758
|
* * Display Name: Tag ID
|
|
@@ -26010,6 +26843,7 @@ export declare class TagEntity extends BaseEntity<TagEntityType> {
|
|
|
26010
26843
|
* * Default Value: newsequentialid()
|
|
26011
26844
|
*/
|
|
26012
26845
|
get ID(): string;
|
|
26846
|
+
set ID(value: string);
|
|
26013
26847
|
/**
|
|
26014
26848
|
* * Field Name: Name
|
|
26015
26849
|
* * Display Name: Name
|
|
@@ -26091,6 +26925,7 @@ export declare class TemplateCategoryEntity extends BaseEntity<TemplateCategoryE
|
|
|
26091
26925
|
* * Default Value: newsequentialid()
|
|
26092
26926
|
*/
|
|
26093
26927
|
get ID(): string;
|
|
26928
|
+
set ID(value: string);
|
|
26094
26929
|
/**
|
|
26095
26930
|
* * Field Name: Name
|
|
26096
26931
|
* * Display Name: Name
|
|
@@ -26181,6 +27016,7 @@ export declare class TemplateContentTypeEntity extends BaseEntity<TemplateConten
|
|
|
26181
27016
|
* * Default Value: newsequentialid()
|
|
26182
27017
|
*/
|
|
26183
27018
|
get ID(): string;
|
|
27019
|
+
set ID(value: string);
|
|
26184
27020
|
/**
|
|
26185
27021
|
* * Field Name: Name
|
|
26186
27022
|
* * Display Name: Name
|
|
@@ -26262,6 +27098,7 @@ export declare class TemplateContentEntity extends BaseEntity<TemplateContentEnt
|
|
|
26262
27098
|
* * Default Value: newsequentialid()
|
|
26263
27099
|
*/
|
|
26264
27100
|
get ID(): string;
|
|
27101
|
+
set ID(value: string);
|
|
26265
27102
|
/**
|
|
26266
27103
|
* * Field Name: TemplateID
|
|
26267
27104
|
* * Display Name: Template ID
|
|
@@ -26361,6 +27198,7 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
|
|
|
26361
27198
|
* * Default Value: newsequentialid()
|
|
26362
27199
|
*/
|
|
26363
27200
|
get ID(): string;
|
|
27201
|
+
set ID(value: string);
|
|
26364
27202
|
/**
|
|
26365
27203
|
* * Field Name: TemplateID
|
|
26366
27204
|
* * Display Name: Template ID
|
|
@@ -26523,6 +27361,7 @@ export declare class TemplateEntity extends BaseEntity<TemplateEntityType> {
|
|
|
26523
27361
|
* * Default Value: newsequentialid()
|
|
26524
27362
|
*/
|
|
26525
27363
|
get ID(): string;
|
|
27364
|
+
set ID(value: string);
|
|
26526
27365
|
/**
|
|
26527
27366
|
* * Field Name: Name
|
|
26528
27367
|
* * Display Name: Name
|
|
@@ -26644,6 +27483,7 @@ export declare class UserApplicationEntityEntity extends BaseEntity<UserApplicat
|
|
|
26644
27483
|
* * Default Value: newsequentialid()
|
|
26645
27484
|
*/
|
|
26646
27485
|
get ID(): string;
|
|
27486
|
+
set ID(value: string);
|
|
26647
27487
|
/**
|
|
26648
27488
|
* * Field Name: UserApplicationID
|
|
26649
27489
|
* * Display Name: UserApplication ID
|
|
@@ -26729,6 +27569,7 @@ export declare class UserApplicationEntity extends BaseEntity<UserApplicationEnt
|
|
|
26729
27569
|
* * Default Value: newsequentialid()
|
|
26730
27570
|
*/
|
|
26731
27571
|
get ID(): string;
|
|
27572
|
+
set ID(value: string);
|
|
26732
27573
|
/**
|
|
26733
27574
|
* * Field Name: UserID
|
|
26734
27575
|
* * Display Name: User ID
|
|
@@ -26817,6 +27658,7 @@ export declare class UserFavoriteEntity extends BaseEntity<UserFavoriteEntityTyp
|
|
|
26817
27658
|
* * Default Value: newsequentialid()
|
|
26818
27659
|
*/
|
|
26819
27660
|
get ID(): string;
|
|
27661
|
+
set ID(value: string);
|
|
26820
27662
|
/**
|
|
26821
27663
|
* * Field Name: UserID
|
|
26822
27664
|
* * Display Name: User ID
|
|
@@ -26902,6 +27744,7 @@ export declare class UserNotificationEntity extends BaseEntity<UserNotificationE
|
|
|
26902
27744
|
* * Default Value: newsequentialid()
|
|
26903
27745
|
*/
|
|
26904
27746
|
get ID(): string;
|
|
27747
|
+
set ID(value: string);
|
|
26905
27748
|
/**
|
|
26906
27749
|
* * Field Name: UserID
|
|
26907
27750
|
* * Display Name: User ID
|
|
@@ -27026,6 +27869,7 @@ export declare class UserRecordLogEntity extends BaseEntity<UserRecordLogEntityT
|
|
|
27026
27869
|
* * Default Value: newsequentialid()
|
|
27027
27870
|
*/
|
|
27028
27871
|
get ID(): string;
|
|
27872
|
+
set ID(value: string);
|
|
27029
27873
|
/**
|
|
27030
27874
|
* * Field Name: UserID
|
|
27031
27875
|
* * Display Name: User ID
|
|
@@ -27154,6 +27998,7 @@ export declare class UserRoleEntity extends BaseEntity<UserRoleEntityType> {
|
|
|
27154
27998
|
* * Default Value: newsequentialid()
|
|
27155
27999
|
*/
|
|
27156
28000
|
get ID(): string;
|
|
28001
|
+
set ID(value: string);
|
|
27157
28002
|
/**
|
|
27158
28003
|
* * Field Name: UserID
|
|
27159
28004
|
* * Display Name: User ID
|
|
@@ -27227,6 +28072,7 @@ export declare class UserViewCategoryEntity extends BaseEntity<UserViewCategoryE
|
|
|
27227
28072
|
* * Default Value: newsequentialid()
|
|
27228
28073
|
*/
|
|
27229
28074
|
get ID(): string;
|
|
28075
|
+
set ID(value: string);
|
|
27230
28076
|
/**
|
|
27231
28077
|
* * Field Name: Name
|
|
27232
28078
|
* * Display Name: Name
|
|
@@ -27337,6 +28183,7 @@ export declare class UserViewRunDetailEntity extends BaseEntity<UserViewRunDetai
|
|
|
27337
28183
|
* * Default Value: newsequentialid()
|
|
27338
28184
|
*/
|
|
27339
28185
|
get ID(): string;
|
|
28186
|
+
set ID(value: string);
|
|
27340
28187
|
/**
|
|
27341
28188
|
* * Field Name: UserViewRunID
|
|
27342
28189
|
* * Display Name: User View Run ID
|
|
@@ -27418,6 +28265,7 @@ export declare class UserViewRunEntity extends BaseEntity<UserViewRunEntityType>
|
|
|
27418
28265
|
* * Default Value: newsequentialid()
|
|
27419
28266
|
*/
|
|
27420
28267
|
get ID(): string;
|
|
28268
|
+
set ID(value: string);
|
|
27421
28269
|
/**
|
|
27422
28270
|
* * Field Name: UserViewID
|
|
27423
28271
|
* * Display Name: User View ID
|
|
@@ -27498,6 +28346,7 @@ export declare class UserViewEntity extends BaseEntity<UserViewEntityType> {
|
|
|
27498
28346
|
* * Default Value: newsequentialid()
|
|
27499
28347
|
*/
|
|
27500
28348
|
get ID(): string;
|
|
28349
|
+
set ID(value: string);
|
|
27501
28350
|
/**
|
|
27502
28351
|
* * Field Name: UserID
|
|
27503
28352
|
* * Display Name: User ID
|
|
@@ -27712,6 +28561,7 @@ export declare class UserEntity extends BaseEntity<UserEntityType> {
|
|
|
27712
28561
|
* * Default Value: newsequentialid()
|
|
27713
28562
|
*/
|
|
27714
28563
|
get ID(): string;
|
|
28564
|
+
set ID(value: string);
|
|
27715
28565
|
/**
|
|
27716
28566
|
* * Field Name: Name
|
|
27717
28567
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -27875,6 +28725,7 @@ export declare class VectorDatabaseEntity extends BaseEntity<VectorDatabaseEntit
|
|
|
27875
28725
|
* * Default Value: newsequentialid()
|
|
27876
28726
|
*/
|
|
27877
28727
|
get ID(): string;
|
|
28728
|
+
set ID(value: string);
|
|
27878
28729
|
/**
|
|
27879
28730
|
* * Field Name: Name
|
|
27880
28731
|
* * Display Name: Name
|
|
@@ -27948,6 +28799,7 @@ export declare class VectorIndexEntity extends BaseEntity<VectorIndexEntityType>
|
|
|
27948
28799
|
* * Default Value: newsequentialid()
|
|
27949
28800
|
*/
|
|
27950
28801
|
get ID(): string;
|
|
28802
|
+
set ID(value: string);
|
|
27951
28803
|
/**
|
|
27952
28804
|
* * Field Name: Name
|
|
27953
28805
|
* * Display Name: Name
|
|
@@ -28044,6 +28896,7 @@ export declare class VersionInstallationEntity extends BaseEntity<VersionInstall
|
|
|
28044
28896
|
* * Default Value: newsequentialid()
|
|
28045
28897
|
*/
|
|
28046
28898
|
get ID(): string;
|
|
28899
|
+
set ID(value: string);
|
|
28047
28900
|
/**
|
|
28048
28901
|
* * Field Name: MajorVersion
|
|
28049
28902
|
* * Display Name: Major Version
|
|
@@ -28166,6 +29019,7 @@ export declare class WorkflowEngineEntity extends BaseEntity<WorkflowEngineEntit
|
|
|
28166
29019
|
* * Default Value: newsequentialid()
|
|
28167
29020
|
*/
|
|
28168
29021
|
get ID(): string;
|
|
29022
|
+
set ID(value: string);
|
|
28169
29023
|
/**
|
|
28170
29024
|
* * Field Name: Name
|
|
28171
29025
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -28245,6 +29099,7 @@ export declare class WorkflowRunEntity extends BaseEntity<WorkflowRunEntityType>
|
|
|
28245
29099
|
* * Default Value: newsequentialid()
|
|
28246
29100
|
*/
|
|
28247
29101
|
get ID(): string;
|
|
29102
|
+
set ID(value: string);
|
|
28248
29103
|
/**
|
|
28249
29104
|
* * Field Name: WorkflowID
|
|
28250
29105
|
* * Display Name: Workflow ID
|
|
@@ -28358,6 +29213,7 @@ export declare class WorkflowEntity extends BaseEntity<WorkflowEntityType> {
|
|
|
28358
29213
|
* * Default Value: newsequentialid()
|
|
28359
29214
|
*/
|
|
28360
29215
|
get ID(): string;
|
|
29216
|
+
set ID(value: string);
|
|
28361
29217
|
/**
|
|
28362
29218
|
* * Field Name: Name
|
|
28363
29219
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -28478,6 +29334,7 @@ export declare class WorkspaceItemEntity extends BaseEntity<WorkspaceItemEntityT
|
|
|
28478
29334
|
* * Default Value: newsequentialid()
|
|
28479
29335
|
*/
|
|
28480
29336
|
get ID(): string;
|
|
29337
|
+
set ID(value: string);
|
|
28481
29338
|
/**
|
|
28482
29339
|
* * Field Name: Name
|
|
28483
29340
|
* * Display Name: Name
|
|
@@ -28587,6 +29444,7 @@ export declare class WorkspaceEntity extends BaseEntity<WorkspaceEntityType> {
|
|
|
28587
29444
|
* * Default Value: newsequentialid()
|
|
28588
29445
|
*/
|
|
28589
29446
|
get ID(): string;
|
|
29447
|
+
set ID(value: string);
|
|
28590
29448
|
/**
|
|
28591
29449
|
* * Field Name: Name
|
|
28592
29450
|
* * Display Name: Name
|