@memberjunction/core-entities 2.30.0 → 2.32.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.
|
@@ -8,7 +8,7 @@ export declare const ActionAuthorizationSchema: z.ZodObject<{
|
|
|
8
8
|
ID: z.ZodString;
|
|
9
9
|
ActionID: z.ZodString;
|
|
10
10
|
AuthorizationID: z.ZodString;
|
|
11
|
-
Comments: z.
|
|
11
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
12
12
|
__mj_CreatedAt: z.ZodDate;
|
|
13
13
|
__mj_UpdatedAt: z.ZodDate;
|
|
14
14
|
Action: z.ZodString;
|
|
@@ -39,12 +39,12 @@ export type ActionAuthorizationEntityType = z.infer<typeof ActionAuthorizationSc
|
|
|
39
39
|
export declare const ActionCategorySchema: z.ZodObject<{
|
|
40
40
|
ID: z.ZodString;
|
|
41
41
|
Name: z.ZodString;
|
|
42
|
-
Description: z.
|
|
43
|
-
ParentID: z.
|
|
42
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
43
|
+
ParentID: z.ZodNullable<z.ZodString>;
|
|
44
44
|
Status: z.ZodUnion<[z.ZodLiteral<"Disabled">, z.ZodLiteral<"Active">, z.ZodLiteral<"Pending">]>;
|
|
45
45
|
__mj_CreatedAt: z.ZodDate;
|
|
46
46
|
__mj_UpdatedAt: z.ZodDate;
|
|
47
|
-
Parent: z.
|
|
47
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
48
48
|
}, "strip", z.ZodTypeAny, {
|
|
49
49
|
ID?: string;
|
|
50
50
|
__mj_CreatedAt?: Date;
|
|
@@ -71,7 +71,7 @@ export type ActionCategoryEntityType = z.infer<typeof ActionCategorySchema>;
|
|
|
71
71
|
export declare const ActionContextTypeSchema: z.ZodObject<{
|
|
72
72
|
ID: z.ZodString;
|
|
73
73
|
Name: z.ZodString;
|
|
74
|
-
Description: z.
|
|
74
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
75
75
|
__mj_CreatedAt: z.ZodDate;
|
|
76
76
|
__mj_UpdatedAt: z.ZodDate;
|
|
77
77
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94,12 +94,12 @@ export type ActionContextTypeEntityType = z.infer<typeof ActionContextTypeSchema
|
|
|
94
94
|
export declare const ActionContextSchema: z.ZodObject<{
|
|
95
95
|
ID: z.ZodString;
|
|
96
96
|
ActionID: z.ZodString;
|
|
97
|
-
ContextTypeID: z.
|
|
97
|
+
ContextTypeID: z.ZodNullable<z.ZodString>;
|
|
98
98
|
Status: z.ZodUnion<[z.ZodLiteral<"Disabled">, z.ZodLiteral<"Active">, z.ZodLiteral<"Pending">]>;
|
|
99
99
|
__mj_CreatedAt: z.ZodDate;
|
|
100
100
|
__mj_UpdatedAt: z.ZodDate;
|
|
101
101
|
Action: z.ZodString;
|
|
102
|
-
ContextType: z.
|
|
102
|
+
ContextType: z.ZodNullable<z.ZodString>;
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
104
|
ID?: string;
|
|
105
105
|
ActionID?: string;
|
|
@@ -127,11 +127,11 @@ export declare const ActionExecutionLogSchema: z.ZodObject<{
|
|
|
127
127
|
ID: z.ZodString;
|
|
128
128
|
ActionID: z.ZodString;
|
|
129
129
|
StartedAt: z.ZodDate;
|
|
130
|
-
EndedAt: z.
|
|
131
|
-
Params: z.
|
|
132
|
-
ResultCode: z.
|
|
130
|
+
EndedAt: z.ZodNullable<z.ZodDate>;
|
|
131
|
+
Params: z.ZodNullable<z.ZodString>;
|
|
132
|
+
ResultCode: z.ZodNullable<z.ZodString>;
|
|
133
133
|
UserID: z.ZodString;
|
|
134
|
-
RetentionPeriod: z.
|
|
134
|
+
RetentionPeriod: z.ZodNullable<z.ZodNumber>;
|
|
135
135
|
__mj_CreatedAt: z.ZodDate;
|
|
136
136
|
__mj_UpdatedAt: z.ZodDate;
|
|
137
137
|
Action: z.ZodString;
|
|
@@ -170,9 +170,9 @@ export type ActionExecutionLogEntityType = z.infer<typeof ActionExecutionLogSche
|
|
|
170
170
|
export declare const ActionFilterSchema: z.ZodObject<{
|
|
171
171
|
ID: z.ZodString;
|
|
172
172
|
UserDescription: z.ZodString;
|
|
173
|
-
UserComments: z.
|
|
173
|
+
UserComments: z.ZodNullable<z.ZodString>;
|
|
174
174
|
Code: z.ZodString;
|
|
175
|
-
CodeExplanation: z.
|
|
175
|
+
CodeExplanation: z.ZodNullable<z.ZodString>;
|
|
176
176
|
__mj_CreatedAt: z.ZodDate;
|
|
177
177
|
__mj_UpdatedAt: z.ZodDate;
|
|
178
178
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -200,7 +200,7 @@ export declare const ActionLibrarySchema: z.ZodObject<{
|
|
|
200
200
|
ID: z.ZodString;
|
|
201
201
|
ActionID: z.ZodString;
|
|
202
202
|
LibraryID: z.ZodString;
|
|
203
|
-
ItemsUsed: z.
|
|
203
|
+
ItemsUsed: z.ZodNullable<z.ZodString>;
|
|
204
204
|
__mj_CreatedAt: z.ZodDate;
|
|
205
205
|
__mj_UpdatedAt: z.ZodDate;
|
|
206
206
|
Action: z.ZodString;
|
|
@@ -232,11 +232,11 @@ export declare const ActionParamSchema: z.ZodObject<{
|
|
|
232
232
|
ID: z.ZodString;
|
|
233
233
|
ActionID: z.ZodString;
|
|
234
234
|
Name: z.ZodString;
|
|
235
|
-
DefaultValue: z.
|
|
235
|
+
DefaultValue: z.ZodNullable<z.ZodString>;
|
|
236
236
|
Type: z.ZodUnion<[z.ZodLiteral<"Input">, z.ZodLiteral<"Output">, z.ZodLiteral<"Both">]>;
|
|
237
237
|
ValueType: z.ZodUnion<[z.ZodLiteral<"Scalar">, z.ZodLiteral<"Simple Object">, z.ZodLiteral<"BaseEntity Sub-Class">, z.ZodLiteral<"Other">]>;
|
|
238
238
|
IsArray: z.ZodBoolean;
|
|
239
|
-
Description: z.
|
|
239
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
240
240
|
IsRequired: z.ZodBoolean;
|
|
241
241
|
__mj_CreatedAt: z.ZodDate;
|
|
242
242
|
__mj_UpdatedAt: z.ZodDate;
|
|
@@ -277,7 +277,7 @@ export declare const ActionResultCodeSchema: z.ZodObject<{
|
|
|
277
277
|
ActionID: z.ZodString;
|
|
278
278
|
ResultCode: z.ZodString;
|
|
279
279
|
IsSuccess: z.ZodBoolean;
|
|
280
|
-
Description: z.
|
|
280
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
281
281
|
__mj_CreatedAt: z.ZodDate;
|
|
282
282
|
__mj_UpdatedAt: z.ZodDate;
|
|
283
283
|
Action: z.ZodString;
|
|
@@ -306,26 +306,26 @@ export type ActionResultCodeEntityType = z.infer<typeof ActionResultCodeSchema>;
|
|
|
306
306
|
*/
|
|
307
307
|
export declare const ActionSchema: z.ZodObject<{
|
|
308
308
|
ID: z.ZodString;
|
|
309
|
-
CategoryID: z.
|
|
309
|
+
CategoryID: z.ZodNullable<z.ZodString>;
|
|
310
310
|
Name: z.ZodString;
|
|
311
|
-
Description: z.
|
|
311
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
312
312
|
Type: z.ZodUnion<[z.ZodLiteral<"Generated">, z.ZodLiteral<"Custom">]>;
|
|
313
|
-
UserPrompt: z.
|
|
314
|
-
UserComments: z.
|
|
315
|
-
Code: z.
|
|
316
|
-
CodeComments: z.
|
|
313
|
+
UserPrompt: z.ZodNullable<z.ZodString>;
|
|
314
|
+
UserComments: z.ZodNullable<z.ZodString>;
|
|
315
|
+
Code: z.ZodNullable<z.ZodString>;
|
|
316
|
+
CodeComments: z.ZodNullable<z.ZodString>;
|
|
317
317
|
CodeApprovalStatus: z.ZodUnion<[z.ZodLiteral<"Rejected">, z.ZodLiteral<"Approved">, z.ZodLiteral<"Pending">]>;
|
|
318
|
-
CodeApprovalComments: z.
|
|
319
|
-
CodeApprovedByUserID: z.
|
|
320
|
-
CodeApprovedAt: z.
|
|
318
|
+
CodeApprovalComments: z.ZodNullable<z.ZodString>;
|
|
319
|
+
CodeApprovedByUserID: z.ZodNullable<z.ZodString>;
|
|
320
|
+
CodeApprovedAt: z.ZodNullable<z.ZodDate>;
|
|
321
321
|
CodeLocked: z.ZodBoolean;
|
|
322
322
|
ForceCodeGeneration: z.ZodBoolean;
|
|
323
|
-
RetentionPeriod: z.
|
|
323
|
+
RetentionPeriod: z.ZodNullable<z.ZodNumber>;
|
|
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
|
-
Category: z.
|
|
328
|
-
CodeApprovedByUser: z.
|
|
327
|
+
Category: z.ZodNullable<z.ZodString>;
|
|
328
|
+
CodeApprovedByUser: z.ZodNullable<z.ZodString>;
|
|
329
329
|
}, "strip", z.ZodTypeAny, {
|
|
330
330
|
Category?: string;
|
|
331
331
|
ID?: string;
|
|
@@ -378,13 +378,13 @@ export type ActionEntityType = z.infer<typeof ActionSchema>;
|
|
|
378
378
|
export declare const AIActionSchema: z.ZodObject<{
|
|
379
379
|
ID: z.ZodString;
|
|
380
380
|
Name: z.ZodString;
|
|
381
|
-
Description: z.
|
|
382
|
-
DefaultPrompt: z.
|
|
383
|
-
DefaultModelID: z.
|
|
381
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
382
|
+
DefaultPrompt: z.ZodNullable<z.ZodString>;
|
|
383
|
+
DefaultModelID: z.ZodNullable<z.ZodString>;
|
|
384
384
|
IsActive: z.ZodBoolean;
|
|
385
385
|
__mj_CreatedAt: z.ZodDate;
|
|
386
386
|
__mj_UpdatedAt: z.ZodDate;
|
|
387
|
-
DefaultModel: z.
|
|
387
|
+
DefaultModel: z.ZodNullable<z.ZodString>;
|
|
388
388
|
}, "strip", z.ZodTypeAny, {
|
|
389
389
|
ID?: string;
|
|
390
390
|
__mj_CreatedAt?: Date;
|
|
@@ -412,13 +412,13 @@ export type AIActionEntityType = z.infer<typeof AIActionSchema>;
|
|
|
412
412
|
*/
|
|
413
413
|
export declare const AIAgentActionSchema: z.ZodObject<{
|
|
414
414
|
ID: z.ZodString;
|
|
415
|
-
AgentID: z.
|
|
416
|
-
ActionID: z.
|
|
415
|
+
AgentID: z.ZodNullable<z.ZodString>;
|
|
416
|
+
ActionID: z.ZodNullable<z.ZodString>;
|
|
417
417
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"Active">, z.ZodLiteral<"Revoked">]>;
|
|
418
418
|
__mj_CreatedAt: z.ZodDate;
|
|
419
419
|
__mj_UpdatedAt: z.ZodDate;
|
|
420
|
-
Agent: z.
|
|
421
|
-
Action: z.
|
|
420
|
+
Agent: z.ZodNullable<z.ZodString>;
|
|
421
|
+
Action: z.ZodNullable<z.ZodString>;
|
|
422
422
|
}, "strip", z.ZodTypeAny, {
|
|
423
423
|
ID?: string;
|
|
424
424
|
ActionID?: string;
|
|
@@ -446,12 +446,12 @@ export declare const AIAgentLearningCycleSchema: z.ZodObject<{
|
|
|
446
446
|
ID: z.ZodString;
|
|
447
447
|
AgentID: z.ZodString;
|
|
448
448
|
StartedAt: z.ZodDate;
|
|
449
|
-
EndedAt: z.
|
|
449
|
+
EndedAt: z.ZodNullable<z.ZodDate>;
|
|
450
450
|
Status: z.ZodUnion<[z.ZodLiteral<"In-Progress">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Failed">]>;
|
|
451
|
-
AgentSummary: z.
|
|
451
|
+
AgentSummary: z.ZodNullable<z.ZodString>;
|
|
452
452
|
__mj_CreatedAt: z.ZodDate;
|
|
453
453
|
__mj_UpdatedAt: z.ZodDate;
|
|
454
|
-
Agent: z.
|
|
454
|
+
Agent: z.ZodNullable<z.ZodString>;
|
|
455
455
|
}, "strip", z.ZodTypeAny, {
|
|
456
456
|
ID?: string;
|
|
457
457
|
__mj_CreatedAt?: Date;
|
|
@@ -479,14 +479,14 @@ export type AIAgentLearningCycleEntityType = z.infer<typeof AIAgentLearningCycle
|
|
|
479
479
|
*/
|
|
480
480
|
export declare const AIAgentModelSchema: z.ZodObject<{
|
|
481
481
|
ID: z.ZodString;
|
|
482
|
-
AgentID: z.
|
|
483
|
-
ModelID: z.
|
|
484
|
-
Active: z.
|
|
485
|
-
Priority: z.
|
|
482
|
+
AgentID: z.ZodNullable<z.ZodString>;
|
|
483
|
+
ModelID: z.ZodNullable<z.ZodString>;
|
|
484
|
+
Active: z.ZodNullable<z.ZodBoolean>;
|
|
485
|
+
Priority: z.ZodNullable<z.ZodNumber>;
|
|
486
486
|
__mj_CreatedAt: z.ZodDate;
|
|
487
487
|
__mj_UpdatedAt: z.ZodDate;
|
|
488
|
-
Agent: z.
|
|
489
|
-
Model: z.
|
|
488
|
+
Agent: z.ZodNullable<z.ZodString>;
|
|
489
|
+
Model: z.ZodNullable<z.ZodString>;
|
|
490
490
|
}, "strip", z.ZodTypeAny, {
|
|
491
491
|
Active?: boolean;
|
|
492
492
|
ID?: string;
|
|
@@ -514,8 +514,8 @@ export type AIAgentModelEntityType = z.infer<typeof AIAgentModelSchema>;
|
|
|
514
514
|
*/
|
|
515
515
|
export declare const AIAgentNoteTypeSchema: z.ZodObject<{
|
|
516
516
|
ID: z.ZodString;
|
|
517
|
-
Name: z.
|
|
518
|
-
Description: z.
|
|
517
|
+
Name: z.ZodNullable<z.ZodString>;
|
|
518
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
519
519
|
__mj_CreatedAt: z.ZodDate;
|
|
520
520
|
__mj_UpdatedAt: z.ZodDate;
|
|
521
521
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -537,16 +537,16 @@ export type AIAgentNoteTypeEntityType = z.infer<typeof AIAgentNoteTypeSchema>;
|
|
|
537
537
|
*/
|
|
538
538
|
export declare const AIAgentNoteSchema: z.ZodObject<{
|
|
539
539
|
ID: z.ZodString;
|
|
540
|
-
AgentID: z.
|
|
541
|
-
AgentNoteTypeID: z.
|
|
542
|
-
Note: z.
|
|
540
|
+
AgentID: z.ZodNullable<z.ZodString>;
|
|
541
|
+
AgentNoteTypeID: z.ZodNullable<z.ZodString>;
|
|
542
|
+
Note: z.ZodNullable<z.ZodString>;
|
|
543
543
|
__mj_CreatedAt: z.ZodDate;
|
|
544
544
|
__mj_UpdatedAt: z.ZodDate;
|
|
545
545
|
Type: z.ZodUnion<[z.ZodLiteral<"User">, z.ZodLiteral<"Global">]>;
|
|
546
|
-
UserID: z.
|
|
547
|
-
Agent: z.
|
|
548
|
-
AgentNoteType: z.
|
|
549
|
-
User: z.
|
|
546
|
+
UserID: z.ZodNullable<z.ZodString>;
|
|
547
|
+
Agent: z.ZodNullable<z.ZodString>;
|
|
548
|
+
AgentNoteType: z.ZodNullable<z.ZodString>;
|
|
549
|
+
User: z.ZodNullable<z.ZodString>;
|
|
550
550
|
}, "strip", z.ZodTypeAny, {
|
|
551
551
|
ID?: string;
|
|
552
552
|
__mj_CreatedAt?: Date;
|
|
@@ -580,18 +580,18 @@ export declare const AIAgentRequestSchema: z.ZodObject<{
|
|
|
580
580
|
ID: z.ZodString;
|
|
581
581
|
AgentID: z.ZodString;
|
|
582
582
|
RequestedAt: z.ZodDate;
|
|
583
|
-
RequestForUserID: z.
|
|
583
|
+
RequestForUserID: z.ZodNullable<z.ZodString>;
|
|
584
584
|
Status: z.ZodUnion<[z.ZodLiteral<"Requested">, z.ZodLiteral<"Approved">, z.ZodLiteral<"Rejected">, z.ZodLiteral<"Canceled">]>;
|
|
585
585
|
Request: z.ZodString;
|
|
586
|
-
Response: z.
|
|
587
|
-
ResponseByUserID: z.
|
|
588
|
-
RespondedAt: z.
|
|
589
|
-
Comments: z.
|
|
586
|
+
Response: z.ZodNullable<z.ZodString>;
|
|
587
|
+
ResponseByUserID: z.ZodNullable<z.ZodString>;
|
|
588
|
+
RespondedAt: z.ZodNullable<z.ZodDate>;
|
|
589
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
590
590
|
__mj_CreatedAt: z.ZodDate;
|
|
591
591
|
__mj_UpdatedAt: z.ZodDate;
|
|
592
|
-
Agent: z.
|
|
593
|
-
RequestForUser: z.
|
|
594
|
-
ResponseByUser: z.
|
|
592
|
+
Agent: z.ZodNullable<z.ZodString>;
|
|
593
|
+
RequestForUser: z.ZodNullable<z.ZodString>;
|
|
594
|
+
ResponseByUser: z.ZodNullable<z.ZodString>;
|
|
595
595
|
}, "strip", z.ZodTypeAny, {
|
|
596
596
|
ID?: string;
|
|
597
597
|
Comments?: string;
|
|
@@ -631,9 +631,9 @@ export type AIAgentRequestEntityType = z.infer<typeof AIAgentRequestSchema>;
|
|
|
631
631
|
*/
|
|
632
632
|
export declare const AIAgentSchema: z.ZodObject<{
|
|
633
633
|
ID: z.ZodString;
|
|
634
|
-
Name: z.
|
|
635
|
-
Description: z.
|
|
636
|
-
LogoURL: z.
|
|
634
|
+
Name: z.ZodNullable<z.ZodString>;
|
|
635
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
636
|
+
LogoURL: z.ZodNullable<z.ZodString>;
|
|
637
637
|
__mj_CreatedAt: z.ZodDate;
|
|
638
638
|
__mj_UpdatedAt: z.ZodDate;
|
|
639
639
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -690,7 +690,7 @@ export type AIModelActionEntityType = z.infer<typeof AIModelActionSchema>;
|
|
|
690
690
|
export declare const AIModelTypeSchema: z.ZodObject<{
|
|
691
691
|
ID: z.ZodString;
|
|
692
692
|
Name: z.ZodString;
|
|
693
|
-
Description: z.
|
|
693
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
694
694
|
__mj_CreatedAt: z.ZodDate;
|
|
695
695
|
__mj_UpdatedAt: z.ZodDate;
|
|
696
696
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -713,20 +713,20 @@ export type AIModelTypeEntityType = z.infer<typeof AIModelTypeSchema>;
|
|
|
713
713
|
export declare const AIModelSchema: z.ZodObject<{
|
|
714
714
|
ID: z.ZodString;
|
|
715
715
|
Name: z.ZodString;
|
|
716
|
-
Description: z.
|
|
717
|
-
Vendor: z.
|
|
716
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
717
|
+
Vendor: z.ZodNullable<z.ZodString>;
|
|
718
718
|
AIModelTypeID: z.ZodString;
|
|
719
|
-
PowerRank: z.
|
|
719
|
+
PowerRank: z.ZodNullable<z.ZodNumber>;
|
|
720
720
|
IsActive: z.ZodBoolean;
|
|
721
|
-
DriverClass: z.
|
|
722
|
-
DriverImportPath: z.
|
|
723
|
-
APIName: z.
|
|
721
|
+
DriverClass: z.ZodNullable<z.ZodString>;
|
|
722
|
+
DriverImportPath: z.ZodNullable<z.ZodString>;
|
|
723
|
+
APIName: z.ZodNullable<z.ZodString>;
|
|
724
724
|
__mj_CreatedAt: z.ZodDate;
|
|
725
725
|
__mj_UpdatedAt: z.ZodDate;
|
|
726
|
-
SpeedRank: z.
|
|
727
|
-
CostRank: z.
|
|
728
|
-
ModelSelectionInsights: z.
|
|
729
|
-
InputTokenLimit: z.
|
|
726
|
+
SpeedRank: z.ZodNullable<z.ZodNumber>;
|
|
727
|
+
CostRank: z.ZodNullable<z.ZodNumber>;
|
|
728
|
+
ModelSelectionInsights: z.ZodNullable<z.ZodString>;
|
|
729
|
+
InputTokenLimit: z.ZodNullable<z.ZodNumber>;
|
|
730
730
|
SupportedResponseFormats: z.ZodString;
|
|
731
731
|
AIModelType: z.ZodString;
|
|
732
732
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -775,11 +775,11 @@ export type AIModelEntityType = z.infer<typeof AIModelSchema>;
|
|
|
775
775
|
export declare const AIPromptCategorySchema: z.ZodObject<{
|
|
776
776
|
ID: z.ZodString;
|
|
777
777
|
Name: z.ZodString;
|
|
778
|
-
ParentID: z.
|
|
779
|
-
Description: z.
|
|
778
|
+
ParentID: z.ZodNullable<z.ZodString>;
|
|
779
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
780
780
|
__mj_CreatedAt: z.ZodDate;
|
|
781
781
|
__mj_UpdatedAt: z.ZodDate;
|
|
782
|
-
Parent: z.
|
|
782
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
783
783
|
}, "strip", z.ZodTypeAny, {
|
|
784
784
|
ID?: string;
|
|
785
785
|
__mj_CreatedAt?: Date;
|
|
@@ -804,7 +804,7 @@ export type AIPromptCategoryEntityType = z.infer<typeof AIPromptCategorySchema>;
|
|
|
804
804
|
export declare const AIPromptTypeSchema: z.ZodObject<{
|
|
805
805
|
ID: z.ZodString;
|
|
806
806
|
Name: z.ZodString;
|
|
807
|
-
Description: z.
|
|
807
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
808
808
|
__mj_CreatedAt: z.ZodDate;
|
|
809
809
|
__mj_UpdatedAt: z.ZodDate;
|
|
810
810
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -827,9 +827,9 @@ export type AIPromptTypeEntityType = z.infer<typeof AIPromptTypeSchema>;
|
|
|
827
827
|
export declare const AIPromptSchema: z.ZodObject<{
|
|
828
828
|
ID: z.ZodString;
|
|
829
829
|
Name: z.ZodString;
|
|
830
|
-
Description: z.
|
|
830
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
831
831
|
TemplateID: z.ZodString;
|
|
832
|
-
CategoryID: z.
|
|
832
|
+
CategoryID: z.ZodNullable<z.ZodString>;
|
|
833
833
|
TypeID: z.ZodString;
|
|
834
834
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">]>;
|
|
835
835
|
CacheResults: z.ZodBoolean;
|
|
@@ -837,9 +837,9 @@ export declare const AIPromptSchema: z.ZodObject<{
|
|
|
837
837
|
__mj_CreatedAt: z.ZodDate;
|
|
838
838
|
__mj_UpdatedAt: z.ZodDate;
|
|
839
839
|
ResponseFormat: z.ZodUnion<[z.ZodLiteral<"Any">, z.ZodLiteral<"Text">, z.ZodLiteral<"Markdown">, z.ZodLiteral<"JSON">, z.ZodLiteral<"ModelSpecific">]>;
|
|
840
|
-
ModelSpecificResponseFormat: z.
|
|
840
|
+
ModelSpecificResponseFormat: z.ZodNullable<z.ZodString>;
|
|
841
841
|
Template: z.ZodString;
|
|
842
|
-
Category: z.
|
|
842
|
+
Category: z.ZodNullable<z.ZodString>;
|
|
843
843
|
Type: z.ZodString;
|
|
844
844
|
}, "strip", z.ZodTypeAny, {
|
|
845
845
|
Category?: string;
|
|
@@ -886,9 +886,9 @@ export declare const AIResultCacheSchema: z.ZodObject<{
|
|
|
886
886
|
AIModelID: z.ZodString;
|
|
887
887
|
RunAt: z.ZodDate;
|
|
888
888
|
PromptText: z.ZodString;
|
|
889
|
-
ResultText: z.
|
|
889
|
+
ResultText: z.ZodNullable<z.ZodString>;
|
|
890
890
|
Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Expired">]>;
|
|
891
|
-
ExpiredOn: z.
|
|
891
|
+
ExpiredOn: z.ZodNullable<z.ZodDate>;
|
|
892
892
|
__mj_CreatedAt: z.ZodDate;
|
|
893
893
|
__mj_UpdatedAt: z.ZodDate;
|
|
894
894
|
AIPrompt: z.ZodString;
|
|
@@ -935,9 +935,9 @@ export declare const ApplicationEntitySchema: z.ZodObject<{
|
|
|
935
935
|
Application: z.ZodString;
|
|
936
936
|
Entity: z.ZodString;
|
|
937
937
|
EntityBaseTable: z.ZodString;
|
|
938
|
-
EntityCodeName: z.
|
|
939
|
-
EntityClassName: z.
|
|
940
|
-
EntityBaseTableCodeName: z.
|
|
938
|
+
EntityCodeName: z.ZodNullable<z.ZodString>;
|
|
939
|
+
EntityClassName: z.ZodNullable<z.ZodString>;
|
|
940
|
+
EntityBaseTableCodeName: z.ZodNullable<z.ZodString>;
|
|
941
941
|
}, "strip", z.ZodTypeAny, {
|
|
942
942
|
ID?: string;
|
|
943
943
|
__mj_CreatedAt?: Date;
|
|
@@ -976,7 +976,7 @@ export declare const ApplicationSettingSchema: z.ZodObject<{
|
|
|
976
976
|
ApplicationID: z.ZodString;
|
|
977
977
|
Name: z.ZodString;
|
|
978
978
|
Value: z.ZodString;
|
|
979
|
-
Comments: z.
|
|
979
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
980
980
|
__mj_CreatedAt: z.ZodDate;
|
|
981
981
|
__mj_UpdatedAt: z.ZodDate;
|
|
982
982
|
Application: z.ZodString;
|
|
@@ -1006,8 +1006,8 @@ export type ApplicationSettingEntityType = z.infer<typeof ApplicationSettingSche
|
|
|
1006
1006
|
export declare const ApplicationSchema: z.ZodObject<{
|
|
1007
1007
|
ID: z.ZodString;
|
|
1008
1008
|
Name: z.ZodString;
|
|
1009
|
-
Description: z.
|
|
1010
|
-
Icon: z.
|
|
1009
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
1010
|
+
Icon: z.ZodNullable<z.ZodString>;
|
|
1011
1011
|
DefaultForNewUser: z.ZodBoolean;
|
|
1012
1012
|
__mj_CreatedAt: z.ZodDate;
|
|
1013
1013
|
__mj_UpdatedAt: z.ZodDate;
|
|
@@ -1035,13 +1035,13 @@ export type ApplicationEntityType = z.infer<typeof ApplicationSchema>;
|
|
|
1035
1035
|
export declare const AuditLogTypeSchema: z.ZodObject<{
|
|
1036
1036
|
ID: z.ZodString;
|
|
1037
1037
|
Name: z.ZodString;
|
|
1038
|
-
Description: z.
|
|
1039
|
-
ParentID: z.
|
|
1040
|
-
AuthorizationID: z.
|
|
1038
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
1039
|
+
ParentID: z.ZodNullable<z.ZodString>;
|
|
1040
|
+
AuthorizationID: z.ZodNullable<z.ZodString>;
|
|
1041
1041
|
__mj_CreatedAt: z.ZodDate;
|
|
1042
1042
|
__mj_UpdatedAt: z.ZodDate;
|
|
1043
|
-
Parent: z.
|
|
1044
|
-
Authorization: z.
|
|
1043
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
1044
|
+
Authorization: z.ZodNullable<z.ZodString>;
|
|
1045
1045
|
}, "strip", z.ZodTypeAny, {
|
|
1046
1046
|
ID?: string;
|
|
1047
1047
|
AuthorizationID?: string;
|
|
@@ -1071,18 +1071,18 @@ export declare const AuditLogSchema: z.ZodObject<{
|
|
|
1071
1071
|
ID: z.ZodString;
|
|
1072
1072
|
UserID: z.ZodString;
|
|
1073
1073
|
AuditLogTypeID: z.ZodString;
|
|
1074
|
-
AuthorizationID: z.
|
|
1074
|
+
AuthorizationID: z.ZodNullable<z.ZodString>;
|
|
1075
1075
|
Status: z.ZodUnion<[z.ZodLiteral<"Success">, z.ZodLiteral<"Failed">]>;
|
|
1076
|
-
Description: z.
|
|
1077
|
-
Details: z.
|
|
1078
|
-
EntityID: z.
|
|
1079
|
-
RecordID: z.
|
|
1076
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
1077
|
+
Details: z.ZodNullable<z.ZodString>;
|
|
1078
|
+
EntityID: z.ZodNullable<z.ZodString>;
|
|
1079
|
+
RecordID: z.ZodNullable<z.ZodString>;
|
|
1080
1080
|
__mj_CreatedAt: z.ZodDate;
|
|
1081
1081
|
__mj_UpdatedAt: z.ZodDate;
|
|
1082
1082
|
User: z.ZodString;
|
|
1083
1083
|
AuditLogType: z.ZodString;
|
|
1084
|
-
Authorization: z.
|
|
1085
|
-
Entity: z.
|
|
1084
|
+
Authorization: z.ZodNullable<z.ZodString>;
|
|
1085
|
+
Entity: z.ZodNullable<z.ZodString>;
|
|
1086
1086
|
}, "strip", z.ZodTypeAny, {
|
|
1087
1087
|
Details?: string;
|
|
1088
1088
|
ID?: string;
|
|
@@ -1154,14 +1154,14 @@ export type AuthorizationRoleEntityType = z.infer<typeof AuthorizationRoleSchema
|
|
|
1154
1154
|
*/
|
|
1155
1155
|
export declare const AuthorizationSchema: z.ZodObject<{
|
|
1156
1156
|
ID: z.ZodString;
|
|
1157
|
-
ParentID: z.
|
|
1157
|
+
ParentID: z.ZodNullable<z.ZodString>;
|
|
1158
1158
|
Name: z.ZodString;
|
|
1159
1159
|
IsActive: z.ZodBoolean;
|
|
1160
1160
|
UseAuditLog: z.ZodBoolean;
|
|
1161
|
-
Description: z.
|
|
1161
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
1162
1162
|
__mj_CreatedAt: z.ZodDate;
|
|
1163
1163
|
__mj_UpdatedAt: z.ZodDate;
|
|
1164
|
-
Parent: z.
|
|
1164
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
1165
1165
|
}, "strip", z.ZodTypeAny, {
|
|
1166
1166
|
ID?: string;
|
|
1167
1167
|
__mj_CreatedAt?: Date;
|
|
@@ -1193,7 +1193,7 @@ export declare const CommunicationBaseMessageTypeSchema: z.ZodObject<{
|
|
|
1193
1193
|
SupportsAttachments: z.ZodBoolean;
|
|
1194
1194
|
SupportsSubjectLine: z.ZodBoolean;
|
|
1195
1195
|
SupportsHtml: z.ZodBoolean;
|
|
1196
|
-
MaxBytes: z.
|
|
1196
|
+
MaxBytes: z.ZodNullable<z.ZodNumber>;
|
|
1197
1197
|
__mj_CreatedAt: z.ZodDate;
|
|
1198
1198
|
__mj_UpdatedAt: z.ZodDate;
|
|
1199
1199
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1223,12 +1223,12 @@ export declare const CommunicationLogSchema: z.ZodObject<{
|
|
|
1223
1223
|
ID: z.ZodString;
|
|
1224
1224
|
CommunicationProviderID: z.ZodString;
|
|
1225
1225
|
CommunicationProviderMessageTypeID: z.ZodString;
|
|
1226
|
-
CommunicationRunID: z.
|
|
1226
|
+
CommunicationRunID: z.ZodNullable<z.ZodString>;
|
|
1227
1227
|
Direction: z.ZodUnion<[z.ZodLiteral<"Sending">, z.ZodLiteral<"Receiving">]>;
|
|
1228
1228
|
MessageDate: z.ZodDate;
|
|
1229
1229
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"In-Progress">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Failed">]>;
|
|
1230
|
-
MessageContent: z.
|
|
1231
|
-
ErrorMessage: z.
|
|
1230
|
+
MessageContent: z.ZodNullable<z.ZodString>;
|
|
1231
|
+
ErrorMessage: z.ZodNullable<z.ZodString>;
|
|
1232
1232
|
__mj_CreatedAt: z.ZodDate;
|
|
1233
1233
|
__mj_UpdatedAt: z.ZodDate;
|
|
1234
1234
|
CommunicationProvider: z.ZodString;
|
|
@@ -1272,7 +1272,7 @@ export declare const CommunicationProviderMessageTypeSchema: z.ZodObject<{
|
|
|
1272
1272
|
CommunicationBaseMessageTypeID: z.ZodString;
|
|
1273
1273
|
Name: z.ZodString;
|
|
1274
1274
|
Status: z.ZodUnion<[z.ZodLiteral<"Disabled">, z.ZodLiteral<"Active">]>;
|
|
1275
|
-
AdditionalAttributes: z.
|
|
1275
|
+
AdditionalAttributes: z.ZodNullable<z.ZodString>;
|
|
1276
1276
|
__mj_CreatedAt: z.ZodDate;
|
|
1277
1277
|
__mj_UpdatedAt: z.ZodDate;
|
|
1278
1278
|
CommunicationProvider: z.ZodString;
|
|
@@ -1307,7 +1307,7 @@ export type CommunicationProviderMessageTypeEntityType = z.infer<typeof Communic
|
|
|
1307
1307
|
export declare const CommunicationProviderSchema: z.ZodObject<{
|
|
1308
1308
|
ID: z.ZodString;
|
|
1309
1309
|
Name: z.ZodString;
|
|
1310
|
-
Description: z.
|
|
1310
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
1311
1311
|
Status: z.ZodUnion<[z.ZodLiteral<"Disabled">, z.ZodLiteral<"Active">]>;
|
|
1312
1312
|
SupportsSending: z.ZodBoolean;
|
|
1313
1313
|
SupportsReceiving: z.ZodBoolean;
|
|
@@ -1350,10 +1350,10 @@ export declare const CommunicationRunSchema: z.ZodObject<{
|
|
|
1350
1350
|
UserID: z.ZodString;
|
|
1351
1351
|
Direction: z.ZodUnion<[z.ZodLiteral<"Sending">, z.ZodLiteral<"Receiving">]>;
|
|
1352
1352
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"In-Progress">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Failed">]>;
|
|
1353
|
-
StartedAt: z.
|
|
1354
|
-
EndedAt: z.
|
|
1355
|
-
Comments: z.
|
|
1356
|
-
ErrorMessage: z.
|
|
1353
|
+
StartedAt: z.ZodNullable<z.ZodDate>;
|
|
1354
|
+
EndedAt: z.ZodNullable<z.ZodDate>;
|
|
1355
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
1356
|
+
ErrorMessage: z.ZodNullable<z.ZodString>;
|
|
1357
1357
|
__mj_CreatedAt: z.ZodDate;
|
|
1358
1358
|
__mj_UpdatedAt: z.ZodDate;
|
|
1359
1359
|
User: z.ZodString;
|
|
@@ -1390,9 +1390,9 @@ export declare const CompanySchema: z.ZodObject<{
|
|
|
1390
1390
|
ID: z.ZodString;
|
|
1391
1391
|
Name: z.ZodString;
|
|
1392
1392
|
Description: z.ZodString;
|
|
1393
|
-
Website: z.
|
|
1394
|
-
LogoURL: z.
|
|
1395
|
-
Domain: z.
|
|
1393
|
+
Website: z.ZodNullable<z.ZodString>;
|
|
1394
|
+
LogoURL: z.ZodNullable<z.ZodString>;
|
|
1395
|
+
Domain: z.ZodNullable<z.ZodString>;
|
|
1396
1396
|
__mj_CreatedAt: z.ZodDate;
|
|
1397
1397
|
__mj_UpdatedAt: z.ZodDate;
|
|
1398
1398
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1455,9 +1455,9 @@ export declare const CompanyIntegrationRunAPILogSchema: z.ZodObject<{
|
|
|
1455
1455
|
CompanyIntegrationRunID: z.ZodString;
|
|
1456
1456
|
ExecutedAt: z.ZodDate;
|
|
1457
1457
|
IsSuccess: z.ZodBoolean;
|
|
1458
|
-
RequestMethod: z.
|
|
1459
|
-
URL: z.
|
|
1460
|
-
Parameters: z.
|
|
1458
|
+
RequestMethod: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"GET">, z.ZodLiteral<"POST">, z.ZodLiteral<"PUT">, z.ZodLiteral<"DELETE">, z.ZodLiteral<"PATCH">, z.ZodLiteral<"HEAD">, z.ZodLiteral<"OPTIONS">]>>;
|
|
1459
|
+
URL: z.ZodNullable<z.ZodString>;
|
|
1460
|
+
Parameters: z.ZodNullable<z.ZodString>;
|
|
1461
1461
|
__mj_CreatedAt: z.ZodDate;
|
|
1462
1462
|
__mj_UpdatedAt: z.ZodDate;
|
|
1463
1463
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1496,8 +1496,8 @@ export declare const CompanyIntegrationRunDetailSchema: z.ZodObject<{
|
|
|
1496
1496
|
__mj_CreatedAt: z.ZodDate;
|
|
1497
1497
|
__mj_UpdatedAt: z.ZodDate;
|
|
1498
1498
|
Entity: z.ZodString;
|
|
1499
|
-
RunStartedAt: z.
|
|
1500
|
-
RunEndedAt: z.
|
|
1499
|
+
RunStartedAt: z.ZodNullable<z.ZodDate>;
|
|
1500
|
+
RunEndedAt: z.ZodNullable<z.ZodDate>;
|
|
1501
1501
|
}, "strip", z.ZodTypeAny, {
|
|
1502
1502
|
ID?: string;
|
|
1503
1503
|
__mj_CreatedAt?: Date;
|
|
@@ -1533,15 +1533,15 @@ export declare const CompanyIntegrationRunSchema: z.ZodObject<{
|
|
|
1533
1533
|
ID: z.ZodString;
|
|
1534
1534
|
CompanyIntegrationID: z.ZodString;
|
|
1535
1535
|
RunByUserID: z.ZodString;
|
|
1536
|
-
StartedAt: z.
|
|
1537
|
-
EndedAt: z.
|
|
1536
|
+
StartedAt: z.ZodNullable<z.ZodDate>;
|
|
1537
|
+
EndedAt: z.ZodNullable<z.ZodDate>;
|
|
1538
1538
|
TotalRecords: z.ZodNumber;
|
|
1539
|
-
Comments: z.
|
|
1539
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
1540
1540
|
__mj_CreatedAt: z.ZodDate;
|
|
1541
1541
|
__mj_UpdatedAt: z.ZodDate;
|
|
1542
1542
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"In Progress">, z.ZodLiteral<"Success">, z.ZodLiteral<"Failed">]>;
|
|
1543
|
-
ErrorLog: z.
|
|
1544
|
-
ConfigData: z.
|
|
1543
|
+
ErrorLog: z.ZodNullable<z.ZodString>;
|
|
1544
|
+
ConfigData: z.ZodNullable<z.ZodString>;
|
|
1545
1545
|
Integration: z.ZodString;
|
|
1546
1546
|
Company: z.ZodString;
|
|
1547
1547
|
RunByUser: z.ZodString;
|
|
@@ -1586,25 +1586,25 @@ export declare const CompanyIntegrationSchema: z.ZodObject<{
|
|
|
1586
1586
|
ID: z.ZodString;
|
|
1587
1587
|
CompanyID: z.ZodString;
|
|
1588
1588
|
IntegrationID: z.ZodString;
|
|
1589
|
-
IsActive: z.
|
|
1590
|
-
AccessToken: z.
|
|
1591
|
-
RefreshToken: z.
|
|
1592
|
-
TokenExpirationDate: z.
|
|
1593
|
-
APIKey: z.
|
|
1594
|
-
ExternalSystemID: z.
|
|
1589
|
+
IsActive: z.ZodNullable<z.ZodBoolean>;
|
|
1590
|
+
AccessToken: z.ZodNullable<z.ZodString>;
|
|
1591
|
+
RefreshToken: z.ZodNullable<z.ZodString>;
|
|
1592
|
+
TokenExpirationDate: z.ZodNullable<z.ZodDate>;
|
|
1593
|
+
APIKey: z.ZodNullable<z.ZodString>;
|
|
1594
|
+
ExternalSystemID: z.ZodNullable<z.ZodString>;
|
|
1595
1595
|
IsExternalSystemReadOnly: z.ZodBoolean;
|
|
1596
|
-
ClientID: z.
|
|
1597
|
-
ClientSecret: z.
|
|
1598
|
-
CustomAttribute1: z.
|
|
1596
|
+
ClientID: z.ZodNullable<z.ZodString>;
|
|
1597
|
+
ClientSecret: z.ZodNullable<z.ZodString>;
|
|
1598
|
+
CustomAttribute1: z.ZodNullable<z.ZodString>;
|
|
1599
1599
|
__mj_CreatedAt: z.ZodDate;
|
|
1600
1600
|
__mj_UpdatedAt: z.ZodDate;
|
|
1601
1601
|
Company: z.ZodString;
|
|
1602
1602
|
Integration: z.ZodString;
|
|
1603
|
-
DriverClassName: z.
|
|
1604
|
-
DriverImportPath: z.
|
|
1605
|
-
LastRunID: z.
|
|
1606
|
-
LastRunStartedAt: z.
|
|
1607
|
-
LastRunEndedAt: z.
|
|
1603
|
+
DriverClassName: z.ZodNullable<z.ZodString>;
|
|
1604
|
+
DriverImportPath: z.ZodNullable<z.ZodString>;
|
|
1605
|
+
LastRunID: z.ZodNullable<z.ZodString>;
|
|
1606
|
+
LastRunStartedAt: z.ZodNullable<z.ZodDate>;
|
|
1607
|
+
LastRunEndedAt: z.ZodNullable<z.ZodDate>;
|
|
1608
1608
|
}, "strip", z.ZodTypeAny, {
|
|
1609
1609
|
ID?: string;
|
|
1610
1610
|
__mj_CreatedAt?: Date;
|
|
@@ -1659,7 +1659,7 @@ export type CompanyIntegrationEntityType = z.infer<typeof CompanyIntegrationSche
|
|
|
1659
1659
|
export declare const ContentFileTypeSchema: z.ZodObject<{
|
|
1660
1660
|
ID: z.ZodString;
|
|
1661
1661
|
Name: z.ZodString;
|
|
1662
|
-
FileExtension: z.
|
|
1662
|
+
FileExtension: z.ZodNullable<z.ZodString>;
|
|
1663
1663
|
__mj_CreatedAt: z.ZodDate;
|
|
1664
1664
|
__mj_UpdatedAt: z.ZodDate;
|
|
1665
1665
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1686,7 +1686,7 @@ export declare const ContentItemAttributeSchema: z.ZodObject<{
|
|
|
1686
1686
|
Value: z.ZodString;
|
|
1687
1687
|
__mj_CreatedAt: z.ZodDate;
|
|
1688
1688
|
__mj_UpdatedAt: z.ZodDate;
|
|
1689
|
-
ContentItem: z.
|
|
1689
|
+
ContentItem: z.ZodNullable<z.ZodString>;
|
|
1690
1690
|
}, "strip", z.ZodTypeAny, {
|
|
1691
1691
|
ID?: string;
|
|
1692
1692
|
__mj_CreatedAt?: Date;
|
|
@@ -1714,7 +1714,7 @@ export declare const ContentItemTagSchema: z.ZodObject<{
|
|
|
1714
1714
|
Tag: z.ZodString;
|
|
1715
1715
|
__mj_CreatedAt: z.ZodDate;
|
|
1716
1716
|
__mj_UpdatedAt: z.ZodDate;
|
|
1717
|
-
Item: z.
|
|
1717
|
+
Item: z.ZodNullable<z.ZodString>;
|
|
1718
1718
|
}, "strip", z.ZodTypeAny, {
|
|
1719
1719
|
ID?: string;
|
|
1720
1720
|
__mj_CreatedAt?: Date;
|
|
@@ -1737,17 +1737,17 @@ export type ContentItemTagEntityType = z.infer<typeof ContentItemTagSchema>;
|
|
|
1737
1737
|
export declare const ContentItemSchema: z.ZodObject<{
|
|
1738
1738
|
ID: z.ZodString;
|
|
1739
1739
|
ContentSourceID: z.ZodString;
|
|
1740
|
-
Name: z.
|
|
1741
|
-
Description: z.
|
|
1740
|
+
Name: z.ZodNullable<z.ZodString>;
|
|
1741
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
1742
1742
|
ContentTypeID: z.ZodString;
|
|
1743
1743
|
ContentSourceTypeID: z.ZodString;
|
|
1744
1744
|
ContentFileTypeID: z.ZodString;
|
|
1745
|
-
Checksum: z.
|
|
1745
|
+
Checksum: z.ZodNullable<z.ZodString>;
|
|
1746
1746
|
URL: z.ZodString;
|
|
1747
|
-
Text: z.
|
|
1747
|
+
Text: z.ZodNullable<z.ZodString>;
|
|
1748
1748
|
__mj_CreatedAt: z.ZodDate;
|
|
1749
1749
|
__mj_UpdatedAt: z.ZodDate;
|
|
1750
|
-
ContentSource: z.
|
|
1750
|
+
ContentSource: z.ZodNullable<z.ZodString>;
|
|
1751
1751
|
ContentType: z.ZodString;
|
|
1752
1752
|
ContentSourceType: z.ZodString;
|
|
1753
1753
|
ContentFileType: z.ZodString;
|
|
@@ -1793,13 +1793,13 @@ export type ContentItemEntityType = z.infer<typeof ContentItemSchema>;
|
|
|
1793
1793
|
export declare const ContentProcessRunSchema: z.ZodObject<{
|
|
1794
1794
|
ID: z.ZodString;
|
|
1795
1795
|
SourceID: z.ZodString;
|
|
1796
|
-
StartTime: z.
|
|
1797
|
-
EndTime: z.
|
|
1798
|
-
Status: z.
|
|
1799
|
-
ProcessedItems: z.
|
|
1796
|
+
StartTime: z.ZodNullable<z.ZodDate>;
|
|
1797
|
+
EndTime: z.ZodNullable<z.ZodDate>;
|
|
1798
|
+
Status: z.ZodNullable<z.ZodString>;
|
|
1799
|
+
ProcessedItems: z.ZodNullable<z.ZodNumber>;
|
|
1800
1800
|
__mj_CreatedAt: z.ZodDate;
|
|
1801
1801
|
__mj_UpdatedAt: z.ZodDate;
|
|
1802
|
-
Source: z.
|
|
1802
|
+
Source: z.ZodNullable<z.ZodString>;
|
|
1803
1803
|
}, "strip", z.ZodTypeAny, {
|
|
1804
1804
|
ID?: string;
|
|
1805
1805
|
__mj_CreatedAt?: Date;
|
|
@@ -1832,7 +1832,7 @@ export declare const ContentSourceParamSchema: z.ZodObject<{
|
|
|
1832
1832
|
Value: z.ZodString;
|
|
1833
1833
|
__mj_CreatedAt: z.ZodDate;
|
|
1834
1834
|
__mj_UpdatedAt: z.ZodDate;
|
|
1835
|
-
ContentSource: z.
|
|
1835
|
+
ContentSource: z.ZodNullable<z.ZodString>;
|
|
1836
1836
|
}, "strip", z.ZodTypeAny, {
|
|
1837
1837
|
ID?: string;
|
|
1838
1838
|
__mj_CreatedAt?: Date;
|
|
@@ -1857,9 +1857,9 @@ export type ContentSourceParamEntityType = z.infer<typeof ContentSourceParamSche
|
|
|
1857
1857
|
export declare const ContentSourceTypeParamSchema: z.ZodObject<{
|
|
1858
1858
|
ID: z.ZodString;
|
|
1859
1859
|
Name: z.ZodString;
|
|
1860
|
-
Description: z.
|
|
1861
|
-
Type: z.
|
|
1862
|
-
DefaultValue: z.
|
|
1860
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
1861
|
+
Type: z.ZodNullable<z.ZodString>;
|
|
1862
|
+
DefaultValue: z.ZodNullable<z.ZodString>;
|
|
1863
1863
|
IsRequired: z.ZodBoolean;
|
|
1864
1864
|
__mj_CreatedAt: z.ZodDate;
|
|
1865
1865
|
__mj_UpdatedAt: z.ZodDate;
|
|
@@ -1889,7 +1889,7 @@ export type ContentSourceTypeParamEntityType = z.infer<typeof ContentSourceTypeP
|
|
|
1889
1889
|
export declare const ContentSourceTypeSchema: z.ZodObject<{
|
|
1890
1890
|
ID: z.ZodString;
|
|
1891
1891
|
Name: z.ZodString;
|
|
1892
|
-
Description: z.
|
|
1892
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
1893
1893
|
__mj_CreatedAt: z.ZodDate;
|
|
1894
1894
|
__mj_UpdatedAt: z.ZodDate;
|
|
1895
1895
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1911,7 +1911,7 @@ export type ContentSourceTypeEntityType = z.infer<typeof ContentSourceTypeSchema
|
|
|
1911
1911
|
*/
|
|
1912
1912
|
export declare const ContentSourceSchema: z.ZodObject<{
|
|
1913
1913
|
ID: z.ZodString;
|
|
1914
|
-
Name: z.
|
|
1914
|
+
Name: z.ZodNullable<z.ZodString>;
|
|
1915
1915
|
ContentTypeID: z.ZodString;
|
|
1916
1916
|
ContentSourceTypeID: z.ZodString;
|
|
1917
1917
|
ContentFileTypeID: z.ZodString;
|
|
@@ -1955,7 +1955,7 @@ export declare const ContentTypeAttributeSchema: z.ZodObject<{
|
|
|
1955
1955
|
ContentTypeID: z.ZodString;
|
|
1956
1956
|
Name: z.ZodString;
|
|
1957
1957
|
Prompt: z.ZodString;
|
|
1958
|
-
Description: z.
|
|
1958
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
1959
1959
|
__mj_CreatedAt: z.ZodDate;
|
|
1960
1960
|
__mj_UpdatedAt: z.ZodDate;
|
|
1961
1961
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1982,7 +1982,7 @@ export type ContentTypeAttributeEntityType = z.infer<typeof ContentTypeAttribute
|
|
|
1982
1982
|
export declare const ContentTypeSchema: z.ZodObject<{
|
|
1983
1983
|
ID: z.ZodString;
|
|
1984
1984
|
Name: z.ZodString;
|
|
1985
|
-
Description: z.
|
|
1985
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
1986
1986
|
AIModelID: z.ZodString;
|
|
1987
1987
|
MinTags: z.ZodNumber;
|
|
1988
1988
|
MaxTags: z.ZodNumber;
|
|
@@ -2017,20 +2017,20 @@ export type ContentTypeEntityType = z.infer<typeof ContentTypeSchema>;
|
|
|
2017
2017
|
export declare const ConversationDetailSchema: z.ZodObject<{
|
|
2018
2018
|
ID: z.ZodString;
|
|
2019
2019
|
ConversationID: z.ZodString;
|
|
2020
|
-
ExternalID: z.
|
|
2020
|
+
ExternalID: z.ZodNullable<z.ZodString>;
|
|
2021
2021
|
Role: z.ZodUnion<[z.ZodLiteral<"User">, z.ZodLiteral<"AI">, z.ZodLiteral<"Error">]>;
|
|
2022
2022
|
Message: z.ZodString;
|
|
2023
|
-
Error: z.
|
|
2023
|
+
Error: z.ZodNullable<z.ZodString>;
|
|
2024
2024
|
HiddenToUser: z.ZodBoolean;
|
|
2025
2025
|
__mj_CreatedAt: z.ZodDate;
|
|
2026
2026
|
__mj_UpdatedAt: z.ZodDate;
|
|
2027
|
-
UserRating: z.
|
|
2028
|
-
UserFeedback: z.
|
|
2029
|
-
ReflectionInsights: z.
|
|
2030
|
-
SummaryOfEarlierConversation: z.
|
|
2031
|
-
UserID: z.
|
|
2032
|
-
Conversation: z.
|
|
2033
|
-
User: z.
|
|
2027
|
+
UserRating: z.ZodNullable<z.ZodNumber>;
|
|
2028
|
+
UserFeedback: z.ZodNullable<z.ZodString>;
|
|
2029
|
+
ReflectionInsights: z.ZodNullable<z.ZodString>;
|
|
2030
|
+
SummaryOfEarlierConversation: z.ZodNullable<z.ZodString>;
|
|
2031
|
+
UserID: z.ZodNullable<z.ZodString>;
|
|
2032
|
+
Conversation: z.ZodNullable<z.ZodString>;
|
|
2033
|
+
User: z.ZodNullable<z.ZodString>;
|
|
2034
2034
|
}, "strip", z.ZodTypeAny, {
|
|
2035
2035
|
Error?: string;
|
|
2036
2036
|
ID?: string;
|
|
@@ -2073,19 +2073,19 @@ export type ConversationDetailEntityType = z.infer<typeof ConversationDetailSche
|
|
|
2073
2073
|
export declare const ConversationSchema: z.ZodObject<{
|
|
2074
2074
|
ID: z.ZodString;
|
|
2075
2075
|
UserID: z.ZodString;
|
|
2076
|
-
ExternalID: z.
|
|
2077
|
-
Name: z.
|
|
2078
|
-
Description: z.
|
|
2076
|
+
ExternalID: z.ZodNullable<z.ZodString>;
|
|
2077
|
+
Name: z.ZodNullable<z.ZodString>;
|
|
2078
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
2079
2079
|
Type: z.ZodString;
|
|
2080
2080
|
IsArchived: z.ZodBoolean;
|
|
2081
|
-
LinkedEntityID: z.
|
|
2082
|
-
LinkedRecordID: z.
|
|
2083
|
-
DataContextID: z.
|
|
2081
|
+
LinkedEntityID: z.ZodNullable<z.ZodString>;
|
|
2082
|
+
LinkedRecordID: z.ZodNullable<z.ZodString>;
|
|
2083
|
+
DataContextID: z.ZodNullable<z.ZodString>;
|
|
2084
2084
|
__mj_CreatedAt: z.ZodDate;
|
|
2085
2085
|
__mj_UpdatedAt: z.ZodDate;
|
|
2086
2086
|
User: z.ZodString;
|
|
2087
|
-
LinkedEntity: z.
|
|
2088
|
-
DataContext: z.
|
|
2087
|
+
LinkedEntity: z.ZodNullable<z.ZodString>;
|
|
2088
|
+
DataContext: z.ZodNullable<z.ZodString>;
|
|
2089
2089
|
}, "strip", z.ZodTypeAny, {
|
|
2090
2090
|
ID?: string;
|
|
2091
2091
|
__mj_CreatedAt?: Date;
|
|
@@ -2126,12 +2126,12 @@ export type ConversationEntityType = z.infer<typeof ConversationSchema>;
|
|
|
2126
2126
|
export declare const DashboardCategorySchema: z.ZodObject<{
|
|
2127
2127
|
ID: z.ZodString;
|
|
2128
2128
|
Name: z.ZodString;
|
|
2129
|
-
Description: z.
|
|
2130
|
-
ParentID: z.
|
|
2129
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
2130
|
+
ParentID: z.ZodNullable<z.ZodString>;
|
|
2131
2131
|
UserID: z.ZodString;
|
|
2132
2132
|
__mj_CreatedAt: z.ZodDate;
|
|
2133
2133
|
__mj_UpdatedAt: z.ZodDate;
|
|
2134
|
-
Parent: z.
|
|
2134
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
2135
2135
|
User: z.ZodString;
|
|
2136
2136
|
}, "strip", z.ZodTypeAny, {
|
|
2137
2137
|
ID?: string;
|
|
@@ -2161,14 +2161,14 @@ export type DashboardCategoryEntityType = z.infer<typeof DashboardCategorySchema
|
|
|
2161
2161
|
export declare const DashboardSchema: z.ZodObject<{
|
|
2162
2162
|
ID: z.ZodString;
|
|
2163
2163
|
Name: z.ZodString;
|
|
2164
|
-
Description: z.
|
|
2164
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
2165
2165
|
UserID: z.ZodString;
|
|
2166
|
-
CategoryID: z.
|
|
2166
|
+
CategoryID: z.ZodNullable<z.ZodString>;
|
|
2167
2167
|
UIConfigDetails: z.ZodString;
|
|
2168
2168
|
__mj_CreatedAt: z.ZodDate;
|
|
2169
2169
|
__mj_UpdatedAt: z.ZodDate;
|
|
2170
2170
|
User: z.ZodString;
|
|
2171
|
-
Category: z.
|
|
2171
|
+
Category: z.ZodNullable<z.ZodString>;
|
|
2172
2172
|
}, "strip", z.ZodTypeAny, {
|
|
2173
2173
|
Category?: string;
|
|
2174
2174
|
ID?: string;
|
|
@@ -2200,20 +2200,20 @@ export declare const DataContextItemSchema: z.ZodObject<{
|
|
|
2200
2200
|
ID: z.ZodString;
|
|
2201
2201
|
DataContextID: z.ZodString;
|
|
2202
2202
|
Type: z.ZodUnion<[z.ZodLiteral<"view">, z.ZodLiteral<"sql">, z.ZodLiteral<"query">, z.ZodLiteral<"single_record">, z.ZodLiteral<"full_entity">]>;
|
|
2203
|
-
ViewID: z.
|
|
2204
|
-
QueryID: z.
|
|
2205
|
-
EntityID: z.
|
|
2206
|
-
RecordID: z.
|
|
2207
|
-
SQL: z.
|
|
2208
|
-
DataJSON: z.
|
|
2209
|
-
LastRefreshedAt: z.
|
|
2203
|
+
ViewID: z.ZodNullable<z.ZodString>;
|
|
2204
|
+
QueryID: z.ZodNullable<z.ZodString>;
|
|
2205
|
+
EntityID: z.ZodNullable<z.ZodString>;
|
|
2206
|
+
RecordID: z.ZodNullable<z.ZodString>;
|
|
2207
|
+
SQL: z.ZodNullable<z.ZodString>;
|
|
2208
|
+
DataJSON: z.ZodNullable<z.ZodString>;
|
|
2209
|
+
LastRefreshedAt: z.ZodNullable<z.ZodDate>;
|
|
2210
2210
|
__mj_CreatedAt: z.ZodDate;
|
|
2211
2211
|
__mj_UpdatedAt: z.ZodDate;
|
|
2212
|
-
Description: z.
|
|
2212
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
2213
2213
|
DataContext: z.ZodString;
|
|
2214
|
-
View: z.
|
|
2215
|
-
Query: z.
|
|
2216
|
-
Entity: z.
|
|
2214
|
+
View: z.ZodNullable<z.ZodString>;
|
|
2215
|
+
Query: z.ZodNullable<z.ZodString>;
|
|
2216
|
+
Entity: z.ZodNullable<z.ZodString>;
|
|
2217
2217
|
}, "strip", z.ZodTypeAny, {
|
|
2218
2218
|
ID?: string;
|
|
2219
2219
|
__mj_CreatedAt?: Date;
|
|
@@ -2258,9 +2258,9 @@ export type DataContextItemEntityType = z.infer<typeof DataContextItemSchema>;
|
|
|
2258
2258
|
export declare const DataContextSchema: z.ZodObject<{
|
|
2259
2259
|
ID: z.ZodString;
|
|
2260
2260
|
Name: z.ZodString;
|
|
2261
|
-
Description: z.
|
|
2261
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
2262
2262
|
UserID: z.ZodString;
|
|
2263
|
-
LastRefreshedAt: z.
|
|
2263
|
+
LastRefreshedAt: z.ZodNullable<z.ZodDate>;
|
|
2264
2264
|
__mj_CreatedAt: z.ZodDate;
|
|
2265
2265
|
__mj_UpdatedAt: z.ZodDate;
|
|
2266
2266
|
User: z.ZodString;
|
|
@@ -2293,12 +2293,12 @@ export declare const DatasetItemSchema: z.ZodObject<{
|
|
|
2293
2293
|
DatasetID: z.ZodString;
|
|
2294
2294
|
Sequence: z.ZodNumber;
|
|
2295
2295
|
EntityID: z.ZodString;
|
|
2296
|
-
WhereClause: z.
|
|
2296
|
+
WhereClause: z.ZodNullable<z.ZodString>;
|
|
2297
2297
|
DateFieldToCheck: z.ZodString;
|
|
2298
|
-
Description: z.
|
|
2298
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
2299
2299
|
__mj_CreatedAt: z.ZodDate;
|
|
2300
2300
|
__mj_UpdatedAt: z.ZodDate;
|
|
2301
|
-
Columns: z.
|
|
2301
|
+
Columns: z.ZodNullable<z.ZodString>;
|
|
2302
2302
|
Dataset: z.ZodString;
|
|
2303
2303
|
Entity: z.ZodString;
|
|
2304
2304
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2337,7 +2337,7 @@ export type DatasetItemEntityType = z.infer<typeof DatasetItemSchema>;
|
|
|
2337
2337
|
export declare const DatasetSchema: z.ZodObject<{
|
|
2338
2338
|
ID: z.ZodString;
|
|
2339
2339
|
Name: z.ZodString;
|
|
2340
|
-
Description: z.
|
|
2340
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
2341
2341
|
__mj_CreatedAt: z.ZodDate;
|
|
2342
2342
|
__mj_UpdatedAt: z.ZodDate;
|
|
2343
2343
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2366,7 +2366,7 @@ export declare const DuplicateRunDetailMatchSchema: z.ZodObject<{
|
|
|
2366
2366
|
MatchedAt: z.ZodDate;
|
|
2367
2367
|
Action: z.ZodString;
|
|
2368
2368
|
ApprovalStatus: z.ZodUnion<[z.ZodLiteral<"Rejected">, z.ZodLiteral<"Approved">, z.ZodLiteral<"Pending">]>;
|
|
2369
|
-
RecordMergeLogID: z.
|
|
2369
|
+
RecordMergeLogID: z.ZodNullable<z.ZodString>;
|
|
2370
2370
|
MergeStatus: z.ZodUnion<[z.ZodLiteral<"Error">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Pending">]>;
|
|
2371
2371
|
MergedAt: z.ZodDate;
|
|
2372
2372
|
__mj_CreatedAt: z.ZodDate;
|
|
@@ -2409,10 +2409,10 @@ export declare const DuplicateRunDetailSchema: z.ZodObject<{
|
|
|
2409
2409
|
DuplicateRunID: z.ZodString;
|
|
2410
2410
|
RecordID: z.ZodString;
|
|
2411
2411
|
MatchStatus: z.ZodUnion<[z.ZodLiteral<"Error">, z.ZodLiteral<"Skipped">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Pending">]>;
|
|
2412
|
-
SkippedReason: z.
|
|
2413
|
-
MatchErrorMessage: z.
|
|
2412
|
+
SkippedReason: z.ZodNullable<z.ZodString>;
|
|
2413
|
+
MatchErrorMessage: z.ZodNullable<z.ZodString>;
|
|
2414
2414
|
MergeStatus: z.ZodUnion<[z.ZodLiteral<"Error">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Pending">, z.ZodLiteral<"Not Applicable">]>;
|
|
2415
|
-
MergeErrorMessage: z.
|
|
2415
|
+
MergeErrorMessage: z.ZodNullable<z.ZodString>;
|
|
2416
2416
|
__mj_CreatedAt: z.ZodDate;
|
|
2417
2417
|
__mj_UpdatedAt: z.ZodDate;
|
|
2418
2418
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2448,18 +2448,18 @@ export declare const DuplicateRunSchema: z.ZodObject<{
|
|
|
2448
2448
|
StartedByUserID: z.ZodString;
|
|
2449
2449
|
SourceListID: z.ZodString;
|
|
2450
2450
|
StartedAt: z.ZodDate;
|
|
2451
|
-
EndedAt: z.
|
|
2451
|
+
EndedAt: z.ZodNullable<z.ZodDate>;
|
|
2452
2452
|
ApprovalStatus: z.ZodUnion<[z.ZodLiteral<"Rejected">, z.ZodLiteral<"Approved">, z.ZodLiteral<"Pending">]>;
|
|
2453
|
-
ApprovalComments: z.
|
|
2454
|
-
ApprovedByUserID: z.
|
|
2453
|
+
ApprovalComments: z.ZodNullable<z.ZodString>;
|
|
2454
|
+
ApprovedByUserID: z.ZodNullable<z.ZodString>;
|
|
2455
2455
|
ProcessingStatus: z.ZodUnion<[z.ZodLiteral<"Failed">, z.ZodLiteral<"Complete">, z.ZodLiteral<"In Progress">, z.ZodLiteral<"Pending">]>;
|
|
2456
|
-
ProcessingErrorMessage: z.
|
|
2456
|
+
ProcessingErrorMessage: z.ZodNullable<z.ZodString>;
|
|
2457
2457
|
__mj_CreatedAt: z.ZodDate;
|
|
2458
2458
|
__mj_UpdatedAt: z.ZodDate;
|
|
2459
2459
|
Entity: z.ZodString;
|
|
2460
2460
|
StartedByUser: z.ZodString;
|
|
2461
2461
|
SourceList: z.ZodString;
|
|
2462
|
-
ApprovedByUser: z.
|
|
2462
|
+
ApprovedByUser: z.ZodNullable<z.ZodString>;
|
|
2463
2463
|
}, "strip", z.ZodTypeAny, {
|
|
2464
2464
|
ID?: string;
|
|
2465
2465
|
__mj_CreatedAt?: Date;
|
|
@@ -2588,18 +2588,18 @@ export declare const EmployeeSchema: z.ZodObject<{
|
|
|
2588
2588
|
FirstName: z.ZodString;
|
|
2589
2589
|
LastName: z.ZodString;
|
|
2590
2590
|
CompanyID: z.ZodString;
|
|
2591
|
-
SupervisorID: z.
|
|
2592
|
-
Title: z.
|
|
2591
|
+
SupervisorID: z.ZodNullable<z.ZodString>;
|
|
2592
|
+
Title: z.ZodNullable<z.ZodString>;
|
|
2593
2593
|
Email: z.ZodString;
|
|
2594
|
-
Phone: z.
|
|
2594
|
+
Phone: z.ZodNullable<z.ZodString>;
|
|
2595
2595
|
Active: z.ZodBoolean;
|
|
2596
2596
|
__mj_CreatedAt: z.ZodDate;
|
|
2597
2597
|
__mj_UpdatedAt: z.ZodDate;
|
|
2598
|
-
FirstLast: z.
|
|
2599
|
-
Supervisor: z.
|
|
2600
|
-
SupervisorFirstName: z.
|
|
2601
|
-
SupervisorLastName: z.
|
|
2602
|
-
SupervisorEmail: z.
|
|
2598
|
+
FirstLast: z.ZodNullable<z.ZodString>;
|
|
2599
|
+
Supervisor: z.ZodNullable<z.ZodString>;
|
|
2600
|
+
SupervisorFirstName: z.ZodNullable<z.ZodString>;
|
|
2601
|
+
SupervisorLastName: z.ZodNullable<z.ZodString>;
|
|
2602
|
+
SupervisorEmail: z.ZodNullable<z.ZodString>;
|
|
2603
2603
|
}, "strip", z.ZodTypeAny, {
|
|
2604
2604
|
Active?: boolean;
|
|
2605
2605
|
ID?: string;
|
|
@@ -2643,10 +2643,10 @@ export type EmployeeEntityType = z.infer<typeof EmployeeSchema>;
|
|
|
2643
2643
|
*/
|
|
2644
2644
|
export declare const EntitySchema: z.ZodObject<{
|
|
2645
2645
|
ID: z.ZodString;
|
|
2646
|
-
ParentID: z.
|
|
2646
|
+
ParentID: z.ZodNullable<z.ZodString>;
|
|
2647
2647
|
Name: z.ZodString;
|
|
2648
|
-
NameSuffix: z.
|
|
2649
|
-
Description: z.
|
|
2648
|
+
NameSuffix: z.ZodNullable<z.ZodString>;
|
|
2649
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
2650
2650
|
AutoUpdateDescription: z.ZodBoolean;
|
|
2651
2651
|
BaseTable: z.ZodString;
|
|
2652
2652
|
BaseView: z.ZodString;
|
|
@@ -2664,42 +2664,42 @@ export declare const EntitySchema: z.ZodObject<{
|
|
|
2664
2664
|
CustomResolverAPI: z.ZodBoolean;
|
|
2665
2665
|
AllowUserSearchAPI: z.ZodBoolean;
|
|
2666
2666
|
FullTextSearchEnabled: z.ZodBoolean;
|
|
2667
|
-
FullTextCatalog: z.
|
|
2667
|
+
FullTextCatalog: z.ZodNullable<z.ZodString>;
|
|
2668
2668
|
FullTextCatalogGenerated: z.ZodBoolean;
|
|
2669
|
-
FullTextIndex: z.
|
|
2669
|
+
FullTextIndex: z.ZodNullable<z.ZodString>;
|
|
2670
2670
|
FullTextIndexGenerated: z.ZodBoolean;
|
|
2671
|
-
FullTextSearchFunction: z.
|
|
2671
|
+
FullTextSearchFunction: z.ZodNullable<z.ZodString>;
|
|
2672
2672
|
FullTextSearchFunctionGenerated: z.ZodBoolean;
|
|
2673
|
-
UserViewMaxRows: z.
|
|
2674
|
-
spCreate: z.
|
|
2675
|
-
spUpdate: z.
|
|
2676
|
-
spDelete: z.
|
|
2673
|
+
UserViewMaxRows: z.ZodNullable<z.ZodNumber>;
|
|
2674
|
+
spCreate: z.ZodNullable<z.ZodString>;
|
|
2675
|
+
spUpdate: z.ZodNullable<z.ZodString>;
|
|
2676
|
+
spDelete: z.ZodNullable<z.ZodString>;
|
|
2677
2677
|
spCreateGenerated: z.ZodBoolean;
|
|
2678
2678
|
spUpdateGenerated: z.ZodBoolean;
|
|
2679
2679
|
spDeleteGenerated: z.ZodBoolean;
|
|
2680
2680
|
CascadeDeletes: z.ZodBoolean;
|
|
2681
2681
|
DeleteType: z.ZodUnion<[z.ZodLiteral<"Hard">, z.ZodLiteral<"Soft">]>;
|
|
2682
2682
|
AllowRecordMerge: z.ZodBoolean;
|
|
2683
|
-
spMatch: z.
|
|
2683
|
+
spMatch: z.ZodNullable<z.ZodString>;
|
|
2684
2684
|
RelationshipDefaultDisplayType: z.ZodUnion<[z.ZodLiteral<"Search">, z.ZodLiteral<"Dropdown">]>;
|
|
2685
2685
|
UserFormGenerated: z.ZodBoolean;
|
|
2686
|
-
EntityObjectSubclassName: z.
|
|
2687
|
-
EntityObjectSubclassImport: z.
|
|
2688
|
-
PreferredCommunicationField: z.
|
|
2689
|
-
Icon: z.
|
|
2686
|
+
EntityObjectSubclassName: z.ZodNullable<z.ZodString>;
|
|
2687
|
+
EntityObjectSubclassImport: z.ZodNullable<z.ZodString>;
|
|
2688
|
+
PreferredCommunicationField: z.ZodNullable<z.ZodString>;
|
|
2689
|
+
Icon: z.ZodNullable<z.ZodString>;
|
|
2690
2690
|
__mj_CreatedAt: z.ZodDate;
|
|
2691
2691
|
__mj_UpdatedAt: z.ZodDate;
|
|
2692
|
-
ScopeDefault: z.
|
|
2692
|
+
ScopeDefault: z.ZodNullable<z.ZodString>;
|
|
2693
2693
|
RowsToPackWithSchema: z.ZodUnion<[z.ZodLiteral<"None">, z.ZodLiteral<"Sample">, z.ZodLiteral<"All">]>;
|
|
2694
2694
|
RowsToPackSampleMethod: z.ZodUnion<[z.ZodLiteral<"random">, z.ZodLiteral<"top n">, z.ZodLiteral<"bottom n">]>;
|
|
2695
2695
|
RowsToPackSampleCount: z.ZodNumber;
|
|
2696
|
-
RowsToPackSampleOrder: z.
|
|
2697
|
-
CodeName: z.
|
|
2698
|
-
ClassName: z.
|
|
2699
|
-
BaseTableCodeName: z.
|
|
2700
|
-
ParentEntity: z.
|
|
2701
|
-
ParentBaseTable: z.
|
|
2702
|
-
ParentBaseView: z.
|
|
2696
|
+
RowsToPackSampleOrder: z.ZodNullable<z.ZodString>;
|
|
2697
|
+
CodeName: z.ZodNullable<z.ZodString>;
|
|
2698
|
+
ClassName: z.ZodNullable<z.ZodString>;
|
|
2699
|
+
BaseTableCodeName: z.ZodNullable<z.ZodString>;
|
|
2700
|
+
ParentEntity: z.ZodNullable<z.ZodString>;
|
|
2701
|
+
ParentBaseTable: z.ZodNullable<z.ZodString>;
|
|
2702
|
+
ParentBaseView: z.ZodNullable<z.ZodString>;
|
|
2703
2703
|
}, "strip", z.ZodTypeAny, {
|
|
2704
2704
|
ID?: string;
|
|
2705
2705
|
__mj_CreatedAt?: Date;
|
|
@@ -2855,7 +2855,7 @@ export type EntityActionFilterEntityType = z.infer<typeof EntityActionFilterSche
|
|
|
2855
2855
|
export declare const EntityActionInvocationTypeSchema: z.ZodObject<{
|
|
2856
2856
|
ID: z.ZodString;
|
|
2857
2857
|
Name: z.ZodString;
|
|
2858
|
-
Description: z.
|
|
2858
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
2859
2859
|
DisplaySequence: z.ZodNumber;
|
|
2860
2860
|
__mj_CreatedAt: z.ZodDate;
|
|
2861
2861
|
__mj_UpdatedAt: z.ZodDate;
|
|
@@ -2912,8 +2912,8 @@ export declare const EntityActionParamSchema: z.ZodObject<{
|
|
|
2912
2912
|
EntityActionID: z.ZodString;
|
|
2913
2913
|
ActionParamID: z.ZodString;
|
|
2914
2914
|
ValueType: z.ZodUnion<[z.ZodLiteral<"Static">, z.ZodLiteral<"Entity Object">, z.ZodLiteral<"Script">, z.ZodLiteral<"Entity Field">]>;
|
|
2915
|
-
Value: z.
|
|
2916
|
-
Comments: z.
|
|
2915
|
+
Value: z.ZodNullable<z.ZodString>;
|
|
2916
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
2917
2917
|
__mj_CreatedAt: z.ZodDate;
|
|
2918
2918
|
__mj_UpdatedAt: z.ZodDate;
|
|
2919
2919
|
ActionParam: z.ZodString;
|
|
@@ -2980,20 +2980,20 @@ export declare const EntityAIActionSchema: z.ZodObject<{
|
|
|
2980
2980
|
AIModelID: z.ZodString;
|
|
2981
2981
|
AIActionID: z.ZodString;
|
|
2982
2982
|
Name: z.ZodString;
|
|
2983
|
-
Prompt: z.
|
|
2983
|
+
Prompt: z.ZodNullable<z.ZodString>;
|
|
2984
2984
|
TriggerEvent: z.ZodUnion<[z.ZodLiteral<"after save">, z.ZodLiteral<"before save">]>;
|
|
2985
2985
|
UserMessage: z.ZodString;
|
|
2986
2986
|
OutputType: z.ZodUnion<[z.ZodLiteral<"entity">, z.ZodLiteral<"field">]>;
|
|
2987
|
-
OutputField: z.
|
|
2987
|
+
OutputField: z.ZodNullable<z.ZodString>;
|
|
2988
2988
|
SkipIfOutputFieldNotEmpty: z.ZodBoolean;
|
|
2989
|
-
OutputEntityID: z.
|
|
2990
|
-
Comments: z.
|
|
2989
|
+
OutputEntityID: z.ZodNullable<z.ZodString>;
|
|
2990
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
2991
2991
|
__mj_CreatedAt: z.ZodDate;
|
|
2992
2992
|
__mj_UpdatedAt: z.ZodDate;
|
|
2993
2993
|
Entity: z.ZodString;
|
|
2994
2994
|
AIModel: z.ZodString;
|
|
2995
2995
|
AIAction: z.ZodString;
|
|
2996
|
-
OutputEntity: z.
|
|
2996
|
+
OutputEntity: z.ZodNullable<z.ZodString>;
|
|
2997
2997
|
}, "strip", z.ZodTypeAny, {
|
|
2998
2998
|
ID?: string;
|
|
2999
2999
|
Comments?: string;
|
|
@@ -3100,8 +3100,8 @@ export type EntityCommunicationMessageTypeEntityType = z.infer<typeof EntityComm
|
|
|
3100
3100
|
export declare const EntityDocumentRunSchema: z.ZodObject<{
|
|
3101
3101
|
ID: z.ZodString;
|
|
3102
3102
|
EntityDocumentID: z.ZodString;
|
|
3103
|
-
StartedAt: z.
|
|
3104
|
-
EndedAt: z.
|
|
3103
|
+
StartedAt: z.ZodNullable<z.ZodDate>;
|
|
3104
|
+
EndedAt: z.ZodNullable<z.ZodDate>;
|
|
3105
3105
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Failed">]>;
|
|
3106
3106
|
__mj_CreatedAt: z.ZodDate;
|
|
3107
3107
|
__mj_UpdatedAt: z.ZodDate;
|
|
@@ -3134,7 +3134,7 @@ export declare const EntityDocumentSettingSchema: z.ZodObject<{
|
|
|
3134
3134
|
EntityDocumentID: z.ZodString;
|
|
3135
3135
|
Name: z.ZodString;
|
|
3136
3136
|
Value: z.ZodString;
|
|
3137
|
-
Comments: z.
|
|
3137
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
3138
3138
|
__mj_CreatedAt: z.ZodDate;
|
|
3139
3139
|
__mj_UpdatedAt: z.ZodDate;
|
|
3140
3140
|
EntityDocument: z.ZodString;
|
|
@@ -3164,7 +3164,7 @@ export type EntityDocumentSettingEntityType = z.infer<typeof EntityDocumentSetti
|
|
|
3164
3164
|
export declare const EntityDocumentTypeSchema: z.ZodObject<{
|
|
3165
3165
|
ID: z.ZodString;
|
|
3166
3166
|
Name: z.ZodString;
|
|
3167
|
-
Description: z.
|
|
3167
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
3168
3168
|
__mj_CreatedAt: z.ZodDate;
|
|
3169
3169
|
__mj_UpdatedAt: z.ZodDate;
|
|
3170
3170
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3248,8 +3248,8 @@ export declare const EntityFieldValueSchema: z.ZodObject<{
|
|
|
3248
3248
|
EntityFieldID: z.ZodString;
|
|
3249
3249
|
Sequence: z.ZodNumber;
|
|
3250
3250
|
Value: z.ZodString;
|
|
3251
|
-
Code: z.
|
|
3252
|
-
Description: z.
|
|
3251
|
+
Code: z.ZodNullable<z.ZodString>;
|
|
3252
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
3253
3253
|
__mj_CreatedAt: z.ZodDate;
|
|
3254
3254
|
__mj_UpdatedAt: z.ZodDate;
|
|
3255
3255
|
EntityField: z.ZodString;
|
|
@@ -3289,62 +3289,62 @@ export declare const EntityFieldSchema: z.ZodObject<{
|
|
|
3289
3289
|
EntityID: z.ZodString;
|
|
3290
3290
|
Sequence: z.ZodNumber;
|
|
3291
3291
|
Name: z.ZodString;
|
|
3292
|
-
DisplayName: z.
|
|
3293
|
-
Description: z.
|
|
3292
|
+
DisplayName: z.ZodNullable<z.ZodString>;
|
|
3293
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
3294
3294
|
AutoUpdateDescription: z.ZodBoolean;
|
|
3295
3295
|
IsPrimaryKey: z.ZodBoolean;
|
|
3296
3296
|
IsUnique: z.ZodBoolean;
|
|
3297
|
-
Category: z.
|
|
3297
|
+
Category: z.ZodNullable<z.ZodString>;
|
|
3298
3298
|
Type: z.ZodString;
|
|
3299
|
-
Length: z.
|
|
3300
|
-
Precision: z.
|
|
3301
|
-
Scale: z.
|
|
3299
|
+
Length: z.ZodNullable<z.ZodNumber>;
|
|
3300
|
+
Precision: z.ZodNullable<z.ZodNumber>;
|
|
3301
|
+
Scale: z.ZodNullable<z.ZodNumber>;
|
|
3302
3302
|
AllowsNull: z.ZodBoolean;
|
|
3303
|
-
DefaultValue: z.
|
|
3303
|
+
DefaultValue: z.ZodNullable<z.ZodString>;
|
|
3304
3304
|
AutoIncrement: z.ZodBoolean;
|
|
3305
3305
|
ValueListType: z.ZodUnion<[z.ZodLiteral<"None">, z.ZodLiteral<"List">, z.ZodLiteral<"ListOrUserEntry">]>;
|
|
3306
|
-
ExtendedType: z.
|
|
3307
|
-
CodeType: z.
|
|
3306
|
+
ExtendedType: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Email">, z.ZodLiteral<"URL">, z.ZodLiteral<"Tel">, z.ZodLiteral<"SMS">, z.ZodLiteral<"Geo">, z.ZodLiteral<"WhatsApp">, z.ZodLiteral<"FaceTime">, z.ZodLiteral<"Skype">, z.ZodLiteral<"SIP">, z.ZodLiteral<"MSTeams">, z.ZodLiteral<"ZoomMtg">, z.ZodLiteral<"Other">, z.ZodLiteral<"Code">]>>;
|
|
3307
|
+
CodeType: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"TypeScript">, z.ZodLiteral<"SQL">, z.ZodLiteral<"HTML">, z.ZodLiteral<"CSS">, z.ZodLiteral<"JavaScript">, z.ZodLiteral<"Other">]>>;
|
|
3308
3308
|
DefaultInView: z.ZodBoolean;
|
|
3309
|
-
ViewCellTemplate: z.
|
|
3310
|
-
DefaultColumnWidth: z.
|
|
3309
|
+
ViewCellTemplate: z.ZodNullable<z.ZodString>;
|
|
3310
|
+
DefaultColumnWidth: z.ZodNullable<z.ZodNumber>;
|
|
3311
3311
|
AllowUpdateAPI: z.ZodBoolean;
|
|
3312
3312
|
AllowUpdateInView: z.ZodBoolean;
|
|
3313
3313
|
IncludeInUserSearchAPI: z.ZodBoolean;
|
|
3314
3314
|
FullTextSearchEnabled: z.ZodBoolean;
|
|
3315
|
-
UserSearchParamFormatAPI: z.
|
|
3315
|
+
UserSearchParamFormatAPI: z.ZodNullable<z.ZodString>;
|
|
3316
3316
|
IncludeInGeneratedForm: z.ZodBoolean;
|
|
3317
3317
|
GeneratedFormSection: z.ZodUnion<[z.ZodLiteral<"Top">, z.ZodLiteral<"Category">, z.ZodLiteral<"Details">]>;
|
|
3318
3318
|
IsVirtual: z.ZodBoolean;
|
|
3319
3319
|
IsNameField: z.ZodBoolean;
|
|
3320
|
-
RelatedEntityID: z.
|
|
3321
|
-
RelatedEntityFieldName: z.
|
|
3320
|
+
RelatedEntityID: z.ZodNullable<z.ZodString>;
|
|
3321
|
+
RelatedEntityFieldName: z.ZodNullable<z.ZodString>;
|
|
3322
3322
|
IncludeRelatedEntityNameFieldInBaseView: z.ZodBoolean;
|
|
3323
|
-
RelatedEntityNameFieldMap: z.
|
|
3323
|
+
RelatedEntityNameFieldMap: z.ZodNullable<z.ZodString>;
|
|
3324
3324
|
RelatedEntityDisplayType: z.ZodString;
|
|
3325
|
-
EntityIDFieldName: z.
|
|
3325
|
+
EntityIDFieldName: z.ZodNullable<z.ZodString>;
|
|
3326
3326
|
__mj_CreatedAt: z.ZodDate;
|
|
3327
3327
|
__mj_UpdatedAt: z.ZodDate;
|
|
3328
|
-
ScopeDefault: z.
|
|
3328
|
+
ScopeDefault: z.ZodNullable<z.ZodString>;
|
|
3329
3329
|
AutoUpdateRelatedEntityInfo: z.ZodBoolean;
|
|
3330
3330
|
ValuesToPackWithSchema: z.ZodUnion<[z.ZodLiteral<"Auto">, z.ZodLiteral<"None">, z.ZodLiteral<"All">]>;
|
|
3331
|
-
GeneratedValidationFunctionName: z.
|
|
3332
|
-
GeneratedValidationFunctionDescription: z.
|
|
3333
|
-
GeneratedValidationFunctionCode: z.
|
|
3334
|
-
GeneratedValidationFunctionCheckConstraint: z.
|
|
3335
|
-
FieldCodeName: z.
|
|
3331
|
+
GeneratedValidationFunctionName: z.ZodNullable<z.ZodString>;
|
|
3332
|
+
GeneratedValidationFunctionDescription: z.ZodNullable<z.ZodString>;
|
|
3333
|
+
GeneratedValidationFunctionCode: z.ZodNullable<z.ZodString>;
|
|
3334
|
+
GeneratedValidationFunctionCheckConstraint: z.ZodNullable<z.ZodString>;
|
|
3335
|
+
FieldCodeName: z.ZodNullable<z.ZodString>;
|
|
3336
3336
|
Entity: z.ZodString;
|
|
3337
3337
|
SchemaName: z.ZodString;
|
|
3338
3338
|
BaseTable: z.ZodString;
|
|
3339
3339
|
BaseView: z.ZodString;
|
|
3340
|
-
EntityCodeName: z.
|
|
3341
|
-
EntityClassName: z.
|
|
3342
|
-
RelatedEntity: z.
|
|
3343
|
-
RelatedEntitySchemaName: z.
|
|
3344
|
-
RelatedEntityBaseTable: z.
|
|
3345
|
-
RelatedEntityBaseView: z.
|
|
3346
|
-
RelatedEntityCodeName: z.
|
|
3347
|
-
RelatedEntityClassName: z.
|
|
3340
|
+
EntityCodeName: z.ZodNullable<z.ZodString>;
|
|
3341
|
+
EntityClassName: z.ZodNullable<z.ZodString>;
|
|
3342
|
+
RelatedEntity: z.ZodNullable<z.ZodString>;
|
|
3343
|
+
RelatedEntitySchemaName: z.ZodNullable<z.ZodString>;
|
|
3344
|
+
RelatedEntityBaseTable: z.ZodNullable<z.ZodString>;
|
|
3345
|
+
RelatedEntityBaseView: z.ZodNullable<z.ZodString>;
|
|
3346
|
+
RelatedEntityCodeName: z.ZodNullable<z.ZodString>;
|
|
3347
|
+
RelatedEntityClassName: z.ZodNullable<z.ZodString>;
|
|
3348
3348
|
}, "strip", z.ZodTypeAny, {
|
|
3349
3349
|
Category?: string;
|
|
3350
3350
|
ID?: string;
|
|
@@ -3480,19 +3480,19 @@ export declare const EntityPermissionSchema: z.ZodObject<{
|
|
|
3480
3480
|
CanRead: z.ZodBoolean;
|
|
3481
3481
|
CanUpdate: z.ZodBoolean;
|
|
3482
3482
|
CanDelete: z.ZodBoolean;
|
|
3483
|
-
ReadRLSFilterID: z.
|
|
3484
|
-
CreateRLSFilterID: z.
|
|
3485
|
-
UpdateRLSFilterID: z.
|
|
3486
|
-
DeleteRLSFilterID: z.
|
|
3483
|
+
ReadRLSFilterID: z.ZodNullable<z.ZodString>;
|
|
3484
|
+
CreateRLSFilterID: z.ZodNullable<z.ZodString>;
|
|
3485
|
+
UpdateRLSFilterID: z.ZodNullable<z.ZodString>;
|
|
3486
|
+
DeleteRLSFilterID: z.ZodNullable<z.ZodString>;
|
|
3487
3487
|
__mj_CreatedAt: z.ZodDate;
|
|
3488
3488
|
__mj_UpdatedAt: z.ZodDate;
|
|
3489
3489
|
Entity: z.ZodString;
|
|
3490
3490
|
RoleName: z.ZodString;
|
|
3491
|
-
RoleSQLName: z.
|
|
3492
|
-
CreateRLSFilter: z.
|
|
3493
|
-
ReadRLSFilter: z.
|
|
3494
|
-
UpdateRLSFilter: z.
|
|
3495
|
-
DeleteRLSFilter: z.
|
|
3491
|
+
RoleSQLName: z.ZodNullable<z.ZodString>;
|
|
3492
|
+
CreateRLSFilter: z.ZodNullable<z.ZodString>;
|
|
3493
|
+
ReadRLSFilter: z.ZodNullable<z.ZodString>;
|
|
3494
|
+
UpdateRLSFilter: z.ZodNullable<z.ZodString>;
|
|
3495
|
+
DeleteRLSFilter: z.ZodNullable<z.ZodString>;
|
|
3496
3496
|
}, "strip", z.ZodTypeAny, {
|
|
3497
3497
|
ID?: string;
|
|
3498
3498
|
__mj_CreatedAt?: Date;
|
|
@@ -3545,10 +3545,10 @@ export declare const EntityRecordDocumentSchema: z.ZodObject<{
|
|
|
3545
3545
|
EntityID: z.ZodString;
|
|
3546
3546
|
RecordID: z.ZodString;
|
|
3547
3547
|
EntityDocumentID: z.ZodString;
|
|
3548
|
-
DocumentText: z.
|
|
3548
|
+
DocumentText: z.ZodNullable<z.ZodString>;
|
|
3549
3549
|
VectorIndexID: z.ZodString;
|
|
3550
|
-
VectorID: z.
|
|
3551
|
-
VectorJSON: z.
|
|
3550
|
+
VectorID: z.ZodNullable<z.ZodString>;
|
|
3551
|
+
VectorJSON: z.ZodNullable<z.ZodString>;
|
|
3552
3552
|
EntityRecordUpdatedAt: z.ZodDate;
|
|
3553
3553
|
__mj_CreatedAt: z.ZodDate;
|
|
3554
3554
|
__mj_UpdatedAt: z.ZodDate;
|
|
@@ -3593,7 +3593,7 @@ export type EntityRecordDocumentEntityType = z.infer<typeof EntityRecordDocument
|
|
|
3593
3593
|
export declare const EntityRelationshipDisplayComponentSchema: z.ZodObject<{
|
|
3594
3594
|
ID: z.ZodString;
|
|
3595
3595
|
Name: z.ZodString;
|
|
3596
|
-
Description: z.
|
|
3596
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
3597
3597
|
RelationshipType: z.ZodUnion<[z.ZodLiteral<"One to Many">, z.ZodLiteral<"Many to Many">, z.ZodLiteral<"Both">]>;
|
|
3598
3598
|
__mj_CreatedAt: z.ZodDate;
|
|
3599
3599
|
__mj_UpdatedAt: z.ZodDate;
|
|
@@ -3624,19 +3624,19 @@ export declare const EntityRelationshipSchema: z.ZodObject<{
|
|
|
3624
3624
|
BundleInAPI: z.ZodBoolean;
|
|
3625
3625
|
IncludeInParentAllQuery: z.ZodBoolean;
|
|
3626
3626
|
Type: z.ZodUnion<[z.ZodLiteral<"One To Many">, z.ZodLiteral<"Many To Many">]>;
|
|
3627
|
-
EntityKeyField: z.
|
|
3627
|
+
EntityKeyField: z.ZodNullable<z.ZodString>;
|
|
3628
3628
|
RelatedEntityJoinField: z.ZodString;
|
|
3629
|
-
JoinView: z.
|
|
3630
|
-
JoinEntityJoinField: z.
|
|
3631
|
-
JoinEntityInverseJoinField: z.
|
|
3629
|
+
JoinView: z.ZodNullable<z.ZodString>;
|
|
3630
|
+
JoinEntityJoinField: z.ZodNullable<z.ZodString>;
|
|
3631
|
+
JoinEntityInverseJoinField: z.ZodNullable<z.ZodString>;
|
|
3632
3632
|
DisplayInForm: z.ZodBoolean;
|
|
3633
3633
|
DisplayLocation: z.ZodUnion<[z.ZodLiteral<"After Field Tabs">, z.ZodLiteral<"Before Field Tabs">]>;
|
|
3634
|
-
DisplayName: z.
|
|
3634
|
+
DisplayName: z.ZodNullable<z.ZodString>;
|
|
3635
3635
|
DisplayIconType: z.ZodUnion<[z.ZodLiteral<"Related Entity Icon">, z.ZodLiteral<"Custom">, z.ZodLiteral<"None">]>;
|
|
3636
|
-
DisplayIcon: z.
|
|
3637
|
-
DisplayUserViewID: z.
|
|
3638
|
-
DisplayComponentID: z.
|
|
3639
|
-
DisplayComponentConfiguration: z.
|
|
3636
|
+
DisplayIcon: z.ZodNullable<z.ZodString>;
|
|
3637
|
+
DisplayUserViewID: z.ZodNullable<z.ZodString>;
|
|
3638
|
+
DisplayComponentID: z.ZodNullable<z.ZodString>;
|
|
3639
|
+
DisplayComponentConfiguration: z.ZodNullable<z.ZodString>;
|
|
3640
3640
|
__mj_CreatedAt: z.ZodDate;
|
|
3641
3641
|
__mj_UpdatedAt: z.ZodDate;
|
|
3642
3642
|
AutoUpdateFromSchema: z.ZodBoolean;
|
|
@@ -3646,10 +3646,10 @@ export declare const EntityRelationshipSchema: z.ZodObject<{
|
|
|
3646
3646
|
RelatedEntity: z.ZodString;
|
|
3647
3647
|
RelatedEntityBaseTable: z.ZodString;
|
|
3648
3648
|
RelatedEntityBaseView: z.ZodString;
|
|
3649
|
-
RelatedEntityClassName: z.
|
|
3650
|
-
RelatedEntityCodeName: z.
|
|
3651
|
-
RelatedEntityBaseTableCodeName: z.
|
|
3652
|
-
DisplayUserViewName: z.
|
|
3649
|
+
RelatedEntityClassName: z.ZodNullable<z.ZodString>;
|
|
3650
|
+
RelatedEntityCodeName: z.ZodNullable<z.ZodString>;
|
|
3651
|
+
RelatedEntityBaseTableCodeName: z.ZodNullable<z.ZodString>;
|
|
3652
|
+
DisplayUserViewName: z.ZodNullable<z.ZodString>;
|
|
3653
3653
|
}, "strip", z.ZodTypeAny, {
|
|
3654
3654
|
ID?: string;
|
|
3655
3655
|
__mj_CreatedAt?: Date;
|
|
@@ -3728,7 +3728,7 @@ export declare const EntitySettingSchema: z.ZodObject<{
|
|
|
3728
3728
|
EntityID: z.ZodString;
|
|
3729
3729
|
Name: z.ZodString;
|
|
3730
3730
|
Value: z.ZodString;
|
|
3731
|
-
Comments: z.
|
|
3731
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
3732
3732
|
__mj_CreatedAt: z.ZodDate;
|
|
3733
3733
|
__mj_UpdatedAt: z.ZodDate;
|
|
3734
3734
|
Entity: z.ZodString;
|
|
@@ -3757,14 +3757,14 @@ export type EntitySettingEntityType = z.infer<typeof EntitySettingSchema>;
|
|
|
3757
3757
|
*/
|
|
3758
3758
|
export declare const ErrorLogSchema: z.ZodObject<{
|
|
3759
3759
|
ID: z.ZodString;
|
|
3760
|
-
CompanyIntegrationRunID: z.
|
|
3761
|
-
CompanyIntegrationRunDetailID: z.
|
|
3762
|
-
Code: z.
|
|
3763
|
-
Message: z.
|
|
3764
|
-
CreatedBy: z.
|
|
3765
|
-
Status: z.
|
|
3766
|
-
Category: z.
|
|
3767
|
-
Details: z.
|
|
3760
|
+
CompanyIntegrationRunID: z.ZodNullable<z.ZodString>;
|
|
3761
|
+
CompanyIntegrationRunDetailID: z.ZodNullable<z.ZodString>;
|
|
3762
|
+
Code: z.ZodNullable<z.ZodString>;
|
|
3763
|
+
Message: z.ZodNullable<z.ZodString>;
|
|
3764
|
+
CreatedBy: z.ZodNullable<z.ZodString>;
|
|
3765
|
+
Status: z.ZodNullable<z.ZodString>;
|
|
3766
|
+
Category: z.ZodNullable<z.ZodString>;
|
|
3767
|
+
Details: z.ZodNullable<z.ZodString>;
|
|
3768
3768
|
__mj_CreatedAt: z.ZodDate;
|
|
3769
3769
|
__mj_UpdatedAt: z.ZodDate;
|
|
3770
3770
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3804,9 +3804,9 @@ export declare const ExplorerNavigationItemSchema: z.ZodObject<{
|
|
|
3804
3804
|
IsActive: z.ZodBoolean;
|
|
3805
3805
|
ShowInHomeScreen: z.ZodBoolean;
|
|
3806
3806
|
ShowInNavigationDrawer: z.ZodBoolean;
|
|
3807
|
-
IconCSSClass: z.
|
|
3808
|
-
Description: z.
|
|
3809
|
-
Comments: z.
|
|
3807
|
+
IconCSSClass: z.ZodNullable<z.ZodString>;
|
|
3808
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
3809
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
3810
3810
|
__mj_CreatedAt: z.ZodDate;
|
|
3811
3811
|
__mj_UpdatedAt: z.ZodDate;
|
|
3812
3812
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3843,11 +3843,11 @@ export type ExplorerNavigationItemEntityType = z.infer<typeof ExplorerNavigation
|
|
|
3843
3843
|
export declare const FileCategorySchema: z.ZodObject<{
|
|
3844
3844
|
ID: z.ZodString;
|
|
3845
3845
|
Name: z.ZodString;
|
|
3846
|
-
ParentID: z.
|
|
3847
|
-
Description: z.
|
|
3846
|
+
ParentID: z.ZodNullable<z.ZodString>;
|
|
3847
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
3848
3848
|
__mj_CreatedAt: z.ZodDate;
|
|
3849
3849
|
__mj_UpdatedAt: z.ZodDate;
|
|
3850
|
-
Parent: z.
|
|
3850
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
3851
3851
|
}, "strip", z.ZodTypeAny, {
|
|
3852
3852
|
ID?: string;
|
|
3853
3853
|
__mj_CreatedAt?: Date;
|
|
@@ -3904,7 +3904,7 @@ export type FileEntityRecordLinkEntityType = z.infer<typeof FileEntityRecordLink
|
|
|
3904
3904
|
export declare const FileStorageProviderSchema: z.ZodObject<{
|
|
3905
3905
|
ID: z.ZodString;
|
|
3906
3906
|
Name: z.ZodString;
|
|
3907
|
-
Description: z.
|
|
3907
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
3908
3908
|
ServerDriverKey: z.ZodString;
|
|
3909
3909
|
ClientDriverKey: z.ZodString;
|
|
3910
3910
|
Priority: z.ZodNumber;
|
|
@@ -3939,15 +3939,15 @@ export type FileStorageProviderEntityType = z.infer<typeof FileStorageProviderSc
|
|
|
3939
3939
|
export declare const FileSchema: z.ZodObject<{
|
|
3940
3940
|
ID: z.ZodString;
|
|
3941
3941
|
Name: z.ZodString;
|
|
3942
|
-
Description: z.
|
|
3943
|
-
CategoryID: z.
|
|
3942
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
3943
|
+
CategoryID: z.ZodNullable<z.ZodString>;
|
|
3944
3944
|
ProviderID: z.ZodString;
|
|
3945
|
-
ContentType: z.
|
|
3946
|
-
ProviderKey: z.
|
|
3945
|
+
ContentType: z.ZodNullable<z.ZodString>;
|
|
3946
|
+
ProviderKey: z.ZodNullable<z.ZodString>;
|
|
3947
3947
|
Status: z.ZodString;
|
|
3948
3948
|
__mj_CreatedAt: z.ZodDate;
|
|
3949
3949
|
__mj_UpdatedAt: z.ZodDate;
|
|
3950
|
-
Category: z.
|
|
3950
|
+
Category: z.ZodNullable<z.ZodString>;
|
|
3951
3951
|
Provider: z.ZodString;
|
|
3952
3952
|
}, "strip", z.ZodTypeAny, {
|
|
3953
3953
|
Category?: string;
|
|
@@ -3983,11 +3983,11 @@ export type FileEntityType = z.infer<typeof FileSchema>;
|
|
|
3983
3983
|
export declare const GeneratedCodeCategorySchema: z.ZodObject<{
|
|
3984
3984
|
ID: z.ZodString;
|
|
3985
3985
|
Name: z.ZodString;
|
|
3986
|
-
Description: z.
|
|
3987
|
-
ParentID: z.
|
|
3986
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
3987
|
+
ParentID: z.ZodNullable<z.ZodString>;
|
|
3988
3988
|
__mj_CreatedAt: z.ZodDate;
|
|
3989
3989
|
__mj_UpdatedAt: z.ZodDate;
|
|
3990
|
-
Parent: z.
|
|
3990
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
3991
3991
|
}, "strip", z.ZodTypeAny, {
|
|
3992
3992
|
ID?: string;
|
|
3993
3993
|
__mj_CreatedAt?: Date;
|
|
@@ -4015,18 +4015,18 @@ export declare const GeneratedCodeSchema: z.ZodObject<{
|
|
|
4015
4015
|
CategoryID: z.ZodString;
|
|
4016
4016
|
GeneratedByModelID: z.ZodString;
|
|
4017
4017
|
Name: z.ZodString;
|
|
4018
|
-
Description: z.
|
|
4018
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4019
4019
|
Code: z.ZodString;
|
|
4020
4020
|
Source: z.ZodString;
|
|
4021
|
-
LinkedEntityID: z.
|
|
4022
|
-
LinkedRecordPrimaryKey: z.
|
|
4021
|
+
LinkedEntityID: z.ZodNullable<z.ZodString>;
|
|
4022
|
+
LinkedRecordPrimaryKey: z.ZodNullable<z.ZodString>;
|
|
4023
4023
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"Approved">, z.ZodLiteral<"Rejected">]>;
|
|
4024
4024
|
Language: z.ZodUnion<[z.ZodLiteral<"TypeScript">, z.ZodLiteral<"SQL">, z.ZodLiteral<"HTML">, z.ZodLiteral<"CSS">, z.ZodLiteral<"JavaScript">, z.ZodLiteral<"Python">, z.ZodLiteral<"Other">]>;
|
|
4025
4025
|
__mj_CreatedAt: z.ZodDate;
|
|
4026
4026
|
__mj_UpdatedAt: z.ZodDate;
|
|
4027
4027
|
Category: z.ZodString;
|
|
4028
4028
|
GeneratedByModel: z.ZodString;
|
|
4029
|
-
LinkedEntity: z.
|
|
4029
|
+
LinkedEntity: z.ZodNullable<z.ZodString>;
|
|
4030
4030
|
}, "strip", z.ZodTypeAny, {
|
|
4031
4031
|
Category?: string;
|
|
4032
4032
|
ID?: string;
|
|
@@ -4073,12 +4073,12 @@ export declare const IntegrationURLFormatSchema: z.ZodObject<{
|
|
|
4073
4073
|
IntegrationID: z.ZodString;
|
|
4074
4074
|
EntityID: z.ZodString;
|
|
4075
4075
|
URLFormat: z.ZodString;
|
|
4076
|
-
Comments: z.
|
|
4076
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
4077
4077
|
__mj_CreatedAt: z.ZodDate;
|
|
4078
4078
|
__mj_UpdatedAt: z.ZodDate;
|
|
4079
4079
|
Integration: z.ZodString;
|
|
4080
|
-
NavigationBaseURL: z.
|
|
4081
|
-
FullURLFormat: z.
|
|
4080
|
+
NavigationBaseURL: z.ZodNullable<z.ZodString>;
|
|
4081
|
+
FullURLFormat: z.ZodNullable<z.ZodString>;
|
|
4082
4082
|
}, "strip", z.ZodTypeAny, {
|
|
4083
4083
|
ID?: string;
|
|
4084
4084
|
Comments?: string;
|
|
@@ -4108,10 +4108,10 @@ export type IntegrationURLFormatEntityType = z.infer<typeof IntegrationURLFormat
|
|
|
4108
4108
|
*/
|
|
4109
4109
|
export declare const IntegrationSchema: z.ZodObject<{
|
|
4110
4110
|
Name: z.ZodString;
|
|
4111
|
-
Description: z.
|
|
4112
|
-
NavigationBaseURL: z.
|
|
4113
|
-
ClassName: z.
|
|
4114
|
-
ImportPath: z.
|
|
4111
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4112
|
+
NavigationBaseURL: z.ZodNullable<z.ZodString>;
|
|
4113
|
+
ClassName: z.ZodNullable<z.ZodString>;
|
|
4114
|
+
ImportPath: z.ZodNullable<z.ZodString>;
|
|
4115
4115
|
BatchMaxRequestCount: z.ZodNumber;
|
|
4116
4116
|
BatchRequestWaitTime: z.ZodNumber;
|
|
4117
4117
|
__mj_CreatedAt: z.ZodDate;
|
|
@@ -4147,10 +4147,10 @@ export type IntegrationEntityType = z.infer<typeof IntegrationSchema>;
|
|
|
4147
4147
|
export declare const LibrarySchema: z.ZodObject<{
|
|
4148
4148
|
ID: z.ZodString;
|
|
4149
4149
|
Name: z.ZodString;
|
|
4150
|
-
Description: z.
|
|
4150
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4151
4151
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">]>;
|
|
4152
|
-
TypeDefinitions: z.
|
|
4153
|
-
SampleCode: z.
|
|
4152
|
+
TypeDefinitions: z.ZodNullable<z.ZodString>;
|
|
4153
|
+
SampleCode: z.ZodNullable<z.ZodString>;
|
|
4154
4154
|
__mj_CreatedAt: z.ZodDate;
|
|
4155
4155
|
__mj_UpdatedAt: z.ZodDate;
|
|
4156
4156
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4208,12 +4208,12 @@ export type LibraryItemEntityType = z.infer<typeof LibraryItemSchema>;
|
|
|
4208
4208
|
export declare const ListCategorySchema: z.ZodObject<{
|
|
4209
4209
|
ID: z.ZodString;
|
|
4210
4210
|
Name: z.ZodString;
|
|
4211
|
-
Description: z.
|
|
4212
|
-
ParentID: z.
|
|
4211
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4212
|
+
ParentID: z.ZodNullable<z.ZodString>;
|
|
4213
4213
|
UserID: z.ZodString;
|
|
4214
4214
|
__mj_CreatedAt: z.ZodDate;
|
|
4215
4215
|
__mj_UpdatedAt: z.ZodDate;
|
|
4216
|
-
Parent: z.
|
|
4216
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
4217
4217
|
User: z.ZodString;
|
|
4218
4218
|
}, "strip", z.ZodTypeAny, {
|
|
4219
4219
|
ID?: string;
|
|
@@ -4248,7 +4248,7 @@ export declare const ListDetailSchema: z.ZodObject<{
|
|
|
4248
4248
|
__mj_CreatedAt: z.ZodDate;
|
|
4249
4249
|
__mj_UpdatedAt: z.ZodDate;
|
|
4250
4250
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">, z.ZodLiteral<"Rejected">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Error">, z.ZodLiteral<"Other">]>;
|
|
4251
|
-
AdditionalData: z.
|
|
4251
|
+
AdditionalData: z.ZodNullable<z.ZodString>;
|
|
4252
4252
|
List: z.ZodString;
|
|
4253
4253
|
}, "strip", z.ZodTypeAny, {
|
|
4254
4254
|
List?: string;
|
|
@@ -4278,17 +4278,17 @@ export type ListDetailEntityType = z.infer<typeof ListDetailSchema>;
|
|
|
4278
4278
|
export declare const ListSchema: z.ZodObject<{
|
|
4279
4279
|
ID: z.ZodString;
|
|
4280
4280
|
Name: z.ZodString;
|
|
4281
|
-
Description: z.
|
|
4281
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4282
4282
|
EntityID: z.ZodString;
|
|
4283
4283
|
UserID: z.ZodString;
|
|
4284
|
-
CategoryID: z.
|
|
4285
|
-
ExternalSystemRecordID: z.
|
|
4286
|
-
CompanyIntegrationID: z.
|
|
4284
|
+
CategoryID: z.ZodNullable<z.ZodString>;
|
|
4285
|
+
ExternalSystemRecordID: z.ZodNullable<z.ZodString>;
|
|
4286
|
+
CompanyIntegrationID: z.ZodNullable<z.ZodString>;
|
|
4287
4287
|
__mj_CreatedAt: z.ZodDate;
|
|
4288
4288
|
__mj_UpdatedAt: z.ZodDate;
|
|
4289
4289
|
Entity: z.ZodString;
|
|
4290
4290
|
User: z.ZodString;
|
|
4291
|
-
Category: z.
|
|
4291
|
+
Category: z.ZodNullable<z.ZodString>;
|
|
4292
4292
|
}, "strip", z.ZodTypeAny, {
|
|
4293
4293
|
Category?: string;
|
|
4294
4294
|
ID?: string;
|
|
@@ -4319,13 +4319,83 @@ export declare const ListSchema: z.ZodObject<{
|
|
|
4319
4319
|
ExternalSystemRecordID?: string;
|
|
4320
4320
|
}>;
|
|
4321
4321
|
export type ListEntityType = z.infer<typeof ListSchema>;
|
|
4322
|
+
/**
|
|
4323
|
+
* zod schema definition for the entity MJ: Report User States
|
|
4324
|
+
*/
|
|
4325
|
+
export declare const ReportUserStateSchema: z.ZodObject<{
|
|
4326
|
+
ID: z.ZodString;
|
|
4327
|
+
ReportID: z.ZodString;
|
|
4328
|
+
UserID: z.ZodString;
|
|
4329
|
+
ReportState: z.ZodNullable<z.ZodString>;
|
|
4330
|
+
__mj_CreatedAt: z.ZodDate;
|
|
4331
|
+
__mj_UpdatedAt: z.ZodDate;
|
|
4332
|
+
Report: z.ZodString;
|
|
4333
|
+
User: z.ZodString;
|
|
4334
|
+
}, "strip", z.ZodTypeAny, {
|
|
4335
|
+
ID?: string;
|
|
4336
|
+
__mj_CreatedAt?: Date;
|
|
4337
|
+
__mj_UpdatedAt?: Date;
|
|
4338
|
+
UserID?: string;
|
|
4339
|
+
User?: string;
|
|
4340
|
+
ReportID?: string;
|
|
4341
|
+
ReportState?: string;
|
|
4342
|
+
Report?: string;
|
|
4343
|
+
}, {
|
|
4344
|
+
ID?: string;
|
|
4345
|
+
__mj_CreatedAt?: Date;
|
|
4346
|
+
__mj_UpdatedAt?: Date;
|
|
4347
|
+
UserID?: string;
|
|
4348
|
+
User?: string;
|
|
4349
|
+
ReportID?: string;
|
|
4350
|
+
ReportState?: string;
|
|
4351
|
+
Report?: string;
|
|
4352
|
+
}>;
|
|
4353
|
+
export type ReportUserStateEntityType = z.infer<typeof ReportUserStateSchema>;
|
|
4354
|
+
/**
|
|
4355
|
+
* zod schema definition for the entity MJ: Report Versions
|
|
4356
|
+
*/
|
|
4357
|
+
export declare const ReportVersionSchema: z.ZodObject<{
|
|
4358
|
+
ID: z.ZodString;
|
|
4359
|
+
ReportID: z.ZodString;
|
|
4360
|
+
VersionNumber: z.ZodNumber;
|
|
4361
|
+
Name: z.ZodString;
|
|
4362
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4363
|
+
Configuration: z.ZodNullable<z.ZodString>;
|
|
4364
|
+
DataContextUpdated: z.ZodBoolean;
|
|
4365
|
+
__mj_CreatedAt: z.ZodDate;
|
|
4366
|
+
__mj_UpdatedAt: z.ZodDate;
|
|
4367
|
+
Report: z.ZodString;
|
|
4368
|
+
}, "strip", z.ZodTypeAny, {
|
|
4369
|
+
ID?: string;
|
|
4370
|
+
__mj_CreatedAt?: Date;
|
|
4371
|
+
__mj_UpdatedAt?: Date;
|
|
4372
|
+
Name?: string;
|
|
4373
|
+
Description?: string;
|
|
4374
|
+
ReportID?: string;
|
|
4375
|
+
Report?: string;
|
|
4376
|
+
VersionNumber?: number;
|
|
4377
|
+
Configuration?: string;
|
|
4378
|
+
DataContextUpdated?: boolean;
|
|
4379
|
+
}, {
|
|
4380
|
+
ID?: string;
|
|
4381
|
+
__mj_CreatedAt?: Date;
|
|
4382
|
+
__mj_UpdatedAt?: Date;
|
|
4383
|
+
Name?: string;
|
|
4384
|
+
Description?: string;
|
|
4385
|
+
ReportID?: string;
|
|
4386
|
+
Report?: string;
|
|
4387
|
+
VersionNumber?: number;
|
|
4388
|
+
Configuration?: string;
|
|
4389
|
+
DataContextUpdated?: boolean;
|
|
4390
|
+
}>;
|
|
4391
|
+
export type ReportVersionEntityType = z.infer<typeof ReportVersionSchema>;
|
|
4322
4392
|
/**
|
|
4323
4393
|
* zod schema definition for the entity Output Delivery Types
|
|
4324
4394
|
*/
|
|
4325
4395
|
export declare const OutputDeliveryTypeSchema: z.ZodObject<{
|
|
4326
4396
|
ID: z.ZodString;
|
|
4327
4397
|
Name: z.ZodString;
|
|
4328
|
-
Description: z.
|
|
4398
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4329
4399
|
__mj_CreatedAt: z.ZodDate;
|
|
4330
4400
|
__mj_UpdatedAt: z.ZodDate;
|
|
4331
4401
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4348,8 +4418,8 @@ export type OutputDeliveryTypeEntityType = z.infer<typeof OutputDeliveryTypeSche
|
|
|
4348
4418
|
export declare const OutputFormatTypeSchema: z.ZodObject<{
|
|
4349
4419
|
ID: z.ZodString;
|
|
4350
4420
|
Name: z.ZodString;
|
|
4351
|
-
Description: z.
|
|
4352
|
-
DisplayFormat: z.
|
|
4421
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4422
|
+
DisplayFormat: z.ZodNullable<z.ZodString>;
|
|
4353
4423
|
__mj_CreatedAt: z.ZodDate;
|
|
4354
4424
|
__mj_UpdatedAt: z.ZodDate;
|
|
4355
4425
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4374,7 +4444,7 @@ export type OutputFormatTypeEntityType = z.infer<typeof OutputFormatTypeSchema>;
|
|
|
4374
4444
|
export declare const OutputTriggerTypeSchema: z.ZodObject<{
|
|
4375
4445
|
ID: z.ZodString;
|
|
4376
4446
|
Name: z.ZodString;
|
|
4377
|
-
Description: z.
|
|
4447
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4378
4448
|
__mj_CreatedAt: z.ZodDate;
|
|
4379
4449
|
__mj_UpdatedAt: z.ZodDate;
|
|
4380
4450
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4397,19 +4467,19 @@ export type OutputTriggerTypeEntityType = z.infer<typeof OutputTriggerTypeSchema
|
|
|
4397
4467
|
export declare const QuerySchema: z.ZodObject<{
|
|
4398
4468
|
ID: z.ZodString;
|
|
4399
4469
|
Name: z.ZodString;
|
|
4400
|
-
CategoryID: z.
|
|
4401
|
-
UserQuestion: z.
|
|
4402
|
-
Description: z.
|
|
4403
|
-
SQL: z.
|
|
4404
|
-
TechnicalDescription: z.
|
|
4405
|
-
OriginalSQL: z.
|
|
4406
|
-
Feedback: z.
|
|
4470
|
+
CategoryID: z.ZodNullable<z.ZodString>;
|
|
4471
|
+
UserQuestion: z.ZodNullable<z.ZodString>;
|
|
4472
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4473
|
+
SQL: z.ZodNullable<z.ZodString>;
|
|
4474
|
+
TechnicalDescription: z.ZodNullable<z.ZodString>;
|
|
4475
|
+
OriginalSQL: z.ZodNullable<z.ZodString>;
|
|
4476
|
+
Feedback: z.ZodNullable<z.ZodString>;
|
|
4407
4477
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"Approved">, z.ZodLiteral<"Rejected">, z.ZodLiteral<"Expired">]>;
|
|
4408
|
-
QualityRank: z.
|
|
4409
|
-
ExecutionCostRank: z.
|
|
4478
|
+
QualityRank: z.ZodNullable<z.ZodNumber>;
|
|
4479
|
+
ExecutionCostRank: z.ZodNullable<z.ZodNumber>;
|
|
4410
4480
|
__mj_CreatedAt: z.ZodDate;
|
|
4411
4481
|
__mj_UpdatedAt: z.ZodDate;
|
|
4412
|
-
Category: z.
|
|
4482
|
+
Category: z.ZodNullable<z.ZodString>;
|
|
4413
4483
|
}, "strip", z.ZodTypeAny, {
|
|
4414
4484
|
Category?: string;
|
|
4415
4485
|
ID?: string;
|
|
@@ -4450,12 +4520,12 @@ export type QueryEntityType = z.infer<typeof QuerySchema>;
|
|
|
4450
4520
|
export declare const QueryCategorySchema: z.ZodObject<{
|
|
4451
4521
|
ID: z.ZodString;
|
|
4452
4522
|
Name: z.ZodString;
|
|
4453
|
-
ParentID: z.
|
|
4454
|
-
Description: z.
|
|
4523
|
+
ParentID: z.ZodNullable<z.ZodString>;
|
|
4524
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4455
4525
|
UserID: z.ZodString;
|
|
4456
4526
|
__mj_CreatedAt: z.ZodDate;
|
|
4457
4527
|
__mj_UpdatedAt: z.ZodDate;
|
|
4458
|
-
Parent: z.
|
|
4528
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
4459
4529
|
User: z.ZodString;
|
|
4460
4530
|
}, "strip", z.ZodTypeAny, {
|
|
4461
4531
|
ID?: string;
|
|
@@ -4515,20 +4585,20 @@ export declare const QueryFieldSchema: z.ZodObject<{
|
|
|
4515
4585
|
ID: z.ZodString;
|
|
4516
4586
|
QueryID: z.ZodString;
|
|
4517
4587
|
Name: z.ZodString;
|
|
4518
|
-
Description: z.
|
|
4588
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4519
4589
|
Sequence: z.ZodNumber;
|
|
4520
4590
|
SQLBaseType: z.ZodString;
|
|
4521
4591
|
SQLFullType: z.ZodString;
|
|
4522
|
-
SourceEntityID: z.
|
|
4523
|
-
SourceFieldName: z.
|
|
4592
|
+
SourceEntityID: z.ZodNullable<z.ZodString>;
|
|
4593
|
+
SourceFieldName: z.ZodNullable<z.ZodString>;
|
|
4524
4594
|
IsComputed: z.ZodBoolean;
|
|
4525
|
-
ComputationDescription: z.
|
|
4595
|
+
ComputationDescription: z.ZodNullable<z.ZodString>;
|
|
4526
4596
|
IsSummary: z.ZodBoolean;
|
|
4527
|
-
SummaryDescription: z.
|
|
4597
|
+
SummaryDescription: z.ZodNullable<z.ZodString>;
|
|
4528
4598
|
__mj_CreatedAt: z.ZodDate;
|
|
4529
4599
|
__mj_UpdatedAt: z.ZodDate;
|
|
4530
4600
|
Query: z.ZodString;
|
|
4531
|
-
SourceEntity: z.
|
|
4601
|
+
SourceEntity: z.ZodNullable<z.ZodString>;
|
|
4532
4602
|
}, "strip", z.ZodTypeAny, {
|
|
4533
4603
|
ID?: string;
|
|
4534
4604
|
__mj_CreatedAt?: Date;
|
|
@@ -4603,13 +4673,13 @@ export declare const QueueTaskSchema: z.ZodObject<{
|
|
|
4603
4673
|
ID: z.ZodString;
|
|
4604
4674
|
QueueID: z.ZodString;
|
|
4605
4675
|
Status: z.ZodUnion<[z.ZodLiteral<"In Progress">, z.ZodLiteral<"Completed">, z.ZodLiteral<"Failed">]>;
|
|
4606
|
-
StartedAt: z.
|
|
4607
|
-
EndedAt: z.
|
|
4608
|
-
Data: z.
|
|
4609
|
-
Options: z.
|
|
4610
|
-
Output: z.
|
|
4611
|
-
ErrorMessage: z.
|
|
4612
|
-
Comments: z.
|
|
4676
|
+
StartedAt: z.ZodNullable<z.ZodDate>;
|
|
4677
|
+
EndedAt: z.ZodNullable<z.ZodDate>;
|
|
4678
|
+
Data: z.ZodNullable<z.ZodString>;
|
|
4679
|
+
Options: z.ZodNullable<z.ZodString>;
|
|
4680
|
+
Output: z.ZodNullable<z.ZodString>;
|
|
4681
|
+
ErrorMessage: z.ZodNullable<z.ZodString>;
|
|
4682
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
4613
4683
|
__mj_CreatedAt: z.ZodDate;
|
|
4614
4684
|
__mj_UpdatedAt: z.ZodDate;
|
|
4615
4685
|
Queue: z.ZodString;
|
|
@@ -4649,9 +4719,9 @@ export type QueueTaskEntityType = z.infer<typeof QueueTaskSchema>;
|
|
|
4649
4719
|
export declare const QueueTypeSchema: z.ZodObject<{
|
|
4650
4720
|
ID: z.ZodString;
|
|
4651
4721
|
Name: z.ZodString;
|
|
4652
|
-
Description: z.
|
|
4722
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4653
4723
|
DriverClass: z.ZodString;
|
|
4654
|
-
DriverImportPath: z.
|
|
4724
|
+
DriverImportPath: z.ZodNullable<z.ZodString>;
|
|
4655
4725
|
IsActive: z.ZodBoolean;
|
|
4656
4726
|
__mj_CreatedAt: z.ZodDate;
|
|
4657
4727
|
__mj_UpdatedAt: z.ZodDate;
|
|
@@ -4681,20 +4751,20 @@ export type QueueTypeEntityType = z.infer<typeof QueueTypeSchema>;
|
|
|
4681
4751
|
export declare const QueueSchema: z.ZodObject<{
|
|
4682
4752
|
ID: z.ZodString;
|
|
4683
4753
|
Name: z.ZodString;
|
|
4684
|
-
Description: z.
|
|
4754
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4685
4755
|
QueueTypeID: z.ZodString;
|
|
4686
4756
|
IsActive: z.ZodBoolean;
|
|
4687
|
-
ProcessPID: z.
|
|
4688
|
-
ProcessPlatform: z.
|
|
4689
|
-
ProcessVersion: z.
|
|
4690
|
-
ProcessCwd: z.
|
|
4691
|
-
ProcessIPAddress: z.
|
|
4692
|
-
ProcessMacAddress: z.
|
|
4693
|
-
ProcessOSName: z.
|
|
4694
|
-
ProcessOSVersion: z.
|
|
4695
|
-
ProcessHostName: z.
|
|
4696
|
-
ProcessUserID: z.
|
|
4697
|
-
ProcessUserName: z.
|
|
4757
|
+
ProcessPID: z.ZodNullable<z.ZodNumber>;
|
|
4758
|
+
ProcessPlatform: z.ZodNullable<z.ZodString>;
|
|
4759
|
+
ProcessVersion: z.ZodNullable<z.ZodString>;
|
|
4760
|
+
ProcessCwd: z.ZodNullable<z.ZodString>;
|
|
4761
|
+
ProcessIPAddress: z.ZodNullable<z.ZodString>;
|
|
4762
|
+
ProcessMacAddress: z.ZodNullable<z.ZodString>;
|
|
4763
|
+
ProcessOSName: z.ZodNullable<z.ZodString>;
|
|
4764
|
+
ProcessOSVersion: z.ZodNullable<z.ZodString>;
|
|
4765
|
+
ProcessHostName: z.ZodNullable<z.ZodString>;
|
|
4766
|
+
ProcessUserID: z.ZodNullable<z.ZodString>;
|
|
4767
|
+
ProcessUserName: z.ZodNullable<z.ZodString>;
|
|
4698
4768
|
LastHeartbeat: z.ZodDate;
|
|
4699
4769
|
__mj_CreatedAt: z.ZodDate;
|
|
4700
4770
|
__mj_UpdatedAt: z.ZodDate;
|
|
@@ -4751,7 +4821,7 @@ export declare const RecommendationItemSchema: z.ZodObject<{
|
|
|
4751
4821
|
RecommendationID: z.ZodString;
|
|
4752
4822
|
DestinationEntityID: z.ZodString;
|
|
4753
4823
|
DestinationEntityRecordID: z.ZodString;
|
|
4754
|
-
MatchProbability: z.
|
|
4824
|
+
MatchProbability: z.ZodNullable<z.ZodNumber>;
|
|
4755
4825
|
__mj_CreatedAt: z.ZodDate;
|
|
4756
4826
|
__mj_UpdatedAt: z.ZodDate;
|
|
4757
4827
|
DestinationEntity: z.ZodString;
|
|
@@ -4781,7 +4851,7 @@ export type RecommendationItemEntityType = z.infer<typeof RecommendationItemSche
|
|
|
4781
4851
|
export declare const RecommendationProviderSchema: z.ZodObject<{
|
|
4782
4852
|
ID: z.ZodString;
|
|
4783
4853
|
Name: z.ZodString;
|
|
4784
|
-
Description: z.
|
|
4854
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4785
4855
|
__mj_CreatedAt: z.ZodDate;
|
|
4786
4856
|
__mj_UpdatedAt: z.ZodDate;
|
|
4787
4857
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4805,9 +4875,9 @@ export declare const RecommendationRunSchema: z.ZodObject<{
|
|
|
4805
4875
|
ID: z.ZodString;
|
|
4806
4876
|
RecommendationProviderID: z.ZodString;
|
|
4807
4877
|
StartDate: z.ZodDate;
|
|
4808
|
-
EndDate: z.
|
|
4878
|
+
EndDate: z.ZodNullable<z.ZodDate>;
|
|
4809
4879
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"In Progress">, z.ZodLiteral<"Completed">, z.ZodLiteral<"Canceled">, z.ZodLiteral<"Error">]>;
|
|
4810
|
-
Description: z.
|
|
4880
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
4811
4881
|
RunByUserID: z.ZodString;
|
|
4812
4882
|
__mj_CreatedAt: z.ZodDate;
|
|
4813
4883
|
__mj_UpdatedAt: z.ZodDate;
|
|
@@ -4874,7 +4944,7 @@ export type RecommendationEntityType = z.infer<typeof RecommendationSchema>;
|
|
|
4874
4944
|
export declare const RecordChangeReplayRunSchema: z.ZodObject<{
|
|
4875
4945
|
ID: z.ZodString;
|
|
4876
4946
|
StartedAt: z.ZodDate;
|
|
4877
|
-
EndedAt: z.
|
|
4947
|
+
EndedAt: z.ZodNullable<z.ZodDate>;
|
|
4878
4948
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"In Progress">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Error">]>;
|
|
4879
4949
|
UserID: z.ZodString;
|
|
4880
4950
|
__mj_CreatedAt: z.ZodDate;
|
|
@@ -4915,15 +4985,15 @@ export declare const RecordChangeSchema: z.ZodObject<{
|
|
|
4915
4985
|
ChangesDescription: z.ZodString;
|
|
4916
4986
|
FullRecordJSON: z.ZodString;
|
|
4917
4987
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Error">]>;
|
|
4918
|
-
ErrorLog: z.
|
|
4919
|
-
ReplayRunID: z.
|
|
4920
|
-
IntegrationID: z.
|
|
4921
|
-
Comments: z.
|
|
4988
|
+
ErrorLog: z.ZodNullable<z.ZodString>;
|
|
4989
|
+
ReplayRunID: z.ZodNullable<z.ZodString>;
|
|
4990
|
+
IntegrationID: z.ZodNullable<z.ZodString>;
|
|
4991
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
4922
4992
|
CreatedAt: z.ZodDate;
|
|
4923
4993
|
UpdatedAt: z.ZodDate;
|
|
4924
4994
|
Entity: z.ZodString;
|
|
4925
4995
|
User: z.ZodString;
|
|
4926
|
-
Integration: z.
|
|
4996
|
+
Integration: z.ZodNullable<z.ZodString>;
|
|
4927
4997
|
}, "strip", z.ZodTypeAny, {
|
|
4928
4998
|
ID?: string;
|
|
4929
4999
|
Comments?: string;
|
|
@@ -4976,7 +5046,7 @@ export declare const RecordMergeDeletionLogSchema: z.ZodObject<{
|
|
|
4976
5046
|
RecordMergeLogID: z.ZodString;
|
|
4977
5047
|
DeletedRecordID: z.ZodString;
|
|
4978
5048
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Error">]>;
|
|
4979
|
-
ProcessingLog: z.
|
|
5049
|
+
ProcessingLog: z.ZodNullable<z.ZodString>;
|
|
4980
5050
|
__mj_CreatedAt: z.ZodDate;
|
|
4981
5051
|
__mj_UpdatedAt: z.ZodDate;
|
|
4982
5052
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5006,17 +5076,17 @@ export declare const RecordMergeLogSchema: z.ZodObject<{
|
|
|
5006
5076
|
SurvivingRecordID: z.ZodString;
|
|
5007
5077
|
InitiatedByUserID: z.ZodString;
|
|
5008
5078
|
ApprovalStatus: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"Approved">, z.ZodLiteral<"Rejected">]>;
|
|
5009
|
-
ApprovedByUserID: z.
|
|
5079
|
+
ApprovedByUserID: z.ZodNullable<z.ZodString>;
|
|
5010
5080
|
ProcessingStatus: z.ZodUnion<[z.ZodLiteral<"Started">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Error">]>;
|
|
5011
5081
|
ProcessingStartedAt: z.ZodDate;
|
|
5012
|
-
ProcessingEndedAt: z.
|
|
5013
|
-
ProcessingLog: z.
|
|
5014
|
-
Comments: z.
|
|
5082
|
+
ProcessingEndedAt: z.ZodNullable<z.ZodDate>;
|
|
5083
|
+
ProcessingLog: z.ZodNullable<z.ZodString>;
|
|
5084
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
5015
5085
|
__mj_CreatedAt: z.ZodDate;
|
|
5016
5086
|
__mj_UpdatedAt: z.ZodDate;
|
|
5017
5087
|
Entity: z.ZodString;
|
|
5018
5088
|
InitiatedByUser: z.ZodString;
|
|
5019
|
-
ApprovedByUser: z.
|
|
5089
|
+
ApprovedByUser: z.ZodNullable<z.ZodString>;
|
|
5020
5090
|
}, "strip", z.ZodTypeAny, {
|
|
5021
5091
|
ID?: string;
|
|
5022
5092
|
Comments?: string;
|
|
@@ -5059,12 +5129,12 @@ export type RecordMergeLogEntityType = z.infer<typeof RecordMergeLogSchema>;
|
|
|
5059
5129
|
export declare const ReportCategorySchema: z.ZodObject<{
|
|
5060
5130
|
ID: z.ZodString;
|
|
5061
5131
|
Name: z.ZodString;
|
|
5062
|
-
Description: z.
|
|
5063
|
-
ParentID: z.
|
|
5132
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
5133
|
+
ParentID: z.ZodNullable<z.ZodString>;
|
|
5064
5134
|
UserID: z.ZodString;
|
|
5065
5135
|
__mj_CreatedAt: z.ZodDate;
|
|
5066
5136
|
__mj_UpdatedAt: z.ZodDate;
|
|
5067
|
-
Parent: z.
|
|
5137
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
5068
5138
|
User: z.ZodString;
|
|
5069
5139
|
}, "strip", z.ZodTypeAny, {
|
|
5070
5140
|
ID?: string;
|
|
@@ -5107,8 +5177,8 @@ export declare const ReportSnapshotSchema: z.ZodObject<{
|
|
|
5107
5177
|
UserID?: string;
|
|
5108
5178
|
User?: string;
|
|
5109
5179
|
ReportID?: string;
|
|
5110
|
-
ResultSet?: string;
|
|
5111
5180
|
Report?: string;
|
|
5181
|
+
ResultSet?: string;
|
|
5112
5182
|
}, {
|
|
5113
5183
|
ID?: string;
|
|
5114
5184
|
__mj_CreatedAt?: Date;
|
|
@@ -5116,8 +5186,8 @@ export declare const ReportSnapshotSchema: z.ZodObject<{
|
|
|
5116
5186
|
UserID?: string;
|
|
5117
5187
|
User?: string;
|
|
5118
5188
|
ReportID?: string;
|
|
5119
|
-
ResultSet?: string;
|
|
5120
5189
|
Report?: string;
|
|
5190
|
+
ResultSet?: string;
|
|
5121
5191
|
}>;
|
|
5122
5192
|
export type ReportSnapshotEntityType = z.infer<typeof ReportSnapshotSchema>;
|
|
5123
5193
|
/**
|
|
@@ -5126,30 +5196,30 @@ export type ReportSnapshotEntityType = z.infer<typeof ReportSnapshotSchema>;
|
|
|
5126
5196
|
export declare const ReportSchema: z.ZodObject<{
|
|
5127
5197
|
ID: z.ZodString;
|
|
5128
5198
|
Name: z.ZodString;
|
|
5129
|
-
Description: z.
|
|
5130
|
-
CategoryID: z.
|
|
5199
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
5200
|
+
CategoryID: z.ZodNullable<z.ZodString>;
|
|
5131
5201
|
UserID: z.ZodString;
|
|
5132
5202
|
SharingScope: z.ZodUnion<[z.ZodLiteral<"None">, z.ZodLiteral<"Specific">, z.ZodLiteral<"Everyone">]>;
|
|
5133
|
-
ConversationID: z.
|
|
5134
|
-
ConversationDetailID: z.
|
|
5135
|
-
DataContextID: z.
|
|
5136
|
-
Configuration: z.
|
|
5137
|
-
OutputTriggerTypeID: z.
|
|
5138
|
-
OutputFormatTypeID: z.
|
|
5139
|
-
OutputDeliveryTypeID: z.
|
|
5140
|
-
OutputFrequency: z.
|
|
5141
|
-
OutputTargetEmail: z.
|
|
5142
|
-
OutputWorkflowID: z.
|
|
5203
|
+
ConversationID: z.ZodNullable<z.ZodString>;
|
|
5204
|
+
ConversationDetailID: z.ZodNullable<z.ZodString>;
|
|
5205
|
+
DataContextID: z.ZodNullable<z.ZodString>;
|
|
5206
|
+
Configuration: z.ZodNullable<z.ZodString>;
|
|
5207
|
+
OutputTriggerTypeID: z.ZodNullable<z.ZodString>;
|
|
5208
|
+
OutputFormatTypeID: z.ZodNullable<z.ZodString>;
|
|
5209
|
+
OutputDeliveryTypeID: z.ZodNullable<z.ZodString>;
|
|
5210
|
+
OutputFrequency: z.ZodNullable<z.ZodString>;
|
|
5211
|
+
OutputTargetEmail: z.ZodNullable<z.ZodString>;
|
|
5212
|
+
OutputWorkflowID: z.ZodNullable<z.ZodString>;
|
|
5143
5213
|
__mj_CreatedAt: z.ZodDate;
|
|
5144
5214
|
__mj_UpdatedAt: z.ZodDate;
|
|
5145
|
-
Category: z.
|
|
5215
|
+
Category: z.ZodNullable<z.ZodString>;
|
|
5146
5216
|
User: z.ZodString;
|
|
5147
|
-
Conversation: z.
|
|
5148
|
-
DataContext: z.
|
|
5149
|
-
OutputTriggerType: z.
|
|
5150
|
-
OutputFormatType: z.
|
|
5151
|
-
OutputDeliveryType: z.
|
|
5152
|
-
OutputWorkflow: z.
|
|
5217
|
+
Conversation: z.ZodNullable<z.ZodString>;
|
|
5218
|
+
DataContext: z.ZodNullable<z.ZodString>;
|
|
5219
|
+
OutputTriggerType: z.ZodNullable<z.ZodString>;
|
|
5220
|
+
OutputFormatType: z.ZodNullable<z.ZodString>;
|
|
5221
|
+
OutputDeliveryType: z.ZodNullable<z.ZodString>;
|
|
5222
|
+
OutputWorkflow: z.ZodNullable<z.ZodString>;
|
|
5153
5223
|
}, "strip", z.ZodTypeAny, {
|
|
5154
5224
|
Category?: string;
|
|
5155
5225
|
ID?: string;
|
|
@@ -5164,9 +5234,9 @@ export declare const ReportSchema: z.ZodObject<{
|
|
|
5164
5234
|
Conversation?: string;
|
|
5165
5235
|
DataContextID?: string;
|
|
5166
5236
|
DataContext?: string;
|
|
5237
|
+
Configuration?: string;
|
|
5167
5238
|
SharingScope?: "None" | "Specific" | "Everyone";
|
|
5168
5239
|
ConversationDetailID?: string;
|
|
5169
|
-
Configuration?: string;
|
|
5170
5240
|
OutputTriggerTypeID?: string;
|
|
5171
5241
|
OutputFormatTypeID?: string;
|
|
5172
5242
|
OutputDeliveryTypeID?: string;
|
|
@@ -5191,9 +5261,9 @@ export declare const ReportSchema: z.ZodObject<{
|
|
|
5191
5261
|
Conversation?: string;
|
|
5192
5262
|
DataContextID?: string;
|
|
5193
5263
|
DataContext?: string;
|
|
5264
|
+
Configuration?: string;
|
|
5194
5265
|
SharingScope?: "None" | "Specific" | "Everyone";
|
|
5195
5266
|
ConversationDetailID?: string;
|
|
5196
|
-
Configuration?: string;
|
|
5197
5267
|
OutputTriggerTypeID?: string;
|
|
5198
5268
|
OutputFormatTypeID?: string;
|
|
5199
5269
|
OutputDeliveryTypeID?: string;
|
|
@@ -5214,7 +5284,7 @@ export declare const ResourceLinkSchema: z.ZodObject<{
|
|
|
5214
5284
|
UserID: z.ZodString;
|
|
5215
5285
|
ResourceTypeID: z.ZodString;
|
|
5216
5286
|
ResourceRecordID: z.ZodString;
|
|
5217
|
-
FolderID: z.
|
|
5287
|
+
FolderID: z.ZodNullable<z.ZodString>;
|
|
5218
5288
|
__mj_CreatedAt: z.ZodDate;
|
|
5219
5289
|
__mj_UpdatedAt: z.ZodDate;
|
|
5220
5290
|
User: z.ZodString;
|
|
@@ -5249,17 +5319,17 @@ export declare const ResourcePermissionSchema: z.ZodObject<{
|
|
|
5249
5319
|
ResourceTypeID: z.ZodString;
|
|
5250
5320
|
ResourceRecordID: z.ZodString;
|
|
5251
5321
|
Type: z.ZodUnion<[z.ZodLiteral<"Role">, z.ZodLiteral<"User">]>;
|
|
5252
|
-
StartSharingAt: z.
|
|
5253
|
-
EndSharingAt: z.
|
|
5254
|
-
RoleID: z.
|
|
5255
|
-
UserID: z.
|
|
5256
|
-
PermissionLevel: z.
|
|
5322
|
+
StartSharingAt: z.ZodNullable<z.ZodDate>;
|
|
5323
|
+
EndSharingAt: z.ZodNullable<z.ZodDate>;
|
|
5324
|
+
RoleID: z.ZodNullable<z.ZodString>;
|
|
5325
|
+
UserID: z.ZodNullable<z.ZodString>;
|
|
5326
|
+
PermissionLevel: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"View">, z.ZodLiteral<"Edit">, z.ZodLiteral<"Owner">]>>;
|
|
5257
5327
|
__mj_CreatedAt: z.ZodDate;
|
|
5258
5328
|
__mj_UpdatedAt: z.ZodDate;
|
|
5259
5329
|
Status: z.ZodUnion<[z.ZodLiteral<"Requested">, z.ZodLiteral<"Approved">, z.ZodLiteral<"Rejected">, z.ZodLiteral<"Revoked">]>;
|
|
5260
5330
|
ResourceType: z.ZodString;
|
|
5261
|
-
Role: z.
|
|
5262
|
-
User: z.
|
|
5331
|
+
Role: z.ZodNullable<z.ZodString>;
|
|
5332
|
+
User: z.ZodNullable<z.ZodString>;
|
|
5263
5333
|
}, "strip", z.ZodTypeAny, {
|
|
5264
5334
|
ID?: string;
|
|
5265
5335
|
__mj_CreatedAt?: Date;
|
|
@@ -5301,14 +5371,14 @@ export declare const ResourceTypeSchema: z.ZodObject<{
|
|
|
5301
5371
|
ID: z.ZodString;
|
|
5302
5372
|
Name: z.ZodString;
|
|
5303
5373
|
DisplayName: z.ZodString;
|
|
5304
|
-
Description: z.
|
|
5305
|
-
Icon: z.
|
|
5306
|
-
EntityID: z.
|
|
5374
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
5375
|
+
Icon: z.ZodNullable<z.ZodString>;
|
|
5376
|
+
EntityID: z.ZodNullable<z.ZodString>;
|
|
5307
5377
|
__mj_CreatedAt: z.ZodDate;
|
|
5308
5378
|
__mj_UpdatedAt: z.ZodDate;
|
|
5309
|
-
CategoryEntityID: z.
|
|
5310
|
-
Entity: z.
|
|
5311
|
-
CategoryEntity: z.
|
|
5379
|
+
CategoryEntityID: z.ZodNullable<z.ZodString>;
|
|
5380
|
+
Entity: z.ZodNullable<z.ZodString>;
|
|
5381
|
+
CategoryEntity: z.ZodNullable<z.ZodString>;
|
|
5312
5382
|
}, "strip", z.ZodTypeAny, {
|
|
5313
5383
|
ID?: string;
|
|
5314
5384
|
__mj_CreatedAt?: Date;
|
|
@@ -5341,9 +5411,9 @@ export type ResourceTypeEntityType = z.infer<typeof ResourceTypeSchema>;
|
|
|
5341
5411
|
export declare const RoleSchema: z.ZodObject<{
|
|
5342
5412
|
ID: z.ZodString;
|
|
5343
5413
|
Name: z.ZodString;
|
|
5344
|
-
Description: z.
|
|
5345
|
-
DirectoryID: z.
|
|
5346
|
-
SQLName: z.
|
|
5414
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
5415
|
+
DirectoryID: z.ZodNullable<z.ZodString>;
|
|
5416
|
+
SQLName: z.ZodNullable<z.ZodString>;
|
|
5347
5417
|
__mj_CreatedAt: z.ZodDate;
|
|
5348
5418
|
__mj_UpdatedAt: z.ZodDate;
|
|
5349
5419
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5370,8 +5440,8 @@ export type RoleEntityType = z.infer<typeof RoleSchema>;
|
|
|
5370
5440
|
export declare const RowLevelSecurityFilterSchema: z.ZodObject<{
|
|
5371
5441
|
ID: z.ZodString;
|
|
5372
5442
|
Name: z.ZodString;
|
|
5373
|
-
Description: z.
|
|
5374
|
-
FilterText: z.
|
|
5443
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
5444
|
+
FilterText: z.ZodNullable<z.ZodString>;
|
|
5375
5445
|
__mj_CreatedAt: z.ZodDate;
|
|
5376
5446
|
__mj_UpdatedAt: z.ZodDate;
|
|
5377
5447
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5398,8 +5468,8 @@ export declare const ScheduledActionParamSchema: z.ZodObject<{
|
|
|
5398
5468
|
ScheduledActionID: z.ZodString;
|
|
5399
5469
|
ActionParamID: z.ZodString;
|
|
5400
5470
|
ValueType: z.ZodUnion<[z.ZodLiteral<"Static">, z.ZodLiteral<"SQL Statement">]>;
|
|
5401
|
-
Value: z.
|
|
5402
|
-
Comments: z.
|
|
5471
|
+
Value: z.ZodNullable<z.ZodString>;
|
|
5472
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
5403
5473
|
__mj_CreatedAt: z.ZodDate;
|
|
5404
5474
|
__mj_UpdatedAt: z.ZodDate;
|
|
5405
5475
|
ScheduledAction: z.ZodString;
|
|
@@ -5434,18 +5504,18 @@ export type ScheduledActionParamEntityType = z.infer<typeof ScheduledActionParam
|
|
|
5434
5504
|
export declare const ScheduledActionSchema: z.ZodObject<{
|
|
5435
5505
|
ID: z.ZodString;
|
|
5436
5506
|
Name: z.ZodString;
|
|
5437
|
-
Description: z.
|
|
5507
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
5438
5508
|
CreatedByUserID: z.ZodString;
|
|
5439
5509
|
ActionID: z.ZodString;
|
|
5440
5510
|
Type: z.ZodUnion<[z.ZodLiteral<"Daily">, z.ZodLiteral<"Weekly">, z.ZodLiteral<"Monthly">, z.ZodLiteral<"Yearly">, z.ZodLiteral<"Custom">]>;
|
|
5441
|
-
CronExpression: z.
|
|
5511
|
+
CronExpression: z.ZodNullable<z.ZodString>;
|
|
5442
5512
|
Timezone: z.ZodString;
|
|
5443
5513
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">, z.ZodLiteral<"Expired">]>;
|
|
5444
|
-
IntervalDays: z.
|
|
5445
|
-
DayOfWeek: z.
|
|
5446
|
-
DayOfMonth: z.
|
|
5447
|
-
Month: z.
|
|
5448
|
-
CustomCronExpression: z.
|
|
5514
|
+
IntervalDays: z.ZodNullable<z.ZodNumber>;
|
|
5515
|
+
DayOfWeek: z.ZodNullable<z.ZodString>;
|
|
5516
|
+
DayOfMonth: z.ZodNullable<z.ZodNumber>;
|
|
5517
|
+
Month: z.ZodNullable<z.ZodString>;
|
|
5518
|
+
CustomCronExpression: z.ZodNullable<z.ZodString>;
|
|
5449
5519
|
__mj_CreatedAt: z.ZodDate;
|
|
5450
5520
|
__mj_UpdatedAt: z.ZodDate;
|
|
5451
5521
|
CreatedByUser: z.ZodString;
|
|
@@ -5498,7 +5568,7 @@ export declare const SchemaInfoSchema: z.ZodObject<{
|
|
|
5498
5568
|
SchemaName: z.ZodString;
|
|
5499
5569
|
EntityIDMin: z.ZodNumber;
|
|
5500
5570
|
EntityIDMax: z.ZodNumber;
|
|
5501
|
-
Comments: z.
|
|
5571
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
5502
5572
|
__mj_CreatedAt: z.ZodDate;
|
|
5503
5573
|
__mj_UpdatedAt: z.ZodDate;
|
|
5504
5574
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5525,10 +5595,10 @@ export type SchemaInfoEntityType = z.infer<typeof SchemaInfoSchema>;
|
|
|
5525
5595
|
export declare const SkillSchema: z.ZodObject<{
|
|
5526
5596
|
ID: z.ZodString;
|
|
5527
5597
|
Name: z.ZodString;
|
|
5528
|
-
ParentID: z.
|
|
5598
|
+
ParentID: z.ZodNullable<z.ZodString>;
|
|
5529
5599
|
__mj_CreatedAt: z.ZodDate;
|
|
5530
5600
|
__mj_UpdatedAt: z.ZodDate;
|
|
5531
|
-
Parent: z.
|
|
5601
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
5532
5602
|
}, "strip", z.ZodTypeAny, {
|
|
5533
5603
|
ID?: string;
|
|
5534
5604
|
__mj_CreatedAt?: Date;
|
|
@@ -5583,12 +5653,12 @@ export type TaggedItemEntityType = z.infer<typeof TaggedItemSchema>;
|
|
|
5583
5653
|
export declare const TagSchema: z.ZodObject<{
|
|
5584
5654
|
ID: z.ZodString;
|
|
5585
5655
|
Name: z.ZodString;
|
|
5586
|
-
ParentID: z.
|
|
5656
|
+
ParentID: z.ZodNullable<z.ZodString>;
|
|
5587
5657
|
DisplayName: z.ZodString;
|
|
5588
|
-
Description: z.
|
|
5658
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
5589
5659
|
__mj_CreatedAt: z.ZodDate;
|
|
5590
5660
|
__mj_UpdatedAt: z.ZodDate;
|
|
5591
|
-
Parent: z.
|
|
5661
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
5592
5662
|
}, "strip", z.ZodTypeAny, {
|
|
5593
5663
|
ID?: string;
|
|
5594
5664
|
__mj_CreatedAt?: Date;
|
|
@@ -5615,12 +5685,12 @@ export type TagEntityType = z.infer<typeof TagSchema>;
|
|
|
5615
5685
|
export declare const TemplateCategorySchema: z.ZodObject<{
|
|
5616
5686
|
ID: z.ZodString;
|
|
5617
5687
|
Name: z.ZodString;
|
|
5618
|
-
Description: z.
|
|
5619
|
-
ParentID: z.
|
|
5688
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
5689
|
+
ParentID: z.ZodNullable<z.ZodString>;
|
|
5620
5690
|
UserID: z.ZodString;
|
|
5621
5691
|
__mj_CreatedAt: z.ZodDate;
|
|
5622
5692
|
__mj_UpdatedAt: z.ZodDate;
|
|
5623
|
-
Parent: z.
|
|
5693
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
5624
5694
|
User: z.ZodString;
|
|
5625
5695
|
}, "strip", z.ZodTypeAny, {
|
|
5626
5696
|
ID?: string;
|
|
@@ -5650,7 +5720,7 @@ export type TemplateCategoryEntityType = z.infer<typeof TemplateCategorySchema>;
|
|
|
5650
5720
|
export declare const TemplateContentTypeSchema: z.ZodObject<{
|
|
5651
5721
|
ID: z.ZodString;
|
|
5652
5722
|
Name: z.ZodString;
|
|
5653
|
-
Description: z.
|
|
5723
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
5654
5724
|
CodeType: z.ZodUnion<[z.ZodLiteral<"TypeScript">, z.ZodLiteral<"SQL">, z.ZodLiteral<"HTML">, z.ZodLiteral<"CSS">, z.ZodLiteral<"JavaScript">, z.ZodLiteral<"JSON">, z.ZodLiteral<"Other">]>;
|
|
5655
5725
|
__mj_CreatedAt: z.ZodDate;
|
|
5656
5726
|
__mj_UpdatedAt: z.ZodDate;
|
|
@@ -5677,7 +5747,7 @@ export declare const TemplateContentSchema: z.ZodObject<{
|
|
|
5677
5747
|
ID: z.ZodString;
|
|
5678
5748
|
TemplateID: z.ZodString;
|
|
5679
5749
|
TypeID: z.ZodString;
|
|
5680
|
-
TemplateText: z.
|
|
5750
|
+
TemplateText: z.ZodNullable<z.ZodString>;
|
|
5681
5751
|
Priority: z.ZodNumber;
|
|
5682
5752
|
IsActive: z.ZodBoolean;
|
|
5683
5753
|
__mj_CreatedAt: z.ZodDate;
|
|
@@ -5715,20 +5785,20 @@ export declare const TemplateParamSchema: z.ZodObject<{
|
|
|
5715
5785
|
ID: z.ZodString;
|
|
5716
5786
|
TemplateID: z.ZodString;
|
|
5717
5787
|
Name: z.ZodString;
|
|
5718
|
-
Description: z.
|
|
5788
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
5719
5789
|
Type: z.ZodUnion<[z.ZodLiteral<"Scalar">, z.ZodLiteral<"Array">, z.ZodLiteral<"Object">, z.ZodLiteral<"Record">, z.ZodLiteral<"Entity">]>;
|
|
5720
|
-
DefaultValue: z.
|
|
5790
|
+
DefaultValue: z.ZodNullable<z.ZodString>;
|
|
5721
5791
|
IsRequired: z.ZodBoolean;
|
|
5722
|
-
LinkedParameterName: z.
|
|
5723
|
-
LinkedParameterField: z.
|
|
5724
|
-
ExtraFilter: z.
|
|
5725
|
-
EntityID: z.
|
|
5726
|
-
RecordID: z.
|
|
5792
|
+
LinkedParameterName: z.ZodNullable<z.ZodString>;
|
|
5793
|
+
LinkedParameterField: z.ZodNullable<z.ZodString>;
|
|
5794
|
+
ExtraFilter: z.ZodNullable<z.ZodString>;
|
|
5795
|
+
EntityID: z.ZodNullable<z.ZodString>;
|
|
5796
|
+
RecordID: z.ZodNullable<z.ZodString>;
|
|
5727
5797
|
__mj_CreatedAt: z.ZodDate;
|
|
5728
5798
|
__mj_UpdatedAt: z.ZodDate;
|
|
5729
|
-
OrderBy: z.
|
|
5799
|
+
OrderBy: z.ZodNullable<z.ZodString>;
|
|
5730
5800
|
Template: z.ZodString;
|
|
5731
|
-
Entity: z.
|
|
5801
|
+
Entity: z.ZodNullable<z.ZodString>;
|
|
5732
5802
|
}, "strip", z.ZodTypeAny, {
|
|
5733
5803
|
ID?: string;
|
|
5734
5804
|
__mj_CreatedAt?: Date;
|
|
@@ -5773,16 +5843,16 @@ export type TemplateParamEntityType = z.infer<typeof TemplateParamSchema>;
|
|
|
5773
5843
|
export declare const TemplateSchema: z.ZodObject<{
|
|
5774
5844
|
ID: z.ZodString;
|
|
5775
5845
|
Name: z.ZodString;
|
|
5776
|
-
Description: z.
|
|
5777
|
-
CategoryID: z.
|
|
5778
|
-
UserPrompt: z.
|
|
5846
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
5847
|
+
CategoryID: z.ZodNullable<z.ZodString>;
|
|
5848
|
+
UserPrompt: z.ZodNullable<z.ZodString>;
|
|
5779
5849
|
UserID: z.ZodString;
|
|
5780
|
-
ActiveAt: z.
|
|
5781
|
-
DisabledAt: z.
|
|
5850
|
+
ActiveAt: z.ZodNullable<z.ZodDate>;
|
|
5851
|
+
DisabledAt: z.ZodNullable<z.ZodDate>;
|
|
5782
5852
|
IsActive: z.ZodBoolean;
|
|
5783
5853
|
__mj_CreatedAt: z.ZodDate;
|
|
5784
5854
|
__mj_UpdatedAt: z.ZodDate;
|
|
5785
|
-
Category: z.
|
|
5855
|
+
Category: z.ZodNullable<z.ZodString>;
|
|
5786
5856
|
User: z.ZodString;
|
|
5787
5857
|
}, "strip", z.ZodTypeAny, {
|
|
5788
5858
|
Category?: string;
|
|
@@ -5925,17 +5995,17 @@ export type UserFavoriteEntityType = z.infer<typeof UserFavoriteSchema>;
|
|
|
5925
5995
|
export declare const UserNotificationSchema: z.ZodObject<{
|
|
5926
5996
|
ID: z.ZodString;
|
|
5927
5997
|
UserID: z.ZodString;
|
|
5928
|
-
Title: z.
|
|
5929
|
-
Message: z.
|
|
5930
|
-
ResourceTypeID: z.
|
|
5931
|
-
ResourceConfiguration: z.
|
|
5998
|
+
Title: z.ZodNullable<z.ZodString>;
|
|
5999
|
+
Message: z.ZodNullable<z.ZodString>;
|
|
6000
|
+
ResourceTypeID: z.ZodNullable<z.ZodString>;
|
|
6001
|
+
ResourceConfiguration: z.ZodNullable<z.ZodString>;
|
|
5932
6002
|
Unread: z.ZodBoolean;
|
|
5933
|
-
ReadAt: z.
|
|
6003
|
+
ReadAt: z.ZodNullable<z.ZodDate>;
|
|
5934
6004
|
__mj_CreatedAt: z.ZodDate;
|
|
5935
6005
|
__mj_UpdatedAt: z.ZodDate;
|
|
5936
|
-
ResourceRecordID: z.
|
|
6006
|
+
ResourceRecordID: z.ZodNullable<z.ZodString>;
|
|
5937
6007
|
User: z.ZodString;
|
|
5938
|
-
ResourceType: z.
|
|
6008
|
+
ResourceType: z.ZodNullable<z.ZodString>;
|
|
5939
6009
|
}, "strip", z.ZodTypeAny, {
|
|
5940
6010
|
ID?: string;
|
|
5941
6011
|
__mj_CreatedAt?: Date;
|
|
@@ -5981,10 +6051,10 @@ export declare const UserRecordLogSchema: z.ZodObject<{
|
|
|
5981
6051
|
__mj_UpdatedAt: z.ZodDate;
|
|
5982
6052
|
Entity: z.ZodString;
|
|
5983
6053
|
UserName: z.ZodString;
|
|
5984
|
-
UserFirstLast: z.
|
|
6054
|
+
UserFirstLast: z.ZodNullable<z.ZodString>;
|
|
5985
6055
|
UserEmail: z.ZodString;
|
|
5986
|
-
UserSupervisor: z.
|
|
5987
|
-
UserSupervisorEmail: z.
|
|
6056
|
+
UserSupervisor: z.ZodNullable<z.ZodString>;
|
|
6057
|
+
UserSupervisorEmail: z.ZodNullable<z.ZodString>;
|
|
5988
6058
|
}, "strip", z.ZodTypeAny, {
|
|
5989
6059
|
ID?: string;
|
|
5990
6060
|
__mj_CreatedAt?: Date;
|
|
@@ -6054,13 +6124,13 @@ export type UserRoleEntityType = z.infer<typeof UserRoleSchema>;
|
|
|
6054
6124
|
export declare const UserViewCategorySchema: z.ZodObject<{
|
|
6055
6125
|
ID: z.ZodString;
|
|
6056
6126
|
Name: z.ZodString;
|
|
6057
|
-
Description: z.
|
|
6058
|
-
ParentID: z.
|
|
6127
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
6128
|
+
ParentID: z.ZodNullable<z.ZodString>;
|
|
6059
6129
|
EntityID: z.ZodString;
|
|
6060
6130
|
UserID: z.ZodString;
|
|
6061
6131
|
__mj_CreatedAt: z.ZodDate;
|
|
6062
6132
|
__mj_UpdatedAt: z.ZodDate;
|
|
6063
|
-
Parent: z.
|
|
6133
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
6064
6134
|
Entity: z.ZodString;
|
|
6065
6135
|
User: z.ZodString;
|
|
6066
6136
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6158,24 +6228,24 @@ export declare const UserViewSchema: z.ZodObject<{
|
|
|
6158
6228
|
UserID: z.ZodString;
|
|
6159
6229
|
EntityID: z.ZodString;
|
|
6160
6230
|
Name: z.ZodString;
|
|
6161
|
-
Description: z.
|
|
6162
|
-
CategoryID: z.
|
|
6231
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
6232
|
+
CategoryID: z.ZodNullable<z.ZodString>;
|
|
6163
6233
|
IsShared: z.ZodBoolean;
|
|
6164
6234
|
IsDefault: z.ZodBoolean;
|
|
6165
|
-
GridState: z.
|
|
6166
|
-
FilterState: z.
|
|
6235
|
+
GridState: z.ZodNullable<z.ZodString>;
|
|
6236
|
+
FilterState: z.ZodNullable<z.ZodString>;
|
|
6167
6237
|
CustomFilterState: z.ZodBoolean;
|
|
6168
6238
|
SmartFilterEnabled: z.ZodBoolean;
|
|
6169
|
-
SmartFilterPrompt: z.
|
|
6170
|
-
SmartFilterWhereClause: z.
|
|
6171
|
-
SmartFilterExplanation: z.
|
|
6172
|
-
WhereClause: z.
|
|
6239
|
+
SmartFilterPrompt: z.ZodNullable<z.ZodString>;
|
|
6240
|
+
SmartFilterWhereClause: z.ZodNullable<z.ZodString>;
|
|
6241
|
+
SmartFilterExplanation: z.ZodNullable<z.ZodString>;
|
|
6242
|
+
WhereClause: z.ZodNullable<z.ZodString>;
|
|
6173
6243
|
CustomWhereClause: z.ZodBoolean;
|
|
6174
|
-
SortState: z.
|
|
6244
|
+
SortState: z.ZodNullable<z.ZodString>;
|
|
6175
6245
|
__mj_CreatedAt: z.ZodDate;
|
|
6176
6246
|
__mj_UpdatedAt: z.ZodDate;
|
|
6177
6247
|
UserName: z.ZodString;
|
|
6178
|
-
UserFirstLast: z.
|
|
6248
|
+
UserFirstLast: z.ZodNullable<z.ZodString>;
|
|
6179
6249
|
UserEmail: z.ZodString;
|
|
6180
6250
|
UserType: z.ZodString;
|
|
6181
6251
|
Entity: z.ZodString;
|
|
@@ -6242,24 +6312,24 @@ export type UserViewEntityType = z.infer<typeof UserViewSchema>;
|
|
|
6242
6312
|
export declare const UserSchema: z.ZodObject<{
|
|
6243
6313
|
ID: z.ZodString;
|
|
6244
6314
|
Name: z.ZodString;
|
|
6245
|
-
FirstName: z.
|
|
6246
|
-
LastName: z.
|
|
6247
|
-
Title: z.
|
|
6315
|
+
FirstName: z.ZodNullable<z.ZodString>;
|
|
6316
|
+
LastName: z.ZodNullable<z.ZodString>;
|
|
6317
|
+
Title: z.ZodNullable<z.ZodString>;
|
|
6248
6318
|
Email: z.ZodString;
|
|
6249
6319
|
Type: z.ZodUnion<[z.ZodLiteral<"User">, z.ZodLiteral<"Owner">]>;
|
|
6250
6320
|
IsActive: z.ZodBoolean;
|
|
6251
6321
|
LinkedRecordType: z.ZodString;
|
|
6252
|
-
LinkedEntityID: z.
|
|
6253
|
-
LinkedEntityRecordID: z.
|
|
6254
|
-
EmployeeID: z.
|
|
6322
|
+
LinkedEntityID: z.ZodNullable<z.ZodString>;
|
|
6323
|
+
LinkedEntityRecordID: z.ZodNullable<z.ZodString>;
|
|
6324
|
+
EmployeeID: z.ZodNullable<z.ZodString>;
|
|
6255
6325
|
__mj_CreatedAt: z.ZodDate;
|
|
6256
6326
|
__mj_UpdatedAt: z.ZodDate;
|
|
6257
|
-
FirstLast: z.
|
|
6258
|
-
EmployeeFirstLast: z.
|
|
6259
|
-
EmployeeEmail: z.
|
|
6260
|
-
EmployeeTitle: z.
|
|
6261
|
-
EmployeeSupervisor: z.
|
|
6262
|
-
EmployeeSupervisorEmail: z.
|
|
6327
|
+
FirstLast: z.ZodNullable<z.ZodString>;
|
|
6328
|
+
EmployeeFirstLast: z.ZodNullable<z.ZodString>;
|
|
6329
|
+
EmployeeEmail: z.ZodNullable<z.ZodString>;
|
|
6330
|
+
EmployeeTitle: z.ZodNullable<z.ZodString>;
|
|
6331
|
+
EmployeeSupervisor: z.ZodNullable<z.ZodString>;
|
|
6332
|
+
EmployeeSupervisorEmail: z.ZodNullable<z.ZodString>;
|
|
6263
6333
|
}, "strip", z.ZodTypeAny, {
|
|
6264
6334
|
ID?: string;
|
|
6265
6335
|
__mj_CreatedAt?: Date;
|
|
@@ -6310,9 +6380,9 @@ export type UserEntityType = z.infer<typeof UserSchema>;
|
|
|
6310
6380
|
export declare const VectorDatabaseSchema: z.ZodObject<{
|
|
6311
6381
|
ID: z.ZodString;
|
|
6312
6382
|
Name: z.ZodString;
|
|
6313
|
-
Description: z.
|
|
6314
|
-
DefaultURL: z.
|
|
6315
|
-
ClassKey: z.
|
|
6383
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
6384
|
+
DefaultURL: z.ZodNullable<z.ZodString>;
|
|
6385
|
+
ClassKey: z.ZodNullable<z.ZodString>;
|
|
6316
6386
|
__mj_CreatedAt: z.ZodDate;
|
|
6317
6387
|
__mj_UpdatedAt: z.ZodDate;
|
|
6318
6388
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6339,7 +6409,7 @@ export type VectorDatabaseEntityType = z.infer<typeof VectorDatabaseSchema>;
|
|
|
6339
6409
|
export declare const VectorIndexSchema: z.ZodObject<{
|
|
6340
6410
|
ID: z.ZodString;
|
|
6341
6411
|
Name: z.ZodString;
|
|
6342
|
-
Description: z.
|
|
6412
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
6343
6413
|
VectorDatabaseID: z.ZodString;
|
|
6344
6414
|
EmbeddingModelID: z.ZodString;
|
|
6345
6415
|
__mj_CreatedAt: z.ZodDate;
|
|
@@ -6376,14 +6446,14 @@ export declare const VersionInstallationSchema: z.ZodObject<{
|
|
|
6376
6446
|
MajorVersion: z.ZodNumber;
|
|
6377
6447
|
MinorVersion: z.ZodNumber;
|
|
6378
6448
|
PatchVersion: z.ZodNumber;
|
|
6379
|
-
Type: z.
|
|
6449
|
+
Type: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"New">, z.ZodLiteral<"Upgrade">]>>;
|
|
6380
6450
|
InstalledAt: z.ZodDate;
|
|
6381
6451
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"In Progress">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Failed">]>;
|
|
6382
|
-
InstallLog: z.
|
|
6383
|
-
Comments: z.
|
|
6452
|
+
InstallLog: z.ZodNullable<z.ZodString>;
|
|
6453
|
+
Comments: z.ZodNullable<z.ZodString>;
|
|
6384
6454
|
__mj_CreatedAt: z.ZodDate;
|
|
6385
6455
|
__mj_UpdatedAt: z.ZodDate;
|
|
6386
|
-
CompleteVersion: z.
|
|
6456
|
+
CompleteVersion: z.ZodNullable<z.ZodString>;
|
|
6387
6457
|
}, "strip", z.ZodTypeAny, {
|
|
6388
6458
|
ID?: string;
|
|
6389
6459
|
Comments?: string;
|
|
@@ -6418,7 +6488,7 @@ export type VersionInstallationEntityType = z.infer<typeof VersionInstallationSc
|
|
|
6418
6488
|
export declare const WorkflowEngineSchema: z.ZodObject<{
|
|
6419
6489
|
ID: z.ZodString;
|
|
6420
6490
|
Name: z.ZodString;
|
|
6421
|
-
Description: z.
|
|
6491
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
6422
6492
|
DriverPath: z.ZodString;
|
|
6423
6493
|
DriverClass: z.ZodString;
|
|
6424
6494
|
__mj_CreatedAt: z.ZodDate;
|
|
@@ -6449,9 +6519,9 @@ export declare const WorkflowRunSchema: z.ZodObject<{
|
|
|
6449
6519
|
WorkflowID: z.ZodString;
|
|
6450
6520
|
ExternalSystemRecordID: z.ZodString;
|
|
6451
6521
|
StartedAt: z.ZodDate;
|
|
6452
|
-
EndedAt: z.
|
|
6522
|
+
EndedAt: z.ZodNullable<z.ZodDate>;
|
|
6453
6523
|
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"In Progress">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Failed">]>;
|
|
6454
|
-
Results: z.
|
|
6524
|
+
Results: z.ZodNullable<z.ZodString>;
|
|
6455
6525
|
__mj_CreatedAt: z.ZodDate;
|
|
6456
6526
|
__mj_UpdatedAt: z.ZodDate;
|
|
6457
6527
|
Workflow: z.ZodString;
|
|
@@ -6488,16 +6558,16 @@ export type WorkflowRunEntityType = z.infer<typeof WorkflowRunSchema>;
|
|
|
6488
6558
|
export declare const WorkflowSchema: z.ZodObject<{
|
|
6489
6559
|
ID: z.ZodString;
|
|
6490
6560
|
Name: z.ZodString;
|
|
6491
|
-
Description: z.
|
|
6561
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
6492
6562
|
WorkflowEngineID: z.ZodString;
|
|
6493
6563
|
ExternalSystemRecordID: z.ZodString;
|
|
6494
6564
|
AutoRunEnabled: z.ZodBoolean;
|
|
6495
|
-
AutoRunIntervalUnits: z.
|
|
6496
|
-
AutoRunInterval: z.
|
|
6497
|
-
SubclassName: z.
|
|
6565
|
+
AutoRunIntervalUnits: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Years">, z.ZodLiteral<"Months">, z.ZodLiteral<"Weeks">, z.ZodLiteral<"Days">, z.ZodLiteral<"Hours">, z.ZodLiteral<"Minutes">]>>;
|
|
6566
|
+
AutoRunInterval: z.ZodNullable<z.ZodNumber>;
|
|
6567
|
+
SubclassName: z.ZodNullable<z.ZodString>;
|
|
6498
6568
|
__mj_CreatedAt: z.ZodDate;
|
|
6499
6569
|
__mj_UpdatedAt: z.ZodDate;
|
|
6500
|
-
AutoRunIntervalMinutes: z.
|
|
6570
|
+
AutoRunIntervalMinutes: z.ZodNullable<z.ZodNumber>;
|
|
6501
6571
|
}, "strip", z.ZodTypeAny, {
|
|
6502
6572
|
ID?: string;
|
|
6503
6573
|
__mj_CreatedAt?: Date;
|
|
@@ -6532,12 +6602,12 @@ export type WorkflowEntityType = z.infer<typeof WorkflowSchema>;
|
|
|
6532
6602
|
export declare const WorkspaceItemSchema: z.ZodObject<{
|
|
6533
6603
|
ID: z.ZodString;
|
|
6534
6604
|
Name: z.ZodString;
|
|
6535
|
-
Description: z.
|
|
6605
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
6536
6606
|
WorkspaceID: z.ZodString;
|
|
6537
6607
|
ResourceTypeID: z.ZodString;
|
|
6538
|
-
ResourceRecordID: z.
|
|
6608
|
+
ResourceRecordID: z.ZodNullable<z.ZodString>;
|
|
6539
6609
|
Sequence: z.ZodNumber;
|
|
6540
|
-
Configuration: z.
|
|
6610
|
+
Configuration: z.ZodNullable<z.ZodString>;
|
|
6541
6611
|
__mj_CreatedAt: z.ZodDate;
|
|
6542
6612
|
__mj_UpdatedAt: z.ZodDate;
|
|
6543
6613
|
Workspace: z.ZodString;
|
|
@@ -6576,7 +6646,7 @@ export type WorkspaceItemEntityType = z.infer<typeof WorkspaceItemSchema>;
|
|
|
6576
6646
|
export declare const WorkspaceSchema: z.ZodObject<{
|
|
6577
6647
|
ID: z.ZodString;
|
|
6578
6648
|
Name: z.ZodString;
|
|
6579
|
-
Description: z.
|
|
6649
|
+
Description: z.ZodNullable<z.ZodString>;
|
|
6580
6650
|
UserID: z.ZodString;
|
|
6581
6651
|
__mj_CreatedAt: z.ZodDate;
|
|
6582
6652
|
__mj_UpdatedAt: z.ZodDate;
|
|
@@ -18224,6 +18294,205 @@ export declare class ListEntity extends BaseEntity<ListEntityType> {
|
|
|
18224
18294
|
*/
|
|
18225
18295
|
get Category(): string | null;
|
|
18226
18296
|
}
|
|
18297
|
+
/**
|
|
18298
|
+
* MJ: Report User States - strongly typed entity sub-class
|
|
18299
|
+
* * Schema: __mj
|
|
18300
|
+
* * Base Table: ReportUserState
|
|
18301
|
+
* * Base View: vwReportUserStates
|
|
18302
|
+
* * Primary Key: ID
|
|
18303
|
+
* @extends {BaseEntity}
|
|
18304
|
+
* @class
|
|
18305
|
+
* @public
|
|
18306
|
+
*/
|
|
18307
|
+
export declare class ReportUserStateEntity extends BaseEntity<ReportUserStateEntityType> {
|
|
18308
|
+
/**
|
|
18309
|
+
* Loads the MJ: Report User States record from the database
|
|
18310
|
+
* @param ID: string - primary key value to load the MJ: Report User States record.
|
|
18311
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
18312
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
18313
|
+
* @public
|
|
18314
|
+
* @async
|
|
18315
|
+
* @memberof ReportUserStateEntity
|
|
18316
|
+
* @method
|
|
18317
|
+
* @override
|
|
18318
|
+
*/
|
|
18319
|
+
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
18320
|
+
/**
|
|
18321
|
+
* * Field Name: ID
|
|
18322
|
+
* * Display Name: ID
|
|
18323
|
+
* * SQL Data Type: uniqueidentifier
|
|
18324
|
+
* * Default Value: newsequentialid()
|
|
18325
|
+
*/
|
|
18326
|
+
get ID(): string;
|
|
18327
|
+
/**
|
|
18328
|
+
* * Field Name: ReportID
|
|
18329
|
+
* * Display Name: Report ID
|
|
18330
|
+
* * SQL Data Type: uniqueidentifier
|
|
18331
|
+
* * Related Entity/Foreign Key: Reports (vwReports.ID)
|
|
18332
|
+
*/
|
|
18333
|
+
get ReportID(): string;
|
|
18334
|
+
set ReportID(value: string);
|
|
18335
|
+
/**
|
|
18336
|
+
* * Field Name: UserID
|
|
18337
|
+
* * Display Name: User ID
|
|
18338
|
+
* * SQL Data Type: uniqueidentifier
|
|
18339
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
18340
|
+
*/
|
|
18341
|
+
get UserID(): string;
|
|
18342
|
+
set UserID(value: string);
|
|
18343
|
+
/**
|
|
18344
|
+
* * Field Name: ReportState
|
|
18345
|
+
* * Display Name: Report State
|
|
18346
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
18347
|
+
* * Description: JSON serialized state of user interaction with the report
|
|
18348
|
+
*/
|
|
18349
|
+
get ReportState(): string | null;
|
|
18350
|
+
set ReportState(value: string | null);
|
|
18351
|
+
/**
|
|
18352
|
+
* * Field Name: __mj_CreatedAt
|
|
18353
|
+
* * Display Name: Created At
|
|
18354
|
+
* * SQL Data Type: datetimeoffset
|
|
18355
|
+
* * Default Value: getutcdate()
|
|
18356
|
+
*/
|
|
18357
|
+
get __mj_CreatedAt(): Date;
|
|
18358
|
+
/**
|
|
18359
|
+
* * Field Name: __mj_UpdatedAt
|
|
18360
|
+
* * Display Name: Updated At
|
|
18361
|
+
* * SQL Data Type: datetimeoffset
|
|
18362
|
+
* * Default Value: getutcdate()
|
|
18363
|
+
*/
|
|
18364
|
+
get __mj_UpdatedAt(): Date;
|
|
18365
|
+
/**
|
|
18366
|
+
* * Field Name: Report
|
|
18367
|
+
* * Display Name: Report
|
|
18368
|
+
* * SQL Data Type: nvarchar(255)
|
|
18369
|
+
* * Default Value: null
|
|
18370
|
+
*/
|
|
18371
|
+
get Report(): string;
|
|
18372
|
+
/**
|
|
18373
|
+
* * Field Name: User
|
|
18374
|
+
* * Display Name: User
|
|
18375
|
+
* * SQL Data Type: nvarchar(100)
|
|
18376
|
+
* * Default Value: null
|
|
18377
|
+
*/
|
|
18378
|
+
get User(): string;
|
|
18379
|
+
}
|
|
18380
|
+
/**
|
|
18381
|
+
* MJ: Report Versions - strongly typed entity sub-class
|
|
18382
|
+
* * Schema: __mj
|
|
18383
|
+
* * Base Table: ReportVersion
|
|
18384
|
+
* * Base View: vwReportVersions
|
|
18385
|
+
* * Primary Key: ID
|
|
18386
|
+
* @extends {BaseEntity}
|
|
18387
|
+
* @class
|
|
18388
|
+
* @public
|
|
18389
|
+
*/
|
|
18390
|
+
export declare class ReportVersionEntity extends BaseEntity<ReportVersionEntityType> {
|
|
18391
|
+
/**
|
|
18392
|
+
* Loads the MJ: Report Versions record from the database
|
|
18393
|
+
* @param ID: string - primary key value to load the MJ: Report Versions record.
|
|
18394
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
18395
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
18396
|
+
* @public
|
|
18397
|
+
* @async
|
|
18398
|
+
* @memberof ReportVersionEntity
|
|
18399
|
+
* @method
|
|
18400
|
+
* @override
|
|
18401
|
+
*/
|
|
18402
|
+
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
18403
|
+
/**
|
|
18404
|
+
* Validate() method override for MJ: Report Versions entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
18405
|
+
* * VersionNumber: This rule ensures that the version number must be greater than zero, meaning there should be at least one version created.
|
|
18406
|
+
* @public
|
|
18407
|
+
* @method
|
|
18408
|
+
* @override
|
|
18409
|
+
*/
|
|
18410
|
+
Validate(): ValidationResult;
|
|
18411
|
+
/**
|
|
18412
|
+
* This rule ensures that the version number must be greater than zero, meaning there should be at least one version created.
|
|
18413
|
+
* @param result - the ValidationResult object to add any errors or warnings to
|
|
18414
|
+
* @public
|
|
18415
|
+
* @method
|
|
18416
|
+
*/
|
|
18417
|
+
ValidateVersionNumberGreaterThanZero(result: ValidationResult): void;
|
|
18418
|
+
/**
|
|
18419
|
+
* * Field Name: ID
|
|
18420
|
+
* * Display Name: ID
|
|
18421
|
+
* * SQL Data Type: uniqueidentifier
|
|
18422
|
+
* * Default Value: newsequentialid()
|
|
18423
|
+
*/
|
|
18424
|
+
get ID(): string;
|
|
18425
|
+
/**
|
|
18426
|
+
* * Field Name: ReportID
|
|
18427
|
+
* * Display Name: Report ID
|
|
18428
|
+
* * SQL Data Type: uniqueidentifier
|
|
18429
|
+
* * Related Entity/Foreign Key: Reports (vwReports.ID)
|
|
18430
|
+
*/
|
|
18431
|
+
get ReportID(): string;
|
|
18432
|
+
set ReportID(value: string);
|
|
18433
|
+
/**
|
|
18434
|
+
* * Field Name: VersionNumber
|
|
18435
|
+
* * Display Name: Version Number
|
|
18436
|
+
* * SQL Data Type: int
|
|
18437
|
+
* * Description: Report version number, sequential per report starting at 1
|
|
18438
|
+
*/
|
|
18439
|
+
get VersionNumber(): number;
|
|
18440
|
+
set VersionNumber(value: number);
|
|
18441
|
+
/**
|
|
18442
|
+
* * Field Name: Name
|
|
18443
|
+
* * Display Name: Name
|
|
18444
|
+
* * SQL Data Type: nvarchar(255)
|
|
18445
|
+
* * Description: Name of this report version
|
|
18446
|
+
*/
|
|
18447
|
+
get Name(): string;
|
|
18448
|
+
set Name(value: string);
|
|
18449
|
+
/**
|
|
18450
|
+
* * Field Name: Description
|
|
18451
|
+
* * Display Name: Description
|
|
18452
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
18453
|
+
* * Description: Description of this report version
|
|
18454
|
+
*/
|
|
18455
|
+
get Description(): string | null;
|
|
18456
|
+
set Description(value: string | null);
|
|
18457
|
+
/**
|
|
18458
|
+
* * Field Name: Configuration
|
|
18459
|
+
* * Display Name: Configuration
|
|
18460
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
18461
|
+
* * Description: JSON configuration of report structure, layout and logic
|
|
18462
|
+
*/
|
|
18463
|
+
get Configuration(): string | null;
|
|
18464
|
+
set Configuration(value: string | null);
|
|
18465
|
+
/**
|
|
18466
|
+
* * Field Name: DataContextUpdated
|
|
18467
|
+
* * Display Name: Data Context Updated
|
|
18468
|
+
* * SQL Data Type: bit
|
|
18469
|
+
* * Default Value: 0
|
|
18470
|
+
* * Description: Indicates if the data context was updated in this version
|
|
18471
|
+
*/
|
|
18472
|
+
get DataContextUpdated(): boolean;
|
|
18473
|
+
set DataContextUpdated(value: boolean);
|
|
18474
|
+
/**
|
|
18475
|
+
* * Field Name: __mj_CreatedAt
|
|
18476
|
+
* * Display Name: Created At
|
|
18477
|
+
* * SQL Data Type: datetimeoffset
|
|
18478
|
+
* * Default Value: getutcdate()
|
|
18479
|
+
*/
|
|
18480
|
+
get __mj_CreatedAt(): Date;
|
|
18481
|
+
/**
|
|
18482
|
+
* * Field Name: __mj_UpdatedAt
|
|
18483
|
+
* * Display Name: Updated At
|
|
18484
|
+
* * SQL Data Type: datetimeoffset
|
|
18485
|
+
* * Default Value: getutcdate()
|
|
18486
|
+
*/
|
|
18487
|
+
get __mj_UpdatedAt(): Date;
|
|
18488
|
+
/**
|
|
18489
|
+
* * Field Name: Report
|
|
18490
|
+
* * Display Name: Report
|
|
18491
|
+
* * SQL Data Type: nvarchar(255)
|
|
18492
|
+
* * Default Value: null
|
|
18493
|
+
*/
|
|
18494
|
+
get Report(): string;
|
|
18495
|
+
}
|
|
18227
18496
|
/**
|
|
18228
18497
|
* Output Delivery Types - strongly typed entity sub-class
|
|
18229
18498
|
* * Schema: __mj
|