@memberjunction/server 5.6.0 → 5.8.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/agents/skip-agent.d.ts +15 -1
- package/dist/agents/skip-agent.d.ts.map +1 -1
- package/dist/agents/skip-agent.js +78 -36
- package/dist/agents/skip-agent.js.map +1 -1
- package/dist/agents/skip-sdk.d.ts.map +1 -1
- package/dist/agents/skip-sdk.js +12 -0
- package/dist/agents/skip-sdk.js.map +1 -1
- package/dist/generated/generated.d.ts +400 -116
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +2280 -549
- package/dist/generated/generated.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +56 -56
- package/src/agents/skip-agent.ts +87 -34
- package/src/agents/skip-sdk.ts +13 -0
- package/src/generated/generated.ts +1599 -430
- package/src/index.ts +5 -0
|
@@ -1756,10 +1756,11 @@ export declare class MJAIAgentRun_ {
|
|
|
1756
1756
|
RootLastRunID?: string;
|
|
1757
1757
|
MJAIAgentRunSteps_AgentRunIDArray: MJAIAgentRunStep_[];
|
|
1758
1758
|
MJAIAgentRuns_ParentRunIDArray: MJAIAgentRun_[];
|
|
1759
|
-
MJAIAgentExamples_SourceAIAgentRunIDArray: MJAIAgentExample_[];
|
|
1760
1759
|
MJAIAgentNotes_SourceAIAgentRunIDArray: MJAIAgentNote_[];
|
|
1760
|
+
MJAIAgentExamples_SourceAIAgentRunIDArray: MJAIAgentExample_[];
|
|
1761
1761
|
MJAIAgentRunMedias_AgentRunIDArray: MJAIAgentRunMedia_[];
|
|
1762
1762
|
MJAIPromptRuns_AgentRunIDArray: MJAIPromptRun_[];
|
|
1763
|
+
MJAIAgentRuns_LastRunIDArray: MJAIAgentRun_[];
|
|
1763
1764
|
}
|
|
1764
1765
|
export declare class CreateMJAIAgentRunInput {
|
|
1765
1766
|
ID?: string;
|
|
@@ -1866,10 +1867,11 @@ export declare class MJAIAgentRunResolver extends ResolverBase {
|
|
|
1866
1867
|
MJAIAgentRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentRun_ | null>;
|
|
1867
1868
|
MJAIAgentRunSteps_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1868
1869
|
MJAIAgentRuns_ParentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1869
|
-
MJAIAgentExamples_SourceAIAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1870
1870
|
MJAIAgentNotes_SourceAIAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1871
|
+
MJAIAgentExamples_SourceAIAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1871
1872
|
MJAIAgentRunMedias_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1872
1873
|
MJAIPromptRuns_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1874
|
+
MJAIAgentRuns_LastRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1873
1875
|
CreateMJAIAgentRun(input: CreateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1874
1876
|
UpdateMJAIAgentRun(input: UpdateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1875
1877
|
DeleteMJAIAgentRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1952,8 +1954,8 @@ export declare class MJAIAgentStep_ {
|
|
|
1952
1954
|
Action?: string;
|
|
1953
1955
|
SubAgent?: string;
|
|
1954
1956
|
Prompt?: string;
|
|
1955
|
-
MJAIAgentStepPaths_DestinationStepIDArray: MJAIAgentStepPath_[];
|
|
1956
1957
|
MJAIAgentStepPaths_OriginStepIDArray: MJAIAgentStepPath_[];
|
|
1958
|
+
MJAIAgentStepPaths_DestinationStepIDArray: MJAIAgentStepPath_[];
|
|
1957
1959
|
}
|
|
1958
1960
|
export declare class CreateMJAIAgentStepInput {
|
|
1959
1961
|
ID?: string;
|
|
@@ -2016,8 +2018,8 @@ export declare class MJAIAgentStepResolver extends ResolverBase {
|
|
|
2016
2018
|
RunMJAIAgentStepViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2017
2019
|
RunMJAIAgentStepDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2018
2020
|
MJAIAgentStep(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentStep_ | null>;
|
|
2019
|
-
MJAIAgentStepPaths_DestinationStepIDArray(mjaiagentstep_: MJAIAgentStep_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2020
2021
|
MJAIAgentStepPaths_OriginStepIDArray(mjaiagentstep_: MJAIAgentStep_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2022
|
+
MJAIAgentStepPaths_DestinationStepIDArray(mjaiagentstep_: MJAIAgentStep_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2021
2023
|
CreateMJAIAgentStep(input: CreateMJAIAgentStepInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2022
2024
|
UpdateMJAIAgentStep(input: UpdateMJAIAgentStepInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2023
2025
|
DeleteMJAIAgentStep(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2158,8 +2160,8 @@ export declare class MJAIAgent_ {
|
|
|
2158
2160
|
MJAIAgentActions_AgentIDArray: MJAIAgentAction_[];
|
|
2159
2161
|
MJAIAgentLearningCycles_AgentIDArray: MJAIAgentLearningCycle_[];
|
|
2160
2162
|
MJAIAgentRequests_AgentIDArray: MJAIAgentRequest_[];
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
+
MJAIAgentSteps_SubAgentIDArray: MJAIAgentStep_[];
|
|
2164
|
+
MJAIAgentRelationships_SubAgentIDArray: MJAIAgentRelationship_[];
|
|
2163
2165
|
MJAIAgentArtifactTypes_AgentIDArray: MJAIAgentArtifactType_[];
|
|
2164
2166
|
MJAIAgentPermissions_AgentIDArray: MJAIAgentPermission_[];
|
|
2165
2167
|
MJAIAgentDataSources_AgentIDArray: MJAIAgentDataSource_[];
|
|
@@ -2167,13 +2169,13 @@ export declare class MJAIAgent_ {
|
|
|
2167
2169
|
MJAIAgentNotes_AgentIDArray: MJAIAgentNote_[];
|
|
2168
2170
|
MJAIAgentPrompts_AgentIDArray: MJAIAgentPrompt_[];
|
|
2169
2171
|
MJAIAgentRuns_AgentIDArray: MJAIAgentRun_[];
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
+
MJAIAgentSteps_AgentIDArray: MJAIAgentStep_[];
|
|
2173
|
+
MJAIAgentRelationships_AgentIDArray: MJAIAgentRelationship_[];
|
|
2172
2174
|
MJTasks_AgentIDArray: MJTask_[];
|
|
2173
2175
|
MJAIAgentExamples_AgentIDArray: MJAIAgentExample_[];
|
|
2174
2176
|
MJAIAgentConfigurations_AgentIDArray: MJAIAgentConfiguration_[];
|
|
2175
|
-
MJAIResultCache_AgentIDArray: MJAIResultCache_[];
|
|
2176
2177
|
MJAIPromptRuns_AgentIDArray: MJAIPromptRun_[];
|
|
2178
|
+
MJAIResultCache_AgentIDArray: MJAIResultCache_[];
|
|
2177
2179
|
MJConversationDetails_AgentIDArray: MJConversationDetail_[];
|
|
2178
2180
|
MJAIAgents_ParentIDArray: MJAIAgent_[];
|
|
2179
2181
|
}
|
|
@@ -2318,8 +2320,8 @@ export declare class MJAIAgentResolver extends ResolverBase {
|
|
|
2318
2320
|
MJAIAgentActions_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2319
2321
|
MJAIAgentLearningCycles_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2320
2322
|
MJAIAgentRequests_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
+
MJAIAgentSteps_SubAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2324
|
+
MJAIAgentRelationships_SubAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2323
2325
|
MJAIAgentArtifactTypes_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2324
2326
|
MJAIAgentPermissions_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2325
2327
|
MJAIAgentDataSources_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -2327,13 +2329,13 @@ export declare class MJAIAgentResolver extends ResolverBase {
|
|
|
2327
2329
|
MJAIAgentNotes_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2328
2330
|
MJAIAgentPrompts_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2329
2331
|
MJAIAgentRuns_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
+
MJAIAgentSteps_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2333
|
+
MJAIAgentRelationships_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2332
2334
|
MJTasks_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2333
2335
|
MJAIAgentExamples_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2334
2336
|
MJAIAgentConfigurations_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2335
|
-
MJAIResultCache_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2336
2337
|
MJAIPromptRuns_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2338
|
+
MJAIResultCache_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2337
2339
|
MJConversationDetails_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2338
2340
|
MJAIAgents_ParentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2339
2341
|
CreateMJAIAgent(input: CreateMJAIAgentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2464,9 +2466,9 @@ export declare class MJAIConfiguration_ {
|
|
|
2464
2466
|
MJAIConfigurationParams_ConfigurationIDArray: MJAIConfigurationParam_[];
|
|
2465
2467
|
MJAIAgentPrompts_ConfigurationIDArray: MJAIAgentPrompt_[];
|
|
2466
2468
|
MJAIAgentConfigurations_AIConfigurationIDArray: MJAIAgentConfiguration_[];
|
|
2469
|
+
MJAIPromptRuns_ConfigurationIDArray: MJAIPromptRun_[];
|
|
2467
2470
|
MJAIPromptModels_ConfigurationIDArray: MJAIPromptModel_[];
|
|
2468
2471
|
MJAIResultCache_ConfigurationIDArray: MJAIResultCache_[];
|
|
2469
|
-
MJAIPromptRuns_ConfigurationIDArray: MJAIPromptRun_[];
|
|
2470
2472
|
MJAIAgentRuns_ConfigurationIDArray: MJAIAgentRun_[];
|
|
2471
2473
|
MJAIConfigurations_ParentIDArray: MJAIConfiguration_[];
|
|
2472
2474
|
}
|
|
@@ -2512,9 +2514,9 @@ export declare class MJAIConfigurationResolver extends ResolverBase {
|
|
|
2512
2514
|
MJAIConfigurationParams_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2513
2515
|
MJAIAgentPrompts_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2514
2516
|
MJAIAgentConfigurations_AIConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2517
|
+
MJAIPromptRuns_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2515
2518
|
MJAIPromptModels_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2516
2519
|
MJAIResultCache_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2517
|
-
MJAIPromptRuns_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2518
2520
|
MJAIAgentRuns_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2519
2521
|
MJAIConfigurations_ParentIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2520
2522
|
CreateMJAIConfiguration(input: CreateMJAIConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2590,10 +2592,10 @@ export declare class MJAIModality_ {
|
|
|
2590
2592
|
_mj__UpdatedAt: Date;
|
|
2591
2593
|
MJAIAgentModalities_ModalityIDArray: MJAIAgentModality_[];
|
|
2592
2594
|
MJAIModelModalities_ModalityIDArray: MJAIModelModality_[];
|
|
2595
|
+
MJAIModelTypes_DefaultInputModalityIDArray: MJAIModelType_[];
|
|
2593
2596
|
MJConversationDetailAttachments_ModalityIDArray: MJConversationDetailAttachment_[];
|
|
2594
|
-
MJAIModelTypes_DefaultOutputModalityIDArray: MJAIModelType_[];
|
|
2595
2597
|
MJAIPromptRunMedias_ModalityIDArray: MJAIPromptRunMedia_[];
|
|
2596
|
-
|
|
2598
|
+
MJAIModelTypes_DefaultOutputModalityIDArray: MJAIModelType_[];
|
|
2597
2599
|
MJAIAgentRunMedias_ModalityIDArray: MJAIAgentRunMedia_[];
|
|
2598
2600
|
}
|
|
2599
2601
|
export declare class CreateMJAIModalityInput {
|
|
@@ -2635,10 +2637,10 @@ export declare class MJAIModalityResolver extends ResolverBase {
|
|
|
2635
2637
|
MJAIModality(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIModality_ | null>;
|
|
2636
2638
|
MJAIAgentModalities_ModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2637
2639
|
MJAIModelModalities_ModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2640
|
+
MJAIModelTypes_DefaultInputModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2638
2641
|
MJConversationDetailAttachments_ModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2639
|
-
MJAIModelTypes_DefaultOutputModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2640
2642
|
MJAIPromptRunMedias_ModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2641
|
-
|
|
2643
|
+
MJAIModelTypes_DefaultOutputModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2642
2644
|
MJAIAgentRunMedias_ModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2643
2645
|
CreateMJAIModality(input: CreateMJAIModalityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2644
2646
|
UpdateMJAIModality(input: UpdateMJAIModalityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3096,18 +3098,19 @@ export declare class MJAIModel_ {
|
|
|
3096
3098
|
MJEntityAIActions_AIModelIDArray: MJEntityAIAction_[];
|
|
3097
3099
|
MJContentTypes_AIModelIDArray: MJContentType_[];
|
|
3098
3100
|
MJAIResultCache_AIModelIDArray: MJAIResultCache_[];
|
|
3099
|
-
MJAIAgentNotes_EmbeddingModelIDArray: MJAIAgentNote_[];
|
|
3100
3101
|
MJAIAgentExamples_EmbeddingModelIDArray: MJAIAgentExample_[];
|
|
3101
|
-
|
|
3102
|
+
MJAIAgentNotes_EmbeddingModelIDArray: MJAIAgentNote_[];
|
|
3102
3103
|
MJAIModelArchitectures_ModelIDArray: MJAIModelArchitecture_[];
|
|
3104
|
+
MJAIModelModalities_ModelIDArray: MJAIModelModality_[];
|
|
3103
3105
|
MJAIAgentModels_ModelIDArray: MJAIAgentModel_[];
|
|
3104
3106
|
MJAIModelVendors_ModelIDArray: MJAIModelVendor_[];
|
|
3105
3107
|
MJGeneratedCodes_GeneratedByModelIDArray: MJGeneratedCode_[];
|
|
3106
3108
|
MJAIModelCosts_ModelIDArray: MJAIModelCost_[];
|
|
3107
3109
|
MJAIPromptModels_ModelIDArray: MJAIPromptModel_[];
|
|
3108
|
-
|
|
3110
|
+
MJAIPromptRuns_OriginalModelIDArray: MJAIPromptRun_[];
|
|
3109
3111
|
MJAIAgentRuns_OverrideModelIDArray: MJAIAgentRun_[];
|
|
3110
3112
|
MJQueries_EmbeddingModelIDArray: MJQuery_[];
|
|
3113
|
+
MJAIPromptRuns_ModelIDArray: MJAIPromptRun_[];
|
|
3111
3114
|
MJAIModels_PriorVersionIDArray: MJAIModel_[];
|
|
3112
3115
|
}
|
|
3113
3116
|
export declare class CreateMJAIModelInput {
|
|
@@ -3173,18 +3176,19 @@ export declare class MJAIModelResolver extends ResolverBase {
|
|
|
3173
3176
|
MJEntityAIActions_AIModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3174
3177
|
MJContentTypes_AIModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3175
3178
|
MJAIResultCache_AIModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3176
|
-
MJAIAgentNotes_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3177
3179
|
MJAIAgentExamples_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3178
|
-
|
|
3180
|
+
MJAIAgentNotes_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3179
3181
|
MJAIModelArchitectures_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3182
|
+
MJAIModelModalities_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3180
3183
|
MJAIAgentModels_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3181
3184
|
MJAIModelVendors_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3182
3185
|
MJGeneratedCodes_GeneratedByModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3183
3186
|
MJAIModelCosts_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3184
3187
|
MJAIPromptModels_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3185
|
-
|
|
3188
|
+
MJAIPromptRuns_OriginalModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3186
3189
|
MJAIAgentRuns_OverrideModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3187
3190
|
MJQueries_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3191
|
+
MJAIPromptRuns_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3188
3192
|
MJAIModels_PriorVersionIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3189
3193
|
CreateMJAIModel(input: CreateMJAIModelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3190
3194
|
UpdateMJAIModel(input: UpdateMJAIModelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3483,9 +3487,10 @@ export declare class MJAIPromptRun_ {
|
|
|
3483
3487
|
TestRun?: string;
|
|
3484
3488
|
RootParentID?: string;
|
|
3485
3489
|
RootRerunFromPromptRunID?: string;
|
|
3486
|
-
|
|
3490
|
+
MJAIPromptRuns_RerunFromPromptRunIDArray: MJAIPromptRun_[];
|
|
3487
3491
|
MJAIPromptRunMedias_PromptRunIDArray: MJAIPromptRunMedia_[];
|
|
3488
3492
|
MJAIResultCache_PromptRunIDArray: MJAIResultCache_[];
|
|
3493
|
+
MJAIPromptRuns_ParentIDArray: MJAIPromptRun_[];
|
|
3489
3494
|
}
|
|
3490
3495
|
export declare class CreateMJAIPromptRunInput {
|
|
3491
3496
|
ID?: string;
|
|
@@ -3670,9 +3675,10 @@ export declare class MJAIPromptRunResolver extends ResolverBase {
|
|
|
3670
3675
|
RunMJAIPromptRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3671
3676
|
RunMJAIPromptRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3672
3677
|
MJAIPromptRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIPromptRun_ | null>;
|
|
3673
|
-
|
|
3678
|
+
MJAIPromptRuns_RerunFromPromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3674
3679
|
MJAIPromptRunMedias_PromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3675
3680
|
MJAIResultCache_PromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3681
|
+
MJAIPromptRuns_ParentIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3676
3682
|
CreateMJAIPromptRun(input: CreateMJAIPromptRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3677
3683
|
UpdateMJAIPromptRun(input: UpdateMJAIPromptRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3678
3684
|
DeleteMJAIPromptRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3774,15 +3780,17 @@ export declare class MJAIPrompt_ {
|
|
|
3774
3780
|
ResultSelectorPrompt?: string;
|
|
3775
3781
|
RootResultSelectorPromptID?: string;
|
|
3776
3782
|
MJAIResultCache_AIPromptIDArray: MJAIResultCache_[];
|
|
3777
|
-
|
|
3783
|
+
MJAIConfigurations_DefaultPromptForContextSummarizationIDArray: MJAIConfiguration_[];
|
|
3778
3784
|
MJAIAgentTypes_SystemPromptIDArray: MJAIAgentType_[];
|
|
3779
3785
|
MJAIAgentActions_CompactPromptIDArray: MJAIAgentAction_[];
|
|
3780
|
-
|
|
3786
|
+
MJAIConfigurations_DefaultPromptForContextCompressionIDArray: MJAIConfiguration_[];
|
|
3781
3787
|
MJAIPrompts_ResultSelectorPromptIDArray: MJAIPrompt_[];
|
|
3782
|
-
MJAIPromptModels_PromptIDArray: MJAIPromptModel_[];
|
|
3783
3788
|
MJAIAgentPrompts_PromptIDArray: MJAIAgentPrompt_[];
|
|
3789
|
+
MJAIPromptModels_PromptIDArray: MJAIPromptModel_[];
|
|
3784
3790
|
MJAIAgentSteps_PromptIDArray: MJAIAgentStep_[];
|
|
3785
3791
|
MJAIPromptRuns_PromptIDArray: MJAIPromptRun_[];
|
|
3792
|
+
MJAIPromptRuns_ChildPromptIDArray: MJAIPromptRun_[];
|
|
3793
|
+
MJAIPromptRuns_JudgeIDArray: MJAIPromptRun_[];
|
|
3786
3794
|
MJAIAgents_ContextCompressionPromptIDArray: MJAIAgent_[];
|
|
3787
3795
|
MJActions_DefaultCompactPromptIDArray: MJAction_[];
|
|
3788
3796
|
}
|
|
@@ -3904,15 +3912,17 @@ export declare class MJAIPromptResolver extends ResolverBase {
|
|
|
3904
3912
|
RunMJAIPromptDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3905
3913
|
MJAIPrompt(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIPrompt_ | null>;
|
|
3906
3914
|
MJAIResultCache_AIPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3907
|
-
|
|
3915
|
+
MJAIConfigurations_DefaultPromptForContextSummarizationIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3908
3916
|
MJAIAgentTypes_SystemPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3909
3917
|
MJAIAgentActions_CompactPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3910
|
-
|
|
3918
|
+
MJAIConfigurations_DefaultPromptForContextCompressionIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3911
3919
|
MJAIPrompts_ResultSelectorPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3912
|
-
MJAIPromptModels_PromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3913
3920
|
MJAIAgentPrompts_PromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3921
|
+
MJAIPromptModels_PromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3914
3922
|
MJAIAgentSteps_PromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3915
3923
|
MJAIPromptRuns_PromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3924
|
+
MJAIPromptRuns_ChildPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3925
|
+
MJAIPromptRuns_JudgeIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3916
3926
|
MJAIAgents_ContextCompressionPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3917
3927
|
MJActions_DefaultCompactPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3918
3928
|
CreateMJAIPrompt(input: CreateMJAIPromptInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4083,10 +4093,10 @@ export declare class MJAIVendor_ {
|
|
|
4083
4093
|
_mj__UpdatedAt: Date;
|
|
4084
4094
|
CredentialTypeID?: string;
|
|
4085
4095
|
CredentialType?: string;
|
|
4086
|
-
MJAIPromptModels_VendorIDArray: MJAIPromptModel_[];
|
|
4087
|
-
MJAIResultCache_VendorIDArray: MJAIResultCache_[];
|
|
4088
4096
|
MJAIModelVendors_VendorIDArray: MJAIModelVendor_[];
|
|
4097
|
+
MJAIResultCache_VendorIDArray: MJAIResultCache_[];
|
|
4089
4098
|
MJAIPromptRuns_VendorIDArray: MJAIPromptRun_[];
|
|
4099
|
+
MJAIPromptModels_VendorIDArray: MJAIPromptModel_[];
|
|
4090
4100
|
MJAIVendorTypes_VendorIDArray: MJAIVendorType_[];
|
|
4091
4101
|
MJAIModelCosts_VendorIDArray: MJAIModelCost_[];
|
|
4092
4102
|
MJAICredentialBindings_AIVendorIDArray: MJAICredentialBinding_[];
|
|
@@ -4119,10 +4129,10 @@ export declare class MJAIVendorResolver extends ResolverBase {
|
|
|
4119
4129
|
RunMJAIVendorViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4120
4130
|
RunMJAIVendorDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4121
4131
|
MJAIVendor(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIVendor_ | null>;
|
|
4122
|
-
MJAIPromptModels_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4123
|
-
MJAIResultCache_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4124
4132
|
MJAIModelVendors_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4133
|
+
MJAIResultCache_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4125
4134
|
MJAIPromptRuns_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4135
|
+
MJAIPromptModels_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4126
4136
|
MJAIVendorTypes_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4127
4137
|
MJAIModelCosts_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4128
4138
|
MJAICredentialBindings_AIVendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -4188,8 +4198,8 @@ export declare class MJAPIApplication_ {
|
|
|
4188
4198
|
IsActive: boolean;
|
|
4189
4199
|
_mj__CreatedAt: Date;
|
|
4190
4200
|
_mj__UpdatedAt: Date;
|
|
4191
|
-
MJAPIKeyUsageLogs_ApplicationIDArray: MJAPIKeyUsageLog_[];
|
|
4192
4201
|
MJAPIApplicationScopes_ApplicationIDArray: MJAPIApplicationScope_[];
|
|
4202
|
+
MJAPIKeyUsageLogs_ApplicationIDArray: MJAPIKeyUsageLog_[];
|
|
4193
4203
|
MJAPIKeyApplications_ApplicationIDArray: MJAPIKeyApplication_[];
|
|
4194
4204
|
}
|
|
4195
4205
|
export declare class CreateMJAPIApplicationInput {
|
|
@@ -4219,8 +4229,8 @@ export declare class MJAPIApplicationResolver extends ResolverBase {
|
|
|
4219
4229
|
RunMJAPIApplicationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4220
4230
|
RunMJAPIApplicationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4221
4231
|
MJAPIApplication(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAPIApplication_ | null>;
|
|
4222
|
-
MJAPIKeyUsageLogs_ApplicationIDArray(mjapiapplication_: MJAPIApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4223
4232
|
MJAPIApplicationScopes_ApplicationIDArray(mjapiapplication_: MJAPIApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4233
|
+
MJAPIKeyUsageLogs_ApplicationIDArray(mjapiapplication_: MJAPIApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4224
4234
|
MJAPIKeyApplications_ApplicationIDArray(mjapiapplication_: MJAPIApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4225
4235
|
CreateMJAPIApplication(input: CreateMJAPIApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4226
4236
|
UpdateMJAPIApplication(input: UpdateMJAPIApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4399,8 +4409,8 @@ export declare class MJAPIKey_ {
|
|
|
4399
4409
|
_mj__UpdatedAt: Date;
|
|
4400
4410
|
User: string;
|
|
4401
4411
|
CreatedByUser: string;
|
|
4402
|
-
MJAPIKeyUsageLogs_APIKeyIDArray: MJAPIKeyUsageLog_[];
|
|
4403
4412
|
MJAPIKeyScopes_APIKeyIDArray: MJAPIKeyScope_[];
|
|
4413
|
+
MJAPIKeyUsageLogs_APIKeyIDArray: MJAPIKeyUsageLog_[];
|
|
4404
4414
|
MJAPIKeyApplications_APIKeyIDArray: MJAPIKeyApplication_[];
|
|
4405
4415
|
}
|
|
4406
4416
|
export declare class CreateMJAPIKeyInput {
|
|
@@ -4440,8 +4450,8 @@ export declare class MJAPIKeyResolver extends ResolverBase {
|
|
|
4440
4450
|
RunMJAPIKeyViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4441
4451
|
RunMJAPIKeyDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4442
4452
|
MJAPIKey(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAPIKey_ | null>;
|
|
4443
|
-
MJAPIKeyUsageLogs_APIKeyIDArray(mjapikey_: MJAPIKey_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4444
4453
|
MJAPIKeyScopes_APIKeyIDArray(mjapikey_: MJAPIKey_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4454
|
+
MJAPIKeyUsageLogs_APIKeyIDArray(mjapikey_: MJAPIKey_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4445
4455
|
MJAPIKeyApplications_APIKeyIDArray(mjapikey_: MJAPIKey_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4446
4456
|
CreateMJAPIKey(input: CreateMJAPIKeyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4447
4457
|
UpdateMJAPIKey(input: UpdateMJAPIKeyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4462,8 +4472,8 @@ export declare class MJAPIScope_ {
|
|
|
4462
4472
|
Parent?: string;
|
|
4463
4473
|
RootParentID?: string;
|
|
4464
4474
|
MJAPIKeyScopes_ScopeIDArray: MJAPIKeyScope_[];
|
|
4465
|
-
MJAPIApplicationScopes_ScopeIDArray: MJAPIApplicationScope_[];
|
|
4466
4475
|
MJAPIScopes_ParentIDArray: MJAPIScope_[];
|
|
4476
|
+
MJAPIApplicationScopes_ScopeIDArray: MJAPIApplicationScope_[];
|
|
4467
4477
|
}
|
|
4468
4478
|
export declare class CreateMJAPIScopeInput {
|
|
4469
4479
|
ID?: string;
|
|
@@ -4503,8 +4513,8 @@ export declare class MJAPIScopeResolver extends ResolverBase {
|
|
|
4503
4513
|
RunMJAPIScopeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4504
4514
|
MJAPIScope(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAPIScope_ | null>;
|
|
4505
4515
|
MJAPIKeyScopes_ScopeIDArray(mjapiscope_: MJAPIScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4506
|
-
MJAPIApplicationScopes_ScopeIDArray(mjapiscope_: MJAPIScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4507
4516
|
MJAPIScopes_ParentIDArray(mjapiscope_: MJAPIScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4517
|
+
MJAPIApplicationScopes_ScopeIDArray(mjapiscope_: MJAPIScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4508
4518
|
CreateMJAPIScope(input: CreateMJAPIScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4509
4519
|
UpdateMJAPIScope(input: UpdateMJAPIScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4510
4520
|
DeleteMJAPIScope(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5714,6 +5724,145 @@ export declare class MJCompanyResolver extends ResolverBase {
|
|
|
5714
5724
|
UpdateMJCompany(input: UpdateMJCompanyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5715
5725
|
DeleteMJCompany(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5716
5726
|
}
|
|
5727
|
+
export declare class MJCompanyIntegrationEntityMap_ {
|
|
5728
|
+
ID: string;
|
|
5729
|
+
CompanyIntegrationID: string;
|
|
5730
|
+
ExternalObjectName: string;
|
|
5731
|
+
ExternalObjectLabel?: string;
|
|
5732
|
+
EntityID: string;
|
|
5733
|
+
SyncDirection: string;
|
|
5734
|
+
SyncEnabled: boolean;
|
|
5735
|
+
MatchStrategy?: string;
|
|
5736
|
+
ConflictResolution: string;
|
|
5737
|
+
Priority: number;
|
|
5738
|
+
DeleteBehavior: string;
|
|
5739
|
+
Status: string;
|
|
5740
|
+
Configuration?: string;
|
|
5741
|
+
_mj__CreatedAt: Date;
|
|
5742
|
+
_mj__UpdatedAt: Date;
|
|
5743
|
+
CompanyIntegration: string;
|
|
5744
|
+
Entity: string;
|
|
5745
|
+
MJCompanyIntegrationSyncWatermarks_EntityMapIDArray: MJCompanyIntegrationSyncWatermark_[];
|
|
5746
|
+
MJCompanyIntegrationFieldMaps_EntityMapIDArray: MJCompanyIntegrationFieldMap_[];
|
|
5747
|
+
}
|
|
5748
|
+
export declare class CreateMJCompanyIntegrationEntityMapInput {
|
|
5749
|
+
ID?: string;
|
|
5750
|
+
CompanyIntegrationID?: string;
|
|
5751
|
+
ExternalObjectName?: string;
|
|
5752
|
+
ExternalObjectLabel: string | null;
|
|
5753
|
+
EntityID?: string;
|
|
5754
|
+
SyncDirection?: string;
|
|
5755
|
+
SyncEnabled?: boolean;
|
|
5756
|
+
MatchStrategy: string | null;
|
|
5757
|
+
ConflictResolution?: string;
|
|
5758
|
+
Priority?: number;
|
|
5759
|
+
DeleteBehavior?: string;
|
|
5760
|
+
Status?: string;
|
|
5761
|
+
Configuration: string | null;
|
|
5762
|
+
}
|
|
5763
|
+
export declare class UpdateMJCompanyIntegrationEntityMapInput {
|
|
5764
|
+
ID: string;
|
|
5765
|
+
CompanyIntegrationID?: string;
|
|
5766
|
+
ExternalObjectName?: string;
|
|
5767
|
+
ExternalObjectLabel?: string | null;
|
|
5768
|
+
EntityID?: string;
|
|
5769
|
+
SyncDirection?: string;
|
|
5770
|
+
SyncEnabled?: boolean;
|
|
5771
|
+
MatchStrategy?: string | null;
|
|
5772
|
+
ConflictResolution?: string;
|
|
5773
|
+
Priority?: number;
|
|
5774
|
+
DeleteBehavior?: string;
|
|
5775
|
+
Status?: string;
|
|
5776
|
+
Configuration?: string | null;
|
|
5777
|
+
OldValues___?: KeyValuePairInput[];
|
|
5778
|
+
}
|
|
5779
|
+
export declare class RunMJCompanyIntegrationEntityMapViewResult {
|
|
5780
|
+
Results: MJCompanyIntegrationEntityMap_[];
|
|
5781
|
+
UserViewRunID?: string;
|
|
5782
|
+
RowCount: number;
|
|
5783
|
+
TotalRowCount: number;
|
|
5784
|
+
ExecutionTime: number;
|
|
5785
|
+
ErrorMessage?: string;
|
|
5786
|
+
Success: boolean;
|
|
5787
|
+
}
|
|
5788
|
+
export declare class MJCompanyIntegrationEntityMapResolver extends ResolverBase {
|
|
5789
|
+
RunMJCompanyIntegrationEntityMapViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5790
|
+
RunMJCompanyIntegrationEntityMapViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5791
|
+
RunMJCompanyIntegrationEntityMapDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5792
|
+
MJCompanyIntegrationEntityMap(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCompanyIntegrationEntityMap_ | null>;
|
|
5793
|
+
MJCompanyIntegrationSyncWatermarks_EntityMapIDArray(mjcompanyintegrationentitymap_: MJCompanyIntegrationEntityMap_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5794
|
+
MJCompanyIntegrationFieldMaps_EntityMapIDArray(mjcompanyintegrationentitymap_: MJCompanyIntegrationEntityMap_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5795
|
+
CreateMJCompanyIntegrationEntityMap(input: CreateMJCompanyIntegrationEntityMapInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5796
|
+
UpdateMJCompanyIntegrationEntityMap(input: UpdateMJCompanyIntegrationEntityMapInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5797
|
+
DeleteMJCompanyIntegrationEntityMap(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5798
|
+
}
|
|
5799
|
+
export declare class MJCompanyIntegrationFieldMap_ {
|
|
5800
|
+
ID: string;
|
|
5801
|
+
EntityMapID: string;
|
|
5802
|
+
SourceFieldName: string;
|
|
5803
|
+
SourceFieldLabel?: string;
|
|
5804
|
+
DestinationFieldName: string;
|
|
5805
|
+
DestinationFieldLabel?: string;
|
|
5806
|
+
Direction: string;
|
|
5807
|
+
TransformPipeline?: string;
|
|
5808
|
+
IsKeyField: boolean;
|
|
5809
|
+
IsRequired: boolean;
|
|
5810
|
+
DefaultValue?: string;
|
|
5811
|
+
Priority: number;
|
|
5812
|
+
Status: string;
|
|
5813
|
+
_mj__CreatedAt: Date;
|
|
5814
|
+
_mj__UpdatedAt: Date;
|
|
5815
|
+
EntityMap: string;
|
|
5816
|
+
}
|
|
5817
|
+
export declare class CreateMJCompanyIntegrationFieldMapInput {
|
|
5818
|
+
ID?: string;
|
|
5819
|
+
EntityMapID?: string;
|
|
5820
|
+
SourceFieldName?: string;
|
|
5821
|
+
SourceFieldLabel: string | null;
|
|
5822
|
+
DestinationFieldName?: string;
|
|
5823
|
+
DestinationFieldLabel: string | null;
|
|
5824
|
+
Direction?: string;
|
|
5825
|
+
TransformPipeline: string | null;
|
|
5826
|
+
IsKeyField?: boolean;
|
|
5827
|
+
IsRequired?: boolean;
|
|
5828
|
+
DefaultValue: string | null;
|
|
5829
|
+
Priority?: number;
|
|
5830
|
+
Status?: string;
|
|
5831
|
+
}
|
|
5832
|
+
export declare class UpdateMJCompanyIntegrationFieldMapInput {
|
|
5833
|
+
ID: string;
|
|
5834
|
+
EntityMapID?: string;
|
|
5835
|
+
SourceFieldName?: string;
|
|
5836
|
+
SourceFieldLabel?: string | null;
|
|
5837
|
+
DestinationFieldName?: string;
|
|
5838
|
+
DestinationFieldLabel?: string | null;
|
|
5839
|
+
Direction?: string;
|
|
5840
|
+
TransformPipeline?: string | null;
|
|
5841
|
+
IsKeyField?: boolean;
|
|
5842
|
+
IsRequired?: boolean;
|
|
5843
|
+
DefaultValue?: string | null;
|
|
5844
|
+
Priority?: number;
|
|
5845
|
+
Status?: string;
|
|
5846
|
+
OldValues___?: KeyValuePairInput[];
|
|
5847
|
+
}
|
|
5848
|
+
export declare class RunMJCompanyIntegrationFieldMapViewResult {
|
|
5849
|
+
Results: MJCompanyIntegrationFieldMap_[];
|
|
5850
|
+
UserViewRunID?: string;
|
|
5851
|
+
RowCount: number;
|
|
5852
|
+
TotalRowCount: number;
|
|
5853
|
+
ExecutionTime: number;
|
|
5854
|
+
ErrorMessage?: string;
|
|
5855
|
+
Success: boolean;
|
|
5856
|
+
}
|
|
5857
|
+
export declare class MJCompanyIntegrationFieldMapResolver extends ResolverBase {
|
|
5858
|
+
RunMJCompanyIntegrationFieldMapViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5859
|
+
RunMJCompanyIntegrationFieldMapViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5860
|
+
RunMJCompanyIntegrationFieldMapDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5861
|
+
MJCompanyIntegrationFieldMap(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCompanyIntegrationFieldMap_ | null>;
|
|
5862
|
+
CreateMJCompanyIntegrationFieldMap(input: CreateMJCompanyIntegrationFieldMapInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5863
|
+
UpdateMJCompanyIntegrationFieldMap(input: UpdateMJCompanyIntegrationFieldMapInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5864
|
+
DeleteMJCompanyIntegrationFieldMap(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5865
|
+
}
|
|
5717
5866
|
export declare class MJCompanyIntegrationRecordMap_ {
|
|
5718
5867
|
ID: string;
|
|
5719
5868
|
CompanyIntegrationID: string;
|
|
@@ -5926,6 +6075,55 @@ export declare class MJCompanyIntegrationRunResolver extends ResolverBase {
|
|
|
5926
6075
|
UpdateMJCompanyIntegrationRun(input: UpdateMJCompanyIntegrationRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5927
6076
|
DeleteMJCompanyIntegrationRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5928
6077
|
}
|
|
6078
|
+
export declare class MJCompanyIntegrationSyncWatermark_ {
|
|
6079
|
+
ID: string;
|
|
6080
|
+
EntityMapID: string;
|
|
6081
|
+
Direction: string;
|
|
6082
|
+
WatermarkType: string;
|
|
6083
|
+
WatermarkValue?: string;
|
|
6084
|
+
LastSyncAt?: Date;
|
|
6085
|
+
RecordsSynced: number;
|
|
6086
|
+
_mj__CreatedAt: Date;
|
|
6087
|
+
_mj__UpdatedAt: Date;
|
|
6088
|
+
EntityMap: string;
|
|
6089
|
+
}
|
|
6090
|
+
export declare class CreateMJCompanyIntegrationSyncWatermarkInput {
|
|
6091
|
+
ID?: string;
|
|
6092
|
+
EntityMapID?: string;
|
|
6093
|
+
Direction?: string;
|
|
6094
|
+
WatermarkType?: string;
|
|
6095
|
+
WatermarkValue: string | null;
|
|
6096
|
+
LastSyncAt: Date | null;
|
|
6097
|
+
RecordsSynced?: number;
|
|
6098
|
+
}
|
|
6099
|
+
export declare class UpdateMJCompanyIntegrationSyncWatermarkInput {
|
|
6100
|
+
ID: string;
|
|
6101
|
+
EntityMapID?: string;
|
|
6102
|
+
Direction?: string;
|
|
6103
|
+
WatermarkType?: string;
|
|
6104
|
+
WatermarkValue?: string | null;
|
|
6105
|
+
LastSyncAt?: Date | null;
|
|
6106
|
+
RecordsSynced?: number;
|
|
6107
|
+
OldValues___?: KeyValuePairInput[];
|
|
6108
|
+
}
|
|
6109
|
+
export declare class RunMJCompanyIntegrationSyncWatermarkViewResult {
|
|
6110
|
+
Results: MJCompanyIntegrationSyncWatermark_[];
|
|
6111
|
+
UserViewRunID?: string;
|
|
6112
|
+
RowCount: number;
|
|
6113
|
+
TotalRowCount: number;
|
|
6114
|
+
ExecutionTime: number;
|
|
6115
|
+
ErrorMessage?: string;
|
|
6116
|
+
Success: boolean;
|
|
6117
|
+
}
|
|
6118
|
+
export declare class MJCompanyIntegrationSyncWatermarkResolver extends ResolverBase {
|
|
6119
|
+
RunMJCompanyIntegrationSyncWatermarkViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6120
|
+
RunMJCompanyIntegrationSyncWatermarkViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6121
|
+
RunMJCompanyIntegrationSyncWatermarkDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6122
|
+
MJCompanyIntegrationSyncWatermark(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCompanyIntegrationSyncWatermark_ | null>;
|
|
6123
|
+
CreateMJCompanyIntegrationSyncWatermark(input: CreateMJCompanyIntegrationSyncWatermarkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6124
|
+
UpdateMJCompanyIntegrationSyncWatermark(input: UpdateMJCompanyIntegrationSyncWatermarkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6125
|
+
DeleteMJCompanyIntegrationSyncWatermark(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6126
|
+
}
|
|
5929
6127
|
export declare class MJCompanyIntegration_ {
|
|
5930
6128
|
ID: string;
|
|
5931
6129
|
CompanyID: string;
|
|
@@ -5943,6 +6141,9 @@ export declare class MJCompanyIntegration_ {
|
|
|
5943
6141
|
_mj__CreatedAt: Date;
|
|
5944
6142
|
_mj__UpdatedAt: Date;
|
|
5945
6143
|
Name: string;
|
|
6144
|
+
SourceTypeID?: string;
|
|
6145
|
+
Configuration?: string;
|
|
6146
|
+
CredentialID?: string;
|
|
5946
6147
|
Company: string;
|
|
5947
6148
|
Integration: string;
|
|
5948
6149
|
DriverClassName?: string;
|
|
@@ -5954,6 +6155,7 @@ export declare class MJCompanyIntegration_ {
|
|
|
5954
6155
|
MJEmployeeCompanyIntegrations_CompanyIntegrationIDArray: MJEmployeeCompanyIntegration_[];
|
|
5955
6156
|
MJCompanyIntegrationRuns_CompanyIntegrationIDArray: MJCompanyIntegrationRun_[];
|
|
5956
6157
|
MJCompanyIntegrationRecordMaps_CompanyIntegrationIDArray: MJCompanyIntegrationRecordMap_[];
|
|
6158
|
+
MJCompanyIntegrationEntityMaps_CompanyIntegrationIDArray: MJCompanyIntegrationEntityMap_[];
|
|
5957
6159
|
}
|
|
5958
6160
|
export declare class CreateMJCompanyIntegrationInput {
|
|
5959
6161
|
ID?: string;
|
|
@@ -5970,6 +6172,9 @@ export declare class CreateMJCompanyIntegrationInput {
|
|
|
5970
6172
|
ClientSecret: string | null;
|
|
5971
6173
|
CustomAttribute1: string | null;
|
|
5972
6174
|
Name?: string;
|
|
6175
|
+
SourceTypeID: string | null;
|
|
6176
|
+
Configuration: string | null;
|
|
6177
|
+
CredentialID: string | null;
|
|
5973
6178
|
}
|
|
5974
6179
|
export declare class UpdateMJCompanyIntegrationInput {
|
|
5975
6180
|
ID: string;
|
|
@@ -5986,6 +6191,9 @@ export declare class UpdateMJCompanyIntegrationInput {
|
|
|
5986
6191
|
ClientSecret?: string | null;
|
|
5987
6192
|
CustomAttribute1?: string | null;
|
|
5988
6193
|
Name?: string;
|
|
6194
|
+
SourceTypeID?: string | null;
|
|
6195
|
+
Configuration?: string | null;
|
|
6196
|
+
CredentialID?: string | null;
|
|
5989
6197
|
OldValues___?: KeyValuePairInput[];
|
|
5990
6198
|
}
|
|
5991
6199
|
export declare class RunMJCompanyIntegrationViewResult {
|
|
@@ -6006,6 +6214,7 @@ export declare class MJCompanyIntegrationResolver extends ResolverBase {
|
|
|
6006
6214
|
MJEmployeeCompanyIntegrations_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6007
6215
|
MJCompanyIntegrationRuns_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6008
6216
|
MJCompanyIntegrationRecordMaps_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6217
|
+
MJCompanyIntegrationEntityMaps_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6009
6218
|
CreateMJCompanyIntegration(input: CreateMJCompanyIntegrationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6010
6219
|
UpdateMJCompanyIntegration(input: UpdateMJCompanyIntegrationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6011
6220
|
DeleteMJCompanyIntegration(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6238,9 +6447,9 @@ export declare class MJComponent_ {
|
|
|
6238
6447
|
FunctionalRequirementsVectorEmbeddingModelID?: string;
|
|
6239
6448
|
HasRequiredCustomProps: boolean;
|
|
6240
6449
|
SourceRegistry?: string;
|
|
6241
|
-
MJComponentDependencies_DependencyComponentIDArray: MJComponentDependency_[];
|
|
6242
6450
|
MJComponentLibraryLinks_ComponentIDArray: MJComponentLibraryLink_[];
|
|
6243
6451
|
MJComponentDependencies_ComponentIDArray: MJComponentDependency_[];
|
|
6452
|
+
MJComponentDependencies_DependencyComponentIDArray: MJComponentDependency_[];
|
|
6244
6453
|
}
|
|
6245
6454
|
export declare class CreateMJComponentInput {
|
|
6246
6455
|
ID?: string;
|
|
@@ -6315,9 +6524,9 @@ export declare class MJComponentResolver extends ResolverBase {
|
|
|
6315
6524
|
RunMJComponentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6316
6525
|
RunMJComponentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6317
6526
|
MJComponent(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJComponent_ | null>;
|
|
6318
|
-
MJComponentDependencies_DependencyComponentIDArray(mjcomponent_: MJComponent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6319
6527
|
MJComponentLibraryLinks_ComponentIDArray(mjcomponent_: MJComponent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6320
6528
|
MJComponentDependencies_ComponentIDArray(mjcomponent_: MJComponent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6529
|
+
MJComponentDependencies_DependencyComponentIDArray(mjcomponent_: MJComponent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6321
6530
|
CreateMJComponent(input: CreateMJComponentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6322
6531
|
UpdateMJComponent(input: UpdateMJComponentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6323
6532
|
DeleteMJComponent(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6687,9 +6896,9 @@ export declare class MJContentSource_ {
|
|
|
6687
6896
|
ContentType: string;
|
|
6688
6897
|
ContentSourceType: string;
|
|
6689
6898
|
ContentFileType: string;
|
|
6690
|
-
MJContentProcessRuns_SourceIDArray: MJContentProcessRun_[];
|
|
6691
6899
|
MJContentSourceParams_ContentSourceIDArray: MJContentSourceParam_[];
|
|
6692
6900
|
MJContentItems_ContentSourceIDArray: MJContentItem_[];
|
|
6901
|
+
MJContentProcessRuns_SourceIDArray: MJContentProcessRun_[];
|
|
6693
6902
|
}
|
|
6694
6903
|
export declare class CreateMJContentSourceInput {
|
|
6695
6904
|
ID?: string;
|
|
@@ -6722,9 +6931,9 @@ export declare class MJContentSourceResolver extends ResolverBase {
|
|
|
6722
6931
|
RunMJContentSourceViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6723
6932
|
RunMJContentSourceDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6724
6933
|
MJContentSource(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJContentSource_ | null>;
|
|
6725
|
-
MJContentProcessRuns_SourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6726
6934
|
MJContentSourceParams_ContentSourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6727
6935
|
MJContentItems_ContentSourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6936
|
+
MJContentProcessRuns_SourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6728
6937
|
CreateMJContentSource(input: CreateMJContentSourceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6729
6938
|
UpdateMJContentSource(input: UpdateMJContentSourceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6730
6939
|
DeleteMJContentSource(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7400,6 +7609,7 @@ export declare class MJCredentialType_ {
|
|
|
7400
7609
|
_mj__UpdatedAt: Date;
|
|
7401
7610
|
MJCredentials_CredentialTypeIDArray: MJCredential_[];
|
|
7402
7611
|
MJMCPServers_CredentialTypeIDArray: MJMCPServer_[];
|
|
7612
|
+
MJIntegrations_CredentialTypeIDArray: MJIntegration_[];
|
|
7403
7613
|
MJAIVendors_CredentialTypeIDArray: MJAIVendor_[];
|
|
7404
7614
|
}
|
|
7405
7615
|
export declare class CreateMJCredentialTypeInput {
|
|
@@ -7437,6 +7647,7 @@ export declare class MJCredentialTypeResolver extends ResolverBase {
|
|
|
7437
7647
|
MJCredentialType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCredentialType_ | null>;
|
|
7438
7648
|
MJCredentials_CredentialTypeIDArray(mjcredentialtype_: MJCredentialType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7439
7649
|
MJMCPServers_CredentialTypeIDArray(mjcredentialtype_: MJCredentialType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7650
|
+
MJIntegrations_CredentialTypeIDArray(mjcredentialtype_: MJCredentialType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7440
7651
|
MJAIVendors_CredentialTypeIDArray(mjcredentialtype_: MJCredentialType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7441
7652
|
CreateMJCredentialType(input: CreateMJCredentialTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7442
7653
|
UpdateMJCredentialType(input: UpdateMJCredentialTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7463,6 +7674,7 @@ export declare class MJCredential_ {
|
|
|
7463
7674
|
MJFileStorageAccounts_CredentialIDArray: MJFileStorageAccount_[];
|
|
7464
7675
|
MJMCPServerConnections_CredentialIDArray: MJMCPServerConnection_[];
|
|
7465
7676
|
MJAICredentialBindings_CredentialIDArray: MJAICredentialBinding_[];
|
|
7677
|
+
MJCompanyIntegrations_CredentialIDArray: MJCompanyIntegration_[];
|
|
7466
7678
|
}
|
|
7467
7679
|
export declare class CreateMJCredentialInput {
|
|
7468
7680
|
ID?: string;
|
|
@@ -7511,6 +7723,7 @@ export declare class MJCredentialResolver extends ResolverBase {
|
|
|
7511
7723
|
MJFileStorageAccounts_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7512
7724
|
MJMCPServerConnections_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7513
7725
|
MJAICredentialBindings_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7726
|
+
MJCompanyIntegrations_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7514
7727
|
CreateMJCredential(input: CreateMJCredentialInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7515
7728
|
UpdateMJCredential(input: UpdateMJCredentialInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7516
7729
|
DeleteMJCredential(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7528,8 +7741,8 @@ export declare class MJDashboardCategory_ {
|
|
|
7528
7741
|
RootParentID?: string;
|
|
7529
7742
|
MJDashboards_CategoryIDArray: MJDashboard_[];
|
|
7530
7743
|
MJDashboardCategories_ParentIDArray: MJDashboardCategory_[];
|
|
7531
|
-
MJDashboardCategoryPermissions_DashboardCategoryIDArray: MJDashboardCategoryPermission_[];
|
|
7532
7744
|
MJDashboardCategoryLinks_DashboardCategoryIDArray: MJDashboardCategoryLink_[];
|
|
7745
|
+
MJDashboardCategoryPermissions_DashboardCategoryIDArray: MJDashboardCategoryPermission_[];
|
|
7533
7746
|
}
|
|
7534
7747
|
export declare class CreateMJDashboardCategoryInput {
|
|
7535
7748
|
ID?: string;
|
|
@@ -7562,8 +7775,8 @@ export declare class MJDashboardCategoryResolver extends ResolverBase {
|
|
|
7562
7775
|
MJDashboardCategory(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJDashboardCategory_ | null>;
|
|
7563
7776
|
MJDashboards_CategoryIDArray(mjdashboardcategory_: MJDashboardCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7564
7777
|
MJDashboardCategories_ParentIDArray(mjdashboardcategory_: MJDashboardCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7565
|
-
MJDashboardCategoryPermissions_DashboardCategoryIDArray(mjdashboardcategory_: MJDashboardCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7566
7778
|
MJDashboardCategoryLinks_DashboardCategoryIDArray(mjdashboardcategory_: MJDashboardCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7779
|
+
MJDashboardCategoryPermissions_DashboardCategoryIDArray(mjdashboardcategory_: MJDashboardCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7567
7780
|
CreateMJDashboardCategory(input: CreateMJDashboardCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7568
7781
|
UpdateMJDashboardCategory(input: UpdateMJDashboardCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7569
7782
|
DeleteMJDashboardCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8766,10 +8979,10 @@ export declare class MJEntity_ {
|
|
|
8766
8979
|
ParentEntity?: string;
|
|
8767
8980
|
ParentBaseTable?: string;
|
|
8768
8981
|
ParentBaseView?: string;
|
|
8982
|
+
MJEntityFields_EntityIDArray: MJEntityField_[];
|
|
8769
8983
|
MJEntityPermissions_EntityIDArray: MJEntityPermission_[];
|
|
8770
8984
|
MJEntityRelationships_EntityIDArray: MJEntityRelationship_[];
|
|
8771
|
-
|
|
8772
|
-
MJEntityAIActions_EntityIDArray: MJEntityAIAction_[];
|
|
8985
|
+
MJEntityAIActions_OutputEntityIDArray: MJEntityAIAction_[];
|
|
8773
8986
|
MJUserRecordLogs_EntityIDArray: MJUserRecordLog_[];
|
|
8774
8987
|
MJIntegrationURLFormats_EntityIDArray: MJIntegrationURLFormat_[];
|
|
8775
8988
|
MJEntities_ParentIDArray: MJEntity_[];
|
|
@@ -8803,13 +9016,18 @@ export declare class MJEntity_ {
|
|
|
8803
9016
|
MJEntityCommunicationMessageTypes_EntityIDArray: MJEntityCommunicationMessageType_[];
|
|
8804
9017
|
MJQueryEntities_EntityIDArray: MJQueryEntity_[];
|
|
8805
9018
|
MJAccessControlRules_EntityIDArray: MJAccessControlRule_[];
|
|
8806
|
-
|
|
9019
|
+
MJRecordLinks_TargetEntityIDArray: MJRecordLink_[];
|
|
8807
9020
|
MJAIAgentExamples_PrimaryScopeEntityIDArray: MJAIAgentExample_[];
|
|
8808
9021
|
MJAIAgentNotes_PrimaryScopeEntityIDArray: MJAIAgentNote_[];
|
|
8809
9022
|
MJVersionLabels_EntityIDArray: MJVersionLabel_[];
|
|
8810
9023
|
MJVersionLabelItems_EntityIDArray: MJVersionLabelItem_[];
|
|
9024
|
+
MJEntityAIActions_EntityIDArray: MJEntityAIAction_[];
|
|
9025
|
+
MJEntityRelationships_RelatedEntityIDArray: MJEntityRelationship_[];
|
|
8811
9026
|
MJGeneratedCodes_LinkedEntityIDArray: MJGeneratedCode_[];
|
|
8812
|
-
|
|
9027
|
+
MJRecordLinks_SourceEntityIDArray: MJRecordLink_[];
|
|
9028
|
+
MJCompanyIntegrationEntityMaps_EntityIDArray: MJCompanyIntegrationEntityMap_[];
|
|
9029
|
+
MJEntityFields_RelatedEntityIDArray: MJEntityField_[];
|
|
9030
|
+
MJResourceTypes_CategoryEntityIDArray: MJResourceType_[];
|
|
8813
9031
|
MJTestRuns_TargetLogEntityIDArray: MJTestRun_[];
|
|
8814
9032
|
MJAIAgentRuns_PrimaryScopeEntityIDArray: MJAIAgentRun_[];
|
|
8815
9033
|
}
|
|
@@ -8941,10 +9159,10 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
8941
9159
|
RunMJEntityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8942
9160
|
MJEntity(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJEntity_ | null>;
|
|
8943
9161
|
AllMJEntities({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9162
|
+
MJEntityFields_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8944
9163
|
MJEntityPermissions_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8945
9164
|
MJEntityRelationships_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8946
|
-
|
|
8947
|
-
MJEntityAIActions_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9165
|
+
MJEntityAIActions_OutputEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8948
9166
|
MJUserRecordLogs_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8949
9167
|
MJIntegrationURLFormats_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8950
9168
|
MJEntities_ParentIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -8978,13 +9196,18 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
8978
9196
|
MJEntityCommunicationMessageTypes_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8979
9197
|
MJQueryEntities_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8980
9198
|
MJAccessControlRules_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8981
|
-
|
|
9199
|
+
MJRecordLinks_TargetEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8982
9200
|
MJAIAgentExamples_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8983
9201
|
MJAIAgentNotes_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8984
9202
|
MJVersionLabels_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8985
9203
|
MJVersionLabelItems_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9204
|
+
MJEntityAIActions_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9205
|
+
MJEntityRelationships_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8986
9206
|
MJGeneratedCodes_LinkedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8987
|
-
|
|
9207
|
+
MJRecordLinks_SourceEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9208
|
+
MJCompanyIntegrationEntityMaps_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9209
|
+
MJEntityFields_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9210
|
+
MJResourceTypes_CategoryEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8988
9211
|
MJTestRuns_TargetLogEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8989
9212
|
MJAIAgentRuns_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8990
9213
|
CreateMJEntity(input: CreateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10111,9 +10334,9 @@ export declare class MJEnvironment_ {
|
|
|
10111
10334
|
Settings?: string;
|
|
10112
10335
|
_mj__CreatedAt: Date;
|
|
10113
10336
|
_mj__UpdatedAt: Date;
|
|
10337
|
+
MJArtifacts_EnvironmentIDArray: MJArtifact_[];
|
|
10114
10338
|
MJProjects_EnvironmentIDArray: MJProject_[];
|
|
10115
10339
|
MJCollections_EnvironmentIDArray: MJCollection_[];
|
|
10116
|
-
MJArtifacts_EnvironmentIDArray: MJArtifact_[];
|
|
10117
10340
|
MJTasks_EnvironmentIDArray: MJTask_[];
|
|
10118
10341
|
MJDashboards_EnvironmentIDArray: MJDashboard_[];
|
|
10119
10342
|
MJReports_EnvironmentIDArray: MJReport_[];
|
|
@@ -10148,9 +10371,9 @@ export declare class MJEnvironmentResolver extends ResolverBase {
|
|
|
10148
10371
|
RunMJEnvironmentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10149
10372
|
RunMJEnvironmentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10150
10373
|
MJEnvironment(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJEnvironment_ | null>;
|
|
10374
|
+
MJArtifacts_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10151
10375
|
MJProjects_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10152
10376
|
MJCollections_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10153
|
-
MJArtifacts_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10154
10377
|
MJTasks_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10155
10378
|
MJDashboards_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10156
10379
|
MJReports_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -10537,8 +10760,8 @@ export declare class MJGeneratedCodeCategory_ {
|
|
|
10537
10760
|
_mj__UpdatedAt: Date;
|
|
10538
10761
|
Parent?: string;
|
|
10539
10762
|
RootParentID?: string;
|
|
10540
|
-
MJGeneratedCodeCategories_ParentIDArray: MJGeneratedCodeCategory_[];
|
|
10541
10763
|
MJGeneratedCodes_CategoryIDArray: MJGeneratedCode_[];
|
|
10764
|
+
MJGeneratedCodeCategories_ParentIDArray: MJGeneratedCodeCategory_[];
|
|
10542
10765
|
}
|
|
10543
10766
|
export declare class CreateMJGeneratedCodeCategoryInput {
|
|
10544
10767
|
ID?: string;
|
|
@@ -10567,8 +10790,8 @@ export declare class MJGeneratedCodeCategoryResolver extends ResolverBase {
|
|
|
10567
10790
|
RunMJGeneratedCodeCategoryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10568
10791
|
RunMJGeneratedCodeCategoryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10569
10792
|
MJGeneratedCodeCategory(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJGeneratedCodeCategory_ | null>;
|
|
10570
|
-
MJGeneratedCodeCategories_ParentIDArray(mjgeneratedcodecategory_: MJGeneratedCodeCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10571
10793
|
MJGeneratedCodes_CategoryIDArray(mjgeneratedcodecategory_: MJGeneratedCodeCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10794
|
+
MJGeneratedCodeCategories_ParentIDArray(mjgeneratedcodecategory_: MJGeneratedCodeCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10572
10795
|
CreateMJGeneratedCodeCategory(input: CreateMJGeneratedCodeCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10573
10796
|
UpdateMJGeneratedCodeCategory(input: UpdateMJGeneratedCodeCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10574
10797
|
DeleteMJGeneratedCodeCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10639,6 +10862,53 @@ export declare class MJGeneratedCodeResolver extends ResolverBase {
|
|
|
10639
10862
|
UpdateMJGeneratedCode(input: UpdateMJGeneratedCodeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10640
10863
|
DeleteMJGeneratedCode(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10641
10864
|
}
|
|
10865
|
+
export declare class MJIntegrationSourceType_ {
|
|
10866
|
+
ID: string;
|
|
10867
|
+
Name: string;
|
|
10868
|
+
Description?: string;
|
|
10869
|
+
DriverClass: string;
|
|
10870
|
+
IconClass?: string;
|
|
10871
|
+
Status: string;
|
|
10872
|
+
_mj__CreatedAt: Date;
|
|
10873
|
+
_mj__UpdatedAt: Date;
|
|
10874
|
+
MJCompanyIntegrations_SourceTypeIDArray: MJCompanyIntegration_[];
|
|
10875
|
+
}
|
|
10876
|
+
export declare class CreateMJIntegrationSourceTypeInput {
|
|
10877
|
+
ID?: string;
|
|
10878
|
+
Name?: string;
|
|
10879
|
+
Description: string | null;
|
|
10880
|
+
DriverClass?: string;
|
|
10881
|
+
IconClass: string | null;
|
|
10882
|
+
Status?: string;
|
|
10883
|
+
}
|
|
10884
|
+
export declare class UpdateMJIntegrationSourceTypeInput {
|
|
10885
|
+
ID: string;
|
|
10886
|
+
Name?: string;
|
|
10887
|
+
Description?: string | null;
|
|
10888
|
+
DriverClass?: string;
|
|
10889
|
+
IconClass?: string | null;
|
|
10890
|
+
Status?: string;
|
|
10891
|
+
OldValues___?: KeyValuePairInput[];
|
|
10892
|
+
}
|
|
10893
|
+
export declare class RunMJIntegrationSourceTypeViewResult {
|
|
10894
|
+
Results: MJIntegrationSourceType_[];
|
|
10895
|
+
UserViewRunID?: string;
|
|
10896
|
+
RowCount: number;
|
|
10897
|
+
TotalRowCount: number;
|
|
10898
|
+
ExecutionTime: number;
|
|
10899
|
+
ErrorMessage?: string;
|
|
10900
|
+
Success: boolean;
|
|
10901
|
+
}
|
|
10902
|
+
export declare class MJIntegrationSourceTypeResolver extends ResolverBase {
|
|
10903
|
+
RunMJIntegrationSourceTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10904
|
+
RunMJIntegrationSourceTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10905
|
+
RunMJIntegrationSourceTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10906
|
+
MJIntegrationSourceType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJIntegrationSourceType_ | null>;
|
|
10907
|
+
MJCompanyIntegrations_SourceTypeIDArray(mjintegrationsourcetype_: MJIntegrationSourceType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10908
|
+
CreateMJIntegrationSourceType(input: CreateMJIntegrationSourceTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10909
|
+
UpdateMJIntegrationSourceType(input: UpdateMJIntegrationSourceTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10910
|
+
DeleteMJIntegrationSourceType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10911
|
+
}
|
|
10642
10912
|
export declare class MJIntegrationURLFormat_ {
|
|
10643
10913
|
ID: string;
|
|
10644
10914
|
IntegrationID: string;
|
|
@@ -10696,6 +10966,8 @@ export declare class MJIntegration_ {
|
|
|
10696
10966
|
_mj__CreatedAt: Date;
|
|
10697
10967
|
_mj__UpdatedAt: Date;
|
|
10698
10968
|
ID: string;
|
|
10969
|
+
CredentialTypeID?: string;
|
|
10970
|
+
CredentialType?: string;
|
|
10699
10971
|
MJIntegrationURLFormats_IntegrationIDArray: MJIntegrationURLFormat_[];
|
|
10700
10972
|
MJCompanyIntegrations_IntegrationIDArray: MJCompanyIntegration_[];
|
|
10701
10973
|
MJRecordChanges_IntegrationIDArray: MJRecordChange_[];
|
|
@@ -10709,6 +10981,7 @@ export declare class CreateMJIntegrationInput {
|
|
|
10709
10981
|
BatchMaxRequestCount?: number;
|
|
10710
10982
|
BatchRequestWaitTime?: number;
|
|
10711
10983
|
ID?: string;
|
|
10984
|
+
CredentialTypeID: string | null;
|
|
10712
10985
|
}
|
|
10713
10986
|
export declare class UpdateMJIntegrationInput {
|
|
10714
10987
|
Name?: string;
|
|
@@ -10719,6 +10992,7 @@ export declare class UpdateMJIntegrationInput {
|
|
|
10719
10992
|
BatchMaxRequestCount?: number;
|
|
10720
10993
|
BatchRequestWaitTime?: number;
|
|
10721
10994
|
ID: string;
|
|
10995
|
+
CredentialTypeID?: string | null;
|
|
10722
10996
|
OldValues___?: KeyValuePairInput[];
|
|
10723
10997
|
}
|
|
10724
10998
|
export declare class RunMJIntegrationViewResult {
|
|
@@ -11210,8 +11484,8 @@ export declare class MJMCPServerConnection_ {
|
|
|
11210
11484
|
Company?: string;
|
|
11211
11485
|
MJMCPServerConnectionTools_MCPServerConnectionIDArray: MJMCPServerConnectionTool_[];
|
|
11212
11486
|
MJMCPToolExecutionLogs_MCPServerConnectionIDArray: MJMCPToolExecutionLog_[];
|
|
11213
|
-
MJOAuthClientRegistrations_MCPServerConnectionIDArray: MJOAuthClientRegistration_[];
|
|
11214
11487
|
MJOAuthTokens_MCPServerConnectionIDArray: MJOAuthToken_[];
|
|
11488
|
+
MJOAuthClientRegistrations_MCPServerConnectionIDArray: MJOAuthClientRegistration_[];
|
|
11215
11489
|
MJOAuthAuthorizationStates_MCPServerConnectionIDArray: MJOAuthAuthorizationState_[];
|
|
11216
11490
|
MJMCPServerConnectionPermissions_MCPServerConnectionIDArray: MJMCPServerConnectionPermission_[];
|
|
11217
11491
|
}
|
|
@@ -11270,8 +11544,8 @@ export declare class MJMCPServerConnectionResolver extends ResolverBase {
|
|
|
11270
11544
|
MJMCPServerConnection(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMCPServerConnection_ | null>;
|
|
11271
11545
|
MJMCPServerConnectionTools_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11272
11546
|
MJMCPToolExecutionLogs_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11273
|
-
MJOAuthClientRegistrations_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11274
11547
|
MJOAuthTokens_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11548
|
+
MJOAuthClientRegistrations_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11275
11549
|
MJOAuthAuthorizationStates_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11276
11550
|
MJMCPServerConnectionPermissions_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11277
11551
|
CreateMJMCPServerConnection(input: CreateMJMCPServerConnectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11379,8 +11653,8 @@ export declare class MJMCPServer_ {
|
|
|
11379
11653
|
OAuthRequirePKCE: boolean;
|
|
11380
11654
|
CredentialType?: string;
|
|
11381
11655
|
MJOAuthClientRegistrations_MCPServerIDArray: MJOAuthClientRegistration_[];
|
|
11382
|
-
MJMCPServerTools_MCPServerIDArray: MJMCPServerTool_[];
|
|
11383
11656
|
MJMCPServerConnections_MCPServerIDArray: MJMCPServerConnection_[];
|
|
11657
|
+
MJMCPServerTools_MCPServerIDArray: MJMCPServerTool_[];
|
|
11384
11658
|
}
|
|
11385
11659
|
export declare class CreateMJMCPServerInput {
|
|
11386
11660
|
ID?: string;
|
|
@@ -11448,8 +11722,8 @@ export declare class MJMCPServerResolver extends ResolverBase {
|
|
|
11448
11722
|
RunMJMCPServerDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11449
11723
|
MJMCPServer(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMCPServer_ | null>;
|
|
11450
11724
|
MJOAuthClientRegistrations_MCPServerIDArray(mjmcpserver_: MJMCPServer_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11451
|
-
MJMCPServerTools_MCPServerIDArray(mjmcpserver_: MJMCPServer_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11452
11725
|
MJMCPServerConnections_MCPServerIDArray(mjmcpserver_: MJMCPServer_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11726
|
+
MJMCPServerTools_MCPServerIDArray(mjmcpserver_: MJMCPServer_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11453
11727
|
CreateMJMCPServer(input: CreateMJMCPServerInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11454
11728
|
UpdateMJMCPServer(input: UpdateMJMCPServerInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11455
11729
|
DeleteMJMCPServer(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11948,8 +12222,8 @@ export declare class MJOpenApp_ {
|
|
|
11948
12222
|
_mj__CreatedAt: Date;
|
|
11949
12223
|
_mj__UpdatedAt: Date;
|
|
11950
12224
|
InstalledByUser: string;
|
|
11951
|
-
MJOpenAppDependencies_OpenAppIDArray: MJOpenAppDependency_[];
|
|
11952
12225
|
MJOpenAppDependencies_DependsOnAppIDArray: MJOpenAppDependency_[];
|
|
12226
|
+
MJOpenAppDependencies_OpenAppIDArray: MJOpenAppDependency_[];
|
|
11953
12227
|
MJOpenAppInstallHistories_OpenAppIDArray: MJOpenAppInstallHistory_[];
|
|
11954
12228
|
}
|
|
11955
12229
|
export declare class CreateMJOpenAppInput {
|
|
@@ -12007,8 +12281,8 @@ export declare class MJOpenAppResolver extends ResolverBase {
|
|
|
12007
12281
|
RunMJOpenAppViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
12008
12282
|
RunMJOpenAppDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
12009
12283
|
MJOpenApp(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJOpenApp_ | null>;
|
|
12010
|
-
MJOpenAppDependencies_OpenAppIDArray(mjopenapp_: MJOpenApp_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12011
12284
|
MJOpenAppDependencies_DependsOnAppIDArray(mjopenapp_: MJOpenApp_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12285
|
+
MJOpenAppDependencies_OpenAppIDArray(mjopenapp_: MJOpenApp_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12012
12286
|
MJOpenAppInstallHistories_OpenAppIDArray(mjopenapp_: MJOpenApp_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12013
12287
|
CreateMJOpenApp(input: CreateMJOpenAppInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
12014
12288
|
UpdateMJOpenApp(input: UpdateMJOpenAppInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -13830,6 +14104,9 @@ export declare class MJRowLevelSecurityFilter_ {
|
|
|
13830
14104
|
FilterText?: string;
|
|
13831
14105
|
_mj__CreatedAt: Date;
|
|
13832
14106
|
_mj__UpdatedAt: Date;
|
|
14107
|
+
MJEntityPermissions_DeleteRLSFilterIDArray: MJEntityPermission_[];
|
|
14108
|
+
MJEntityPermissions_ReadRLSFilterIDArray: MJEntityPermission_[];
|
|
14109
|
+
MJEntityPermissions_CreateRLSFilterIDArray: MJEntityPermission_[];
|
|
13833
14110
|
MJEntityPermissions_UpdateRLSFilterIDArray: MJEntityPermission_[];
|
|
13834
14111
|
}
|
|
13835
14112
|
export declare class CreateMJRowLevelSecurityFilterInput {
|
|
@@ -13860,6 +14137,9 @@ export declare class MJRowLevelSecurityFilterResolver extends ResolverBase {
|
|
|
13860
14137
|
RunMJRowLevelSecurityFilterDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13861
14138
|
MJRowLevelSecurityFilter(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRowLevelSecurityFilter_ | null>;
|
|
13862
14139
|
AllMJRowLevelSecurityFilters({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14140
|
+
MJEntityPermissions_DeleteRLSFilterIDArray(mjrowlevelsecurityfilter_: MJRowLevelSecurityFilter_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14141
|
+
MJEntityPermissions_ReadRLSFilterIDArray(mjrowlevelsecurityfilter_: MJRowLevelSecurityFilter_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14142
|
+
MJEntityPermissions_CreateRLSFilterIDArray(mjrowlevelsecurityfilter_: MJRowLevelSecurityFilter_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13863
14143
|
MJEntityPermissions_UpdateRLSFilterIDArray(mjrowlevelsecurityfilter_: MJRowLevelSecurityFilter_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13864
14144
|
CreateMJRowLevelSecurityFilter(input: CreateMJRowLevelSecurityFilterInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13865
14145
|
UpdateMJRowLevelSecurityFilter(input: UpdateMJRowLevelSecurityFilterInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -14552,8 +14832,8 @@ export declare class MJTask_ {
|
|
|
14552
14832
|
User?: string;
|
|
14553
14833
|
Agent?: string;
|
|
14554
14834
|
RootParentID?: string;
|
|
14555
|
-
MJTaskDependencies_DependsOnTaskIDArray: MJTaskDependency_[];
|
|
14556
14835
|
MJTaskDependencies_TaskIDArray: MJTaskDependency_[];
|
|
14836
|
+
MJTaskDependencies_DependsOnTaskIDArray: MJTaskDependency_[];
|
|
14557
14837
|
MJTasks_ParentIDArray: MJTask_[];
|
|
14558
14838
|
}
|
|
14559
14839
|
export declare class CreateMJTaskInput {
|
|
@@ -14605,8 +14885,8 @@ export declare class MJTaskResolver extends ResolverBase {
|
|
|
14605
14885
|
RunMJTaskViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14606
14886
|
RunMJTaskDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14607
14887
|
MJTask(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTask_ | null>;
|
|
14608
|
-
MJTaskDependencies_DependsOnTaskIDArray(mjtask_: MJTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14609
14888
|
MJTaskDependencies_TaskIDArray(mjtask_: MJTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14889
|
+
MJTaskDependencies_DependsOnTaskIDArray(mjtask_: MJTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14610
14890
|
MJTasks_ParentIDArray(mjtask_: MJTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14611
14891
|
CreateMJTask(input: CreateMJTaskInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14612
14892
|
UpdateMJTask(input: UpdateMJTaskInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -14839,9 +15119,9 @@ export declare class MJTemplate_ {
|
|
|
14839
15119
|
User: string;
|
|
14840
15120
|
MJTemplateParams_TemplateIDArray: MJTemplateParam_[];
|
|
14841
15121
|
MJTemplateContents_TemplateIDArray: MJTemplateContent_[];
|
|
14842
|
-
MJUserNotificationTypes_SMSTemplateIDArray: MJUserNotificationType_[];
|
|
14843
|
-
MJAIPrompts_TemplateIDArray: MJAIPrompt_[];
|
|
14844
15122
|
MJUserNotificationTypes_EmailTemplateIDArray: MJUserNotificationType_[];
|
|
15123
|
+
MJAIPrompts_TemplateIDArray: MJAIPrompt_[];
|
|
15124
|
+
MJUserNotificationTypes_SMSTemplateIDArray: MJUserNotificationType_[];
|
|
14845
15125
|
MJEntityDocuments_TemplateIDArray: MJEntityDocument_[];
|
|
14846
15126
|
}
|
|
14847
15127
|
export declare class CreateMJTemplateInput {
|
|
@@ -14883,9 +15163,9 @@ export declare class MJTemplateResolver extends ResolverBase {
|
|
|
14883
15163
|
MJTemplate(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTemplate_ | null>;
|
|
14884
15164
|
MJTemplateParams_TemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14885
15165
|
MJTemplateContents_TemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14886
|
-
MJUserNotificationTypes_SMSTemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14887
|
-
MJAIPrompts_TemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14888
15166
|
MJUserNotificationTypes_EmailTemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15167
|
+
MJAIPrompts_TemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15168
|
+
MJUserNotificationTypes_SMSTemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14889
15169
|
MJEntityDocuments_TemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14890
15170
|
CreateMJTemplate(input: CreateMJTemplateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14891
15171
|
UpdateMJTemplate(input: UpdateMJTemplateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -15412,8 +15692,8 @@ export declare class MJTestSuite_ {
|
|
|
15412
15692
|
Parent?: string;
|
|
15413
15693
|
RootParentID?: string;
|
|
15414
15694
|
MJTestSuites_ParentIDArray: MJTestSuite_[];
|
|
15415
|
-
MJTestSuiteTests_SuiteIDArray: MJTestSuiteTest_[];
|
|
15416
15695
|
MJTestSuiteRuns_SuiteIDArray: MJTestSuiteRun_[];
|
|
15696
|
+
MJTestSuiteTests_SuiteIDArray: MJTestSuiteTest_[];
|
|
15417
15697
|
}
|
|
15418
15698
|
export declare class CreateMJTestSuiteInput {
|
|
15419
15699
|
ID?: string;
|
|
@@ -15453,8 +15733,8 @@ export declare class MJTestSuiteResolver extends ResolverBase {
|
|
|
15453
15733
|
RunMJTestSuiteDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15454
15734
|
MJTestSuite(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTestSuite_ | null>;
|
|
15455
15735
|
MJTestSuites_ParentIDArray(mjtestsuite_: MJTestSuite_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15456
|
-
MJTestSuiteTests_SuiteIDArray(mjtestsuite_: MJTestSuite_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15457
15736
|
MJTestSuiteRuns_SuiteIDArray(mjtestsuite_: MJTestSuite_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15737
|
+
MJTestSuiteTests_SuiteIDArray(mjtestsuite_: MJTestSuite_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15458
15738
|
CreateMJTestSuite(input: CreateMJTestSuiteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15459
15739
|
UpdateMJTestSuite(input: UpdateMJTestSuiteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15460
15740
|
DeleteMJTestSuite(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -15468,8 +15748,8 @@ export declare class MJTestType_ {
|
|
|
15468
15748
|
_mj__CreatedAt: Date;
|
|
15469
15749
|
_mj__UpdatedAt: Date;
|
|
15470
15750
|
VariablesSchema?: string;
|
|
15471
|
-
MJTestRubrics_TypeIDArray: MJTestRubric_[];
|
|
15472
15751
|
MJTests_TypeIDArray: MJTest_[];
|
|
15752
|
+
MJTestRubrics_TypeIDArray: MJTestRubric_[];
|
|
15473
15753
|
}
|
|
15474
15754
|
export declare class CreateMJTestTypeInput {
|
|
15475
15755
|
ID?: string;
|
|
@@ -15502,8 +15782,8 @@ export declare class MJTestTypeResolver extends ResolverBase {
|
|
|
15502
15782
|
RunMJTestTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15503
15783
|
RunMJTestTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15504
15784
|
MJTestType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTestType_ | null>;
|
|
15505
|
-
MJTestRubrics_TypeIDArray(mjtesttype_: MJTestType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15506
15785
|
MJTests_TypeIDArray(mjtesttype_: MJTestType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15786
|
+
MJTestRubrics_TypeIDArray(mjtesttype_: MJTestType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15507
15787
|
CreateMJTestType(input: CreateMJTestTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15508
15788
|
UpdateMJTestType(input: UpdateMJTestTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15509
15789
|
DeleteMJTestType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -16306,7 +16586,7 @@ export declare class MJUser_ {
|
|
|
16306
16586
|
MJCompanyIntegrationRuns_RunByUserIDArray: MJCompanyIntegrationRun_[];
|
|
16307
16587
|
MJUserNotifications_UserIDArray: MJUserNotification_[];
|
|
16308
16588
|
MJConversations_UserIDArray: MJConversation_[];
|
|
16309
|
-
|
|
16589
|
+
MJRecordMergeLogs_ApprovedByUserIDArray: MJRecordMergeLog_[];
|
|
16310
16590
|
MJDataContexts_UserIDArray: MJDataContext_[];
|
|
16311
16591
|
MJReportCategories_UserIDArray: MJReportCategory_[];
|
|
16312
16592
|
MJUserViewCategories_UserIDArray: MJUserViewCategory_[];
|
|
@@ -16323,7 +16603,7 @@ export declare class MJUser_ {
|
|
|
16323
16603
|
MJListCategories_UserIDArray: MJListCategory_[];
|
|
16324
16604
|
MJScheduledActions_CreatedByUserIDArray: MJScheduledAction_[];
|
|
16325
16605
|
MJResourceLinks_UserIDArray: MJResourceLink_[];
|
|
16326
|
-
|
|
16606
|
+
MJAIAgentRequests_RequestForUserIDArray: MJAIAgentRequest_[];
|
|
16327
16607
|
MJAIAgentNotes_UserIDArray: MJAIAgentNote_[];
|
|
16328
16608
|
MJReportUserStates_UserIDArray: MJReportUserState_[];
|
|
16329
16609
|
MJDashboardUserPreferences_UserIDArray: MJDashboardUserPreference_[];
|
|
@@ -16331,43 +16611,45 @@ export declare class MJUser_ {
|
|
|
16331
16611
|
MJArtifactVersions_UserIDArray: MJArtifactVersion_[];
|
|
16332
16612
|
MJPublicLinks_UserIDArray: MJPublicLink_[];
|
|
16333
16613
|
MJScheduledJobRuns_ExecutedByUserIDArray: MJScheduledJobRun_[];
|
|
16334
|
-
|
|
16335
|
-
|
|
16614
|
+
MJScheduledJobs_OwnerUserIDArray: MJScheduledJob_[];
|
|
16615
|
+
MJArtifactPermissions_SharedByUserIDArray: MJArtifactPermission_[];
|
|
16336
16616
|
MJArtifactUses_UserIDArray: MJArtifactUse_[];
|
|
16337
16617
|
MJConversationDetailRatings_UserIDArray: MJConversationDetailRating_[];
|
|
16338
16618
|
MJTestRunFeedbacks_ReviewerUserIDArray: MJTestRunFeedback_[];
|
|
16339
16619
|
MJTestSuiteRuns_RunByUserIDArray: MJTestSuiteRun_[];
|
|
16340
16620
|
MJUserSettings_UserIDArray: MJUserSetting_[];
|
|
16341
|
-
MJListShares_UserIDArray: MJListShare_[];
|
|
16342
16621
|
MJListInvitations_CreatedByUserIDArray: MJListInvitation_[];
|
|
16622
|
+
MJListShares_UserIDArray: MJListShare_[];
|
|
16623
|
+
MJDashboardCategoryPermissions_SharedByUserIDArray: MJDashboardCategoryPermission_[];
|
|
16343
16624
|
MJDashboardCategoryLinks_UserIDArray: MJDashboardCategoryLink_[];
|
|
16344
|
-
|
|
16345
|
-
|
|
16346
|
-
MJAPIKeys_UserIDArray: MJAPIKey_[];
|
|
16625
|
+
MJDashboardPermissions_UserIDArray: MJDashboardPermission_[];
|
|
16626
|
+
MJAPIKeys_CreatedByUserIDArray: MJAPIKey_[];
|
|
16347
16627
|
MJUserNotificationPreferences_UserIDArray: MJUserNotificationPreference_[];
|
|
16348
16628
|
MJMCPToolExecutionLogs_UserIDArray: MJMCPToolExecutionLog_[];
|
|
16349
16629
|
MJVersionLabelRestores_UserIDArray: MJVersionLabelRestore_[];
|
|
16350
16630
|
MJOAuthAuthorizationStates_UserIDArray: MJOAuthAuthorizationState_[];
|
|
16351
|
-
MJOpenApps_InstalledByUserIDArray: MJOpenApp_[];
|
|
16352
16631
|
MJOpenAppInstallHistories_ExecutedByUserIDArray: MJOpenAppInstallHistory_[];
|
|
16632
|
+
MJOpenApps_InstalledByUserIDArray: MJOpenApp_[];
|
|
16353
16633
|
MJResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
16354
|
-
|
|
16634
|
+
MJAIAgentRequests_ResponseByUserIDArray: MJAIAgentRequest_[];
|
|
16355
16635
|
MJConversationDetails_UserIDArray: MJConversationDetail_[];
|
|
16356
16636
|
MJAccessControlRules_GrantedByUserIDArray: MJAccessControlRule_[];
|
|
16357
16637
|
MJArtifacts_UserIDArray: MJArtifact_[];
|
|
16358
|
-
|
|
16359
|
-
|
|
16360
|
-
|
|
16638
|
+
MJScheduledJobs_NotifyUserIDArray: MJScheduledJob_[];
|
|
16639
|
+
MJCollectionPermissions_UserIDArray: MJCollectionPermission_[];
|
|
16640
|
+
MJArtifactPermissions_UserIDArray: MJArtifactPermission_[];
|
|
16361
16641
|
MJTestRuns_RunByUserIDArray: MJTestRun_[];
|
|
16362
|
-
|
|
16363
|
-
|
|
16364
|
-
|
|
16642
|
+
MJDashboardPermissions_SharedByUserIDArray: MJDashboardPermission_[];
|
|
16643
|
+
MJDashboardCategoryPermissions_UserIDArray: MJDashboardCategoryPermission_[];
|
|
16644
|
+
MJAPIKeys_UserIDArray: MJAPIKey_[];
|
|
16365
16645
|
MJMCPServerConnectionPermissions_UserIDArray: MJMCPServerConnectionPermission_[];
|
|
16366
16646
|
MJVersionLabels_CreatedByUserIDArray: MJVersionLabel_[];
|
|
16647
|
+
MJDuplicateRuns_ApprovedByUserIDArray: MJDuplicateRun_[];
|
|
16367
16648
|
MJAIAgentRuns_UserIDArray: MJAIAgentRun_[];
|
|
16368
16649
|
MJAIAgentPermissions_UserIDArray: MJAIAgentPermission_[];
|
|
16369
16650
|
MJCollections_OwnerIDArray: MJCollection_[];
|
|
16370
|
-
|
|
16651
|
+
MJCollectionPermissions_SharedByUserIDArray: MJCollectionPermission_[];
|
|
16652
|
+
MJRecordMergeLogs_InitiatedByUserIDArray: MJRecordMergeLog_[];
|
|
16371
16653
|
MJTasks_UserIDArray: MJTask_[];
|
|
16372
16654
|
MJAIAgentExamples_UserIDArray: MJAIAgentExample_[];
|
|
16373
16655
|
MJAIAgents_OwnerUserIDArray: MJAIAgent_[];
|
|
@@ -16436,7 +16718,7 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
16436
16718
|
MJCompanyIntegrationRuns_RunByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16437
16719
|
MJUserNotifications_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16438
16720
|
MJConversations_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16439
|
-
|
|
16721
|
+
MJRecordMergeLogs_ApprovedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16440
16722
|
MJDataContexts_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16441
16723
|
MJReportCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16442
16724
|
MJUserViewCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -16453,7 +16735,7 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
16453
16735
|
MJListCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16454
16736
|
MJScheduledActions_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16455
16737
|
MJResourceLinks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16456
|
-
|
|
16738
|
+
MJAIAgentRequests_RequestForUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16457
16739
|
MJAIAgentNotes_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16458
16740
|
MJReportUserStates_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16459
16741
|
MJDashboardUserPreferences_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -16461,43 +16743,45 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
16461
16743
|
MJArtifactVersions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16462
16744
|
MJPublicLinks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16463
16745
|
MJScheduledJobRuns_ExecutedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16464
|
-
|
|
16465
|
-
|
|
16746
|
+
MJScheduledJobs_OwnerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16747
|
+
MJArtifactPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16466
16748
|
MJArtifactUses_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16467
16749
|
MJConversationDetailRatings_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16468
16750
|
MJTestRunFeedbacks_ReviewerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16469
16751
|
MJTestSuiteRuns_RunByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16470
16752
|
MJUserSettings_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16471
|
-
MJListShares_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16472
16753
|
MJListInvitations_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16754
|
+
MJListShares_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16755
|
+
MJDashboardCategoryPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16473
16756
|
MJDashboardCategoryLinks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16474
|
-
|
|
16475
|
-
|
|
16476
|
-
MJAPIKeys_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16757
|
+
MJDashboardPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16758
|
+
MJAPIKeys_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16477
16759
|
MJUserNotificationPreferences_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16478
16760
|
MJMCPToolExecutionLogs_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16479
16761
|
MJVersionLabelRestores_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16480
16762
|
MJOAuthAuthorizationStates_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16481
|
-
MJOpenApps_InstalledByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16482
16763
|
MJOpenAppInstallHistories_ExecutedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16764
|
+
MJOpenApps_InstalledByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16483
16765
|
MJResourcePermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16484
|
-
|
|
16766
|
+
MJAIAgentRequests_ResponseByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16485
16767
|
MJConversationDetails_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16486
16768
|
MJAccessControlRules_GrantedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16487
16769
|
MJArtifacts_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16488
|
-
|
|
16489
|
-
|
|
16490
|
-
|
|
16770
|
+
MJScheduledJobs_NotifyUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16771
|
+
MJCollectionPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16772
|
+
MJArtifactPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16491
16773
|
MJTestRuns_RunByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16492
|
-
|
|
16493
|
-
|
|
16494
|
-
|
|
16774
|
+
MJDashboardPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16775
|
+
MJDashboardCategoryPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16776
|
+
MJAPIKeys_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16495
16777
|
MJMCPServerConnectionPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16496
16778
|
MJVersionLabels_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16779
|
+
MJDuplicateRuns_ApprovedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16497
16780
|
MJAIAgentRuns_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16498
16781
|
MJAIAgentPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16499
16782
|
MJCollections_OwnerIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16500
|
-
|
|
16783
|
+
MJCollectionPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16784
|
+
MJRecordMergeLogs_InitiatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16501
16785
|
MJTasks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16502
16786
|
MJAIAgentExamples_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16503
16787
|
MJAIAgents_OwnerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -16779,10 +17063,10 @@ export declare class MJVersionLabel_ {
|
|
|
16779
17063
|
Parent?: string;
|
|
16780
17064
|
CreatedByUser: string;
|
|
16781
17065
|
RootParentID?: string;
|
|
16782
|
-
MJVersionLabelRestores_PreRestoreLabelIDArray: MJVersionLabelRestore_[];
|
|
16783
|
-
MJVersionLabelItems_VersionLabelIDArray: MJVersionLabelItem_[];
|
|
16784
17066
|
MJVersionLabelRestores_VersionLabelIDArray: MJVersionLabelRestore_[];
|
|
16785
17067
|
MJVersionLabels_ParentIDArray: MJVersionLabel_[];
|
|
17068
|
+
MJVersionLabelRestores_PreRestoreLabelIDArray: MJVersionLabelRestore_[];
|
|
17069
|
+
MJVersionLabelItems_VersionLabelIDArray: MJVersionLabelItem_[];
|
|
16786
17070
|
}
|
|
16787
17071
|
export declare class CreateMJVersionLabelInput {
|
|
16788
17072
|
ID?: string;
|
|
@@ -16827,10 +17111,10 @@ export declare class MJVersionLabelResolver extends ResolverBase {
|
|
|
16827
17111
|
RunMJVersionLabelViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16828
17112
|
RunMJVersionLabelDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16829
17113
|
MJVersionLabel(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJVersionLabel_ | null>;
|
|
16830
|
-
MJVersionLabelRestores_PreRestoreLabelIDArray(mjversionlabel_: MJVersionLabel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16831
|
-
MJVersionLabelItems_VersionLabelIDArray(mjversionlabel_: MJVersionLabel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16832
17114
|
MJVersionLabelRestores_VersionLabelIDArray(mjversionlabel_: MJVersionLabel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16833
17115
|
MJVersionLabels_ParentIDArray(mjversionlabel_: MJVersionLabel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17116
|
+
MJVersionLabelRestores_PreRestoreLabelIDArray(mjversionlabel_: MJVersionLabel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17117
|
+
MJVersionLabelItems_VersionLabelIDArray(mjversionlabel_: MJVersionLabel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16834
17118
|
CreateMJVersionLabel(input: CreateMJVersionLabelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16835
17119
|
UpdateMJVersionLabel(input: UpdateMJVersionLabelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16836
17120
|
DeleteMJVersionLabel(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|