@memberjunction/server 2.100.3 → 2.102.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 +658 -2
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +9144 -4916
- package/dist/generated/generated.js.map +1 -1
- package/package.json +40 -40
- package/src/generated/generated.ts +2696 -14
|
@@ -590,6 +590,44 @@ export declare class AIVendorResolver extends ResolverBase {
|
|
|
590
590
|
UpdateAIVendor(input: UpdateAIVendorInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
591
591
|
DeleteAIVendor(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
592
592
|
}
|
|
593
|
+
export declare class TaskType_ {
|
|
594
|
+
ID: string;
|
|
595
|
+
Name: string;
|
|
596
|
+
Description?: string;
|
|
597
|
+
_mj__CreatedAt: Date;
|
|
598
|
+
_mj__UpdatedAt: Date;
|
|
599
|
+
MJ_Tasks_TypeIDArray: Task_[];
|
|
600
|
+
}
|
|
601
|
+
export declare class CreateTaskTypeInput {
|
|
602
|
+
ID?: string;
|
|
603
|
+
Name?: string;
|
|
604
|
+
Description: string | null;
|
|
605
|
+
}
|
|
606
|
+
export declare class UpdateTaskTypeInput {
|
|
607
|
+
ID: string;
|
|
608
|
+
Name?: string;
|
|
609
|
+
Description?: string | null;
|
|
610
|
+
OldValues___?: KeyValuePairInput[];
|
|
611
|
+
}
|
|
612
|
+
export declare class RunTaskTypeViewResult {
|
|
613
|
+
Results: TaskType_[];
|
|
614
|
+
UserViewRunID?: string;
|
|
615
|
+
RowCount: number;
|
|
616
|
+
TotalRowCount: number;
|
|
617
|
+
ExecutionTime: number;
|
|
618
|
+
ErrorMessage?: string;
|
|
619
|
+
Success: boolean;
|
|
620
|
+
}
|
|
621
|
+
export declare class TaskTypeResolver extends ResolverBase {
|
|
622
|
+
RunTaskTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
623
|
+
RunTaskTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
624
|
+
RunTaskTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
625
|
+
TaskType(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<TaskType_ | null>;
|
|
626
|
+
MJ_Tasks_TypeIDArray(tasktype_: TaskType_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
627
|
+
CreateTaskType(input: CreateTaskTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
628
|
+
UpdateTaskType(input: UpdateTaskTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
629
|
+
DeleteTaskType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
630
|
+
}
|
|
593
631
|
export declare class AIConfiguration_ {
|
|
594
632
|
ID: string;
|
|
595
633
|
Name: string;
|
|
@@ -693,8 +731,8 @@ export declare class AIAgent_ {
|
|
|
693
731
|
Parent?: string;
|
|
694
732
|
ContextCompressionPrompt?: string;
|
|
695
733
|
Type?: string;
|
|
696
|
-
AIAgentModels_AgentIDArray: AIAgentModel_[];
|
|
697
734
|
AIAgentActions_AgentIDArray: AIAgentAction_[];
|
|
735
|
+
AIAgentModels_AgentIDArray: AIAgentModel_[];
|
|
698
736
|
AIAgentLearningCycles_AgentIDArray: AIAgentLearningCycle_[];
|
|
699
737
|
AIAgentRequests_AgentIDArray: AIAgentRequest_[];
|
|
700
738
|
MJ_AIAgentSteps_AgentIDArray: AIAgentStep_[];
|
|
@@ -704,6 +742,7 @@ export declare class AIAgent_ {
|
|
|
704
742
|
MJ_AIAgentRuns_AgentIDArray: AIAgentRun_[];
|
|
705
743
|
MJ_AIAgentSteps_SubAgentIDArray: AIAgentStep_[];
|
|
706
744
|
MJ_AIAgentRelationships_SubAgentIDArray: AIAgentRelationship_[];
|
|
745
|
+
MJ_Tasks_AgentIDArray: Task_[];
|
|
707
746
|
AIResultCache_AgentIDArray: AIResultCache_[];
|
|
708
747
|
MJ_AIPromptRuns_AgentIDArray: AIPromptRun_[];
|
|
709
748
|
AIAgents_ParentIDArray: AIAgent_[];
|
|
@@ -797,8 +836,8 @@ export declare class AIAgentResolver extends ResolverBase {
|
|
|
797
836
|
RunAIAgentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
798
837
|
RunAIAgentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
799
838
|
AIAgent(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<AIAgent_ | null>;
|
|
800
|
-
AIAgentModels_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
801
839
|
AIAgentActions_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
840
|
+
AIAgentModels_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
802
841
|
AIAgentLearningCycles_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
803
842
|
AIAgentRequests_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
804
843
|
MJ_AIAgentSteps_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -808,6 +847,7 @@ export declare class AIAgentResolver extends ResolverBase {
|
|
|
808
847
|
MJ_AIAgentRuns_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
809
848
|
MJ_AIAgentSteps_SubAgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
810
849
|
MJ_AIAgentRelationships_SubAgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
850
|
+
MJ_Tasks_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
811
851
|
AIResultCache_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
812
852
|
MJ_AIPromptRuns_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
813
853
|
AIAgents_ParentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -1152,6 +1192,62 @@ export declare class AIAgentNoteResolver extends ResolverBase {
|
|
|
1152
1192
|
UpdateAIAgentNote(input: UpdateAIAgentNoteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1153
1193
|
DeleteAIAgentNote(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1154
1194
|
}
|
|
1195
|
+
export declare class Environment_ {
|
|
1196
|
+
ID: string;
|
|
1197
|
+
Name: string;
|
|
1198
|
+
Description?: string;
|
|
1199
|
+
IsDefault: boolean;
|
|
1200
|
+
Settings?: string;
|
|
1201
|
+
_mj__CreatedAt: Date;
|
|
1202
|
+
_mj__UpdatedAt: Date;
|
|
1203
|
+
MJ_Collections_EnvironmentIDArray: Collection_[];
|
|
1204
|
+
MJ_Projects_EnvironmentIDArray: Project_[];
|
|
1205
|
+
MJ_Artifacts_EnvironmentIDArray: Artifact_[];
|
|
1206
|
+
Dashboards_EnvironmentIDArray: Dashboard_[];
|
|
1207
|
+
MJ_Tasks_EnvironmentIDArray: Task_[];
|
|
1208
|
+
Reports_EnvironmentIDArray: Report_[];
|
|
1209
|
+
Conversations_EnvironmentIDArray: Conversation_[];
|
|
1210
|
+
}
|
|
1211
|
+
export declare class CreateEnvironmentInput {
|
|
1212
|
+
ID?: string;
|
|
1213
|
+
Name?: string;
|
|
1214
|
+
Description: string | null;
|
|
1215
|
+
IsDefault?: boolean;
|
|
1216
|
+
Settings: string | null;
|
|
1217
|
+
}
|
|
1218
|
+
export declare class UpdateEnvironmentInput {
|
|
1219
|
+
ID: string;
|
|
1220
|
+
Name?: string;
|
|
1221
|
+
Description?: string | null;
|
|
1222
|
+
IsDefault?: boolean;
|
|
1223
|
+
Settings?: string | null;
|
|
1224
|
+
OldValues___?: KeyValuePairInput[];
|
|
1225
|
+
}
|
|
1226
|
+
export declare class RunEnvironmentViewResult {
|
|
1227
|
+
Results: Environment_[];
|
|
1228
|
+
UserViewRunID?: string;
|
|
1229
|
+
RowCount: number;
|
|
1230
|
+
TotalRowCount: number;
|
|
1231
|
+
ExecutionTime: number;
|
|
1232
|
+
ErrorMessage?: string;
|
|
1233
|
+
Success: boolean;
|
|
1234
|
+
}
|
|
1235
|
+
export declare class EnvironmentResolver extends ResolverBase {
|
|
1236
|
+
RunEnvironmentViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1237
|
+
RunEnvironmentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1238
|
+
RunEnvironmentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1239
|
+
Environment(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Environment_ | null>;
|
|
1240
|
+
MJ_Collections_EnvironmentIDArray(environment_: Environment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1241
|
+
MJ_Projects_EnvironmentIDArray(environment_: Environment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1242
|
+
MJ_Artifacts_EnvironmentIDArray(environment_: Environment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1243
|
+
Dashboards_EnvironmentIDArray(environment_: Environment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1244
|
+
MJ_Tasks_EnvironmentIDArray(environment_: Environment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1245
|
+
Reports_EnvironmentIDArray(environment_: Environment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1246
|
+
Conversations_EnvironmentIDArray(environment_: Environment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1247
|
+
CreateEnvironment(input: CreateEnvironmentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1248
|
+
UpdateEnvironment(input: UpdateEnvironmentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1249
|
+
DeleteEnvironment(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1250
|
+
}
|
|
1155
1251
|
export declare class AIAgentAction_ {
|
|
1156
1252
|
ID: string;
|
|
1157
1253
|
AgentID?: string;
|
|
@@ -1199,6 +1295,47 @@ export declare class AIAgentActionResolver extends ResolverBase {
|
|
|
1199
1295
|
UpdateAIAgentAction(input: UpdateAIAgentActionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1200
1296
|
DeleteAIAgentAction(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1201
1297
|
}
|
|
1298
|
+
export declare class TaskDependency_ {
|
|
1299
|
+
ID: string;
|
|
1300
|
+
TaskID: string;
|
|
1301
|
+
DependsOnTaskID: string;
|
|
1302
|
+
DependencyType: string;
|
|
1303
|
+
_mj__CreatedAt: Date;
|
|
1304
|
+
_mj__UpdatedAt: Date;
|
|
1305
|
+
Task: string;
|
|
1306
|
+
DependsOnTask: string;
|
|
1307
|
+
}
|
|
1308
|
+
export declare class CreateTaskDependencyInput {
|
|
1309
|
+
ID?: string;
|
|
1310
|
+
TaskID?: string;
|
|
1311
|
+
DependsOnTaskID?: string;
|
|
1312
|
+
DependencyType?: string;
|
|
1313
|
+
}
|
|
1314
|
+
export declare class UpdateTaskDependencyInput {
|
|
1315
|
+
ID: string;
|
|
1316
|
+
TaskID?: string;
|
|
1317
|
+
DependsOnTaskID?: string;
|
|
1318
|
+
DependencyType?: string;
|
|
1319
|
+
OldValues___?: KeyValuePairInput[];
|
|
1320
|
+
}
|
|
1321
|
+
export declare class RunTaskDependencyViewResult {
|
|
1322
|
+
Results: TaskDependency_[];
|
|
1323
|
+
UserViewRunID?: string;
|
|
1324
|
+
RowCount: number;
|
|
1325
|
+
TotalRowCount: number;
|
|
1326
|
+
ExecutionTime: number;
|
|
1327
|
+
ErrorMessage?: string;
|
|
1328
|
+
Success: boolean;
|
|
1329
|
+
}
|
|
1330
|
+
export declare class TaskDependencyResolver extends ResolverBase {
|
|
1331
|
+
RunTaskDependencyViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1332
|
+
RunTaskDependencyViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1333
|
+
RunTaskDependencyDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1334
|
+
TaskDependency(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<TaskDependency_ | null>;
|
|
1335
|
+
CreateTaskDependency(input: CreateTaskDependencyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1336
|
+
UpdateTaskDependency(input: UpdateTaskDependencyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1337
|
+
DeleteTaskDependency(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1338
|
+
}
|
|
1202
1339
|
export declare class AIModelPriceType_ {
|
|
1203
1340
|
ID: string;
|
|
1204
1341
|
Name: string;
|
|
@@ -1237,6 +1374,114 @@ export declare class AIModelPriceTypeResolver extends ResolverBase {
|
|
|
1237
1374
|
UpdateAIModelPriceType(input: UpdateAIModelPriceTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1238
1375
|
DeleteAIModelPriceType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1239
1376
|
}
|
|
1377
|
+
export declare class Collection_ {
|
|
1378
|
+
ID: string;
|
|
1379
|
+
EnvironmentID: string;
|
|
1380
|
+
ParentID?: string;
|
|
1381
|
+
Name: string;
|
|
1382
|
+
Description?: string;
|
|
1383
|
+
Icon?: string;
|
|
1384
|
+
Color?: string;
|
|
1385
|
+
Sequence?: number;
|
|
1386
|
+
_mj__CreatedAt: Date;
|
|
1387
|
+
_mj__UpdatedAt: Date;
|
|
1388
|
+
Environment: string;
|
|
1389
|
+
Parent?: string;
|
|
1390
|
+
MJ_Collections_ParentIDArray: Collection_[];
|
|
1391
|
+
}
|
|
1392
|
+
export declare class CreateCollectionInput {
|
|
1393
|
+
ID?: string;
|
|
1394
|
+
EnvironmentID?: string;
|
|
1395
|
+
ParentID: string | null;
|
|
1396
|
+
Name?: string;
|
|
1397
|
+
Description: string | null;
|
|
1398
|
+
Icon: string | null;
|
|
1399
|
+
Color: string | null;
|
|
1400
|
+
Sequence: number | null;
|
|
1401
|
+
}
|
|
1402
|
+
export declare class UpdateCollectionInput {
|
|
1403
|
+
ID: string;
|
|
1404
|
+
EnvironmentID?: string;
|
|
1405
|
+
ParentID?: string | null;
|
|
1406
|
+
Name?: string;
|
|
1407
|
+
Description?: string | null;
|
|
1408
|
+
Icon?: string | null;
|
|
1409
|
+
Color?: string | null;
|
|
1410
|
+
Sequence?: number | null;
|
|
1411
|
+
OldValues___?: KeyValuePairInput[];
|
|
1412
|
+
}
|
|
1413
|
+
export declare class RunCollectionViewResult {
|
|
1414
|
+
Results: Collection_[];
|
|
1415
|
+
UserViewRunID?: string;
|
|
1416
|
+
RowCount: number;
|
|
1417
|
+
TotalRowCount: number;
|
|
1418
|
+
ExecutionTime: number;
|
|
1419
|
+
ErrorMessage?: string;
|
|
1420
|
+
Success: boolean;
|
|
1421
|
+
}
|
|
1422
|
+
export declare class CollectionResolver extends ResolverBase {
|
|
1423
|
+
RunCollectionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1424
|
+
RunCollectionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1425
|
+
RunCollectionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1426
|
+
Collection(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Collection_ | null>;
|
|
1427
|
+
MJ_Collections_ParentIDArray(collection_: Collection_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1428
|
+
CreateCollection(input: CreateCollectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1429
|
+
UpdateCollection(input: UpdateCollectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1430
|
+
DeleteCollection(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1431
|
+
}
|
|
1432
|
+
export declare class RecordLink_ {
|
|
1433
|
+
ID: string;
|
|
1434
|
+
SourceEntityID: string;
|
|
1435
|
+
SourceRecordID: string;
|
|
1436
|
+
TargetEntityID: string;
|
|
1437
|
+
TargetRecordID: string;
|
|
1438
|
+
LinkType?: string;
|
|
1439
|
+
Sequence?: number;
|
|
1440
|
+
Metadata?: string;
|
|
1441
|
+
_mj__CreatedAt: Date;
|
|
1442
|
+
_mj__UpdatedAt: Date;
|
|
1443
|
+
SourceEntity: string;
|
|
1444
|
+
TargetEntity: string;
|
|
1445
|
+
}
|
|
1446
|
+
export declare class CreateRecordLinkInput {
|
|
1447
|
+
ID?: string;
|
|
1448
|
+
SourceEntityID?: string;
|
|
1449
|
+
SourceRecordID?: string;
|
|
1450
|
+
TargetEntityID?: string;
|
|
1451
|
+
TargetRecordID?: string;
|
|
1452
|
+
LinkType: string | null;
|
|
1453
|
+
Sequence: number | null;
|
|
1454
|
+
Metadata: string | null;
|
|
1455
|
+
}
|
|
1456
|
+
export declare class UpdateRecordLinkInput {
|
|
1457
|
+
ID: string;
|
|
1458
|
+
SourceEntityID?: string;
|
|
1459
|
+
SourceRecordID?: string;
|
|
1460
|
+
TargetEntityID?: string;
|
|
1461
|
+
TargetRecordID?: string;
|
|
1462
|
+
LinkType?: string | null;
|
|
1463
|
+
Sequence?: number | null;
|
|
1464
|
+
Metadata?: string | null;
|
|
1465
|
+
OldValues___?: KeyValuePairInput[];
|
|
1466
|
+
}
|
|
1467
|
+
export declare class RunRecordLinkViewResult {
|
|
1468
|
+
Results: RecordLink_[];
|
|
1469
|
+
UserViewRunID?: string;
|
|
1470
|
+
RowCount: number;
|
|
1471
|
+
TotalRowCount: number;
|
|
1472
|
+
ExecutionTime: number;
|
|
1473
|
+
ErrorMessage?: string;
|
|
1474
|
+
Success: boolean;
|
|
1475
|
+
}
|
|
1476
|
+
export declare class RecordLinkResolver extends ResolverBase {
|
|
1477
|
+
RunRecordLinkViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1478
|
+
RunRecordLinkViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1479
|
+
RunRecordLinkDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1480
|
+
RecordLink(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<RecordLink_ | null>;
|
|
1481
|
+
CreateRecordLink(input: CreateRecordLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1482
|
+
UpdateRecordLink(input: UpdateRecordLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1483
|
+
DeleteRecordLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1484
|
+
}
|
|
1240
1485
|
export declare class AIPrompt_ {
|
|
1241
1486
|
ID: string;
|
|
1242
1487
|
Name: string;
|
|
@@ -2403,7 +2648,10 @@ export declare class Entity_ {
|
|
|
2403
2648
|
RecommendationItems_DestinationEntityIDArray: RecommendationItem_[];
|
|
2404
2649
|
EntityCommunicationMessageTypes_EntityIDArray: EntityCommunicationMessageType_[];
|
|
2405
2650
|
QueryEntities_EntityIDArray: QueryEntity_[];
|
|
2651
|
+
MJ_RecordLinks_SourceEntityIDArray: RecordLink_[];
|
|
2652
|
+
MJ_AccessControlRules_EntityIDArray: AccessControlRule_[];
|
|
2406
2653
|
GeneratedCodes_LinkedEntityIDArray: GeneratedCode_[];
|
|
2654
|
+
MJ_RecordLinks_TargetEntityIDArray: RecordLink_[];
|
|
2407
2655
|
}
|
|
2408
2656
|
export declare class CreateEntityInput {
|
|
2409
2657
|
ID?: string;
|
|
@@ -2567,7 +2815,10 @@ export declare class EntityResolverBase extends ResolverBase {
|
|
|
2567
2815
|
RecommendationItems_DestinationEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2568
2816
|
EntityCommunicationMessageTypes_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2569
2817
|
QueryEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2818
|
+
MJ_RecordLinks_SourceEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2819
|
+
MJ_AccessControlRules_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2570
2820
|
GeneratedCodes_LinkedEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2821
|
+
MJ_RecordLinks_TargetEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2571
2822
|
CreateEntity(input: CreateEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2572
2823
|
UpdateEntity(input: UpdateEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2573
2824
|
DeleteEntity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2631,10 +2882,15 @@ export declare class User_ {
|
|
|
2631
2882
|
MJ_ReportUserStates_UserIDArray: ReportUserState_[];
|
|
2632
2883
|
MJ_DashboardUserPreferences_UserIDArray: DashboardUserPreference_[];
|
|
2633
2884
|
MJ_DashboardUserStates_UserIDArray: DashboardUserState_[];
|
|
2885
|
+
MJ_PublicLinks_UserIDArray: PublicLink_[];
|
|
2886
|
+
MJ_ArtifactVersions_UserIDArray: ArtifactVersion_[];
|
|
2634
2887
|
ResourcePermissions_UserIDArray: ResourcePermission_[];
|
|
2635
2888
|
AIAgentRequests_RequestForUserIDArray: AIAgentRequest_[];
|
|
2636
2889
|
ConversationDetails_UserIDArray: ConversationDetail_[];
|
|
2890
|
+
MJ_AccessControlRules_GrantedByUserIDArray: AccessControlRule_[];
|
|
2891
|
+
MJ_Artifacts_UserIDArray: Artifact_[];
|
|
2637
2892
|
MJ_AIAgentRuns_UserIDArray: AIAgentRun_[];
|
|
2893
|
+
MJ_Tasks_UserIDArray: Task_[];
|
|
2638
2894
|
}
|
|
2639
2895
|
export declare class CreateUserInput {
|
|
2640
2896
|
ID?: string;
|
|
@@ -2718,10 +2974,15 @@ export declare class UserResolverBase extends ResolverBase {
|
|
|
2718
2974
|
MJ_ReportUserStates_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2719
2975
|
MJ_DashboardUserPreferences_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2720
2976
|
MJ_DashboardUserStates_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2977
|
+
MJ_PublicLinks_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2978
|
+
MJ_ArtifactVersions_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2721
2979
|
ResourcePermissions_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2722
2980
|
AIAgentRequests_RequestForUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2723
2981
|
ConversationDetails_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2982
|
+
MJ_AccessControlRules_GrantedByUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2983
|
+
MJ_Artifacts_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2724
2984
|
MJ_AIAgentRuns_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2985
|
+
MJ_Tasks_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2725
2986
|
CreateUser(input: CreateUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2726
2987
|
UpdateUser(input: UpdateUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2727
2988
|
DeleteUser(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4706,9 +4967,11 @@ export declare class Dashboard_ {
|
|
|
4706
4967
|
ApplicationID?: string;
|
|
4707
4968
|
DriverClass?: string;
|
|
4708
4969
|
Code?: string;
|
|
4970
|
+
EnvironmentID: string;
|
|
4709
4971
|
User: string;
|
|
4710
4972
|
Category?: string;
|
|
4711
4973
|
Application?: string;
|
|
4974
|
+
Environment: string;
|
|
4712
4975
|
MJ_DashboardUserStates_DashboardIDArray: DashboardUserState_[];
|
|
4713
4976
|
MJ_DashboardUserPreferences_DashboardIDArray: DashboardUserPreference_[];
|
|
4714
4977
|
}
|
|
@@ -4725,6 +4988,7 @@ export declare class CreateDashboardInput {
|
|
|
4725
4988
|
ApplicationID: string | null;
|
|
4726
4989
|
DriverClass: string | null;
|
|
4727
4990
|
Code: string | null;
|
|
4991
|
+
EnvironmentID?: string;
|
|
4728
4992
|
}
|
|
4729
4993
|
export declare class UpdateDashboardInput {
|
|
4730
4994
|
ID: string;
|
|
@@ -4739,6 +5003,7 @@ export declare class UpdateDashboardInput {
|
|
|
4739
5003
|
ApplicationID?: string | null;
|
|
4740
5004
|
DriverClass?: string | null;
|
|
4741
5005
|
Code?: string | null;
|
|
5006
|
+
EnvironmentID?: string;
|
|
4742
5007
|
OldValues___?: KeyValuePairInput[];
|
|
4743
5008
|
}
|
|
4744
5009
|
export declare class RunDashboardViewResult {
|
|
@@ -4898,6 +5163,7 @@ export declare class Report_ {
|
|
|
4898
5163
|
_mj__CreatedAt: Date;
|
|
4899
5164
|
_mj__UpdatedAt: Date;
|
|
4900
5165
|
Thumbnail?: string;
|
|
5166
|
+
EnvironmentID: string;
|
|
4901
5167
|
Category?: string;
|
|
4902
5168
|
User: string;
|
|
4903
5169
|
Conversation?: string;
|
|
@@ -4906,6 +5172,7 @@ export declare class Report_ {
|
|
|
4906
5172
|
OutputFormatType?: string;
|
|
4907
5173
|
OutputDeliveryType?: string;
|
|
4908
5174
|
OutputWorkflow?: string;
|
|
5175
|
+
Environment: string;
|
|
4909
5176
|
ReportSnapshots_ReportIDArray: ReportSnapshot_[];
|
|
4910
5177
|
MJ_ReportVersions_ReportIDArray: ReportVersion_[];
|
|
4911
5178
|
MJ_ReportUserStates_ReportIDArray: ReportUserState_[];
|
|
@@ -4928,6 +5195,7 @@ export declare class CreateReportInput {
|
|
|
4928
5195
|
OutputTargetEmail: string | null;
|
|
4929
5196
|
OutputWorkflowID: string | null;
|
|
4930
5197
|
Thumbnail: string | null;
|
|
5198
|
+
EnvironmentID?: string;
|
|
4931
5199
|
}
|
|
4932
5200
|
export declare class UpdateReportInput {
|
|
4933
5201
|
ID: string;
|
|
@@ -4947,6 +5215,7 @@ export declare class UpdateReportInput {
|
|
|
4947
5215
|
OutputTargetEmail?: string | null;
|
|
4948
5216
|
OutputWorkflowID?: string | null;
|
|
4949
5217
|
Thumbnail?: string | null;
|
|
5218
|
+
EnvironmentID?: string;
|
|
4950
5219
|
OldValues___?: KeyValuePairInput[];
|
|
4951
5220
|
}
|
|
4952
5221
|
export declare class RunReportViewResult {
|
|
@@ -5364,11 +5633,13 @@ export declare class ConversationDetail_ {
|
|
|
5364
5633
|
ArtifactID?: string;
|
|
5365
5634
|
ArtifactVersionID?: string;
|
|
5366
5635
|
CompletionTime?: number;
|
|
5636
|
+
IsPinned: boolean;
|
|
5367
5637
|
Conversation?: string;
|
|
5368
5638
|
User?: string;
|
|
5369
5639
|
Artifact?: string;
|
|
5370
5640
|
Reports_ConversationDetailIDArray: Report_[];
|
|
5371
5641
|
MJ_AIAgentRuns_ConversationDetailIDArray: AIAgentRun_[];
|
|
5642
|
+
MJ_Tasks_ConversationDetailIDArray: Task_[];
|
|
5372
5643
|
}
|
|
5373
5644
|
export declare class CreateConversationDetailInput {
|
|
5374
5645
|
ID?: string;
|
|
@@ -5386,6 +5657,7 @@ export declare class CreateConversationDetailInput {
|
|
|
5386
5657
|
ArtifactID: string | null;
|
|
5387
5658
|
ArtifactVersionID: string | null;
|
|
5388
5659
|
CompletionTime: number | null;
|
|
5660
|
+
IsPinned?: boolean;
|
|
5389
5661
|
}
|
|
5390
5662
|
export declare class UpdateConversationDetailInput {
|
|
5391
5663
|
ID: string;
|
|
@@ -5403,6 +5675,7 @@ export declare class UpdateConversationDetailInput {
|
|
|
5403
5675
|
ArtifactID?: string | null;
|
|
5404
5676
|
ArtifactVersionID?: string | null;
|
|
5405
5677
|
CompletionTime?: number | null;
|
|
5678
|
+
IsPinned?: boolean;
|
|
5406
5679
|
OldValues___?: KeyValuePairInput[];
|
|
5407
5680
|
}
|
|
5408
5681
|
export declare class RunConversationDetailViewResult {
|
|
@@ -5421,6 +5694,7 @@ export declare class ConversationDetailResolver extends ResolverBase {
|
|
|
5421
5694
|
ConversationDetail(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<ConversationDetail_ | null>;
|
|
5422
5695
|
Reports_ConversationDetailIDArray(conversationdetail_: ConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5423
5696
|
MJ_AIAgentRuns_ConversationDetailIDArray(conversationdetail_: ConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5697
|
+
MJ_Tasks_ConversationDetailIDArray(conversationdetail_: ConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5424
5698
|
CreateConversationDetail(input: CreateConversationDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5425
5699
|
UpdateConversationDetail(input: UpdateConversationDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5426
5700
|
DeleteConversationDetail(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5439,9 +5713,14 @@ export declare class Conversation_ {
|
|
|
5439
5713
|
_mj__CreatedAt: Date;
|
|
5440
5714
|
_mj__UpdatedAt: Date;
|
|
5441
5715
|
Status: string;
|
|
5716
|
+
EnvironmentID: string;
|
|
5717
|
+
ProjectID?: string;
|
|
5718
|
+
IsPinned: boolean;
|
|
5442
5719
|
User: string;
|
|
5443
5720
|
LinkedEntity?: string;
|
|
5444
5721
|
DataContext?: string;
|
|
5722
|
+
Environment: string;
|
|
5723
|
+
Project?: string;
|
|
5445
5724
|
ConversationDetails_ConversationIDArray: ConversationDetail_[];
|
|
5446
5725
|
Reports_ConversationIDArray: Report_[];
|
|
5447
5726
|
MJ_ConversationArtifacts_ConversationIDArray: ConversationArtifact_[];
|
|
@@ -5459,6 +5738,9 @@ export declare class CreateConversationInput {
|
|
|
5459
5738
|
LinkedRecordID: string | null;
|
|
5460
5739
|
DataContextID: string | null;
|
|
5461
5740
|
Status?: string;
|
|
5741
|
+
EnvironmentID?: string;
|
|
5742
|
+
ProjectID: string | null;
|
|
5743
|
+
IsPinned?: boolean;
|
|
5462
5744
|
}
|
|
5463
5745
|
export declare class UpdateConversationInput {
|
|
5464
5746
|
ID: string;
|
|
@@ -5472,6 +5754,9 @@ export declare class UpdateConversationInput {
|
|
|
5472
5754
|
LinkedRecordID?: string | null;
|
|
5473
5755
|
DataContextID?: string | null;
|
|
5474
5756
|
Status?: string;
|
|
5757
|
+
EnvironmentID?: string;
|
|
5758
|
+
ProjectID?: string | null;
|
|
5759
|
+
IsPinned?: boolean;
|
|
5475
5760
|
OldValues___?: KeyValuePairInput[];
|
|
5476
5761
|
}
|
|
5477
5762
|
export declare class RunConversationViewResult {
|
|
@@ -9452,6 +9737,129 @@ export declare class ComponentResolver extends ResolverBase {
|
|
|
9452
9737
|
UpdateComponent(input: UpdateComponentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9453
9738
|
DeleteComponent(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9454
9739
|
}
|
|
9740
|
+
export declare class AccessControlRule_ {
|
|
9741
|
+
ID: string;
|
|
9742
|
+
EntityID: string;
|
|
9743
|
+
RecordID: string;
|
|
9744
|
+
GranteeType: string;
|
|
9745
|
+
GranteeID?: string;
|
|
9746
|
+
CanRead: boolean;
|
|
9747
|
+
CanCreate: boolean;
|
|
9748
|
+
CanUpdate: boolean;
|
|
9749
|
+
CanDelete: boolean;
|
|
9750
|
+
CanShare: boolean;
|
|
9751
|
+
ExpiresAt?: Date;
|
|
9752
|
+
GrantedByUserID: string;
|
|
9753
|
+
_mj__CreatedAt: Date;
|
|
9754
|
+
_mj__UpdatedAt: Date;
|
|
9755
|
+
Entity: string;
|
|
9756
|
+
GrantedByUser: string;
|
|
9757
|
+
}
|
|
9758
|
+
export declare class CreateAccessControlRuleInput {
|
|
9759
|
+
ID?: string;
|
|
9760
|
+
EntityID?: string;
|
|
9761
|
+
RecordID?: string;
|
|
9762
|
+
GranteeType?: string;
|
|
9763
|
+
GranteeID: string | null;
|
|
9764
|
+
CanRead?: boolean;
|
|
9765
|
+
CanCreate?: boolean;
|
|
9766
|
+
CanUpdate?: boolean;
|
|
9767
|
+
CanDelete?: boolean;
|
|
9768
|
+
CanShare?: boolean;
|
|
9769
|
+
ExpiresAt: Date | null;
|
|
9770
|
+
GrantedByUserID?: string;
|
|
9771
|
+
}
|
|
9772
|
+
export declare class UpdateAccessControlRuleInput {
|
|
9773
|
+
ID: string;
|
|
9774
|
+
EntityID?: string;
|
|
9775
|
+
RecordID?: string;
|
|
9776
|
+
GranteeType?: string;
|
|
9777
|
+
GranteeID?: string | null;
|
|
9778
|
+
CanRead?: boolean;
|
|
9779
|
+
CanCreate?: boolean;
|
|
9780
|
+
CanUpdate?: boolean;
|
|
9781
|
+
CanDelete?: boolean;
|
|
9782
|
+
CanShare?: boolean;
|
|
9783
|
+
ExpiresAt?: Date | null;
|
|
9784
|
+
GrantedByUserID?: string;
|
|
9785
|
+
OldValues___?: KeyValuePairInput[];
|
|
9786
|
+
}
|
|
9787
|
+
export declare class RunAccessControlRuleViewResult {
|
|
9788
|
+
Results: AccessControlRule_[];
|
|
9789
|
+
UserViewRunID?: string;
|
|
9790
|
+
RowCount: number;
|
|
9791
|
+
TotalRowCount: number;
|
|
9792
|
+
ExecutionTime: number;
|
|
9793
|
+
ErrorMessage?: string;
|
|
9794
|
+
Success: boolean;
|
|
9795
|
+
}
|
|
9796
|
+
export declare class AccessControlRuleResolver extends ResolverBase {
|
|
9797
|
+
RunAccessControlRuleViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9798
|
+
RunAccessControlRuleViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9799
|
+
RunAccessControlRuleDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9800
|
+
AccessControlRule(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<AccessControlRule_ | null>;
|
|
9801
|
+
CreateAccessControlRule(input: CreateAccessControlRuleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9802
|
+
UpdateAccessControlRule(input: UpdateAccessControlRuleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9803
|
+
DeleteAccessControlRule(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9804
|
+
}
|
|
9805
|
+
export declare class PublicLink_ {
|
|
9806
|
+
ID: string;
|
|
9807
|
+
ResourceType: string;
|
|
9808
|
+
ResourceID: string;
|
|
9809
|
+
Token: string;
|
|
9810
|
+
PasswordHash?: string;
|
|
9811
|
+
ExpiresAt?: Date;
|
|
9812
|
+
MaxViews?: number;
|
|
9813
|
+
CurrentViews: number;
|
|
9814
|
+
UserID: string;
|
|
9815
|
+
IsActive: boolean;
|
|
9816
|
+
_mj__CreatedAt: Date;
|
|
9817
|
+
_mj__UpdatedAt: Date;
|
|
9818
|
+
User: string;
|
|
9819
|
+
}
|
|
9820
|
+
export declare class CreatePublicLinkInput {
|
|
9821
|
+
ID?: string;
|
|
9822
|
+
ResourceType?: string;
|
|
9823
|
+
ResourceID?: string;
|
|
9824
|
+
Token?: string;
|
|
9825
|
+
PasswordHash: string | null;
|
|
9826
|
+
ExpiresAt: Date | null;
|
|
9827
|
+
MaxViews: number | null;
|
|
9828
|
+
CurrentViews?: number;
|
|
9829
|
+
UserID?: string;
|
|
9830
|
+
IsActive?: boolean;
|
|
9831
|
+
}
|
|
9832
|
+
export declare class UpdatePublicLinkInput {
|
|
9833
|
+
ID: string;
|
|
9834
|
+
ResourceType?: string;
|
|
9835
|
+
ResourceID?: string;
|
|
9836
|
+
Token?: string;
|
|
9837
|
+
PasswordHash?: string | null;
|
|
9838
|
+
ExpiresAt?: Date | null;
|
|
9839
|
+
MaxViews?: number | null;
|
|
9840
|
+
CurrentViews?: number;
|
|
9841
|
+
UserID?: string;
|
|
9842
|
+
IsActive?: boolean;
|
|
9843
|
+
OldValues___?: KeyValuePairInput[];
|
|
9844
|
+
}
|
|
9845
|
+
export declare class RunPublicLinkViewResult {
|
|
9846
|
+
Results: PublicLink_[];
|
|
9847
|
+
UserViewRunID?: string;
|
|
9848
|
+
RowCount: number;
|
|
9849
|
+
TotalRowCount: number;
|
|
9850
|
+
ExecutionTime: number;
|
|
9851
|
+
ErrorMessage?: string;
|
|
9852
|
+
Success: boolean;
|
|
9853
|
+
}
|
|
9854
|
+
export declare class PublicLinkResolver extends ResolverBase {
|
|
9855
|
+
RunPublicLinkViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9856
|
+
RunPublicLinkViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9857
|
+
RunPublicLinkDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9858
|
+
PublicLink(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<PublicLink_ | null>;
|
|
9859
|
+
CreatePublicLink(input: CreatePublicLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9860
|
+
UpdatePublicLink(input: UpdatePublicLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9861
|
+
DeletePublicLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9862
|
+
}
|
|
9455
9863
|
export declare class ArtifactType_ {
|
|
9456
9864
|
ID: string;
|
|
9457
9865
|
Name: string;
|
|
@@ -9461,6 +9869,7 @@ export declare class ArtifactType_ {
|
|
|
9461
9869
|
_mj__CreatedAt: Date;
|
|
9462
9870
|
_mj__UpdatedAt: Date;
|
|
9463
9871
|
MJ_ConversationArtifacts_ArtifactTypeIDArray: ConversationArtifact_[];
|
|
9872
|
+
MJ_Artifacts_TypeIDArray: Artifact_[];
|
|
9464
9873
|
}
|
|
9465
9874
|
export declare class CreateArtifactTypeInput {
|
|
9466
9875
|
ID?: string;
|
|
@@ -9492,6 +9901,7 @@ export declare class ArtifactTypeResolver extends ResolverBase {
|
|
|
9492
9901
|
RunArtifactTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9493
9902
|
ArtifactType(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<ArtifactType_ | null>;
|
|
9494
9903
|
MJ_ConversationArtifacts_ArtifactTypeIDArray(artifacttype_: ArtifactType_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9904
|
+
MJ_Artifacts_TypeIDArray(artifacttype_: ArtifactType_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9495
9905
|
CreateArtifactType(input: CreateArtifactTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9496
9906
|
UpdateArtifactType(input: UpdateArtifactTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9497
9907
|
DeleteArtifactType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -9540,6 +9950,59 @@ export declare class AIVendorTypeResolver extends ResolverBase {
|
|
|
9540
9950
|
UpdateAIVendorType(input: UpdateAIVendorTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9541
9951
|
DeleteAIVendorType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9542
9952
|
}
|
|
9953
|
+
export declare class Artifact_ {
|
|
9954
|
+
ID: string;
|
|
9955
|
+
EnvironmentID: string;
|
|
9956
|
+
Name: string;
|
|
9957
|
+
Description?: string;
|
|
9958
|
+
TypeID: string;
|
|
9959
|
+
Comments?: string;
|
|
9960
|
+
UserID: string;
|
|
9961
|
+
_mj__CreatedAt: Date;
|
|
9962
|
+
_mj__UpdatedAt: Date;
|
|
9963
|
+
Environment: string;
|
|
9964
|
+
Type: string;
|
|
9965
|
+
User: string;
|
|
9966
|
+
MJ_ArtifactVersions_ArtifactIDArray: ArtifactVersion_[];
|
|
9967
|
+
}
|
|
9968
|
+
export declare class CreateArtifactInput {
|
|
9969
|
+
ID?: string;
|
|
9970
|
+
EnvironmentID?: string;
|
|
9971
|
+
Name?: string;
|
|
9972
|
+
Description: string | null;
|
|
9973
|
+
TypeID?: string;
|
|
9974
|
+
Comments: string | null;
|
|
9975
|
+
UserID?: string;
|
|
9976
|
+
}
|
|
9977
|
+
export declare class UpdateArtifactInput {
|
|
9978
|
+
ID: string;
|
|
9979
|
+
EnvironmentID?: string;
|
|
9980
|
+
Name?: string;
|
|
9981
|
+
Description?: string | null;
|
|
9982
|
+
TypeID?: string;
|
|
9983
|
+
Comments?: string | null;
|
|
9984
|
+
UserID?: string;
|
|
9985
|
+
OldValues___?: KeyValuePairInput[];
|
|
9986
|
+
}
|
|
9987
|
+
export declare class RunArtifactViewResult {
|
|
9988
|
+
Results: Artifact_[];
|
|
9989
|
+
UserViewRunID?: string;
|
|
9990
|
+
RowCount: number;
|
|
9991
|
+
TotalRowCount: number;
|
|
9992
|
+
ExecutionTime: number;
|
|
9993
|
+
ErrorMessage?: string;
|
|
9994
|
+
Success: boolean;
|
|
9995
|
+
}
|
|
9996
|
+
export declare class ArtifactResolver extends ResolverBase {
|
|
9997
|
+
RunArtifactViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9998
|
+
RunArtifactViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9999
|
+
RunArtifactDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10000
|
+
Artifact(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Artifact_ | null>;
|
|
10001
|
+
MJ_ArtifactVersions_ArtifactIDArray(artifact_: Artifact_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10002
|
+
CreateArtifact(input: CreateArtifactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10003
|
+
UpdateArtifact(input: UpdateArtifactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10004
|
+
DeleteArtifact(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10005
|
+
}
|
|
9543
10006
|
export declare class ConversationArtifact_ {
|
|
9544
10007
|
ID: string;
|
|
9545
10008
|
Name: string;
|
|
@@ -10848,6 +11311,149 @@ export declare class AIAgentRunStepResolver extends ResolverBase {
|
|
|
10848
11311
|
UpdateAIAgentRunStep(input: UpdateAIAgentRunStepInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10849
11312
|
DeleteAIAgentRunStep(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10850
11313
|
}
|
|
11314
|
+
export declare class Task_ {
|
|
11315
|
+
ID: string;
|
|
11316
|
+
ParentID?: string;
|
|
11317
|
+
Name: string;
|
|
11318
|
+
Description?: string;
|
|
11319
|
+
TypeID: string;
|
|
11320
|
+
EnvironmentID: string;
|
|
11321
|
+
ProjectID?: string;
|
|
11322
|
+
ConversationDetailID?: string;
|
|
11323
|
+
UserID?: string;
|
|
11324
|
+
AgentID?: string;
|
|
11325
|
+
Status: string;
|
|
11326
|
+
PercentComplete?: number;
|
|
11327
|
+
DueAt?: Date;
|
|
11328
|
+
StartedAt?: Date;
|
|
11329
|
+
CompletedAt?: Date;
|
|
11330
|
+
_mj__CreatedAt: Date;
|
|
11331
|
+
_mj__UpdatedAt: Date;
|
|
11332
|
+
Parent?: string;
|
|
11333
|
+
Type: string;
|
|
11334
|
+
Environment: string;
|
|
11335
|
+
Project?: string;
|
|
11336
|
+
User?: string;
|
|
11337
|
+
Agent?: string;
|
|
11338
|
+
MJ_TaskDependencies_DependsOnTaskIDArray: TaskDependency_[];
|
|
11339
|
+
MJ_TaskDependencies_TaskIDArray: TaskDependency_[];
|
|
11340
|
+
MJ_Tasks_ParentIDArray: Task_[];
|
|
11341
|
+
}
|
|
11342
|
+
export declare class CreateTaskInput {
|
|
11343
|
+
ID?: string;
|
|
11344
|
+
ParentID: string | null;
|
|
11345
|
+
Name?: string;
|
|
11346
|
+
Description: string | null;
|
|
11347
|
+
TypeID?: string;
|
|
11348
|
+
EnvironmentID?: string;
|
|
11349
|
+
ProjectID: string | null;
|
|
11350
|
+
ConversationDetailID: string | null;
|
|
11351
|
+
UserID: string | null;
|
|
11352
|
+
AgentID: string | null;
|
|
11353
|
+
Status?: string;
|
|
11354
|
+
PercentComplete?: number | null;
|
|
11355
|
+
DueAt: Date | null;
|
|
11356
|
+
StartedAt: Date | null;
|
|
11357
|
+
CompletedAt: Date | null;
|
|
11358
|
+
}
|
|
11359
|
+
export declare class UpdateTaskInput {
|
|
11360
|
+
ID: string;
|
|
11361
|
+
ParentID?: string | null;
|
|
11362
|
+
Name?: string;
|
|
11363
|
+
Description?: string | null;
|
|
11364
|
+
TypeID?: string;
|
|
11365
|
+
EnvironmentID?: string;
|
|
11366
|
+
ProjectID?: string | null;
|
|
11367
|
+
ConversationDetailID?: string | null;
|
|
11368
|
+
UserID?: string | null;
|
|
11369
|
+
AgentID?: string | null;
|
|
11370
|
+
Status?: string;
|
|
11371
|
+
PercentComplete?: number | null;
|
|
11372
|
+
DueAt?: Date | null;
|
|
11373
|
+
StartedAt?: Date | null;
|
|
11374
|
+
CompletedAt?: Date | null;
|
|
11375
|
+
OldValues___?: KeyValuePairInput[];
|
|
11376
|
+
}
|
|
11377
|
+
export declare class RunTaskViewResult {
|
|
11378
|
+
Results: Task_[];
|
|
11379
|
+
UserViewRunID?: string;
|
|
11380
|
+
RowCount: number;
|
|
11381
|
+
TotalRowCount: number;
|
|
11382
|
+
ExecutionTime: number;
|
|
11383
|
+
ErrorMessage?: string;
|
|
11384
|
+
Success: boolean;
|
|
11385
|
+
}
|
|
11386
|
+
export declare class TaskResolver extends ResolverBase {
|
|
11387
|
+
RunTaskViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11388
|
+
RunTaskViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11389
|
+
RunTaskDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11390
|
+
Task(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Task_ | null>;
|
|
11391
|
+
MJ_TaskDependencies_DependsOnTaskIDArray(task_: Task_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11392
|
+
MJ_TaskDependencies_TaskIDArray(task_: Task_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11393
|
+
MJ_Tasks_ParentIDArray(task_: Task_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11394
|
+
CreateTask(input: CreateTaskInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11395
|
+
UpdateTask(input: UpdateTaskInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11396
|
+
DeleteTask(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11397
|
+
}
|
|
11398
|
+
export declare class Project_ {
|
|
11399
|
+
ID: string;
|
|
11400
|
+
EnvironmentID: string;
|
|
11401
|
+
ParentID?: string;
|
|
11402
|
+
Name: string;
|
|
11403
|
+
Description?: string;
|
|
11404
|
+
Color?: string;
|
|
11405
|
+
Icon?: string;
|
|
11406
|
+
IsArchived: boolean;
|
|
11407
|
+
_mj__CreatedAt: Date;
|
|
11408
|
+
_mj__UpdatedAt: Date;
|
|
11409
|
+
Environment: string;
|
|
11410
|
+
Parent?: string;
|
|
11411
|
+
MJ_Projects_ParentIDArray: Project_[];
|
|
11412
|
+
Conversations_ProjectIDArray: Conversation_[];
|
|
11413
|
+
MJ_Tasks_ProjectIDArray: Task_[];
|
|
11414
|
+
}
|
|
11415
|
+
export declare class CreateProjectInput {
|
|
11416
|
+
ID?: string;
|
|
11417
|
+
EnvironmentID?: string;
|
|
11418
|
+
ParentID: string | null;
|
|
11419
|
+
Name?: string;
|
|
11420
|
+
Description: string | null;
|
|
11421
|
+
Color: string | null;
|
|
11422
|
+
Icon: string | null;
|
|
11423
|
+
IsArchived?: boolean;
|
|
11424
|
+
}
|
|
11425
|
+
export declare class UpdateProjectInput {
|
|
11426
|
+
ID: string;
|
|
11427
|
+
EnvironmentID?: string;
|
|
11428
|
+
ParentID?: string | null;
|
|
11429
|
+
Name?: string;
|
|
11430
|
+
Description?: string | null;
|
|
11431
|
+
Color?: string | null;
|
|
11432
|
+
Icon?: string | null;
|
|
11433
|
+
IsArchived?: boolean;
|
|
11434
|
+
OldValues___?: KeyValuePairInput[];
|
|
11435
|
+
}
|
|
11436
|
+
export declare class RunProjectViewResult {
|
|
11437
|
+
Results: Project_[];
|
|
11438
|
+
UserViewRunID?: string;
|
|
11439
|
+
RowCount: number;
|
|
11440
|
+
TotalRowCount: number;
|
|
11441
|
+
ExecutionTime: number;
|
|
11442
|
+
ErrorMessage?: string;
|
|
11443
|
+
Success: boolean;
|
|
11444
|
+
}
|
|
11445
|
+
export declare class ProjectResolver extends ResolverBase {
|
|
11446
|
+
RunProjectViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11447
|
+
RunProjectViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11448
|
+
RunProjectDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11449
|
+
Project(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Project_ | null>;
|
|
11450
|
+
MJ_Projects_ParentIDArray(project_: Project_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11451
|
+
Conversations_ProjectIDArray(project_: Project_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11452
|
+
MJ_Tasks_ProjectIDArray(project_: Project_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11453
|
+
CreateProject(input: CreateProjectInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11454
|
+
UpdateProject(input: UpdateProjectInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11455
|
+
DeleteProject(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11456
|
+
}
|
|
10851
11457
|
export declare class ConversationArtifactPermission_ {
|
|
10852
11458
|
ID: string;
|
|
10853
11459
|
ConversationArtifactID: string;
|
|
@@ -10929,6 +11535,56 @@ export declare class AIModelPriceUnitTypeResolver extends ResolverBase {
|
|
|
10929
11535
|
UpdateAIModelPriceUnitType(input: UpdateAIModelPriceUnitTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10930
11536
|
DeleteAIModelPriceUnitType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10931
11537
|
}
|
|
11538
|
+
export declare class ArtifactVersion_ {
|
|
11539
|
+
ID: string;
|
|
11540
|
+
ArtifactID: string;
|
|
11541
|
+
VersionNumber: number;
|
|
11542
|
+
Content?: string;
|
|
11543
|
+
Configuration?: string;
|
|
11544
|
+
Comments?: string;
|
|
11545
|
+
UserID: string;
|
|
11546
|
+
_mj__CreatedAt: Date;
|
|
11547
|
+
_mj__UpdatedAt: Date;
|
|
11548
|
+
Artifact: string;
|
|
11549
|
+
User: string;
|
|
11550
|
+
}
|
|
11551
|
+
export declare class CreateArtifactVersionInput {
|
|
11552
|
+
ID?: string;
|
|
11553
|
+
ArtifactID?: string;
|
|
11554
|
+
VersionNumber?: number;
|
|
11555
|
+
Content: string | null;
|
|
11556
|
+
Configuration: string | null;
|
|
11557
|
+
Comments: string | null;
|
|
11558
|
+
UserID?: string;
|
|
11559
|
+
}
|
|
11560
|
+
export declare class UpdateArtifactVersionInput {
|
|
11561
|
+
ID: string;
|
|
11562
|
+
ArtifactID?: string;
|
|
11563
|
+
VersionNumber?: number;
|
|
11564
|
+
Content?: string | null;
|
|
11565
|
+
Configuration?: string | null;
|
|
11566
|
+
Comments?: string | null;
|
|
11567
|
+
UserID?: string;
|
|
11568
|
+
OldValues___?: KeyValuePairInput[];
|
|
11569
|
+
}
|
|
11570
|
+
export declare class RunArtifactVersionViewResult {
|
|
11571
|
+
Results: ArtifactVersion_[];
|
|
11572
|
+
UserViewRunID?: string;
|
|
11573
|
+
RowCount: number;
|
|
11574
|
+
TotalRowCount: number;
|
|
11575
|
+
ExecutionTime: number;
|
|
11576
|
+
ErrorMessage?: string;
|
|
11577
|
+
Success: boolean;
|
|
11578
|
+
}
|
|
11579
|
+
export declare class ArtifactVersionResolver extends ResolverBase {
|
|
11580
|
+
RunArtifactVersionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11581
|
+
RunArtifactVersionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11582
|
+
RunArtifactVersionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11583
|
+
ArtifactVersion(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<ArtifactVersion_ | null>;
|
|
11584
|
+
CreateArtifactVersion(input: CreateArtifactVersionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11585
|
+
UpdateArtifactVersion(input: UpdateArtifactVersionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11586
|
+
DeleteArtifactVersion(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11587
|
+
}
|
|
10932
11588
|
export declare class AIAgentStepPath_ {
|
|
10933
11589
|
ID: string;
|
|
10934
11590
|
OriginStepID: string;
|