@memberjunction/server 5.27.1 → 5.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/generated.d.ts +627 -1
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +2522 -1
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/ResolverBase.d.ts +14 -0
- package/dist/generic/ResolverBase.d.ts.map +1 -1
- package/dist/generic/ResolverBase.js +37 -3
- package/dist/generic/ResolverBase.js.map +1 -1
- package/dist/generic/RestoreContextInput.d.ts +27 -0
- package/dist/generic/RestoreContextInput.d.ts.map +1 -0
- package/dist/generic/RestoreContextInput.js +39 -0
- package/dist/generic/RestoreContextInput.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +20 -4
- package/dist/index.js.map +1 -1
- package/dist/resolvers/IntegrationDiscoveryResolver.d.ts +18 -1
- package/dist/resolvers/IntegrationDiscoveryResolver.d.ts.map +1 -1
- package/dist/resolvers/IntegrationDiscoveryResolver.js +247 -22
- package/dist/resolvers/IntegrationDiscoveryResolver.js.map +1 -1
- package/package.json +66 -66
- package/src/generated/generated.ts +1890 -1
- package/src/generic/ResolverBase.ts +41 -4
- package/src/generic/RestoreContextInput.ts +32 -0
- package/src/index.ts +21 -5
- package/src/resolvers/IntegrationDiscoveryResolver.ts +224 -20
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* >>> THE NEXT TIME THIS FILE IS GENERATED
|
|
8
8
|
*
|
|
9
9
|
**********************************************************************************/
|
|
10
|
-
import { PubSubEngine, ResolverBase, RunViewByIDInput, RunViewByNameInput, RunDynamicViewInput, AppContext, KeyValuePairInput, DeleteOptionsInput } from '@memberjunction/server';
|
|
10
|
+
import { PubSubEngine, ResolverBase, RunViewByIDInput, RunViewByNameInput, RunDynamicViewInput, AppContext, KeyValuePairInput, DeleteOptionsInput, RestoreContextInput } from '@memberjunction/server';
|
|
11
11
|
export declare class MJAccessControlRule_ {
|
|
12
12
|
ID: string;
|
|
13
13
|
EntityID: string;
|
|
@@ -39,6 +39,7 @@ export declare class CreateMJAccessControlRuleInput {
|
|
|
39
39
|
CanShare?: boolean;
|
|
40
40
|
ExpiresAt: Date | null;
|
|
41
41
|
GrantedByUserID?: string;
|
|
42
|
+
RestoreContext___?: RestoreContextInput;
|
|
42
43
|
}
|
|
43
44
|
export declare class UpdateMJAccessControlRuleInput {
|
|
44
45
|
ID: string;
|
|
@@ -54,6 +55,7 @@ export declare class UpdateMJAccessControlRuleInput {
|
|
|
54
55
|
ExpiresAt?: Date | null;
|
|
55
56
|
GrantedByUserID?: string;
|
|
56
57
|
OldValues___?: KeyValuePairInput[];
|
|
58
|
+
RestoreContext___?: RestoreContextInput;
|
|
57
59
|
}
|
|
58
60
|
export declare class RunMJAccessControlRuleViewResult {
|
|
59
61
|
Results: MJAccessControlRule_[];
|
|
@@ -88,6 +90,7 @@ export declare class CreateMJActionAuthorizationInput {
|
|
|
88
90
|
ActionID?: string;
|
|
89
91
|
AuthorizationID?: string;
|
|
90
92
|
Comments: string | null;
|
|
93
|
+
RestoreContext___?: RestoreContextInput;
|
|
91
94
|
}
|
|
92
95
|
export declare class UpdateMJActionAuthorizationInput {
|
|
93
96
|
ID: string;
|
|
@@ -95,6 +98,7 @@ export declare class UpdateMJActionAuthorizationInput {
|
|
|
95
98
|
AuthorizationID?: string;
|
|
96
99
|
Comments?: string | null;
|
|
97
100
|
OldValues___?: KeyValuePairInput[];
|
|
101
|
+
RestoreContext___?: RestoreContextInput;
|
|
98
102
|
}
|
|
99
103
|
export declare class RunMJActionAuthorizationViewResult {
|
|
100
104
|
Results: MJActionAuthorization_[];
|
|
@@ -134,6 +138,7 @@ export declare class CreateMJActionCategoryInput {
|
|
|
134
138
|
Description: string | null;
|
|
135
139
|
ParentID: string | null;
|
|
136
140
|
Status?: string;
|
|
141
|
+
RestoreContext___?: RestoreContextInput;
|
|
137
142
|
}
|
|
138
143
|
export declare class UpdateMJActionCategoryInput {
|
|
139
144
|
ID: string;
|
|
@@ -142,6 +147,7 @@ export declare class UpdateMJActionCategoryInput {
|
|
|
142
147
|
ParentID?: string | null;
|
|
143
148
|
Status?: string;
|
|
144
149
|
OldValues___?: KeyValuePairInput[];
|
|
150
|
+
RestoreContext___?: RestoreContextInput;
|
|
145
151
|
}
|
|
146
152
|
export declare class RunMJActionCategoryViewResult {
|
|
147
153
|
Results: MJActionCategory_[];
|
|
@@ -176,12 +182,14 @@ export declare class CreateMJActionContextTypeInput {
|
|
|
176
182
|
ID?: string;
|
|
177
183
|
Name?: string;
|
|
178
184
|
Description: string | null;
|
|
185
|
+
RestoreContext___?: RestoreContextInput;
|
|
179
186
|
}
|
|
180
187
|
export declare class UpdateMJActionContextTypeInput {
|
|
181
188
|
ID: string;
|
|
182
189
|
Name?: string;
|
|
183
190
|
Description?: string | null;
|
|
184
191
|
OldValues___?: KeyValuePairInput[];
|
|
192
|
+
RestoreContext___?: RestoreContextInput;
|
|
185
193
|
}
|
|
186
194
|
export declare class RunMJActionContextTypeViewResult {
|
|
187
195
|
Results: MJActionContextType_[];
|
|
@@ -217,6 +225,7 @@ export declare class CreateMJActionContextInput {
|
|
|
217
225
|
ActionID?: string;
|
|
218
226
|
ContextTypeID: string | null;
|
|
219
227
|
Status?: string;
|
|
228
|
+
RestoreContext___?: RestoreContextInput;
|
|
220
229
|
}
|
|
221
230
|
export declare class UpdateMJActionContextInput {
|
|
222
231
|
ID: string;
|
|
@@ -224,6 +233,7 @@ export declare class UpdateMJActionContextInput {
|
|
|
224
233
|
ContextTypeID?: string | null;
|
|
225
234
|
Status?: string;
|
|
226
235
|
OldValues___?: KeyValuePairInput[];
|
|
236
|
+
RestoreContext___?: RestoreContextInput;
|
|
227
237
|
}
|
|
228
238
|
export declare class RunMJActionContextViewResult {
|
|
229
239
|
Results: MJActionContext_[];
|
|
@@ -268,6 +278,7 @@ export declare class CreateMJActionExecutionLogInput {
|
|
|
268
278
|
UserID?: string;
|
|
269
279
|
RetentionPeriod: number | null;
|
|
270
280
|
Message: string | null;
|
|
281
|
+
RestoreContext___?: RestoreContextInput;
|
|
271
282
|
}
|
|
272
283
|
export declare class UpdateMJActionExecutionLogInput {
|
|
273
284
|
ID: string;
|
|
@@ -280,6 +291,7 @@ export declare class UpdateMJActionExecutionLogInput {
|
|
|
280
291
|
RetentionPeriod?: number | null;
|
|
281
292
|
Message?: string | null;
|
|
282
293
|
OldValues___?: KeyValuePairInput[];
|
|
294
|
+
RestoreContext___?: RestoreContextInput;
|
|
283
295
|
}
|
|
284
296
|
export declare class RunMJActionExecutionLogViewResult {
|
|
285
297
|
Results: MJActionExecutionLog_[];
|
|
@@ -315,6 +327,7 @@ export declare class CreateMJActionFilterInput {
|
|
|
315
327
|
UserComments: string | null;
|
|
316
328
|
Code?: string;
|
|
317
329
|
CodeExplanation: string | null;
|
|
330
|
+
RestoreContext___?: RestoreContextInput;
|
|
318
331
|
}
|
|
319
332
|
export declare class UpdateMJActionFilterInput {
|
|
320
333
|
ID: string;
|
|
@@ -323,6 +336,7 @@ export declare class UpdateMJActionFilterInput {
|
|
|
323
336
|
Code?: string;
|
|
324
337
|
CodeExplanation?: string | null;
|
|
325
338
|
OldValues___?: KeyValuePairInput[];
|
|
339
|
+
RestoreContext___?: RestoreContextInput;
|
|
326
340
|
}
|
|
327
341
|
export declare class RunMJActionFilterViewResult {
|
|
328
342
|
Results: MJActionFilter_[];
|
|
@@ -358,6 +372,7 @@ export declare class CreateMJActionLibraryInput {
|
|
|
358
372
|
ActionID?: string;
|
|
359
373
|
LibraryID?: string;
|
|
360
374
|
ItemsUsed: string | null;
|
|
375
|
+
RestoreContext___?: RestoreContextInput;
|
|
361
376
|
}
|
|
362
377
|
export declare class UpdateMJActionLibraryInput {
|
|
363
378
|
ID: string;
|
|
@@ -365,6 +380,7 @@ export declare class UpdateMJActionLibraryInput {
|
|
|
365
380
|
LibraryID?: string;
|
|
366
381
|
ItemsUsed?: string | null;
|
|
367
382
|
OldValues___?: KeyValuePairInput[];
|
|
383
|
+
RestoreContext___?: RestoreContextInput;
|
|
368
384
|
}
|
|
369
385
|
export declare class RunMJActionLibraryViewResult {
|
|
370
386
|
Results: MJActionLibrary_[];
|
|
@@ -412,6 +428,7 @@ export declare class CreateMJActionParamInput {
|
|
|
412
428
|
Description: string | null;
|
|
413
429
|
IsRequired?: boolean;
|
|
414
430
|
MediaModality: string | null;
|
|
431
|
+
RestoreContext___?: RestoreContextInput;
|
|
415
432
|
}
|
|
416
433
|
export declare class UpdateMJActionParamInput {
|
|
417
434
|
ID: string;
|
|
@@ -425,6 +442,7 @@ export declare class UpdateMJActionParamInput {
|
|
|
425
442
|
IsRequired?: boolean;
|
|
426
443
|
MediaModality?: string | null;
|
|
427
444
|
OldValues___?: KeyValuePairInput[];
|
|
445
|
+
RestoreContext___?: RestoreContextInput;
|
|
428
446
|
}
|
|
429
447
|
export declare class RunMJActionParamViewResult {
|
|
430
448
|
Results: MJActionParam_[];
|
|
@@ -462,6 +480,7 @@ export declare class CreateMJActionResultCodeInput {
|
|
|
462
480
|
ResultCode?: string;
|
|
463
481
|
IsSuccess?: boolean;
|
|
464
482
|
Description: string | null;
|
|
483
|
+
RestoreContext___?: RestoreContextInput;
|
|
465
484
|
}
|
|
466
485
|
export declare class UpdateMJActionResultCodeInput {
|
|
467
486
|
ID: string;
|
|
@@ -470,6 +489,7 @@ export declare class UpdateMJActionResultCodeInput {
|
|
|
470
489
|
IsSuccess?: boolean;
|
|
471
490
|
Description?: string | null;
|
|
472
491
|
OldValues___?: KeyValuePairInput[];
|
|
492
|
+
RestoreContext___?: RestoreContextInput;
|
|
473
493
|
}
|
|
474
494
|
export declare class RunMJActionResultCodeViewResult {
|
|
475
495
|
Results: MJActionResultCode_[];
|
|
@@ -555,6 +575,7 @@ export declare class CreateMJActionInput {
|
|
|
555
575
|
IconClass: string | null;
|
|
556
576
|
DefaultCompactPromptID: string | null;
|
|
557
577
|
Config: string | null;
|
|
578
|
+
RestoreContext___?: RestoreContextInput;
|
|
558
579
|
}
|
|
559
580
|
export declare class UpdateMJActionInput {
|
|
560
581
|
ID: string;
|
|
@@ -580,6 +601,7 @@ export declare class UpdateMJActionInput {
|
|
|
580
601
|
DefaultCompactPromptID?: string | null;
|
|
581
602
|
Config?: string | null;
|
|
582
603
|
OldValues___?: KeyValuePairInput[];
|
|
604
|
+
RestoreContext___?: RestoreContextInput;
|
|
583
605
|
}
|
|
584
606
|
export declare class RunMJActionViewResult {
|
|
585
607
|
Results: MJAction_[];
|
|
@@ -631,6 +653,7 @@ export declare class CreateMJAIActionInput {
|
|
|
631
653
|
DefaultPrompt: string | null;
|
|
632
654
|
DefaultModelID: string | null;
|
|
633
655
|
IsActive?: boolean;
|
|
656
|
+
RestoreContext___?: RestoreContextInput;
|
|
634
657
|
}
|
|
635
658
|
export declare class UpdateMJAIActionInput {
|
|
636
659
|
ID: string;
|
|
@@ -640,6 +663,7 @@ export declare class UpdateMJAIActionInput {
|
|
|
640
663
|
DefaultModelID?: string | null;
|
|
641
664
|
IsActive?: boolean;
|
|
642
665
|
OldValues___?: KeyValuePairInput[];
|
|
666
|
+
RestoreContext___?: RestoreContextInput;
|
|
643
667
|
}
|
|
644
668
|
export declare class RunMJAIActionViewResult {
|
|
645
669
|
Results: MJAIAction_[];
|
|
@@ -692,6 +716,7 @@ export declare class CreateMJAIAgentActionInput {
|
|
|
692
716
|
CompactMode: string | null;
|
|
693
717
|
CompactLength: number | null;
|
|
694
718
|
CompactPromptID: string | null;
|
|
719
|
+
RestoreContext___?: RestoreContextInput;
|
|
695
720
|
}
|
|
696
721
|
export declare class UpdateMJAIAgentActionInput {
|
|
697
722
|
ID: string;
|
|
@@ -706,6 +731,7 @@ export declare class UpdateMJAIAgentActionInput {
|
|
|
706
731
|
CompactLength?: number | null;
|
|
707
732
|
CompactPromptID?: string | null;
|
|
708
733
|
OldValues___?: KeyValuePairInput[];
|
|
734
|
+
RestoreContext___?: RestoreContextInput;
|
|
709
735
|
}
|
|
710
736
|
export declare class RunMJAIAgentActionViewResult {
|
|
711
737
|
Results: MJAIAgentAction_[];
|
|
@@ -740,6 +766,7 @@ export declare class CreateMJAIAgentArtifactTypeInput {
|
|
|
740
766
|
AgentID?: string;
|
|
741
767
|
ArtifactTypeID?: string;
|
|
742
768
|
Sequence: number | null;
|
|
769
|
+
RestoreContext___?: RestoreContextInput;
|
|
743
770
|
}
|
|
744
771
|
export declare class UpdateMJAIAgentArtifactTypeInput {
|
|
745
772
|
ID: string;
|
|
@@ -747,6 +774,7 @@ export declare class UpdateMJAIAgentArtifactTypeInput {
|
|
|
747
774
|
ArtifactTypeID?: string;
|
|
748
775
|
Sequence?: number | null;
|
|
749
776
|
OldValues___?: KeyValuePairInput[];
|
|
777
|
+
RestoreContext___?: RestoreContextInput;
|
|
750
778
|
}
|
|
751
779
|
export declare class RunMJAIAgentArtifactTypeViewResult {
|
|
752
780
|
Results: MJAIAgentArtifactType_[];
|
|
@@ -790,6 +818,7 @@ export declare class CreateMJAIAgentCategoryInput {
|
|
|
790
818
|
AssignmentStrategy: string | null;
|
|
791
819
|
Status?: string;
|
|
792
820
|
DefaultStorageAccountID: string | null;
|
|
821
|
+
RestoreContext___?: RestoreContextInput;
|
|
793
822
|
}
|
|
794
823
|
export declare class UpdateMJAIAgentCategoryInput {
|
|
795
824
|
ID: string;
|
|
@@ -800,6 +829,7 @@ export declare class UpdateMJAIAgentCategoryInput {
|
|
|
800
829
|
Status?: string;
|
|
801
830
|
DefaultStorageAccountID?: string | null;
|
|
802
831
|
OldValues___?: KeyValuePairInput[];
|
|
832
|
+
RestoreContext___?: RestoreContextInput;
|
|
803
833
|
}
|
|
804
834
|
export declare class RunMJAIAgentCategoryViewResult {
|
|
805
835
|
Results: MJAIAgentCategory_[];
|
|
@@ -838,6 +868,7 @@ export declare class CreateMJAIAgentClientToolInput {
|
|
|
838
868
|
ClientToolDefinitionID?: string;
|
|
839
869
|
IsRequired?: boolean;
|
|
840
870
|
Priority?: number;
|
|
871
|
+
RestoreContext___?: RestoreContextInput;
|
|
841
872
|
}
|
|
842
873
|
export declare class UpdateMJAIAgentClientToolInput {
|
|
843
874
|
ID: string;
|
|
@@ -846,6 +877,7 @@ export declare class UpdateMJAIAgentClientToolInput {
|
|
|
846
877
|
IsRequired?: boolean;
|
|
847
878
|
Priority?: number;
|
|
848
879
|
OldValues___?: KeyValuePairInput[];
|
|
880
|
+
RestoreContext___?: RestoreContextInput;
|
|
849
881
|
}
|
|
850
882
|
export declare class RunMJAIAgentClientToolViewResult {
|
|
851
883
|
Results: MJAIAgentClientTool_[];
|
|
@@ -890,6 +922,7 @@ export declare class CreateMJAIAgentConfigurationInput {
|
|
|
890
922
|
IsDefault?: boolean;
|
|
891
923
|
Priority?: number;
|
|
892
924
|
Status?: string;
|
|
925
|
+
RestoreContext___?: RestoreContextInput;
|
|
893
926
|
}
|
|
894
927
|
export declare class UpdateMJAIAgentConfigurationInput {
|
|
895
928
|
ID: string;
|
|
@@ -902,6 +935,7 @@ export declare class UpdateMJAIAgentConfigurationInput {
|
|
|
902
935
|
Priority?: number;
|
|
903
936
|
Status?: string;
|
|
904
937
|
OldValues___?: KeyValuePairInput[];
|
|
938
|
+
RestoreContext___?: RestoreContextInput;
|
|
905
939
|
}
|
|
906
940
|
export declare class RunMJAIAgentConfigurationViewResult {
|
|
907
941
|
Results: MJAIAgentConfiguration_[];
|
|
@@ -967,6 +1001,7 @@ export declare class CreateMJAIAgentDataSourceInput {
|
|
|
967
1001
|
CacheTimeoutSeconds: number | null;
|
|
968
1002
|
DestinationType?: string;
|
|
969
1003
|
DestinationPath: string | null;
|
|
1004
|
+
RestoreContext___?: RestoreContextInput;
|
|
970
1005
|
}
|
|
971
1006
|
export declare class UpdateMJAIAgentDataSourceInput {
|
|
972
1007
|
ID: string;
|
|
@@ -990,6 +1025,7 @@ export declare class UpdateMJAIAgentDataSourceInput {
|
|
|
990
1025
|
DestinationType?: string;
|
|
991
1026
|
DestinationPath?: string | null;
|
|
992
1027
|
OldValues___?: KeyValuePairInput[];
|
|
1028
|
+
RestoreContext___?: RestoreContextInput;
|
|
993
1029
|
}
|
|
994
1030
|
export declare class RunMJAIAgentDataSourceViewResult {
|
|
995
1031
|
Results: MJAIAgentDataSource_[];
|
|
@@ -1066,6 +1102,7 @@ export declare class CreateMJAIAgentExampleInput {
|
|
|
1066
1102
|
LastAccessedAt: Date | null;
|
|
1067
1103
|
AccessCount?: number;
|
|
1068
1104
|
ExpiresAt: Date | null;
|
|
1105
|
+
RestoreContext___?: RestoreContextInput;
|
|
1069
1106
|
}
|
|
1070
1107
|
export declare class UpdateMJAIAgentExampleInput {
|
|
1071
1108
|
ID: string;
|
|
@@ -1091,6 +1128,7 @@ export declare class UpdateMJAIAgentExampleInput {
|
|
|
1091
1128
|
AccessCount?: number;
|
|
1092
1129
|
ExpiresAt?: Date | null;
|
|
1093
1130
|
OldValues___?: KeyValuePairInput[];
|
|
1131
|
+
RestoreContext___?: RestoreContextInput;
|
|
1094
1132
|
}
|
|
1095
1133
|
export declare class RunMJAIAgentExampleViewResult {
|
|
1096
1134
|
Results: MJAIAgentExample_[];
|
|
@@ -1128,6 +1166,7 @@ export declare class CreateMJAIAgentLearningCycleInput {
|
|
|
1128
1166
|
EndedAt: Date | null;
|
|
1129
1167
|
Status?: string;
|
|
1130
1168
|
AgentSummary: string | null;
|
|
1169
|
+
RestoreContext___?: RestoreContextInput;
|
|
1131
1170
|
}
|
|
1132
1171
|
export declare class UpdateMJAIAgentLearningCycleInput {
|
|
1133
1172
|
ID: string;
|
|
@@ -1137,6 +1176,7 @@ export declare class UpdateMJAIAgentLearningCycleInput {
|
|
|
1137
1176
|
Status?: string;
|
|
1138
1177
|
AgentSummary?: string | null;
|
|
1139
1178
|
OldValues___?: KeyValuePairInput[];
|
|
1179
|
+
RestoreContext___?: RestoreContextInput;
|
|
1140
1180
|
}
|
|
1141
1181
|
export declare class RunMJAIAgentLearningCycleViewResult {
|
|
1142
1182
|
Results: MJAIAgentLearningCycle_[];
|
|
@@ -1177,6 +1217,7 @@ export declare class CreateMJAIAgentModalityInput {
|
|
|
1177
1217
|
IsAllowed?: boolean;
|
|
1178
1218
|
MaxSizeBytes: number | null;
|
|
1179
1219
|
MaxCountPerMessage: number | null;
|
|
1220
|
+
RestoreContext___?: RestoreContextInput;
|
|
1180
1221
|
}
|
|
1181
1222
|
export declare class UpdateMJAIAgentModalityInput {
|
|
1182
1223
|
ID: string;
|
|
@@ -1187,6 +1228,7 @@ export declare class UpdateMJAIAgentModalityInput {
|
|
|
1187
1228
|
MaxSizeBytes?: number | null;
|
|
1188
1229
|
MaxCountPerMessage?: number | null;
|
|
1189
1230
|
OldValues___?: KeyValuePairInput[];
|
|
1231
|
+
RestoreContext___?: RestoreContextInput;
|
|
1190
1232
|
}
|
|
1191
1233
|
export declare class RunMJAIAgentModalityViewResult {
|
|
1192
1234
|
Results: MJAIAgentModality_[];
|
|
@@ -1223,6 +1265,7 @@ export declare class CreateMJAIAgentModelInput {
|
|
|
1223
1265
|
ModelID: string | null;
|
|
1224
1266
|
Active: boolean | null;
|
|
1225
1267
|
Priority: number | null;
|
|
1268
|
+
RestoreContext___?: RestoreContextInput;
|
|
1226
1269
|
}
|
|
1227
1270
|
export declare class UpdateMJAIAgentModelInput {
|
|
1228
1271
|
ID: string;
|
|
@@ -1231,6 +1274,7 @@ export declare class UpdateMJAIAgentModelInput {
|
|
|
1231
1274
|
Active?: boolean | null;
|
|
1232
1275
|
Priority?: number | null;
|
|
1233
1276
|
OldValues___?: KeyValuePairInput[];
|
|
1277
|
+
RestoreContext___?: RestoreContextInput;
|
|
1234
1278
|
}
|
|
1235
1279
|
export declare class RunMJAIAgentModelViewResult {
|
|
1236
1280
|
Results: MJAIAgentModel_[];
|
|
@@ -1266,6 +1310,7 @@ export declare class CreateMJAIAgentNoteTypeInput {
|
|
|
1266
1310
|
Description: string | null;
|
|
1267
1311
|
Priority?: number;
|
|
1268
1312
|
Status?: string;
|
|
1313
|
+
RestoreContext___?: RestoreContextInput;
|
|
1269
1314
|
}
|
|
1270
1315
|
export declare class UpdateMJAIAgentNoteTypeInput {
|
|
1271
1316
|
ID: string;
|
|
@@ -1274,6 +1319,7 @@ export declare class UpdateMJAIAgentNoteTypeInput {
|
|
|
1274
1319
|
Priority?: number;
|
|
1275
1320
|
Status?: string;
|
|
1276
1321
|
OldValues___?: KeyValuePairInput[];
|
|
1322
|
+
RestoreContext___?: RestoreContextInput;
|
|
1277
1323
|
}
|
|
1278
1324
|
export declare class RunMJAIAgentNoteTypeViewResult {
|
|
1279
1325
|
Results: MJAIAgentNoteType_[];
|
|
@@ -1350,6 +1396,7 @@ export declare class CreateMJAIAgentNoteInput {
|
|
|
1350
1396
|
LastAccessedAt: Date | null;
|
|
1351
1397
|
AccessCount?: number;
|
|
1352
1398
|
ExpiresAt: Date | null;
|
|
1399
|
+
RestoreContext___?: RestoreContextInput;
|
|
1353
1400
|
}
|
|
1354
1401
|
export declare class UpdateMJAIAgentNoteInput {
|
|
1355
1402
|
ID: string;
|
|
@@ -1374,6 +1421,7 @@ export declare class UpdateMJAIAgentNoteInput {
|
|
|
1374
1421
|
AccessCount?: number;
|
|
1375
1422
|
ExpiresAt?: Date | null;
|
|
1376
1423
|
OldValues___?: KeyValuePairInput[];
|
|
1424
|
+
RestoreContext___?: RestoreContextInput;
|
|
1377
1425
|
}
|
|
1378
1426
|
export declare class RunMJAIAgentNoteViewResult {
|
|
1379
1427
|
Results: MJAIAgentNote_[];
|
|
@@ -1419,6 +1467,7 @@ export declare class CreateMJAIAgentPermissionInput {
|
|
|
1419
1467
|
CanEdit?: boolean;
|
|
1420
1468
|
CanDelete?: boolean;
|
|
1421
1469
|
Comments: string | null;
|
|
1470
|
+
RestoreContext___?: RestoreContextInput;
|
|
1422
1471
|
}
|
|
1423
1472
|
export declare class UpdateMJAIAgentPermissionInput {
|
|
1424
1473
|
ID: string;
|
|
@@ -1431,6 +1480,7 @@ export declare class UpdateMJAIAgentPermissionInput {
|
|
|
1431
1480
|
CanDelete?: boolean;
|
|
1432
1481
|
Comments?: string | null;
|
|
1433
1482
|
OldValues___?: KeyValuePairInput[];
|
|
1483
|
+
RestoreContext___?: RestoreContextInput;
|
|
1434
1484
|
}
|
|
1435
1485
|
export declare class RunMJAIAgentPermissionViewResult {
|
|
1436
1486
|
Results: MJAIAgentPermission_[];
|
|
@@ -1476,6 +1526,7 @@ export declare class CreateMJAIAgentPromptInput {
|
|
|
1476
1526
|
Status?: string;
|
|
1477
1527
|
ContextBehavior?: string;
|
|
1478
1528
|
ContextMessageCount: number | null;
|
|
1529
|
+
RestoreContext___?: RestoreContextInput;
|
|
1479
1530
|
}
|
|
1480
1531
|
export declare class UpdateMJAIAgentPromptInput {
|
|
1481
1532
|
ID: string;
|
|
@@ -1488,6 +1539,7 @@ export declare class UpdateMJAIAgentPromptInput {
|
|
|
1488
1539
|
ContextBehavior?: string;
|
|
1489
1540
|
ContextMessageCount?: number | null;
|
|
1490
1541
|
OldValues___?: KeyValuePairInput[];
|
|
1542
|
+
RestoreContext___?: RestoreContextInput;
|
|
1491
1543
|
}
|
|
1492
1544
|
export declare class RunMJAIAgentPromptViewResult {
|
|
1493
1545
|
Results: MJAIAgentPrompt_[];
|
|
@@ -1532,6 +1584,7 @@ export declare class CreateMJAIAgentRelationshipInput {
|
|
|
1532
1584
|
SubAgentContextPaths: string | null;
|
|
1533
1585
|
MessageMode?: string;
|
|
1534
1586
|
MaxMessages: number | null;
|
|
1587
|
+
RestoreContext___?: RestoreContextInput;
|
|
1535
1588
|
}
|
|
1536
1589
|
export declare class UpdateMJAIAgentRelationshipInput {
|
|
1537
1590
|
ID: string;
|
|
@@ -1544,6 +1597,7 @@ export declare class UpdateMJAIAgentRelationshipInput {
|
|
|
1544
1597
|
MessageMode?: string;
|
|
1545
1598
|
MaxMessages?: number | null;
|
|
1546
1599
|
OldValues___?: KeyValuePairInput[];
|
|
1600
|
+
RestoreContext___?: RestoreContextInput;
|
|
1547
1601
|
}
|
|
1548
1602
|
export declare class RunMJAIAgentRelationshipViewResult {
|
|
1549
1603
|
Results: MJAIAgentRelationship_[];
|
|
@@ -1585,6 +1639,7 @@ export declare class CreateMJAIAgentRequestTypeInput {
|
|
|
1585
1639
|
DefaultPriority: number | null;
|
|
1586
1640
|
DefaultExpirationMinutes: number | null;
|
|
1587
1641
|
RequiresResponse?: boolean;
|
|
1642
|
+
RestoreContext___?: RestoreContextInput;
|
|
1588
1643
|
}
|
|
1589
1644
|
export declare class UpdateMJAIAgentRequestTypeInput {
|
|
1590
1645
|
ID: string;
|
|
@@ -1596,6 +1651,7 @@ export declare class UpdateMJAIAgentRequestTypeInput {
|
|
|
1596
1651
|
DefaultExpirationMinutes?: number | null;
|
|
1597
1652
|
RequiresResponse?: boolean;
|
|
1598
1653
|
OldValues___?: KeyValuePairInput[];
|
|
1654
|
+
RestoreContext___?: RestoreContextInput;
|
|
1599
1655
|
}
|
|
1600
1656
|
export declare class RunMJAIAgentRequestTypeViewResult {
|
|
1601
1657
|
Results: MJAIAgentRequestType_[];
|
|
@@ -1666,6 +1722,7 @@ export declare class CreateMJAIAgentRequestInput {
|
|
|
1666
1722
|
OriginatingAgentRunStepID: string | null;
|
|
1667
1723
|
ResumingAgentRunID: string | null;
|
|
1668
1724
|
ResponseSource: string | null;
|
|
1725
|
+
RestoreContext___?: RestoreContextInput;
|
|
1669
1726
|
}
|
|
1670
1727
|
export declare class UpdateMJAIAgentRequestInput {
|
|
1671
1728
|
ID: string;
|
|
@@ -1688,6 +1745,7 @@ export declare class UpdateMJAIAgentRequestInput {
|
|
|
1688
1745
|
ResumingAgentRunID?: string | null;
|
|
1689
1746
|
ResponseSource?: string | null;
|
|
1690
1747
|
OldValues___?: KeyValuePairInput[];
|
|
1748
|
+
RestoreContext___?: RestoreContextInput;
|
|
1691
1749
|
}
|
|
1692
1750
|
export declare class RunMJAIAgentRequestViewResult {
|
|
1693
1751
|
Results: MJAIAgentRequest_[];
|
|
@@ -1750,6 +1808,7 @@ export declare class CreateMJAIAgentRunMediaInput {
|
|
|
1750
1808
|
Metadata: string | null;
|
|
1751
1809
|
DisplayOrder?: number;
|
|
1752
1810
|
Description: string | null;
|
|
1811
|
+
RestoreContext___?: RestoreContextInput;
|
|
1753
1812
|
}
|
|
1754
1813
|
export declare class UpdateMJAIAgentRunMediaInput {
|
|
1755
1814
|
ID: string;
|
|
@@ -1770,6 +1829,7 @@ export declare class UpdateMJAIAgentRunMediaInput {
|
|
|
1770
1829
|
DisplayOrder?: number;
|
|
1771
1830
|
Description?: string | null;
|
|
1772
1831
|
OldValues___?: KeyValuePairInput[];
|
|
1832
|
+
RestoreContext___?: RestoreContextInput;
|
|
1773
1833
|
}
|
|
1774
1834
|
export declare class RunMJAIAgentRunMediaViewResult {
|
|
1775
1835
|
Results: MJAIAgentRunMedia_[];
|
|
@@ -1839,6 +1899,7 @@ export declare class CreateMJAIAgentRunStepInput {
|
|
|
1839
1899
|
FinalPayloadValidationMessages: string | null;
|
|
1840
1900
|
ParentID: string | null;
|
|
1841
1901
|
Comments: string | null;
|
|
1902
|
+
RestoreContext___?: RestoreContextInput;
|
|
1842
1903
|
}
|
|
1843
1904
|
export declare class UpdateMJAIAgentRunStepInput {
|
|
1844
1905
|
ID: string;
|
|
@@ -1862,6 +1923,7 @@ export declare class UpdateMJAIAgentRunStepInput {
|
|
|
1862
1923
|
ParentID?: string | null;
|
|
1863
1924
|
Comments?: string | null;
|
|
1864
1925
|
OldValues___?: KeyValuePairInput[];
|
|
1926
|
+
RestoreContext___?: RestoreContextInput;
|
|
1865
1927
|
}
|
|
1866
1928
|
export declare class RunMJAIAgentRunStepViewResult {
|
|
1867
1929
|
Results: MJAIAgentRunStep_[];
|
|
@@ -1997,6 +2059,7 @@ export declare class CreateMJAIAgentRunInput {
|
|
|
1997
2059
|
PrimaryScopeRecordID: string | null;
|
|
1998
2060
|
SecondaryScopes: string | null;
|
|
1999
2061
|
ExternalReferenceID: string | null;
|
|
2062
|
+
RestoreContext___?: RestoreContextInput;
|
|
2000
2063
|
}
|
|
2001
2064
|
export declare class UpdateMJAIAgentRunInput {
|
|
2002
2065
|
ID: string;
|
|
@@ -2043,6 +2106,7 @@ export declare class UpdateMJAIAgentRunInput {
|
|
|
2043
2106
|
SecondaryScopes?: string | null;
|
|
2044
2107
|
ExternalReferenceID?: string | null;
|
|
2045
2108
|
OldValues___?: KeyValuePairInput[];
|
|
2109
|
+
RestoreContext___?: RestoreContextInput;
|
|
2046
2110
|
}
|
|
2047
2111
|
export declare class RunMJAIAgentRunViewResult {
|
|
2048
2112
|
Results: MJAIAgentRun_[];
|
|
@@ -2092,6 +2156,7 @@ export declare class CreateMJAIAgentStepPathInput {
|
|
|
2092
2156
|
Priority?: number;
|
|
2093
2157
|
Description: string | null;
|
|
2094
2158
|
PathPoints: string | null;
|
|
2159
|
+
RestoreContext___?: RestoreContextInput;
|
|
2095
2160
|
}
|
|
2096
2161
|
export declare class UpdateMJAIAgentStepPathInput {
|
|
2097
2162
|
ID: string;
|
|
@@ -2102,6 +2167,7 @@ export declare class UpdateMJAIAgentStepPathInput {
|
|
|
2102
2167
|
Description?: string | null;
|
|
2103
2168
|
PathPoints?: string | null;
|
|
2104
2169
|
OldValues___?: KeyValuePairInput[];
|
|
2170
|
+
RestoreContext___?: RestoreContextInput;
|
|
2105
2171
|
}
|
|
2106
2172
|
export declare class RunMJAIAgentStepPathViewResult {
|
|
2107
2173
|
Results: MJAIAgentStepPath_[];
|
|
@@ -2174,6 +2240,7 @@ export declare class CreateMJAIAgentStepInput {
|
|
|
2174
2240
|
ActionInputMapping: string | null;
|
|
2175
2241
|
LoopBodyType: string | null;
|
|
2176
2242
|
Configuration: string | null;
|
|
2243
|
+
RestoreContext___?: RestoreContextInput;
|
|
2177
2244
|
}
|
|
2178
2245
|
export declare class UpdateMJAIAgentStepInput {
|
|
2179
2246
|
ID: string;
|
|
@@ -2198,6 +2265,7 @@ export declare class UpdateMJAIAgentStepInput {
|
|
|
2198
2265
|
LoopBodyType?: string | null;
|
|
2199
2266
|
Configuration?: string | null;
|
|
2200
2267
|
OldValues___?: KeyValuePairInput[];
|
|
2268
|
+
RestoreContext___?: RestoreContextInput;
|
|
2201
2269
|
}
|
|
2202
2270
|
export declare class RunMJAIAgentStepViewResult {
|
|
2203
2271
|
Results: MJAIAgentStep_[];
|
|
@@ -2253,6 +2321,7 @@ export declare class CreateMJAIAgentTypeInput {
|
|
|
2253
2321
|
PromptParamsSchema: string | null;
|
|
2254
2322
|
AssignmentStrategy: string | null;
|
|
2255
2323
|
DefaultStorageAccountID: string | null;
|
|
2324
|
+
RestoreContext___?: RestoreContextInput;
|
|
2256
2325
|
}
|
|
2257
2326
|
export declare class UpdateMJAIAgentTypeInput {
|
|
2258
2327
|
ID: string;
|
|
@@ -2269,6 +2338,7 @@ export declare class UpdateMJAIAgentTypeInput {
|
|
|
2269
2338
|
AssignmentStrategy?: string | null;
|
|
2270
2339
|
DefaultStorageAccountID?: string | null;
|
|
2271
2340
|
OldValues___?: KeyValuePairInput[];
|
|
2341
|
+
RestoreContext___?: RestoreContextInput;
|
|
2272
2342
|
}
|
|
2273
2343
|
export declare class RunMJAIAgentTypeViewResult {
|
|
2274
2344
|
Results: MJAIAgentType_[];
|
|
@@ -2450,6 +2520,7 @@ export declare class CreateMJAIAgentInput {
|
|
|
2450
2520
|
CategoryID: string | null;
|
|
2451
2521
|
AllowEphemeralClientTools?: boolean;
|
|
2452
2522
|
DefaultStorageAccountID: string | null;
|
|
2523
|
+
RestoreContext___?: RestoreContextInput;
|
|
2453
2524
|
}
|
|
2454
2525
|
export declare class UpdateMJAIAgentInput {
|
|
2455
2526
|
ID: string;
|
|
@@ -2515,6 +2586,7 @@ export declare class UpdateMJAIAgentInput {
|
|
|
2515
2586
|
AllowEphemeralClientTools?: boolean;
|
|
2516
2587
|
DefaultStorageAccountID?: string | null;
|
|
2517
2588
|
OldValues___?: KeyValuePairInput[];
|
|
2589
|
+
RestoreContext___?: RestoreContextInput;
|
|
2518
2590
|
}
|
|
2519
2591
|
export declare class RunMJAIAgentViewResult {
|
|
2520
2592
|
Results: MJAIAgent_[];
|
|
@@ -2582,6 +2654,7 @@ export declare class CreateMJAIArchitectureInput {
|
|
|
2582
2654
|
WikipediaURL: string | null;
|
|
2583
2655
|
YearIntroduced: number | null;
|
|
2584
2656
|
KeyPaper: string | null;
|
|
2657
|
+
RestoreContext___?: RestoreContextInput;
|
|
2585
2658
|
}
|
|
2586
2659
|
export declare class UpdateMJAIArchitectureInput {
|
|
2587
2660
|
ID: string;
|
|
@@ -2593,6 +2666,7 @@ export declare class UpdateMJAIArchitectureInput {
|
|
|
2593
2666
|
YearIntroduced?: number | null;
|
|
2594
2667
|
KeyPaper?: string | null;
|
|
2595
2668
|
OldValues___?: KeyValuePairInput[];
|
|
2669
|
+
RestoreContext___?: RestoreContextInput;
|
|
2596
2670
|
}
|
|
2597
2671
|
export declare class RunMJAIArchitectureViewResult {
|
|
2598
2672
|
Results: MJAIArchitecture_[];
|
|
@@ -2636,6 +2710,7 @@ export declare class CreateMJAIClientToolDefinitionInput {
|
|
|
2636
2710
|
OutputSchemaJSON: string | null;
|
|
2637
2711
|
DefaultTimeoutMs?: number | null;
|
|
2638
2712
|
RequiresContextType: string | null;
|
|
2713
|
+
RestoreContext___?: RestoreContextInput;
|
|
2639
2714
|
}
|
|
2640
2715
|
export declare class UpdateMJAIClientToolDefinitionInput {
|
|
2641
2716
|
ID: string;
|
|
@@ -2647,6 +2722,7 @@ export declare class UpdateMJAIClientToolDefinitionInput {
|
|
|
2647
2722
|
DefaultTimeoutMs?: number | null;
|
|
2648
2723
|
RequiresContextType?: string | null;
|
|
2649
2724
|
OldValues___?: KeyValuePairInput[];
|
|
2725
|
+
RestoreContext___?: RestoreContextInput;
|
|
2650
2726
|
}
|
|
2651
2727
|
export declare class RunMJAIClientToolDefinitionViewResult {
|
|
2652
2728
|
Results: MJAIClientToolDefinition_[];
|
|
@@ -2685,6 +2761,7 @@ export declare class CreateMJAIConfigurationParamInput {
|
|
|
2685
2761
|
Type?: string;
|
|
2686
2762
|
Value?: string;
|
|
2687
2763
|
Description: string | null;
|
|
2764
|
+
RestoreContext___?: RestoreContextInput;
|
|
2688
2765
|
}
|
|
2689
2766
|
export declare class UpdateMJAIConfigurationParamInput {
|
|
2690
2767
|
ID: string;
|
|
@@ -2694,6 +2771,7 @@ export declare class UpdateMJAIConfigurationParamInput {
|
|
|
2694
2771
|
Value?: string;
|
|
2695
2772
|
Description?: string | null;
|
|
2696
2773
|
OldValues___?: KeyValuePairInput[];
|
|
2774
|
+
RestoreContext___?: RestoreContextInput;
|
|
2697
2775
|
}
|
|
2698
2776
|
export declare class RunMJAIConfigurationParamViewResult {
|
|
2699
2777
|
Results: MJAIConfigurationParam_[];
|
|
@@ -2751,6 +2829,7 @@ export declare class CreateMJAIConfigurationInput {
|
|
|
2751
2829
|
DefaultStorageProviderID: string | null;
|
|
2752
2830
|
DefaultStorageRootPath: string | null;
|
|
2753
2831
|
ParentID: string | null;
|
|
2832
|
+
RestoreContext___?: RestoreContextInput;
|
|
2754
2833
|
}
|
|
2755
2834
|
export declare class UpdateMJAIConfigurationInput {
|
|
2756
2835
|
ID: string;
|
|
@@ -2764,6 +2843,7 @@ export declare class UpdateMJAIConfigurationInput {
|
|
|
2764
2843
|
DefaultStorageRootPath?: string | null;
|
|
2765
2844
|
ParentID?: string | null;
|
|
2766
2845
|
OldValues___?: KeyValuePairInput[];
|
|
2846
|
+
RestoreContext___?: RestoreContextInput;
|
|
2767
2847
|
}
|
|
2768
2848
|
export declare class RunMJAIConfigurationViewResult {
|
|
2769
2849
|
Results: MJAIConfiguration_[];
|
|
@@ -2816,6 +2896,7 @@ export declare class CreateMJAICredentialBindingInput {
|
|
|
2816
2896
|
AIPromptModelID: string | null;
|
|
2817
2897
|
Priority?: number;
|
|
2818
2898
|
IsActive?: boolean;
|
|
2899
|
+
RestoreContext___?: RestoreContextInput;
|
|
2819
2900
|
}
|
|
2820
2901
|
export declare class UpdateMJAICredentialBindingInput {
|
|
2821
2902
|
ID: string;
|
|
@@ -2827,6 +2908,7 @@ export declare class UpdateMJAICredentialBindingInput {
|
|
|
2827
2908
|
Priority?: number;
|
|
2828
2909
|
IsActive?: boolean;
|
|
2829
2910
|
OldValues___?: KeyValuePairInput[];
|
|
2911
|
+
RestoreContext___?: RestoreContextInput;
|
|
2830
2912
|
}
|
|
2831
2913
|
export declare class RunMJAICredentialBindingViewResult {
|
|
2832
2914
|
Results: MJAICredentialBinding_[];
|
|
@@ -2876,6 +2958,7 @@ export declare class CreateMJAIModalityInput {
|
|
|
2876
2958
|
DefaultMaxSizeBytes: number | null;
|
|
2877
2959
|
DefaultMaxCountPerMessage: number | null;
|
|
2878
2960
|
DisplayOrder?: number;
|
|
2961
|
+
RestoreContext___?: RestoreContextInput;
|
|
2879
2962
|
}
|
|
2880
2963
|
export declare class UpdateMJAIModalityInput {
|
|
2881
2964
|
ID: string;
|
|
@@ -2888,6 +2971,7 @@ export declare class UpdateMJAIModalityInput {
|
|
|
2888
2971
|
DefaultMaxCountPerMessage?: number | null;
|
|
2889
2972
|
DisplayOrder?: number;
|
|
2890
2973
|
OldValues___?: KeyValuePairInput[];
|
|
2974
|
+
RestoreContext___?: RestoreContextInput;
|
|
2891
2975
|
}
|
|
2892
2976
|
export declare class RunMJAIModalityViewResult {
|
|
2893
2977
|
Results: MJAIModality_[];
|
|
@@ -2929,6 +3013,7 @@ export declare class CreateMJAIModelActionInput {
|
|
|
2929
3013
|
AIModelID?: string;
|
|
2930
3014
|
AIActionID?: string;
|
|
2931
3015
|
IsActive?: boolean;
|
|
3016
|
+
RestoreContext___?: RestoreContextInput;
|
|
2932
3017
|
}
|
|
2933
3018
|
export declare class UpdateMJAIModelActionInput {
|
|
2934
3019
|
ID: string;
|
|
@@ -2936,6 +3021,7 @@ export declare class UpdateMJAIModelActionInput {
|
|
|
2936
3021
|
AIActionID?: string;
|
|
2937
3022
|
IsActive?: boolean;
|
|
2938
3023
|
OldValues___?: KeyValuePairInput[];
|
|
3024
|
+
RestoreContext___?: RestoreContextInput;
|
|
2939
3025
|
}
|
|
2940
3026
|
export declare class RunMJAIModelActionViewResult {
|
|
2941
3027
|
Results: MJAIModelAction_[];
|
|
@@ -2975,6 +3061,7 @@ export declare class CreateMJAIModelArchitectureInput {
|
|
|
2975
3061
|
Rank?: number;
|
|
2976
3062
|
Weight: number | null;
|
|
2977
3063
|
Notes: string | null;
|
|
3064
|
+
RestoreContext___?: RestoreContextInput;
|
|
2978
3065
|
}
|
|
2979
3066
|
export declare class UpdateMJAIModelArchitectureInput {
|
|
2980
3067
|
ID: string;
|
|
@@ -2984,6 +3071,7 @@ export declare class UpdateMJAIModelArchitectureInput {
|
|
|
2984
3071
|
Weight?: number | null;
|
|
2985
3072
|
Notes?: string | null;
|
|
2986
3073
|
OldValues___?: KeyValuePairInput[];
|
|
3074
|
+
RestoreContext___?: RestoreContextInput;
|
|
2987
3075
|
}
|
|
2988
3076
|
export declare class RunMJAIModelArchitectureViewResult {
|
|
2989
3077
|
Results: MJAIModelArchitecture_[];
|
|
@@ -3038,6 +3126,7 @@ export declare class CreateMJAIModelCostInput {
|
|
|
3038
3126
|
UnitTypeID?: string;
|
|
3039
3127
|
ProcessingType?: string;
|
|
3040
3128
|
Comments: string | null;
|
|
3129
|
+
RestoreContext___?: RestoreContextInput;
|
|
3041
3130
|
}
|
|
3042
3131
|
export declare class UpdateMJAIModelCostInput {
|
|
3043
3132
|
ID: string;
|
|
@@ -3054,6 +3143,7 @@ export declare class UpdateMJAIModelCostInput {
|
|
|
3054
3143
|
ProcessingType?: string;
|
|
3055
3144
|
Comments?: string | null;
|
|
3056
3145
|
OldValues___?: KeyValuePairInput[];
|
|
3146
|
+
RestoreContext___?: RestoreContextInput;
|
|
3057
3147
|
}
|
|
3058
3148
|
export declare class RunMJAIModelCostViewResult {
|
|
3059
3149
|
Results: MJAIModelCost_[];
|
|
@@ -3102,6 +3192,7 @@ export declare class CreateMJAIModelModalityInput {
|
|
|
3102
3192
|
MaxCountPerMessage: number | null;
|
|
3103
3193
|
MaxDimension: number | null;
|
|
3104
3194
|
Comments: string | null;
|
|
3195
|
+
RestoreContext___?: RestoreContextInput;
|
|
3105
3196
|
}
|
|
3106
3197
|
export declare class UpdateMJAIModelModalityInput {
|
|
3107
3198
|
ID: string;
|
|
@@ -3116,6 +3207,7 @@ export declare class UpdateMJAIModelModalityInput {
|
|
|
3116
3207
|
MaxDimension?: number | null;
|
|
3117
3208
|
Comments?: string | null;
|
|
3118
3209
|
OldValues___?: KeyValuePairInput[];
|
|
3210
|
+
RestoreContext___?: RestoreContextInput;
|
|
3119
3211
|
}
|
|
3120
3212
|
export declare class RunMJAIModelModalityViewResult {
|
|
3121
3213
|
Results: MJAIModelModality_[];
|
|
@@ -3147,12 +3239,14 @@ export declare class CreateMJAIModelPriceTypeInput {
|
|
|
3147
3239
|
ID?: string;
|
|
3148
3240
|
Name?: string;
|
|
3149
3241
|
Description: string | null;
|
|
3242
|
+
RestoreContext___?: RestoreContextInput;
|
|
3150
3243
|
}
|
|
3151
3244
|
export declare class UpdateMJAIModelPriceTypeInput {
|
|
3152
3245
|
ID: string;
|
|
3153
3246
|
Name?: string;
|
|
3154
3247
|
Description?: string | null;
|
|
3155
3248
|
OldValues___?: KeyValuePairInput[];
|
|
3249
|
+
RestoreContext___?: RestoreContextInput;
|
|
3156
3250
|
}
|
|
3157
3251
|
export declare class RunMJAIModelPriceTypeViewResult {
|
|
3158
3252
|
Results: MJAIModelPriceType_[];
|
|
@@ -3187,6 +3281,7 @@ export declare class CreateMJAIModelPriceUnitTypeInput {
|
|
|
3187
3281
|
Name?: string;
|
|
3188
3282
|
Description: string | null;
|
|
3189
3283
|
DriverClass?: string;
|
|
3284
|
+
RestoreContext___?: RestoreContextInput;
|
|
3190
3285
|
}
|
|
3191
3286
|
export declare class UpdateMJAIModelPriceUnitTypeInput {
|
|
3192
3287
|
ID: string;
|
|
@@ -3194,6 +3289,7 @@ export declare class UpdateMJAIModelPriceUnitTypeInput {
|
|
|
3194
3289
|
Description?: string | null;
|
|
3195
3290
|
DriverClass?: string;
|
|
3196
3291
|
OldValues___?: KeyValuePairInput[];
|
|
3292
|
+
RestoreContext___?: RestoreContextInput;
|
|
3197
3293
|
}
|
|
3198
3294
|
export declare class RunMJAIModelPriceUnitTypeViewResult {
|
|
3199
3295
|
Results: MJAIModelPriceUnitType_[];
|
|
@@ -3237,6 +3333,7 @@ export declare class CreateMJAIModelTypeInput {
|
|
|
3237
3333
|
DefaultOutputModalityID?: string;
|
|
3238
3334
|
SupportsPrefill?: boolean;
|
|
3239
3335
|
PrefillFallbackText: string | null;
|
|
3336
|
+
RestoreContext___?: RestoreContextInput;
|
|
3240
3337
|
}
|
|
3241
3338
|
export declare class UpdateMJAIModelTypeInput {
|
|
3242
3339
|
ID: string;
|
|
@@ -3247,6 +3344,7 @@ export declare class UpdateMJAIModelTypeInput {
|
|
|
3247
3344
|
SupportsPrefill?: boolean;
|
|
3248
3345
|
PrefillFallbackText?: string | null;
|
|
3249
3346
|
OldValues___?: KeyValuePairInput[];
|
|
3347
|
+
RestoreContext___?: RestoreContextInput;
|
|
3250
3348
|
}
|
|
3251
3349
|
export declare class RunMJAIModelTypeViewResult {
|
|
3252
3350
|
Results: MJAIModelType_[];
|
|
@@ -3310,6 +3408,7 @@ export declare class CreateMJAIModelVendorInput {
|
|
|
3310
3408
|
TypeID?: string;
|
|
3311
3409
|
SupportsPrefill: boolean | null;
|
|
3312
3410
|
PrefillFallbackText: string | null;
|
|
3411
|
+
RestoreContext___?: RestoreContextInput;
|
|
3313
3412
|
}
|
|
3314
3413
|
export declare class UpdateMJAIModelVendorInput {
|
|
3315
3414
|
ID: string;
|
|
@@ -3329,6 +3428,7 @@ export declare class UpdateMJAIModelVendorInput {
|
|
|
3329
3428
|
SupportsPrefill?: boolean | null;
|
|
3330
3429
|
PrefillFallbackText?: string | null;
|
|
3331
3430
|
OldValues___?: KeyValuePairInput[];
|
|
3431
|
+
RestoreContext___?: RestoreContextInput;
|
|
3332
3432
|
}
|
|
3333
3433
|
export declare class RunMJAIModelVendorViewResult {
|
|
3334
3434
|
Results: MJAIModelVendor_[];
|
|
@@ -3419,6 +3519,7 @@ export declare class CreateMJAIModelInput {
|
|
|
3419
3519
|
InputTokenLimit: number | null;
|
|
3420
3520
|
SupportedResponseFormats: string | null;
|
|
3421
3521
|
SupportsEffortLevel: boolean | null;
|
|
3522
|
+
RestoreContext___?: RestoreContextInput;
|
|
3422
3523
|
}
|
|
3423
3524
|
export declare class UpdateMJAIModelInput {
|
|
3424
3525
|
ID: string;
|
|
@@ -3442,6 +3543,7 @@ export declare class UpdateMJAIModelInput {
|
|
|
3442
3543
|
SupportedResponseFormats?: string | null;
|
|
3443
3544
|
SupportsEffortLevel?: boolean | null;
|
|
3444
3545
|
OldValues___?: KeyValuePairInput[];
|
|
3546
|
+
RestoreContext___?: RestoreContextInput;
|
|
3445
3547
|
}
|
|
3446
3548
|
export declare class RunMJAIModelViewResult {
|
|
3447
3549
|
Results: MJAIModel_[];
|
|
@@ -3503,6 +3605,7 @@ export declare class CreateMJAIPromptCategoryInput {
|
|
|
3503
3605
|
Name?: string;
|
|
3504
3606
|
ParentID: string | null;
|
|
3505
3607
|
Description: string | null;
|
|
3608
|
+
RestoreContext___?: RestoreContextInput;
|
|
3506
3609
|
}
|
|
3507
3610
|
export declare class UpdateMJAIPromptCategoryInput {
|
|
3508
3611
|
ID: string;
|
|
@@ -3510,6 +3613,7 @@ export declare class UpdateMJAIPromptCategoryInput {
|
|
|
3510
3613
|
ParentID?: string | null;
|
|
3511
3614
|
Description?: string | null;
|
|
3512
3615
|
OldValues___?: KeyValuePairInput[];
|
|
3616
|
+
RestoreContext___?: RestoreContextInput;
|
|
3513
3617
|
}
|
|
3514
3618
|
export declare class RunMJAIPromptCategoryViewResult {
|
|
3515
3619
|
Results: MJAIPromptCategory_[];
|
|
@@ -3567,6 +3671,7 @@ export declare class CreateMJAIPromptModelInput {
|
|
|
3567
3671
|
ParallelCount?: number;
|
|
3568
3672
|
ParallelConfigParam: string | null;
|
|
3569
3673
|
EffortLevel: number | null;
|
|
3674
|
+
RestoreContext___?: RestoreContextInput;
|
|
3570
3675
|
}
|
|
3571
3676
|
export declare class UpdateMJAIPromptModelInput {
|
|
3572
3677
|
ID: string;
|
|
@@ -3583,6 +3688,7 @@ export declare class UpdateMJAIPromptModelInput {
|
|
|
3583
3688
|
ParallelConfigParam?: string | null;
|
|
3584
3689
|
EffortLevel?: number | null;
|
|
3585
3690
|
OldValues___?: KeyValuePairInput[];
|
|
3691
|
+
RestoreContext___?: RestoreContextInput;
|
|
3586
3692
|
}
|
|
3587
3693
|
export declare class RunMJAIPromptModelViewResult {
|
|
3588
3694
|
Results: MJAIPromptModel_[];
|
|
@@ -3642,6 +3748,7 @@ export declare class CreateMJAIPromptRunMediaInput {
|
|
|
3642
3748
|
Metadata: string | null;
|
|
3643
3749
|
DisplayOrder?: number;
|
|
3644
3750
|
Description: string | null;
|
|
3751
|
+
RestoreContext___?: RestoreContextInput;
|
|
3645
3752
|
}
|
|
3646
3753
|
export declare class UpdateMJAIPromptRunMediaInput {
|
|
3647
3754
|
ID: string;
|
|
@@ -3660,6 +3767,7 @@ export declare class UpdateMJAIPromptRunMediaInput {
|
|
|
3660
3767
|
DisplayOrder?: number;
|
|
3661
3768
|
Description?: string | null;
|
|
3662
3769
|
OldValues___?: KeyValuePairInput[];
|
|
3770
|
+
RestoreContext___?: RestoreContextInput;
|
|
3663
3771
|
}
|
|
3664
3772
|
export declare class RunMJAIPromptRunMediaViewResult {
|
|
3665
3773
|
Results: MJAIPromptRunMedia_[];
|
|
@@ -3870,6 +3978,7 @@ export declare class CreateMJAIPromptRunInput {
|
|
|
3870
3978
|
Comments: string | null;
|
|
3871
3979
|
TestRunID: string | null;
|
|
3872
3980
|
AssistantPrefill: string | null;
|
|
3981
|
+
RestoreContext___?: RestoreContextInput;
|
|
3873
3982
|
}
|
|
3874
3983
|
export declare class UpdateMJAIPromptRunInput {
|
|
3875
3984
|
ID: string;
|
|
@@ -3956,6 +4065,7 @@ export declare class UpdateMJAIPromptRunInput {
|
|
|
3956
4065
|
TestRunID?: string | null;
|
|
3957
4066
|
AssistantPrefill?: string | null;
|
|
3958
4067
|
OldValues___?: KeyValuePairInput[];
|
|
4068
|
+
RestoreContext___?: RestoreContextInput;
|
|
3959
4069
|
}
|
|
3960
4070
|
export declare class RunMJAIPromptRunViewResult {
|
|
3961
4071
|
Results: MJAIPromptRun_[];
|
|
@@ -3992,12 +4102,14 @@ export declare class CreateMJAIPromptTypeInput {
|
|
|
3992
4102
|
ID?: string;
|
|
3993
4103
|
Name?: string;
|
|
3994
4104
|
Description: string | null;
|
|
4105
|
+
RestoreContext___?: RestoreContextInput;
|
|
3995
4106
|
}
|
|
3996
4107
|
export declare class UpdateMJAIPromptTypeInput {
|
|
3997
4108
|
ID: string;
|
|
3998
4109
|
Name?: string;
|
|
3999
4110
|
Description?: string | null;
|
|
4000
4111
|
OldValues___?: KeyValuePairInput[];
|
|
4112
|
+
RestoreContext___?: RestoreContextInput;
|
|
4001
4113
|
}
|
|
4002
4114
|
export declare class RunMJAIPromptTypeViewResult {
|
|
4003
4115
|
Results: MJAIPromptType_[];
|
|
@@ -4147,6 +4259,7 @@ export declare class CreateMJAIPromptInput {
|
|
|
4147
4259
|
AssistantPrefill: string | null;
|
|
4148
4260
|
PrefillFallbackMode?: string;
|
|
4149
4261
|
RequireSpecificModels?: boolean;
|
|
4262
|
+
RestoreContext___?: RestoreContextInput;
|
|
4150
4263
|
}
|
|
4151
4264
|
export declare class UpdateMJAIPromptInput {
|
|
4152
4265
|
ID: string;
|
|
@@ -4202,6 +4315,7 @@ export declare class UpdateMJAIPromptInput {
|
|
|
4202
4315
|
PrefillFallbackMode?: string;
|
|
4203
4316
|
RequireSpecificModels?: boolean;
|
|
4204
4317
|
OldValues___?: KeyValuePairInput[];
|
|
4318
|
+
RestoreContext___?: RestoreContextInput;
|
|
4205
4319
|
}
|
|
4206
4320
|
export declare class RunMJAIPromptViewResult {
|
|
4207
4321
|
Results: MJAIPrompt_[];
|
|
@@ -4272,6 +4386,7 @@ export declare class CreateMJAIResultCacheInput {
|
|
|
4272
4386
|
ConfigurationID: string | null;
|
|
4273
4387
|
PromptEmbedding: number | null;
|
|
4274
4388
|
PromptRunID: string | null;
|
|
4389
|
+
RestoreContext___?: RestoreContextInput;
|
|
4275
4390
|
}
|
|
4276
4391
|
export declare class UpdateMJAIResultCacheInput {
|
|
4277
4392
|
ID: string;
|
|
@@ -4288,6 +4403,7 @@ export declare class UpdateMJAIResultCacheInput {
|
|
|
4288
4403
|
PromptEmbedding?: number | null;
|
|
4289
4404
|
PromptRunID?: string | null;
|
|
4290
4405
|
OldValues___?: KeyValuePairInput[];
|
|
4406
|
+
RestoreContext___?: RestoreContextInput;
|
|
4291
4407
|
}
|
|
4292
4408
|
export declare class RunMJAIResultCacheViewResult {
|
|
4293
4409
|
Results: MJAIResultCache_[];
|
|
@@ -4320,12 +4436,14 @@ export declare class CreateMJAIVendorTypeDefinitionInput {
|
|
|
4320
4436
|
ID?: string;
|
|
4321
4437
|
Name?: string;
|
|
4322
4438
|
Description: string | null;
|
|
4439
|
+
RestoreContext___?: RestoreContextInput;
|
|
4323
4440
|
}
|
|
4324
4441
|
export declare class UpdateMJAIVendorTypeDefinitionInput {
|
|
4325
4442
|
ID: string;
|
|
4326
4443
|
Name?: string;
|
|
4327
4444
|
Description?: string | null;
|
|
4328
4445
|
OldValues___?: KeyValuePairInput[];
|
|
4446
|
+
RestoreContext___?: RestoreContextInput;
|
|
4329
4447
|
}
|
|
4330
4448
|
export declare class RunMJAIVendorTypeDefinitionViewResult {
|
|
4331
4449
|
Results: MJAIVendorTypeDefinition_[];
|
|
@@ -4364,6 +4482,7 @@ export declare class CreateMJAIVendorTypeInput {
|
|
|
4364
4482
|
TypeID?: string;
|
|
4365
4483
|
Rank?: number;
|
|
4366
4484
|
Status?: string;
|
|
4485
|
+
RestoreContext___?: RestoreContextInput;
|
|
4367
4486
|
}
|
|
4368
4487
|
export declare class UpdateMJAIVendorTypeInput {
|
|
4369
4488
|
ID: string;
|
|
@@ -4372,6 +4491,7 @@ export declare class UpdateMJAIVendorTypeInput {
|
|
|
4372
4491
|
Rank?: number;
|
|
4373
4492
|
Status?: string;
|
|
4374
4493
|
OldValues___?: KeyValuePairInput[];
|
|
4494
|
+
RestoreContext___?: RestoreContextInput;
|
|
4375
4495
|
}
|
|
4376
4496
|
export declare class RunMJAIVendorTypeViewResult {
|
|
4377
4497
|
Results: MJAIVendorType_[];
|
|
@@ -4413,6 +4533,7 @@ export declare class CreateMJAIVendorInput {
|
|
|
4413
4533
|
Name?: string;
|
|
4414
4534
|
Description: string | null;
|
|
4415
4535
|
CredentialTypeID: string | null;
|
|
4536
|
+
RestoreContext___?: RestoreContextInput;
|
|
4416
4537
|
}
|
|
4417
4538
|
export declare class UpdateMJAIVendorInput {
|
|
4418
4539
|
ID: string;
|
|
@@ -4420,6 +4541,7 @@ export declare class UpdateMJAIVendorInput {
|
|
|
4420
4541
|
Description?: string | null;
|
|
4421
4542
|
CredentialTypeID?: string | null;
|
|
4422
4543
|
OldValues___?: KeyValuePairInput[];
|
|
4544
|
+
RestoreContext___?: RestoreContextInput;
|
|
4423
4545
|
}
|
|
4424
4546
|
export declare class RunMJAIVendorViewResult {
|
|
4425
4547
|
Results: MJAIVendor_[];
|
|
@@ -4468,6 +4590,7 @@ export declare class CreateMJAPIApplicationScopeInput {
|
|
|
4468
4590
|
PatternType?: string;
|
|
4469
4591
|
IsDeny?: boolean;
|
|
4470
4592
|
Priority?: number;
|
|
4593
|
+
RestoreContext___?: RestoreContextInput;
|
|
4471
4594
|
}
|
|
4472
4595
|
export declare class UpdateMJAPIApplicationScopeInput {
|
|
4473
4596
|
ID: string;
|
|
@@ -4478,6 +4601,7 @@ export declare class UpdateMJAPIApplicationScopeInput {
|
|
|
4478
4601
|
IsDeny?: boolean;
|
|
4479
4602
|
Priority?: number;
|
|
4480
4603
|
OldValues___?: KeyValuePairInput[];
|
|
4604
|
+
RestoreContext___?: RestoreContextInput;
|
|
4481
4605
|
}
|
|
4482
4606
|
export declare class RunMJAPIApplicationScopeViewResult {
|
|
4483
4607
|
Results: MJAPIApplicationScope_[];
|
|
@@ -4513,6 +4637,7 @@ export declare class CreateMJAPIApplicationInput {
|
|
|
4513
4637
|
Name?: string;
|
|
4514
4638
|
Description: string | null;
|
|
4515
4639
|
IsActive?: boolean;
|
|
4640
|
+
RestoreContext___?: RestoreContextInput;
|
|
4516
4641
|
}
|
|
4517
4642
|
export declare class UpdateMJAPIApplicationInput {
|
|
4518
4643
|
ID: string;
|
|
@@ -4520,6 +4645,7 @@ export declare class UpdateMJAPIApplicationInput {
|
|
|
4520
4645
|
Description?: string | null;
|
|
4521
4646
|
IsActive?: boolean;
|
|
4522
4647
|
OldValues___?: KeyValuePairInput[];
|
|
4648
|
+
RestoreContext___?: RestoreContextInput;
|
|
4523
4649
|
}
|
|
4524
4650
|
export declare class RunMJAPIApplicationViewResult {
|
|
4525
4651
|
Results: MJAPIApplication_[];
|
|
@@ -4555,12 +4681,14 @@ export declare class CreateMJAPIKeyApplicationInput {
|
|
|
4555
4681
|
ID?: string;
|
|
4556
4682
|
APIKeyID?: string;
|
|
4557
4683
|
ApplicationID?: string;
|
|
4684
|
+
RestoreContext___?: RestoreContextInput;
|
|
4558
4685
|
}
|
|
4559
4686
|
export declare class UpdateMJAPIKeyApplicationInput {
|
|
4560
4687
|
ID: string;
|
|
4561
4688
|
APIKeyID?: string;
|
|
4562
4689
|
ApplicationID?: string;
|
|
4563
4690
|
OldValues___?: KeyValuePairInput[];
|
|
4691
|
+
RestoreContext___?: RestoreContextInput;
|
|
4564
4692
|
}
|
|
4565
4693
|
export declare class RunMJAPIKeyApplicationViewResult {
|
|
4566
4694
|
Results: MJAPIKeyApplication_[];
|
|
@@ -4601,6 +4729,7 @@ export declare class CreateMJAPIKeyScopeInput {
|
|
|
4601
4729
|
PatternType?: string;
|
|
4602
4730
|
IsDeny?: boolean;
|
|
4603
4731
|
Priority?: number;
|
|
4732
|
+
RestoreContext___?: RestoreContextInput;
|
|
4604
4733
|
}
|
|
4605
4734
|
export declare class UpdateMJAPIKeyScopeInput {
|
|
4606
4735
|
ID: string;
|
|
@@ -4611,6 +4740,7 @@ export declare class UpdateMJAPIKeyScopeInput {
|
|
|
4611
4740
|
IsDeny?: boolean;
|
|
4612
4741
|
Priority?: number;
|
|
4613
4742
|
OldValues___?: KeyValuePairInput[];
|
|
4743
|
+
RestoreContext___?: RestoreContextInput;
|
|
4614
4744
|
}
|
|
4615
4745
|
export declare class RunMJAPIKeyScopeViewResult {
|
|
4616
4746
|
Results: MJAPIKeyScope_[];
|
|
@@ -4665,6 +4795,7 @@ export declare class CreateMJAPIKeyUsageLogInput {
|
|
|
4665
4795
|
ScopesEvaluated: string | null;
|
|
4666
4796
|
AuthorizationResult?: string;
|
|
4667
4797
|
DeniedReason: string | null;
|
|
4798
|
+
RestoreContext___?: RestoreContextInput;
|
|
4668
4799
|
}
|
|
4669
4800
|
export declare class UpdateMJAPIKeyUsageLogInput {
|
|
4670
4801
|
ID: string;
|
|
@@ -4682,6 +4813,7 @@ export declare class UpdateMJAPIKeyUsageLogInput {
|
|
|
4682
4813
|
AuthorizationResult?: string;
|
|
4683
4814
|
DeniedReason?: string | null;
|
|
4684
4815
|
OldValues___?: KeyValuePairInput[];
|
|
4816
|
+
RestoreContext___?: RestoreContextInput;
|
|
4685
4817
|
}
|
|
4686
4818
|
export declare class RunMJAPIKeyUsageLogViewResult {
|
|
4687
4819
|
Results: MJAPIKeyUsageLog_[];
|
|
@@ -4729,6 +4861,7 @@ export declare class CreateMJAPIKeyInput {
|
|
|
4729
4861
|
ExpiresAt: Date | null;
|
|
4730
4862
|
LastUsedAt: Date | null;
|
|
4731
4863
|
CreatedByUserID?: string;
|
|
4864
|
+
RestoreContext___?: RestoreContextInput;
|
|
4732
4865
|
}
|
|
4733
4866
|
export declare class UpdateMJAPIKeyInput {
|
|
4734
4867
|
ID: string;
|
|
@@ -4741,6 +4874,7 @@ export declare class UpdateMJAPIKeyInput {
|
|
|
4741
4874
|
LastUsedAt?: Date | null;
|
|
4742
4875
|
CreatedByUserID?: string;
|
|
4743
4876
|
OldValues___?: KeyValuePairInput[];
|
|
4877
|
+
RestoreContext___?: RestoreContextInput;
|
|
4744
4878
|
}
|
|
4745
4879
|
export declare class RunMJAPIKeyViewResult {
|
|
4746
4880
|
Results: MJAPIKey_[];
|
|
@@ -4791,6 +4925,7 @@ export declare class CreateMJAPIScopeInput {
|
|
|
4791
4925
|
ResourceType: string | null;
|
|
4792
4926
|
IsActive?: boolean;
|
|
4793
4927
|
UIConfig: string | null;
|
|
4928
|
+
RestoreContext___?: RestoreContextInput;
|
|
4794
4929
|
}
|
|
4795
4930
|
export declare class UpdateMJAPIScopeInput {
|
|
4796
4931
|
ID: string;
|
|
@@ -4803,6 +4938,7 @@ export declare class UpdateMJAPIScopeInput {
|
|
|
4803
4938
|
IsActive?: boolean;
|
|
4804
4939
|
UIConfig?: string | null;
|
|
4805
4940
|
OldValues___?: KeyValuePairInput[];
|
|
4941
|
+
RestoreContext___?: RestoreContextInput;
|
|
4806
4942
|
}
|
|
4807
4943
|
export declare class RunMJAPIScopeViewResult {
|
|
4808
4944
|
Results: MJAPIScope_[];
|
|
@@ -4846,6 +4982,7 @@ export declare class CreateMJApplicationEntityInput {
|
|
|
4846
4982
|
EntityID?: string;
|
|
4847
4983
|
Sequence?: number;
|
|
4848
4984
|
DefaultForNewUser?: boolean;
|
|
4985
|
+
RestoreContext___?: RestoreContextInput;
|
|
4849
4986
|
}
|
|
4850
4987
|
export declare class UpdateMJApplicationEntityInput {
|
|
4851
4988
|
ID: string;
|
|
@@ -4854,6 +4991,7 @@ export declare class UpdateMJApplicationEntityInput {
|
|
|
4854
4991
|
Sequence?: number;
|
|
4855
4992
|
DefaultForNewUser?: boolean;
|
|
4856
4993
|
OldValues___?: KeyValuePairInput[];
|
|
4994
|
+
RestoreContext___?: RestoreContextInput;
|
|
4857
4995
|
}
|
|
4858
4996
|
export declare class RunMJApplicationEntityViewResult {
|
|
4859
4997
|
Results: MJApplicationEntity_[];
|
|
@@ -4890,6 +5028,7 @@ export declare class CreateMJApplicationRoleInput {
|
|
|
4890
5028
|
RoleID?: string;
|
|
4891
5029
|
CanAccess?: boolean;
|
|
4892
5030
|
CanAdmin?: boolean;
|
|
5031
|
+
RestoreContext___?: RestoreContextInput;
|
|
4893
5032
|
}
|
|
4894
5033
|
export declare class UpdateMJApplicationRoleInput {
|
|
4895
5034
|
ID: string;
|
|
@@ -4898,6 +5037,7 @@ export declare class UpdateMJApplicationRoleInput {
|
|
|
4898
5037
|
CanAccess?: boolean;
|
|
4899
5038
|
CanAdmin?: boolean;
|
|
4900
5039
|
OldValues___?: KeyValuePairInput[];
|
|
5040
|
+
RestoreContext___?: RestoreContextInput;
|
|
4901
5041
|
}
|
|
4902
5042
|
export declare class RunMJApplicationRoleViewResult {
|
|
4903
5043
|
Results: MJApplicationRole_[];
|
|
@@ -4933,6 +5073,7 @@ export declare class CreateMJApplicationSettingInput {
|
|
|
4933
5073
|
Name?: string;
|
|
4934
5074
|
Value?: string;
|
|
4935
5075
|
Comments: string | null;
|
|
5076
|
+
RestoreContext___?: RestoreContextInput;
|
|
4936
5077
|
}
|
|
4937
5078
|
export declare class UpdateMJApplicationSettingInput {
|
|
4938
5079
|
ID: string;
|
|
@@ -4941,6 +5082,7 @@ export declare class UpdateMJApplicationSettingInput {
|
|
|
4941
5082
|
Value?: string;
|
|
4942
5083
|
Comments?: string | null;
|
|
4943
5084
|
OldValues___?: KeyValuePairInput[];
|
|
5085
|
+
RestoreContext___?: RestoreContextInput;
|
|
4944
5086
|
}
|
|
4945
5087
|
export declare class RunMJApplicationSettingViewResult {
|
|
4946
5088
|
Results: MJApplicationSetting_[];
|
|
@@ -5003,6 +5145,7 @@ export declare class CreateMJApplicationInput {
|
|
|
5003
5145
|
HideNavBarIconWhenActive?: boolean;
|
|
5004
5146
|
Path?: string;
|
|
5005
5147
|
AutoUpdatePath?: boolean;
|
|
5148
|
+
RestoreContext___?: RestoreContextInput;
|
|
5006
5149
|
}
|
|
5007
5150
|
export declare class UpdateMJApplicationInput {
|
|
5008
5151
|
ID: string;
|
|
@@ -5022,6 +5165,7 @@ export declare class UpdateMJApplicationInput {
|
|
|
5022
5165
|
Path?: string;
|
|
5023
5166
|
AutoUpdatePath?: boolean;
|
|
5024
5167
|
OldValues___?: KeyValuePairInput[];
|
|
5168
|
+
RestoreContext___?: RestoreContextInput;
|
|
5025
5169
|
}
|
|
5026
5170
|
export declare class RunMJApplicationViewResult {
|
|
5027
5171
|
Results: MJApplication_[];
|
|
@@ -5072,6 +5216,7 @@ export declare class CreateMJArtifactPermissionInput {
|
|
|
5072
5216
|
CanDelete?: boolean;
|
|
5073
5217
|
CanShare?: boolean;
|
|
5074
5218
|
SharedByUserID: string | null;
|
|
5219
|
+
RestoreContext___?: RestoreContextInput;
|
|
5075
5220
|
}
|
|
5076
5221
|
export declare class UpdateMJArtifactPermissionInput {
|
|
5077
5222
|
ID: string;
|
|
@@ -5083,6 +5228,7 @@ export declare class UpdateMJArtifactPermissionInput {
|
|
|
5083
5228
|
CanShare?: boolean;
|
|
5084
5229
|
SharedByUserID?: string | null;
|
|
5085
5230
|
OldValues___?: KeyValuePairInput[];
|
|
5231
|
+
RestoreContext___?: RestoreContextInput;
|
|
5086
5232
|
}
|
|
5087
5233
|
export declare class RunMJArtifactPermissionViewResult {
|
|
5088
5234
|
Results: MJArtifactPermission_[];
|
|
@@ -5134,6 +5280,7 @@ export declare class CreateMJArtifactTypeInput {
|
|
|
5134
5280
|
DriverClass: string | null;
|
|
5135
5281
|
Icon: string | null;
|
|
5136
5282
|
ContentCategory?: string;
|
|
5283
|
+
RestoreContext___?: RestoreContextInput;
|
|
5137
5284
|
}
|
|
5138
5285
|
export declare class UpdateMJArtifactTypeInput {
|
|
5139
5286
|
ID: string;
|
|
@@ -5147,6 +5294,7 @@ export declare class UpdateMJArtifactTypeInput {
|
|
|
5147
5294
|
Icon?: string | null;
|
|
5148
5295
|
ContentCategory?: string;
|
|
5149
5296
|
OldValues___?: KeyValuePairInput[];
|
|
5297
|
+
RestoreContext___?: RestoreContextInput;
|
|
5150
5298
|
}
|
|
5151
5299
|
export declare class RunMJArtifactTypeViewResult {
|
|
5152
5300
|
Results: MJArtifactType_[];
|
|
@@ -5188,6 +5336,7 @@ export declare class CreateMJArtifactUseInput {
|
|
|
5188
5336
|
UserID?: string;
|
|
5189
5337
|
UsageType?: string;
|
|
5190
5338
|
UsageContext: string | null;
|
|
5339
|
+
RestoreContext___?: RestoreContextInput;
|
|
5191
5340
|
}
|
|
5192
5341
|
export declare class UpdateMJArtifactUseInput {
|
|
5193
5342
|
ID: string;
|
|
@@ -5196,6 +5345,7 @@ export declare class UpdateMJArtifactUseInput {
|
|
|
5196
5345
|
UsageType?: string;
|
|
5197
5346
|
UsageContext?: string | null;
|
|
5198
5347
|
OldValues___?: KeyValuePairInput[];
|
|
5348
|
+
RestoreContext___?: RestoreContextInput;
|
|
5199
5349
|
}
|
|
5200
5350
|
export declare class RunMJArtifactUseViewResult {
|
|
5201
5351
|
Results: MJArtifactUse_[];
|
|
@@ -5233,6 +5383,7 @@ export declare class CreateMJArtifactVersionAttributeInput {
|
|
|
5233
5383
|
Type?: string;
|
|
5234
5384
|
Value: string | null;
|
|
5235
5385
|
StandardProperty: string | null;
|
|
5386
|
+
RestoreContext___?: RestoreContextInput;
|
|
5236
5387
|
}
|
|
5237
5388
|
export declare class UpdateMJArtifactVersionAttributeInput {
|
|
5238
5389
|
ID: string;
|
|
@@ -5242,6 +5393,7 @@ export declare class UpdateMJArtifactVersionAttributeInput {
|
|
|
5242
5393
|
Value?: string | null;
|
|
5243
5394
|
StandardProperty?: string | null;
|
|
5244
5395
|
OldValues___?: KeyValuePairInput[];
|
|
5396
|
+
RestoreContext___?: RestoreContextInput;
|
|
5245
5397
|
}
|
|
5246
5398
|
export declare class RunMJArtifactVersionAttributeViewResult {
|
|
5247
5399
|
Results: MJArtifactVersionAttribute_[];
|
|
@@ -5303,6 +5455,7 @@ export declare class CreateMJArtifactVersionInput {
|
|
|
5303
5455
|
MimeType: string | null;
|
|
5304
5456
|
FileName: string | null;
|
|
5305
5457
|
ContentSizeBytes: number | null;
|
|
5458
|
+
RestoreContext___?: RestoreContextInput;
|
|
5306
5459
|
}
|
|
5307
5460
|
export declare class UpdateMJArtifactVersionInput {
|
|
5308
5461
|
ID: string;
|
|
@@ -5321,6 +5474,7 @@ export declare class UpdateMJArtifactVersionInput {
|
|
|
5321
5474
|
FileName?: string | null;
|
|
5322
5475
|
ContentSizeBytes?: number | null;
|
|
5323
5476
|
OldValues___?: KeyValuePairInput[];
|
|
5477
|
+
RestoreContext___?: RestoreContextInput;
|
|
5324
5478
|
}
|
|
5325
5479
|
export declare class RunMJArtifactVersionViewResult {
|
|
5326
5480
|
Results: MJArtifactVersion_[];
|
|
@@ -5370,6 +5524,7 @@ export declare class CreateMJArtifactInput {
|
|
|
5370
5524
|
Comments: string | null;
|
|
5371
5525
|
UserID?: string;
|
|
5372
5526
|
Visibility?: string;
|
|
5527
|
+
RestoreContext___?: RestoreContextInput;
|
|
5373
5528
|
}
|
|
5374
5529
|
export declare class UpdateMJArtifactInput {
|
|
5375
5530
|
ID: string;
|
|
@@ -5381,6 +5536,7 @@ export declare class UpdateMJArtifactInput {
|
|
|
5381
5536
|
UserID?: string;
|
|
5382
5537
|
Visibility?: string;
|
|
5383
5538
|
OldValues___?: KeyValuePairInput[];
|
|
5539
|
+
RestoreContext___?: RestoreContextInput;
|
|
5384
5540
|
}
|
|
5385
5541
|
export declare class RunMJArtifactViewResult {
|
|
5386
5542
|
Results: MJArtifact_[];
|
|
@@ -5422,6 +5578,7 @@ export declare class CreateMJAuditLogTypeInput {
|
|
|
5422
5578
|
Description: string | null;
|
|
5423
5579
|
ParentID: string | null;
|
|
5424
5580
|
AuthorizationID: string | null;
|
|
5581
|
+
RestoreContext___?: RestoreContextInput;
|
|
5425
5582
|
}
|
|
5426
5583
|
export declare class UpdateMJAuditLogTypeInput {
|
|
5427
5584
|
ID: string;
|
|
@@ -5430,6 +5587,7 @@ export declare class UpdateMJAuditLogTypeInput {
|
|
|
5430
5587
|
ParentID?: string | null;
|
|
5431
5588
|
AuthorizationID?: string | null;
|
|
5432
5589
|
OldValues___?: KeyValuePairInput[];
|
|
5590
|
+
RestoreContext___?: RestoreContextInput;
|
|
5433
5591
|
}
|
|
5434
5592
|
export declare class RunMJAuditLogTypeViewResult {
|
|
5435
5593
|
Results: MJAuditLogType_[];
|
|
@@ -5479,6 +5637,7 @@ export declare class CreateMJAuditLogInput {
|
|
|
5479
5637
|
Details: string | null;
|
|
5480
5638
|
EntityID: string | null;
|
|
5481
5639
|
RecordID: string | null;
|
|
5640
|
+
RestoreContext___?: RestoreContextInput;
|
|
5482
5641
|
}
|
|
5483
5642
|
export declare class UpdateMJAuditLogInput {
|
|
5484
5643
|
ID: string;
|
|
@@ -5491,6 +5650,7 @@ export declare class UpdateMJAuditLogInput {
|
|
|
5491
5650
|
EntityID?: string | null;
|
|
5492
5651
|
RecordID?: string | null;
|
|
5493
5652
|
OldValues___?: KeyValuePairInput[];
|
|
5653
|
+
RestoreContext___?: RestoreContextInput;
|
|
5494
5654
|
}
|
|
5495
5655
|
export declare class RunMJAuditLogViewResult {
|
|
5496
5656
|
Results: MJAuditLog_[];
|
|
@@ -5525,6 +5685,7 @@ export declare class CreateMJAuthorizationRoleInput {
|
|
|
5525
5685
|
AuthorizationID?: string;
|
|
5526
5686
|
RoleID?: string;
|
|
5527
5687
|
Type?: string;
|
|
5688
|
+
RestoreContext___?: RestoreContextInput;
|
|
5528
5689
|
}
|
|
5529
5690
|
export declare class UpdateMJAuthorizationRoleInput {
|
|
5530
5691
|
ID: string;
|
|
@@ -5532,6 +5693,7 @@ export declare class UpdateMJAuthorizationRoleInput {
|
|
|
5532
5693
|
RoleID?: string;
|
|
5533
5694
|
Type?: string;
|
|
5534
5695
|
OldValues___?: KeyValuePairInput[];
|
|
5696
|
+
RestoreContext___?: RestoreContextInput;
|
|
5535
5697
|
}
|
|
5536
5698
|
export declare class RunMJAuthorizationRoleViewResult {
|
|
5537
5699
|
Results: MJAuthorizationRole_[];
|
|
@@ -5576,6 +5738,7 @@ export declare class CreateMJAuthorizationInput {
|
|
|
5576
5738
|
IsActive?: boolean;
|
|
5577
5739
|
UseAuditLog?: boolean;
|
|
5578
5740
|
Description: string | null;
|
|
5741
|
+
RestoreContext___?: RestoreContextInput;
|
|
5579
5742
|
}
|
|
5580
5743
|
export declare class UpdateMJAuthorizationInput {
|
|
5581
5744
|
ID: string;
|
|
@@ -5585,6 +5748,7 @@ export declare class UpdateMJAuthorizationInput {
|
|
|
5585
5748
|
UseAuditLog?: boolean;
|
|
5586
5749
|
Description?: string | null;
|
|
5587
5750
|
OldValues___?: KeyValuePairInput[];
|
|
5751
|
+
RestoreContext___?: RestoreContextInput;
|
|
5588
5752
|
}
|
|
5589
5753
|
export declare class RunMJAuthorizationViewResult {
|
|
5590
5754
|
Results: MJAuthorization_[];
|
|
@@ -5625,6 +5789,7 @@ export declare class CreateMJCollectionArtifactInput {
|
|
|
5625
5789
|
CollectionID?: string;
|
|
5626
5790
|
Sequence?: number;
|
|
5627
5791
|
ArtifactVersionID?: string;
|
|
5792
|
+
RestoreContext___?: RestoreContextInput;
|
|
5628
5793
|
}
|
|
5629
5794
|
export declare class UpdateMJCollectionArtifactInput {
|
|
5630
5795
|
ID: string;
|
|
@@ -5632,6 +5797,7 @@ export declare class UpdateMJCollectionArtifactInput {
|
|
|
5632
5797
|
Sequence?: number;
|
|
5633
5798
|
ArtifactVersionID?: string;
|
|
5634
5799
|
OldValues___?: KeyValuePairInput[];
|
|
5800
|
+
RestoreContext___?: RestoreContextInput;
|
|
5635
5801
|
}
|
|
5636
5802
|
export declare class RunMJCollectionArtifactViewResult {
|
|
5637
5803
|
Results: MJCollectionArtifact_[];
|
|
@@ -5675,6 +5841,7 @@ export declare class CreateMJCollectionPermissionInput {
|
|
|
5675
5841
|
CanEdit?: boolean;
|
|
5676
5842
|
CanDelete?: boolean;
|
|
5677
5843
|
SharedByUserID: string | null;
|
|
5844
|
+
RestoreContext___?: RestoreContextInput;
|
|
5678
5845
|
}
|
|
5679
5846
|
export declare class UpdateMJCollectionPermissionInput {
|
|
5680
5847
|
ID: string;
|
|
@@ -5686,6 +5853,7 @@ export declare class UpdateMJCollectionPermissionInput {
|
|
|
5686
5853
|
CanDelete?: boolean;
|
|
5687
5854
|
SharedByUserID?: string | null;
|
|
5688
5855
|
OldValues___?: KeyValuePairInput[];
|
|
5856
|
+
RestoreContext___?: RestoreContextInput;
|
|
5689
5857
|
}
|
|
5690
5858
|
export declare class RunMJCollectionPermissionViewResult {
|
|
5691
5859
|
Results: MJCollectionPermission_[];
|
|
@@ -5735,6 +5903,7 @@ export declare class CreateMJCollectionInput {
|
|
|
5735
5903
|
Color: string | null;
|
|
5736
5904
|
Sequence: number | null;
|
|
5737
5905
|
OwnerID: string | null;
|
|
5906
|
+
RestoreContext___?: RestoreContextInput;
|
|
5738
5907
|
}
|
|
5739
5908
|
export declare class UpdateMJCollectionInput {
|
|
5740
5909
|
ID: string;
|
|
@@ -5747,6 +5916,7 @@ export declare class UpdateMJCollectionInput {
|
|
|
5747
5916
|
Sequence?: number | null;
|
|
5748
5917
|
OwnerID?: string | null;
|
|
5749
5918
|
OldValues___?: KeyValuePairInput[];
|
|
5919
|
+
RestoreContext___?: RestoreContextInput;
|
|
5750
5920
|
}
|
|
5751
5921
|
export declare class RunMJCollectionViewResult {
|
|
5752
5922
|
Results: MJCollection_[];
|
|
@@ -5788,6 +5958,7 @@ export declare class CreateMJCommunicationBaseMessageTypeInput {
|
|
|
5788
5958
|
SupportsSubjectLine?: boolean;
|
|
5789
5959
|
SupportsHtml?: boolean;
|
|
5790
5960
|
MaxBytes: number | null;
|
|
5961
|
+
RestoreContext___?: RestoreContextInput;
|
|
5791
5962
|
}
|
|
5792
5963
|
export declare class UpdateMJCommunicationBaseMessageTypeInput {
|
|
5793
5964
|
ID: string;
|
|
@@ -5797,6 +5968,7 @@ export declare class UpdateMJCommunicationBaseMessageTypeInput {
|
|
|
5797
5968
|
SupportsHtml?: boolean;
|
|
5798
5969
|
MaxBytes?: number | null;
|
|
5799
5970
|
OldValues___?: KeyValuePairInput[];
|
|
5971
|
+
RestoreContext___?: RestoreContextInput;
|
|
5800
5972
|
}
|
|
5801
5973
|
export declare class RunMJCommunicationBaseMessageTypeViewResult {
|
|
5802
5974
|
Results: MJCommunicationBaseMessageType_[];
|
|
@@ -5844,6 +6016,7 @@ export declare class CreateMJCommunicationLogInput {
|
|
|
5844
6016
|
Status?: string;
|
|
5845
6017
|
MessageContent: string | null;
|
|
5846
6018
|
ErrorMessage: string | null;
|
|
6019
|
+
RestoreContext___?: RestoreContextInput;
|
|
5847
6020
|
}
|
|
5848
6021
|
export declare class UpdateMJCommunicationLogInput {
|
|
5849
6022
|
ID: string;
|
|
@@ -5856,6 +6029,7 @@ export declare class UpdateMJCommunicationLogInput {
|
|
|
5856
6029
|
MessageContent?: string | null;
|
|
5857
6030
|
ErrorMessage?: string | null;
|
|
5858
6031
|
OldValues___?: KeyValuePairInput[];
|
|
6032
|
+
RestoreContext___?: RestoreContextInput;
|
|
5859
6033
|
}
|
|
5860
6034
|
export declare class RunMJCommunicationLogViewResult {
|
|
5861
6035
|
Results: MJCommunicationLog_[];
|
|
@@ -5895,6 +6069,7 @@ export declare class CreateMJCommunicationProviderMessageTypeInput {
|
|
|
5895
6069
|
Name?: string;
|
|
5896
6070
|
Status?: string;
|
|
5897
6071
|
AdditionalAttributes: string | null;
|
|
6072
|
+
RestoreContext___?: RestoreContextInput;
|
|
5898
6073
|
}
|
|
5899
6074
|
export declare class UpdateMJCommunicationProviderMessageTypeInput {
|
|
5900
6075
|
ID: string;
|
|
@@ -5904,6 +6079,7 @@ export declare class UpdateMJCommunicationProviderMessageTypeInput {
|
|
|
5904
6079
|
Status?: string;
|
|
5905
6080
|
AdditionalAttributes?: string | null;
|
|
5906
6081
|
OldValues___?: KeyValuePairInput[];
|
|
6082
|
+
RestoreContext___?: RestoreContextInput;
|
|
5907
6083
|
}
|
|
5908
6084
|
export declare class RunMJCommunicationProviderMessageTypeViewResult {
|
|
5909
6085
|
Results: MJCommunicationProviderMessageType_[];
|
|
@@ -5951,6 +6127,7 @@ export declare class CreateMJCommunicationProviderInput {
|
|
|
5951
6127
|
SupportsForwarding?: boolean;
|
|
5952
6128
|
SupportsReplying?: boolean;
|
|
5953
6129
|
SupportsDrafts?: boolean;
|
|
6130
|
+
RestoreContext___?: RestoreContextInput;
|
|
5954
6131
|
}
|
|
5955
6132
|
export declare class UpdateMJCommunicationProviderInput {
|
|
5956
6133
|
ID: string;
|
|
@@ -5964,6 +6141,7 @@ export declare class UpdateMJCommunicationProviderInput {
|
|
|
5964
6141
|
SupportsReplying?: boolean;
|
|
5965
6142
|
SupportsDrafts?: boolean;
|
|
5966
6143
|
OldValues___?: KeyValuePairInput[];
|
|
6144
|
+
RestoreContext___?: RestoreContextInput;
|
|
5967
6145
|
}
|
|
5968
6146
|
export declare class RunMJCommunicationProviderViewResult {
|
|
5969
6147
|
Results: MJCommunicationProvider_[];
|
|
@@ -6008,6 +6186,7 @@ export declare class CreateMJCommunicationRunInput {
|
|
|
6008
6186
|
EndedAt: Date | null;
|
|
6009
6187
|
Comments: string | null;
|
|
6010
6188
|
ErrorMessage: string | null;
|
|
6189
|
+
RestoreContext___?: RestoreContextInput;
|
|
6011
6190
|
}
|
|
6012
6191
|
export declare class UpdateMJCommunicationRunInput {
|
|
6013
6192
|
ID: string;
|
|
@@ -6019,6 +6198,7 @@ export declare class UpdateMJCommunicationRunInput {
|
|
|
6019
6198
|
Comments?: string | null;
|
|
6020
6199
|
ErrorMessage?: string | null;
|
|
6021
6200
|
OldValues___?: KeyValuePairInput[];
|
|
6201
|
+
RestoreContext___?: RestoreContextInput;
|
|
6022
6202
|
}
|
|
6023
6203
|
export declare class RunMJCommunicationRunViewResult {
|
|
6024
6204
|
Results: MJCommunicationRun_[];
|
|
@@ -6061,6 +6241,7 @@ export declare class CreateMJCompanyInput {
|
|
|
6061
6241
|
Website: string | null;
|
|
6062
6242
|
LogoURL: string | null;
|
|
6063
6243
|
Domain: string | null;
|
|
6244
|
+
RestoreContext___?: RestoreContextInput;
|
|
6064
6245
|
}
|
|
6065
6246
|
export declare class UpdateMJCompanyInput {
|
|
6066
6247
|
ID: string;
|
|
@@ -6070,6 +6251,7 @@ export declare class UpdateMJCompanyInput {
|
|
|
6070
6251
|
LogoURL?: string | null;
|
|
6071
6252
|
Domain?: string | null;
|
|
6072
6253
|
OldValues___?: KeyValuePairInput[];
|
|
6254
|
+
RestoreContext___?: RestoreContextInput;
|
|
6073
6255
|
}
|
|
6074
6256
|
export declare class RunMJCompanyViewResult {
|
|
6075
6257
|
Results: MJCompany_[];
|
|
@@ -6130,6 +6312,7 @@ export declare class CreateMJCompanyIntegrationEntityMapInput {
|
|
|
6130
6312
|
DeleteBehavior?: string;
|
|
6131
6313
|
Status?: string;
|
|
6132
6314
|
Configuration: string | null;
|
|
6315
|
+
RestoreContext___?: RestoreContextInput;
|
|
6133
6316
|
}
|
|
6134
6317
|
export declare class UpdateMJCompanyIntegrationEntityMapInput {
|
|
6135
6318
|
ID: string;
|
|
@@ -6146,6 +6329,7 @@ export declare class UpdateMJCompanyIntegrationEntityMapInput {
|
|
|
6146
6329
|
Status?: string;
|
|
6147
6330
|
Configuration?: string | null;
|
|
6148
6331
|
OldValues___?: KeyValuePairInput[];
|
|
6332
|
+
RestoreContext___?: RestoreContextInput;
|
|
6149
6333
|
}
|
|
6150
6334
|
export declare class RunMJCompanyIntegrationEntityMapViewResult {
|
|
6151
6335
|
Results: MJCompanyIntegrationEntityMap_[];
|
|
@@ -6199,6 +6383,7 @@ export declare class CreateMJCompanyIntegrationFieldMapInput {
|
|
|
6199
6383
|
DefaultValue: string | null;
|
|
6200
6384
|
Priority?: number;
|
|
6201
6385
|
Status?: string;
|
|
6386
|
+
RestoreContext___?: RestoreContextInput;
|
|
6202
6387
|
}
|
|
6203
6388
|
export declare class UpdateMJCompanyIntegrationFieldMapInput {
|
|
6204
6389
|
ID: string;
|
|
@@ -6215,6 +6400,7 @@ export declare class UpdateMJCompanyIntegrationFieldMapInput {
|
|
|
6215
6400
|
Priority?: number;
|
|
6216
6401
|
Status?: string;
|
|
6217
6402
|
OldValues___?: KeyValuePairInput[];
|
|
6403
|
+
RestoreContext___?: RestoreContextInput;
|
|
6218
6404
|
}
|
|
6219
6405
|
export declare class RunMJCompanyIntegrationFieldMapViewResult {
|
|
6220
6406
|
Results: MJCompanyIntegrationFieldMap_[];
|
|
@@ -6251,6 +6437,7 @@ export declare class CreateMJCompanyIntegrationRecordMapInput {
|
|
|
6251
6437
|
ExternalSystemRecordID?: string;
|
|
6252
6438
|
EntityID?: string;
|
|
6253
6439
|
EntityRecordID?: string;
|
|
6440
|
+
RestoreContext___?: RestoreContextInput;
|
|
6254
6441
|
}
|
|
6255
6442
|
export declare class UpdateMJCompanyIntegrationRecordMapInput {
|
|
6256
6443
|
ID: string;
|
|
@@ -6259,6 +6446,7 @@ export declare class UpdateMJCompanyIntegrationRecordMapInput {
|
|
|
6259
6446
|
EntityID?: string;
|
|
6260
6447
|
EntityRecordID?: string;
|
|
6261
6448
|
OldValues___?: KeyValuePairInput[];
|
|
6449
|
+
RestoreContext___?: RestoreContextInput;
|
|
6262
6450
|
}
|
|
6263
6451
|
export declare class RunMJCompanyIntegrationRecordMapViewResult {
|
|
6264
6452
|
Results: MJCompanyIntegrationRecordMap_[];
|
|
@@ -6298,6 +6486,7 @@ export declare class CreateMJCompanyIntegrationRunAPILogInput {
|
|
|
6298
6486
|
RequestMethod: string | null;
|
|
6299
6487
|
URL: string | null;
|
|
6300
6488
|
Parameters: string | null;
|
|
6489
|
+
RestoreContext___?: RestoreContextInput;
|
|
6301
6490
|
}
|
|
6302
6491
|
export declare class UpdateMJCompanyIntegrationRunAPILogInput {
|
|
6303
6492
|
ID: string;
|
|
@@ -6308,6 +6497,7 @@ export declare class UpdateMJCompanyIntegrationRunAPILogInput {
|
|
|
6308
6497
|
URL?: string | null;
|
|
6309
6498
|
Parameters?: string | null;
|
|
6310
6499
|
OldValues___?: KeyValuePairInput[];
|
|
6500
|
+
RestoreContext___?: RestoreContextInput;
|
|
6311
6501
|
}
|
|
6312
6502
|
export declare class RunMJCompanyIntegrationRunAPILogViewResult {
|
|
6313
6503
|
Results: MJCompanyIntegrationRunAPILog_[];
|
|
@@ -6350,6 +6540,7 @@ export declare class CreateMJCompanyIntegrationRunDetailInput {
|
|
|
6350
6540
|
Action?: string;
|
|
6351
6541
|
ExecutedAt?: Date;
|
|
6352
6542
|
IsSuccess?: boolean;
|
|
6543
|
+
RestoreContext___?: RestoreContextInput;
|
|
6353
6544
|
}
|
|
6354
6545
|
export declare class UpdateMJCompanyIntegrationRunDetailInput {
|
|
6355
6546
|
ID: string;
|
|
@@ -6360,6 +6551,7 @@ export declare class UpdateMJCompanyIntegrationRunDetailInput {
|
|
|
6360
6551
|
ExecutedAt?: Date;
|
|
6361
6552
|
IsSuccess?: boolean;
|
|
6362
6553
|
OldValues___?: KeyValuePairInput[];
|
|
6554
|
+
RestoreContext___?: RestoreContextInput;
|
|
6363
6555
|
}
|
|
6364
6556
|
export declare class RunMJCompanyIntegrationRunDetailViewResult {
|
|
6365
6557
|
Results: MJCompanyIntegrationRunDetail_[];
|
|
@@ -6413,6 +6605,7 @@ export declare class CreateMJCompanyIntegrationRunInput {
|
|
|
6413
6605
|
ErrorLog: string | null;
|
|
6414
6606
|
ConfigData: string | null;
|
|
6415
6607
|
ScheduledJobRunID: string | null;
|
|
6608
|
+
RestoreContext___?: RestoreContextInput;
|
|
6416
6609
|
}
|
|
6417
6610
|
export declare class UpdateMJCompanyIntegrationRunInput {
|
|
6418
6611
|
ID: string;
|
|
@@ -6427,6 +6620,7 @@ export declare class UpdateMJCompanyIntegrationRunInput {
|
|
|
6427
6620
|
ConfigData?: string | null;
|
|
6428
6621
|
ScheduledJobRunID?: string | null;
|
|
6429
6622
|
OldValues___?: KeyValuePairInput[];
|
|
6623
|
+
RestoreContext___?: RestoreContextInput;
|
|
6430
6624
|
}
|
|
6431
6625
|
export declare class RunMJCompanyIntegrationRunViewResult {
|
|
6432
6626
|
Results: MJCompanyIntegrationRun_[];
|
|
@@ -6469,6 +6663,7 @@ export declare class CreateMJCompanyIntegrationSyncWatermarkInput {
|
|
|
6469
6663
|
WatermarkValue: string | null;
|
|
6470
6664
|
LastSyncAt: Date | null;
|
|
6471
6665
|
RecordsSynced?: number;
|
|
6666
|
+
RestoreContext___?: RestoreContextInput;
|
|
6472
6667
|
}
|
|
6473
6668
|
export declare class UpdateMJCompanyIntegrationSyncWatermarkInput {
|
|
6474
6669
|
ID: string;
|
|
@@ -6479,6 +6674,7 @@ export declare class UpdateMJCompanyIntegrationSyncWatermarkInput {
|
|
|
6479
6674
|
LastSyncAt?: Date | null;
|
|
6480
6675
|
RecordsSynced?: number;
|
|
6481
6676
|
OldValues___?: KeyValuePairInput[];
|
|
6677
|
+
RestoreContext___?: RestoreContextInput;
|
|
6482
6678
|
}
|
|
6483
6679
|
export declare class RunMJCompanyIntegrationSyncWatermarkViewResult {
|
|
6484
6680
|
Results: MJCompanyIntegrationSyncWatermark_[];
|
|
@@ -6571,6 +6767,7 @@ export declare class CreateMJCompanyIntegrationInput {
|
|
|
6571
6767
|
LockedByInstance: string | null;
|
|
6572
6768
|
LockExpiresAt: Date | null;
|
|
6573
6769
|
ScheduledJobID: string | null;
|
|
6770
|
+
RestoreContext___?: RestoreContextInput;
|
|
6574
6771
|
}
|
|
6575
6772
|
export declare class UpdateMJCompanyIntegrationInput {
|
|
6576
6773
|
ID: string;
|
|
@@ -6602,6 +6799,7 @@ export declare class UpdateMJCompanyIntegrationInput {
|
|
|
6602
6799
|
LockExpiresAt?: Date | null;
|
|
6603
6800
|
ScheduledJobID?: string | null;
|
|
6604
6801
|
OldValues___?: KeyValuePairInput[];
|
|
6802
|
+
RestoreContext___?: RestoreContextInput;
|
|
6605
6803
|
}
|
|
6606
6804
|
export declare class RunMJCompanyIntegrationViewResult {
|
|
6607
6805
|
Results: MJCompanyIntegration_[];
|
|
@@ -6639,12 +6837,14 @@ export declare class CreateMJComponentDependencyInput {
|
|
|
6639
6837
|
ID?: string;
|
|
6640
6838
|
ComponentID?: string;
|
|
6641
6839
|
DependencyComponentID?: string;
|
|
6840
|
+
RestoreContext___?: RestoreContextInput;
|
|
6642
6841
|
}
|
|
6643
6842
|
export declare class UpdateMJComponentDependencyInput {
|
|
6644
6843
|
ID: string;
|
|
6645
6844
|
ComponentID?: string;
|
|
6646
6845
|
DependencyComponentID?: string;
|
|
6647
6846
|
OldValues___?: KeyValuePairInput[];
|
|
6847
|
+
RestoreContext___?: RestoreContextInput;
|
|
6648
6848
|
}
|
|
6649
6849
|
export declare class RunMJComponentDependencyViewResult {
|
|
6650
6850
|
Results: MJComponentDependency_[];
|
|
@@ -6696,6 +6896,7 @@ export declare class CreateMJComponentLibraryInput {
|
|
|
6696
6896
|
LintRules: string | null;
|
|
6697
6897
|
Dependencies: string | null;
|
|
6698
6898
|
UsageType?: string;
|
|
6899
|
+
RestoreContext___?: RestoreContextInput;
|
|
6699
6900
|
}
|
|
6700
6901
|
export declare class UpdateMJComponentLibraryInput {
|
|
6701
6902
|
ID: string;
|
|
@@ -6712,6 +6913,7 @@ export declare class UpdateMJComponentLibraryInput {
|
|
|
6712
6913
|
Dependencies?: string | null;
|
|
6713
6914
|
UsageType?: string;
|
|
6714
6915
|
OldValues___?: KeyValuePairInput[];
|
|
6916
|
+
RestoreContext___?: RestoreContextInput;
|
|
6715
6917
|
}
|
|
6716
6918
|
export declare class RunMJComponentLibraryViewResult {
|
|
6717
6919
|
Results: MJComponentLibrary_[];
|
|
@@ -6747,6 +6949,7 @@ export declare class CreateMJComponentLibraryLinkInput {
|
|
|
6747
6949
|
ComponentID?: string;
|
|
6748
6950
|
LibraryID?: string;
|
|
6749
6951
|
MinVersion: string | null;
|
|
6952
|
+
RestoreContext___?: RestoreContextInput;
|
|
6750
6953
|
}
|
|
6751
6954
|
export declare class UpdateMJComponentLibraryLinkInput {
|
|
6752
6955
|
ID: string;
|
|
@@ -6754,6 +6957,7 @@ export declare class UpdateMJComponentLibraryLinkInput {
|
|
|
6754
6957
|
LibraryID?: string;
|
|
6755
6958
|
MinVersion?: string | null;
|
|
6756
6959
|
OldValues___?: KeyValuePairInput[];
|
|
6960
|
+
RestoreContext___?: RestoreContextInput;
|
|
6757
6961
|
}
|
|
6758
6962
|
export declare class RunMJComponentLibraryLinkViewResult {
|
|
6759
6963
|
Results: MJComponentLibraryLink_[];
|
|
@@ -6793,6 +6997,7 @@ export declare class CreateMJComponentRegistryInput {
|
|
|
6793
6997
|
Type: string | null;
|
|
6794
6998
|
APIVersion: string | null;
|
|
6795
6999
|
Status: string | null;
|
|
7000
|
+
RestoreContext___?: RestoreContextInput;
|
|
6796
7001
|
}
|
|
6797
7002
|
export declare class UpdateMJComponentRegistryInput {
|
|
6798
7003
|
ID: string;
|
|
@@ -6803,6 +7008,7 @@ export declare class UpdateMJComponentRegistryInput {
|
|
|
6803
7008
|
APIVersion?: string | null;
|
|
6804
7009
|
Status?: string | null;
|
|
6805
7010
|
OldValues___?: KeyValuePairInput[];
|
|
7011
|
+
RestoreContext___?: RestoreContextInput;
|
|
6806
7012
|
}
|
|
6807
7013
|
export declare class RunMJComponentRegistryViewResult {
|
|
6808
7014
|
Results: MJComponentRegistry_[];
|
|
@@ -6886,6 +7092,7 @@ export declare class CreateMJComponentInput {
|
|
|
6886
7092
|
TechnicalDesignVectorEmbeddingModelID: string | null;
|
|
6887
7093
|
FunctionalRequirementsVectorEmbeddingModelID: string | null;
|
|
6888
7094
|
HasRequiredCustomProps?: boolean;
|
|
7095
|
+
RestoreContext___?: RestoreContextInput;
|
|
6889
7096
|
}
|
|
6890
7097
|
export declare class UpdateMJComponentInput {
|
|
6891
7098
|
ID: string;
|
|
@@ -6916,6 +7123,7 @@ export declare class UpdateMJComponentInput {
|
|
|
6916
7123
|
FunctionalRequirementsVectorEmbeddingModelID?: string | null;
|
|
6917
7124
|
HasRequiredCustomProps?: boolean;
|
|
6918
7125
|
OldValues___?: KeyValuePairInput[];
|
|
7126
|
+
RestoreContext___?: RestoreContextInput;
|
|
6919
7127
|
}
|
|
6920
7128
|
export declare class RunMJComponentViewResult {
|
|
6921
7129
|
Results: MJComponent_[];
|
|
@@ -6951,12 +7159,14 @@ export declare class CreateMJContentFileTypeInput {
|
|
|
6951
7159
|
ID?: string;
|
|
6952
7160
|
Name?: string;
|
|
6953
7161
|
FileExtension: string | null;
|
|
7162
|
+
RestoreContext___?: RestoreContextInput;
|
|
6954
7163
|
}
|
|
6955
7164
|
export declare class UpdateMJContentFileTypeInput {
|
|
6956
7165
|
ID: string;
|
|
6957
7166
|
Name?: string;
|
|
6958
7167
|
FileExtension?: string | null;
|
|
6959
7168
|
OldValues___?: KeyValuePairInput[];
|
|
7169
|
+
RestoreContext___?: RestoreContextInput;
|
|
6960
7170
|
}
|
|
6961
7171
|
export declare class RunMJContentFileTypeViewResult {
|
|
6962
7172
|
Results: MJContentFileType_[];
|
|
@@ -6992,6 +7202,7 @@ export declare class CreateMJContentItemAttributeInput {
|
|
|
6992
7202
|
ContentItemID?: string;
|
|
6993
7203
|
Name?: string;
|
|
6994
7204
|
Value?: string;
|
|
7205
|
+
RestoreContext___?: RestoreContextInput;
|
|
6995
7206
|
}
|
|
6996
7207
|
export declare class UpdateMJContentItemAttributeInput {
|
|
6997
7208
|
ID: string;
|
|
@@ -6999,6 +7210,7 @@ export declare class UpdateMJContentItemAttributeInput {
|
|
|
6999
7210
|
Name?: string;
|
|
7000
7211
|
Value?: string;
|
|
7001
7212
|
OldValues___?: KeyValuePairInput[];
|
|
7213
|
+
RestoreContext___?: RestoreContextInput;
|
|
7002
7214
|
}
|
|
7003
7215
|
export declare class RunMJContentItemAttributeViewResult {
|
|
7004
7216
|
Results: MJContentItemAttribute_[];
|
|
@@ -7044,6 +7256,7 @@ export declare class CreateMJContentItemDuplicateInput {
|
|
|
7044
7256
|
ResolvedByUserID: string | null;
|
|
7045
7257
|
ResolvedAt: Date | null;
|
|
7046
7258
|
Resolution: string | null;
|
|
7259
|
+
RestoreContext___?: RestoreContextInput;
|
|
7047
7260
|
}
|
|
7048
7261
|
export declare class UpdateMJContentItemDuplicateInput {
|
|
7049
7262
|
ID: string;
|
|
@@ -7056,6 +7269,7 @@ export declare class UpdateMJContentItemDuplicateInput {
|
|
|
7056
7269
|
ResolvedAt?: Date | null;
|
|
7057
7270
|
Resolution?: string | null;
|
|
7058
7271
|
OldValues___?: KeyValuePairInput[];
|
|
7272
|
+
RestoreContext___?: RestoreContextInput;
|
|
7059
7273
|
}
|
|
7060
7274
|
export declare class RunMJContentItemDuplicateViewResult {
|
|
7061
7275
|
Results: MJContentItemDuplicate_[];
|
|
@@ -7092,6 +7306,7 @@ export declare class CreateMJContentItemTagInput {
|
|
|
7092
7306
|
Tag?: string;
|
|
7093
7307
|
Weight?: number;
|
|
7094
7308
|
TagID: string | null;
|
|
7309
|
+
RestoreContext___?: RestoreContextInput;
|
|
7095
7310
|
}
|
|
7096
7311
|
export declare class UpdateMJContentItemTagInput {
|
|
7097
7312
|
ID: string;
|
|
@@ -7100,6 +7315,7 @@ export declare class UpdateMJContentItemTagInput {
|
|
|
7100
7315
|
Weight?: number;
|
|
7101
7316
|
TagID?: string | null;
|
|
7102
7317
|
OldValues___?: KeyValuePairInput[];
|
|
7318
|
+
RestoreContext___?: RestoreContextInput;
|
|
7103
7319
|
}
|
|
7104
7320
|
export declare class RunMJContentItemTagViewResult {
|
|
7105
7321
|
Results: MJContentItemTag_[];
|
|
@@ -7166,6 +7382,7 @@ export declare class CreateMJContentItemInput {
|
|
|
7166
7382
|
EmbeddingModelID: string | null;
|
|
7167
7383
|
TaggingStatus?: string;
|
|
7168
7384
|
LastTaggedAt: Date | null;
|
|
7385
|
+
RestoreContext___?: RestoreContextInput;
|
|
7169
7386
|
}
|
|
7170
7387
|
export declare class UpdateMJContentItemInput {
|
|
7171
7388
|
ID: string;
|
|
@@ -7185,6 +7402,7 @@ export declare class UpdateMJContentItemInput {
|
|
|
7185
7402
|
TaggingStatus?: string;
|
|
7186
7403
|
LastTaggedAt?: Date | null;
|
|
7187
7404
|
OldValues___?: KeyValuePairInput[];
|
|
7405
|
+
RestoreContext___?: RestoreContextInput;
|
|
7188
7406
|
}
|
|
7189
7407
|
export declare class RunMJContentItemViewResult {
|
|
7190
7408
|
Results: MJContentItem_[];
|
|
@@ -7245,6 +7463,7 @@ export declare class CreateMJContentProcessRunDetailInput {
|
|
|
7245
7463
|
EndTime: Date | null;
|
|
7246
7464
|
TotalTokensUsed?: number;
|
|
7247
7465
|
TotalCost?: number;
|
|
7466
|
+
RestoreContext___?: RestoreContextInput;
|
|
7248
7467
|
}
|
|
7249
7468
|
export declare class UpdateMJContentProcessRunDetailInput {
|
|
7250
7469
|
ID: string;
|
|
@@ -7262,6 +7481,7 @@ export declare class UpdateMJContentProcessRunDetailInput {
|
|
|
7262
7481
|
TotalTokensUsed?: number;
|
|
7263
7482
|
TotalCost?: number;
|
|
7264
7483
|
OldValues___?: KeyValuePairInput[];
|
|
7484
|
+
RestoreContext___?: RestoreContextInput;
|
|
7265
7485
|
}
|
|
7266
7486
|
export declare class RunMJContentProcessRunDetailViewResult {
|
|
7267
7487
|
Results: MJContentProcessRunDetail_[];
|
|
@@ -7296,6 +7516,7 @@ export declare class CreateMJContentProcessRunPromptRunInput {
|
|
|
7296
7516
|
ContentProcessRunDetailID?: string;
|
|
7297
7517
|
AIPromptRunID?: string;
|
|
7298
7518
|
RunType?: string;
|
|
7519
|
+
RestoreContext___?: RestoreContextInput;
|
|
7299
7520
|
}
|
|
7300
7521
|
export declare class UpdateMJContentProcessRunPromptRunInput {
|
|
7301
7522
|
ID: string;
|
|
@@ -7303,6 +7524,7 @@ export declare class UpdateMJContentProcessRunPromptRunInput {
|
|
|
7303
7524
|
AIPromptRunID?: string;
|
|
7304
7525
|
RunType?: string;
|
|
7305
7526
|
OldValues___?: KeyValuePairInput[];
|
|
7527
|
+
RestoreContext___?: RestoreContextInput;
|
|
7306
7528
|
}
|
|
7307
7529
|
export declare class RunMJContentProcessRunPromptRunViewResult {
|
|
7308
7530
|
Results: MJContentProcessRunPromptRun_[];
|
|
@@ -7358,6 +7580,7 @@ export declare class CreateMJContentProcessRunInput {
|
|
|
7358
7580
|
ErrorMessage: string | null;
|
|
7359
7581
|
CancellationRequested?: boolean;
|
|
7360
7582
|
Configuration: string | null;
|
|
7583
|
+
RestoreContext___?: RestoreContextInput;
|
|
7361
7584
|
}
|
|
7362
7585
|
export declare class UpdateMJContentProcessRunInput {
|
|
7363
7586
|
ID: string;
|
|
@@ -7375,6 +7598,7 @@ export declare class UpdateMJContentProcessRunInput {
|
|
|
7375
7598
|
CancellationRequested?: boolean;
|
|
7376
7599
|
Configuration?: string | null;
|
|
7377
7600
|
OldValues___?: KeyValuePairInput[];
|
|
7601
|
+
RestoreContext___?: RestoreContextInput;
|
|
7378
7602
|
}
|
|
7379
7603
|
export declare class RunMJContentProcessRunViewResult {
|
|
7380
7604
|
Results: MJContentProcessRun_[];
|
|
@@ -7409,6 +7633,7 @@ export declare class CreateMJContentSourceParamInput {
|
|
|
7409
7633
|
ContentSourceID?: string;
|
|
7410
7634
|
ContentSourceTypeParamID?: string;
|
|
7411
7635
|
Value?: string;
|
|
7636
|
+
RestoreContext___?: RestoreContextInput;
|
|
7412
7637
|
}
|
|
7413
7638
|
export declare class UpdateMJContentSourceParamInput {
|
|
7414
7639
|
ID: string;
|
|
@@ -7416,6 +7641,7 @@ export declare class UpdateMJContentSourceParamInput {
|
|
|
7416
7641
|
ContentSourceTypeParamID?: string;
|
|
7417
7642
|
Value?: string;
|
|
7418
7643
|
OldValues___?: KeyValuePairInput[];
|
|
7644
|
+
RestoreContext___?: RestoreContextInput;
|
|
7419
7645
|
}
|
|
7420
7646
|
export declare class RunMJContentSourceParamViewResult {
|
|
7421
7647
|
Results: MJContentSourceParam_[];
|
|
@@ -7452,6 +7678,7 @@ export declare class CreateMJContentSourceTypeParamInput {
|
|
|
7452
7678
|
Type: string | null;
|
|
7453
7679
|
DefaultValue: string | null;
|
|
7454
7680
|
IsRequired?: boolean;
|
|
7681
|
+
RestoreContext___?: RestoreContextInput;
|
|
7455
7682
|
}
|
|
7456
7683
|
export declare class UpdateMJContentSourceTypeParamInput {
|
|
7457
7684
|
ID: string;
|
|
@@ -7461,6 +7688,7 @@ export declare class UpdateMJContentSourceTypeParamInput {
|
|
|
7461
7688
|
DefaultValue?: string | null;
|
|
7462
7689
|
IsRequired?: boolean;
|
|
7463
7690
|
OldValues___?: KeyValuePairInput[];
|
|
7691
|
+
RestoreContext___?: RestoreContextInput;
|
|
7464
7692
|
}
|
|
7465
7693
|
export declare class RunMJContentSourceTypeParamViewResult {
|
|
7466
7694
|
Results: MJContentSourceTypeParam_[];
|
|
@@ -7498,6 +7726,7 @@ export declare class CreateMJContentSourceTypeInput {
|
|
|
7498
7726
|
Description: string | null;
|
|
7499
7727
|
DriverClass: string | null;
|
|
7500
7728
|
Configuration: string | null;
|
|
7729
|
+
RestoreContext___?: RestoreContextInput;
|
|
7501
7730
|
}
|
|
7502
7731
|
export declare class UpdateMJContentSourceTypeInput {
|
|
7503
7732
|
ID: string;
|
|
@@ -7506,6 +7735,7 @@ export declare class UpdateMJContentSourceTypeInput {
|
|
|
7506
7735
|
DriverClass?: string | null;
|
|
7507
7736
|
Configuration?: string | null;
|
|
7508
7737
|
OldValues___?: KeyValuePairInput[];
|
|
7738
|
+
RestoreContext___?: RestoreContextInput;
|
|
7509
7739
|
}
|
|
7510
7740
|
export declare class RunMJContentSourceTypeViewResult {
|
|
7511
7741
|
Results: MJContentSourceType_[];
|
|
@@ -7569,6 +7799,7 @@ export declare class CreateMJContentSourceInput {
|
|
|
7569
7799
|
EntityID: string | null;
|
|
7570
7800
|
EntityDocumentID: string | null;
|
|
7571
7801
|
ScheduledActionID: string | null;
|
|
7802
|
+
RestoreContext___?: RestoreContextInput;
|
|
7572
7803
|
}
|
|
7573
7804
|
export declare class UpdateMJContentSourceInput {
|
|
7574
7805
|
ID: string;
|
|
@@ -7584,6 +7815,7 @@ export declare class UpdateMJContentSourceInput {
|
|
|
7584
7815
|
EntityDocumentID?: string | null;
|
|
7585
7816
|
ScheduledActionID?: string | null;
|
|
7586
7817
|
OldValues___?: KeyValuePairInput[];
|
|
7818
|
+
RestoreContext___?: RestoreContextInput;
|
|
7587
7819
|
}
|
|
7588
7820
|
export declare class RunMJContentSourceViewResult {
|
|
7589
7821
|
Results: MJContentSource_[];
|
|
@@ -7622,6 +7854,7 @@ export declare class CreateMJContentTypeAttributeInput {
|
|
|
7622
7854
|
Name?: string;
|
|
7623
7855
|
Prompt?: string;
|
|
7624
7856
|
Description: string | null;
|
|
7857
|
+
RestoreContext___?: RestoreContextInput;
|
|
7625
7858
|
}
|
|
7626
7859
|
export declare class UpdateMJContentTypeAttributeInput {
|
|
7627
7860
|
ID: string;
|
|
@@ -7630,6 +7863,7 @@ export declare class UpdateMJContentTypeAttributeInput {
|
|
|
7630
7863
|
Prompt?: string;
|
|
7631
7864
|
Description?: string | null;
|
|
7632
7865
|
OldValues___?: KeyValuePairInput[];
|
|
7866
|
+
RestoreContext___?: RestoreContextInput;
|
|
7633
7867
|
}
|
|
7634
7868
|
export declare class RunMJContentTypeAttributeViewResult {
|
|
7635
7869
|
Results: MJContentTypeAttribute_[];
|
|
@@ -7677,6 +7911,7 @@ export declare class CreateMJContentTypeInput {
|
|
|
7677
7911
|
EmbeddingModelID: string | null;
|
|
7678
7912
|
VectorIndexID: string | null;
|
|
7679
7913
|
Configuration: string | null;
|
|
7914
|
+
RestoreContext___?: RestoreContextInput;
|
|
7680
7915
|
}
|
|
7681
7916
|
export declare class UpdateMJContentTypeInput {
|
|
7682
7917
|
ID: string;
|
|
@@ -7689,6 +7924,7 @@ export declare class UpdateMJContentTypeInput {
|
|
|
7689
7924
|
VectorIndexID?: string | null;
|
|
7690
7925
|
Configuration?: string | null;
|
|
7691
7926
|
OldValues___?: KeyValuePairInput[];
|
|
7927
|
+
RestoreContext___?: RestoreContextInput;
|
|
7692
7928
|
}
|
|
7693
7929
|
export declare class RunMJContentTypeViewResult {
|
|
7694
7930
|
Results: MJContentType_[];
|
|
@@ -7724,6 +7960,7 @@ export declare class CreateMJConversationArtifactPermissionInput {
|
|
|
7724
7960
|
ConversationArtifactID?: string;
|
|
7725
7961
|
UserID?: string;
|
|
7726
7962
|
AccessLevel?: string;
|
|
7963
|
+
RestoreContext___?: RestoreContextInput;
|
|
7727
7964
|
}
|
|
7728
7965
|
export declare class UpdateMJConversationArtifactPermissionInput {
|
|
7729
7966
|
ID: string;
|
|
@@ -7731,6 +7968,7 @@ export declare class UpdateMJConversationArtifactPermissionInput {
|
|
|
7731
7968
|
UserID?: string;
|
|
7732
7969
|
AccessLevel?: string;
|
|
7733
7970
|
OldValues___?: KeyValuePairInput[];
|
|
7971
|
+
RestoreContext___?: RestoreContextInput;
|
|
7734
7972
|
}
|
|
7735
7973
|
export declare class RunMJConversationArtifactPermissionViewResult {
|
|
7736
7974
|
Results: MJConversationArtifactPermission_[];
|
|
@@ -7769,6 +8007,7 @@ export declare class CreateMJConversationArtifactVersionInput {
|
|
|
7769
8007
|
Configuration?: string;
|
|
7770
8008
|
Content: string | null;
|
|
7771
8009
|
Comments: string | null;
|
|
8010
|
+
RestoreContext___?: RestoreContextInput;
|
|
7772
8011
|
}
|
|
7773
8012
|
export declare class UpdateMJConversationArtifactVersionInput {
|
|
7774
8013
|
ID: string;
|
|
@@ -7778,6 +8017,7 @@ export declare class UpdateMJConversationArtifactVersionInput {
|
|
|
7778
8017
|
Content?: string | null;
|
|
7779
8018
|
Comments?: string | null;
|
|
7780
8019
|
OldValues___?: KeyValuePairInput[];
|
|
8020
|
+
RestoreContext___?: RestoreContextInput;
|
|
7781
8021
|
}
|
|
7782
8022
|
export declare class RunMJConversationArtifactVersionViewResult {
|
|
7783
8023
|
Results: MJConversationArtifactVersion_[];
|
|
@@ -7822,6 +8062,7 @@ export declare class CreateMJConversationArtifactInput {
|
|
|
7822
8062
|
ArtifactTypeID?: string;
|
|
7823
8063
|
SharingScope?: string;
|
|
7824
8064
|
Comments: string | null;
|
|
8065
|
+
RestoreContext___?: RestoreContextInput;
|
|
7825
8066
|
}
|
|
7826
8067
|
export declare class UpdateMJConversationArtifactInput {
|
|
7827
8068
|
ID: string;
|
|
@@ -7832,6 +8073,7 @@ export declare class UpdateMJConversationArtifactInput {
|
|
|
7832
8073
|
SharingScope?: string;
|
|
7833
8074
|
Comments?: string | null;
|
|
7834
8075
|
OldValues___?: KeyValuePairInput[];
|
|
8076
|
+
RestoreContext___?: RestoreContextInput;
|
|
7835
8077
|
}
|
|
7836
8078
|
export declare class RunMJConversationArtifactViewResult {
|
|
7837
8079
|
Results: MJConversationArtifact_[];
|
|
@@ -7869,6 +8111,7 @@ export declare class CreateMJConversationDetailArtifactInput {
|
|
|
7869
8111
|
ConversationDetailID?: string;
|
|
7870
8112
|
ArtifactVersionID?: string;
|
|
7871
8113
|
Direction?: string;
|
|
8114
|
+
RestoreContext___?: RestoreContextInput;
|
|
7872
8115
|
}
|
|
7873
8116
|
export declare class UpdateMJConversationDetailArtifactInput {
|
|
7874
8117
|
ID: string;
|
|
@@ -7876,6 +8119,7 @@ export declare class UpdateMJConversationDetailArtifactInput {
|
|
|
7876
8119
|
ArtifactVersionID?: string;
|
|
7877
8120
|
Direction?: string;
|
|
7878
8121
|
OldValues___?: KeyValuePairInput[];
|
|
8122
|
+
RestoreContext___?: RestoreContextInput;
|
|
7879
8123
|
}
|
|
7880
8124
|
export declare class RunMJConversationDetailArtifactViewResult {
|
|
7881
8125
|
Results: MJConversationDetailArtifact_[];
|
|
@@ -7931,6 +8175,7 @@ export declare class CreateMJConversationDetailAttachmentInput {
|
|
|
7931
8175
|
DisplayOrder?: number;
|
|
7932
8176
|
ThumbnailBase64: string | null;
|
|
7933
8177
|
Description: string | null;
|
|
8178
|
+
RestoreContext___?: RestoreContextInput;
|
|
7934
8179
|
}
|
|
7935
8180
|
export declare class UpdateMJConversationDetailAttachmentInput {
|
|
7936
8181
|
ID: string;
|
|
@@ -7948,6 +8193,7 @@ export declare class UpdateMJConversationDetailAttachmentInput {
|
|
|
7948
8193
|
ThumbnailBase64?: string | null;
|
|
7949
8194
|
Description?: string | null;
|
|
7950
8195
|
OldValues___?: KeyValuePairInput[];
|
|
8196
|
+
RestoreContext___?: RestoreContextInput;
|
|
7951
8197
|
}
|
|
7952
8198
|
export declare class RunMJConversationDetailAttachmentViewResult {
|
|
7953
8199
|
Results: MJConversationDetailAttachment_[];
|
|
@@ -7984,6 +8230,7 @@ export declare class CreateMJConversationDetailRatingInput {
|
|
|
7984
8230
|
UserID?: string;
|
|
7985
8231
|
Rating?: number;
|
|
7986
8232
|
Comments: string | null;
|
|
8233
|
+
RestoreContext___?: RestoreContextInput;
|
|
7987
8234
|
}
|
|
7988
8235
|
export declare class UpdateMJConversationDetailRatingInput {
|
|
7989
8236
|
ID: string;
|
|
@@ -7992,6 +8239,7 @@ export declare class UpdateMJConversationDetailRatingInput {
|
|
|
7992
8239
|
Rating?: number;
|
|
7993
8240
|
Comments?: string | null;
|
|
7994
8241
|
OldValues___?: KeyValuePairInput[];
|
|
8242
|
+
RestoreContext___?: RestoreContextInput;
|
|
7995
8243
|
}
|
|
7996
8244
|
export declare class RunMJConversationDetailRatingViewResult {
|
|
7997
8245
|
Results: MJConversationDetailRating_[];
|
|
@@ -8083,6 +8331,7 @@ export declare class CreateMJConversationDetailInput {
|
|
|
8083
8331
|
ActionableCommands: string | null;
|
|
8084
8332
|
AutomaticCommands: string | null;
|
|
8085
8333
|
OriginalMessageChanged?: boolean;
|
|
8334
|
+
RestoreContext___?: RestoreContextInput;
|
|
8086
8335
|
}
|
|
8087
8336
|
export declare class UpdateMJConversationDetailInput {
|
|
8088
8337
|
ID: string;
|
|
@@ -8111,6 +8360,7 @@ export declare class UpdateMJConversationDetailInput {
|
|
|
8111
8360
|
AutomaticCommands?: string | null;
|
|
8112
8361
|
OriginalMessageChanged?: boolean;
|
|
8113
8362
|
OldValues___?: KeyValuePairInput[];
|
|
8363
|
+
RestoreContext___?: RestoreContextInput;
|
|
8114
8364
|
}
|
|
8115
8365
|
export declare class RunMJConversationDetailViewResult {
|
|
8116
8366
|
Results: MJConversationDetail_[];
|
|
@@ -8186,6 +8436,7 @@ export declare class CreateMJConversationInput {
|
|
|
8186
8436
|
ProjectID: string | null;
|
|
8187
8437
|
IsPinned?: boolean;
|
|
8188
8438
|
TestRunID: string | null;
|
|
8439
|
+
RestoreContext___?: RestoreContextInput;
|
|
8189
8440
|
}
|
|
8190
8441
|
export declare class UpdateMJConversationInput {
|
|
8191
8442
|
ID: string;
|
|
@@ -8204,6 +8455,7 @@ export declare class UpdateMJConversationInput {
|
|
|
8204
8455
|
IsPinned?: boolean;
|
|
8205
8456
|
TestRunID?: string | null;
|
|
8206
8457
|
OldValues___?: KeyValuePairInput[];
|
|
8458
|
+
RestoreContext___?: RestoreContextInput;
|
|
8207
8459
|
}
|
|
8208
8460
|
export declare class RunMJConversationViewResult {
|
|
8209
8461
|
Results: MJConversation_[];
|
|
@@ -8254,6 +8506,7 @@ export declare class CreateMJCountryInput {
|
|
|
8254
8506
|
Longitude: number | null;
|
|
8255
8507
|
BoundaryGeoJSON: string | null;
|
|
8256
8508
|
CommonAliases: string | null;
|
|
8509
|
+
RestoreContext___?: RestoreContextInput;
|
|
8257
8510
|
}
|
|
8258
8511
|
export declare class UpdateMJCountryInput {
|
|
8259
8512
|
ID: string;
|
|
@@ -8266,6 +8519,7 @@ export declare class UpdateMJCountryInput {
|
|
|
8266
8519
|
BoundaryGeoJSON?: string | null;
|
|
8267
8520
|
CommonAliases?: string | null;
|
|
8268
8521
|
OldValues___?: KeyValuePairInput[];
|
|
8522
|
+
RestoreContext___?: RestoreContextInput;
|
|
8269
8523
|
}
|
|
8270
8524
|
export declare class RunMJCountryViewResult {
|
|
8271
8525
|
Results: MJCountry_[];
|
|
@@ -8306,6 +8560,7 @@ export declare class CreateMJCredentialCategoryInput {
|
|
|
8306
8560
|
Description: string | null;
|
|
8307
8561
|
ParentID: string | null;
|
|
8308
8562
|
IconClass: string | null;
|
|
8563
|
+
RestoreContext___?: RestoreContextInput;
|
|
8309
8564
|
}
|
|
8310
8565
|
export declare class UpdateMJCredentialCategoryInput {
|
|
8311
8566
|
ID: string;
|
|
@@ -8314,6 +8569,7 @@ export declare class UpdateMJCredentialCategoryInput {
|
|
|
8314
8569
|
ParentID?: string | null;
|
|
8315
8570
|
IconClass?: string | null;
|
|
8316
8571
|
OldValues___?: KeyValuePairInput[];
|
|
8572
|
+
RestoreContext___?: RestoreContextInput;
|
|
8317
8573
|
}
|
|
8318
8574
|
export declare class RunMJCredentialCategoryViewResult {
|
|
8319
8575
|
Results: MJCredentialCategory_[];
|
|
@@ -8358,6 +8614,7 @@ export declare class CreateMJCredentialTypeInput {
|
|
|
8358
8614
|
FieldSchema?: string;
|
|
8359
8615
|
IconClass: string | null;
|
|
8360
8616
|
ValidationEndpoint: string | null;
|
|
8617
|
+
RestoreContext___?: RestoreContextInput;
|
|
8361
8618
|
}
|
|
8362
8619
|
export declare class UpdateMJCredentialTypeInput {
|
|
8363
8620
|
ID: string;
|
|
@@ -8368,6 +8625,7 @@ export declare class UpdateMJCredentialTypeInput {
|
|
|
8368
8625
|
IconClass?: string | null;
|
|
8369
8626
|
ValidationEndpoint?: string | null;
|
|
8370
8627
|
OldValues___?: KeyValuePairInput[];
|
|
8628
|
+
RestoreContext___?: RestoreContextInput;
|
|
8371
8629
|
}
|
|
8372
8630
|
export declare class RunMJCredentialTypeViewResult {
|
|
8373
8631
|
Results: MJCredentialType_[];
|
|
@@ -8429,6 +8687,7 @@ export declare class CreateMJCredentialInput {
|
|
|
8429
8687
|
LastValidatedAt: Date | null;
|
|
8430
8688
|
LastUsedAt: Date | null;
|
|
8431
8689
|
IconClass: string | null;
|
|
8690
|
+
RestoreContext___?: RestoreContextInput;
|
|
8432
8691
|
}
|
|
8433
8692
|
export declare class UpdateMJCredentialInput {
|
|
8434
8693
|
ID: string;
|
|
@@ -8444,6 +8703,7 @@ export declare class UpdateMJCredentialInput {
|
|
|
8444
8703
|
LastUsedAt?: Date | null;
|
|
8445
8704
|
IconClass?: string | null;
|
|
8446
8705
|
OldValues___?: KeyValuePairInput[];
|
|
8706
|
+
RestoreContext___?: RestoreContextInput;
|
|
8447
8707
|
}
|
|
8448
8708
|
export declare class RunMJCredentialViewResult {
|
|
8449
8709
|
Results: MJCredential_[];
|
|
@@ -8492,6 +8752,7 @@ export declare class CreateMJDashboardCategoryInput {
|
|
|
8492
8752
|
Description: string | null;
|
|
8493
8753
|
ParentID: string | null;
|
|
8494
8754
|
UserID?: string;
|
|
8755
|
+
RestoreContext___?: RestoreContextInput;
|
|
8495
8756
|
}
|
|
8496
8757
|
export declare class UpdateMJDashboardCategoryInput {
|
|
8497
8758
|
ID: string;
|
|
@@ -8500,6 +8761,7 @@ export declare class UpdateMJDashboardCategoryInput {
|
|
|
8500
8761
|
ParentID?: string | null;
|
|
8501
8762
|
UserID?: string;
|
|
8502
8763
|
OldValues___?: KeyValuePairInput[];
|
|
8764
|
+
RestoreContext___?: RestoreContextInput;
|
|
8503
8765
|
}
|
|
8504
8766
|
export declare class RunMJDashboardCategoryViewResult {
|
|
8505
8767
|
Results: MJDashboardCategory_[];
|
|
@@ -8543,6 +8805,7 @@ export declare class CreateMJDashboardCategoryLinkInput {
|
|
|
8543
8805
|
DashboardCategoryID: string | null;
|
|
8544
8806
|
DisplayName: string | null;
|
|
8545
8807
|
Sequence?: number;
|
|
8808
|
+
RestoreContext___?: RestoreContextInput;
|
|
8546
8809
|
}
|
|
8547
8810
|
export declare class UpdateMJDashboardCategoryLinkInput {
|
|
8548
8811
|
ID: string;
|
|
@@ -8552,6 +8815,7 @@ export declare class UpdateMJDashboardCategoryLinkInput {
|
|
|
8552
8815
|
DisplayName?: string | null;
|
|
8553
8816
|
Sequence?: number;
|
|
8554
8817
|
OldValues___?: KeyValuePairInput[];
|
|
8818
|
+
RestoreContext___?: RestoreContextInput;
|
|
8555
8819
|
}
|
|
8556
8820
|
export declare class RunMJDashboardCategoryLinkViewResult {
|
|
8557
8821
|
Results: MJDashboardCategoryLink_[];
|
|
@@ -8595,6 +8859,7 @@ export declare class CreateMJDashboardCategoryPermissionInput {
|
|
|
8595
8859
|
CanAddRemove?: boolean;
|
|
8596
8860
|
CanShare?: boolean;
|
|
8597
8861
|
SharedByUserID: string | null;
|
|
8862
|
+
RestoreContext___?: RestoreContextInput;
|
|
8598
8863
|
}
|
|
8599
8864
|
export declare class UpdateMJDashboardCategoryPermissionInput {
|
|
8600
8865
|
ID: string;
|
|
@@ -8606,6 +8871,7 @@ export declare class UpdateMJDashboardCategoryPermissionInput {
|
|
|
8606
8871
|
CanShare?: boolean;
|
|
8607
8872
|
SharedByUserID?: string | null;
|
|
8608
8873
|
OldValues___?: KeyValuePairInput[];
|
|
8874
|
+
RestoreContext___?: RestoreContextInput;
|
|
8609
8875
|
}
|
|
8610
8876
|
export declare class RunMJDashboardCategoryPermissionViewResult {
|
|
8611
8877
|
Results: MJDashboardCategoryPermission_[];
|
|
@@ -8648,6 +8914,7 @@ export declare class CreateMJDashboardPartTypeInput {
|
|
|
8648
8914
|
DefaultConfig: string | null;
|
|
8649
8915
|
SortOrder?: number;
|
|
8650
8916
|
IsActive?: boolean;
|
|
8917
|
+
RestoreContext___?: RestoreContextInput;
|
|
8651
8918
|
}
|
|
8652
8919
|
export declare class UpdateMJDashboardPartTypeInput {
|
|
8653
8920
|
ID: string;
|
|
@@ -8660,6 +8927,7 @@ export declare class UpdateMJDashboardPartTypeInput {
|
|
|
8660
8927
|
SortOrder?: number;
|
|
8661
8928
|
IsActive?: boolean;
|
|
8662
8929
|
OldValues___?: KeyValuePairInput[];
|
|
8930
|
+
RestoreContext___?: RestoreContextInput;
|
|
8663
8931
|
}
|
|
8664
8932
|
export declare class RunMJDashboardPartTypeViewResult {
|
|
8665
8933
|
Results: MJDashboardPartType_[];
|
|
@@ -8703,6 +8971,7 @@ export declare class CreateMJDashboardPermissionInput {
|
|
|
8703
8971
|
CanDelete?: boolean;
|
|
8704
8972
|
CanShare?: boolean;
|
|
8705
8973
|
SharedByUserID: string | null;
|
|
8974
|
+
RestoreContext___?: RestoreContextInput;
|
|
8706
8975
|
}
|
|
8707
8976
|
export declare class UpdateMJDashboardPermissionInput {
|
|
8708
8977
|
ID: string;
|
|
@@ -8714,6 +8983,7 @@ export declare class UpdateMJDashboardPermissionInput {
|
|
|
8714
8983
|
CanShare?: boolean;
|
|
8715
8984
|
SharedByUserID?: string | null;
|
|
8716
8985
|
OldValues___?: KeyValuePairInput[];
|
|
8986
|
+
RestoreContext___?: RestoreContextInput;
|
|
8717
8987
|
}
|
|
8718
8988
|
export declare class RunMJDashboardPermissionViewResult {
|
|
8719
8989
|
Results: MJDashboardPermission_[];
|
|
@@ -8753,6 +9023,7 @@ export declare class CreateMJDashboardUserPreferenceInput {
|
|
|
8753
9023
|
Scope?: string;
|
|
8754
9024
|
ApplicationID: string | null;
|
|
8755
9025
|
DisplayOrder?: number;
|
|
9026
|
+
RestoreContext___?: RestoreContextInput;
|
|
8756
9027
|
}
|
|
8757
9028
|
export declare class UpdateMJDashboardUserPreferenceInput {
|
|
8758
9029
|
ID: string;
|
|
@@ -8762,6 +9033,7 @@ export declare class UpdateMJDashboardUserPreferenceInput {
|
|
|
8762
9033
|
ApplicationID?: string | null;
|
|
8763
9034
|
DisplayOrder?: number;
|
|
8764
9035
|
OldValues___?: KeyValuePairInput[];
|
|
9036
|
+
RestoreContext___?: RestoreContextInput;
|
|
8765
9037
|
}
|
|
8766
9038
|
export declare class RunMJDashboardUserPreferenceViewResult {
|
|
8767
9039
|
Results: MJDashboardUserPreference_[];
|
|
@@ -8796,6 +9068,7 @@ export declare class CreateMJDashboardUserStateInput {
|
|
|
8796
9068
|
DashboardID?: string;
|
|
8797
9069
|
UserID?: string;
|
|
8798
9070
|
UserState: string | null;
|
|
9071
|
+
RestoreContext___?: RestoreContextInput;
|
|
8799
9072
|
}
|
|
8800
9073
|
export declare class UpdateMJDashboardUserStateInput {
|
|
8801
9074
|
ID: string;
|
|
@@ -8803,6 +9076,7 @@ export declare class UpdateMJDashboardUserStateInput {
|
|
|
8803
9076
|
UserID?: string;
|
|
8804
9077
|
UserState?: string | null;
|
|
8805
9078
|
OldValues___?: KeyValuePairInput[];
|
|
9079
|
+
RestoreContext___?: RestoreContextInput;
|
|
8806
9080
|
}
|
|
8807
9081
|
export declare class RunMJDashboardUserStateViewResult {
|
|
8808
9082
|
Results: MJDashboardUserState_[];
|
|
@@ -8861,6 +9135,7 @@ export declare class CreateMJDashboardInput {
|
|
|
8861
9135
|
DriverClass: string | null;
|
|
8862
9136
|
Code: string | null;
|
|
8863
9137
|
EnvironmentID?: string;
|
|
9138
|
+
RestoreContext___?: RestoreContextInput;
|
|
8864
9139
|
}
|
|
8865
9140
|
export declare class UpdateMJDashboardInput {
|
|
8866
9141
|
ID: string;
|
|
@@ -8877,6 +9152,7 @@ export declare class UpdateMJDashboardInput {
|
|
|
8877
9152
|
Code?: string | null;
|
|
8878
9153
|
EnvironmentID?: string;
|
|
8879
9154
|
OldValues___?: KeyValuePairInput[];
|
|
9155
|
+
RestoreContext___?: RestoreContextInput;
|
|
8880
9156
|
}
|
|
8881
9157
|
export declare class RunMJDashboardViewResult {
|
|
8882
9158
|
Results: MJDashboard_[];
|
|
@@ -8933,6 +9209,7 @@ export declare class CreateMJDataContextItemInput {
|
|
|
8933
9209
|
LastRefreshedAt: Date | null;
|
|
8934
9210
|
Description: string | null;
|
|
8935
9211
|
CodeName: string | null;
|
|
9212
|
+
RestoreContext___?: RestoreContextInput;
|
|
8936
9213
|
}
|
|
8937
9214
|
export declare class UpdateMJDataContextItemInput {
|
|
8938
9215
|
ID: string;
|
|
@@ -8948,6 +9225,7 @@ export declare class UpdateMJDataContextItemInput {
|
|
|
8948
9225
|
Description?: string | null;
|
|
8949
9226
|
CodeName?: string | null;
|
|
8950
9227
|
OldValues___?: KeyValuePairInput[];
|
|
9228
|
+
RestoreContext___?: RestoreContextInput;
|
|
8951
9229
|
}
|
|
8952
9230
|
export declare class RunMJDataContextItemViewResult {
|
|
8953
9231
|
Results: MJDataContextItem_[];
|
|
@@ -8986,6 +9264,7 @@ export declare class CreateMJDataContextInput {
|
|
|
8986
9264
|
Description: string | null;
|
|
8987
9265
|
UserID?: string;
|
|
8988
9266
|
LastRefreshedAt: Date | null;
|
|
9267
|
+
RestoreContext___?: RestoreContextInput;
|
|
8989
9268
|
}
|
|
8990
9269
|
export declare class UpdateMJDataContextInput {
|
|
8991
9270
|
ID: string;
|
|
@@ -8994,6 +9273,7 @@ export declare class UpdateMJDataContextInput {
|
|
|
8994
9273
|
UserID?: string;
|
|
8995
9274
|
LastRefreshedAt?: Date | null;
|
|
8996
9275
|
OldValues___?: KeyValuePairInput[];
|
|
9276
|
+
RestoreContext___?: RestoreContextInput;
|
|
8997
9277
|
}
|
|
8998
9278
|
export declare class RunMJDataContextViewResult {
|
|
8999
9279
|
Results: MJDataContext_[];
|
|
@@ -9041,6 +9321,7 @@ export declare class CreateMJDatasetItemInput {
|
|
|
9041
9321
|
DateFieldToCheck?: string;
|
|
9042
9322
|
Description: string | null;
|
|
9043
9323
|
Columns: string | null;
|
|
9324
|
+
RestoreContext___?: RestoreContextInput;
|
|
9044
9325
|
}
|
|
9045
9326
|
export declare class UpdateMJDatasetItemInput {
|
|
9046
9327
|
ID: string;
|
|
@@ -9053,6 +9334,7 @@ export declare class UpdateMJDatasetItemInput {
|
|
|
9053
9334
|
Description?: string | null;
|
|
9054
9335
|
Columns?: string | null;
|
|
9055
9336
|
OldValues___?: KeyValuePairInput[];
|
|
9337
|
+
RestoreContext___?: RestoreContextInput;
|
|
9056
9338
|
}
|
|
9057
9339
|
export declare class RunMJDatasetItemViewResult {
|
|
9058
9340
|
Results: MJDatasetItem_[];
|
|
@@ -9084,12 +9366,14 @@ export declare class CreateMJDatasetInput {
|
|
|
9084
9366
|
ID?: string;
|
|
9085
9367
|
Name?: string;
|
|
9086
9368
|
Description: string | null;
|
|
9369
|
+
RestoreContext___?: RestoreContextInput;
|
|
9087
9370
|
}
|
|
9088
9371
|
export declare class UpdateMJDatasetInput {
|
|
9089
9372
|
ID: string;
|
|
9090
9373
|
Name?: string;
|
|
9091
9374
|
Description?: string | null;
|
|
9092
9375
|
OldValues___?: KeyValuePairInput[];
|
|
9376
|
+
RestoreContext___?: RestoreContextInput;
|
|
9093
9377
|
}
|
|
9094
9378
|
export declare class RunMJDatasetViewResult {
|
|
9095
9379
|
Results: MJDataset_[];
|
|
@@ -9141,6 +9425,7 @@ export declare class CreateMJDuplicateRunDetailMatchInput {
|
|
|
9141
9425
|
MergeStatus?: string;
|
|
9142
9426
|
MergedAt?: Date;
|
|
9143
9427
|
RecordMetadata: string | null;
|
|
9428
|
+
RestoreContext___?: RestoreContextInput;
|
|
9144
9429
|
}
|
|
9145
9430
|
export declare class UpdateMJDuplicateRunDetailMatchInput {
|
|
9146
9431
|
ID: string;
|
|
@@ -9156,6 +9441,7 @@ export declare class UpdateMJDuplicateRunDetailMatchInput {
|
|
|
9156
9441
|
MergedAt?: Date;
|
|
9157
9442
|
RecordMetadata?: string | null;
|
|
9158
9443
|
OldValues___?: KeyValuePairInput[];
|
|
9444
|
+
RestoreContext___?: RestoreContextInput;
|
|
9159
9445
|
}
|
|
9160
9446
|
export declare class RunMJDuplicateRunDetailMatchViewResult {
|
|
9161
9447
|
Results: MJDuplicateRunDetailMatch_[];
|
|
@@ -9204,6 +9490,7 @@ export declare class CreateMJDuplicateRunDetailInput {
|
|
|
9204
9490
|
RecordMetadata: string | null;
|
|
9205
9491
|
StartedAt: Date | null;
|
|
9206
9492
|
EndedAt: Date | null;
|
|
9493
|
+
RestoreContext___?: RestoreContextInput;
|
|
9207
9494
|
}
|
|
9208
9495
|
export declare class UpdateMJDuplicateRunDetailInput {
|
|
9209
9496
|
ID: string;
|
|
@@ -9218,6 +9505,7 @@ export declare class UpdateMJDuplicateRunDetailInput {
|
|
|
9218
9505
|
StartedAt?: Date | null;
|
|
9219
9506
|
EndedAt?: Date | null;
|
|
9220
9507
|
OldValues___?: KeyValuePairInput[];
|
|
9508
|
+
RestoreContext___?: RestoreContextInput;
|
|
9221
9509
|
}
|
|
9222
9510
|
export declare class RunMJDuplicateRunDetailViewResult {
|
|
9223
9511
|
Results: MJDuplicateRunDetail_[];
|
|
@@ -9280,6 +9568,7 @@ export declare class CreateMJDuplicateRunInput {
|
|
|
9280
9568
|
LastProcessedOffset?: number | null;
|
|
9281
9569
|
BatchSize?: number | null;
|
|
9282
9570
|
CancellationRequested?: boolean;
|
|
9571
|
+
RestoreContext___?: RestoreContextInput;
|
|
9283
9572
|
}
|
|
9284
9573
|
export declare class UpdateMJDuplicateRunInput {
|
|
9285
9574
|
ID: string;
|
|
@@ -9299,6 +9588,7 @@ export declare class UpdateMJDuplicateRunInput {
|
|
|
9299
9588
|
BatchSize?: number | null;
|
|
9300
9589
|
CancellationRequested?: boolean;
|
|
9301
9590
|
OldValues___?: KeyValuePairInput[];
|
|
9591
|
+
RestoreContext___?: RestoreContextInput;
|
|
9302
9592
|
}
|
|
9303
9593
|
export declare class RunMJDuplicateRunViewResult {
|
|
9304
9594
|
Results: MJDuplicateRun_[];
|
|
@@ -9336,6 +9626,7 @@ export declare class CreateMJEmployeeCompanyIntegrationInput {
|
|
|
9336
9626
|
CompanyIntegrationID?: string;
|
|
9337
9627
|
ExternalSystemRecordID?: string;
|
|
9338
9628
|
IsActive?: boolean;
|
|
9629
|
+
RestoreContext___?: RestoreContextInput;
|
|
9339
9630
|
}
|
|
9340
9631
|
export declare class UpdateMJEmployeeCompanyIntegrationInput {
|
|
9341
9632
|
ID: string;
|
|
@@ -9344,6 +9635,7 @@ export declare class UpdateMJEmployeeCompanyIntegrationInput {
|
|
|
9344
9635
|
ExternalSystemRecordID?: string;
|
|
9345
9636
|
IsActive?: boolean;
|
|
9346
9637
|
OldValues___?: KeyValuePairInput[];
|
|
9638
|
+
RestoreContext___?: RestoreContextInput;
|
|
9347
9639
|
}
|
|
9348
9640
|
export declare class RunMJEmployeeCompanyIntegrationViewResult {
|
|
9349
9641
|
Results: MJEmployeeCompanyIntegration_[];
|
|
@@ -9376,12 +9668,14 @@ export declare class CreateMJEmployeeRoleInput {
|
|
|
9376
9668
|
ID?: string;
|
|
9377
9669
|
EmployeeID?: string;
|
|
9378
9670
|
RoleID?: string;
|
|
9671
|
+
RestoreContext___?: RestoreContextInput;
|
|
9379
9672
|
}
|
|
9380
9673
|
export declare class UpdateMJEmployeeRoleInput {
|
|
9381
9674
|
ID: string;
|
|
9382
9675
|
EmployeeID?: string;
|
|
9383
9676
|
RoleID?: string;
|
|
9384
9677
|
OldValues___?: KeyValuePairInput[];
|
|
9678
|
+
RestoreContext___?: RestoreContextInput;
|
|
9385
9679
|
}
|
|
9386
9680
|
export declare class RunMJEmployeeRoleViewResult {
|
|
9387
9681
|
Results: MJEmployeeRole_[];
|
|
@@ -9414,12 +9708,14 @@ export declare class CreateMJEmployeeSkillInput {
|
|
|
9414
9708
|
ID?: string;
|
|
9415
9709
|
EmployeeID?: string;
|
|
9416
9710
|
SkillID?: string;
|
|
9711
|
+
RestoreContext___?: RestoreContextInput;
|
|
9417
9712
|
}
|
|
9418
9713
|
export declare class UpdateMJEmployeeSkillInput {
|
|
9419
9714
|
ID: string;
|
|
9420
9715
|
EmployeeID?: string;
|
|
9421
9716
|
SkillID?: string;
|
|
9422
9717
|
OldValues___?: KeyValuePairInput[];
|
|
9718
|
+
RestoreContext___?: RestoreContextInput;
|
|
9423
9719
|
}
|
|
9424
9720
|
export declare class RunMJEmployeeSkillViewResult {
|
|
9425
9721
|
Results: MJEmployeeSkill_[];
|
|
@@ -9473,6 +9769,7 @@ export declare class CreateMJEmployeeInput {
|
|
|
9473
9769
|
Email?: string;
|
|
9474
9770
|
Phone: string | null;
|
|
9475
9771
|
Active?: boolean;
|
|
9772
|
+
RestoreContext___?: RestoreContextInput;
|
|
9476
9773
|
}
|
|
9477
9774
|
export declare class UpdateMJEmployeeInput {
|
|
9478
9775
|
ID: string;
|
|
@@ -9485,6 +9782,7 @@ export declare class UpdateMJEmployeeInput {
|
|
|
9485
9782
|
Phone?: string | null;
|
|
9486
9783
|
Active?: boolean;
|
|
9487
9784
|
OldValues___?: KeyValuePairInput[];
|
|
9785
|
+
RestoreContext___?: RestoreContextInput;
|
|
9488
9786
|
}
|
|
9489
9787
|
export declare class RunMJEmployeeViewResult {
|
|
9490
9788
|
Results: MJEmployee_[];
|
|
@@ -9532,6 +9830,7 @@ export declare class CreateMJEncryptionAlgorithmInput {
|
|
|
9532
9830
|
IVLengthBytes?: number;
|
|
9533
9831
|
IsAEAD?: boolean;
|
|
9534
9832
|
IsActive?: boolean;
|
|
9833
|
+
RestoreContext___?: RestoreContextInput;
|
|
9535
9834
|
}
|
|
9536
9835
|
export declare class UpdateMJEncryptionAlgorithmInput {
|
|
9537
9836
|
ID: string;
|
|
@@ -9543,6 +9842,7 @@ export declare class UpdateMJEncryptionAlgorithmInput {
|
|
|
9543
9842
|
IsAEAD?: boolean;
|
|
9544
9843
|
IsActive?: boolean;
|
|
9545
9844
|
OldValues___?: KeyValuePairInput[];
|
|
9845
|
+
RestoreContext___?: RestoreContextInput;
|
|
9546
9846
|
}
|
|
9547
9847
|
export declare class RunMJEncryptionAlgorithmViewResult {
|
|
9548
9848
|
Results: MJEncryptionAlgorithm_[];
|
|
@@ -9585,6 +9885,7 @@ export declare class CreateMJEncryptionKeySourceInput {
|
|
|
9585
9885
|
ConfigTemplate: string | null;
|
|
9586
9886
|
IsActive?: boolean;
|
|
9587
9887
|
Status?: string;
|
|
9888
|
+
RestoreContext___?: RestoreContextInput;
|
|
9588
9889
|
}
|
|
9589
9890
|
export declare class UpdateMJEncryptionKeySourceInput {
|
|
9590
9891
|
ID: string;
|
|
@@ -9596,6 +9897,7 @@ export declare class UpdateMJEncryptionKeySourceInput {
|
|
|
9596
9897
|
IsActive?: boolean;
|
|
9597
9898
|
Status?: string;
|
|
9598
9899
|
OldValues___?: KeyValuePairInput[];
|
|
9900
|
+
RestoreContext___?: RestoreContextInput;
|
|
9599
9901
|
}
|
|
9600
9902
|
export declare class RunMJEncryptionKeySourceViewResult {
|
|
9601
9903
|
Results: MJEncryptionKeySource_[];
|
|
@@ -9648,6 +9950,7 @@ export declare class CreateMJEncryptionKeyInput {
|
|
|
9648
9950
|
Status?: string;
|
|
9649
9951
|
ActivatedAt: Date | null;
|
|
9650
9952
|
ExpiresAt: Date | null;
|
|
9953
|
+
RestoreContext___?: RestoreContextInput;
|
|
9651
9954
|
}
|
|
9652
9955
|
export declare class UpdateMJEncryptionKeyInput {
|
|
9653
9956
|
ID: string;
|
|
@@ -9663,6 +9966,7 @@ export declare class UpdateMJEncryptionKeyInput {
|
|
|
9663
9966
|
ActivatedAt?: Date | null;
|
|
9664
9967
|
ExpiresAt?: Date | null;
|
|
9665
9968
|
OldValues___?: KeyValuePairInput[];
|
|
9969
|
+
RestoreContext___?: RestoreContextInput;
|
|
9666
9970
|
}
|
|
9667
9971
|
export declare class RunMJEncryptionKeyViewResult {
|
|
9668
9972
|
Results: MJEncryptionKey_[];
|
|
@@ -9873,6 +10177,7 @@ export declare class CreateMJEntityInput {
|
|
|
9873
10177
|
AutoUpdateSupportsGeoCoding?: boolean;
|
|
9874
10178
|
AllowCaching?: boolean;
|
|
9875
10179
|
DetectExternalChanges?: boolean;
|
|
10180
|
+
RestoreContext___?: RestoreContextInput;
|
|
9876
10181
|
}
|
|
9877
10182
|
export declare class UpdateMJEntityInput {
|
|
9878
10183
|
ID: string;
|
|
@@ -9937,6 +10242,7 @@ export declare class UpdateMJEntityInput {
|
|
|
9937
10242
|
AllowCaching?: boolean;
|
|
9938
10243
|
DetectExternalChanges?: boolean;
|
|
9939
10244
|
OldValues___?: KeyValuePairInput[];
|
|
10245
|
+
RestoreContext___?: RestoreContextInput;
|
|
9940
10246
|
}
|
|
9941
10247
|
export declare class RunMJEntityViewResult {
|
|
9942
10248
|
Results: MJEntity_[];
|
|
@@ -10029,6 +10335,7 @@ export declare class CreateMJEntityActionFilterInput {
|
|
|
10029
10335
|
ActionFilterID?: string;
|
|
10030
10336
|
Sequence?: number;
|
|
10031
10337
|
Status?: string;
|
|
10338
|
+
RestoreContext___?: RestoreContextInput;
|
|
10032
10339
|
}
|
|
10033
10340
|
export declare class UpdateMJEntityActionFilterInput {
|
|
10034
10341
|
ID: string;
|
|
@@ -10037,6 +10344,7 @@ export declare class UpdateMJEntityActionFilterInput {
|
|
|
10037
10344
|
Sequence?: number;
|
|
10038
10345
|
Status?: string;
|
|
10039
10346
|
OldValues___?: KeyValuePairInput[];
|
|
10347
|
+
RestoreContext___?: RestoreContextInput;
|
|
10040
10348
|
}
|
|
10041
10349
|
export declare class RunMJEntityActionFilterViewResult {
|
|
10042
10350
|
Results: MJEntityActionFilter_[];
|
|
@@ -10070,6 +10378,7 @@ export declare class CreateMJEntityActionInvocationTypeInput {
|
|
|
10070
10378
|
Name?: string;
|
|
10071
10379
|
Description: string | null;
|
|
10072
10380
|
DisplaySequence?: number;
|
|
10381
|
+
RestoreContext___?: RestoreContextInput;
|
|
10073
10382
|
}
|
|
10074
10383
|
export declare class UpdateMJEntityActionInvocationTypeInput {
|
|
10075
10384
|
ID: string;
|
|
@@ -10077,6 +10386,7 @@ export declare class UpdateMJEntityActionInvocationTypeInput {
|
|
|
10077
10386
|
Description?: string | null;
|
|
10078
10387
|
DisplaySequence?: number;
|
|
10079
10388
|
OldValues___?: KeyValuePairInput[];
|
|
10389
|
+
RestoreContext___?: RestoreContextInput;
|
|
10080
10390
|
}
|
|
10081
10391
|
export declare class RunMJEntityActionInvocationTypeViewResult {
|
|
10082
10392
|
Results: MJEntityActionInvocationType_[];
|
|
@@ -10112,6 +10422,7 @@ export declare class CreateMJEntityActionInvocationInput {
|
|
|
10112
10422
|
EntityActionID?: string;
|
|
10113
10423
|
InvocationTypeID?: string;
|
|
10114
10424
|
Status?: string;
|
|
10425
|
+
RestoreContext___?: RestoreContextInput;
|
|
10115
10426
|
}
|
|
10116
10427
|
export declare class UpdateMJEntityActionInvocationInput {
|
|
10117
10428
|
ID: string;
|
|
@@ -10119,6 +10430,7 @@ export declare class UpdateMJEntityActionInvocationInput {
|
|
|
10119
10430
|
InvocationTypeID?: string;
|
|
10120
10431
|
Status?: string;
|
|
10121
10432
|
OldValues___?: KeyValuePairInput[];
|
|
10433
|
+
RestoreContext___?: RestoreContextInput;
|
|
10122
10434
|
}
|
|
10123
10435
|
export declare class RunMJEntityActionInvocationViewResult {
|
|
10124
10436
|
Results: MJEntityActionInvocation_[];
|
|
@@ -10157,6 +10469,7 @@ export declare class CreateMJEntityActionParamInput {
|
|
|
10157
10469
|
ValueType?: string;
|
|
10158
10470
|
Value: string | null;
|
|
10159
10471
|
Comments: string | null;
|
|
10472
|
+
RestoreContext___?: RestoreContextInput;
|
|
10160
10473
|
}
|
|
10161
10474
|
export declare class UpdateMJEntityActionParamInput {
|
|
10162
10475
|
ID: string;
|
|
@@ -10166,6 +10479,7 @@ export declare class UpdateMJEntityActionParamInput {
|
|
|
10166
10479
|
Value?: string | null;
|
|
10167
10480
|
Comments?: string | null;
|
|
10168
10481
|
OldValues___?: KeyValuePairInput[];
|
|
10482
|
+
RestoreContext___?: RestoreContextInput;
|
|
10169
10483
|
}
|
|
10170
10484
|
export declare class RunMJEntityActionParamViewResult {
|
|
10171
10485
|
Results: MJEntityActionParam_[];
|
|
@@ -10203,6 +10517,7 @@ export declare class CreateMJEntityActionInput {
|
|
|
10203
10517
|
ActionID?: string;
|
|
10204
10518
|
Status?: string;
|
|
10205
10519
|
ID?: string;
|
|
10520
|
+
RestoreContext___?: RestoreContextInput;
|
|
10206
10521
|
}
|
|
10207
10522
|
export declare class UpdateMJEntityActionInput {
|
|
10208
10523
|
EntityID?: string;
|
|
@@ -10210,6 +10525,7 @@ export declare class UpdateMJEntityActionInput {
|
|
|
10210
10525
|
Status?: string;
|
|
10211
10526
|
ID: string;
|
|
10212
10527
|
OldValues___?: KeyValuePairInput[];
|
|
10528
|
+
RestoreContext___?: RestoreContextInput;
|
|
10213
10529
|
}
|
|
10214
10530
|
export declare class RunMJEntityActionViewResult {
|
|
10215
10531
|
Results: MJEntityAction_[];
|
|
@@ -10267,6 +10583,7 @@ export declare class CreateMJEntityAIActionInput {
|
|
|
10267
10583
|
SkipIfOutputFieldNotEmpty?: boolean;
|
|
10268
10584
|
OutputEntityID: string | null;
|
|
10269
10585
|
Comments: string | null;
|
|
10586
|
+
RestoreContext___?: RestoreContextInput;
|
|
10270
10587
|
}
|
|
10271
10588
|
export declare class UpdateMJEntityAIActionInput {
|
|
10272
10589
|
ID: string;
|
|
@@ -10283,6 +10600,7 @@ export declare class UpdateMJEntityAIActionInput {
|
|
|
10283
10600
|
OutputEntityID?: string | null;
|
|
10284
10601
|
Comments?: string | null;
|
|
10285
10602
|
OldValues___?: KeyValuePairInput[];
|
|
10603
|
+
RestoreContext___?: RestoreContextInput;
|
|
10286
10604
|
}
|
|
10287
10605
|
export declare class RunMJEntityAIActionViewResult {
|
|
10288
10606
|
Results: MJEntityAIAction_[];
|
|
@@ -10317,6 +10635,7 @@ export declare class CreateMJEntityCommunicationFieldInput {
|
|
|
10317
10635
|
EntityCommunicationMessageTypeID?: string;
|
|
10318
10636
|
FieldName?: string;
|
|
10319
10637
|
Priority?: number;
|
|
10638
|
+
RestoreContext___?: RestoreContextInput;
|
|
10320
10639
|
}
|
|
10321
10640
|
export declare class UpdateMJEntityCommunicationFieldInput {
|
|
10322
10641
|
ID: string;
|
|
@@ -10324,6 +10643,7 @@ export declare class UpdateMJEntityCommunicationFieldInput {
|
|
|
10324
10643
|
FieldName?: string;
|
|
10325
10644
|
Priority?: number;
|
|
10326
10645
|
OldValues___?: KeyValuePairInput[];
|
|
10646
|
+
RestoreContext___?: RestoreContextInput;
|
|
10327
10647
|
}
|
|
10328
10648
|
export declare class RunMJEntityCommunicationFieldViewResult {
|
|
10329
10649
|
Results: MJEntityCommunicationField_[];
|
|
@@ -10359,6 +10679,7 @@ export declare class CreateMJEntityCommunicationMessageTypeInput {
|
|
|
10359
10679
|
EntityID?: string;
|
|
10360
10680
|
BaseMessageTypeID?: string;
|
|
10361
10681
|
IsActive?: boolean;
|
|
10682
|
+
RestoreContext___?: RestoreContextInput;
|
|
10362
10683
|
}
|
|
10363
10684
|
export declare class UpdateMJEntityCommunicationMessageTypeInput {
|
|
10364
10685
|
ID: string;
|
|
@@ -10366,6 +10687,7 @@ export declare class UpdateMJEntityCommunicationMessageTypeInput {
|
|
|
10366
10687
|
BaseMessageTypeID?: string;
|
|
10367
10688
|
IsActive?: boolean;
|
|
10368
10689
|
OldValues___?: KeyValuePairInput[];
|
|
10690
|
+
RestoreContext___?: RestoreContextInput;
|
|
10369
10691
|
}
|
|
10370
10692
|
export declare class RunMJEntityCommunicationMessageTypeViewResult {
|
|
10371
10693
|
Results: MJEntityCommunicationMessageType_[];
|
|
@@ -10402,6 +10724,7 @@ export declare class CreateMJEntityDocumentRunInput {
|
|
|
10402
10724
|
StartedAt: Date | null;
|
|
10403
10725
|
EndedAt: Date | null;
|
|
10404
10726
|
Status?: string;
|
|
10727
|
+
RestoreContext___?: RestoreContextInput;
|
|
10405
10728
|
}
|
|
10406
10729
|
export declare class UpdateMJEntityDocumentRunInput {
|
|
10407
10730
|
ID: string;
|
|
@@ -10410,6 +10733,7 @@ export declare class UpdateMJEntityDocumentRunInput {
|
|
|
10410
10733
|
EndedAt?: Date | null;
|
|
10411
10734
|
Status?: string;
|
|
10412
10735
|
OldValues___?: KeyValuePairInput[];
|
|
10736
|
+
RestoreContext___?: RestoreContextInput;
|
|
10413
10737
|
}
|
|
10414
10738
|
export declare class RunMJEntityDocumentRunViewResult {
|
|
10415
10739
|
Results: MJEntityDocumentRun_[];
|
|
@@ -10445,6 +10769,7 @@ export declare class CreateMJEntityDocumentSettingInput {
|
|
|
10445
10769
|
Name?: string;
|
|
10446
10770
|
Value?: string;
|
|
10447
10771
|
Comments: string | null;
|
|
10772
|
+
RestoreContext___?: RestoreContextInput;
|
|
10448
10773
|
}
|
|
10449
10774
|
export declare class UpdateMJEntityDocumentSettingInput {
|
|
10450
10775
|
ID: string;
|
|
@@ -10453,6 +10778,7 @@ export declare class UpdateMJEntityDocumentSettingInput {
|
|
|
10453
10778
|
Value?: string;
|
|
10454
10779
|
Comments?: string | null;
|
|
10455
10780
|
OldValues___?: KeyValuePairInput[];
|
|
10781
|
+
RestoreContext___?: RestoreContextInput;
|
|
10456
10782
|
}
|
|
10457
10783
|
export declare class RunMJEntityDocumentSettingViewResult {
|
|
10458
10784
|
Results: MJEntityDocumentSetting_[];
|
|
@@ -10484,12 +10810,14 @@ export declare class CreateMJEntityDocumentTypeInput {
|
|
|
10484
10810
|
ID?: string;
|
|
10485
10811
|
Name?: string;
|
|
10486
10812
|
Description: string | null;
|
|
10813
|
+
RestoreContext___?: RestoreContextInput;
|
|
10487
10814
|
}
|
|
10488
10815
|
export declare class UpdateMJEntityDocumentTypeInput {
|
|
10489
10816
|
ID: string;
|
|
10490
10817
|
Name?: string;
|
|
10491
10818
|
Description?: string | null;
|
|
10492
10819
|
OldValues___?: KeyValuePairInput[];
|
|
10820
|
+
RestoreContext___?: RestoreContextInput;
|
|
10493
10821
|
}
|
|
10494
10822
|
export declare class RunMJEntityDocumentTypeViewResult {
|
|
10495
10823
|
Results: MJEntityDocumentType_[];
|
|
@@ -10549,6 +10877,7 @@ export declare class CreateMJEntityDocumentInput {
|
|
|
10549
10877
|
AbsoluteMatchThreshold?: number;
|
|
10550
10878
|
VectorIndexID: string | null;
|
|
10551
10879
|
Configuration: string | null;
|
|
10880
|
+
RestoreContext___?: RestoreContextInput;
|
|
10552
10881
|
}
|
|
10553
10882
|
export declare class UpdateMJEntityDocumentInput {
|
|
10554
10883
|
ID: string;
|
|
@@ -10564,6 +10893,7 @@ export declare class UpdateMJEntityDocumentInput {
|
|
|
10564
10893
|
VectorIndexID?: string | null;
|
|
10565
10894
|
Configuration?: string | null;
|
|
10566
10895
|
OldValues___?: KeyValuePairInput[];
|
|
10896
|
+
RestoreContext___?: RestoreContextInput;
|
|
10567
10897
|
}
|
|
10568
10898
|
export declare class RunMJEntityDocumentViewResult {
|
|
10569
10899
|
Results: MJEntityDocument_[];
|
|
@@ -10607,6 +10937,7 @@ export declare class CreateMJEntityFieldValueInput {
|
|
|
10607
10937
|
Value?: string;
|
|
10608
10938
|
Code: string | null;
|
|
10609
10939
|
Description: string | null;
|
|
10940
|
+
RestoreContext___?: RestoreContextInput;
|
|
10610
10941
|
}
|
|
10611
10942
|
export declare class UpdateMJEntityFieldValueInput {
|
|
10612
10943
|
ID: string;
|
|
@@ -10616,6 +10947,7 @@ export declare class UpdateMJEntityFieldValueInput {
|
|
|
10616
10947
|
Code?: string | null;
|
|
10617
10948
|
Description?: string | null;
|
|
10618
10949
|
OldValues___?: KeyValuePairInput[];
|
|
10950
|
+
RestoreContext___?: RestoreContextInput;
|
|
10619
10951
|
}
|
|
10620
10952
|
export declare class RunMJEntityFieldValueViewResult {
|
|
10621
10953
|
Results: MJEntityFieldValue_[];
|
|
@@ -10766,6 +11098,7 @@ export declare class CreateMJEntityFieldInput {
|
|
|
10766
11098
|
AutoUpdateUserSearchPredicate?: boolean;
|
|
10767
11099
|
AutoUpdateFullTextSearch?: boolean;
|
|
10768
11100
|
AutoUpdateExtendedType?: boolean;
|
|
11101
|
+
RestoreContext___?: RestoreContextInput;
|
|
10769
11102
|
}
|
|
10770
11103
|
export declare class UpdateMJEntityFieldInput {
|
|
10771
11104
|
ID: string;
|
|
@@ -10819,6 +11152,7 @@ export declare class UpdateMJEntityFieldInput {
|
|
|
10819
11152
|
AutoUpdateFullTextSearch?: boolean;
|
|
10820
11153
|
AutoUpdateExtendedType?: boolean;
|
|
10821
11154
|
OldValues___?: KeyValuePairInput[];
|
|
11155
|
+
RestoreContext___?: RestoreContextInput;
|
|
10822
11156
|
}
|
|
10823
11157
|
export declare class RunMJEntityFieldViewResult {
|
|
10824
11158
|
Results: MJEntityField_[];
|
|
@@ -10873,6 +11207,7 @@ export declare class CreateMJEntityOrganicKeyRelatedEntityInput {
|
|
|
10873
11207
|
DisplayComponentID: string | null;
|
|
10874
11208
|
DisplayComponentConfiguration: string | null;
|
|
10875
11209
|
Sequence?: number;
|
|
11210
|
+
RestoreContext___?: RestoreContextInput;
|
|
10876
11211
|
}
|
|
10877
11212
|
export declare class UpdateMJEntityOrganicKeyRelatedEntityInput {
|
|
10878
11213
|
ID: string;
|
|
@@ -10889,6 +11224,7 @@ export declare class UpdateMJEntityOrganicKeyRelatedEntityInput {
|
|
|
10889
11224
|
DisplayComponentConfiguration?: string | null;
|
|
10890
11225
|
Sequence?: number;
|
|
10891
11226
|
OldValues___?: KeyValuePairInput[];
|
|
11227
|
+
RestoreContext___?: RestoreContextInput;
|
|
10892
11228
|
}
|
|
10893
11229
|
export declare class RunMJEntityOrganicKeyRelatedEntityViewResult {
|
|
10894
11230
|
Results: MJEntityOrganicKeyRelatedEntity_[];
|
|
@@ -10935,6 +11271,7 @@ export declare class CreateMJEntityOrganicKeyInput {
|
|
|
10935
11271
|
AutoCreateRelatedViewOnForm?: boolean;
|
|
10936
11272
|
Sequence?: number;
|
|
10937
11273
|
Status?: string;
|
|
11274
|
+
RestoreContext___?: RestoreContextInput;
|
|
10938
11275
|
}
|
|
10939
11276
|
export declare class UpdateMJEntityOrganicKeyInput {
|
|
10940
11277
|
ID: string;
|
|
@@ -10948,6 +11285,7 @@ export declare class UpdateMJEntityOrganicKeyInput {
|
|
|
10948
11285
|
Sequence?: number;
|
|
10949
11286
|
Status?: string;
|
|
10950
11287
|
OldValues___?: KeyValuePairInput[];
|
|
11288
|
+
RestoreContext___?: RestoreContextInput;
|
|
10951
11289
|
}
|
|
10952
11290
|
export declare class RunMJEntityOrganicKeyViewResult {
|
|
10953
11291
|
Results: MJEntityOrganicKey_[];
|
|
@@ -11002,6 +11340,7 @@ export declare class CreateMJEntityPermissionInput {
|
|
|
11002
11340
|
CreateRLSFilterID: string | null;
|
|
11003
11341
|
UpdateRLSFilterID: string | null;
|
|
11004
11342
|
DeleteRLSFilterID: string | null;
|
|
11343
|
+
RestoreContext___?: RestoreContextInput;
|
|
11005
11344
|
}
|
|
11006
11345
|
export declare class UpdateMJEntityPermissionInput {
|
|
11007
11346
|
ID: string;
|
|
@@ -11016,6 +11355,7 @@ export declare class UpdateMJEntityPermissionInput {
|
|
|
11016
11355
|
UpdateRLSFilterID?: string | null;
|
|
11017
11356
|
DeleteRLSFilterID?: string | null;
|
|
11018
11357
|
OldValues___?: KeyValuePairInput[];
|
|
11358
|
+
RestoreContext___?: RestoreContextInput;
|
|
11019
11359
|
}
|
|
11020
11360
|
export declare class RunMJEntityPermissionViewResult {
|
|
11021
11361
|
Results: MJEntityPermission_[];
|
|
@@ -11063,6 +11403,7 @@ export declare class CreateMJEntityRecordDocumentInput {
|
|
|
11063
11403
|
VectorID: string | null;
|
|
11064
11404
|
VectorJSON: string | null;
|
|
11065
11405
|
EntityRecordUpdatedAt?: Date;
|
|
11406
|
+
RestoreContext___?: RestoreContextInput;
|
|
11066
11407
|
}
|
|
11067
11408
|
export declare class UpdateMJEntityRecordDocumentInput {
|
|
11068
11409
|
ID: string;
|
|
@@ -11075,6 +11416,7 @@ export declare class UpdateMJEntityRecordDocumentInput {
|
|
|
11075
11416
|
VectorJSON?: string | null;
|
|
11076
11417
|
EntityRecordUpdatedAt?: Date;
|
|
11077
11418
|
OldValues___?: KeyValuePairInput[];
|
|
11419
|
+
RestoreContext___?: RestoreContextInput;
|
|
11078
11420
|
}
|
|
11079
11421
|
export declare class RunMJEntityRecordDocumentViewResult {
|
|
11080
11422
|
Results: MJEntityRecordDocument_[];
|
|
@@ -11109,6 +11451,7 @@ export declare class CreateMJEntityRelationshipDisplayComponentInput {
|
|
|
11109
11451
|
Name?: string;
|
|
11110
11452
|
Description: string | null;
|
|
11111
11453
|
RelationshipType?: string;
|
|
11454
|
+
RestoreContext___?: RestoreContextInput;
|
|
11112
11455
|
}
|
|
11113
11456
|
export declare class UpdateMJEntityRelationshipDisplayComponentInput {
|
|
11114
11457
|
ID: string;
|
|
@@ -11116,6 +11459,7 @@ export declare class UpdateMJEntityRelationshipDisplayComponentInput {
|
|
|
11116
11459
|
Description?: string | null;
|
|
11117
11460
|
RelationshipType?: string;
|
|
11118
11461
|
OldValues___?: KeyValuePairInput[];
|
|
11462
|
+
RestoreContext___?: RestoreContextInput;
|
|
11119
11463
|
}
|
|
11120
11464
|
export declare class RunMJEntityRelationshipDisplayComponentViewResult {
|
|
11121
11465
|
Results: MJEntityRelationshipDisplayComponent_[];
|
|
@@ -11196,6 +11540,7 @@ export declare class CreateMJEntityRelationshipInput {
|
|
|
11196
11540
|
AutoUpdateFromSchema?: boolean;
|
|
11197
11541
|
AdditionalFieldsToInclude: string | null;
|
|
11198
11542
|
AutoUpdateAdditionalFieldsToInclude?: boolean;
|
|
11543
|
+
RestoreContext___?: RestoreContextInput;
|
|
11199
11544
|
}
|
|
11200
11545
|
export declare class UpdateMJEntityRelationshipInput {
|
|
11201
11546
|
ID: string;
|
|
@@ -11221,6 +11566,7 @@ export declare class UpdateMJEntityRelationshipInput {
|
|
|
11221
11566
|
AdditionalFieldsToInclude?: string | null;
|
|
11222
11567
|
AutoUpdateAdditionalFieldsToInclude?: boolean;
|
|
11223
11568
|
OldValues___?: KeyValuePairInput[];
|
|
11569
|
+
RestoreContext___?: RestoreContextInput;
|
|
11224
11570
|
}
|
|
11225
11571
|
export declare class RunMJEntityRelationshipViewResult {
|
|
11226
11572
|
Results: MJEntityRelationship_[];
|
|
@@ -11257,6 +11603,7 @@ export declare class CreateMJEntitySettingInput {
|
|
|
11257
11603
|
Name?: string;
|
|
11258
11604
|
Value?: string;
|
|
11259
11605
|
Comments: string | null;
|
|
11606
|
+
RestoreContext___?: RestoreContextInput;
|
|
11260
11607
|
}
|
|
11261
11608
|
export declare class UpdateMJEntitySettingInput {
|
|
11262
11609
|
ID: string;
|
|
@@ -11265,6 +11612,7 @@ export declare class UpdateMJEntitySettingInput {
|
|
|
11265
11612
|
Value?: string;
|
|
11266
11613
|
Comments?: string | null;
|
|
11267
11614
|
OldValues___?: KeyValuePairInput[];
|
|
11615
|
+
RestoreContext___?: RestoreContextInput;
|
|
11268
11616
|
}
|
|
11269
11617
|
export declare class RunMJEntitySettingViewResult {
|
|
11270
11618
|
Results: MJEntitySetting_[];
|
|
@@ -11306,6 +11654,7 @@ export declare class CreateMJEnvironmentInput {
|
|
|
11306
11654
|
Description: string | null;
|
|
11307
11655
|
IsDefault?: boolean;
|
|
11308
11656
|
Settings: string | null;
|
|
11657
|
+
RestoreContext___?: RestoreContextInput;
|
|
11309
11658
|
}
|
|
11310
11659
|
export declare class UpdateMJEnvironmentInput {
|
|
11311
11660
|
ID: string;
|
|
@@ -11314,6 +11663,7 @@ export declare class UpdateMJEnvironmentInput {
|
|
|
11314
11663
|
IsDefault?: boolean;
|
|
11315
11664
|
Settings?: string | null;
|
|
11316
11665
|
OldValues___?: KeyValuePairInput[];
|
|
11666
|
+
RestoreContext___?: RestoreContextInput;
|
|
11317
11667
|
}
|
|
11318
11668
|
export declare class RunMJEnvironmentViewResult {
|
|
11319
11669
|
Results: MJEnvironment_[];
|
|
@@ -11365,6 +11715,7 @@ export declare class CreateMJErrorLogInput {
|
|
|
11365
11715
|
Status: string | null;
|
|
11366
11716
|
Category: string | null;
|
|
11367
11717
|
Details: string | null;
|
|
11718
|
+
RestoreContext___?: RestoreContextInput;
|
|
11368
11719
|
}
|
|
11369
11720
|
export declare class UpdateMJErrorLogInput {
|
|
11370
11721
|
ID: string;
|
|
@@ -11377,6 +11728,7 @@ export declare class UpdateMJErrorLogInput {
|
|
|
11377
11728
|
Category?: string | null;
|
|
11378
11729
|
Details?: string | null;
|
|
11379
11730
|
OldValues___?: KeyValuePairInput[];
|
|
11731
|
+
RestoreContext___?: RestoreContextInput;
|
|
11380
11732
|
}
|
|
11381
11733
|
export declare class RunMJErrorLogViewResult {
|
|
11382
11734
|
Results: MJErrorLog_[];
|
|
@@ -11421,6 +11773,7 @@ export declare class CreateMJExplorerNavigationItemInput {
|
|
|
11421
11773
|
IconCSSClass: string | null;
|
|
11422
11774
|
Description: string | null;
|
|
11423
11775
|
Comments: string | null;
|
|
11776
|
+
RestoreContext___?: RestoreContextInput;
|
|
11424
11777
|
}
|
|
11425
11778
|
export declare class UpdateMJExplorerNavigationItemInput {
|
|
11426
11779
|
ID: string;
|
|
@@ -11434,6 +11787,7 @@ export declare class UpdateMJExplorerNavigationItemInput {
|
|
|
11434
11787
|
Description?: string | null;
|
|
11435
11788
|
Comments?: string | null;
|
|
11436
11789
|
OldValues___?: KeyValuePairInput[];
|
|
11790
|
+
RestoreContext___?: RestoreContextInput;
|
|
11437
11791
|
}
|
|
11438
11792
|
export declare class RunMJExplorerNavigationItemViewResult {
|
|
11439
11793
|
Results: MJExplorerNavigationItem_[];
|
|
@@ -11470,6 +11824,7 @@ export declare class CreateMJFileCategoryInput {
|
|
|
11470
11824
|
Name?: string;
|
|
11471
11825
|
ParentID: string | null;
|
|
11472
11826
|
Description: string | null;
|
|
11827
|
+
RestoreContext___?: RestoreContextInput;
|
|
11473
11828
|
}
|
|
11474
11829
|
export declare class UpdateMJFileCategoryInput {
|
|
11475
11830
|
ID: string;
|
|
@@ -11477,6 +11832,7 @@ export declare class UpdateMJFileCategoryInput {
|
|
|
11477
11832
|
ParentID?: string | null;
|
|
11478
11833
|
Description?: string | null;
|
|
11479
11834
|
OldValues___?: KeyValuePairInput[];
|
|
11835
|
+
RestoreContext___?: RestoreContextInput;
|
|
11480
11836
|
}
|
|
11481
11837
|
export declare class RunMJFileCategoryViewResult {
|
|
11482
11838
|
Results: MJFileCategory_[];
|
|
@@ -11513,6 +11869,7 @@ export declare class CreateMJFileEntityRecordLinkInput {
|
|
|
11513
11869
|
FileID?: string;
|
|
11514
11870
|
EntityID?: string;
|
|
11515
11871
|
RecordID?: string;
|
|
11872
|
+
RestoreContext___?: RestoreContextInput;
|
|
11516
11873
|
}
|
|
11517
11874
|
export declare class UpdateMJFileEntityRecordLinkInput {
|
|
11518
11875
|
ID: string;
|
|
@@ -11520,6 +11877,7 @@ export declare class UpdateMJFileEntityRecordLinkInput {
|
|
|
11520
11877
|
EntityID?: string;
|
|
11521
11878
|
RecordID?: string;
|
|
11522
11879
|
OldValues___?: KeyValuePairInput[];
|
|
11880
|
+
RestoreContext___?: RestoreContextInput;
|
|
11523
11881
|
}
|
|
11524
11882
|
export declare class RunMJFileEntityRecordLinkViewResult {
|
|
11525
11883
|
Results: MJFileEntityRecordLink_[];
|
|
@@ -11561,6 +11919,7 @@ export declare class CreateMJFileStorageAccountPermissionInput {
|
|
|
11561
11919
|
RoleID: string | null;
|
|
11562
11920
|
CanRead?: boolean;
|
|
11563
11921
|
CanWrite?: boolean;
|
|
11922
|
+
RestoreContext___?: RestoreContextInput;
|
|
11564
11923
|
}
|
|
11565
11924
|
export declare class UpdateMJFileStorageAccountPermissionInput {
|
|
11566
11925
|
ID: string;
|
|
@@ -11571,6 +11930,7 @@ export declare class UpdateMJFileStorageAccountPermissionInput {
|
|
|
11571
11930
|
CanRead?: boolean;
|
|
11572
11931
|
CanWrite?: boolean;
|
|
11573
11932
|
OldValues___?: KeyValuePairInput[];
|
|
11933
|
+
RestoreContext___?: RestoreContextInput;
|
|
11574
11934
|
}
|
|
11575
11935
|
export declare class RunMJFileStorageAccountPermissionViewResult {
|
|
11576
11936
|
Results: MJFileStorageAccountPermission_[];
|
|
@@ -11613,6 +11973,7 @@ export declare class CreateMJFileStorageAccountInput {
|
|
|
11613
11973
|
ProviderID?: string;
|
|
11614
11974
|
CredentialID?: string;
|
|
11615
11975
|
IncludeInGlobalSearch?: boolean;
|
|
11976
|
+
RestoreContext___?: RestoreContextInput;
|
|
11616
11977
|
}
|
|
11617
11978
|
export declare class UpdateMJFileStorageAccountInput {
|
|
11618
11979
|
ID: string;
|
|
@@ -11622,6 +11983,7 @@ export declare class UpdateMJFileStorageAccountInput {
|
|
|
11622
11983
|
CredentialID?: string;
|
|
11623
11984
|
IncludeInGlobalSearch?: boolean;
|
|
11624
11985
|
OldValues___?: KeyValuePairInput[];
|
|
11986
|
+
RestoreContext___?: RestoreContextInput;
|
|
11625
11987
|
}
|
|
11626
11988
|
export declare class RunMJFileStorageAccountViewResult {
|
|
11627
11989
|
Results: MJFileStorageAccount_[];
|
|
@@ -11674,6 +12036,7 @@ export declare class CreateMJFileStorageProviderInput {
|
|
|
11674
12036
|
SupportsSearch?: boolean;
|
|
11675
12037
|
Configuration: string | null;
|
|
11676
12038
|
RequiresOAuth?: boolean;
|
|
12039
|
+
RestoreContext___?: RestoreContextInput;
|
|
11677
12040
|
}
|
|
11678
12041
|
export declare class UpdateMJFileStorageProviderInput {
|
|
11679
12042
|
ID: string;
|
|
@@ -11687,6 +12050,7 @@ export declare class UpdateMJFileStorageProviderInput {
|
|
|
11687
12050
|
Configuration?: string | null;
|
|
11688
12051
|
RequiresOAuth?: boolean;
|
|
11689
12052
|
OldValues___?: KeyValuePairInput[];
|
|
12053
|
+
RestoreContext___?: RestoreContextInput;
|
|
11690
12054
|
}
|
|
11691
12055
|
export declare class RunMJFileStorageProviderViewResult {
|
|
11692
12056
|
Results: MJFileStorageProvider_[];
|
|
@@ -11738,6 +12102,7 @@ export declare class CreateMJFileInput {
|
|
|
11738
12102
|
ContentType: string | null;
|
|
11739
12103
|
ProviderKey: string | null;
|
|
11740
12104
|
Status?: string;
|
|
12105
|
+
RestoreContext___?: RestoreContextInput;
|
|
11741
12106
|
}
|
|
11742
12107
|
export declare class UpdateMJFileInput {
|
|
11743
12108
|
ID: string;
|
|
@@ -11749,6 +12114,7 @@ export declare class UpdateMJFileInput {
|
|
|
11749
12114
|
ProviderKey?: string | null;
|
|
11750
12115
|
Status?: string;
|
|
11751
12116
|
OldValues___?: KeyValuePairInput[];
|
|
12117
|
+
RestoreContext___?: RestoreContextInput;
|
|
11752
12118
|
}
|
|
11753
12119
|
export declare class RunMJFileViewResult {
|
|
11754
12120
|
Results: MJFile_[];
|
|
@@ -11790,6 +12156,7 @@ export declare class CreateMJGeneratedCodeCategoryInput {
|
|
|
11790
12156
|
Name?: string;
|
|
11791
12157
|
Description: string | null;
|
|
11792
12158
|
ParentID: string | null;
|
|
12159
|
+
RestoreContext___?: RestoreContextInput;
|
|
11793
12160
|
}
|
|
11794
12161
|
export declare class UpdateMJGeneratedCodeCategoryInput {
|
|
11795
12162
|
ID: string;
|
|
@@ -11797,6 +12164,7 @@ export declare class UpdateMJGeneratedCodeCategoryInput {
|
|
|
11797
12164
|
Description?: string | null;
|
|
11798
12165
|
ParentID?: string | null;
|
|
11799
12166
|
OldValues___?: KeyValuePairInput[];
|
|
12167
|
+
RestoreContext___?: RestoreContextInput;
|
|
11800
12168
|
}
|
|
11801
12169
|
export declare class RunMJGeneratedCodeCategoryViewResult {
|
|
11802
12170
|
Results: MJGeneratedCodeCategory_[];
|
|
@@ -11850,6 +12218,7 @@ export declare class CreateMJGeneratedCodeInput {
|
|
|
11850
12218
|
LinkedRecordPrimaryKey: string | null;
|
|
11851
12219
|
Status?: string;
|
|
11852
12220
|
Language?: string;
|
|
12221
|
+
RestoreContext___?: RestoreContextInput;
|
|
11853
12222
|
}
|
|
11854
12223
|
export declare class UpdateMJGeneratedCodeInput {
|
|
11855
12224
|
ID: string;
|
|
@@ -11865,6 +12234,7 @@ export declare class UpdateMJGeneratedCodeInput {
|
|
|
11865
12234
|
Status?: string;
|
|
11866
12235
|
Language?: string;
|
|
11867
12236
|
OldValues___?: KeyValuePairInput[];
|
|
12237
|
+
RestoreContext___?: RestoreContextInput;
|
|
11868
12238
|
}
|
|
11869
12239
|
export declare class RunMJGeneratedCodeViewResult {
|
|
11870
12240
|
Results: MJGeneratedCode_[];
|
|
@@ -11905,6 +12275,7 @@ export declare class CreateMJInstanceConfigurationInput {
|
|
|
11905
12275
|
DisplayName?: string;
|
|
11906
12276
|
Description: string | null;
|
|
11907
12277
|
DefaultValue?: string;
|
|
12278
|
+
RestoreContext___?: RestoreContextInput;
|
|
11908
12279
|
}
|
|
11909
12280
|
export declare class UpdateMJInstanceConfigurationInput {
|
|
11910
12281
|
ID: string;
|
|
@@ -11916,6 +12287,7 @@ export declare class UpdateMJInstanceConfigurationInput {
|
|
|
11916
12287
|
Description?: string | null;
|
|
11917
12288
|
DefaultValue?: string;
|
|
11918
12289
|
OldValues___?: KeyValuePairInput[];
|
|
12290
|
+
RestoreContext___?: RestoreContextInput;
|
|
11919
12291
|
}
|
|
11920
12292
|
export declare class RunMJInstanceConfigurationViewResult {
|
|
11921
12293
|
Results: MJInstanceConfiguration_[];
|
|
@@ -11959,6 +12331,7 @@ export declare class MJIntegrationObjectField_ {
|
|
|
11959
12331
|
Status: string;
|
|
11960
12332
|
_mj__CreatedAt: Date;
|
|
11961
12333
|
_mj__UpdatedAt: Date;
|
|
12334
|
+
IsCustom: boolean;
|
|
11962
12335
|
IntegrationObject: string;
|
|
11963
12336
|
RelatedIntegrationObject?: string;
|
|
11964
12337
|
}
|
|
@@ -11984,6 +12357,8 @@ export declare class CreateMJIntegrationObjectFieldInput {
|
|
|
11984
12357
|
Sequence?: number;
|
|
11985
12358
|
Configuration: string | null;
|
|
11986
12359
|
Status?: string;
|
|
12360
|
+
IsCustom?: boolean;
|
|
12361
|
+
RestoreContext___?: RestoreContextInput;
|
|
11987
12362
|
}
|
|
11988
12363
|
export declare class UpdateMJIntegrationObjectFieldInput {
|
|
11989
12364
|
ID: string;
|
|
@@ -12007,7 +12382,9 @@ export declare class UpdateMJIntegrationObjectFieldInput {
|
|
|
12007
12382
|
Sequence?: number;
|
|
12008
12383
|
Configuration?: string | null;
|
|
12009
12384
|
Status?: string;
|
|
12385
|
+
IsCustom?: boolean;
|
|
12010
12386
|
OldValues___?: KeyValuePairInput[];
|
|
12387
|
+
RestoreContext___?: RestoreContextInput;
|
|
12011
12388
|
}
|
|
12012
12389
|
export declare class RunMJIntegrationObjectFieldViewResult {
|
|
12013
12390
|
Results: MJIntegrationObjectField_[];
|
|
@@ -12050,6 +12427,7 @@ export declare class MJIntegrationObject_ {
|
|
|
12050
12427
|
WriteAPIPath?: string;
|
|
12051
12428
|
WriteMethod?: string;
|
|
12052
12429
|
DeleteMethod?: string;
|
|
12430
|
+
IsCustom: boolean;
|
|
12053
12431
|
Integration: string;
|
|
12054
12432
|
MJIntegrationObjectFields_IntegrationObjectIDArray: MJIntegrationObjectField_[];
|
|
12055
12433
|
MJIntegrationObjectFields_RelatedIntegrationObjectIDArray: MJIntegrationObjectField_[];
|
|
@@ -12075,6 +12453,8 @@ export declare class CreateMJIntegrationObjectInput {
|
|
|
12075
12453
|
WriteAPIPath: string | null;
|
|
12076
12454
|
WriteMethod?: string | null;
|
|
12077
12455
|
DeleteMethod?: string | null;
|
|
12456
|
+
IsCustom?: boolean;
|
|
12457
|
+
RestoreContext___?: RestoreContextInput;
|
|
12078
12458
|
}
|
|
12079
12459
|
export declare class UpdateMJIntegrationObjectInput {
|
|
12080
12460
|
ID: string;
|
|
@@ -12097,7 +12477,9 @@ export declare class UpdateMJIntegrationObjectInput {
|
|
|
12097
12477
|
WriteAPIPath?: string | null;
|
|
12098
12478
|
WriteMethod?: string | null;
|
|
12099
12479
|
DeleteMethod?: string | null;
|
|
12480
|
+
IsCustom?: boolean;
|
|
12100
12481
|
OldValues___?: KeyValuePairInput[];
|
|
12482
|
+
RestoreContext___?: RestoreContextInput;
|
|
12101
12483
|
}
|
|
12102
12484
|
export declare class RunMJIntegrationObjectViewResult {
|
|
12103
12485
|
Results: MJIntegrationObject_[];
|
|
@@ -12137,6 +12519,7 @@ export declare class CreateMJIntegrationSourceTypeInput {
|
|
|
12137
12519
|
DriverClass?: string;
|
|
12138
12520
|
IconClass: string | null;
|
|
12139
12521
|
Status?: string;
|
|
12522
|
+
RestoreContext___?: RestoreContextInput;
|
|
12140
12523
|
}
|
|
12141
12524
|
export declare class UpdateMJIntegrationSourceTypeInput {
|
|
12142
12525
|
ID: string;
|
|
@@ -12146,6 +12529,7 @@ export declare class UpdateMJIntegrationSourceTypeInput {
|
|
|
12146
12529
|
IconClass?: string | null;
|
|
12147
12530
|
Status?: string;
|
|
12148
12531
|
OldValues___?: KeyValuePairInput[];
|
|
12532
|
+
RestoreContext___?: RestoreContextInput;
|
|
12149
12533
|
}
|
|
12150
12534
|
export declare class RunMJIntegrationSourceTypeViewResult {
|
|
12151
12535
|
Results: MJIntegrationSourceType_[];
|
|
@@ -12184,6 +12568,7 @@ export declare class CreateMJIntegrationURLFormatInput {
|
|
|
12184
12568
|
EntityID?: string;
|
|
12185
12569
|
URLFormat?: string;
|
|
12186
12570
|
Comments: string | null;
|
|
12571
|
+
RestoreContext___?: RestoreContextInput;
|
|
12187
12572
|
}
|
|
12188
12573
|
export declare class UpdateMJIntegrationURLFormatInput {
|
|
12189
12574
|
ID: string;
|
|
@@ -12192,6 +12577,7 @@ export declare class UpdateMJIntegrationURLFormatInput {
|
|
|
12192
12577
|
URLFormat?: string;
|
|
12193
12578
|
Comments?: string | null;
|
|
12194
12579
|
OldValues___?: KeyValuePairInput[];
|
|
12580
|
+
RestoreContext___?: RestoreContextInput;
|
|
12195
12581
|
}
|
|
12196
12582
|
export declare class RunMJIntegrationURLFormatViewResult {
|
|
12197
12583
|
Results: MJIntegrationURLFormat_[];
|
|
@@ -12242,6 +12628,7 @@ export declare class CreateMJIntegrationInput {
|
|
|
12242
12628
|
ID?: string;
|
|
12243
12629
|
CredentialTypeID: string | null;
|
|
12244
12630
|
Icon: string | null;
|
|
12631
|
+
RestoreContext___?: RestoreContextInput;
|
|
12245
12632
|
}
|
|
12246
12633
|
export declare class UpdateMJIntegrationInput {
|
|
12247
12634
|
Name?: string;
|
|
@@ -12255,6 +12642,7 @@ export declare class UpdateMJIntegrationInput {
|
|
|
12255
12642
|
CredentialTypeID?: string | null;
|
|
12256
12643
|
Icon?: string | null;
|
|
12257
12644
|
OldValues___?: KeyValuePairInput[];
|
|
12645
|
+
RestoreContext___?: RestoreContextInput;
|
|
12258
12646
|
}
|
|
12259
12647
|
export declare class RunMJIntegrationViewResult {
|
|
12260
12648
|
Results: MJIntegration_[];
|
|
@@ -12301,6 +12689,7 @@ export declare class CreateMJKnowledgeHubSavedSearchInput {
|
|
|
12301
12689
|
MinScore: number | null;
|
|
12302
12690
|
MaxResults?: number | null;
|
|
12303
12691
|
NotifyOnNewResults?: boolean;
|
|
12692
|
+
RestoreContext___?: RestoreContextInput;
|
|
12304
12693
|
}
|
|
12305
12694
|
export declare class UpdateMJKnowledgeHubSavedSearchInput {
|
|
12306
12695
|
ID: string;
|
|
@@ -12312,6 +12701,7 @@ export declare class UpdateMJKnowledgeHubSavedSearchInput {
|
|
|
12312
12701
|
MaxResults?: number | null;
|
|
12313
12702
|
NotifyOnNewResults?: boolean;
|
|
12314
12703
|
OldValues___?: KeyValuePairInput[];
|
|
12704
|
+
RestoreContext___?: RestoreContextInput;
|
|
12315
12705
|
}
|
|
12316
12706
|
export declare class RunMJKnowledgeHubSavedSearchViewResult {
|
|
12317
12707
|
Results: MJKnowledgeHubSavedSearch_[];
|
|
@@ -12350,6 +12740,7 @@ export declare class CreateMJLibraryInput {
|
|
|
12350
12740
|
Status?: string;
|
|
12351
12741
|
TypeDefinitions: string | null;
|
|
12352
12742
|
SampleCode: string | null;
|
|
12743
|
+
RestoreContext___?: RestoreContextInput;
|
|
12353
12744
|
}
|
|
12354
12745
|
export declare class UpdateMJLibraryInput {
|
|
12355
12746
|
ID: string;
|
|
@@ -12359,6 +12750,7 @@ export declare class UpdateMJLibraryInput {
|
|
|
12359
12750
|
TypeDefinitions?: string | null;
|
|
12360
12751
|
SampleCode?: string | null;
|
|
12361
12752
|
OldValues___?: KeyValuePairInput[];
|
|
12753
|
+
RestoreContext___?: RestoreContextInput;
|
|
12362
12754
|
}
|
|
12363
12755
|
export declare class RunMJLibraryViewResult {
|
|
12364
12756
|
Results: MJLibrary_[];
|
|
@@ -12394,6 +12786,7 @@ export declare class CreateMJLibraryItemInput {
|
|
|
12394
12786
|
Name?: string;
|
|
12395
12787
|
LibraryID?: string;
|
|
12396
12788
|
Type?: string;
|
|
12789
|
+
RestoreContext___?: RestoreContextInput;
|
|
12397
12790
|
}
|
|
12398
12791
|
export declare class UpdateMJLibraryItemInput {
|
|
12399
12792
|
ID: string;
|
|
@@ -12401,6 +12794,7 @@ export declare class UpdateMJLibraryItemInput {
|
|
|
12401
12794
|
LibraryID?: string;
|
|
12402
12795
|
Type?: string;
|
|
12403
12796
|
OldValues___?: KeyValuePairInput[];
|
|
12797
|
+
RestoreContext___?: RestoreContextInput;
|
|
12404
12798
|
}
|
|
12405
12799
|
export declare class RunMJLibraryItemViewResult {
|
|
12406
12800
|
Results: MJLibraryItem_[];
|
|
@@ -12440,6 +12834,7 @@ export declare class CreateMJListCategoryInput {
|
|
|
12440
12834
|
Description: string | null;
|
|
12441
12835
|
ParentID: string | null;
|
|
12442
12836
|
UserID?: string;
|
|
12837
|
+
RestoreContext___?: RestoreContextInput;
|
|
12443
12838
|
}
|
|
12444
12839
|
export declare class UpdateMJListCategoryInput {
|
|
12445
12840
|
ID: string;
|
|
@@ -12448,6 +12843,7 @@ export declare class UpdateMJListCategoryInput {
|
|
|
12448
12843
|
ParentID?: string | null;
|
|
12449
12844
|
UserID?: string;
|
|
12450
12845
|
OldValues___?: KeyValuePairInput[];
|
|
12846
|
+
RestoreContext___?: RestoreContextInput;
|
|
12451
12847
|
}
|
|
12452
12848
|
export declare class RunMJListCategoryViewResult {
|
|
12453
12849
|
Results: MJListCategory_[];
|
|
@@ -12487,6 +12883,7 @@ export declare class CreateMJListDetailInput {
|
|
|
12487
12883
|
Sequence?: number;
|
|
12488
12884
|
Status?: string;
|
|
12489
12885
|
AdditionalData: string | null;
|
|
12886
|
+
RestoreContext___?: RestoreContextInput;
|
|
12490
12887
|
}
|
|
12491
12888
|
export declare class UpdateMJListDetailInput {
|
|
12492
12889
|
ID: string;
|
|
@@ -12496,6 +12893,7 @@ export declare class UpdateMJListDetailInput {
|
|
|
12496
12893
|
Status?: string;
|
|
12497
12894
|
AdditionalData?: string | null;
|
|
12498
12895
|
OldValues___?: KeyValuePairInput[];
|
|
12896
|
+
RestoreContext___?: RestoreContextInput;
|
|
12499
12897
|
}
|
|
12500
12898
|
export declare class RunMJListDetailViewResult {
|
|
12501
12899
|
Results: MJListDetail_[];
|
|
@@ -12538,6 +12936,7 @@ export declare class CreateMJListInvitationInput {
|
|
|
12538
12936
|
ExpiresAt?: Date;
|
|
12539
12937
|
CreatedByUserID?: string;
|
|
12540
12938
|
Status?: string;
|
|
12939
|
+
RestoreContext___?: RestoreContextInput;
|
|
12541
12940
|
}
|
|
12542
12941
|
export declare class UpdateMJListInvitationInput {
|
|
12543
12942
|
ID: string;
|
|
@@ -12549,6 +12948,7 @@ export declare class UpdateMJListInvitationInput {
|
|
|
12549
12948
|
CreatedByUserID?: string;
|
|
12550
12949
|
Status?: string;
|
|
12551
12950
|
OldValues___?: KeyValuePairInput[];
|
|
12951
|
+
RestoreContext___?: RestoreContextInput;
|
|
12552
12952
|
}
|
|
12553
12953
|
export declare class RunMJListInvitationViewResult {
|
|
12554
12954
|
Results: MJListInvitation_[];
|
|
@@ -12585,6 +12985,7 @@ export declare class CreateMJListShareInput {
|
|
|
12585
12985
|
UserID?: string;
|
|
12586
12986
|
Role?: string;
|
|
12587
12987
|
Status?: string;
|
|
12988
|
+
RestoreContext___?: RestoreContextInput;
|
|
12588
12989
|
}
|
|
12589
12990
|
export declare class UpdateMJListShareInput {
|
|
12590
12991
|
ID: string;
|
|
@@ -12593,6 +12994,7 @@ export declare class UpdateMJListShareInput {
|
|
|
12593
12994
|
Role?: string;
|
|
12594
12995
|
Status?: string;
|
|
12595
12996
|
OldValues___?: KeyValuePairInput[];
|
|
12997
|
+
RestoreContext___?: RestoreContextInput;
|
|
12596
12998
|
}
|
|
12597
12999
|
export declare class RunMJListShareViewResult {
|
|
12598
13000
|
Results: MJListShare_[];
|
|
@@ -12641,6 +13043,7 @@ export declare class CreateMJListInput {
|
|
|
12641
13043
|
CategoryID: string | null;
|
|
12642
13044
|
ExternalSystemRecordID: string | null;
|
|
12643
13045
|
CompanyIntegrationID: string | null;
|
|
13046
|
+
RestoreContext___?: RestoreContextInput;
|
|
12644
13047
|
}
|
|
12645
13048
|
export declare class UpdateMJListInput {
|
|
12646
13049
|
ID: string;
|
|
@@ -12652,6 +13055,7 @@ export declare class UpdateMJListInput {
|
|
|
12652
13055
|
ExternalSystemRecordID?: string | null;
|
|
12653
13056
|
CompanyIntegrationID?: string | null;
|
|
12654
13057
|
OldValues___?: KeyValuePairInput[];
|
|
13058
|
+
RestoreContext___?: RestoreContextInput;
|
|
12655
13059
|
}
|
|
12656
13060
|
export declare class RunMJListViewResult {
|
|
12657
13061
|
Results: MJList_[];
|
|
@@ -12697,6 +13101,7 @@ export declare class CreateMJMCPServerConnectionPermissionInput {
|
|
|
12697
13101
|
CanExecute?: boolean;
|
|
12698
13102
|
CanModify?: boolean;
|
|
12699
13103
|
CanViewCredentials?: boolean;
|
|
13104
|
+
RestoreContext___?: RestoreContextInput;
|
|
12700
13105
|
}
|
|
12701
13106
|
export declare class UpdateMJMCPServerConnectionPermissionInput {
|
|
12702
13107
|
ID: string;
|
|
@@ -12707,6 +13112,7 @@ export declare class UpdateMJMCPServerConnectionPermissionInput {
|
|
|
12707
13112
|
CanModify?: boolean;
|
|
12708
13113
|
CanViewCredentials?: boolean;
|
|
12709
13114
|
OldValues___?: KeyValuePairInput[];
|
|
13115
|
+
RestoreContext___?: RestoreContextInput;
|
|
12710
13116
|
}
|
|
12711
13117
|
export declare class RunMJMCPServerConnectionPermissionViewResult {
|
|
12712
13118
|
Results: MJMCPServerConnectionPermission_[];
|
|
@@ -12745,6 +13151,7 @@ export declare class CreateMJMCPServerConnectionToolInput {
|
|
|
12745
13151
|
IsEnabled?: boolean;
|
|
12746
13152
|
DefaultInputValues: string | null;
|
|
12747
13153
|
MaxCallsPerMinute: number | null;
|
|
13154
|
+
RestoreContext___?: RestoreContextInput;
|
|
12748
13155
|
}
|
|
12749
13156
|
export declare class UpdateMJMCPServerConnectionToolInput {
|
|
12750
13157
|
ID: string;
|
|
@@ -12754,6 +13161,7 @@ export declare class UpdateMJMCPServerConnectionToolInput {
|
|
|
12754
13161
|
DefaultInputValues?: string | null;
|
|
12755
13162
|
MaxCallsPerMinute?: number | null;
|
|
12756
13163
|
OldValues___?: KeyValuePairInput[];
|
|
13164
|
+
RestoreContext___?: RestoreContextInput;
|
|
12757
13165
|
}
|
|
12758
13166
|
export declare class RunMJMCPServerConnectionToolViewResult {
|
|
12759
13167
|
Results: MJMCPServerConnectionTool_[];
|
|
@@ -12821,6 +13229,7 @@ export declare class CreateMJMCPServerConnectionInput {
|
|
|
12821
13229
|
LastConnectedAt: Date | null;
|
|
12822
13230
|
LastErrorMessage: string | null;
|
|
12823
13231
|
EnvironmentVars: string | null;
|
|
13232
|
+
RestoreContext___?: RestoreContextInput;
|
|
12824
13233
|
}
|
|
12825
13234
|
export declare class UpdateMJMCPServerConnectionInput {
|
|
12826
13235
|
ID: string;
|
|
@@ -12841,6 +13250,7 @@ export declare class UpdateMJMCPServerConnectionInput {
|
|
|
12841
13250
|
LastErrorMessage?: string | null;
|
|
12842
13251
|
EnvironmentVars?: string | null;
|
|
12843
13252
|
OldValues___?: KeyValuePairInput[];
|
|
13253
|
+
RestoreContext___?: RestoreContextInput;
|
|
12844
13254
|
}
|
|
12845
13255
|
export declare class RunMJMCPServerConnectionViewResult {
|
|
12846
13256
|
Results: MJMCPServerConnection_[];
|
|
@@ -12902,6 +13312,7 @@ export declare class CreateMJMCPServerToolInput {
|
|
|
12902
13312
|
LastSeenAt?: Date;
|
|
12903
13313
|
GeneratedActionID: string | null;
|
|
12904
13314
|
GeneratedActionCategoryID: string | null;
|
|
13315
|
+
RestoreContext___?: RestoreContextInput;
|
|
12905
13316
|
}
|
|
12906
13317
|
export declare class UpdateMJMCPServerToolInput {
|
|
12907
13318
|
ID: string;
|
|
@@ -12918,6 +13329,7 @@ export declare class UpdateMJMCPServerToolInput {
|
|
|
12918
13329
|
GeneratedActionID?: string | null;
|
|
12919
13330
|
GeneratedActionCategoryID?: string | null;
|
|
12920
13331
|
OldValues___?: KeyValuePairInput[];
|
|
13332
|
+
RestoreContext___?: RestoreContextInput;
|
|
12921
13333
|
}
|
|
12922
13334
|
export declare class RunMJMCPServerToolViewResult {
|
|
12923
13335
|
Results: MJMCPServerTool_[];
|
|
@@ -12994,6 +13406,7 @@ export declare class CreateMJMCPServerInput {
|
|
|
12994
13406
|
OAuthClientID: string | null;
|
|
12995
13407
|
OAuthClientSecretEncrypted: string | null;
|
|
12996
13408
|
OAuthRequirePKCE?: boolean;
|
|
13409
|
+
RestoreContext___?: RestoreContextInput;
|
|
12997
13410
|
}
|
|
12998
13411
|
export declare class UpdateMJMCPServerInput {
|
|
12999
13412
|
ID: string;
|
|
@@ -13020,6 +13433,7 @@ export declare class UpdateMJMCPServerInput {
|
|
|
13020
13433
|
OAuthClientSecretEncrypted?: string | null;
|
|
13021
13434
|
OAuthRequirePKCE?: boolean;
|
|
13022
13435
|
OldValues___?: KeyValuePairInput[];
|
|
13436
|
+
RestoreContext___?: RestoreContextInput;
|
|
13023
13437
|
}
|
|
13024
13438
|
export declare class RunMJMCPServerViewResult {
|
|
13025
13439
|
Results: MJMCPServer_[];
|
|
@@ -13076,6 +13490,7 @@ export declare class CreateMJMCPToolExecutionLogInput {
|
|
|
13076
13490
|
InputParameters: string | null;
|
|
13077
13491
|
OutputContent: string | null;
|
|
13078
13492
|
OutputTruncated?: boolean;
|
|
13493
|
+
RestoreContext___?: RestoreContextInput;
|
|
13079
13494
|
}
|
|
13080
13495
|
export declare class UpdateMJMCPToolExecutionLogInput {
|
|
13081
13496
|
ID: string;
|
|
@@ -13092,6 +13507,7 @@ export declare class UpdateMJMCPToolExecutionLogInput {
|
|
|
13092
13507
|
OutputContent?: string | null;
|
|
13093
13508
|
OutputTruncated?: boolean;
|
|
13094
13509
|
OldValues___?: KeyValuePairInput[];
|
|
13510
|
+
RestoreContext___?: RestoreContextInput;
|
|
13095
13511
|
}
|
|
13096
13512
|
export declare class RunMJMCPToolExecutionLogViewResult {
|
|
13097
13513
|
Results: MJMCPToolExecutionLog_[];
|
|
@@ -13146,6 +13562,7 @@ export declare class CreateMJOAuthAuthServerMetadataCacheInput {
|
|
|
13146
13562
|
MetadataJSON?: string;
|
|
13147
13563
|
CachedAt?: Date;
|
|
13148
13564
|
ExpiresAt?: Date;
|
|
13565
|
+
RestoreContext___?: RestoreContextInput;
|
|
13149
13566
|
}
|
|
13150
13567
|
export declare class UpdateMJOAuthAuthServerMetadataCacheInput {
|
|
13151
13568
|
ID: string;
|
|
@@ -13164,6 +13581,7 @@ export declare class UpdateMJOAuthAuthServerMetadataCacheInput {
|
|
|
13164
13581
|
CachedAt?: Date;
|
|
13165
13582
|
ExpiresAt?: Date;
|
|
13166
13583
|
OldValues___?: KeyValuePairInput[];
|
|
13584
|
+
RestoreContext___?: RestoreContextInput;
|
|
13167
13585
|
}
|
|
13168
13586
|
export declare class RunMJOAuthAuthServerMetadataCacheViewResult {
|
|
13169
13587
|
Results: MJOAuthAuthServerMetadataCache_[];
|
|
@@ -13222,6 +13640,7 @@ export declare class CreateMJOAuthAuthorizationStateInput {
|
|
|
13222
13640
|
ExpiresAt?: Date;
|
|
13223
13641
|
CompletedAt: Date | null;
|
|
13224
13642
|
FrontendReturnURL: string | null;
|
|
13643
|
+
RestoreContext___?: RestoreContextInput;
|
|
13225
13644
|
}
|
|
13226
13645
|
export declare class UpdateMJOAuthAuthorizationStateInput {
|
|
13227
13646
|
ID: string;
|
|
@@ -13241,6 +13660,7 @@ export declare class UpdateMJOAuthAuthorizationStateInput {
|
|
|
13241
13660
|
CompletedAt?: Date | null;
|
|
13242
13661
|
FrontendReturnURL?: string | null;
|
|
13243
13662
|
OldValues___?: KeyValuePairInput[];
|
|
13663
|
+
RestoreContext___?: RestoreContextInput;
|
|
13244
13664
|
}
|
|
13245
13665
|
export declare class RunMJOAuthAuthorizationStateViewResult {
|
|
13246
13666
|
Results: MJOAuthAuthorizationState_[];
|
|
@@ -13299,6 +13719,7 @@ export declare class CreateMJOAuthClientRegistrationInput {
|
|
|
13299
13719
|
Scope: string | null;
|
|
13300
13720
|
Status?: string;
|
|
13301
13721
|
RegistrationResponse?: string;
|
|
13722
|
+
RestoreContext___?: RestoreContextInput;
|
|
13302
13723
|
}
|
|
13303
13724
|
export declare class UpdateMJOAuthClientRegistrationInput {
|
|
13304
13725
|
ID: string;
|
|
@@ -13318,6 +13739,7 @@ export declare class UpdateMJOAuthClientRegistrationInput {
|
|
|
13318
13739
|
Status?: string;
|
|
13319
13740
|
RegistrationResponse?: string;
|
|
13320
13741
|
OldValues___?: KeyValuePairInput[];
|
|
13742
|
+
RestoreContext___?: RestoreContextInput;
|
|
13321
13743
|
}
|
|
13322
13744
|
export declare class RunMJOAuthClientRegistrationViewResult {
|
|
13323
13745
|
Results: MJOAuthClientRegistration_[];
|
|
@@ -13362,6 +13784,7 @@ export declare class CreateMJOAuthTokenInput {
|
|
|
13362
13784
|
IssuerURL?: string;
|
|
13363
13785
|
LastRefreshAt: Date | null;
|
|
13364
13786
|
RefreshCount?: number;
|
|
13787
|
+
RestoreContext___?: RestoreContextInput;
|
|
13365
13788
|
}
|
|
13366
13789
|
export declare class UpdateMJOAuthTokenInput {
|
|
13367
13790
|
ID: string;
|
|
@@ -13374,6 +13797,7 @@ export declare class UpdateMJOAuthTokenInput {
|
|
|
13374
13797
|
LastRefreshAt?: Date | null;
|
|
13375
13798
|
RefreshCount?: number;
|
|
13376
13799
|
OldValues___?: KeyValuePairInput[];
|
|
13800
|
+
RestoreContext___?: RestoreContextInput;
|
|
13377
13801
|
}
|
|
13378
13802
|
export declare class RunMJOAuthTokenViewResult {
|
|
13379
13803
|
Results: MJOAuthToken_[];
|
|
@@ -13414,6 +13838,7 @@ export declare class CreateMJOpenAppDependencyInput {
|
|
|
13414
13838
|
VersionRange?: string;
|
|
13415
13839
|
InstalledVersion: string | null;
|
|
13416
13840
|
Status?: string;
|
|
13841
|
+
RestoreContext___?: RestoreContextInput;
|
|
13417
13842
|
}
|
|
13418
13843
|
export declare class UpdateMJOpenAppDependencyInput {
|
|
13419
13844
|
ID: string;
|
|
@@ -13424,6 +13849,7 @@ export declare class UpdateMJOpenAppDependencyInput {
|
|
|
13424
13849
|
InstalledVersion?: string | null;
|
|
13425
13850
|
Status?: string;
|
|
13426
13851
|
OldValues___?: KeyValuePairInput[];
|
|
13852
|
+
RestoreContext___?: RestoreContextInput;
|
|
13427
13853
|
}
|
|
13428
13854
|
export declare class RunMJOpenAppDependencyViewResult {
|
|
13429
13855
|
Results: MJOpenAppDependency_[];
|
|
@@ -13478,6 +13904,7 @@ export declare class CreateMJOpenAppInstallHistoryInput {
|
|
|
13478
13904
|
Success?: boolean;
|
|
13479
13905
|
ErrorMessage: string | null;
|
|
13480
13906
|
ErrorPhase: string | null;
|
|
13907
|
+
RestoreContext___?: RestoreContextInput;
|
|
13481
13908
|
}
|
|
13482
13909
|
export declare class UpdateMJOpenAppInstallHistoryInput {
|
|
13483
13910
|
ID: string;
|
|
@@ -13495,6 +13922,7 @@ export declare class UpdateMJOpenAppInstallHistoryInput {
|
|
|
13495
13922
|
ErrorMessage?: string | null;
|
|
13496
13923
|
ErrorPhase?: string | null;
|
|
13497
13924
|
OldValues___?: KeyValuePairInput[];
|
|
13925
|
+
RestoreContext___?: RestoreContextInput;
|
|
13498
13926
|
}
|
|
13499
13927
|
export declare class RunMJOpenAppInstallHistoryViewResult {
|
|
13500
13928
|
Results: MJOpenAppInstallHistory_[];
|
|
@@ -13559,6 +13987,7 @@ export declare class CreateMJOpenAppInput {
|
|
|
13559
13987
|
ConfigurationSchemaJSON: string | null;
|
|
13560
13988
|
InstalledByUserID?: string;
|
|
13561
13989
|
Status?: string;
|
|
13990
|
+
RestoreContext___?: RestoreContextInput;
|
|
13562
13991
|
}
|
|
13563
13992
|
export declare class UpdateMJOpenAppInput {
|
|
13564
13993
|
ID: string;
|
|
@@ -13580,6 +14009,7 @@ export declare class UpdateMJOpenAppInput {
|
|
|
13580
14009
|
InstalledByUserID?: string;
|
|
13581
14010
|
Status?: string;
|
|
13582
14011
|
OldValues___?: KeyValuePairInput[];
|
|
14012
|
+
RestoreContext___?: RestoreContextInput;
|
|
13583
14013
|
}
|
|
13584
14014
|
export declare class RunMJOpenAppViewResult {
|
|
13585
14015
|
Results: MJOpenApp_[];
|
|
@@ -13614,12 +14044,14 @@ export declare class CreateMJOutputDeliveryTypeInput {
|
|
|
13614
14044
|
ID?: string;
|
|
13615
14045
|
Name?: string;
|
|
13616
14046
|
Description: string | null;
|
|
14047
|
+
RestoreContext___?: RestoreContextInput;
|
|
13617
14048
|
}
|
|
13618
14049
|
export declare class UpdateMJOutputDeliveryTypeInput {
|
|
13619
14050
|
ID: string;
|
|
13620
14051
|
Name?: string;
|
|
13621
14052
|
Description?: string | null;
|
|
13622
14053
|
OldValues___?: KeyValuePairInput[];
|
|
14054
|
+
RestoreContext___?: RestoreContextInput;
|
|
13623
14055
|
}
|
|
13624
14056
|
export declare class RunMJOutputDeliveryTypeViewResult {
|
|
13625
14057
|
Results: MJOutputDeliveryType_[];
|
|
@@ -13654,6 +14086,7 @@ export declare class CreateMJOutputFormatTypeInput {
|
|
|
13654
14086
|
Name?: string;
|
|
13655
14087
|
Description: string | null;
|
|
13656
14088
|
DisplayFormat: string | null;
|
|
14089
|
+
RestoreContext___?: RestoreContextInput;
|
|
13657
14090
|
}
|
|
13658
14091
|
export declare class UpdateMJOutputFormatTypeInput {
|
|
13659
14092
|
ID: string;
|
|
@@ -13661,6 +14094,7 @@ export declare class UpdateMJOutputFormatTypeInput {
|
|
|
13661
14094
|
Description?: string | null;
|
|
13662
14095
|
DisplayFormat?: string | null;
|
|
13663
14096
|
OldValues___?: KeyValuePairInput[];
|
|
14097
|
+
RestoreContext___?: RestoreContextInput;
|
|
13664
14098
|
}
|
|
13665
14099
|
export declare class RunMJOutputFormatTypeViewResult {
|
|
13666
14100
|
Results: MJOutputFormatType_[];
|
|
@@ -13693,12 +14127,14 @@ export declare class CreateMJOutputTriggerTypeInput {
|
|
|
13693
14127
|
ID?: string;
|
|
13694
14128
|
Name?: string;
|
|
13695
14129
|
Description: string | null;
|
|
14130
|
+
RestoreContext___?: RestoreContextInput;
|
|
13696
14131
|
}
|
|
13697
14132
|
export declare class UpdateMJOutputTriggerTypeInput {
|
|
13698
14133
|
ID: string;
|
|
13699
14134
|
Name?: string;
|
|
13700
14135
|
Description?: string | null;
|
|
13701
14136
|
OldValues___?: KeyValuePairInput[];
|
|
14137
|
+
RestoreContext___?: RestoreContextInput;
|
|
13702
14138
|
}
|
|
13703
14139
|
export declare class RunMJOutputTriggerTypeViewResult {
|
|
13704
14140
|
Results: MJOutputTriggerType_[];
|
|
@@ -13746,6 +14182,7 @@ export declare class CreateMJProjectInput {
|
|
|
13746
14182
|
Color: string | null;
|
|
13747
14183
|
Icon: string | null;
|
|
13748
14184
|
IsArchived?: boolean;
|
|
14185
|
+
RestoreContext___?: RestoreContextInput;
|
|
13749
14186
|
}
|
|
13750
14187
|
export declare class UpdateMJProjectInput {
|
|
13751
14188
|
ID: string;
|
|
@@ -13757,6 +14194,7 @@ export declare class UpdateMJProjectInput {
|
|
|
13757
14194
|
Icon?: string | null;
|
|
13758
14195
|
IsArchived?: boolean;
|
|
13759
14196
|
OldValues___?: KeyValuePairInput[];
|
|
14197
|
+
RestoreContext___?: RestoreContextInput;
|
|
13760
14198
|
}
|
|
13761
14199
|
export declare class RunMJProjectViewResult {
|
|
13762
14200
|
Results: MJProject_[];
|
|
@@ -13805,6 +14243,7 @@ export declare class CreateMJPublicLinkInput {
|
|
|
13805
14243
|
CurrentViews?: number;
|
|
13806
14244
|
UserID?: string;
|
|
13807
14245
|
IsActive?: boolean;
|
|
14246
|
+
RestoreContext___?: RestoreContextInput;
|
|
13808
14247
|
}
|
|
13809
14248
|
export declare class UpdateMJPublicLinkInput {
|
|
13810
14249
|
ID: string;
|
|
@@ -13818,6 +14257,7 @@ export declare class UpdateMJPublicLinkInput {
|
|
|
13818
14257
|
UserID?: string;
|
|
13819
14258
|
IsActive?: boolean;
|
|
13820
14259
|
OldValues___?: KeyValuePairInput[];
|
|
14260
|
+
RestoreContext___?: RestoreContextInput;
|
|
13821
14261
|
}
|
|
13822
14262
|
export declare class RunMJPublicLinkViewResult {
|
|
13823
14263
|
Results: MJPublicLink_[];
|
|
@@ -13897,6 +14337,7 @@ export declare class CreateMJQueryInput {
|
|
|
13897
14337
|
CacheValidationSQL: string | null;
|
|
13898
14338
|
SQLDialectID?: string;
|
|
13899
14339
|
Reusable?: boolean;
|
|
14340
|
+
RestoreContext___?: RestoreContextInput;
|
|
13900
14341
|
}
|
|
13901
14342
|
export declare class UpdateMJQueryInput {
|
|
13902
14343
|
ID: string;
|
|
@@ -13922,6 +14363,7 @@ export declare class UpdateMJQueryInput {
|
|
|
13922
14363
|
SQLDialectID?: string;
|
|
13923
14364
|
Reusable?: boolean;
|
|
13924
14365
|
OldValues___?: KeyValuePairInput[];
|
|
14366
|
+
RestoreContext___?: RestoreContextInput;
|
|
13925
14367
|
}
|
|
13926
14368
|
export declare class RunMJQueryViewResult {
|
|
13927
14369
|
Results: MJQuery_[];
|
|
@@ -13977,6 +14419,7 @@ export declare class CreateMJQueryCategoryInput {
|
|
|
13977
14419
|
DefaultCacheTTLMinutes: number | null;
|
|
13978
14420
|
DefaultCacheMaxSize: number | null;
|
|
13979
14421
|
CacheInheritanceEnabled?: boolean;
|
|
14422
|
+
RestoreContext___?: RestoreContextInput;
|
|
13980
14423
|
}
|
|
13981
14424
|
export declare class UpdateMJQueryCategoryInput {
|
|
13982
14425
|
ID: string;
|
|
@@ -13989,6 +14432,7 @@ export declare class UpdateMJQueryCategoryInput {
|
|
|
13989
14432
|
DefaultCacheMaxSize?: number | null;
|
|
13990
14433
|
CacheInheritanceEnabled?: boolean;
|
|
13991
14434
|
OldValues___?: KeyValuePairInput[];
|
|
14435
|
+
RestoreContext___?: RestoreContextInput;
|
|
13992
14436
|
}
|
|
13993
14437
|
export declare class RunMJQueryCategoryViewResult {
|
|
13994
14438
|
Results: MJQueryCategory_[];
|
|
@@ -14031,6 +14475,7 @@ export declare class CreateMJQueryDependencyInput {
|
|
|
14031
14475
|
Alias: string | null;
|
|
14032
14476
|
ParameterMapping: string | null;
|
|
14033
14477
|
DetectionMethod?: string;
|
|
14478
|
+
RestoreContext___?: RestoreContextInput;
|
|
14034
14479
|
}
|
|
14035
14480
|
export declare class UpdateMJQueryDependencyInput {
|
|
14036
14481
|
ID: string;
|
|
@@ -14041,6 +14486,7 @@ export declare class UpdateMJQueryDependencyInput {
|
|
|
14041
14486
|
ParameterMapping?: string | null;
|
|
14042
14487
|
DetectionMethod?: string;
|
|
14043
14488
|
OldValues___?: KeyValuePairInput[];
|
|
14489
|
+
RestoreContext___?: RestoreContextInput;
|
|
14044
14490
|
}
|
|
14045
14491
|
export declare class RunMJQueryDependencyViewResult {
|
|
14046
14492
|
Results: MJQueryDependency_[];
|
|
@@ -14077,6 +14523,7 @@ export declare class CreateMJQueryEntityInput {
|
|
|
14077
14523
|
EntityID?: string;
|
|
14078
14524
|
DetectionMethod?: string;
|
|
14079
14525
|
AutoDetectConfidenceScore: number | null;
|
|
14526
|
+
RestoreContext___?: RestoreContextInput;
|
|
14080
14527
|
}
|
|
14081
14528
|
export declare class UpdateMJQueryEntityInput {
|
|
14082
14529
|
ID: string;
|
|
@@ -14085,6 +14532,7 @@ export declare class UpdateMJQueryEntityInput {
|
|
|
14085
14532
|
DetectionMethod?: string;
|
|
14086
14533
|
AutoDetectConfidenceScore?: number | null;
|
|
14087
14534
|
OldValues___?: KeyValuePairInput[];
|
|
14535
|
+
RestoreContext___?: RestoreContextInput;
|
|
14088
14536
|
}
|
|
14089
14537
|
export declare class RunMJQueryEntityViewResult {
|
|
14090
14538
|
Results: MJQueryEntity_[];
|
|
@@ -14141,6 +14589,7 @@ export declare class CreateMJQueryFieldInput {
|
|
|
14141
14589
|
SummaryDescription: string | null;
|
|
14142
14590
|
DetectionMethod?: string;
|
|
14143
14591
|
AutoDetectConfidenceScore: number | null;
|
|
14592
|
+
RestoreContext___?: RestoreContextInput;
|
|
14144
14593
|
}
|
|
14145
14594
|
export declare class UpdateMJQueryFieldInput {
|
|
14146
14595
|
ID: string;
|
|
@@ -14159,6 +14608,7 @@ export declare class UpdateMJQueryFieldInput {
|
|
|
14159
14608
|
DetectionMethod?: string;
|
|
14160
14609
|
AutoDetectConfidenceScore?: number | null;
|
|
14161
14610
|
OldValues___?: KeyValuePairInput[];
|
|
14611
|
+
RestoreContext___?: RestoreContextInput;
|
|
14162
14612
|
}
|
|
14163
14613
|
export declare class RunMJQueryFieldViewResult {
|
|
14164
14614
|
Results: MJQueryField_[];
|
|
@@ -14206,6 +14656,7 @@ export declare class CreateMJQueryParameterInput {
|
|
|
14206
14656
|
ValidationFilters: string | null;
|
|
14207
14657
|
DetectionMethod?: string;
|
|
14208
14658
|
AutoDetectConfidenceScore: number | null;
|
|
14659
|
+
RestoreContext___?: RestoreContextInput;
|
|
14209
14660
|
}
|
|
14210
14661
|
export declare class UpdateMJQueryParameterInput {
|
|
14211
14662
|
ID: string;
|
|
@@ -14220,6 +14671,7 @@ export declare class UpdateMJQueryParameterInput {
|
|
|
14220
14671
|
DetectionMethod?: string;
|
|
14221
14672
|
AutoDetectConfidenceScore?: number | null;
|
|
14222
14673
|
OldValues___?: KeyValuePairInput[];
|
|
14674
|
+
RestoreContext___?: RestoreContextInput;
|
|
14223
14675
|
}
|
|
14224
14676
|
export declare class RunMJQueryParameterViewResult {
|
|
14225
14677
|
Results: MJQueryParameter_[];
|
|
@@ -14252,12 +14704,14 @@ export declare class CreateMJQueryPermissionInput {
|
|
|
14252
14704
|
ID?: string;
|
|
14253
14705
|
QueryID?: string;
|
|
14254
14706
|
RoleID?: string;
|
|
14707
|
+
RestoreContext___?: RestoreContextInput;
|
|
14255
14708
|
}
|
|
14256
14709
|
export declare class UpdateMJQueryPermissionInput {
|
|
14257
14710
|
ID: string;
|
|
14258
14711
|
QueryID?: string;
|
|
14259
14712
|
RoleID?: string;
|
|
14260
14713
|
OldValues___?: KeyValuePairInput[];
|
|
14714
|
+
RestoreContext___?: RestoreContextInput;
|
|
14261
14715
|
}
|
|
14262
14716
|
export declare class RunMJQueryPermissionViewResult {
|
|
14263
14717
|
Results: MJQueryPermission_[];
|
|
@@ -14292,6 +14746,7 @@ export declare class CreateMJQuerySQLInput {
|
|
|
14292
14746
|
QueryID?: string;
|
|
14293
14747
|
SQLDialectID?: string;
|
|
14294
14748
|
SQL?: string;
|
|
14749
|
+
RestoreContext___?: RestoreContextInput;
|
|
14295
14750
|
}
|
|
14296
14751
|
export declare class UpdateMJQuerySQLInput {
|
|
14297
14752
|
ID: string;
|
|
@@ -14299,6 +14754,7 @@ export declare class UpdateMJQuerySQLInput {
|
|
|
14299
14754
|
SQLDialectID?: string;
|
|
14300
14755
|
SQL?: string;
|
|
14301
14756
|
OldValues___?: KeyValuePairInput[];
|
|
14757
|
+
RestoreContext___?: RestoreContextInput;
|
|
14302
14758
|
}
|
|
14303
14759
|
export declare class RunMJQuerySQLViewResult {
|
|
14304
14760
|
Results: MJQuerySQL_[];
|
|
@@ -14344,6 +14800,7 @@ export declare class CreateMJQueueTaskInput {
|
|
|
14344
14800
|
Output: string | null;
|
|
14345
14801
|
ErrorMessage: string | null;
|
|
14346
14802
|
Comments: string | null;
|
|
14803
|
+
RestoreContext___?: RestoreContextInput;
|
|
14347
14804
|
}
|
|
14348
14805
|
export declare class UpdateMJQueueTaskInput {
|
|
14349
14806
|
ID: string;
|
|
@@ -14357,6 +14814,7 @@ export declare class UpdateMJQueueTaskInput {
|
|
|
14357
14814
|
ErrorMessage?: string | null;
|
|
14358
14815
|
Comments?: string | null;
|
|
14359
14816
|
OldValues___?: KeyValuePairInput[];
|
|
14817
|
+
RestoreContext___?: RestoreContextInput;
|
|
14360
14818
|
}
|
|
14361
14819
|
export declare class RunMJQueueTaskViewResult {
|
|
14362
14820
|
Results: MJQueueTask_[];
|
|
@@ -14394,6 +14852,7 @@ export declare class CreateMJQueueTypeInput {
|
|
|
14394
14852
|
DriverClass?: string;
|
|
14395
14853
|
DriverImportPath: string | null;
|
|
14396
14854
|
IsActive?: boolean;
|
|
14855
|
+
RestoreContext___?: RestoreContextInput;
|
|
14397
14856
|
}
|
|
14398
14857
|
export declare class UpdateMJQueueTypeInput {
|
|
14399
14858
|
ID: string;
|
|
@@ -14403,6 +14862,7 @@ export declare class UpdateMJQueueTypeInput {
|
|
|
14403
14862
|
DriverImportPath?: string | null;
|
|
14404
14863
|
IsActive?: boolean;
|
|
14405
14864
|
OldValues___?: KeyValuePairInput[];
|
|
14865
|
+
RestoreContext___?: RestoreContextInput;
|
|
14406
14866
|
}
|
|
14407
14867
|
export declare class RunMJQueueTypeViewResult {
|
|
14408
14868
|
Results: MJQueueType_[];
|
|
@@ -14464,6 +14924,7 @@ export declare class CreateMJQueueInput {
|
|
|
14464
14924
|
ProcessUserID: string | null;
|
|
14465
14925
|
ProcessUserName: string | null;
|
|
14466
14926
|
LastHeartbeat?: Date;
|
|
14927
|
+
RestoreContext___?: RestoreContextInput;
|
|
14467
14928
|
}
|
|
14468
14929
|
export declare class UpdateMJQueueInput {
|
|
14469
14930
|
ID: string;
|
|
@@ -14484,6 +14945,7 @@ export declare class UpdateMJQueueInput {
|
|
|
14484
14945
|
ProcessUserName?: string | null;
|
|
14485
14946
|
LastHeartbeat?: Date;
|
|
14486
14947
|
OldValues___?: KeyValuePairInput[];
|
|
14948
|
+
RestoreContext___?: RestoreContextInput;
|
|
14487
14949
|
}
|
|
14488
14950
|
export declare class RunMJQueueViewResult {
|
|
14489
14951
|
Results: MJQueue_[];
|
|
@@ -14521,6 +14983,7 @@ export declare class CreateMJRecommendationItemInput {
|
|
|
14521
14983
|
DestinationEntityID?: string;
|
|
14522
14984
|
DestinationEntityRecordID?: string;
|
|
14523
14985
|
MatchProbability: number | null;
|
|
14986
|
+
RestoreContext___?: RestoreContextInput;
|
|
14524
14987
|
}
|
|
14525
14988
|
export declare class UpdateMJRecommendationItemInput {
|
|
14526
14989
|
ID: string;
|
|
@@ -14529,6 +14992,7 @@ export declare class UpdateMJRecommendationItemInput {
|
|
|
14529
14992
|
DestinationEntityRecordID?: string;
|
|
14530
14993
|
MatchProbability?: number | null;
|
|
14531
14994
|
OldValues___?: KeyValuePairInput[];
|
|
14995
|
+
RestoreContext___?: RestoreContextInput;
|
|
14532
14996
|
}
|
|
14533
14997
|
export declare class RunMJRecommendationItemViewResult {
|
|
14534
14998
|
Results: MJRecommendationItem_[];
|
|
@@ -14560,12 +15024,14 @@ export declare class CreateMJRecommendationProviderInput {
|
|
|
14560
15024
|
ID?: string;
|
|
14561
15025
|
Name?: string;
|
|
14562
15026
|
Description: string | null;
|
|
15027
|
+
RestoreContext___?: RestoreContextInput;
|
|
14563
15028
|
}
|
|
14564
15029
|
export declare class UpdateMJRecommendationProviderInput {
|
|
14565
15030
|
ID: string;
|
|
14566
15031
|
Name?: string;
|
|
14567
15032
|
Description?: string | null;
|
|
14568
15033
|
OldValues___?: KeyValuePairInput[];
|
|
15034
|
+
RestoreContext___?: RestoreContextInput;
|
|
14569
15035
|
}
|
|
14570
15036
|
export declare class RunMJRecommendationProviderViewResult {
|
|
14571
15037
|
Results: MJRecommendationProvider_[];
|
|
@@ -14608,6 +15074,7 @@ export declare class CreateMJRecommendationRunInput {
|
|
|
14608
15074
|
Status?: string;
|
|
14609
15075
|
Description: string | null;
|
|
14610
15076
|
RunByUserID?: string;
|
|
15077
|
+
RestoreContext___?: RestoreContextInput;
|
|
14611
15078
|
}
|
|
14612
15079
|
export declare class UpdateMJRecommendationRunInput {
|
|
14613
15080
|
ID: string;
|
|
@@ -14618,6 +15085,7 @@ export declare class UpdateMJRecommendationRunInput {
|
|
|
14618
15085
|
Description?: string | null;
|
|
14619
15086
|
RunByUserID?: string;
|
|
14620
15087
|
OldValues___?: KeyValuePairInput[];
|
|
15088
|
+
RestoreContext___?: RestoreContextInput;
|
|
14621
15089
|
}
|
|
14622
15090
|
export declare class RunMJRecommendationRunViewResult {
|
|
14623
15091
|
Results: MJRecommendationRun_[];
|
|
@@ -14654,6 +15122,7 @@ export declare class CreateMJRecommendationInput {
|
|
|
14654
15122
|
RecommendationRunID?: string;
|
|
14655
15123
|
SourceEntityID?: string;
|
|
14656
15124
|
SourceEntityRecordID?: string;
|
|
15125
|
+
RestoreContext___?: RestoreContextInput;
|
|
14657
15126
|
}
|
|
14658
15127
|
export declare class UpdateMJRecommendationInput {
|
|
14659
15128
|
ID: string;
|
|
@@ -14661,6 +15130,7 @@ export declare class UpdateMJRecommendationInput {
|
|
|
14661
15130
|
SourceEntityID?: string;
|
|
14662
15131
|
SourceEntityRecordID?: string;
|
|
14663
15132
|
OldValues___?: KeyValuePairInput[];
|
|
15133
|
+
RestoreContext___?: RestoreContextInput;
|
|
14664
15134
|
}
|
|
14665
15135
|
export declare class RunMJRecommendationViewResult {
|
|
14666
15136
|
Results: MJRecommendation_[];
|
|
@@ -14698,6 +15168,7 @@ export declare class CreateMJRecordChangeReplayRunInput {
|
|
|
14698
15168
|
EndedAt: Date | null;
|
|
14699
15169
|
Status?: string;
|
|
14700
15170
|
UserID?: string;
|
|
15171
|
+
RestoreContext___?: RestoreContextInput;
|
|
14701
15172
|
}
|
|
14702
15173
|
export declare class UpdateMJRecordChangeReplayRunInput {
|
|
14703
15174
|
ID: string;
|
|
@@ -14706,6 +15177,7 @@ export declare class UpdateMJRecordChangeReplayRunInput {
|
|
|
14706
15177
|
Status?: string;
|
|
14707
15178
|
UserID?: string;
|
|
14708
15179
|
OldValues___?: KeyValuePairInput[];
|
|
15180
|
+
RestoreContext___?: RestoreContextInput;
|
|
14709
15181
|
}
|
|
14710
15182
|
export declare class RunMJRecordChangeReplayRunViewResult {
|
|
14711
15183
|
Results: MJRecordChangeReplayRun_[];
|
|
@@ -14744,11 +15216,16 @@ export declare class MJRecordChange_ {
|
|
|
14744
15216
|
Comments?: string;
|
|
14745
15217
|
CreatedAt: Date;
|
|
14746
15218
|
UpdatedAt: Date;
|
|
15219
|
+
RestoredFromID?: string;
|
|
15220
|
+
RestoreReason?: string;
|
|
14747
15221
|
Entity: string;
|
|
14748
15222
|
User: string;
|
|
14749
15223
|
ReplayRun?: string;
|
|
14750
15224
|
Integration?: string;
|
|
15225
|
+
RestoredFrom?: string;
|
|
15226
|
+
RootRestoredFromID?: string;
|
|
14751
15227
|
MJVersionLabelItems_RecordChangeIDArray: MJVersionLabelItem_[];
|
|
15228
|
+
MJRecordChanges_RestoredFromIDArray: MJRecordChange_[];
|
|
14752
15229
|
}
|
|
14753
15230
|
export declare class CreateMJRecordChangeInput {
|
|
14754
15231
|
ID?: string;
|
|
@@ -14766,6 +15243,9 @@ export declare class CreateMJRecordChangeInput {
|
|
|
14766
15243
|
ReplayRunID: string | null;
|
|
14767
15244
|
IntegrationID: string | null;
|
|
14768
15245
|
Comments: string | null;
|
|
15246
|
+
RestoredFromID: string | null;
|
|
15247
|
+
RestoreReason: string | null;
|
|
15248
|
+
RestoreContext___?: RestoreContextInput;
|
|
14769
15249
|
}
|
|
14770
15250
|
export declare class UpdateMJRecordChangeInput {
|
|
14771
15251
|
ID: string;
|
|
@@ -14783,7 +15263,10 @@ export declare class UpdateMJRecordChangeInput {
|
|
|
14783
15263
|
ReplayRunID?: string | null;
|
|
14784
15264
|
IntegrationID?: string | null;
|
|
14785
15265
|
Comments?: string | null;
|
|
15266
|
+
RestoredFromID?: string | null;
|
|
15267
|
+
RestoreReason?: string | null;
|
|
14786
15268
|
OldValues___?: KeyValuePairInput[];
|
|
15269
|
+
RestoreContext___?: RestoreContextInput;
|
|
14787
15270
|
}
|
|
14788
15271
|
export declare class RunMJRecordChangeViewResult {
|
|
14789
15272
|
Results: MJRecordChange_[];
|
|
@@ -14800,6 +15283,7 @@ export declare class MJRecordChangeResolver extends ResolverBase {
|
|
|
14800
15283
|
RunMJRecordChangeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14801
15284
|
MJRecordChange(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRecordChange_ | null>;
|
|
14802
15285
|
MJVersionLabelItems_RecordChangeIDArray(mjrecordchange_: MJRecordChange_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15286
|
+
MJRecordChanges_RestoredFromIDArray(mjrecordchange_: MJRecordChange_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14803
15287
|
CreateMJRecordChange(input: CreateMJRecordChangeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14804
15288
|
UpdateMJRecordChange(input: UpdateMJRecordChangeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14805
15289
|
DeleteMJRecordChange(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -14842,6 +15326,7 @@ export declare class CreateMJRecordGeoCodeInput {
|
|
|
14842
15326
|
SourceFieldHash: string | null;
|
|
14843
15327
|
GeocodedAt: Date | null;
|
|
14844
15328
|
GeocodingSource: string | null;
|
|
15329
|
+
RestoreContext___?: RestoreContextInput;
|
|
14845
15330
|
}
|
|
14846
15331
|
export declare class UpdateMJRecordGeoCodeInput {
|
|
14847
15332
|
ID: string;
|
|
@@ -14860,6 +15345,7 @@ export declare class UpdateMJRecordGeoCodeInput {
|
|
|
14860
15345
|
GeocodedAt?: Date | null;
|
|
14861
15346
|
GeocodingSource?: string | null;
|
|
14862
15347
|
OldValues___?: KeyValuePairInput[];
|
|
15348
|
+
RestoreContext___?: RestoreContextInput;
|
|
14863
15349
|
}
|
|
14864
15350
|
export declare class RunMJRecordGeoCodeViewResult {
|
|
14865
15351
|
Results: MJRecordGeoCode_[];
|
|
@@ -14902,6 +15388,7 @@ export declare class CreateMJRecordLinkInput {
|
|
|
14902
15388
|
LinkType: string | null;
|
|
14903
15389
|
Sequence: number | null;
|
|
14904
15390
|
Metadata: string | null;
|
|
15391
|
+
RestoreContext___?: RestoreContextInput;
|
|
14905
15392
|
}
|
|
14906
15393
|
export declare class UpdateMJRecordLinkInput {
|
|
14907
15394
|
ID: string;
|
|
@@ -14913,6 +15400,7 @@ export declare class UpdateMJRecordLinkInput {
|
|
|
14913
15400
|
Sequence?: number | null;
|
|
14914
15401
|
Metadata?: string | null;
|
|
14915
15402
|
OldValues___?: KeyValuePairInput[];
|
|
15403
|
+
RestoreContext___?: RestoreContextInput;
|
|
14916
15404
|
}
|
|
14917
15405
|
export declare class RunMJRecordLinkViewResult {
|
|
14918
15406
|
Results: MJRecordLink_[];
|
|
@@ -14948,6 +15436,7 @@ export declare class CreateMJRecordMergeDeletionLogInput {
|
|
|
14948
15436
|
DeletedRecordID?: string;
|
|
14949
15437
|
Status?: string;
|
|
14950
15438
|
ProcessingLog: string | null;
|
|
15439
|
+
RestoreContext___?: RestoreContextInput;
|
|
14951
15440
|
}
|
|
14952
15441
|
export declare class UpdateMJRecordMergeDeletionLogInput {
|
|
14953
15442
|
ID: string;
|
|
@@ -14956,6 +15445,7 @@ export declare class UpdateMJRecordMergeDeletionLogInput {
|
|
|
14956
15445
|
Status?: string;
|
|
14957
15446
|
ProcessingLog?: string | null;
|
|
14958
15447
|
OldValues___?: KeyValuePairInput[];
|
|
15448
|
+
RestoreContext___?: RestoreContextInput;
|
|
14959
15449
|
}
|
|
14960
15450
|
export declare class RunMJRecordMergeDeletionLogViewResult {
|
|
14961
15451
|
Results: MJRecordMergeDeletionLog_[];
|
|
@@ -15007,6 +15497,7 @@ export declare class CreateMJRecordMergeLogInput {
|
|
|
15007
15497
|
ProcessingEndedAt: Date | null;
|
|
15008
15498
|
ProcessingLog: string | null;
|
|
15009
15499
|
Comments: string | null;
|
|
15500
|
+
RestoreContext___?: RestoreContextInput;
|
|
15010
15501
|
}
|
|
15011
15502
|
export declare class UpdateMJRecordMergeLogInput {
|
|
15012
15503
|
ID: string;
|
|
@@ -15021,6 +15512,7 @@ export declare class UpdateMJRecordMergeLogInput {
|
|
|
15021
15512
|
ProcessingLog?: string | null;
|
|
15022
15513
|
Comments?: string | null;
|
|
15023
15514
|
OldValues___?: KeyValuePairInput[];
|
|
15515
|
+
RestoreContext___?: RestoreContextInput;
|
|
15024
15516
|
}
|
|
15025
15517
|
export declare class RunMJRecordMergeLogViewResult {
|
|
15026
15518
|
Results: MJRecordMergeLog_[];
|
|
@@ -15062,6 +15554,7 @@ export declare class CreateMJReportCategoryInput {
|
|
|
15062
15554
|
Description: string | null;
|
|
15063
15555
|
ParentID: string | null;
|
|
15064
15556
|
UserID?: string;
|
|
15557
|
+
RestoreContext___?: RestoreContextInput;
|
|
15065
15558
|
}
|
|
15066
15559
|
export declare class UpdateMJReportCategoryInput {
|
|
15067
15560
|
ID: string;
|
|
@@ -15070,6 +15563,7 @@ export declare class UpdateMJReportCategoryInput {
|
|
|
15070
15563
|
ParentID?: string | null;
|
|
15071
15564
|
UserID?: string;
|
|
15072
15565
|
OldValues___?: KeyValuePairInput[];
|
|
15566
|
+
RestoreContext___?: RestoreContextInput;
|
|
15073
15567
|
}
|
|
15074
15568
|
export declare class RunMJReportCategoryViewResult {
|
|
15075
15569
|
Results: MJReportCategory_[];
|
|
@@ -15106,6 +15600,7 @@ export declare class CreateMJReportSnapshotInput {
|
|
|
15106
15600
|
ReportID?: string;
|
|
15107
15601
|
ResultSet?: string;
|
|
15108
15602
|
UserID?: string;
|
|
15603
|
+
RestoreContext___?: RestoreContextInput;
|
|
15109
15604
|
}
|
|
15110
15605
|
export declare class UpdateMJReportSnapshotInput {
|
|
15111
15606
|
ID: string;
|
|
@@ -15113,6 +15608,7 @@ export declare class UpdateMJReportSnapshotInput {
|
|
|
15113
15608
|
ResultSet?: string;
|
|
15114
15609
|
UserID?: string;
|
|
15115
15610
|
OldValues___?: KeyValuePairInput[];
|
|
15611
|
+
RestoreContext___?: RestoreContextInput;
|
|
15116
15612
|
}
|
|
15117
15613
|
export declare class RunMJReportSnapshotViewResult {
|
|
15118
15614
|
Results: MJReportSnapshot_[];
|
|
@@ -15147,6 +15643,7 @@ export declare class CreateMJReportUserStateInput {
|
|
|
15147
15643
|
ReportID?: string;
|
|
15148
15644
|
UserID?: string;
|
|
15149
15645
|
ReportState: string | null;
|
|
15646
|
+
RestoreContext___?: RestoreContextInput;
|
|
15150
15647
|
}
|
|
15151
15648
|
export declare class UpdateMJReportUserStateInput {
|
|
15152
15649
|
ID: string;
|
|
@@ -15154,6 +15651,7 @@ export declare class UpdateMJReportUserStateInput {
|
|
|
15154
15651
|
UserID?: string;
|
|
15155
15652
|
ReportState?: string | null;
|
|
15156
15653
|
OldValues___?: KeyValuePairInput[];
|
|
15654
|
+
RestoreContext___?: RestoreContextInput;
|
|
15157
15655
|
}
|
|
15158
15656
|
export declare class RunMJReportUserStateViewResult {
|
|
15159
15657
|
Results: MJReportUserState_[];
|
|
@@ -15193,6 +15691,7 @@ export declare class CreateMJReportVersionInput {
|
|
|
15193
15691
|
Description: string | null;
|
|
15194
15692
|
Configuration: string | null;
|
|
15195
15693
|
DataContextUpdated?: boolean;
|
|
15694
|
+
RestoreContext___?: RestoreContextInput;
|
|
15196
15695
|
}
|
|
15197
15696
|
export declare class UpdateMJReportVersionInput {
|
|
15198
15697
|
ID: string;
|
|
@@ -15203,6 +15702,7 @@ export declare class UpdateMJReportVersionInput {
|
|
|
15203
15702
|
Configuration?: string | null;
|
|
15204
15703
|
DataContextUpdated?: boolean;
|
|
15205
15704
|
OldValues___?: KeyValuePairInput[];
|
|
15705
|
+
RestoreContext___?: RestoreContextInput;
|
|
15206
15706
|
}
|
|
15207
15707
|
export declare class RunMJReportVersionViewResult {
|
|
15208
15708
|
Results: MJReportVersion_[];
|
|
@@ -15276,6 +15776,7 @@ export declare class CreateMJReportInput {
|
|
|
15276
15776
|
OutputWorkflowID: string | null;
|
|
15277
15777
|
Thumbnail: string | null;
|
|
15278
15778
|
EnvironmentID?: string;
|
|
15779
|
+
RestoreContext___?: RestoreContextInput;
|
|
15279
15780
|
}
|
|
15280
15781
|
export declare class UpdateMJReportInput {
|
|
15281
15782
|
ID: string;
|
|
@@ -15297,6 +15798,7 @@ export declare class UpdateMJReportInput {
|
|
|
15297
15798
|
Thumbnail?: string | null;
|
|
15298
15799
|
EnvironmentID?: string;
|
|
15299
15800
|
OldValues___?: KeyValuePairInput[];
|
|
15801
|
+
RestoreContext___?: RestoreContextInput;
|
|
15300
15802
|
}
|
|
15301
15803
|
export declare class RunMJReportViewResult {
|
|
15302
15804
|
Results: MJReport_[];
|
|
@@ -15336,6 +15838,7 @@ export declare class CreateMJResourceLinkInput {
|
|
|
15336
15838
|
ResourceTypeID?: string;
|
|
15337
15839
|
ResourceRecordID?: string;
|
|
15338
15840
|
FolderID: string | null;
|
|
15841
|
+
RestoreContext___?: RestoreContextInput;
|
|
15339
15842
|
}
|
|
15340
15843
|
export declare class UpdateMJResourceLinkInput {
|
|
15341
15844
|
ID: string;
|
|
@@ -15344,6 +15847,7 @@ export declare class UpdateMJResourceLinkInput {
|
|
|
15344
15847
|
ResourceRecordID?: string;
|
|
15345
15848
|
FolderID?: string | null;
|
|
15346
15849
|
OldValues___?: KeyValuePairInput[];
|
|
15850
|
+
RestoreContext___?: RestoreContextInput;
|
|
15347
15851
|
}
|
|
15348
15852
|
export declare class RunMJResourceLinkViewResult {
|
|
15349
15853
|
Results: MJResourceLink_[];
|
|
@@ -15391,6 +15895,7 @@ export declare class CreateMJResourcePermissionInput {
|
|
|
15391
15895
|
UserID: string | null;
|
|
15392
15896
|
PermissionLevel: string | null;
|
|
15393
15897
|
Status?: string;
|
|
15898
|
+
RestoreContext___?: RestoreContextInput;
|
|
15394
15899
|
}
|
|
15395
15900
|
export declare class UpdateMJResourcePermissionInput {
|
|
15396
15901
|
ID: string;
|
|
@@ -15404,6 +15909,7 @@ export declare class UpdateMJResourcePermissionInput {
|
|
|
15404
15909
|
PermissionLevel?: string | null;
|
|
15405
15910
|
Status?: string;
|
|
15406
15911
|
OldValues___?: KeyValuePairInput[];
|
|
15912
|
+
RestoreContext___?: RestoreContextInput;
|
|
15407
15913
|
}
|
|
15408
15914
|
export declare class RunMJResourcePermissionViewResult {
|
|
15409
15915
|
Results: MJResourcePermission_[];
|
|
@@ -15450,6 +15956,7 @@ export declare class CreateMJResourceTypeInput {
|
|
|
15450
15956
|
EntityID: string | null;
|
|
15451
15957
|
CategoryEntityID: string | null;
|
|
15452
15958
|
DriverClass: string | null;
|
|
15959
|
+
RestoreContext___?: RestoreContextInput;
|
|
15453
15960
|
}
|
|
15454
15961
|
export declare class UpdateMJResourceTypeInput {
|
|
15455
15962
|
ID: string;
|
|
@@ -15461,6 +15968,7 @@ export declare class UpdateMJResourceTypeInput {
|
|
|
15461
15968
|
CategoryEntityID?: string | null;
|
|
15462
15969
|
DriverClass?: string | null;
|
|
15463
15970
|
OldValues___?: KeyValuePairInput[];
|
|
15971
|
+
RestoreContext___?: RestoreContextInput;
|
|
15464
15972
|
}
|
|
15465
15973
|
export declare class RunMJResourceTypeViewResult {
|
|
15466
15974
|
Results: MJResourceType_[];
|
|
@@ -15509,6 +16017,7 @@ export declare class CreateMJRoleInput {
|
|
|
15509
16017
|
Description: string | null;
|
|
15510
16018
|
DirectoryID: string | null;
|
|
15511
16019
|
SQLName: string | null;
|
|
16020
|
+
RestoreContext___?: RestoreContextInput;
|
|
15512
16021
|
}
|
|
15513
16022
|
export declare class UpdateMJRoleInput {
|
|
15514
16023
|
ID: string;
|
|
@@ -15517,6 +16026,7 @@ export declare class UpdateMJRoleInput {
|
|
|
15517
16026
|
DirectoryID?: string | null;
|
|
15518
16027
|
SQLName?: string | null;
|
|
15519
16028
|
OldValues___?: KeyValuePairInput[];
|
|
16029
|
+
RestoreContext___?: RestoreContextInput;
|
|
15520
16030
|
}
|
|
15521
16031
|
export declare class RunMJRoleViewResult {
|
|
15522
16032
|
Results: MJRole_[];
|
|
@@ -15564,6 +16074,7 @@ export declare class CreateMJRowLevelSecurityFilterInput {
|
|
|
15564
16074
|
Name?: string;
|
|
15565
16075
|
Description: string | null;
|
|
15566
16076
|
FilterText: string | null;
|
|
16077
|
+
RestoreContext___?: RestoreContextInput;
|
|
15567
16078
|
}
|
|
15568
16079
|
export declare class UpdateMJRowLevelSecurityFilterInput {
|
|
15569
16080
|
ID: string;
|
|
@@ -15571,6 +16082,7 @@ export declare class UpdateMJRowLevelSecurityFilterInput {
|
|
|
15571
16082
|
Description?: string | null;
|
|
15572
16083
|
FilterText?: string | null;
|
|
15573
16084
|
OldValues___?: KeyValuePairInput[];
|
|
16085
|
+
RestoreContext___?: RestoreContextInput;
|
|
15574
16086
|
}
|
|
15575
16087
|
export declare class RunMJRowLevelSecurityFilterViewResult {
|
|
15576
16088
|
Results: MJRowLevelSecurityFilter_[];
|
|
@@ -15614,6 +16126,7 @@ export declare class CreateMJScheduledActionParamInput {
|
|
|
15614
16126
|
ValueType?: string;
|
|
15615
16127
|
Value: string | null;
|
|
15616
16128
|
Comments: string | null;
|
|
16129
|
+
RestoreContext___?: RestoreContextInput;
|
|
15617
16130
|
}
|
|
15618
16131
|
export declare class UpdateMJScheduledActionParamInput {
|
|
15619
16132
|
ID: string;
|
|
@@ -15623,6 +16136,7 @@ export declare class UpdateMJScheduledActionParamInput {
|
|
|
15623
16136
|
Value?: string | null;
|
|
15624
16137
|
Comments?: string | null;
|
|
15625
16138
|
OldValues___?: KeyValuePairInput[];
|
|
16139
|
+
RestoreContext___?: RestoreContextInput;
|
|
15626
16140
|
}
|
|
15627
16141
|
export declare class RunMJScheduledActionParamViewResult {
|
|
15628
16142
|
Results: MJScheduledActionParam_[];
|
|
@@ -15679,6 +16193,7 @@ export declare class CreateMJScheduledActionInput {
|
|
|
15679
16193
|
DayOfMonth: number | null;
|
|
15680
16194
|
Month: string | null;
|
|
15681
16195
|
CustomCronExpression: string | null;
|
|
16196
|
+
RestoreContext___?: RestoreContextInput;
|
|
15682
16197
|
}
|
|
15683
16198
|
export declare class UpdateMJScheduledActionInput {
|
|
15684
16199
|
ID: string;
|
|
@@ -15696,6 +16211,7 @@ export declare class UpdateMJScheduledActionInput {
|
|
|
15696
16211
|
Month?: string | null;
|
|
15697
16212
|
CustomCronExpression?: string | null;
|
|
15698
16213
|
OldValues___?: KeyValuePairInput[];
|
|
16214
|
+
RestoreContext___?: RestoreContextInput;
|
|
15699
16215
|
}
|
|
15700
16216
|
export declare class RunMJScheduledActionViewResult {
|
|
15701
16217
|
Results: MJScheduledAction_[];
|
|
@@ -15746,6 +16262,7 @@ export declare class CreateMJScheduledJobRunInput {
|
|
|
15746
16262
|
Details: string | null;
|
|
15747
16263
|
ExecutedByUserID: string | null;
|
|
15748
16264
|
QueuedAt: Date | null;
|
|
16265
|
+
RestoreContext___?: RestoreContextInput;
|
|
15749
16266
|
}
|
|
15750
16267
|
export declare class UpdateMJScheduledJobRunInput {
|
|
15751
16268
|
ID: string;
|
|
@@ -15759,6 +16276,7 @@ export declare class UpdateMJScheduledJobRunInput {
|
|
|
15759
16276
|
ExecutedByUserID?: string | null;
|
|
15760
16277
|
QueuedAt?: Date | null;
|
|
15761
16278
|
OldValues___?: KeyValuePairInput[];
|
|
16279
|
+
RestoreContext___?: RestoreContextInput;
|
|
15762
16280
|
}
|
|
15763
16281
|
export declare class RunMJScheduledJobRunViewResult {
|
|
15764
16282
|
Results: MJScheduledJobRun_[];
|
|
@@ -15800,6 +16318,7 @@ export declare class CreateMJScheduledJobTypeInput {
|
|
|
15800
16318
|
DomainRunEntity: string | null;
|
|
15801
16319
|
DomainRunEntityFKey: string | null;
|
|
15802
16320
|
NotificationsAvailable?: boolean;
|
|
16321
|
+
RestoreContext___?: RestoreContextInput;
|
|
15803
16322
|
}
|
|
15804
16323
|
export declare class UpdateMJScheduledJobTypeInput {
|
|
15805
16324
|
ID: string;
|
|
@@ -15810,6 +16329,7 @@ export declare class UpdateMJScheduledJobTypeInput {
|
|
|
15810
16329
|
DomainRunEntityFKey?: string | null;
|
|
15811
16330
|
NotificationsAvailable?: boolean;
|
|
15812
16331
|
OldValues___?: KeyValuePairInput[];
|
|
16332
|
+
RestoreContext___?: RestoreContextInput;
|
|
15813
16333
|
}
|
|
15814
16334
|
export declare class RunMJScheduledJobTypeViewResult {
|
|
15815
16335
|
Results: MJScheduledJobType_[];
|
|
@@ -15892,6 +16412,7 @@ export declare class CreateMJScheduledJobInput {
|
|
|
15892
16412
|
LockedByInstance: string | null;
|
|
15893
16413
|
ExpectedCompletionAt: Date | null;
|
|
15894
16414
|
ConcurrencyMode?: string;
|
|
16415
|
+
RestoreContext___?: RestoreContextInput;
|
|
15895
16416
|
}
|
|
15896
16417
|
export declare class UpdateMJScheduledJobInput {
|
|
15897
16418
|
ID: string;
|
|
@@ -15921,6 +16442,7 @@ export declare class UpdateMJScheduledJobInput {
|
|
|
15921
16442
|
ExpectedCompletionAt?: Date | null;
|
|
15922
16443
|
ConcurrencyMode?: string;
|
|
15923
16444
|
OldValues___?: KeyValuePairInput[];
|
|
16445
|
+
RestoreContext___?: RestoreContextInput;
|
|
15924
16446
|
}
|
|
15925
16447
|
export declare class RunMJScheduledJobViewResult {
|
|
15926
16448
|
Results: MJScheduledJob_[];
|
|
@@ -15963,6 +16485,7 @@ export declare class CreateMJSchemaInfoInput {
|
|
|
15963
16485
|
Description: string | null;
|
|
15964
16486
|
EntityNamePrefix: string | null;
|
|
15965
16487
|
EntityNameSuffix: string | null;
|
|
16488
|
+
RestoreContext___?: RestoreContextInput;
|
|
15966
16489
|
}
|
|
15967
16490
|
export declare class UpdateMJSchemaInfoInput {
|
|
15968
16491
|
ID: string;
|
|
@@ -15974,6 +16497,7 @@ export declare class UpdateMJSchemaInfoInput {
|
|
|
15974
16497
|
EntityNamePrefix?: string | null;
|
|
15975
16498
|
EntityNameSuffix?: string | null;
|
|
15976
16499
|
OldValues___?: KeyValuePairInput[];
|
|
16500
|
+
RestoreContext___?: RestoreContextInput;
|
|
15977
16501
|
}
|
|
15978
16502
|
export declare class RunMJSchemaInfoViewResult {
|
|
15979
16503
|
Results: MJSchemaInfo_[];
|
|
@@ -16025,6 +16549,7 @@ export declare class CreateMJSearchProviderInput {
|
|
|
16025
16549
|
DisplayName: string | null;
|
|
16026
16550
|
Icon: string | null;
|
|
16027
16551
|
Comments: string | null;
|
|
16552
|
+
RestoreContext___?: RestoreContextInput;
|
|
16028
16553
|
}
|
|
16029
16554
|
export declare class UpdateMJSearchProviderInput {
|
|
16030
16555
|
ID: string;
|
|
@@ -16041,6 +16566,7 @@ export declare class UpdateMJSearchProviderInput {
|
|
|
16041
16566
|
Icon?: string | null;
|
|
16042
16567
|
Comments?: string | null;
|
|
16043
16568
|
OldValues___?: KeyValuePairInput[];
|
|
16569
|
+
RestoreContext___?: RestoreContextInput;
|
|
16044
16570
|
}
|
|
16045
16571
|
export declare class RunMJSearchProviderViewResult {
|
|
16046
16572
|
Results: MJSearchProvider_[];
|
|
@@ -16075,12 +16601,14 @@ export declare class CreateMJSkillInput {
|
|
|
16075
16601
|
ID?: string;
|
|
16076
16602
|
Name?: string;
|
|
16077
16603
|
ParentID: string | null;
|
|
16604
|
+
RestoreContext___?: RestoreContextInput;
|
|
16078
16605
|
}
|
|
16079
16606
|
export declare class UpdateMJSkillInput {
|
|
16080
16607
|
ID: string;
|
|
16081
16608
|
Name?: string;
|
|
16082
16609
|
ParentID?: string | null;
|
|
16083
16610
|
OldValues___?: KeyValuePairInput[];
|
|
16611
|
+
RestoreContext___?: RestoreContextInput;
|
|
16084
16612
|
}
|
|
16085
16613
|
export declare class RunMJSkillViewResult {
|
|
16086
16614
|
Results: MJSkill_[];
|
|
@@ -16128,6 +16656,7 @@ export declare class CreateMJSQLDialectInput {
|
|
|
16128
16656
|
WebURL: string | null;
|
|
16129
16657
|
Icon: string | null;
|
|
16130
16658
|
Description: string | null;
|
|
16659
|
+
RestoreContext___?: RestoreContextInput;
|
|
16131
16660
|
}
|
|
16132
16661
|
export declare class UpdateMJSQLDialectInput {
|
|
16133
16662
|
ID: string;
|
|
@@ -16140,6 +16669,7 @@ export declare class UpdateMJSQLDialectInput {
|
|
|
16140
16669
|
Icon?: string | null;
|
|
16141
16670
|
Description?: string | null;
|
|
16142
16671
|
OldValues___?: KeyValuePairInput[];
|
|
16672
|
+
RestoreContext___?: RestoreContextInput;
|
|
16143
16673
|
}
|
|
16144
16674
|
export declare class RunMJSQLDialectViewResult {
|
|
16145
16675
|
Results: MJSQLDialect_[];
|
|
@@ -16186,6 +16716,7 @@ export declare class CreateMJStateProvinceInput {
|
|
|
16186
16716
|
Longitude: number | null;
|
|
16187
16717
|
BoundaryGeoJSON: string | null;
|
|
16188
16718
|
CommonAliases: string | null;
|
|
16719
|
+
RestoreContext___?: RestoreContextInput;
|
|
16189
16720
|
}
|
|
16190
16721
|
export declare class UpdateMJStateProvinceInput {
|
|
16191
16722
|
ID: string;
|
|
@@ -16198,6 +16729,7 @@ export declare class UpdateMJStateProvinceInput {
|
|
|
16198
16729
|
BoundaryGeoJSON?: string | null;
|
|
16199
16730
|
CommonAliases?: string | null;
|
|
16200
16731
|
OldValues___?: KeyValuePairInput[];
|
|
16732
|
+
RestoreContext___?: RestoreContextInput;
|
|
16201
16733
|
}
|
|
16202
16734
|
export declare class RunMJStateProvinceViewResult {
|
|
16203
16735
|
Results: MJStateProvince_[];
|
|
@@ -16238,6 +16770,7 @@ export declare class CreateMJTagAuditLogInput {
|
|
|
16238
16770
|
Details: string | null;
|
|
16239
16771
|
PerformedByUserID?: string;
|
|
16240
16772
|
RelatedTagID: string | null;
|
|
16773
|
+
RestoreContext___?: RestoreContextInput;
|
|
16241
16774
|
}
|
|
16242
16775
|
export declare class UpdateMJTagAuditLogInput {
|
|
16243
16776
|
ID: string;
|
|
@@ -16247,6 +16780,7 @@ export declare class UpdateMJTagAuditLogInput {
|
|
|
16247
16780
|
PerformedByUserID?: string;
|
|
16248
16781
|
RelatedTagID?: string | null;
|
|
16249
16782
|
OldValues___?: KeyValuePairInput[];
|
|
16783
|
+
RestoreContext___?: RestoreContextInput;
|
|
16250
16784
|
}
|
|
16251
16785
|
export declare class RunMJTagAuditLogViewResult {
|
|
16252
16786
|
Results: MJTagAuditLog_[];
|
|
@@ -16283,6 +16817,7 @@ export declare class CreateMJTagCoOccurrenceInput {
|
|
|
16283
16817
|
TagBID?: string;
|
|
16284
16818
|
CoOccurrenceCount?: number;
|
|
16285
16819
|
LastComputedAt?: Date;
|
|
16820
|
+
RestoreContext___?: RestoreContextInput;
|
|
16286
16821
|
}
|
|
16287
16822
|
export declare class UpdateMJTagCoOccurrenceInput {
|
|
16288
16823
|
ID: string;
|
|
@@ -16291,6 +16826,7 @@ export declare class UpdateMJTagCoOccurrenceInput {
|
|
|
16291
16826
|
CoOccurrenceCount?: number;
|
|
16292
16827
|
LastComputedAt?: Date;
|
|
16293
16828
|
OldValues___?: KeyValuePairInput[];
|
|
16829
|
+
RestoreContext___?: RestoreContextInput;
|
|
16294
16830
|
}
|
|
16295
16831
|
export declare class RunMJTagCoOccurrenceViewResult {
|
|
16296
16832
|
Results: MJTagCoOccurrence_[];
|
|
@@ -16327,6 +16863,7 @@ export declare class CreateMJTaggedItemInput {
|
|
|
16327
16863
|
EntityID?: string;
|
|
16328
16864
|
RecordID?: string;
|
|
16329
16865
|
Weight?: number;
|
|
16866
|
+
RestoreContext___?: RestoreContextInput;
|
|
16330
16867
|
}
|
|
16331
16868
|
export declare class UpdateMJTaggedItemInput {
|
|
16332
16869
|
ID: string;
|
|
@@ -16335,6 +16872,7 @@ export declare class UpdateMJTaggedItemInput {
|
|
|
16335
16872
|
RecordID?: string;
|
|
16336
16873
|
Weight?: number;
|
|
16337
16874
|
OldValues___?: KeyValuePairInput[];
|
|
16875
|
+
RestoreContext___?: RestoreContextInput;
|
|
16338
16876
|
}
|
|
16339
16877
|
export declare class RunMJTaggedItemViewResult {
|
|
16340
16878
|
Results: MJTaggedItem_[];
|
|
@@ -16385,6 +16923,7 @@ export declare class CreateMJTagInput {
|
|
|
16385
16923
|
Description: string | null;
|
|
16386
16924
|
Status?: string;
|
|
16387
16925
|
MergedIntoTagID: string | null;
|
|
16926
|
+
RestoreContext___?: RestoreContextInput;
|
|
16388
16927
|
}
|
|
16389
16928
|
export declare class UpdateMJTagInput {
|
|
16390
16929
|
ID: string;
|
|
@@ -16395,6 +16934,7 @@ export declare class UpdateMJTagInput {
|
|
|
16395
16934
|
Status?: string;
|
|
16396
16935
|
MergedIntoTagID?: string | null;
|
|
16397
16936
|
OldValues___?: KeyValuePairInput[];
|
|
16937
|
+
RestoreContext___?: RestoreContextInput;
|
|
16398
16938
|
}
|
|
16399
16939
|
export declare class RunMJTagViewResult {
|
|
16400
16940
|
Results: MJTag_[];
|
|
@@ -16437,6 +16977,7 @@ export declare class CreateMJTaskDependencyInput {
|
|
|
16437
16977
|
TaskID?: string;
|
|
16438
16978
|
DependsOnTaskID?: string;
|
|
16439
16979
|
DependencyType?: string;
|
|
16980
|
+
RestoreContext___?: RestoreContextInput;
|
|
16440
16981
|
}
|
|
16441
16982
|
export declare class UpdateMJTaskDependencyInput {
|
|
16442
16983
|
ID: string;
|
|
@@ -16444,6 +16985,7 @@ export declare class UpdateMJTaskDependencyInput {
|
|
|
16444
16985
|
DependsOnTaskID?: string;
|
|
16445
16986
|
DependencyType?: string;
|
|
16446
16987
|
OldValues___?: KeyValuePairInput[];
|
|
16988
|
+
RestoreContext___?: RestoreContextInput;
|
|
16447
16989
|
}
|
|
16448
16990
|
export declare class RunMJTaskDependencyViewResult {
|
|
16449
16991
|
Results: MJTaskDependency_[];
|
|
@@ -16475,12 +17017,14 @@ export declare class CreateMJTaskTypeInput {
|
|
|
16475
17017
|
ID?: string;
|
|
16476
17018
|
Name?: string;
|
|
16477
17019
|
Description: string | null;
|
|
17020
|
+
RestoreContext___?: RestoreContextInput;
|
|
16478
17021
|
}
|
|
16479
17022
|
export declare class UpdateMJTaskTypeInput {
|
|
16480
17023
|
ID: string;
|
|
16481
17024
|
Name?: string;
|
|
16482
17025
|
Description?: string | null;
|
|
16483
17026
|
OldValues___?: KeyValuePairInput[];
|
|
17027
|
+
RestoreContext___?: RestoreContextInput;
|
|
16484
17028
|
}
|
|
16485
17029
|
export declare class RunMJTaskTypeViewResult {
|
|
16486
17030
|
Results: MJTaskType_[];
|
|
@@ -16547,6 +17091,7 @@ export declare class CreateMJTaskInput {
|
|
|
16547
17091
|
DueAt: Date | null;
|
|
16548
17092
|
StartedAt: Date | null;
|
|
16549
17093
|
CompletedAt: Date | null;
|
|
17094
|
+
RestoreContext___?: RestoreContextInput;
|
|
16550
17095
|
}
|
|
16551
17096
|
export declare class UpdateMJTaskInput {
|
|
16552
17097
|
ID: string;
|
|
@@ -16565,6 +17110,7 @@ export declare class UpdateMJTaskInput {
|
|
|
16565
17110
|
StartedAt?: Date | null;
|
|
16566
17111
|
CompletedAt?: Date | null;
|
|
16567
17112
|
OldValues___?: KeyValuePairInput[];
|
|
17113
|
+
RestoreContext___?: RestoreContextInput;
|
|
16568
17114
|
}
|
|
16569
17115
|
export declare class RunMJTaskViewResult {
|
|
16570
17116
|
Results: MJTask_[];
|
|
@@ -16607,6 +17153,7 @@ export declare class CreateMJTemplateCategoryInput {
|
|
|
16607
17153
|
Description: string | null;
|
|
16608
17154
|
ParentID: string | null;
|
|
16609
17155
|
UserID?: string;
|
|
17156
|
+
RestoreContext___?: RestoreContextInput;
|
|
16610
17157
|
}
|
|
16611
17158
|
export declare class UpdateMJTemplateCategoryInput {
|
|
16612
17159
|
ID: string;
|
|
@@ -16615,6 +17162,7 @@ export declare class UpdateMJTemplateCategoryInput {
|
|
|
16615
17162
|
ParentID?: string | null;
|
|
16616
17163
|
UserID?: string;
|
|
16617
17164
|
OldValues___?: KeyValuePairInput[];
|
|
17165
|
+
RestoreContext___?: RestoreContextInput;
|
|
16618
17166
|
}
|
|
16619
17167
|
export declare class RunMJTemplateCategoryViewResult {
|
|
16620
17168
|
Results: MJTemplateCategory_[];
|
|
@@ -16650,6 +17198,7 @@ export declare class CreateMJTemplateContentTypeInput {
|
|
|
16650
17198
|
Name?: string;
|
|
16651
17199
|
Description: string | null;
|
|
16652
17200
|
CodeType?: string;
|
|
17201
|
+
RestoreContext___?: RestoreContextInput;
|
|
16653
17202
|
}
|
|
16654
17203
|
export declare class UpdateMJTemplateContentTypeInput {
|
|
16655
17204
|
ID: string;
|
|
@@ -16657,6 +17206,7 @@ export declare class UpdateMJTemplateContentTypeInput {
|
|
|
16657
17206
|
Description?: string | null;
|
|
16658
17207
|
CodeType?: string;
|
|
16659
17208
|
OldValues___?: KeyValuePairInput[];
|
|
17209
|
+
RestoreContext___?: RestoreContextInput;
|
|
16660
17210
|
}
|
|
16661
17211
|
export declare class RunMJTemplateContentTypeViewResult {
|
|
16662
17212
|
Results: MJTemplateContentType_[];
|
|
@@ -16697,6 +17247,7 @@ export declare class CreateMJTemplateContentInput {
|
|
|
16697
17247
|
TemplateText: string | null;
|
|
16698
17248
|
Priority?: number;
|
|
16699
17249
|
IsActive?: boolean;
|
|
17250
|
+
RestoreContext___?: RestoreContextInput;
|
|
16700
17251
|
}
|
|
16701
17252
|
export declare class UpdateMJTemplateContentInput {
|
|
16702
17253
|
ID: string;
|
|
@@ -16706,6 +17257,7 @@ export declare class UpdateMJTemplateContentInput {
|
|
|
16706
17257
|
Priority?: number;
|
|
16707
17258
|
IsActive?: boolean;
|
|
16708
17259
|
OldValues___?: KeyValuePairInput[];
|
|
17260
|
+
RestoreContext___?: RestoreContextInput;
|
|
16709
17261
|
}
|
|
16710
17262
|
export declare class RunMJTemplateContentViewResult {
|
|
16711
17263
|
Results: MJTemplateContent_[];
|
|
@@ -16762,6 +17314,7 @@ export declare class CreateMJTemplateParamInput {
|
|
|
16762
17314
|
RecordID: string | null;
|
|
16763
17315
|
OrderBy: string | null;
|
|
16764
17316
|
TemplateContentID: string | null;
|
|
17317
|
+
RestoreContext___?: RestoreContextInput;
|
|
16765
17318
|
}
|
|
16766
17319
|
export declare class UpdateMJTemplateParamInput {
|
|
16767
17320
|
ID: string;
|
|
@@ -16779,6 +17332,7 @@ export declare class UpdateMJTemplateParamInput {
|
|
|
16779
17332
|
OrderBy?: string | null;
|
|
16780
17333
|
TemplateContentID?: string | null;
|
|
16781
17334
|
OldValues___?: KeyValuePairInput[];
|
|
17335
|
+
RestoreContext___?: RestoreContextInput;
|
|
16782
17336
|
}
|
|
16783
17337
|
export declare class RunMJTemplateParamViewResult {
|
|
16784
17338
|
Results: MJTemplateParam_[];
|
|
@@ -16829,6 +17383,7 @@ export declare class CreateMJTemplateInput {
|
|
|
16829
17383
|
ActiveAt: Date | null;
|
|
16830
17384
|
DisabledAt: Date | null;
|
|
16831
17385
|
IsActive?: boolean;
|
|
17386
|
+
RestoreContext___?: RestoreContextInput;
|
|
16832
17387
|
}
|
|
16833
17388
|
export declare class UpdateMJTemplateInput {
|
|
16834
17389
|
ID: string;
|
|
@@ -16841,6 +17396,7 @@ export declare class UpdateMJTemplateInput {
|
|
|
16841
17396
|
DisabledAt?: Date | null;
|
|
16842
17397
|
IsActive?: boolean;
|
|
16843
17398
|
OldValues___?: KeyValuePairInput[];
|
|
17399
|
+
RestoreContext___?: RestoreContextInput;
|
|
16844
17400
|
}
|
|
16845
17401
|
export declare class RunMJTemplateViewResult {
|
|
16846
17402
|
Results: MJTemplate_[];
|
|
@@ -16888,6 +17444,7 @@ export declare class CreateMJTestRubricInput {
|
|
|
16888
17444
|
Criteria: string | null;
|
|
16889
17445
|
Version: string | null;
|
|
16890
17446
|
Status?: string;
|
|
17447
|
+
RestoreContext___?: RestoreContextInput;
|
|
16891
17448
|
}
|
|
16892
17449
|
export declare class UpdateMJTestRubricInput {
|
|
16893
17450
|
ID: string;
|
|
@@ -16899,6 +17456,7 @@ export declare class UpdateMJTestRubricInput {
|
|
|
16899
17456
|
Version?: string | null;
|
|
16900
17457
|
Status?: string;
|
|
16901
17458
|
OldValues___?: KeyValuePairInput[];
|
|
17459
|
+
RestoreContext___?: RestoreContextInput;
|
|
16902
17460
|
}
|
|
16903
17461
|
export declare class RunMJTestRubricViewResult {
|
|
16904
17462
|
Results: MJTestRubric_[];
|
|
@@ -16941,6 +17499,7 @@ export declare class CreateMJTestRunFeedbackInput {
|
|
|
16941
17499
|
CorrectionSummary: string | null;
|
|
16942
17500
|
Comments: string | null;
|
|
16943
17501
|
ReviewedAt?: Date;
|
|
17502
|
+
RestoreContext___?: RestoreContextInput;
|
|
16944
17503
|
}
|
|
16945
17504
|
export declare class UpdateMJTestRunFeedbackInput {
|
|
16946
17505
|
ID: string;
|
|
@@ -16952,6 +17511,7 @@ export declare class UpdateMJTestRunFeedbackInput {
|
|
|
16952
17511
|
Comments?: string | null;
|
|
16953
17512
|
ReviewedAt?: Date;
|
|
16954
17513
|
OldValues___?: KeyValuePairInput[];
|
|
17514
|
+
RestoreContext___?: RestoreContextInput;
|
|
16955
17515
|
}
|
|
16956
17516
|
export declare class RunMJTestRunFeedbackViewResult {
|
|
16957
17517
|
Results: MJTestRunFeedback_[];
|
|
@@ -16983,12 +17543,14 @@ export declare class CreateMJTestRunOutputTypeInput {
|
|
|
16983
17543
|
ID?: string;
|
|
16984
17544
|
Name?: string;
|
|
16985
17545
|
Description: string | null;
|
|
17546
|
+
RestoreContext___?: RestoreContextInput;
|
|
16986
17547
|
}
|
|
16987
17548
|
export declare class UpdateMJTestRunOutputTypeInput {
|
|
16988
17549
|
ID: string;
|
|
16989
17550
|
Name?: string;
|
|
16990
17551
|
Description?: string | null;
|
|
16991
17552
|
OldValues___?: KeyValuePairInput[];
|
|
17553
|
+
RestoreContext___?: RestoreContextInput;
|
|
16992
17554
|
}
|
|
16993
17555
|
export declare class RunMJTestRunOutputTypeViewResult {
|
|
16994
17556
|
Results: MJTestRunOutputType_[];
|
|
@@ -17044,6 +17606,7 @@ export declare class CreateMJTestRunOutputInput {
|
|
|
17044
17606
|
Height: number | null;
|
|
17045
17607
|
DurationSeconds: number | null;
|
|
17046
17608
|
Metadata: string | null;
|
|
17609
|
+
RestoreContext___?: RestoreContextInput;
|
|
17047
17610
|
}
|
|
17048
17611
|
export declare class UpdateMJTestRunOutputInput {
|
|
17049
17612
|
ID: string;
|
|
@@ -17061,6 +17624,7 @@ export declare class UpdateMJTestRunOutputInput {
|
|
|
17061
17624
|
DurationSeconds?: number | null;
|
|
17062
17625
|
Metadata?: string | null;
|
|
17063
17626
|
OldValues___?: KeyValuePairInput[];
|
|
17627
|
+
RestoreContext___?: RestoreContextInput;
|
|
17064
17628
|
}
|
|
17065
17629
|
export declare class RunMJTestRunOutputViewResult {
|
|
17066
17630
|
Results: MJTestRunOutput_[];
|
|
@@ -17155,6 +17719,7 @@ export declare class CreateMJTestRunInput {
|
|
|
17155
17719
|
RunContextDetails: string | null;
|
|
17156
17720
|
TargetLogEntityID: string | null;
|
|
17157
17721
|
ResolvedVariables: string | null;
|
|
17722
|
+
RestoreContext___?: RestoreContextInput;
|
|
17158
17723
|
}
|
|
17159
17724
|
export declare class UpdateMJTestRunInput {
|
|
17160
17725
|
ID: string;
|
|
@@ -17188,6 +17753,7 @@ export declare class UpdateMJTestRunInput {
|
|
|
17188
17753
|
TargetLogEntityID?: string | null;
|
|
17189
17754
|
ResolvedVariables?: string | null;
|
|
17190
17755
|
OldValues___?: KeyValuePairInput[];
|
|
17756
|
+
RestoreContext___?: RestoreContextInput;
|
|
17191
17757
|
}
|
|
17192
17758
|
export declare class RunMJTestRunViewResult {
|
|
17193
17759
|
Results: MJTestRun_[];
|
|
@@ -17275,6 +17841,7 @@ export declare class CreateMJTestSuiteRunInput {
|
|
|
17275
17841
|
RunByUserEmail: string | null;
|
|
17276
17842
|
RunContextDetails: string | null;
|
|
17277
17843
|
ResolvedVariables: string | null;
|
|
17844
|
+
RestoreContext___?: RestoreContextInput;
|
|
17278
17845
|
}
|
|
17279
17846
|
export declare class UpdateMJTestSuiteRunInput {
|
|
17280
17847
|
ID: string;
|
|
@@ -17305,6 +17872,7 @@ export declare class UpdateMJTestSuiteRunInput {
|
|
|
17305
17872
|
RunContextDetails?: string | null;
|
|
17306
17873
|
ResolvedVariables?: string | null;
|
|
17307
17874
|
OldValues___?: KeyValuePairInput[];
|
|
17875
|
+
RestoreContext___?: RestoreContextInput;
|
|
17308
17876
|
}
|
|
17309
17877
|
export declare class RunMJTestSuiteRunViewResult {
|
|
17310
17878
|
Results: MJTestSuiteRun_[];
|
|
@@ -17344,6 +17912,7 @@ export declare class CreateMJTestSuiteTestInput {
|
|
|
17344
17912
|
Sequence?: number;
|
|
17345
17913
|
Status?: string;
|
|
17346
17914
|
Configuration: string | null;
|
|
17915
|
+
RestoreContext___?: RestoreContextInput;
|
|
17347
17916
|
}
|
|
17348
17917
|
export declare class UpdateMJTestSuiteTestInput {
|
|
17349
17918
|
ID: string;
|
|
@@ -17353,6 +17922,7 @@ export declare class UpdateMJTestSuiteTestInput {
|
|
|
17353
17922
|
Status?: string;
|
|
17354
17923
|
Configuration?: string | null;
|
|
17355
17924
|
OldValues___?: KeyValuePairInput[];
|
|
17925
|
+
RestoreContext___?: RestoreContextInput;
|
|
17356
17926
|
}
|
|
17357
17927
|
export declare class RunMJTestSuiteTestViewResult {
|
|
17358
17928
|
Results: MJTestSuiteTest_[];
|
|
@@ -17400,6 +17970,7 @@ export declare class CreateMJTestSuiteInput {
|
|
|
17400
17970
|
Configuration: string | null;
|
|
17401
17971
|
MaxExecutionTimeMS: number | null;
|
|
17402
17972
|
Variables: string | null;
|
|
17973
|
+
RestoreContext___?: RestoreContextInput;
|
|
17403
17974
|
}
|
|
17404
17975
|
export declare class UpdateMJTestSuiteInput {
|
|
17405
17976
|
ID: string;
|
|
@@ -17412,6 +17983,7 @@ export declare class UpdateMJTestSuiteInput {
|
|
|
17412
17983
|
MaxExecutionTimeMS?: number | null;
|
|
17413
17984
|
Variables?: string | null;
|
|
17414
17985
|
OldValues___?: KeyValuePairInput[];
|
|
17986
|
+
RestoreContext___?: RestoreContextInput;
|
|
17415
17987
|
}
|
|
17416
17988
|
export declare class RunMJTestSuiteViewResult {
|
|
17417
17989
|
Results: MJTestSuite_[];
|
|
@@ -17453,6 +18025,7 @@ export declare class CreateMJTestTypeInput {
|
|
|
17453
18025
|
DriverClass?: string;
|
|
17454
18026
|
Status?: string;
|
|
17455
18027
|
VariablesSchema: string | null;
|
|
18028
|
+
RestoreContext___?: RestoreContextInput;
|
|
17456
18029
|
}
|
|
17457
18030
|
export declare class UpdateMJTestTypeInput {
|
|
17458
18031
|
ID: string;
|
|
@@ -17462,6 +18035,7 @@ export declare class UpdateMJTestTypeInput {
|
|
|
17462
18035
|
Status?: string;
|
|
17463
18036
|
VariablesSchema?: string | null;
|
|
17464
18037
|
OldValues___?: KeyValuePairInput[];
|
|
18038
|
+
RestoreContext___?: RestoreContextInput;
|
|
17465
18039
|
}
|
|
17466
18040
|
export declare class RunMJTestTypeViewResult {
|
|
17467
18041
|
Results: MJTestType_[];
|
|
@@ -17521,6 +18095,7 @@ export declare class CreateMJTestInput {
|
|
|
17521
18095
|
RepeatCount: number | null;
|
|
17522
18096
|
MaxExecutionTimeMS: number | null;
|
|
17523
18097
|
Variables: string | null;
|
|
18098
|
+
RestoreContext___?: RestoreContextInput;
|
|
17524
18099
|
}
|
|
17525
18100
|
export declare class UpdateMJTestInput {
|
|
17526
18101
|
ID: string;
|
|
@@ -17539,6 +18114,7 @@ export declare class UpdateMJTestInput {
|
|
|
17539
18114
|
MaxExecutionTimeMS?: number | null;
|
|
17540
18115
|
Variables?: string | null;
|
|
17541
18116
|
OldValues___?: KeyValuePairInput[];
|
|
18117
|
+
RestoreContext___?: RestoreContextInput;
|
|
17542
18118
|
}
|
|
17543
18119
|
export declare class RunMJTestViewResult {
|
|
17544
18120
|
Results: MJTest_[];
|
|
@@ -17576,6 +18152,7 @@ export declare class CreateMJUserApplicationEntityInput {
|
|
|
17576
18152
|
UserApplicationID?: string;
|
|
17577
18153
|
EntityID?: string;
|
|
17578
18154
|
Sequence?: number;
|
|
18155
|
+
RestoreContext___?: RestoreContextInput;
|
|
17579
18156
|
}
|
|
17580
18157
|
export declare class UpdateMJUserApplicationEntityInput {
|
|
17581
18158
|
ID: string;
|
|
@@ -17583,6 +18160,7 @@ export declare class UpdateMJUserApplicationEntityInput {
|
|
|
17583
18160
|
EntityID?: string;
|
|
17584
18161
|
Sequence?: number;
|
|
17585
18162
|
OldValues___?: KeyValuePairInput[];
|
|
18163
|
+
RestoreContext___?: RestoreContextInput;
|
|
17586
18164
|
}
|
|
17587
18165
|
export declare class RunMJUserApplicationEntityViewResult {
|
|
17588
18166
|
Results: MJUserApplicationEntity_[];
|
|
@@ -17620,6 +18198,7 @@ export declare class CreateMJUserApplicationInput {
|
|
|
17620
18198
|
ApplicationID?: string;
|
|
17621
18199
|
Sequence?: number;
|
|
17622
18200
|
IsActive?: boolean;
|
|
18201
|
+
RestoreContext___?: RestoreContextInput;
|
|
17623
18202
|
}
|
|
17624
18203
|
export declare class UpdateMJUserApplicationInput {
|
|
17625
18204
|
ID: string;
|
|
@@ -17628,6 +18207,7 @@ export declare class UpdateMJUserApplicationInput {
|
|
|
17628
18207
|
Sequence?: number;
|
|
17629
18208
|
IsActive?: boolean;
|
|
17630
18209
|
OldValues___?: KeyValuePairInput[];
|
|
18210
|
+
RestoreContext___?: RestoreContextInput;
|
|
17631
18211
|
}
|
|
17632
18212
|
export declare class RunMJUserApplicationViewResult {
|
|
17633
18213
|
Results: MJUserApplication_[];
|
|
@@ -17664,6 +18244,7 @@ export declare class CreateMJUserFavoriteInput {
|
|
|
17664
18244
|
UserID?: string;
|
|
17665
18245
|
EntityID?: string;
|
|
17666
18246
|
RecordID?: string;
|
|
18247
|
+
RestoreContext___?: RestoreContextInput;
|
|
17667
18248
|
}
|
|
17668
18249
|
export declare class UpdateMJUserFavoriteInput {
|
|
17669
18250
|
ID: string;
|
|
@@ -17671,6 +18252,7 @@ export declare class UpdateMJUserFavoriteInput {
|
|
|
17671
18252
|
EntityID?: string;
|
|
17672
18253
|
RecordID?: string;
|
|
17673
18254
|
OldValues___?: KeyValuePairInput[];
|
|
18255
|
+
RestoreContext___?: RestoreContextInput;
|
|
17674
18256
|
}
|
|
17675
18257
|
export declare class RunMJUserFavoriteViewResult {
|
|
17676
18258
|
Results: MJUserFavorite_[];
|
|
@@ -17711,6 +18293,7 @@ export declare class CreateMJUserNotificationPreferenceInput {
|
|
|
17711
18293
|
EmailEnabled: boolean | null;
|
|
17712
18294
|
SMSEnabled: boolean | null;
|
|
17713
18295
|
Enabled?: boolean | null;
|
|
18296
|
+
RestoreContext___?: RestoreContextInput;
|
|
17714
18297
|
}
|
|
17715
18298
|
export declare class UpdateMJUserNotificationPreferenceInput {
|
|
17716
18299
|
ID: string;
|
|
@@ -17721,6 +18304,7 @@ export declare class UpdateMJUserNotificationPreferenceInput {
|
|
|
17721
18304
|
SMSEnabled?: boolean | null;
|
|
17722
18305
|
Enabled?: boolean | null;
|
|
17723
18306
|
OldValues___?: KeyValuePairInput[];
|
|
18307
|
+
RestoreContext___?: RestoreContextInput;
|
|
17724
18308
|
}
|
|
17725
18309
|
export declare class RunMJUserNotificationPreferenceViewResult {
|
|
17726
18310
|
Results: MJUserNotificationPreference_[];
|
|
@@ -17775,6 +18359,7 @@ export declare class CreateMJUserNotificationTypeInput {
|
|
|
17775
18359
|
Color: string | null;
|
|
17776
18360
|
AutoExpireDays: number | null;
|
|
17777
18361
|
Priority?: number | null;
|
|
18362
|
+
RestoreContext___?: RestoreContextInput;
|
|
17778
18363
|
}
|
|
17779
18364
|
export declare class UpdateMJUserNotificationTypeInput {
|
|
17780
18365
|
ID: string;
|
|
@@ -17791,6 +18376,7 @@ export declare class UpdateMJUserNotificationTypeInput {
|
|
|
17791
18376
|
AutoExpireDays?: number | null;
|
|
17792
18377
|
Priority?: number | null;
|
|
17793
18378
|
OldValues___?: KeyValuePairInput[];
|
|
18379
|
+
RestoreContext___?: RestoreContextInput;
|
|
17794
18380
|
}
|
|
17795
18381
|
export declare class RunMJUserNotificationTypeViewResult {
|
|
17796
18382
|
Results: MJUserNotificationType_[];
|
|
@@ -17840,6 +18426,7 @@ export declare class CreateMJUserNotificationInput {
|
|
|
17840
18426
|
ReadAt: Date | null;
|
|
17841
18427
|
ResourceRecordID: string | null;
|
|
17842
18428
|
NotificationTypeID: string | null;
|
|
18429
|
+
RestoreContext___?: RestoreContextInput;
|
|
17843
18430
|
}
|
|
17844
18431
|
export declare class UpdateMJUserNotificationInput {
|
|
17845
18432
|
ID: string;
|
|
@@ -17853,6 +18440,7 @@ export declare class UpdateMJUserNotificationInput {
|
|
|
17853
18440
|
ResourceRecordID?: string | null;
|
|
17854
18441
|
NotificationTypeID?: string | null;
|
|
17855
18442
|
OldValues___?: KeyValuePairInput[];
|
|
18443
|
+
RestoreContext___?: RestoreContextInput;
|
|
17856
18444
|
}
|
|
17857
18445
|
export declare class RunMJUserNotificationViewResult {
|
|
17858
18446
|
Results: MJUserNotification_[];
|
|
@@ -17897,6 +18485,7 @@ export declare class CreateMJUserRecordLogInput {
|
|
|
17897
18485
|
EarliestAt?: Date;
|
|
17898
18486
|
LatestAt?: Date;
|
|
17899
18487
|
TotalCount?: number;
|
|
18488
|
+
RestoreContext___?: RestoreContextInput;
|
|
17900
18489
|
}
|
|
17901
18490
|
export declare class UpdateMJUserRecordLogInput {
|
|
17902
18491
|
ID: string;
|
|
@@ -17907,6 +18496,7 @@ export declare class UpdateMJUserRecordLogInput {
|
|
|
17907
18496
|
LatestAt?: Date;
|
|
17908
18497
|
TotalCount?: number;
|
|
17909
18498
|
OldValues___?: KeyValuePairInput[];
|
|
18499
|
+
RestoreContext___?: RestoreContextInput;
|
|
17910
18500
|
}
|
|
17911
18501
|
export declare class RunMJUserRecordLogViewResult {
|
|
17912
18502
|
Results: MJUserRecordLog_[];
|
|
@@ -17939,12 +18529,14 @@ export declare class CreateMJUserRoleInput {
|
|
|
17939
18529
|
ID?: string;
|
|
17940
18530
|
UserID?: string;
|
|
17941
18531
|
RoleID?: string;
|
|
18532
|
+
RestoreContext___?: RestoreContextInput;
|
|
17942
18533
|
}
|
|
17943
18534
|
export declare class UpdateMJUserRoleInput {
|
|
17944
18535
|
ID: string;
|
|
17945
18536
|
UserID?: string;
|
|
17946
18537
|
RoleID?: string;
|
|
17947
18538
|
OldValues___?: KeyValuePairInput[];
|
|
18539
|
+
RestoreContext___?: RestoreContextInput;
|
|
17948
18540
|
}
|
|
17949
18541
|
export declare class RunMJUserRoleViewResult {
|
|
17950
18542
|
Results: MJUserRole_[];
|
|
@@ -17979,6 +18571,7 @@ export declare class CreateMJUserSettingInput {
|
|
|
17979
18571
|
UserID?: string;
|
|
17980
18572
|
Setting?: string;
|
|
17981
18573
|
Value: string | null;
|
|
18574
|
+
RestoreContext___?: RestoreContextInput;
|
|
17982
18575
|
}
|
|
17983
18576
|
export declare class UpdateMJUserSettingInput {
|
|
17984
18577
|
ID: string;
|
|
@@ -17986,6 +18579,7 @@ export declare class UpdateMJUserSettingInput {
|
|
|
17986
18579
|
Setting?: string;
|
|
17987
18580
|
Value?: string | null;
|
|
17988
18581
|
OldValues___?: KeyValuePairInput[];
|
|
18582
|
+
RestoreContext___?: RestoreContextInput;
|
|
17989
18583
|
}
|
|
17990
18584
|
export declare class RunMJUserSettingViewResult {
|
|
17991
18585
|
Results: MJUserSetting_[];
|
|
@@ -18028,6 +18622,7 @@ export declare class CreateMJUserViewCategoryInput {
|
|
|
18028
18622
|
ParentID: string | null;
|
|
18029
18623
|
EntityID?: string;
|
|
18030
18624
|
UserID?: string;
|
|
18625
|
+
RestoreContext___?: RestoreContextInput;
|
|
18031
18626
|
}
|
|
18032
18627
|
export declare class UpdateMJUserViewCategoryInput {
|
|
18033
18628
|
ID: string;
|
|
@@ -18037,6 +18632,7 @@ export declare class UpdateMJUserViewCategoryInput {
|
|
|
18037
18632
|
EntityID?: string;
|
|
18038
18633
|
UserID?: string;
|
|
18039
18634
|
OldValues___?: KeyValuePairInput[];
|
|
18635
|
+
RestoreContext___?: RestoreContextInput;
|
|
18040
18636
|
}
|
|
18041
18637
|
export declare class RunMJUserViewCategoryViewResult {
|
|
18042
18638
|
Results: MJUserViewCategory_[];
|
|
@@ -18071,12 +18667,14 @@ export declare class CreateMJUserViewRunDetailInput {
|
|
|
18071
18667
|
ID?: string;
|
|
18072
18668
|
UserViewRunID?: string;
|
|
18073
18669
|
RecordID?: string;
|
|
18670
|
+
RestoreContext___?: RestoreContextInput;
|
|
18074
18671
|
}
|
|
18075
18672
|
export declare class UpdateMJUserViewRunDetailInput {
|
|
18076
18673
|
ID: string;
|
|
18077
18674
|
UserViewRunID?: string;
|
|
18078
18675
|
RecordID?: string;
|
|
18079
18676
|
OldValues___?: KeyValuePairInput[];
|
|
18677
|
+
RestoreContext___?: RestoreContextInput;
|
|
18080
18678
|
}
|
|
18081
18679
|
export declare class RunMJUserViewRunDetailViewResult {
|
|
18082
18680
|
Results: MJUserViewRunDetail_[];
|
|
@@ -18112,6 +18710,7 @@ export declare class CreateMJUserViewRunInput {
|
|
|
18112
18710
|
UserViewID?: string;
|
|
18113
18711
|
RunAt?: Date;
|
|
18114
18712
|
RunByUserID?: string;
|
|
18713
|
+
RestoreContext___?: RestoreContextInput;
|
|
18115
18714
|
}
|
|
18116
18715
|
export declare class UpdateMJUserViewRunInput {
|
|
18117
18716
|
ID: string;
|
|
@@ -18119,6 +18718,7 @@ export declare class UpdateMJUserViewRunInput {
|
|
|
18119
18718
|
RunAt?: Date;
|
|
18120
18719
|
RunByUserID?: string;
|
|
18121
18720
|
OldValues___?: KeyValuePairInput[];
|
|
18721
|
+
RestoreContext___?: RestoreContextInput;
|
|
18122
18722
|
}
|
|
18123
18723
|
export declare class RunMJUserViewRunViewResult {
|
|
18124
18724
|
Results: MJUserViewRun_[];
|
|
@@ -18195,6 +18795,7 @@ export declare class CreateMJUserViewInput {
|
|
|
18195
18795
|
Thumbnail: string | null;
|
|
18196
18796
|
CardState: string | null;
|
|
18197
18797
|
DisplayState: string | null;
|
|
18798
|
+
RestoreContext___?: RestoreContextInput;
|
|
18198
18799
|
}
|
|
18199
18800
|
export declare class UpdateMJUserViewInput {
|
|
18200
18801
|
ID: string;
|
|
@@ -18219,6 +18820,7 @@ export declare class UpdateMJUserViewInput {
|
|
|
18219
18820
|
CardState?: string | null;
|
|
18220
18821
|
DisplayState?: string | null;
|
|
18221
18822
|
OldValues___?: KeyValuePairInput[];
|
|
18823
|
+
RestoreContext___?: RestoreContextInput;
|
|
18222
18824
|
}
|
|
18223
18825
|
export declare class RunMJUserViewViewResult {
|
|
18224
18826
|
Results: MJUserView_[];
|
|
@@ -18369,6 +18971,7 @@ export declare class CreateMJUserInput {
|
|
|
18369
18971
|
EmployeeID: string | null;
|
|
18370
18972
|
UserImageURL: string | null;
|
|
18371
18973
|
UserImageIconClass: string | null;
|
|
18974
|
+
RestoreContext___?: RestoreContextInput;
|
|
18372
18975
|
}
|
|
18373
18976
|
export declare class UpdateMJUserInput {
|
|
18374
18977
|
ID: string;
|
|
@@ -18386,6 +18989,7 @@ export declare class UpdateMJUserInput {
|
|
|
18386
18989
|
UserImageURL?: string | null;
|
|
18387
18990
|
UserImageIconClass?: string | null;
|
|
18388
18991
|
OldValues___?: KeyValuePairInput[];
|
|
18992
|
+
RestoreContext___?: RestoreContextInput;
|
|
18389
18993
|
}
|
|
18390
18994
|
export declare class RunMJUserViewResult {
|
|
18391
18995
|
Results: MJUser_[];
|
|
@@ -18516,6 +19120,7 @@ export declare class CreateMJVectorDatabaseInput {
|
|
|
18516
19120
|
ClassKey: string | null;
|
|
18517
19121
|
Configuration: string | null;
|
|
18518
19122
|
CredentialID: string | null;
|
|
19123
|
+
RestoreContext___?: RestoreContextInput;
|
|
18519
19124
|
}
|
|
18520
19125
|
export declare class UpdateMJVectorDatabaseInput {
|
|
18521
19126
|
ID: string;
|
|
@@ -18526,6 +19131,7 @@ export declare class UpdateMJVectorDatabaseInput {
|
|
|
18526
19131
|
Configuration?: string | null;
|
|
18527
19132
|
CredentialID?: string | null;
|
|
18528
19133
|
OldValues___?: KeyValuePairInput[];
|
|
19134
|
+
RestoreContext___?: RestoreContextInput;
|
|
18529
19135
|
}
|
|
18530
19136
|
export declare class RunMJVectorDatabaseViewResult {
|
|
18531
19137
|
Results: MJVectorDatabase_[];
|
|
@@ -18576,6 +19182,7 @@ export declare class CreateMJVectorIndexInput {
|
|
|
18576
19182
|
Dimensions: number | null;
|
|
18577
19183
|
Metric: string | null;
|
|
18578
19184
|
ProviderConfig: string | null;
|
|
19185
|
+
RestoreContext___?: RestoreContextInput;
|
|
18579
19186
|
}
|
|
18580
19187
|
export declare class UpdateMJVectorIndexInput {
|
|
18581
19188
|
ID: string;
|
|
@@ -18588,6 +19195,7 @@ export declare class UpdateMJVectorIndexInput {
|
|
|
18588
19195
|
Metric?: string | null;
|
|
18589
19196
|
ProviderConfig?: string | null;
|
|
18590
19197
|
OldValues___?: KeyValuePairInput[];
|
|
19198
|
+
RestoreContext___?: RestoreContextInput;
|
|
18591
19199
|
}
|
|
18592
19200
|
export declare class RunMJVectorIndexViewResult {
|
|
18593
19201
|
Results: MJVectorIndex_[];
|
|
@@ -18635,6 +19243,7 @@ export declare class CreateMJVersionInstallationInput {
|
|
|
18635
19243
|
Status?: string;
|
|
18636
19244
|
InstallLog: string | null;
|
|
18637
19245
|
Comments: string | null;
|
|
19246
|
+
RestoreContext___?: RestoreContextInput;
|
|
18638
19247
|
}
|
|
18639
19248
|
export declare class UpdateMJVersionInstallationInput {
|
|
18640
19249
|
ID: string;
|
|
@@ -18647,6 +19256,7 @@ export declare class UpdateMJVersionInstallationInput {
|
|
|
18647
19256
|
InstallLog?: string | null;
|
|
18648
19257
|
Comments?: string | null;
|
|
18649
19258
|
OldValues___?: KeyValuePairInput[];
|
|
19259
|
+
RestoreContext___?: RestoreContextInput;
|
|
18650
19260
|
}
|
|
18651
19261
|
export declare class RunMJVersionInstallationViewResult {
|
|
18652
19262
|
Results: MJVersionInstallation_[];
|
|
@@ -18684,6 +19294,7 @@ export declare class CreateMJVersionLabelItemInput {
|
|
|
18684
19294
|
RecordChangeID?: string;
|
|
18685
19295
|
EntityID?: string;
|
|
18686
19296
|
RecordID?: string;
|
|
19297
|
+
RestoreContext___?: RestoreContextInput;
|
|
18687
19298
|
}
|
|
18688
19299
|
export declare class UpdateMJVersionLabelItemInput {
|
|
18689
19300
|
ID: string;
|
|
@@ -18692,6 +19303,7 @@ export declare class UpdateMJVersionLabelItemInput {
|
|
|
18692
19303
|
EntityID?: string;
|
|
18693
19304
|
RecordID?: string;
|
|
18694
19305
|
OldValues___?: KeyValuePairInput[];
|
|
19306
|
+
RestoreContext___?: RestoreContextInput;
|
|
18695
19307
|
}
|
|
18696
19308
|
export declare class RunMJVersionLabelItemViewResult {
|
|
18697
19309
|
Results: MJVersionLabelItem_[];
|
|
@@ -18741,6 +19353,7 @@ export declare class CreateMJVersionLabelRestoreInput {
|
|
|
18741
19353
|
FailedItems?: number;
|
|
18742
19354
|
ErrorLog: string | null;
|
|
18743
19355
|
PreRestoreLabelID: string | null;
|
|
19356
|
+
RestoreContext___?: RestoreContextInput;
|
|
18744
19357
|
}
|
|
18745
19358
|
export declare class UpdateMJVersionLabelRestoreInput {
|
|
18746
19359
|
ID: string;
|
|
@@ -18755,6 +19368,7 @@ export declare class UpdateMJVersionLabelRestoreInput {
|
|
|
18755
19368
|
ErrorLog?: string | null;
|
|
18756
19369
|
PreRestoreLabelID?: string | null;
|
|
18757
19370
|
OldValues___?: KeyValuePairInput[];
|
|
19371
|
+
RestoreContext___?: RestoreContextInput;
|
|
18758
19372
|
}
|
|
18759
19373
|
export declare class RunMJVersionLabelRestoreViewResult {
|
|
18760
19374
|
Results: MJVersionLabelRestore_[];
|
|
@@ -18811,6 +19425,7 @@ export declare class CreateMJVersionLabelInput {
|
|
|
18811
19425
|
ExternalSystemID: string | null;
|
|
18812
19426
|
ItemCount?: number;
|
|
18813
19427
|
CreationDurationMS?: number;
|
|
19428
|
+
RestoreContext___?: RestoreContextInput;
|
|
18814
19429
|
}
|
|
18815
19430
|
export declare class UpdateMJVersionLabelInput {
|
|
18816
19431
|
ID: string;
|
|
@@ -18826,6 +19441,7 @@ export declare class UpdateMJVersionLabelInput {
|
|
|
18826
19441
|
ItemCount?: number;
|
|
18827
19442
|
CreationDurationMS?: number;
|
|
18828
19443
|
OldValues___?: KeyValuePairInput[];
|
|
19444
|
+
RestoreContext___?: RestoreContextInput;
|
|
18829
19445
|
}
|
|
18830
19446
|
export declare class RunMJVersionLabelViewResult {
|
|
18831
19447
|
Results: MJVersionLabel_[];
|
|
@@ -18865,6 +19481,7 @@ export declare class CreateMJWorkflowEngineInput {
|
|
|
18865
19481
|
Description: string | null;
|
|
18866
19482
|
DriverPath?: string;
|
|
18867
19483
|
DriverClass?: string;
|
|
19484
|
+
RestoreContext___?: RestoreContextInput;
|
|
18868
19485
|
}
|
|
18869
19486
|
export declare class UpdateMJWorkflowEngineInput {
|
|
18870
19487
|
ID: string;
|
|
@@ -18873,6 +19490,7 @@ export declare class UpdateMJWorkflowEngineInput {
|
|
|
18873
19490
|
DriverPath?: string;
|
|
18874
19491
|
DriverClass?: string;
|
|
18875
19492
|
OldValues___?: KeyValuePairInput[];
|
|
19493
|
+
RestoreContext___?: RestoreContextInput;
|
|
18876
19494
|
}
|
|
18877
19495
|
export declare class RunMJWorkflowEngineViewResult {
|
|
18878
19496
|
Results: MJWorkflowEngine_[];
|
|
@@ -18914,6 +19532,7 @@ export declare class CreateMJWorkflowRunInput {
|
|
|
18914
19532
|
EndedAt: Date | null;
|
|
18915
19533
|
Status?: string;
|
|
18916
19534
|
Results: string | null;
|
|
19535
|
+
RestoreContext___?: RestoreContextInput;
|
|
18917
19536
|
}
|
|
18918
19537
|
export declare class UpdateMJWorkflowRunInput {
|
|
18919
19538
|
ID: string;
|
|
@@ -18924,6 +19543,7 @@ export declare class UpdateMJWorkflowRunInput {
|
|
|
18924
19543
|
Status?: string;
|
|
18925
19544
|
Results?: string | null;
|
|
18926
19545
|
OldValues___?: KeyValuePairInput[];
|
|
19546
|
+
RestoreContext___?: RestoreContextInput;
|
|
18927
19547
|
}
|
|
18928
19548
|
export declare class RunMJWorkflowRunViewResult {
|
|
18929
19549
|
Results: MJWorkflowRun_[];
|
|
@@ -18969,6 +19589,7 @@ export declare class CreateMJWorkflowInput {
|
|
|
18969
19589
|
AutoRunIntervalUnits: string | null;
|
|
18970
19590
|
AutoRunInterval: number | null;
|
|
18971
19591
|
SubclassName: string | null;
|
|
19592
|
+
RestoreContext___?: RestoreContextInput;
|
|
18972
19593
|
}
|
|
18973
19594
|
export declare class UpdateMJWorkflowInput {
|
|
18974
19595
|
ID: string;
|
|
@@ -18981,6 +19602,7 @@ export declare class UpdateMJWorkflowInput {
|
|
|
18981
19602
|
AutoRunInterval?: number | null;
|
|
18982
19603
|
SubclassName?: string | null;
|
|
18983
19604
|
OldValues___?: KeyValuePairInput[];
|
|
19605
|
+
RestoreContext___?: RestoreContextInput;
|
|
18984
19606
|
}
|
|
18985
19607
|
export declare class RunMJWorkflowViewResult {
|
|
18986
19608
|
Results: MJWorkflow_[];
|
|
@@ -19025,6 +19647,7 @@ export declare class CreateMJWorkspaceItemInput {
|
|
|
19025
19647
|
ResourceRecordID: string | null;
|
|
19026
19648
|
Sequence?: number;
|
|
19027
19649
|
Configuration: string | null;
|
|
19650
|
+
RestoreContext___?: RestoreContextInput;
|
|
19028
19651
|
}
|
|
19029
19652
|
export declare class UpdateMJWorkspaceItemInput {
|
|
19030
19653
|
ID: string;
|
|
@@ -19036,6 +19659,7 @@ export declare class UpdateMJWorkspaceItemInput {
|
|
|
19036
19659
|
Sequence?: number;
|
|
19037
19660
|
Configuration?: string | null;
|
|
19038
19661
|
OldValues___?: KeyValuePairInput[];
|
|
19662
|
+
RestoreContext___?: RestoreContextInput;
|
|
19039
19663
|
}
|
|
19040
19664
|
export declare class RunMJWorkspaceItemViewResult {
|
|
19041
19665
|
Results: MJWorkspaceItem_[];
|
|
@@ -19072,6 +19696,7 @@ export declare class CreateMJWorkspaceInput {
|
|
|
19072
19696
|
Description: string | null;
|
|
19073
19697
|
UserID?: string;
|
|
19074
19698
|
Configuration: string | null;
|
|
19699
|
+
RestoreContext___?: RestoreContextInput;
|
|
19075
19700
|
}
|
|
19076
19701
|
export declare class UpdateMJWorkspaceInput {
|
|
19077
19702
|
ID: string;
|
|
@@ -19080,6 +19705,7 @@ export declare class UpdateMJWorkspaceInput {
|
|
|
19080
19705
|
UserID?: string;
|
|
19081
19706
|
Configuration?: string | null;
|
|
19082
19707
|
OldValues___?: KeyValuePairInput[];
|
|
19708
|
+
RestoreContext___?: RestoreContextInput;
|
|
19083
19709
|
}
|
|
19084
19710
|
export declare class RunMJWorkspaceViewResult {
|
|
19085
19711
|
Results: MJWorkspace_[];
|