@memberjunction/server 2.101.0 → 2.103.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 +703 -2
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +8993 -4463
- package/dist/generated/generated.js.map +1 -1
- package/package.json +40 -40
- package/src/generated/generated.ts +4478 -1603
|
@@ -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,88 @@ 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
|
+
}
|
|
1339
|
+
export declare class CollectionArtifact_ {
|
|
1340
|
+
ID: string;
|
|
1341
|
+
CollectionID: string;
|
|
1342
|
+
ArtifactID: string;
|
|
1343
|
+
Sequence: number;
|
|
1344
|
+
_mj__CreatedAt: Date;
|
|
1345
|
+
_mj__UpdatedAt: Date;
|
|
1346
|
+
Collection: string;
|
|
1347
|
+
Artifact: string;
|
|
1348
|
+
}
|
|
1349
|
+
export declare class CreateCollectionArtifactInput {
|
|
1350
|
+
ID?: string;
|
|
1351
|
+
CollectionID?: string;
|
|
1352
|
+
ArtifactID?: string;
|
|
1353
|
+
Sequence?: number;
|
|
1354
|
+
}
|
|
1355
|
+
export declare class UpdateCollectionArtifactInput {
|
|
1356
|
+
ID: string;
|
|
1357
|
+
CollectionID?: string;
|
|
1358
|
+
ArtifactID?: string;
|
|
1359
|
+
Sequence?: number;
|
|
1360
|
+
OldValues___?: KeyValuePairInput[];
|
|
1361
|
+
}
|
|
1362
|
+
export declare class RunCollectionArtifactViewResult {
|
|
1363
|
+
Results: CollectionArtifact_[];
|
|
1364
|
+
UserViewRunID?: string;
|
|
1365
|
+
RowCount: number;
|
|
1366
|
+
TotalRowCount: number;
|
|
1367
|
+
ExecutionTime: number;
|
|
1368
|
+
ErrorMessage?: string;
|
|
1369
|
+
Success: boolean;
|
|
1370
|
+
}
|
|
1371
|
+
export declare class CollectionArtifactResolver extends ResolverBase {
|
|
1372
|
+
RunCollectionArtifactViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1373
|
+
RunCollectionArtifactViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1374
|
+
RunCollectionArtifactDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1375
|
+
CollectionArtifact(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<CollectionArtifact_ | null>;
|
|
1376
|
+
CreateCollectionArtifact(input: CreateCollectionArtifactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1377
|
+
UpdateCollectionArtifact(input: UpdateCollectionArtifactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1378
|
+
DeleteCollectionArtifact(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1379
|
+
}
|
|
1202
1380
|
export declare class AIModelPriceType_ {
|
|
1203
1381
|
ID: string;
|
|
1204
1382
|
Name: string;
|
|
@@ -1237,6 +1415,116 @@ export declare class AIModelPriceTypeResolver extends ResolverBase {
|
|
|
1237
1415
|
UpdateAIModelPriceType(input: UpdateAIModelPriceTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1238
1416
|
DeleteAIModelPriceType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1239
1417
|
}
|
|
1418
|
+
export declare class Collection_ {
|
|
1419
|
+
ID: string;
|
|
1420
|
+
EnvironmentID: string;
|
|
1421
|
+
ParentID?: string;
|
|
1422
|
+
Name: string;
|
|
1423
|
+
Description?: string;
|
|
1424
|
+
Icon?: string;
|
|
1425
|
+
Color?: string;
|
|
1426
|
+
Sequence?: number;
|
|
1427
|
+
_mj__CreatedAt: Date;
|
|
1428
|
+
_mj__UpdatedAt: Date;
|
|
1429
|
+
Environment: string;
|
|
1430
|
+
Parent?: string;
|
|
1431
|
+
MJ_CollectionArtifacts_CollectionIDArray: CollectionArtifact_[];
|
|
1432
|
+
MJ_Collections_ParentIDArray: Collection_[];
|
|
1433
|
+
}
|
|
1434
|
+
export declare class CreateCollectionInput {
|
|
1435
|
+
ID?: string;
|
|
1436
|
+
EnvironmentID?: string;
|
|
1437
|
+
ParentID: string | null;
|
|
1438
|
+
Name?: string;
|
|
1439
|
+
Description: string | null;
|
|
1440
|
+
Icon: string | null;
|
|
1441
|
+
Color: string | null;
|
|
1442
|
+
Sequence: number | null;
|
|
1443
|
+
}
|
|
1444
|
+
export declare class UpdateCollectionInput {
|
|
1445
|
+
ID: string;
|
|
1446
|
+
EnvironmentID?: string;
|
|
1447
|
+
ParentID?: string | null;
|
|
1448
|
+
Name?: string;
|
|
1449
|
+
Description?: string | null;
|
|
1450
|
+
Icon?: string | null;
|
|
1451
|
+
Color?: string | null;
|
|
1452
|
+
Sequence?: number | null;
|
|
1453
|
+
OldValues___?: KeyValuePairInput[];
|
|
1454
|
+
}
|
|
1455
|
+
export declare class RunCollectionViewResult {
|
|
1456
|
+
Results: Collection_[];
|
|
1457
|
+
UserViewRunID?: string;
|
|
1458
|
+
RowCount: number;
|
|
1459
|
+
TotalRowCount: number;
|
|
1460
|
+
ExecutionTime: number;
|
|
1461
|
+
ErrorMessage?: string;
|
|
1462
|
+
Success: boolean;
|
|
1463
|
+
}
|
|
1464
|
+
export declare class CollectionResolver extends ResolverBase {
|
|
1465
|
+
RunCollectionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1466
|
+
RunCollectionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1467
|
+
RunCollectionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1468
|
+
Collection(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Collection_ | null>;
|
|
1469
|
+
MJ_CollectionArtifacts_CollectionIDArray(collection_: Collection_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1470
|
+
MJ_Collections_ParentIDArray(collection_: Collection_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1471
|
+
CreateCollection(input: CreateCollectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1472
|
+
UpdateCollection(input: UpdateCollectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1473
|
+
DeleteCollection(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1474
|
+
}
|
|
1475
|
+
export declare class RecordLink_ {
|
|
1476
|
+
ID: string;
|
|
1477
|
+
SourceEntityID: string;
|
|
1478
|
+
SourceRecordID: string;
|
|
1479
|
+
TargetEntityID: string;
|
|
1480
|
+
TargetRecordID: string;
|
|
1481
|
+
LinkType?: string;
|
|
1482
|
+
Sequence?: number;
|
|
1483
|
+
Metadata?: string;
|
|
1484
|
+
_mj__CreatedAt: Date;
|
|
1485
|
+
_mj__UpdatedAt: Date;
|
|
1486
|
+
SourceEntity: string;
|
|
1487
|
+
TargetEntity: string;
|
|
1488
|
+
}
|
|
1489
|
+
export declare class CreateRecordLinkInput {
|
|
1490
|
+
ID?: string;
|
|
1491
|
+
SourceEntityID?: string;
|
|
1492
|
+
SourceRecordID?: string;
|
|
1493
|
+
TargetEntityID?: string;
|
|
1494
|
+
TargetRecordID?: string;
|
|
1495
|
+
LinkType: string | null;
|
|
1496
|
+
Sequence: number | null;
|
|
1497
|
+
Metadata: string | null;
|
|
1498
|
+
}
|
|
1499
|
+
export declare class UpdateRecordLinkInput {
|
|
1500
|
+
ID: string;
|
|
1501
|
+
SourceEntityID?: string;
|
|
1502
|
+
SourceRecordID?: string;
|
|
1503
|
+
TargetEntityID?: string;
|
|
1504
|
+
TargetRecordID?: string;
|
|
1505
|
+
LinkType?: string | null;
|
|
1506
|
+
Sequence?: number | null;
|
|
1507
|
+
Metadata?: string | null;
|
|
1508
|
+
OldValues___?: KeyValuePairInput[];
|
|
1509
|
+
}
|
|
1510
|
+
export declare class RunRecordLinkViewResult {
|
|
1511
|
+
Results: RecordLink_[];
|
|
1512
|
+
UserViewRunID?: string;
|
|
1513
|
+
RowCount: number;
|
|
1514
|
+
TotalRowCount: number;
|
|
1515
|
+
ExecutionTime: number;
|
|
1516
|
+
ErrorMessage?: string;
|
|
1517
|
+
Success: boolean;
|
|
1518
|
+
}
|
|
1519
|
+
export declare class RecordLinkResolver extends ResolverBase {
|
|
1520
|
+
RunRecordLinkViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1521
|
+
RunRecordLinkViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1522
|
+
RunRecordLinkDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1523
|
+
RecordLink(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<RecordLink_ | null>;
|
|
1524
|
+
CreateRecordLink(input: CreateRecordLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1525
|
+
UpdateRecordLink(input: UpdateRecordLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1526
|
+
DeleteRecordLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1527
|
+
}
|
|
1240
1528
|
export declare class AIPrompt_ {
|
|
1241
1529
|
ID: string;
|
|
1242
1530
|
Name: string;
|
|
@@ -2403,7 +2691,10 @@ export declare class Entity_ {
|
|
|
2403
2691
|
RecommendationItems_DestinationEntityIDArray: RecommendationItem_[];
|
|
2404
2692
|
EntityCommunicationMessageTypes_EntityIDArray: EntityCommunicationMessageType_[];
|
|
2405
2693
|
QueryEntities_EntityIDArray: QueryEntity_[];
|
|
2694
|
+
MJ_RecordLinks_SourceEntityIDArray: RecordLink_[];
|
|
2695
|
+
MJ_AccessControlRules_EntityIDArray: AccessControlRule_[];
|
|
2406
2696
|
GeneratedCodes_LinkedEntityIDArray: GeneratedCode_[];
|
|
2697
|
+
MJ_RecordLinks_TargetEntityIDArray: RecordLink_[];
|
|
2407
2698
|
}
|
|
2408
2699
|
export declare class CreateEntityInput {
|
|
2409
2700
|
ID?: string;
|
|
@@ -2567,7 +2858,10 @@ export declare class EntityResolverBase extends ResolverBase {
|
|
|
2567
2858
|
RecommendationItems_DestinationEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2568
2859
|
EntityCommunicationMessageTypes_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2569
2860
|
QueryEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2861
|
+
MJ_RecordLinks_SourceEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2862
|
+
MJ_AccessControlRules_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2570
2863
|
GeneratedCodes_LinkedEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2864
|
+
MJ_RecordLinks_TargetEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2571
2865
|
CreateEntity(input: CreateEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2572
2866
|
UpdateEntity(input: UpdateEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2573
2867
|
DeleteEntity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2631,10 +2925,15 @@ export declare class User_ {
|
|
|
2631
2925
|
MJ_ReportUserStates_UserIDArray: ReportUserState_[];
|
|
2632
2926
|
MJ_DashboardUserPreferences_UserIDArray: DashboardUserPreference_[];
|
|
2633
2927
|
MJ_DashboardUserStates_UserIDArray: DashboardUserState_[];
|
|
2928
|
+
MJ_PublicLinks_UserIDArray: PublicLink_[];
|
|
2929
|
+
MJ_ArtifactVersions_UserIDArray: ArtifactVersion_[];
|
|
2634
2930
|
ResourcePermissions_UserIDArray: ResourcePermission_[];
|
|
2635
2931
|
AIAgentRequests_RequestForUserIDArray: AIAgentRequest_[];
|
|
2636
2932
|
ConversationDetails_UserIDArray: ConversationDetail_[];
|
|
2933
|
+
MJ_AccessControlRules_GrantedByUserIDArray: AccessControlRule_[];
|
|
2934
|
+
MJ_Artifacts_UserIDArray: Artifact_[];
|
|
2637
2935
|
MJ_AIAgentRuns_UserIDArray: AIAgentRun_[];
|
|
2936
|
+
MJ_Tasks_UserIDArray: Task_[];
|
|
2638
2937
|
}
|
|
2639
2938
|
export declare class CreateUserInput {
|
|
2640
2939
|
ID?: string;
|
|
@@ -2718,10 +3017,15 @@ export declare class UserResolverBase extends ResolverBase {
|
|
|
2718
3017
|
MJ_ReportUserStates_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2719
3018
|
MJ_DashboardUserPreferences_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2720
3019
|
MJ_DashboardUserStates_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3020
|
+
MJ_PublicLinks_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3021
|
+
MJ_ArtifactVersions_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2721
3022
|
ResourcePermissions_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2722
3023
|
AIAgentRequests_RequestForUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2723
3024
|
ConversationDetails_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3025
|
+
MJ_AccessControlRules_GrantedByUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3026
|
+
MJ_Artifacts_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2724
3027
|
MJ_AIAgentRuns_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3028
|
+
MJ_Tasks_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2725
3029
|
CreateUser(input: CreateUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2726
3030
|
UpdateUser(input: UpdateUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2727
3031
|
DeleteUser(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4706,9 +5010,11 @@ export declare class Dashboard_ {
|
|
|
4706
5010
|
ApplicationID?: string;
|
|
4707
5011
|
DriverClass?: string;
|
|
4708
5012
|
Code?: string;
|
|
5013
|
+
EnvironmentID: string;
|
|
4709
5014
|
User: string;
|
|
4710
5015
|
Category?: string;
|
|
4711
5016
|
Application?: string;
|
|
5017
|
+
Environment: string;
|
|
4712
5018
|
MJ_DashboardUserStates_DashboardIDArray: DashboardUserState_[];
|
|
4713
5019
|
MJ_DashboardUserPreferences_DashboardIDArray: DashboardUserPreference_[];
|
|
4714
5020
|
}
|
|
@@ -4725,6 +5031,7 @@ export declare class CreateDashboardInput {
|
|
|
4725
5031
|
ApplicationID: string | null;
|
|
4726
5032
|
DriverClass: string | null;
|
|
4727
5033
|
Code: string | null;
|
|
5034
|
+
EnvironmentID?: string;
|
|
4728
5035
|
}
|
|
4729
5036
|
export declare class UpdateDashboardInput {
|
|
4730
5037
|
ID: string;
|
|
@@ -4739,6 +5046,7 @@ export declare class UpdateDashboardInput {
|
|
|
4739
5046
|
ApplicationID?: string | null;
|
|
4740
5047
|
DriverClass?: string | null;
|
|
4741
5048
|
Code?: string | null;
|
|
5049
|
+
EnvironmentID?: string;
|
|
4742
5050
|
OldValues___?: KeyValuePairInput[];
|
|
4743
5051
|
}
|
|
4744
5052
|
export declare class RunDashboardViewResult {
|
|
@@ -4898,6 +5206,7 @@ export declare class Report_ {
|
|
|
4898
5206
|
_mj__CreatedAt: Date;
|
|
4899
5207
|
_mj__UpdatedAt: Date;
|
|
4900
5208
|
Thumbnail?: string;
|
|
5209
|
+
EnvironmentID: string;
|
|
4901
5210
|
Category?: string;
|
|
4902
5211
|
User: string;
|
|
4903
5212
|
Conversation?: string;
|
|
@@ -4906,6 +5215,7 @@ export declare class Report_ {
|
|
|
4906
5215
|
OutputFormatType?: string;
|
|
4907
5216
|
OutputDeliveryType?: string;
|
|
4908
5217
|
OutputWorkflow?: string;
|
|
5218
|
+
Environment: string;
|
|
4909
5219
|
ReportSnapshots_ReportIDArray: ReportSnapshot_[];
|
|
4910
5220
|
MJ_ReportVersions_ReportIDArray: ReportVersion_[];
|
|
4911
5221
|
MJ_ReportUserStates_ReportIDArray: ReportUserState_[];
|
|
@@ -4928,6 +5238,7 @@ export declare class CreateReportInput {
|
|
|
4928
5238
|
OutputTargetEmail: string | null;
|
|
4929
5239
|
OutputWorkflowID: string | null;
|
|
4930
5240
|
Thumbnail: string | null;
|
|
5241
|
+
EnvironmentID?: string;
|
|
4931
5242
|
}
|
|
4932
5243
|
export declare class UpdateReportInput {
|
|
4933
5244
|
ID: string;
|
|
@@ -4947,6 +5258,7 @@ export declare class UpdateReportInput {
|
|
|
4947
5258
|
OutputTargetEmail?: string | null;
|
|
4948
5259
|
OutputWorkflowID?: string | null;
|
|
4949
5260
|
Thumbnail?: string | null;
|
|
5261
|
+
EnvironmentID?: string;
|
|
4950
5262
|
OldValues___?: KeyValuePairInput[];
|
|
4951
5263
|
}
|
|
4952
5264
|
export declare class RunReportViewResult {
|
|
@@ -5364,11 +5676,13 @@ export declare class ConversationDetail_ {
|
|
|
5364
5676
|
ArtifactID?: string;
|
|
5365
5677
|
ArtifactVersionID?: string;
|
|
5366
5678
|
CompletionTime?: number;
|
|
5679
|
+
IsPinned: boolean;
|
|
5367
5680
|
Conversation?: string;
|
|
5368
5681
|
User?: string;
|
|
5369
5682
|
Artifact?: string;
|
|
5370
5683
|
Reports_ConversationDetailIDArray: Report_[];
|
|
5371
5684
|
MJ_AIAgentRuns_ConversationDetailIDArray: AIAgentRun_[];
|
|
5685
|
+
MJ_Tasks_ConversationDetailIDArray: Task_[];
|
|
5372
5686
|
}
|
|
5373
5687
|
export declare class CreateConversationDetailInput {
|
|
5374
5688
|
ID?: string;
|
|
@@ -5386,6 +5700,7 @@ export declare class CreateConversationDetailInput {
|
|
|
5386
5700
|
ArtifactID: string | null;
|
|
5387
5701
|
ArtifactVersionID: string | null;
|
|
5388
5702
|
CompletionTime: number | null;
|
|
5703
|
+
IsPinned?: boolean;
|
|
5389
5704
|
}
|
|
5390
5705
|
export declare class UpdateConversationDetailInput {
|
|
5391
5706
|
ID: string;
|
|
@@ -5403,6 +5718,7 @@ export declare class UpdateConversationDetailInput {
|
|
|
5403
5718
|
ArtifactID?: string | null;
|
|
5404
5719
|
ArtifactVersionID?: string | null;
|
|
5405
5720
|
CompletionTime?: number | null;
|
|
5721
|
+
IsPinned?: boolean;
|
|
5406
5722
|
OldValues___?: KeyValuePairInput[];
|
|
5407
5723
|
}
|
|
5408
5724
|
export declare class RunConversationDetailViewResult {
|
|
@@ -5421,6 +5737,7 @@ export declare class ConversationDetailResolver extends ResolverBase {
|
|
|
5421
5737
|
ConversationDetail(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<ConversationDetail_ | null>;
|
|
5422
5738
|
Reports_ConversationDetailIDArray(conversationdetail_: ConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5423
5739
|
MJ_AIAgentRuns_ConversationDetailIDArray(conversationdetail_: ConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5740
|
+
MJ_Tasks_ConversationDetailIDArray(conversationdetail_: ConversationDetail_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5424
5741
|
CreateConversationDetail(input: CreateConversationDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5425
5742
|
UpdateConversationDetail(input: UpdateConversationDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5426
5743
|
DeleteConversationDetail(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5439,9 +5756,14 @@ export declare class Conversation_ {
|
|
|
5439
5756
|
_mj__CreatedAt: Date;
|
|
5440
5757
|
_mj__UpdatedAt: Date;
|
|
5441
5758
|
Status: string;
|
|
5759
|
+
EnvironmentID: string;
|
|
5760
|
+
ProjectID?: string;
|
|
5761
|
+
IsPinned: boolean;
|
|
5442
5762
|
User: string;
|
|
5443
5763
|
LinkedEntity?: string;
|
|
5444
5764
|
DataContext?: string;
|
|
5765
|
+
Environment: string;
|
|
5766
|
+
Project?: string;
|
|
5445
5767
|
ConversationDetails_ConversationIDArray: ConversationDetail_[];
|
|
5446
5768
|
Reports_ConversationIDArray: Report_[];
|
|
5447
5769
|
MJ_ConversationArtifacts_ConversationIDArray: ConversationArtifact_[];
|
|
@@ -5459,6 +5781,9 @@ export declare class CreateConversationInput {
|
|
|
5459
5781
|
LinkedRecordID: string | null;
|
|
5460
5782
|
DataContextID: string | null;
|
|
5461
5783
|
Status?: string;
|
|
5784
|
+
EnvironmentID?: string;
|
|
5785
|
+
ProjectID: string | null;
|
|
5786
|
+
IsPinned?: boolean;
|
|
5462
5787
|
}
|
|
5463
5788
|
export declare class UpdateConversationInput {
|
|
5464
5789
|
ID: string;
|
|
@@ -5472,6 +5797,9 @@ export declare class UpdateConversationInput {
|
|
|
5472
5797
|
LinkedRecordID?: string | null;
|
|
5473
5798
|
DataContextID?: string | null;
|
|
5474
5799
|
Status?: string;
|
|
5800
|
+
EnvironmentID?: string;
|
|
5801
|
+
ProjectID?: string | null;
|
|
5802
|
+
IsPinned?: boolean;
|
|
5475
5803
|
OldValues___?: KeyValuePairInput[];
|
|
5476
5804
|
}
|
|
5477
5805
|
export declare class RunConversationViewResult {
|
|
@@ -9452,6 +9780,129 @@ export declare class ComponentResolver extends ResolverBase {
|
|
|
9452
9780
|
UpdateComponent(input: UpdateComponentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9453
9781
|
DeleteComponent(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9454
9782
|
}
|
|
9783
|
+
export declare class AccessControlRule_ {
|
|
9784
|
+
ID: string;
|
|
9785
|
+
EntityID: string;
|
|
9786
|
+
RecordID: string;
|
|
9787
|
+
GranteeType: string;
|
|
9788
|
+
GranteeID?: string;
|
|
9789
|
+
CanRead: boolean;
|
|
9790
|
+
CanCreate: boolean;
|
|
9791
|
+
CanUpdate: boolean;
|
|
9792
|
+
CanDelete: boolean;
|
|
9793
|
+
CanShare: boolean;
|
|
9794
|
+
ExpiresAt?: Date;
|
|
9795
|
+
GrantedByUserID: string;
|
|
9796
|
+
_mj__CreatedAt: Date;
|
|
9797
|
+
_mj__UpdatedAt: Date;
|
|
9798
|
+
Entity: string;
|
|
9799
|
+
GrantedByUser: string;
|
|
9800
|
+
}
|
|
9801
|
+
export declare class CreateAccessControlRuleInput {
|
|
9802
|
+
ID?: string;
|
|
9803
|
+
EntityID?: string;
|
|
9804
|
+
RecordID?: string;
|
|
9805
|
+
GranteeType?: string;
|
|
9806
|
+
GranteeID: string | null;
|
|
9807
|
+
CanRead?: boolean;
|
|
9808
|
+
CanCreate?: boolean;
|
|
9809
|
+
CanUpdate?: boolean;
|
|
9810
|
+
CanDelete?: boolean;
|
|
9811
|
+
CanShare?: boolean;
|
|
9812
|
+
ExpiresAt: Date | null;
|
|
9813
|
+
GrantedByUserID?: string;
|
|
9814
|
+
}
|
|
9815
|
+
export declare class UpdateAccessControlRuleInput {
|
|
9816
|
+
ID: string;
|
|
9817
|
+
EntityID?: string;
|
|
9818
|
+
RecordID?: string;
|
|
9819
|
+
GranteeType?: string;
|
|
9820
|
+
GranteeID?: string | null;
|
|
9821
|
+
CanRead?: boolean;
|
|
9822
|
+
CanCreate?: boolean;
|
|
9823
|
+
CanUpdate?: boolean;
|
|
9824
|
+
CanDelete?: boolean;
|
|
9825
|
+
CanShare?: boolean;
|
|
9826
|
+
ExpiresAt?: Date | null;
|
|
9827
|
+
GrantedByUserID?: string;
|
|
9828
|
+
OldValues___?: KeyValuePairInput[];
|
|
9829
|
+
}
|
|
9830
|
+
export declare class RunAccessControlRuleViewResult {
|
|
9831
|
+
Results: AccessControlRule_[];
|
|
9832
|
+
UserViewRunID?: string;
|
|
9833
|
+
RowCount: number;
|
|
9834
|
+
TotalRowCount: number;
|
|
9835
|
+
ExecutionTime: number;
|
|
9836
|
+
ErrorMessage?: string;
|
|
9837
|
+
Success: boolean;
|
|
9838
|
+
}
|
|
9839
|
+
export declare class AccessControlRuleResolver extends ResolverBase {
|
|
9840
|
+
RunAccessControlRuleViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9841
|
+
RunAccessControlRuleViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9842
|
+
RunAccessControlRuleDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9843
|
+
AccessControlRule(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<AccessControlRule_ | null>;
|
|
9844
|
+
CreateAccessControlRule(input: CreateAccessControlRuleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9845
|
+
UpdateAccessControlRule(input: UpdateAccessControlRuleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9846
|
+
DeleteAccessControlRule(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9847
|
+
}
|
|
9848
|
+
export declare class PublicLink_ {
|
|
9849
|
+
ID: string;
|
|
9850
|
+
ResourceType: string;
|
|
9851
|
+
ResourceID: string;
|
|
9852
|
+
Token: string;
|
|
9853
|
+
PasswordHash?: string;
|
|
9854
|
+
ExpiresAt?: Date;
|
|
9855
|
+
MaxViews?: number;
|
|
9856
|
+
CurrentViews: number;
|
|
9857
|
+
UserID: string;
|
|
9858
|
+
IsActive: boolean;
|
|
9859
|
+
_mj__CreatedAt: Date;
|
|
9860
|
+
_mj__UpdatedAt: Date;
|
|
9861
|
+
User: string;
|
|
9862
|
+
}
|
|
9863
|
+
export declare class CreatePublicLinkInput {
|
|
9864
|
+
ID?: string;
|
|
9865
|
+
ResourceType?: string;
|
|
9866
|
+
ResourceID?: string;
|
|
9867
|
+
Token?: string;
|
|
9868
|
+
PasswordHash: string | null;
|
|
9869
|
+
ExpiresAt: Date | null;
|
|
9870
|
+
MaxViews: number | null;
|
|
9871
|
+
CurrentViews?: number;
|
|
9872
|
+
UserID?: string;
|
|
9873
|
+
IsActive?: boolean;
|
|
9874
|
+
}
|
|
9875
|
+
export declare class UpdatePublicLinkInput {
|
|
9876
|
+
ID: string;
|
|
9877
|
+
ResourceType?: string;
|
|
9878
|
+
ResourceID?: string;
|
|
9879
|
+
Token?: string;
|
|
9880
|
+
PasswordHash?: string | null;
|
|
9881
|
+
ExpiresAt?: Date | null;
|
|
9882
|
+
MaxViews?: number | null;
|
|
9883
|
+
CurrentViews?: number;
|
|
9884
|
+
UserID?: string;
|
|
9885
|
+
IsActive?: boolean;
|
|
9886
|
+
OldValues___?: KeyValuePairInput[];
|
|
9887
|
+
}
|
|
9888
|
+
export declare class RunPublicLinkViewResult {
|
|
9889
|
+
Results: PublicLink_[];
|
|
9890
|
+
UserViewRunID?: string;
|
|
9891
|
+
RowCount: number;
|
|
9892
|
+
TotalRowCount: number;
|
|
9893
|
+
ExecutionTime: number;
|
|
9894
|
+
ErrorMessage?: string;
|
|
9895
|
+
Success: boolean;
|
|
9896
|
+
}
|
|
9897
|
+
export declare class PublicLinkResolver extends ResolverBase {
|
|
9898
|
+
RunPublicLinkViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9899
|
+
RunPublicLinkViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9900
|
+
RunPublicLinkDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9901
|
+
PublicLink(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<PublicLink_ | null>;
|
|
9902
|
+
CreatePublicLink(input: CreatePublicLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9903
|
+
UpdatePublicLink(input: UpdatePublicLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9904
|
+
DeletePublicLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9905
|
+
}
|
|
9455
9906
|
export declare class ArtifactType_ {
|
|
9456
9907
|
ID: string;
|
|
9457
9908
|
Name: string;
|
|
@@ -9461,6 +9912,7 @@ export declare class ArtifactType_ {
|
|
|
9461
9912
|
_mj__CreatedAt: Date;
|
|
9462
9913
|
_mj__UpdatedAt: Date;
|
|
9463
9914
|
MJ_ConversationArtifacts_ArtifactTypeIDArray: ConversationArtifact_[];
|
|
9915
|
+
MJ_Artifacts_TypeIDArray: Artifact_[];
|
|
9464
9916
|
}
|
|
9465
9917
|
export declare class CreateArtifactTypeInput {
|
|
9466
9918
|
ID?: string;
|
|
@@ -9492,6 +9944,7 @@ export declare class ArtifactTypeResolver extends ResolverBase {
|
|
|
9492
9944
|
RunArtifactTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9493
9945
|
ArtifactType(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<ArtifactType_ | null>;
|
|
9494
9946
|
MJ_ConversationArtifacts_ArtifactTypeIDArray(artifacttype_: ArtifactType_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9947
|
+
MJ_Artifacts_TypeIDArray(artifacttype_: ArtifactType_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9495
9948
|
CreateArtifactType(input: CreateArtifactTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9496
9949
|
UpdateArtifactType(input: UpdateArtifactTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9497
9950
|
DeleteArtifactType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -9540,6 +9993,61 @@ export declare class AIVendorTypeResolver extends ResolverBase {
|
|
|
9540
9993
|
UpdateAIVendorType(input: UpdateAIVendorTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9541
9994
|
DeleteAIVendorType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9542
9995
|
}
|
|
9996
|
+
export declare class Artifact_ {
|
|
9997
|
+
ID: string;
|
|
9998
|
+
EnvironmentID: string;
|
|
9999
|
+
Name: string;
|
|
10000
|
+
Description?: string;
|
|
10001
|
+
TypeID: string;
|
|
10002
|
+
Comments?: string;
|
|
10003
|
+
UserID: string;
|
|
10004
|
+
_mj__CreatedAt: Date;
|
|
10005
|
+
_mj__UpdatedAt: Date;
|
|
10006
|
+
Environment: string;
|
|
10007
|
+
Type: string;
|
|
10008
|
+
User: string;
|
|
10009
|
+
MJ_ArtifactVersions_ArtifactIDArray: ArtifactVersion_[];
|
|
10010
|
+
MJ_CollectionArtifacts_ArtifactIDArray: CollectionArtifact_[];
|
|
10011
|
+
}
|
|
10012
|
+
export declare class CreateArtifactInput {
|
|
10013
|
+
ID?: string;
|
|
10014
|
+
EnvironmentID?: string;
|
|
10015
|
+
Name?: string;
|
|
10016
|
+
Description: string | null;
|
|
10017
|
+
TypeID?: string;
|
|
10018
|
+
Comments: string | null;
|
|
10019
|
+
UserID?: string;
|
|
10020
|
+
}
|
|
10021
|
+
export declare class UpdateArtifactInput {
|
|
10022
|
+
ID: string;
|
|
10023
|
+
EnvironmentID?: string;
|
|
10024
|
+
Name?: string;
|
|
10025
|
+
Description?: string | null;
|
|
10026
|
+
TypeID?: string;
|
|
10027
|
+
Comments?: string | null;
|
|
10028
|
+
UserID?: string;
|
|
10029
|
+
OldValues___?: KeyValuePairInput[];
|
|
10030
|
+
}
|
|
10031
|
+
export declare class RunArtifactViewResult {
|
|
10032
|
+
Results: Artifact_[];
|
|
10033
|
+
UserViewRunID?: string;
|
|
10034
|
+
RowCount: number;
|
|
10035
|
+
TotalRowCount: number;
|
|
10036
|
+
ExecutionTime: number;
|
|
10037
|
+
ErrorMessage?: string;
|
|
10038
|
+
Success: boolean;
|
|
10039
|
+
}
|
|
10040
|
+
export declare class ArtifactResolver extends ResolverBase {
|
|
10041
|
+
RunArtifactViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10042
|
+
RunArtifactViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10043
|
+
RunArtifactDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10044
|
+
Artifact(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Artifact_ | null>;
|
|
10045
|
+
MJ_ArtifactVersions_ArtifactIDArray(artifact_: Artifact_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10046
|
+
MJ_CollectionArtifacts_ArtifactIDArray(artifact_: Artifact_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10047
|
+
CreateArtifact(input: CreateArtifactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10048
|
+
UpdateArtifact(input: UpdateArtifactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10049
|
+
DeleteArtifact(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10050
|
+
}
|
|
9543
10051
|
export declare class ConversationArtifact_ {
|
|
9544
10052
|
ID: string;
|
|
9545
10053
|
Name: string;
|
|
@@ -10848,6 +11356,149 @@ export declare class AIAgentRunStepResolver extends ResolverBase {
|
|
|
10848
11356
|
UpdateAIAgentRunStep(input: UpdateAIAgentRunStepInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10849
11357
|
DeleteAIAgentRunStep(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10850
11358
|
}
|
|
11359
|
+
export declare class Task_ {
|
|
11360
|
+
ID: string;
|
|
11361
|
+
ParentID?: string;
|
|
11362
|
+
Name: string;
|
|
11363
|
+
Description?: string;
|
|
11364
|
+
TypeID: string;
|
|
11365
|
+
EnvironmentID: string;
|
|
11366
|
+
ProjectID?: string;
|
|
11367
|
+
ConversationDetailID?: string;
|
|
11368
|
+
UserID?: string;
|
|
11369
|
+
AgentID?: string;
|
|
11370
|
+
Status: string;
|
|
11371
|
+
PercentComplete?: number;
|
|
11372
|
+
DueAt?: Date;
|
|
11373
|
+
StartedAt?: Date;
|
|
11374
|
+
CompletedAt?: Date;
|
|
11375
|
+
_mj__CreatedAt: Date;
|
|
11376
|
+
_mj__UpdatedAt: Date;
|
|
11377
|
+
Parent?: string;
|
|
11378
|
+
Type: string;
|
|
11379
|
+
Environment: string;
|
|
11380
|
+
Project?: string;
|
|
11381
|
+
User?: string;
|
|
11382
|
+
Agent?: string;
|
|
11383
|
+
MJ_TaskDependencies_DependsOnTaskIDArray: TaskDependency_[];
|
|
11384
|
+
MJ_TaskDependencies_TaskIDArray: TaskDependency_[];
|
|
11385
|
+
MJ_Tasks_ParentIDArray: Task_[];
|
|
11386
|
+
}
|
|
11387
|
+
export declare class CreateTaskInput {
|
|
11388
|
+
ID?: string;
|
|
11389
|
+
ParentID: string | null;
|
|
11390
|
+
Name?: string;
|
|
11391
|
+
Description: string | null;
|
|
11392
|
+
TypeID?: string;
|
|
11393
|
+
EnvironmentID?: string;
|
|
11394
|
+
ProjectID: string | null;
|
|
11395
|
+
ConversationDetailID: string | null;
|
|
11396
|
+
UserID: string | null;
|
|
11397
|
+
AgentID: string | null;
|
|
11398
|
+
Status?: string;
|
|
11399
|
+
PercentComplete?: number | null;
|
|
11400
|
+
DueAt: Date | null;
|
|
11401
|
+
StartedAt: Date | null;
|
|
11402
|
+
CompletedAt: Date | null;
|
|
11403
|
+
}
|
|
11404
|
+
export declare class UpdateTaskInput {
|
|
11405
|
+
ID: string;
|
|
11406
|
+
ParentID?: string | null;
|
|
11407
|
+
Name?: string;
|
|
11408
|
+
Description?: string | null;
|
|
11409
|
+
TypeID?: string;
|
|
11410
|
+
EnvironmentID?: string;
|
|
11411
|
+
ProjectID?: string | null;
|
|
11412
|
+
ConversationDetailID?: string | null;
|
|
11413
|
+
UserID?: string | null;
|
|
11414
|
+
AgentID?: string | null;
|
|
11415
|
+
Status?: string;
|
|
11416
|
+
PercentComplete?: number | null;
|
|
11417
|
+
DueAt?: Date | null;
|
|
11418
|
+
StartedAt?: Date | null;
|
|
11419
|
+
CompletedAt?: Date | null;
|
|
11420
|
+
OldValues___?: KeyValuePairInput[];
|
|
11421
|
+
}
|
|
11422
|
+
export declare class RunTaskViewResult {
|
|
11423
|
+
Results: Task_[];
|
|
11424
|
+
UserViewRunID?: string;
|
|
11425
|
+
RowCount: number;
|
|
11426
|
+
TotalRowCount: number;
|
|
11427
|
+
ExecutionTime: number;
|
|
11428
|
+
ErrorMessage?: string;
|
|
11429
|
+
Success: boolean;
|
|
11430
|
+
}
|
|
11431
|
+
export declare class TaskResolver extends ResolverBase {
|
|
11432
|
+
RunTaskViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11433
|
+
RunTaskViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11434
|
+
RunTaskDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11435
|
+
Task(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Task_ | null>;
|
|
11436
|
+
MJ_TaskDependencies_DependsOnTaskIDArray(task_: Task_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11437
|
+
MJ_TaskDependencies_TaskIDArray(task_: Task_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11438
|
+
MJ_Tasks_ParentIDArray(task_: Task_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11439
|
+
CreateTask(input: CreateTaskInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11440
|
+
UpdateTask(input: UpdateTaskInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11441
|
+
DeleteTask(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11442
|
+
}
|
|
11443
|
+
export declare class Project_ {
|
|
11444
|
+
ID: string;
|
|
11445
|
+
EnvironmentID: string;
|
|
11446
|
+
ParentID?: string;
|
|
11447
|
+
Name: string;
|
|
11448
|
+
Description?: string;
|
|
11449
|
+
Color?: string;
|
|
11450
|
+
Icon?: string;
|
|
11451
|
+
IsArchived: boolean;
|
|
11452
|
+
_mj__CreatedAt: Date;
|
|
11453
|
+
_mj__UpdatedAt: Date;
|
|
11454
|
+
Environment: string;
|
|
11455
|
+
Parent?: string;
|
|
11456
|
+
MJ_Projects_ParentIDArray: Project_[];
|
|
11457
|
+
Conversations_ProjectIDArray: Conversation_[];
|
|
11458
|
+
MJ_Tasks_ProjectIDArray: Task_[];
|
|
11459
|
+
}
|
|
11460
|
+
export declare class CreateProjectInput {
|
|
11461
|
+
ID?: string;
|
|
11462
|
+
EnvironmentID?: string;
|
|
11463
|
+
ParentID: string | null;
|
|
11464
|
+
Name?: string;
|
|
11465
|
+
Description: string | null;
|
|
11466
|
+
Color: string | null;
|
|
11467
|
+
Icon: string | null;
|
|
11468
|
+
IsArchived?: boolean;
|
|
11469
|
+
}
|
|
11470
|
+
export declare class UpdateProjectInput {
|
|
11471
|
+
ID: string;
|
|
11472
|
+
EnvironmentID?: string;
|
|
11473
|
+
ParentID?: string | null;
|
|
11474
|
+
Name?: string;
|
|
11475
|
+
Description?: string | null;
|
|
11476
|
+
Color?: string | null;
|
|
11477
|
+
Icon?: string | null;
|
|
11478
|
+
IsArchived?: boolean;
|
|
11479
|
+
OldValues___?: KeyValuePairInput[];
|
|
11480
|
+
}
|
|
11481
|
+
export declare class RunProjectViewResult {
|
|
11482
|
+
Results: Project_[];
|
|
11483
|
+
UserViewRunID?: string;
|
|
11484
|
+
RowCount: number;
|
|
11485
|
+
TotalRowCount: number;
|
|
11486
|
+
ExecutionTime: number;
|
|
11487
|
+
ErrorMessage?: string;
|
|
11488
|
+
Success: boolean;
|
|
11489
|
+
}
|
|
11490
|
+
export declare class ProjectResolver extends ResolverBase {
|
|
11491
|
+
RunProjectViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11492
|
+
RunProjectViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11493
|
+
RunProjectDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11494
|
+
Project(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Project_ | null>;
|
|
11495
|
+
MJ_Projects_ParentIDArray(project_: Project_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11496
|
+
Conversations_ProjectIDArray(project_: Project_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11497
|
+
MJ_Tasks_ProjectIDArray(project_: Project_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11498
|
+
CreateProject(input: CreateProjectInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11499
|
+
UpdateProject(input: UpdateProjectInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11500
|
+
DeleteProject(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11501
|
+
}
|
|
10851
11502
|
export declare class ConversationArtifactPermission_ {
|
|
10852
11503
|
ID: string;
|
|
10853
11504
|
ConversationArtifactID: string;
|
|
@@ -10929,6 +11580,56 @@ export declare class AIModelPriceUnitTypeResolver extends ResolverBase {
|
|
|
10929
11580
|
UpdateAIModelPriceUnitType(input: UpdateAIModelPriceUnitTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10930
11581
|
DeleteAIModelPriceUnitType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10931
11582
|
}
|
|
11583
|
+
export declare class ArtifactVersion_ {
|
|
11584
|
+
ID: string;
|
|
11585
|
+
ArtifactID: string;
|
|
11586
|
+
VersionNumber: number;
|
|
11587
|
+
Content?: string;
|
|
11588
|
+
Configuration?: string;
|
|
11589
|
+
Comments?: string;
|
|
11590
|
+
UserID: string;
|
|
11591
|
+
_mj__CreatedAt: Date;
|
|
11592
|
+
_mj__UpdatedAt: Date;
|
|
11593
|
+
Artifact: string;
|
|
11594
|
+
User: string;
|
|
11595
|
+
}
|
|
11596
|
+
export declare class CreateArtifactVersionInput {
|
|
11597
|
+
ID?: string;
|
|
11598
|
+
ArtifactID?: string;
|
|
11599
|
+
VersionNumber?: number;
|
|
11600
|
+
Content: string | null;
|
|
11601
|
+
Configuration: string | null;
|
|
11602
|
+
Comments: string | null;
|
|
11603
|
+
UserID?: string;
|
|
11604
|
+
}
|
|
11605
|
+
export declare class UpdateArtifactVersionInput {
|
|
11606
|
+
ID: string;
|
|
11607
|
+
ArtifactID?: string;
|
|
11608
|
+
VersionNumber?: number;
|
|
11609
|
+
Content?: string | null;
|
|
11610
|
+
Configuration?: string | null;
|
|
11611
|
+
Comments?: string | null;
|
|
11612
|
+
UserID?: string;
|
|
11613
|
+
OldValues___?: KeyValuePairInput[];
|
|
11614
|
+
}
|
|
11615
|
+
export declare class RunArtifactVersionViewResult {
|
|
11616
|
+
Results: ArtifactVersion_[];
|
|
11617
|
+
UserViewRunID?: string;
|
|
11618
|
+
RowCount: number;
|
|
11619
|
+
TotalRowCount: number;
|
|
11620
|
+
ExecutionTime: number;
|
|
11621
|
+
ErrorMessage?: string;
|
|
11622
|
+
Success: boolean;
|
|
11623
|
+
}
|
|
11624
|
+
export declare class ArtifactVersionResolver extends ResolverBase {
|
|
11625
|
+
RunArtifactVersionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11626
|
+
RunArtifactVersionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11627
|
+
RunArtifactVersionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11628
|
+
ArtifactVersion(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<ArtifactVersion_ | null>;
|
|
11629
|
+
CreateArtifactVersion(input: CreateArtifactVersionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11630
|
+
UpdateArtifactVersion(input: UpdateArtifactVersionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11631
|
+
DeleteArtifactVersion(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11632
|
+
}
|
|
10932
11633
|
export declare class AIAgentStepPath_ {
|
|
10933
11634
|
ID: string;
|
|
10934
11635
|
OriginStepID: string;
|