@memberjunction/server 2.129.0 → 2.130.1
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 +462 -8
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +3184 -352
- package/dist/generated/generated.js.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts +3 -0
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.js +114 -2
- package/dist/resolvers/RunAIAgentResolver.js.map +1 -1
- package/dist/resolvers/RunTestResolver.d.ts +2 -2
- package/dist/resolvers/RunTestResolver.d.ts.map +1 -1
- package/dist/resolvers/RunTestResolver.js +27 -8
- package/dist/resolvers/RunTestResolver.js.map +1 -1
- package/package.json +43 -43
- package/src/generated/generated.ts +1840 -55
- package/src/resolvers/RunAIAgentResolver.ts +192 -4
- package/src/resolvers/RunTestResolver.ts +20 -0
|
@@ -966,11 +966,15 @@ export declare class MJAIAgent_ {
|
|
|
966
966
|
IsRestricted: boolean;
|
|
967
967
|
MessageMode: string;
|
|
968
968
|
MaxMessages?: number;
|
|
969
|
+
AttachmentStorageProviderID?: string;
|
|
970
|
+
AttachmentRootPath?: string;
|
|
971
|
+
InlineStorageThresholdBytes?: number;
|
|
969
972
|
Parent?: string;
|
|
970
973
|
ContextCompressionPrompt?: string;
|
|
971
974
|
Type?: string;
|
|
972
975
|
DefaultArtifactType?: string;
|
|
973
976
|
OwnerUser: string;
|
|
977
|
+
AttachmentStorageProvider?: string;
|
|
974
978
|
RootParentID?: string;
|
|
975
979
|
AIAgentModels_AgentIDArray: MJAIAgentModel_[];
|
|
976
980
|
AIAgentActions_AgentIDArray: MJAIAgentAction_[];
|
|
@@ -981,6 +985,7 @@ export declare class MJAIAgent_ {
|
|
|
981
985
|
MJ_AIAgentArtifactTypes_AgentIDArray: MJAIAgentArtifactType_[];
|
|
982
986
|
MJ_AIAgentPermissions_AgentIDArray: MJAIAgentPermission_[];
|
|
983
987
|
MJ_AIAgentDataSources_AgentIDArray: MJAIAgentDataSource_[];
|
|
988
|
+
MJ_AIAgentModalities_AgentIDArray: MJAIAgentModality_[];
|
|
984
989
|
AIAgentNotes_AgentIDArray: MJAIAgentNote_[];
|
|
985
990
|
MJ_AIAgentPrompts_AgentIDArray: MJAIAgentPrompt_[];
|
|
986
991
|
MJ_AIAgentRuns_AgentIDArray: MJAIAgentRun_[];
|
|
@@ -1045,6 +1050,9 @@ export declare class CreateMJAIAgentInput {
|
|
|
1045
1050
|
IsRestricted?: boolean;
|
|
1046
1051
|
MessageMode?: string;
|
|
1047
1052
|
MaxMessages: number | null;
|
|
1053
|
+
AttachmentStorageProviderID: string | null;
|
|
1054
|
+
AttachmentRootPath: string | null;
|
|
1055
|
+
InlineStorageThresholdBytes: number | null;
|
|
1048
1056
|
}
|
|
1049
1057
|
export declare class UpdateMJAIAgentInput {
|
|
1050
1058
|
ID: string;
|
|
@@ -1097,6 +1105,9 @@ export declare class UpdateMJAIAgentInput {
|
|
|
1097
1105
|
IsRestricted?: boolean;
|
|
1098
1106
|
MessageMode?: string;
|
|
1099
1107
|
MaxMessages?: number | null;
|
|
1108
|
+
AttachmentStorageProviderID?: string | null;
|
|
1109
|
+
AttachmentRootPath?: string | null;
|
|
1110
|
+
InlineStorageThresholdBytes?: number | null;
|
|
1100
1111
|
OldValues___?: KeyValuePairInput[];
|
|
1101
1112
|
}
|
|
1102
1113
|
export declare class RunMJAIAgentViewResult {
|
|
@@ -1122,6 +1133,7 @@ export declare class MJAIAgentResolver extends ResolverBase {
|
|
|
1122
1133
|
MJ_AIAgentArtifactTypes_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1123
1134
|
MJ_AIAgentPermissions_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1124
1135
|
MJ_AIAgentDataSources_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1136
|
+
MJ_AIAgentModalities_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1125
1137
|
AIAgentNotes_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1126
1138
|
MJ_AIAgentPrompts_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1127
1139
|
MJ_AIAgentRuns_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -1186,6 +1198,10 @@ export declare class MJAIModelType_ {
|
|
|
1186
1198
|
Description?: string;
|
|
1187
1199
|
_mj__CreatedAt: Date;
|
|
1188
1200
|
_mj__UpdatedAt: Date;
|
|
1201
|
+
DefaultInputModalityID: string;
|
|
1202
|
+
DefaultOutputModalityID: string;
|
|
1203
|
+
DefaultInputModality: string;
|
|
1204
|
+
DefaultOutputModality: string;
|
|
1189
1205
|
AIModels_AIModelTypeIDArray: MJAIModel_[];
|
|
1190
1206
|
AIPrompts_AIModelTypeIDArray: MJAIPrompt_[];
|
|
1191
1207
|
}
|
|
@@ -1193,11 +1209,15 @@ export declare class CreateMJAIModelTypeInput {
|
|
|
1193
1209
|
ID?: string;
|
|
1194
1210
|
Name?: string;
|
|
1195
1211
|
Description: string | null;
|
|
1212
|
+
DefaultInputModalityID?: string;
|
|
1213
|
+
DefaultOutputModalityID?: string;
|
|
1196
1214
|
}
|
|
1197
1215
|
export declare class UpdateMJAIModelTypeInput {
|
|
1198
1216
|
ID: string;
|
|
1199
1217
|
Name?: string;
|
|
1200
1218
|
Description?: string | null;
|
|
1219
|
+
DefaultInputModalityID?: string;
|
|
1220
|
+
DefaultOutputModalityID?: string;
|
|
1201
1221
|
OldValues___?: KeyValuePairInput[];
|
|
1202
1222
|
}
|
|
1203
1223
|
export declare class RunMJAIModelTypeViewResult {
|
|
@@ -1233,6 +1253,8 @@ export declare class MJAIModel_ {
|
|
|
1233
1253
|
SpeedRank?: number;
|
|
1234
1254
|
CostRank?: number;
|
|
1235
1255
|
ModelSelectionInsights?: string;
|
|
1256
|
+
InheritTypeModalities: boolean;
|
|
1257
|
+
PriorVersionID?: string;
|
|
1236
1258
|
AIModelType: string;
|
|
1237
1259
|
Vendor?: string;
|
|
1238
1260
|
DriverClass?: string;
|
|
@@ -1250,6 +1272,8 @@ export declare class MJAIModel_ {
|
|
|
1250
1272
|
AIResultCache_AIModelIDArray: MJAIResultCache_[];
|
|
1251
1273
|
AIAgentNotes_EmbeddingModelIDArray: MJAIAgentNote_[];
|
|
1252
1274
|
MJ_AIAgentExamples_EmbeddingModelIDArray: MJAIAgentExample_[];
|
|
1275
|
+
MJ_AIModelModalities_ModelIDArray: MJAIModelModality_[];
|
|
1276
|
+
MJ_AIModelArchitectures_ModelIDArray: MJAIModelArchitecture_[];
|
|
1253
1277
|
AIAgentModels_ModelIDArray: MJAIAgentModel_[];
|
|
1254
1278
|
MJ_AIModelVendors_ModelIDArray: MJAIModelVendor_[];
|
|
1255
1279
|
GeneratedCodes_GeneratedByModelIDArray: MJGeneratedCode_[];
|
|
@@ -1258,6 +1282,7 @@ export declare class MJAIModel_ {
|
|
|
1258
1282
|
MJ_AIPromptRuns_ModelIDArray: MJAIPromptRun_[];
|
|
1259
1283
|
MJ_AIAgentRuns_OverrideModelIDArray: MJAIAgentRun_[];
|
|
1260
1284
|
Queries_EmbeddingModelIDArray: MJQuery_[];
|
|
1285
|
+
AIModels_PriorVersionIDArray: MJAIModel_[];
|
|
1261
1286
|
}
|
|
1262
1287
|
export declare class CreateMJAIModelInput {
|
|
1263
1288
|
ID?: string;
|
|
@@ -1269,6 +1294,8 @@ export declare class CreateMJAIModelInput {
|
|
|
1269
1294
|
SpeedRank?: number | null;
|
|
1270
1295
|
CostRank?: number | null;
|
|
1271
1296
|
ModelSelectionInsights: string | null;
|
|
1297
|
+
InheritTypeModalities?: boolean;
|
|
1298
|
+
PriorVersionID: string | null;
|
|
1272
1299
|
}
|
|
1273
1300
|
export declare class UpdateMJAIModelInput {
|
|
1274
1301
|
ID: string;
|
|
@@ -1280,6 +1307,8 @@ export declare class UpdateMJAIModelInput {
|
|
|
1280
1307
|
SpeedRank?: number | null;
|
|
1281
1308
|
CostRank?: number | null;
|
|
1282
1309
|
ModelSelectionInsights?: string | null;
|
|
1310
|
+
InheritTypeModalities?: boolean;
|
|
1311
|
+
PriorVersionID?: string | null;
|
|
1283
1312
|
OldValues___?: KeyValuePairInput[];
|
|
1284
1313
|
}
|
|
1285
1314
|
export declare class RunMJAIModelViewResult {
|
|
@@ -1306,6 +1335,8 @@ export declare class MJAIModelResolver extends ResolverBase {
|
|
|
1306
1335
|
AIResultCache_AIModelIDArray(mjaimodel_: MJAIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1307
1336
|
AIAgentNotes_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1308
1337
|
MJ_AIAgentExamples_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1338
|
+
MJ_AIModelModalities_ModelIDArray(mjaimodel_: MJAIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1339
|
+
MJ_AIModelArchitectures_ModelIDArray(mjaimodel_: MJAIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1309
1340
|
AIAgentModels_ModelIDArray(mjaimodel_: MJAIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1310
1341
|
MJ_AIModelVendors_ModelIDArray(mjaimodel_: MJAIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1311
1342
|
GeneratedCodes_GeneratedByModelIDArray(mjaimodel_: MJAIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -1314,6 +1345,7 @@ export declare class MJAIModelResolver extends ResolverBase {
|
|
|
1314
1345
|
MJ_AIPromptRuns_ModelIDArray(mjaimodel_: MJAIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1315
1346
|
MJ_AIAgentRuns_OverrideModelIDArray(mjaimodel_: MJAIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1316
1347
|
Queries_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1348
|
+
AIModels_PriorVersionIDArray(mjaimodel_: MJAIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1317
1349
|
CreateMJAIModel(input: CreateMJAIModelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1318
1350
|
UpdateMJAIModel(input: UpdateMJAIModelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1319
1351
|
DeleteMJAIModel(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1465,8 +1497,8 @@ export declare class MJAIPrompt_ {
|
|
|
1465
1497
|
AIAgentActions_CompactPromptIDArray: MJAIAgentAction_[];
|
|
1466
1498
|
MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray: MJAIConfiguration_[];
|
|
1467
1499
|
AIPrompts_ResultSelectorPromptIDArray: MJAIPrompt_[];
|
|
1468
|
-
MJ_AIPromptModels_PromptIDArray: MJAIPromptModel_[];
|
|
1469
1500
|
MJ_AIAgentPrompts_PromptIDArray: MJAIAgentPrompt_[];
|
|
1501
|
+
MJ_AIPromptModels_PromptIDArray: MJAIPromptModel_[];
|
|
1470
1502
|
MJ_AIAgentSteps_PromptIDArray: MJAIAgentStep_[];
|
|
1471
1503
|
MJ_AIPromptRuns_PromptIDArray: MJAIPromptRun_[];
|
|
1472
1504
|
AIAgents_ContextCompressionPromptIDArray: MJAIAgent_[];
|
|
@@ -1595,8 +1627,8 @@ export declare class MJAIPromptResolver extends ResolverBase {
|
|
|
1595
1627
|
AIAgentActions_CompactPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1596
1628
|
MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1597
1629
|
AIPrompts_ResultSelectorPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1598
|
-
MJ_AIPromptModels_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1599
1630
|
MJ_AIAgentPrompts_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1631
|
+
MJ_AIPromptModels_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1600
1632
|
MJ_AIAgentSteps_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1601
1633
|
MJ_AIPromptRuns_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1602
1634
|
AIAgents_ContextCompressionPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -3220,6 +3252,7 @@ export declare class MJConversationDetail_ {
|
|
|
3220
3252
|
RootParentID?: string;
|
|
3221
3253
|
Reports_ConversationDetailIDArray: MJReport_[];
|
|
3222
3254
|
MJ_ConversationDetailArtifacts_ConversationDetailIDArray: MJConversationDetailArtifact_[];
|
|
3255
|
+
MJ_ConversationDetailAttachments_ConversationDetailIDArray: MJConversationDetailAttachment_[];
|
|
3223
3256
|
MJ_ConversationDetailRatings_ConversationDetailIDArray: MJConversationDetailRating_[];
|
|
3224
3257
|
AIAgentNotes_SourceConversationDetailIDArray: MJAIAgentNote_[];
|
|
3225
3258
|
MJ_AIAgentRuns_ConversationDetailIDArray: MJAIAgentRun_[];
|
|
@@ -3298,6 +3331,7 @@ export declare class MJConversationDetailResolver extends ResolverBase {
|
|
|
3298
3331
|
MJConversationDetail(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJConversationDetail_ | null>;
|
|
3299
3332
|
Reports_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3300
3333
|
MJ_ConversationDetailArtifacts_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3334
|
+
MJ_ConversationDetailAttachments_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3301
3335
|
MJ_ConversationDetailRatings_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3302
3336
|
AIAgentNotes_SourceConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3303
3337
|
MJ_AIAgentRuns_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -4203,6 +4237,7 @@ export declare class MJEntity_ {
|
|
|
4203
4237
|
MJ_RecordLinks_SourceEntityIDArray: MJRecordLink_[];
|
|
4204
4238
|
GeneratedCodes_LinkedEntityIDArray: MJGeneratedCode_[];
|
|
4205
4239
|
MJ_RecordLinks_TargetEntityIDArray: MJRecordLink_[];
|
|
4240
|
+
MJ_TestRuns_TargetLogEntityIDArray: MJTestRun_[];
|
|
4206
4241
|
}
|
|
4207
4242
|
export declare class CreateMJEntityInput {
|
|
4208
4243
|
ID?: string;
|
|
@@ -4370,6 +4405,7 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
4370
4405
|
MJ_RecordLinks_SourceEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4371
4406
|
GeneratedCodes_LinkedEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4372
4407
|
MJ_RecordLinks_TargetEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4408
|
+
MJ_TestRuns_TargetLogEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4373
4409
|
CreateMJEntity(input: CreateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4374
4410
|
UpdateMJEntity(input: UpdateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4375
4411
|
DeleteMJEntity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5681,6 +5717,8 @@ export declare class MJFileStorageProvider_ {
|
|
|
5681
5717
|
_mj__UpdatedAt: Date;
|
|
5682
5718
|
SupportsSearch: boolean;
|
|
5683
5719
|
Files_ProviderIDArray: MJFile_[];
|
|
5720
|
+
MJ_AIConfigurations_DefaultStorageProviderIDArray: MJAIConfiguration_[];
|
|
5721
|
+
AIAgents_AttachmentStorageProviderIDArray: MJAIAgent_[];
|
|
5684
5722
|
}
|
|
5685
5723
|
export declare class CreateMJFileStorageProviderInput {
|
|
5686
5724
|
ID?: string;
|
|
@@ -5718,6 +5756,8 @@ export declare class MJFileStorageProviderResolver extends ResolverBase {
|
|
|
5718
5756
|
RunMJFileStorageProviderDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5719
5757
|
MJFileStorageProvider(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJFileStorageProvider_ | null>;
|
|
5720
5758
|
Files_ProviderIDArray(mjfilestorageprovider_: MJFileStorageProvider_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5759
|
+
MJ_AIConfigurations_DefaultStorageProviderIDArray(mjfilestorageprovider_: MJFileStorageProvider_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5760
|
+
AIAgents_AttachmentStorageProviderIDArray(mjfilestorageprovider_: MJFileStorageProvider_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5721
5761
|
CreateMJFileStorageProvider(input: CreateMJFileStorageProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5722
5762
|
UpdateMJFileStorageProvider(input: UpdateMJFileStorageProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5723
5763
|
DeleteMJFileStorageProvider(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5736,6 +5776,7 @@ export declare class MJFile_ {
|
|
|
5736
5776
|
Category?: string;
|
|
5737
5777
|
Provider: string;
|
|
5738
5778
|
FileEntityRecordLinks_FileIDArray: MJFileEntityRecordLink_[];
|
|
5779
|
+
MJ_ConversationDetailAttachments_FileIDArray: MJConversationDetailAttachment_[];
|
|
5739
5780
|
}
|
|
5740
5781
|
export declare class CreateMJFileInput {
|
|
5741
5782
|
ID?: string;
|
|
@@ -5773,6 +5814,7 @@ export declare class MJFileResolver extends ResolverBase {
|
|
|
5773
5814
|
RunMJFileDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5774
5815
|
MJFile(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJFile_ | null>;
|
|
5775
5816
|
FileEntityRecordLinks_FileIDArray(mjfile_: MJFile_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5817
|
+
MJ_ConversationDetailAttachments_FileIDArray(mjfile_: MJFile_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5776
5818
|
CreateMJFile(input: CreateMJFileInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5777
5819
|
UpdateMJFile(input: UpdateMJFileInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5778
5820
|
DeleteMJFile(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6565,6 +6607,56 @@ export declare class MJAIAgentExampleResolver extends ResolverBase {
|
|
|
6565
6607
|
UpdateMJAIAgentExample(input: UpdateMJAIAgentExampleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6566
6608
|
DeleteMJAIAgentExample(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6567
6609
|
}
|
|
6610
|
+
export declare class MJAIAgentModality_ {
|
|
6611
|
+
ID: string;
|
|
6612
|
+
AgentID: string;
|
|
6613
|
+
ModalityID: string;
|
|
6614
|
+
Direction: string;
|
|
6615
|
+
IsAllowed: boolean;
|
|
6616
|
+
MaxSizeBytes?: number;
|
|
6617
|
+
MaxCountPerMessage?: number;
|
|
6618
|
+
_mj__CreatedAt: Date;
|
|
6619
|
+
_mj__UpdatedAt: Date;
|
|
6620
|
+
Agent?: string;
|
|
6621
|
+
Modality: string;
|
|
6622
|
+
}
|
|
6623
|
+
export declare class CreateMJAIAgentModalityInput {
|
|
6624
|
+
ID?: string;
|
|
6625
|
+
AgentID?: string;
|
|
6626
|
+
ModalityID?: string;
|
|
6627
|
+
Direction?: string;
|
|
6628
|
+
IsAllowed?: boolean;
|
|
6629
|
+
MaxSizeBytes: number | null;
|
|
6630
|
+
MaxCountPerMessage: number | null;
|
|
6631
|
+
}
|
|
6632
|
+
export declare class UpdateMJAIAgentModalityInput {
|
|
6633
|
+
ID: string;
|
|
6634
|
+
AgentID?: string;
|
|
6635
|
+
ModalityID?: string;
|
|
6636
|
+
Direction?: string;
|
|
6637
|
+
IsAllowed?: boolean;
|
|
6638
|
+
MaxSizeBytes?: number | null;
|
|
6639
|
+
MaxCountPerMessage?: number | null;
|
|
6640
|
+
OldValues___?: KeyValuePairInput[];
|
|
6641
|
+
}
|
|
6642
|
+
export declare class RunMJAIAgentModalityViewResult {
|
|
6643
|
+
Results: MJAIAgentModality_[];
|
|
6644
|
+
UserViewRunID?: string;
|
|
6645
|
+
RowCount: number;
|
|
6646
|
+
TotalRowCount: number;
|
|
6647
|
+
ExecutionTime: number;
|
|
6648
|
+
ErrorMessage?: string;
|
|
6649
|
+
Success: boolean;
|
|
6650
|
+
}
|
|
6651
|
+
export declare class MJAIAgentModalityResolver extends ResolverBase {
|
|
6652
|
+
RunMJAIAgentModalityViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6653
|
+
RunMJAIAgentModalityViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6654
|
+
RunMJAIAgentModalityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6655
|
+
MJAIAgentModality(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentModality_ | null>;
|
|
6656
|
+
CreateMJAIAgentModality(input: CreateMJAIAgentModalityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6657
|
+
UpdateMJAIAgentModality(input: UpdateMJAIAgentModalityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6658
|
+
DeleteMJAIAgentModality(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6659
|
+
}
|
|
6568
6660
|
export declare class MJAIAgentPermission_ {
|
|
6569
6661
|
ID: string;
|
|
6570
6662
|
AgentID: string;
|
|
@@ -6881,8 +6973,8 @@ export declare class MJAIAgentRun_ {
|
|
|
6881
6973
|
RootLastRunID?: string;
|
|
6882
6974
|
MJ_AIAgentRunSteps_AgentRunIDArray: MJAIAgentRunStep_[];
|
|
6883
6975
|
MJ_AIAgentRuns_ParentRunIDArray: MJAIAgentRun_[];
|
|
6884
|
-
AIAgentNotes_SourceAIAgentRunIDArray: MJAIAgentNote_[];
|
|
6885
6976
|
MJ_AIAgentExamples_SourceAIAgentRunIDArray: MJAIAgentExample_[];
|
|
6977
|
+
AIAgentNotes_SourceAIAgentRunIDArray: MJAIAgentNote_[];
|
|
6886
6978
|
MJ_AIPromptRuns_AgentRunIDArray: MJAIPromptRun_[];
|
|
6887
6979
|
}
|
|
6888
6980
|
export declare class CreateMJAIAgentRunInput {
|
|
@@ -6984,8 +7076,8 @@ export declare class MJAIAgentRunResolver extends ResolverBase {
|
|
|
6984
7076
|
MJAIAgentRun(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentRun_ | null>;
|
|
6985
7077
|
MJ_AIAgentRunSteps_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6986
7078
|
MJ_AIAgentRuns_ParentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6987
|
-
AIAgentNotes_SourceAIAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6988
7079
|
MJ_AIAgentExamples_SourceAIAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7080
|
+
AIAgentNotes_SourceAIAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6989
7081
|
MJ_AIPromptRuns_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6990
7082
|
CreateMJAIAgentRun(input: CreateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6991
7083
|
UpdateMJAIAgentRun(input: UpdateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7199,6 +7291,63 @@ export declare class MJAIAgentTypeResolver extends ResolverBase {
|
|
|
7199
7291
|
UpdateMJAIAgentType(input: UpdateMJAIAgentTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7200
7292
|
DeleteMJAIAgentType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7201
7293
|
}
|
|
7294
|
+
export declare class MJAIArchitecture_ {
|
|
7295
|
+
ID: string;
|
|
7296
|
+
Name: string;
|
|
7297
|
+
Description?: string;
|
|
7298
|
+
Category: string;
|
|
7299
|
+
ParentArchitectureID?: string;
|
|
7300
|
+
WikipediaURL?: string;
|
|
7301
|
+
YearIntroduced?: number;
|
|
7302
|
+
KeyPaper?: string;
|
|
7303
|
+
_mj__CreatedAt: Date;
|
|
7304
|
+
_mj__UpdatedAt: Date;
|
|
7305
|
+
ParentArchitecture?: string;
|
|
7306
|
+
RootParentArchitectureID?: string;
|
|
7307
|
+
MJ_AIArchitectures_ParentArchitectureIDArray: MJAIArchitecture_[];
|
|
7308
|
+
MJ_AIModelArchitectures_ArchitectureIDArray: MJAIModelArchitecture_[];
|
|
7309
|
+
}
|
|
7310
|
+
export declare class CreateMJAIArchitectureInput {
|
|
7311
|
+
ID?: string;
|
|
7312
|
+
Name?: string;
|
|
7313
|
+
Description: string | null;
|
|
7314
|
+
Category?: string;
|
|
7315
|
+
ParentArchitectureID: string | null;
|
|
7316
|
+
WikipediaURL: string | null;
|
|
7317
|
+
YearIntroduced: number | null;
|
|
7318
|
+
KeyPaper: string | null;
|
|
7319
|
+
}
|
|
7320
|
+
export declare class UpdateMJAIArchitectureInput {
|
|
7321
|
+
ID: string;
|
|
7322
|
+
Name?: string;
|
|
7323
|
+
Description?: string | null;
|
|
7324
|
+
Category?: string;
|
|
7325
|
+
ParentArchitectureID?: string | null;
|
|
7326
|
+
WikipediaURL?: string | null;
|
|
7327
|
+
YearIntroduced?: number | null;
|
|
7328
|
+
KeyPaper?: string | null;
|
|
7329
|
+
OldValues___?: KeyValuePairInput[];
|
|
7330
|
+
}
|
|
7331
|
+
export declare class RunMJAIArchitectureViewResult {
|
|
7332
|
+
Results: MJAIArchitecture_[];
|
|
7333
|
+
UserViewRunID?: string;
|
|
7334
|
+
RowCount: number;
|
|
7335
|
+
TotalRowCount: number;
|
|
7336
|
+
ExecutionTime: number;
|
|
7337
|
+
ErrorMessage?: string;
|
|
7338
|
+
Success: boolean;
|
|
7339
|
+
}
|
|
7340
|
+
export declare class MJAIArchitectureResolver extends ResolverBase {
|
|
7341
|
+
RunMJAIArchitectureViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7342
|
+
RunMJAIArchitectureViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7343
|
+
RunMJAIArchitectureDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7344
|
+
MJAIArchitecture(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIArchitecture_ | null>;
|
|
7345
|
+
MJ_AIArchitectures_ParentArchitectureIDArray(mjaiarchitecture_: MJAIArchitecture_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7346
|
+
MJ_AIModelArchitectures_ArchitectureIDArray(mjaiarchitecture_: MJAIArchitecture_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7347
|
+
CreateMJAIArchitecture(input: CreateMJAIArchitectureInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7348
|
+
UpdateMJAIArchitecture(input: UpdateMJAIArchitectureInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7349
|
+
DeleteMJAIArchitecture(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7350
|
+
}
|
|
7202
7351
|
export declare class MJAIConfigurationParam_ {
|
|
7203
7352
|
ID: string;
|
|
7204
7353
|
ConfigurationID: string;
|
|
@@ -7255,8 +7404,14 @@ export declare class MJAIConfiguration_ {
|
|
|
7255
7404
|
DefaultPromptForContextSummarizationID?: string;
|
|
7256
7405
|
_mj__CreatedAt: Date;
|
|
7257
7406
|
_mj__UpdatedAt: Date;
|
|
7407
|
+
DefaultStorageProviderID?: string;
|
|
7408
|
+
DefaultStorageRootPath?: string;
|
|
7409
|
+
ParentID?: string;
|
|
7258
7410
|
DefaultPromptForContextCompression?: string;
|
|
7259
7411
|
DefaultPromptForContextSummarization?: string;
|
|
7412
|
+
DefaultStorageProvider?: string;
|
|
7413
|
+
Parent?: string;
|
|
7414
|
+
RootParentID?: string;
|
|
7260
7415
|
MJ_AIConfigurationParams_ConfigurationIDArray: MJAIConfigurationParam_[];
|
|
7261
7416
|
MJ_AIAgentPrompts_ConfigurationIDArray: MJAIAgentPrompt_[];
|
|
7262
7417
|
MJ_AIAgentConfigurations_AIConfigurationIDArray: MJAIAgentConfiguration_[];
|
|
@@ -7264,6 +7419,7 @@ export declare class MJAIConfiguration_ {
|
|
|
7264
7419
|
AIResultCache_ConfigurationIDArray: MJAIResultCache_[];
|
|
7265
7420
|
MJ_AIPromptRuns_ConfigurationIDArray: MJAIPromptRun_[];
|
|
7266
7421
|
MJ_AIAgentRuns_ConfigurationIDArray: MJAIAgentRun_[];
|
|
7422
|
+
MJ_AIConfigurations_ParentIDArray: MJAIConfiguration_[];
|
|
7267
7423
|
}
|
|
7268
7424
|
export declare class CreateMJAIConfigurationInput {
|
|
7269
7425
|
ID?: string;
|
|
@@ -7273,6 +7429,9 @@ export declare class CreateMJAIConfigurationInput {
|
|
|
7273
7429
|
Status?: string;
|
|
7274
7430
|
DefaultPromptForContextCompressionID: string | null;
|
|
7275
7431
|
DefaultPromptForContextSummarizationID: string | null;
|
|
7432
|
+
DefaultStorageProviderID: string | null;
|
|
7433
|
+
DefaultStorageRootPath: string | null;
|
|
7434
|
+
ParentID: string | null;
|
|
7276
7435
|
}
|
|
7277
7436
|
export declare class UpdateMJAIConfigurationInput {
|
|
7278
7437
|
ID: string;
|
|
@@ -7282,6 +7441,9 @@ export declare class UpdateMJAIConfigurationInput {
|
|
|
7282
7441
|
Status?: string;
|
|
7283
7442
|
DefaultPromptForContextCompressionID?: string | null;
|
|
7284
7443
|
DefaultPromptForContextSummarizationID?: string | null;
|
|
7444
|
+
DefaultStorageProviderID?: string | null;
|
|
7445
|
+
DefaultStorageRootPath?: string | null;
|
|
7446
|
+
ParentID?: string | null;
|
|
7285
7447
|
OldValues___?: KeyValuePairInput[];
|
|
7286
7448
|
}
|
|
7287
7449
|
export declare class RunMJAIConfigurationViewResult {
|
|
@@ -7305,6 +7467,7 @@ export declare class MJAIConfigurationResolver extends ResolverBase {
|
|
|
7305
7467
|
AIResultCache_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7306
7468
|
MJ_AIPromptRuns_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7307
7469
|
MJ_AIAgentRuns_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7470
|
+
MJ_AIConfigurations_ParentIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7308
7471
|
CreateMJAIConfiguration(input: CreateMJAIConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7309
7472
|
UpdateMJAIConfiguration(input: UpdateMJAIConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7310
7473
|
DeleteMJAIConfiguration(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7364,6 +7527,117 @@ export declare class MJAICredentialBindingResolver extends ResolverBase {
|
|
|
7364
7527
|
UpdateMJAICredentialBinding(input: UpdateMJAICredentialBindingInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7365
7528
|
DeleteMJAICredentialBinding(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7366
7529
|
}
|
|
7530
|
+
export declare class MJAIModality_ {
|
|
7531
|
+
ID: string;
|
|
7532
|
+
Name: string;
|
|
7533
|
+
Description?: string;
|
|
7534
|
+
ContentBlockType: string;
|
|
7535
|
+
MIMETypePattern?: string;
|
|
7536
|
+
Type: string;
|
|
7537
|
+
DefaultMaxSizeBytes?: number;
|
|
7538
|
+
DefaultMaxCountPerMessage?: number;
|
|
7539
|
+
DisplayOrder: number;
|
|
7540
|
+
_mj__CreatedAt: Date;
|
|
7541
|
+
_mj__UpdatedAt: Date;
|
|
7542
|
+
MJ_AIModelModalities_ModalityIDArray: MJAIModelModality_[];
|
|
7543
|
+
MJ_AIAgentModalities_ModalityIDArray: MJAIAgentModality_[];
|
|
7544
|
+
MJ_ConversationDetailAttachments_ModalityIDArray: MJConversationDetailAttachment_[];
|
|
7545
|
+
AIModelTypes_DefaultOutputModalityIDArray: MJAIModelType_[];
|
|
7546
|
+
AIModelTypes_DefaultInputModalityIDArray: MJAIModelType_[];
|
|
7547
|
+
}
|
|
7548
|
+
export declare class CreateMJAIModalityInput {
|
|
7549
|
+
ID?: string;
|
|
7550
|
+
Name?: string;
|
|
7551
|
+
Description: string | null;
|
|
7552
|
+
ContentBlockType?: string;
|
|
7553
|
+
MIMETypePattern: string | null;
|
|
7554
|
+
Type?: string;
|
|
7555
|
+
DefaultMaxSizeBytes: number | null;
|
|
7556
|
+
DefaultMaxCountPerMessage: number | null;
|
|
7557
|
+
DisplayOrder?: number;
|
|
7558
|
+
}
|
|
7559
|
+
export declare class UpdateMJAIModalityInput {
|
|
7560
|
+
ID: string;
|
|
7561
|
+
Name?: string;
|
|
7562
|
+
Description?: string | null;
|
|
7563
|
+
ContentBlockType?: string;
|
|
7564
|
+
MIMETypePattern?: string | null;
|
|
7565
|
+
Type?: string;
|
|
7566
|
+
DefaultMaxSizeBytes?: number | null;
|
|
7567
|
+
DefaultMaxCountPerMessage?: number | null;
|
|
7568
|
+
DisplayOrder?: number;
|
|
7569
|
+
OldValues___?: KeyValuePairInput[];
|
|
7570
|
+
}
|
|
7571
|
+
export declare class RunMJAIModalityViewResult {
|
|
7572
|
+
Results: MJAIModality_[];
|
|
7573
|
+
UserViewRunID?: string;
|
|
7574
|
+
RowCount: number;
|
|
7575
|
+
TotalRowCount: number;
|
|
7576
|
+
ExecutionTime: number;
|
|
7577
|
+
ErrorMessage?: string;
|
|
7578
|
+
Success: boolean;
|
|
7579
|
+
}
|
|
7580
|
+
export declare class MJAIModalityResolver extends ResolverBase {
|
|
7581
|
+
RunMJAIModalityViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7582
|
+
RunMJAIModalityViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7583
|
+
RunMJAIModalityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7584
|
+
MJAIModality(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIModality_ | null>;
|
|
7585
|
+
MJ_AIModelModalities_ModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7586
|
+
MJ_AIAgentModalities_ModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7587
|
+
MJ_ConversationDetailAttachments_ModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7588
|
+
AIModelTypes_DefaultOutputModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7589
|
+
AIModelTypes_DefaultInputModalityIDArray(mjaimodality_: MJAIModality_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7590
|
+
CreateMJAIModality(input: CreateMJAIModalityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7591
|
+
UpdateMJAIModality(input: UpdateMJAIModalityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7592
|
+
DeleteMJAIModality(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7593
|
+
}
|
|
7594
|
+
export declare class MJAIModelArchitecture_ {
|
|
7595
|
+
ID: string;
|
|
7596
|
+
ModelID: string;
|
|
7597
|
+
ArchitectureID: string;
|
|
7598
|
+
Rank: number;
|
|
7599
|
+
Weight?: number;
|
|
7600
|
+
Notes?: string;
|
|
7601
|
+
_mj__CreatedAt: Date;
|
|
7602
|
+
_mj__UpdatedAt: Date;
|
|
7603
|
+
Model: string;
|
|
7604
|
+
Architecture: string;
|
|
7605
|
+
}
|
|
7606
|
+
export declare class CreateMJAIModelArchitectureInput {
|
|
7607
|
+
ID?: string;
|
|
7608
|
+
ModelID?: string;
|
|
7609
|
+
ArchitectureID?: string;
|
|
7610
|
+
Rank?: number;
|
|
7611
|
+
Weight: number | null;
|
|
7612
|
+
Notes: string | null;
|
|
7613
|
+
}
|
|
7614
|
+
export declare class UpdateMJAIModelArchitectureInput {
|
|
7615
|
+
ID: string;
|
|
7616
|
+
ModelID?: string;
|
|
7617
|
+
ArchitectureID?: string;
|
|
7618
|
+
Rank?: number;
|
|
7619
|
+
Weight?: number | null;
|
|
7620
|
+
Notes?: string | null;
|
|
7621
|
+
OldValues___?: KeyValuePairInput[];
|
|
7622
|
+
}
|
|
7623
|
+
export declare class RunMJAIModelArchitectureViewResult {
|
|
7624
|
+
Results: MJAIModelArchitecture_[];
|
|
7625
|
+
UserViewRunID?: string;
|
|
7626
|
+
RowCount: number;
|
|
7627
|
+
TotalRowCount: number;
|
|
7628
|
+
ExecutionTime: number;
|
|
7629
|
+
ErrorMessage?: string;
|
|
7630
|
+
Success: boolean;
|
|
7631
|
+
}
|
|
7632
|
+
export declare class MJAIModelArchitectureResolver extends ResolverBase {
|
|
7633
|
+
RunMJAIModelArchitectureViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7634
|
+
RunMJAIModelArchitectureViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7635
|
+
RunMJAIModelArchitectureDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7636
|
+
MJAIModelArchitecture(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIModelArchitecture_ | null>;
|
|
7637
|
+
CreateMJAIModelArchitecture(input: CreateMJAIModelArchitectureInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7638
|
+
UpdateMJAIModelArchitecture(input: UpdateMJAIModelArchitectureInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7639
|
+
DeleteMJAIModelArchitecture(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7640
|
+
}
|
|
7367
7641
|
export declare class MJAIModelCost_ {
|
|
7368
7642
|
ID: string;
|
|
7369
7643
|
ModelID: string;
|
|
@@ -7434,6 +7708,68 @@ export declare class MJAIModelCostResolver extends ResolverBase {
|
|
|
7434
7708
|
UpdateMJAIModelCost(input: UpdateMJAIModelCostInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7435
7709
|
DeleteMJAIModelCost(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7436
7710
|
}
|
|
7711
|
+
export declare class MJAIModelModality_ {
|
|
7712
|
+
ID: string;
|
|
7713
|
+
ModelID: string;
|
|
7714
|
+
ModalityID: string;
|
|
7715
|
+
Direction: string;
|
|
7716
|
+
IsSupported: boolean;
|
|
7717
|
+
IsRequired: boolean;
|
|
7718
|
+
SupportedFormats?: string;
|
|
7719
|
+
MaxSizeBytes?: number;
|
|
7720
|
+
MaxCountPerMessage?: number;
|
|
7721
|
+
MaxDimension?: number;
|
|
7722
|
+
Comments?: string;
|
|
7723
|
+
_mj__CreatedAt: Date;
|
|
7724
|
+
_mj__UpdatedAt: Date;
|
|
7725
|
+
Model: string;
|
|
7726
|
+
Modality: string;
|
|
7727
|
+
}
|
|
7728
|
+
export declare class CreateMJAIModelModalityInput {
|
|
7729
|
+
ID?: string;
|
|
7730
|
+
ModelID?: string;
|
|
7731
|
+
ModalityID?: string;
|
|
7732
|
+
Direction?: string;
|
|
7733
|
+
IsSupported?: boolean;
|
|
7734
|
+
IsRequired?: boolean;
|
|
7735
|
+
SupportedFormats: string | null;
|
|
7736
|
+
MaxSizeBytes: number | null;
|
|
7737
|
+
MaxCountPerMessage: number | null;
|
|
7738
|
+
MaxDimension: number | null;
|
|
7739
|
+
Comments: string | null;
|
|
7740
|
+
}
|
|
7741
|
+
export declare class UpdateMJAIModelModalityInput {
|
|
7742
|
+
ID: string;
|
|
7743
|
+
ModelID?: string;
|
|
7744
|
+
ModalityID?: string;
|
|
7745
|
+
Direction?: string;
|
|
7746
|
+
IsSupported?: boolean;
|
|
7747
|
+
IsRequired?: boolean;
|
|
7748
|
+
SupportedFormats?: string | null;
|
|
7749
|
+
MaxSizeBytes?: number | null;
|
|
7750
|
+
MaxCountPerMessage?: number | null;
|
|
7751
|
+
MaxDimension?: number | null;
|
|
7752
|
+
Comments?: string | null;
|
|
7753
|
+
OldValues___?: KeyValuePairInput[];
|
|
7754
|
+
}
|
|
7755
|
+
export declare class RunMJAIModelModalityViewResult {
|
|
7756
|
+
Results: MJAIModelModality_[];
|
|
7757
|
+
UserViewRunID?: string;
|
|
7758
|
+
RowCount: number;
|
|
7759
|
+
TotalRowCount: number;
|
|
7760
|
+
ExecutionTime: number;
|
|
7761
|
+
ErrorMessage?: string;
|
|
7762
|
+
Success: boolean;
|
|
7763
|
+
}
|
|
7764
|
+
export declare class MJAIModelModalityResolver extends ResolverBase {
|
|
7765
|
+
RunMJAIModelModalityViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7766
|
+
RunMJAIModelModalityViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7767
|
+
RunMJAIModelModalityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7768
|
+
MJAIModelModality(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIModelModality_ | null>;
|
|
7769
|
+
CreateMJAIModelModality(input: CreateMJAIModelModalityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7770
|
+
UpdateMJAIModelModality(input: UpdateMJAIModelModalityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7771
|
+
DeleteMJAIModelModality(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7772
|
+
}
|
|
7437
7773
|
export declare class MJAIModelPriceType_ {
|
|
7438
7774
|
ID: string;
|
|
7439
7775
|
Name: string;
|
|
@@ -9082,6 +9418,75 @@ export declare class MJConversationDetailArtifactResolver extends ResolverBase {
|
|
|
9082
9418
|
UpdateMJConversationDetailArtifact(input: UpdateMJConversationDetailArtifactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9083
9419
|
DeleteMJConversationDetailArtifact(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9084
9420
|
}
|
|
9421
|
+
export declare class MJConversationDetailAttachment_ {
|
|
9422
|
+
ID: string;
|
|
9423
|
+
ConversationDetailID: string;
|
|
9424
|
+
ModalityID: string;
|
|
9425
|
+
MimeType: string;
|
|
9426
|
+
FileName?: string;
|
|
9427
|
+
FileSizeBytes: number;
|
|
9428
|
+
Width?: number;
|
|
9429
|
+
Height?: number;
|
|
9430
|
+
DurationSeconds?: number;
|
|
9431
|
+
InlineData?: string;
|
|
9432
|
+
FileID?: string;
|
|
9433
|
+
DisplayOrder: number;
|
|
9434
|
+
ThumbnailBase64?: string;
|
|
9435
|
+
_mj__CreatedAt: Date;
|
|
9436
|
+
_mj__UpdatedAt: Date;
|
|
9437
|
+
ConversationDetail: string;
|
|
9438
|
+
Modality: string;
|
|
9439
|
+
File?: string;
|
|
9440
|
+
}
|
|
9441
|
+
export declare class CreateMJConversationDetailAttachmentInput {
|
|
9442
|
+
ID?: string;
|
|
9443
|
+
ConversationDetailID?: string;
|
|
9444
|
+
ModalityID?: string;
|
|
9445
|
+
MimeType?: string;
|
|
9446
|
+
FileName: string | null;
|
|
9447
|
+
FileSizeBytes?: number;
|
|
9448
|
+
Width: number | null;
|
|
9449
|
+
Height: number | null;
|
|
9450
|
+
DurationSeconds: number | null;
|
|
9451
|
+
InlineData: string | null;
|
|
9452
|
+
FileID: string | null;
|
|
9453
|
+
DisplayOrder?: number;
|
|
9454
|
+
ThumbnailBase64: string | null;
|
|
9455
|
+
}
|
|
9456
|
+
export declare class UpdateMJConversationDetailAttachmentInput {
|
|
9457
|
+
ID: string;
|
|
9458
|
+
ConversationDetailID?: string;
|
|
9459
|
+
ModalityID?: string;
|
|
9460
|
+
MimeType?: string;
|
|
9461
|
+
FileName?: string | null;
|
|
9462
|
+
FileSizeBytes?: number;
|
|
9463
|
+
Width?: number | null;
|
|
9464
|
+
Height?: number | null;
|
|
9465
|
+
DurationSeconds?: number | null;
|
|
9466
|
+
InlineData?: string | null;
|
|
9467
|
+
FileID?: string | null;
|
|
9468
|
+
DisplayOrder?: number;
|
|
9469
|
+
ThumbnailBase64?: string | null;
|
|
9470
|
+
OldValues___?: KeyValuePairInput[];
|
|
9471
|
+
}
|
|
9472
|
+
export declare class RunMJConversationDetailAttachmentViewResult {
|
|
9473
|
+
Results: MJConversationDetailAttachment_[];
|
|
9474
|
+
UserViewRunID?: string;
|
|
9475
|
+
RowCount: number;
|
|
9476
|
+
TotalRowCount: number;
|
|
9477
|
+
ExecutionTime: number;
|
|
9478
|
+
ErrorMessage?: string;
|
|
9479
|
+
Success: boolean;
|
|
9480
|
+
}
|
|
9481
|
+
export declare class MJConversationDetailAttachmentResolver extends ResolverBase {
|
|
9482
|
+
RunMJConversationDetailAttachmentViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9483
|
+
RunMJConversationDetailAttachmentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9484
|
+
RunMJConversationDetailAttachmentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9485
|
+
MJConversationDetailAttachment(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJConversationDetailAttachment_ | null>;
|
|
9486
|
+
CreateMJConversationDetailAttachment(input: CreateMJConversationDetailAttachmentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9487
|
+
UpdateMJConversationDetailAttachment(input: UpdateMJConversationDetailAttachmentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9488
|
+
DeleteMJConversationDetailAttachment(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9489
|
+
}
|
|
9085
9490
|
export declare class MJConversationDetailRating_ {
|
|
9086
9491
|
ID: string;
|
|
9087
9492
|
ConversationDetailID: string;
|
|
@@ -9565,8 +9970,8 @@ export declare class MJEnvironment_ {
|
|
|
9565
9970
|
MJ_Projects_EnvironmentIDArray: MJProject_[];
|
|
9566
9971
|
MJ_Collections_EnvironmentIDArray: MJCollection_[];
|
|
9567
9972
|
MJ_Artifacts_EnvironmentIDArray: MJArtifact_[];
|
|
9568
|
-
Dashboards_EnvironmentIDArray: MJDashboard_[];
|
|
9569
9973
|
MJ_Tasks_EnvironmentIDArray: MJTask_[];
|
|
9974
|
+
Dashboards_EnvironmentIDArray: MJDashboard_[];
|
|
9570
9975
|
Reports_EnvironmentIDArray: MJReport_[];
|
|
9571
9976
|
Conversations_EnvironmentIDArray: MJConversation_[];
|
|
9572
9977
|
}
|
|
@@ -9602,8 +10007,8 @@ export declare class MJEnvironmentResolver extends ResolverBase {
|
|
|
9602
10007
|
MJ_Projects_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9603
10008
|
MJ_Collections_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9604
10009
|
MJ_Artifacts_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9605
|
-
Dashboards_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9606
10010
|
MJ_Tasks_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10011
|
+
Dashboards_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9607
10012
|
Reports_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9608
10013
|
Conversations_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9609
10014
|
CreateMJEnvironment(input: CreateMJEnvironmentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10446,9 +10851,18 @@ export declare class MJTestRun_ {
|
|
|
10446
10851
|
ResultDetails?: string;
|
|
10447
10852
|
_mj__CreatedAt: Date;
|
|
10448
10853
|
_mj__UpdatedAt: Date;
|
|
10854
|
+
Log?: string;
|
|
10855
|
+
Tags?: string;
|
|
10856
|
+
MachineName?: string;
|
|
10857
|
+
MachineID?: string;
|
|
10858
|
+
RunByUserName?: string;
|
|
10859
|
+
RunByUserEmail?: string;
|
|
10860
|
+
RunContextDetails?: string;
|
|
10861
|
+
TargetLogEntityID?: string;
|
|
10449
10862
|
Test: string;
|
|
10450
10863
|
TestSuiteRun?: string;
|
|
10451
10864
|
RunByUser: string;
|
|
10865
|
+
TargetLogEntity?: string;
|
|
10452
10866
|
MJ_TestRunFeedbacks_TestRunIDArray: MJTestRunFeedback_[];
|
|
10453
10867
|
MJ_AIPromptRuns_TestRunIDArray: MJAIPromptRun_[];
|
|
10454
10868
|
MJ_AIAgentRuns_TestRunIDArray: MJAIAgentRun_[];
|
|
@@ -10477,6 +10891,14 @@ export declare class CreateMJTestRunInput {
|
|
|
10477
10891
|
CostUSD: number | null;
|
|
10478
10892
|
ErrorMessage: string | null;
|
|
10479
10893
|
ResultDetails: string | null;
|
|
10894
|
+
Log: string | null;
|
|
10895
|
+
Tags: string | null;
|
|
10896
|
+
MachineName: string | null;
|
|
10897
|
+
MachineID: string | null;
|
|
10898
|
+
RunByUserName: string | null;
|
|
10899
|
+
RunByUserEmail: string | null;
|
|
10900
|
+
RunContextDetails: string | null;
|
|
10901
|
+
TargetLogEntityID: string | null;
|
|
10480
10902
|
}
|
|
10481
10903
|
export declare class UpdateMJTestRunInput {
|
|
10482
10904
|
ID: string;
|
|
@@ -10500,6 +10922,14 @@ export declare class UpdateMJTestRunInput {
|
|
|
10500
10922
|
CostUSD?: number | null;
|
|
10501
10923
|
ErrorMessage?: string | null;
|
|
10502
10924
|
ResultDetails?: string | null;
|
|
10925
|
+
Log?: string | null;
|
|
10926
|
+
Tags?: string | null;
|
|
10927
|
+
MachineName?: string | null;
|
|
10928
|
+
MachineID?: string | null;
|
|
10929
|
+
RunByUserName?: string | null;
|
|
10930
|
+
RunByUserEmail?: string | null;
|
|
10931
|
+
RunContextDetails?: string | null;
|
|
10932
|
+
TargetLogEntityID?: string | null;
|
|
10503
10933
|
OldValues___?: KeyValuePairInput[];
|
|
10504
10934
|
}
|
|
10505
10935
|
export declare class RunMJTestRunViewResult {
|
|
@@ -10548,6 +10978,12 @@ export declare class MJTestSuiteRun_ {
|
|
|
10548
10978
|
ErrorMessage?: string;
|
|
10549
10979
|
_mj__CreatedAt: Date;
|
|
10550
10980
|
_mj__UpdatedAt: Date;
|
|
10981
|
+
Tags?: string;
|
|
10982
|
+
MachineName?: string;
|
|
10983
|
+
MachineID?: string;
|
|
10984
|
+
RunByUserName?: string;
|
|
10985
|
+
RunByUserEmail?: string;
|
|
10986
|
+
RunContextDetails?: string;
|
|
10551
10987
|
Suite: string;
|
|
10552
10988
|
RunByUser: string;
|
|
10553
10989
|
MJ_TestRuns_TestSuiteRunIDArray: MJTestRun_[];
|
|
@@ -10573,6 +11009,12 @@ export declare class CreateMJTestSuiteRunInput {
|
|
|
10573
11009
|
Configuration: string | null;
|
|
10574
11010
|
ResultSummary: string | null;
|
|
10575
11011
|
ErrorMessage: string | null;
|
|
11012
|
+
Tags: string | null;
|
|
11013
|
+
MachineName: string | null;
|
|
11014
|
+
MachineID: string | null;
|
|
11015
|
+
RunByUserName: string | null;
|
|
11016
|
+
RunByUserEmail: string | null;
|
|
11017
|
+
RunContextDetails: string | null;
|
|
10576
11018
|
}
|
|
10577
11019
|
export declare class UpdateMJTestSuiteRunInput {
|
|
10578
11020
|
ID: string;
|
|
@@ -10595,6 +11037,12 @@ export declare class UpdateMJTestSuiteRunInput {
|
|
|
10595
11037
|
Configuration?: string | null;
|
|
10596
11038
|
ResultSummary?: string | null;
|
|
10597
11039
|
ErrorMessage?: string | null;
|
|
11040
|
+
Tags?: string | null;
|
|
11041
|
+
MachineName?: string | null;
|
|
11042
|
+
MachineID?: string | null;
|
|
11043
|
+
RunByUserName?: string | null;
|
|
11044
|
+
RunByUserEmail?: string | null;
|
|
11045
|
+
RunContextDetails?: string | null;
|
|
10598
11046
|
OldValues___?: KeyValuePairInput[];
|
|
10599
11047
|
}
|
|
10600
11048
|
export declare class RunMJTestSuiteRunViewResult {
|
|
@@ -10673,6 +11121,7 @@ export declare class MJTestSuite_ {
|
|
|
10673
11121
|
Configuration?: string;
|
|
10674
11122
|
_mj__CreatedAt: Date;
|
|
10675
11123
|
_mj__UpdatedAt: Date;
|
|
11124
|
+
MaxExecutionTimeMS?: number;
|
|
10676
11125
|
Parent?: string;
|
|
10677
11126
|
RootParentID?: string;
|
|
10678
11127
|
MJ_TestSuites_ParentIDArray: MJTestSuite_[];
|
|
@@ -10687,6 +11136,7 @@ export declare class CreateMJTestSuiteInput {
|
|
|
10687
11136
|
Status?: string;
|
|
10688
11137
|
Tags: string | null;
|
|
10689
11138
|
Configuration: string | null;
|
|
11139
|
+
MaxExecutionTimeMS: number | null;
|
|
10690
11140
|
}
|
|
10691
11141
|
export declare class UpdateMJTestSuiteInput {
|
|
10692
11142
|
ID: string;
|
|
@@ -10696,6 +11146,7 @@ export declare class UpdateMJTestSuiteInput {
|
|
|
10696
11146
|
Status?: string;
|
|
10697
11147
|
Tags?: string | null;
|
|
10698
11148
|
Configuration?: string | null;
|
|
11149
|
+
MaxExecutionTimeMS?: number | null;
|
|
10699
11150
|
OldValues___?: KeyValuePairInput[];
|
|
10700
11151
|
}
|
|
10701
11152
|
export declare class RunMJTestSuiteViewResult {
|
|
@@ -10781,6 +11232,7 @@ export declare class MJTest_ {
|
|
|
10781
11232
|
_mj__CreatedAt: Date;
|
|
10782
11233
|
_mj__UpdatedAt: Date;
|
|
10783
11234
|
RepeatCount?: number;
|
|
11235
|
+
MaxExecutionTimeMS?: number;
|
|
10784
11236
|
Type: string;
|
|
10785
11237
|
MJ_TestRuns_TestIDArray: MJTestRun_[];
|
|
10786
11238
|
MJ_TestSuiteTests_TestIDArray: MJTestSuiteTest_[];
|
|
@@ -10799,6 +11251,7 @@ export declare class CreateMJTestInput {
|
|
|
10799
11251
|
EstimatedDurationSeconds: number | null;
|
|
10800
11252
|
EstimatedCostUSD: number | null;
|
|
10801
11253
|
RepeatCount: number | null;
|
|
11254
|
+
MaxExecutionTimeMS: number | null;
|
|
10802
11255
|
}
|
|
10803
11256
|
export declare class UpdateMJTestInput {
|
|
10804
11257
|
ID: string;
|
|
@@ -10814,6 +11267,7 @@ export declare class UpdateMJTestInput {
|
|
|
10814
11267
|
EstimatedDurationSeconds?: number | null;
|
|
10815
11268
|
EstimatedCostUSD?: number | null;
|
|
10816
11269
|
RepeatCount?: number | null;
|
|
11270
|
+
MaxExecutionTimeMS?: number | null;
|
|
10817
11271
|
OldValues___?: KeyValuePairInput[];
|
|
10818
11272
|
}
|
|
10819
11273
|
export declare class RunMJTestViewResult {
|
|
@@ -13504,8 +13958,8 @@ export declare class MJUser_ {
|
|
|
13504
13958
|
MJ_ArtifactPermissions_UserIDArray: MJArtifactPermission_[];
|
|
13505
13959
|
MJ_ArtifactUses_UserIDArray: MJArtifactUse_[];
|
|
13506
13960
|
MJ_ConversationDetailRatings_UserIDArray: MJConversationDetailRating_[];
|
|
13507
|
-
MJ_TestSuiteRuns_RunByUserIDArray: MJTestSuiteRun_[];
|
|
13508
13961
|
MJ_TestRunFeedbacks_ReviewerUserIDArray: MJTestRunFeedback_[];
|
|
13962
|
+
MJ_TestSuiteRuns_RunByUserIDArray: MJTestSuiteRun_[];
|
|
13509
13963
|
MJ_UserSettings_UserIDArray: MJUserSetting_[];
|
|
13510
13964
|
ResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
13511
13965
|
AIAgentRequests_RequestForUserIDArray: MJAIAgentRequest_[];
|
|
@@ -13617,8 +14071,8 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
13617
14071
|
MJ_ArtifactPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13618
14072
|
MJ_ArtifactUses_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13619
14073
|
MJ_ConversationDetailRatings_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13620
|
-
MJ_TestSuiteRuns_RunByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13621
14074
|
MJ_TestRunFeedbacks_ReviewerUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14075
|
+
MJ_TestSuiteRuns_RunByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13622
14076
|
MJ_UserSettings_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13623
14077
|
ResourcePermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13624
14078
|
AIAgentRequests_RequestForUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|