@memberjunction/server 5.7.0 → 5.9.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/README.md +1 -0
- 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/apolloServer/index.d.ts +10 -2
- package/dist/apolloServer/index.d.ts.map +1 -1
- package/dist/apolloServer/index.js +22 -8
- package/dist/apolloServer/index.js.map +1 -1
- package/dist/config.d.ts +125 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +23 -0
- package/dist/config.js.map +1 -1
- package/dist/context.d.ts +17 -0
- package/dist/context.d.ts.map +1 -1
- package/dist/context.js +144 -62
- package/dist/context.js.map +1 -1
- package/dist/generated/generated.d.ts +607 -116
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +3542 -775
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/CacheInvalidationResolver.d.ts +32 -0
- package/dist/generic/CacheInvalidationResolver.d.ts.map +1 -0
- package/dist/generic/CacheInvalidationResolver.js +80 -0
- package/dist/generic/CacheInvalidationResolver.js.map +1 -0
- package/dist/generic/PubSubManager.d.ts +27 -0
- package/dist/generic/PubSubManager.d.ts.map +1 -0
- package/dist/generic/PubSubManager.js +42 -0
- package/dist/generic/PubSubManager.js.map +1 -0
- package/dist/generic/ResolverBase.d.ts +14 -0
- package/dist/generic/ResolverBase.d.ts.map +1 -1
- package/dist/generic/ResolverBase.js +50 -0
- package/dist/generic/ResolverBase.js.map +1 -1
- package/dist/hooks.d.ts +65 -0
- package/dist/hooks.d.ts.map +1 -0
- package/dist/hooks.js +14 -0
- package/dist/hooks.js.map +1 -0
- package/dist/index.d.ts +6 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +176 -45
- package/dist/index.js.map +1 -1
- package/dist/multiTenancy/index.d.ts +47 -0
- package/dist/multiTenancy/index.d.ts.map +1 -0
- package/dist/multiTenancy/index.js +152 -0
- package/dist/multiTenancy/index.js.map +1 -0
- package/dist/resolvers/IntegrationDiscoveryResolver.d.ts +123 -0
- package/dist/resolvers/IntegrationDiscoveryResolver.d.ts.map +1 -0
- package/dist/resolvers/IntegrationDiscoveryResolver.js +624 -0
- package/dist/resolvers/IntegrationDiscoveryResolver.js.map +1 -0
- package/dist/rest/RESTEndpointHandler.d.ts +3 -1
- package/dist/rest/RESTEndpointHandler.d.ts.map +1 -1
- package/dist/rest/RESTEndpointHandler.js +14 -33
- package/dist/rest/RESTEndpointHandler.js.map +1 -1
- package/dist/types.d.ts +9 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +61 -57
- package/src/__tests__/multiTenancy.security.test.ts +334 -0
- package/src/__tests__/multiTenancy.test.ts +225 -0
- package/src/__tests__/unifiedAuth.test.ts +416 -0
- package/src/agents/skip-agent.ts +87 -34
- package/src/agents/skip-sdk.ts +13 -0
- package/src/apolloServer/index.ts +32 -16
- package/src/config.ts +25 -0
- package/src/context.ts +205 -98
- package/src/generated/generated.ts +2334 -430
- package/src/generic/CacheInvalidationResolver.ts +66 -0
- package/src/generic/PubSubManager.ts +47 -0
- package/src/generic/ResolverBase.ts +53 -0
- package/src/hooks.ts +77 -0
- package/src/index.ts +203 -49
- package/src/multiTenancy/index.ts +183 -0
- package/src/resolvers/IntegrationDiscoveryResolver.ts +584 -0
- package/src/rest/RESTEndpointHandler.ts +23 -42
- package/src/types.ts +10 -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,19 @@ 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;
|
|
6147
|
+
ScheduleEnabled: boolean;
|
|
6148
|
+
ScheduleType: string;
|
|
6149
|
+
ScheduleIntervalMinutes?: number;
|
|
6150
|
+
CronExpression?: string;
|
|
6151
|
+
NextScheduledRunAt?: Date;
|
|
6152
|
+
LastScheduledRunAt?: Date;
|
|
6153
|
+
IsLocked: boolean;
|
|
6154
|
+
LockedAt?: Date;
|
|
6155
|
+
LockedByInstance?: string;
|
|
6156
|
+
LockExpiresAt?: Date;
|
|
5946
6157
|
Company: string;
|
|
5947
6158
|
Integration: string;
|
|
5948
6159
|
DriverClassName?: string;
|
|
@@ -5954,6 +6165,7 @@ export declare class MJCompanyIntegration_ {
|
|
|
5954
6165
|
MJEmployeeCompanyIntegrations_CompanyIntegrationIDArray: MJEmployeeCompanyIntegration_[];
|
|
5955
6166
|
MJCompanyIntegrationRuns_CompanyIntegrationIDArray: MJCompanyIntegrationRun_[];
|
|
5956
6167
|
MJCompanyIntegrationRecordMaps_CompanyIntegrationIDArray: MJCompanyIntegrationRecordMap_[];
|
|
6168
|
+
MJCompanyIntegrationEntityMaps_CompanyIntegrationIDArray: MJCompanyIntegrationEntityMap_[];
|
|
5957
6169
|
}
|
|
5958
6170
|
export declare class CreateMJCompanyIntegrationInput {
|
|
5959
6171
|
ID?: string;
|
|
@@ -5970,6 +6182,19 @@ export declare class CreateMJCompanyIntegrationInput {
|
|
|
5970
6182
|
ClientSecret: string | null;
|
|
5971
6183
|
CustomAttribute1: string | null;
|
|
5972
6184
|
Name?: string;
|
|
6185
|
+
SourceTypeID: string | null;
|
|
6186
|
+
Configuration: string | null;
|
|
6187
|
+
CredentialID: string | null;
|
|
6188
|
+
ScheduleEnabled?: boolean;
|
|
6189
|
+
ScheduleType?: string;
|
|
6190
|
+
ScheduleIntervalMinutes: number | null;
|
|
6191
|
+
CronExpression: string | null;
|
|
6192
|
+
NextScheduledRunAt: Date | null;
|
|
6193
|
+
LastScheduledRunAt: Date | null;
|
|
6194
|
+
IsLocked?: boolean;
|
|
6195
|
+
LockedAt: Date | null;
|
|
6196
|
+
LockedByInstance: string | null;
|
|
6197
|
+
LockExpiresAt: Date | null;
|
|
5973
6198
|
}
|
|
5974
6199
|
export declare class UpdateMJCompanyIntegrationInput {
|
|
5975
6200
|
ID: string;
|
|
@@ -5986,6 +6211,19 @@ export declare class UpdateMJCompanyIntegrationInput {
|
|
|
5986
6211
|
ClientSecret?: string | null;
|
|
5987
6212
|
CustomAttribute1?: string | null;
|
|
5988
6213
|
Name?: string;
|
|
6214
|
+
SourceTypeID?: string | null;
|
|
6215
|
+
Configuration?: string | null;
|
|
6216
|
+
CredentialID?: string | null;
|
|
6217
|
+
ScheduleEnabled?: boolean;
|
|
6218
|
+
ScheduleType?: string;
|
|
6219
|
+
ScheduleIntervalMinutes?: number | null;
|
|
6220
|
+
CronExpression?: string | null;
|
|
6221
|
+
NextScheduledRunAt?: Date | null;
|
|
6222
|
+
LastScheduledRunAt?: Date | null;
|
|
6223
|
+
IsLocked?: boolean;
|
|
6224
|
+
LockedAt?: Date | null;
|
|
6225
|
+
LockedByInstance?: string | null;
|
|
6226
|
+
LockExpiresAt?: Date | null;
|
|
5989
6227
|
OldValues___?: KeyValuePairInput[];
|
|
5990
6228
|
}
|
|
5991
6229
|
export declare class RunMJCompanyIntegrationViewResult {
|
|
@@ -6006,6 +6244,7 @@ export declare class MJCompanyIntegrationResolver extends ResolverBase {
|
|
|
6006
6244
|
MJEmployeeCompanyIntegrations_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6007
6245
|
MJCompanyIntegrationRuns_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6008
6246
|
MJCompanyIntegrationRecordMaps_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6247
|
+
MJCompanyIntegrationEntityMaps_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6009
6248
|
CreateMJCompanyIntegration(input: CreateMJCompanyIntegrationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6010
6249
|
UpdateMJCompanyIntegration(input: UpdateMJCompanyIntegrationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6011
6250
|
DeleteMJCompanyIntegration(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6238,9 +6477,9 @@ export declare class MJComponent_ {
|
|
|
6238
6477
|
FunctionalRequirementsVectorEmbeddingModelID?: string;
|
|
6239
6478
|
HasRequiredCustomProps: boolean;
|
|
6240
6479
|
SourceRegistry?: string;
|
|
6241
|
-
MJComponentDependencies_DependencyComponentIDArray: MJComponentDependency_[];
|
|
6242
6480
|
MJComponentLibraryLinks_ComponentIDArray: MJComponentLibraryLink_[];
|
|
6243
6481
|
MJComponentDependencies_ComponentIDArray: MJComponentDependency_[];
|
|
6482
|
+
MJComponentDependencies_DependencyComponentIDArray: MJComponentDependency_[];
|
|
6244
6483
|
}
|
|
6245
6484
|
export declare class CreateMJComponentInput {
|
|
6246
6485
|
ID?: string;
|
|
@@ -6315,9 +6554,9 @@ export declare class MJComponentResolver extends ResolverBase {
|
|
|
6315
6554
|
RunMJComponentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6316
6555
|
RunMJComponentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6317
6556
|
MJComponent(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJComponent_ | null>;
|
|
6318
|
-
MJComponentDependencies_DependencyComponentIDArray(mjcomponent_: MJComponent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6319
6557
|
MJComponentLibraryLinks_ComponentIDArray(mjcomponent_: MJComponent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6320
6558
|
MJComponentDependencies_ComponentIDArray(mjcomponent_: MJComponent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6559
|
+
MJComponentDependencies_DependencyComponentIDArray(mjcomponent_: MJComponent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6321
6560
|
CreateMJComponent(input: CreateMJComponentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6322
6561
|
UpdateMJComponent(input: UpdateMJComponentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6323
6562
|
DeleteMJComponent(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6687,9 +6926,9 @@ export declare class MJContentSource_ {
|
|
|
6687
6926
|
ContentType: string;
|
|
6688
6927
|
ContentSourceType: string;
|
|
6689
6928
|
ContentFileType: string;
|
|
6690
|
-
MJContentProcessRuns_SourceIDArray: MJContentProcessRun_[];
|
|
6691
6929
|
MJContentSourceParams_ContentSourceIDArray: MJContentSourceParam_[];
|
|
6692
6930
|
MJContentItems_ContentSourceIDArray: MJContentItem_[];
|
|
6931
|
+
MJContentProcessRuns_SourceIDArray: MJContentProcessRun_[];
|
|
6693
6932
|
}
|
|
6694
6933
|
export declare class CreateMJContentSourceInput {
|
|
6695
6934
|
ID?: string;
|
|
@@ -6722,9 +6961,9 @@ export declare class MJContentSourceResolver extends ResolverBase {
|
|
|
6722
6961
|
RunMJContentSourceViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6723
6962
|
RunMJContentSourceDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6724
6963
|
MJContentSource(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJContentSource_ | null>;
|
|
6725
|
-
MJContentProcessRuns_SourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6726
6964
|
MJContentSourceParams_ContentSourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6727
6965
|
MJContentItems_ContentSourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6966
|
+
MJContentProcessRuns_SourceIDArray(mjcontentsource_: MJContentSource_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6728
6967
|
CreateMJContentSource(input: CreateMJContentSourceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6729
6968
|
UpdateMJContentSource(input: UpdateMJContentSourceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6730
6969
|
DeleteMJContentSource(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7400,6 +7639,7 @@ export declare class MJCredentialType_ {
|
|
|
7400
7639
|
_mj__UpdatedAt: Date;
|
|
7401
7640
|
MJCredentials_CredentialTypeIDArray: MJCredential_[];
|
|
7402
7641
|
MJMCPServers_CredentialTypeIDArray: MJMCPServer_[];
|
|
7642
|
+
MJIntegrations_CredentialTypeIDArray: MJIntegration_[];
|
|
7403
7643
|
MJAIVendors_CredentialTypeIDArray: MJAIVendor_[];
|
|
7404
7644
|
}
|
|
7405
7645
|
export declare class CreateMJCredentialTypeInput {
|
|
@@ -7437,6 +7677,7 @@ export declare class MJCredentialTypeResolver extends ResolverBase {
|
|
|
7437
7677
|
MJCredentialType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCredentialType_ | null>;
|
|
7438
7678
|
MJCredentials_CredentialTypeIDArray(mjcredentialtype_: MJCredentialType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7439
7679
|
MJMCPServers_CredentialTypeIDArray(mjcredentialtype_: MJCredentialType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7680
|
+
MJIntegrations_CredentialTypeIDArray(mjcredentialtype_: MJCredentialType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7440
7681
|
MJAIVendors_CredentialTypeIDArray(mjcredentialtype_: MJCredentialType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7441
7682
|
CreateMJCredentialType(input: CreateMJCredentialTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7442
7683
|
UpdateMJCredentialType(input: UpdateMJCredentialTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7463,6 +7704,7 @@ export declare class MJCredential_ {
|
|
|
7463
7704
|
MJFileStorageAccounts_CredentialIDArray: MJFileStorageAccount_[];
|
|
7464
7705
|
MJMCPServerConnections_CredentialIDArray: MJMCPServerConnection_[];
|
|
7465
7706
|
MJAICredentialBindings_CredentialIDArray: MJAICredentialBinding_[];
|
|
7707
|
+
MJCompanyIntegrations_CredentialIDArray: MJCompanyIntegration_[];
|
|
7466
7708
|
}
|
|
7467
7709
|
export declare class CreateMJCredentialInput {
|
|
7468
7710
|
ID?: string;
|
|
@@ -7511,6 +7753,7 @@ export declare class MJCredentialResolver extends ResolverBase {
|
|
|
7511
7753
|
MJFileStorageAccounts_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7512
7754
|
MJMCPServerConnections_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7513
7755
|
MJAICredentialBindings_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7756
|
+
MJCompanyIntegrations_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7514
7757
|
CreateMJCredential(input: CreateMJCredentialInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7515
7758
|
UpdateMJCredential(input: UpdateMJCredentialInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7516
7759
|
DeleteMJCredential(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7528,8 +7771,8 @@ export declare class MJDashboardCategory_ {
|
|
|
7528
7771
|
RootParentID?: string;
|
|
7529
7772
|
MJDashboards_CategoryIDArray: MJDashboard_[];
|
|
7530
7773
|
MJDashboardCategories_ParentIDArray: MJDashboardCategory_[];
|
|
7531
|
-
MJDashboardCategoryPermissions_DashboardCategoryIDArray: MJDashboardCategoryPermission_[];
|
|
7532
7774
|
MJDashboardCategoryLinks_DashboardCategoryIDArray: MJDashboardCategoryLink_[];
|
|
7775
|
+
MJDashboardCategoryPermissions_DashboardCategoryIDArray: MJDashboardCategoryPermission_[];
|
|
7533
7776
|
}
|
|
7534
7777
|
export declare class CreateMJDashboardCategoryInput {
|
|
7535
7778
|
ID?: string;
|
|
@@ -7562,8 +7805,8 @@ export declare class MJDashboardCategoryResolver extends ResolverBase {
|
|
|
7562
7805
|
MJDashboardCategory(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJDashboardCategory_ | null>;
|
|
7563
7806
|
MJDashboards_CategoryIDArray(mjdashboardcategory_: MJDashboardCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7564
7807
|
MJDashboardCategories_ParentIDArray(mjdashboardcategory_: MJDashboardCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7565
|
-
MJDashboardCategoryPermissions_DashboardCategoryIDArray(mjdashboardcategory_: MJDashboardCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7566
7808
|
MJDashboardCategoryLinks_DashboardCategoryIDArray(mjdashboardcategory_: MJDashboardCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7809
|
+
MJDashboardCategoryPermissions_DashboardCategoryIDArray(mjdashboardcategory_: MJDashboardCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7567
7810
|
CreateMJDashboardCategory(input: CreateMJDashboardCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7568
7811
|
UpdateMJDashboardCategory(input: UpdateMJDashboardCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7569
7812
|
DeleteMJDashboardCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8766,10 +9009,10 @@ export declare class MJEntity_ {
|
|
|
8766
9009
|
ParentEntity?: string;
|
|
8767
9010
|
ParentBaseTable?: string;
|
|
8768
9011
|
ParentBaseView?: string;
|
|
9012
|
+
MJEntityFields_EntityIDArray: MJEntityField_[];
|
|
8769
9013
|
MJEntityPermissions_EntityIDArray: MJEntityPermission_[];
|
|
8770
9014
|
MJEntityRelationships_EntityIDArray: MJEntityRelationship_[];
|
|
8771
|
-
|
|
8772
|
-
MJEntityAIActions_EntityIDArray: MJEntityAIAction_[];
|
|
9015
|
+
MJEntityAIActions_OutputEntityIDArray: MJEntityAIAction_[];
|
|
8773
9016
|
MJUserRecordLogs_EntityIDArray: MJUserRecordLog_[];
|
|
8774
9017
|
MJIntegrationURLFormats_EntityIDArray: MJIntegrationURLFormat_[];
|
|
8775
9018
|
MJEntities_ParentIDArray: MJEntity_[];
|
|
@@ -8803,13 +9046,18 @@ export declare class MJEntity_ {
|
|
|
8803
9046
|
MJEntityCommunicationMessageTypes_EntityIDArray: MJEntityCommunicationMessageType_[];
|
|
8804
9047
|
MJQueryEntities_EntityIDArray: MJQueryEntity_[];
|
|
8805
9048
|
MJAccessControlRules_EntityIDArray: MJAccessControlRule_[];
|
|
8806
|
-
|
|
9049
|
+
MJRecordLinks_TargetEntityIDArray: MJRecordLink_[];
|
|
8807
9050
|
MJAIAgentExamples_PrimaryScopeEntityIDArray: MJAIAgentExample_[];
|
|
8808
9051
|
MJAIAgentNotes_PrimaryScopeEntityIDArray: MJAIAgentNote_[];
|
|
8809
9052
|
MJVersionLabels_EntityIDArray: MJVersionLabel_[];
|
|
8810
9053
|
MJVersionLabelItems_EntityIDArray: MJVersionLabelItem_[];
|
|
9054
|
+
MJEntityAIActions_EntityIDArray: MJEntityAIAction_[];
|
|
9055
|
+
MJEntityRelationships_RelatedEntityIDArray: MJEntityRelationship_[];
|
|
8811
9056
|
MJGeneratedCodes_LinkedEntityIDArray: MJGeneratedCode_[];
|
|
8812
|
-
|
|
9057
|
+
MJRecordLinks_SourceEntityIDArray: MJRecordLink_[];
|
|
9058
|
+
MJCompanyIntegrationEntityMaps_EntityIDArray: MJCompanyIntegrationEntityMap_[];
|
|
9059
|
+
MJEntityFields_RelatedEntityIDArray: MJEntityField_[];
|
|
9060
|
+
MJResourceTypes_CategoryEntityIDArray: MJResourceType_[];
|
|
8813
9061
|
MJTestRuns_TargetLogEntityIDArray: MJTestRun_[];
|
|
8814
9062
|
MJAIAgentRuns_PrimaryScopeEntityIDArray: MJAIAgentRun_[];
|
|
8815
9063
|
}
|
|
@@ -8941,10 +9189,10 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
8941
9189
|
RunMJEntityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8942
9190
|
MJEntity(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJEntity_ | null>;
|
|
8943
9191
|
AllMJEntities({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9192
|
+
MJEntityFields_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8944
9193
|
MJEntityPermissions_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8945
9194
|
MJEntityRelationships_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8946
|
-
|
|
8947
|
-
MJEntityAIActions_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9195
|
+
MJEntityAIActions_OutputEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8948
9196
|
MJUserRecordLogs_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8949
9197
|
MJIntegrationURLFormats_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8950
9198
|
MJEntities_ParentIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -8978,13 +9226,18 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
8978
9226
|
MJEntityCommunicationMessageTypes_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8979
9227
|
MJQueryEntities_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8980
9228
|
MJAccessControlRules_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8981
|
-
|
|
9229
|
+
MJRecordLinks_TargetEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8982
9230
|
MJAIAgentExamples_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8983
9231
|
MJAIAgentNotes_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8984
9232
|
MJVersionLabels_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8985
9233
|
MJVersionLabelItems_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9234
|
+
MJEntityAIActions_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9235
|
+
MJEntityRelationships_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8986
9236
|
MJGeneratedCodes_LinkedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8987
|
-
|
|
9237
|
+
MJRecordLinks_SourceEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9238
|
+
MJCompanyIntegrationEntityMaps_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9239
|
+
MJEntityFields_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9240
|
+
MJResourceTypes_CategoryEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8988
9241
|
MJTestRuns_TargetLogEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8989
9242
|
MJAIAgentRuns_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8990
9243
|
CreateMJEntity(input: CreateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10111,9 +10364,9 @@ export declare class MJEnvironment_ {
|
|
|
10111
10364
|
Settings?: string;
|
|
10112
10365
|
_mj__CreatedAt: Date;
|
|
10113
10366
|
_mj__UpdatedAt: Date;
|
|
10367
|
+
MJArtifacts_EnvironmentIDArray: MJArtifact_[];
|
|
10114
10368
|
MJProjects_EnvironmentIDArray: MJProject_[];
|
|
10115
10369
|
MJCollections_EnvironmentIDArray: MJCollection_[];
|
|
10116
|
-
MJArtifacts_EnvironmentIDArray: MJArtifact_[];
|
|
10117
10370
|
MJTasks_EnvironmentIDArray: MJTask_[];
|
|
10118
10371
|
MJDashboards_EnvironmentIDArray: MJDashboard_[];
|
|
10119
10372
|
MJReports_EnvironmentIDArray: MJReport_[];
|
|
@@ -10148,9 +10401,9 @@ export declare class MJEnvironmentResolver extends ResolverBase {
|
|
|
10148
10401
|
RunMJEnvironmentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10149
10402
|
RunMJEnvironmentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10150
10403
|
MJEnvironment(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJEnvironment_ | null>;
|
|
10404
|
+
MJArtifacts_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10151
10405
|
MJProjects_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10152
10406
|
MJCollections_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10153
|
-
MJArtifacts_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10154
10407
|
MJTasks_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10155
10408
|
MJDashboards_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10156
10409
|
MJReports_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -10537,8 +10790,8 @@ export declare class MJGeneratedCodeCategory_ {
|
|
|
10537
10790
|
_mj__UpdatedAt: Date;
|
|
10538
10791
|
Parent?: string;
|
|
10539
10792
|
RootParentID?: string;
|
|
10540
|
-
MJGeneratedCodeCategories_ParentIDArray: MJGeneratedCodeCategory_[];
|
|
10541
10793
|
MJGeneratedCodes_CategoryIDArray: MJGeneratedCode_[];
|
|
10794
|
+
MJGeneratedCodeCategories_ParentIDArray: MJGeneratedCodeCategory_[];
|
|
10542
10795
|
}
|
|
10543
10796
|
export declare class CreateMJGeneratedCodeCategoryInput {
|
|
10544
10797
|
ID?: string;
|
|
@@ -10567,8 +10820,8 @@ export declare class MJGeneratedCodeCategoryResolver extends ResolverBase {
|
|
|
10567
10820
|
RunMJGeneratedCodeCategoryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10568
10821
|
RunMJGeneratedCodeCategoryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10569
10822
|
MJGeneratedCodeCategory(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJGeneratedCodeCategory_ | null>;
|
|
10570
|
-
MJGeneratedCodeCategories_ParentIDArray(mjgeneratedcodecategory_: MJGeneratedCodeCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10571
10823
|
MJGeneratedCodes_CategoryIDArray(mjgeneratedcodecategory_: MJGeneratedCodeCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10824
|
+
MJGeneratedCodeCategories_ParentIDArray(mjgeneratedcodecategory_: MJGeneratedCodeCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10572
10825
|
CreateMJGeneratedCodeCategory(input: CreateMJGeneratedCodeCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10573
10826
|
UpdateMJGeneratedCodeCategory(input: UpdateMJGeneratedCodeCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10574
10827
|
DeleteMJGeneratedCodeCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10639,6 +10892,228 @@ export declare class MJGeneratedCodeResolver extends ResolverBase {
|
|
|
10639
10892
|
UpdateMJGeneratedCode(input: UpdateMJGeneratedCodeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10640
10893
|
DeleteMJGeneratedCode(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10641
10894
|
}
|
|
10895
|
+
export declare class MJIntegrationObjectField_ {
|
|
10896
|
+
ID: string;
|
|
10897
|
+
IntegrationObjectID: string;
|
|
10898
|
+
Name: string;
|
|
10899
|
+
DisplayName?: string;
|
|
10900
|
+
Description?: string;
|
|
10901
|
+
Category?: string;
|
|
10902
|
+
Type: string;
|
|
10903
|
+
Length?: number;
|
|
10904
|
+
Precision?: number;
|
|
10905
|
+
Scale?: number;
|
|
10906
|
+
AllowsNull: boolean;
|
|
10907
|
+
DefaultValue?: string;
|
|
10908
|
+
IsPrimaryKey: boolean;
|
|
10909
|
+
IsUniqueKey: boolean;
|
|
10910
|
+
IsReadOnly: boolean;
|
|
10911
|
+
IsRequired: boolean;
|
|
10912
|
+
RelatedIntegrationObjectID?: string;
|
|
10913
|
+
RelatedIntegrationObjectFieldName?: string;
|
|
10914
|
+
Sequence: number;
|
|
10915
|
+
Configuration?: string;
|
|
10916
|
+
Status: string;
|
|
10917
|
+
_mj__CreatedAt: Date;
|
|
10918
|
+
_mj__UpdatedAt: Date;
|
|
10919
|
+
IntegrationObject: string;
|
|
10920
|
+
RelatedIntegrationObject?: string;
|
|
10921
|
+
}
|
|
10922
|
+
export declare class CreateMJIntegrationObjectFieldInput {
|
|
10923
|
+
ID?: string;
|
|
10924
|
+
IntegrationObjectID?: string;
|
|
10925
|
+
Name?: string;
|
|
10926
|
+
DisplayName: string | null;
|
|
10927
|
+
Description: string | null;
|
|
10928
|
+
Category: string | null;
|
|
10929
|
+
Type?: string;
|
|
10930
|
+
Length: number | null;
|
|
10931
|
+
Precision: number | null;
|
|
10932
|
+
Scale: number | null;
|
|
10933
|
+
AllowsNull?: boolean;
|
|
10934
|
+
DefaultValue: string | null;
|
|
10935
|
+
IsPrimaryKey?: boolean;
|
|
10936
|
+
IsUniqueKey?: boolean;
|
|
10937
|
+
IsReadOnly?: boolean;
|
|
10938
|
+
IsRequired?: boolean;
|
|
10939
|
+
RelatedIntegrationObjectID: string | null;
|
|
10940
|
+
RelatedIntegrationObjectFieldName: string | null;
|
|
10941
|
+
Sequence?: number;
|
|
10942
|
+
Configuration: string | null;
|
|
10943
|
+
Status?: string;
|
|
10944
|
+
}
|
|
10945
|
+
export declare class UpdateMJIntegrationObjectFieldInput {
|
|
10946
|
+
ID: string;
|
|
10947
|
+
IntegrationObjectID?: string;
|
|
10948
|
+
Name?: string;
|
|
10949
|
+
DisplayName?: string | null;
|
|
10950
|
+
Description?: string | null;
|
|
10951
|
+
Category?: string | null;
|
|
10952
|
+
Type?: string;
|
|
10953
|
+
Length?: number | null;
|
|
10954
|
+
Precision?: number | null;
|
|
10955
|
+
Scale?: number | null;
|
|
10956
|
+
AllowsNull?: boolean;
|
|
10957
|
+
DefaultValue?: string | null;
|
|
10958
|
+
IsPrimaryKey?: boolean;
|
|
10959
|
+
IsUniqueKey?: boolean;
|
|
10960
|
+
IsReadOnly?: boolean;
|
|
10961
|
+
IsRequired?: boolean;
|
|
10962
|
+
RelatedIntegrationObjectID?: string | null;
|
|
10963
|
+
RelatedIntegrationObjectFieldName?: string | null;
|
|
10964
|
+
Sequence?: number;
|
|
10965
|
+
Configuration?: string | null;
|
|
10966
|
+
Status?: string;
|
|
10967
|
+
OldValues___?: KeyValuePairInput[];
|
|
10968
|
+
}
|
|
10969
|
+
export declare class RunMJIntegrationObjectFieldViewResult {
|
|
10970
|
+
Results: MJIntegrationObjectField_[];
|
|
10971
|
+
UserViewRunID?: string;
|
|
10972
|
+
RowCount: number;
|
|
10973
|
+
TotalRowCount: number;
|
|
10974
|
+
ExecutionTime: number;
|
|
10975
|
+
ErrorMessage?: string;
|
|
10976
|
+
Success: boolean;
|
|
10977
|
+
}
|
|
10978
|
+
export declare class MJIntegrationObjectFieldResolver extends ResolverBase {
|
|
10979
|
+
RunMJIntegrationObjectFieldViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10980
|
+
RunMJIntegrationObjectFieldViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10981
|
+
RunMJIntegrationObjectFieldDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10982
|
+
MJIntegrationObjectField(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJIntegrationObjectField_ | null>;
|
|
10983
|
+
CreateMJIntegrationObjectField(input: CreateMJIntegrationObjectFieldInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10984
|
+
UpdateMJIntegrationObjectField(input: UpdateMJIntegrationObjectFieldInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10985
|
+
DeleteMJIntegrationObjectField(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10986
|
+
}
|
|
10987
|
+
export declare class MJIntegrationObject_ {
|
|
10988
|
+
ID: string;
|
|
10989
|
+
IntegrationID: string;
|
|
10990
|
+
Name: string;
|
|
10991
|
+
DisplayName?: string;
|
|
10992
|
+
Description?: string;
|
|
10993
|
+
Category?: string;
|
|
10994
|
+
APIPath: string;
|
|
10995
|
+
ResponseDataKey?: string;
|
|
10996
|
+
DefaultPageSize: number;
|
|
10997
|
+
SupportsPagination: boolean;
|
|
10998
|
+
PaginationType: string;
|
|
10999
|
+
SupportsIncrementalSync: boolean;
|
|
11000
|
+
SupportsWrite: boolean;
|
|
11001
|
+
DefaultQueryParams?: string;
|
|
11002
|
+
Configuration?: string;
|
|
11003
|
+
Sequence: number;
|
|
11004
|
+
Status: string;
|
|
11005
|
+
_mj__CreatedAt: Date;
|
|
11006
|
+
_mj__UpdatedAt: Date;
|
|
11007
|
+
Integration: string;
|
|
11008
|
+
MJIntegrationObjectFields_IntegrationObjectIDArray: MJIntegrationObjectField_[];
|
|
11009
|
+
MJIntegrationObjectFields_RelatedIntegrationObjectIDArray: MJIntegrationObjectField_[];
|
|
11010
|
+
}
|
|
11011
|
+
export declare class CreateMJIntegrationObjectInput {
|
|
11012
|
+
ID?: string;
|
|
11013
|
+
IntegrationID?: string;
|
|
11014
|
+
Name?: string;
|
|
11015
|
+
DisplayName: string | null;
|
|
11016
|
+
Description: string | null;
|
|
11017
|
+
Category: string | null;
|
|
11018
|
+
APIPath?: string;
|
|
11019
|
+
ResponseDataKey: string | null;
|
|
11020
|
+
DefaultPageSize?: number;
|
|
11021
|
+
SupportsPagination?: boolean;
|
|
11022
|
+
PaginationType?: string;
|
|
11023
|
+
SupportsIncrementalSync?: boolean;
|
|
11024
|
+
SupportsWrite?: boolean;
|
|
11025
|
+
DefaultQueryParams: string | null;
|
|
11026
|
+
Configuration: string | null;
|
|
11027
|
+
Sequence?: number;
|
|
11028
|
+
Status?: string;
|
|
11029
|
+
}
|
|
11030
|
+
export declare class UpdateMJIntegrationObjectInput {
|
|
11031
|
+
ID: string;
|
|
11032
|
+
IntegrationID?: string;
|
|
11033
|
+
Name?: string;
|
|
11034
|
+
DisplayName?: string | null;
|
|
11035
|
+
Description?: string | null;
|
|
11036
|
+
Category?: string | null;
|
|
11037
|
+
APIPath?: string;
|
|
11038
|
+
ResponseDataKey?: string | null;
|
|
11039
|
+
DefaultPageSize?: number;
|
|
11040
|
+
SupportsPagination?: boolean;
|
|
11041
|
+
PaginationType?: string;
|
|
11042
|
+
SupportsIncrementalSync?: boolean;
|
|
11043
|
+
SupportsWrite?: boolean;
|
|
11044
|
+
DefaultQueryParams?: string | null;
|
|
11045
|
+
Configuration?: string | null;
|
|
11046
|
+
Sequence?: number;
|
|
11047
|
+
Status?: string;
|
|
11048
|
+
OldValues___?: KeyValuePairInput[];
|
|
11049
|
+
}
|
|
11050
|
+
export declare class RunMJIntegrationObjectViewResult {
|
|
11051
|
+
Results: MJIntegrationObject_[];
|
|
11052
|
+
UserViewRunID?: string;
|
|
11053
|
+
RowCount: number;
|
|
11054
|
+
TotalRowCount: number;
|
|
11055
|
+
ExecutionTime: number;
|
|
11056
|
+
ErrorMessage?: string;
|
|
11057
|
+
Success: boolean;
|
|
11058
|
+
}
|
|
11059
|
+
export declare class MJIntegrationObjectResolver extends ResolverBase {
|
|
11060
|
+
RunMJIntegrationObjectViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11061
|
+
RunMJIntegrationObjectViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11062
|
+
RunMJIntegrationObjectDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11063
|
+
MJIntegrationObject(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJIntegrationObject_ | null>;
|
|
11064
|
+
MJIntegrationObjectFields_IntegrationObjectIDArray(mjintegrationobject_: MJIntegrationObject_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11065
|
+
MJIntegrationObjectFields_RelatedIntegrationObjectIDArray(mjintegrationobject_: MJIntegrationObject_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11066
|
+
CreateMJIntegrationObject(input: CreateMJIntegrationObjectInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11067
|
+
UpdateMJIntegrationObject(input: UpdateMJIntegrationObjectInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11068
|
+
DeleteMJIntegrationObject(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11069
|
+
}
|
|
11070
|
+
export declare class MJIntegrationSourceType_ {
|
|
11071
|
+
ID: string;
|
|
11072
|
+
Name: string;
|
|
11073
|
+
Description?: string;
|
|
11074
|
+
DriverClass: string;
|
|
11075
|
+
IconClass?: string;
|
|
11076
|
+
Status: string;
|
|
11077
|
+
_mj__CreatedAt: Date;
|
|
11078
|
+
_mj__UpdatedAt: Date;
|
|
11079
|
+
MJCompanyIntegrations_SourceTypeIDArray: MJCompanyIntegration_[];
|
|
11080
|
+
}
|
|
11081
|
+
export declare class CreateMJIntegrationSourceTypeInput {
|
|
11082
|
+
ID?: string;
|
|
11083
|
+
Name?: string;
|
|
11084
|
+
Description: string | null;
|
|
11085
|
+
DriverClass?: string;
|
|
11086
|
+
IconClass: string | null;
|
|
11087
|
+
Status?: string;
|
|
11088
|
+
}
|
|
11089
|
+
export declare class UpdateMJIntegrationSourceTypeInput {
|
|
11090
|
+
ID: string;
|
|
11091
|
+
Name?: string;
|
|
11092
|
+
Description?: string | null;
|
|
11093
|
+
DriverClass?: string;
|
|
11094
|
+
IconClass?: string | null;
|
|
11095
|
+
Status?: string;
|
|
11096
|
+
OldValues___?: KeyValuePairInput[];
|
|
11097
|
+
}
|
|
11098
|
+
export declare class RunMJIntegrationSourceTypeViewResult {
|
|
11099
|
+
Results: MJIntegrationSourceType_[];
|
|
11100
|
+
UserViewRunID?: string;
|
|
11101
|
+
RowCount: number;
|
|
11102
|
+
TotalRowCount: number;
|
|
11103
|
+
ExecutionTime: number;
|
|
11104
|
+
ErrorMessage?: string;
|
|
11105
|
+
Success: boolean;
|
|
11106
|
+
}
|
|
11107
|
+
export declare class MJIntegrationSourceTypeResolver extends ResolverBase {
|
|
11108
|
+
RunMJIntegrationSourceTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11109
|
+
RunMJIntegrationSourceTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11110
|
+
RunMJIntegrationSourceTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11111
|
+
MJIntegrationSourceType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJIntegrationSourceType_ | null>;
|
|
11112
|
+
MJCompanyIntegrations_SourceTypeIDArray(mjintegrationsourcetype_: MJIntegrationSourceType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11113
|
+
CreateMJIntegrationSourceType(input: CreateMJIntegrationSourceTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11114
|
+
UpdateMJIntegrationSourceType(input: UpdateMJIntegrationSourceTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11115
|
+
DeleteMJIntegrationSourceType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11116
|
+
}
|
|
10642
11117
|
export declare class MJIntegrationURLFormat_ {
|
|
10643
11118
|
ID: string;
|
|
10644
11119
|
IntegrationID: string;
|
|
@@ -10696,9 +11171,12 @@ export declare class MJIntegration_ {
|
|
|
10696
11171
|
_mj__CreatedAt: Date;
|
|
10697
11172
|
_mj__UpdatedAt: Date;
|
|
10698
11173
|
ID: string;
|
|
11174
|
+
CredentialTypeID?: string;
|
|
11175
|
+
CredentialType?: string;
|
|
10699
11176
|
MJIntegrationURLFormats_IntegrationIDArray: MJIntegrationURLFormat_[];
|
|
10700
11177
|
MJCompanyIntegrations_IntegrationIDArray: MJCompanyIntegration_[];
|
|
10701
11178
|
MJRecordChanges_IntegrationIDArray: MJRecordChange_[];
|
|
11179
|
+
MJIntegrationObjects_IntegrationIDArray: MJIntegrationObject_[];
|
|
10702
11180
|
}
|
|
10703
11181
|
export declare class CreateMJIntegrationInput {
|
|
10704
11182
|
Name?: string;
|
|
@@ -10709,6 +11187,7 @@ export declare class CreateMJIntegrationInput {
|
|
|
10709
11187
|
BatchMaxRequestCount?: number;
|
|
10710
11188
|
BatchRequestWaitTime?: number;
|
|
10711
11189
|
ID?: string;
|
|
11190
|
+
CredentialTypeID: string | null;
|
|
10712
11191
|
}
|
|
10713
11192
|
export declare class UpdateMJIntegrationInput {
|
|
10714
11193
|
Name?: string;
|
|
@@ -10719,6 +11198,7 @@ export declare class UpdateMJIntegrationInput {
|
|
|
10719
11198
|
BatchMaxRequestCount?: number;
|
|
10720
11199
|
BatchRequestWaitTime?: number;
|
|
10721
11200
|
ID: string;
|
|
11201
|
+
CredentialTypeID?: string | null;
|
|
10722
11202
|
OldValues___?: KeyValuePairInput[];
|
|
10723
11203
|
}
|
|
10724
11204
|
export declare class RunMJIntegrationViewResult {
|
|
@@ -10739,6 +11219,7 @@ export declare class MJIntegrationResolver extends ResolverBase {
|
|
|
10739
11219
|
MJIntegrationURLFormats_IntegrationIDArray(mjintegration_: MJIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10740
11220
|
MJCompanyIntegrations_IntegrationIDArray(mjintegration_: MJIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10741
11221
|
MJRecordChanges_IntegrationIDArray(mjintegration_: MJIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11222
|
+
MJIntegrationObjects_IntegrationIDArray(mjintegration_: MJIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10742
11223
|
CreateMJIntegration(input: CreateMJIntegrationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10743
11224
|
UpdateMJIntegration(input: UpdateMJIntegrationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10744
11225
|
DeleteMJIntegration(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11210,8 +11691,8 @@ export declare class MJMCPServerConnection_ {
|
|
|
11210
11691
|
Company?: string;
|
|
11211
11692
|
MJMCPServerConnectionTools_MCPServerConnectionIDArray: MJMCPServerConnectionTool_[];
|
|
11212
11693
|
MJMCPToolExecutionLogs_MCPServerConnectionIDArray: MJMCPToolExecutionLog_[];
|
|
11213
|
-
MJOAuthClientRegistrations_MCPServerConnectionIDArray: MJOAuthClientRegistration_[];
|
|
11214
11694
|
MJOAuthTokens_MCPServerConnectionIDArray: MJOAuthToken_[];
|
|
11695
|
+
MJOAuthClientRegistrations_MCPServerConnectionIDArray: MJOAuthClientRegistration_[];
|
|
11215
11696
|
MJOAuthAuthorizationStates_MCPServerConnectionIDArray: MJOAuthAuthorizationState_[];
|
|
11216
11697
|
MJMCPServerConnectionPermissions_MCPServerConnectionIDArray: MJMCPServerConnectionPermission_[];
|
|
11217
11698
|
}
|
|
@@ -11270,8 +11751,8 @@ export declare class MJMCPServerConnectionResolver extends ResolverBase {
|
|
|
11270
11751
|
MJMCPServerConnection(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMCPServerConnection_ | null>;
|
|
11271
11752
|
MJMCPServerConnectionTools_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11272
11753
|
MJMCPToolExecutionLogs_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11273
|
-
MJOAuthClientRegistrations_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11274
11754
|
MJOAuthTokens_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11755
|
+
MJOAuthClientRegistrations_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11275
11756
|
MJOAuthAuthorizationStates_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11276
11757
|
MJMCPServerConnectionPermissions_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11277
11758
|
CreateMJMCPServerConnection(input: CreateMJMCPServerConnectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11379,8 +11860,8 @@ export declare class MJMCPServer_ {
|
|
|
11379
11860
|
OAuthRequirePKCE: boolean;
|
|
11380
11861
|
CredentialType?: string;
|
|
11381
11862
|
MJOAuthClientRegistrations_MCPServerIDArray: MJOAuthClientRegistration_[];
|
|
11382
|
-
MJMCPServerTools_MCPServerIDArray: MJMCPServerTool_[];
|
|
11383
11863
|
MJMCPServerConnections_MCPServerIDArray: MJMCPServerConnection_[];
|
|
11864
|
+
MJMCPServerTools_MCPServerIDArray: MJMCPServerTool_[];
|
|
11384
11865
|
}
|
|
11385
11866
|
export declare class CreateMJMCPServerInput {
|
|
11386
11867
|
ID?: string;
|
|
@@ -11448,8 +11929,8 @@ export declare class MJMCPServerResolver extends ResolverBase {
|
|
|
11448
11929
|
RunMJMCPServerDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11449
11930
|
MJMCPServer(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMCPServer_ | null>;
|
|
11450
11931
|
MJOAuthClientRegistrations_MCPServerIDArray(mjmcpserver_: MJMCPServer_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11451
|
-
MJMCPServerTools_MCPServerIDArray(mjmcpserver_: MJMCPServer_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11452
11932
|
MJMCPServerConnections_MCPServerIDArray(mjmcpserver_: MJMCPServer_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11933
|
+
MJMCPServerTools_MCPServerIDArray(mjmcpserver_: MJMCPServer_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11453
11934
|
CreateMJMCPServer(input: CreateMJMCPServerInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11454
11935
|
UpdateMJMCPServer(input: UpdateMJMCPServerInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11455
11936
|
DeleteMJMCPServer(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11948,8 +12429,8 @@ export declare class MJOpenApp_ {
|
|
|
11948
12429
|
_mj__CreatedAt: Date;
|
|
11949
12430
|
_mj__UpdatedAt: Date;
|
|
11950
12431
|
InstalledByUser: string;
|
|
11951
|
-
MJOpenAppDependencies_OpenAppIDArray: MJOpenAppDependency_[];
|
|
11952
12432
|
MJOpenAppDependencies_DependsOnAppIDArray: MJOpenAppDependency_[];
|
|
12433
|
+
MJOpenAppDependencies_OpenAppIDArray: MJOpenAppDependency_[];
|
|
11953
12434
|
MJOpenAppInstallHistories_OpenAppIDArray: MJOpenAppInstallHistory_[];
|
|
11954
12435
|
}
|
|
11955
12436
|
export declare class CreateMJOpenAppInput {
|
|
@@ -12007,8 +12488,8 @@ export declare class MJOpenAppResolver extends ResolverBase {
|
|
|
12007
12488
|
RunMJOpenAppViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
12008
12489
|
RunMJOpenAppDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
12009
12490
|
MJOpenApp(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJOpenApp_ | null>;
|
|
12010
|
-
MJOpenAppDependencies_OpenAppIDArray(mjopenapp_: MJOpenApp_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12011
12491
|
MJOpenAppDependencies_DependsOnAppIDArray(mjopenapp_: MJOpenApp_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12492
|
+
MJOpenAppDependencies_OpenAppIDArray(mjopenapp_: MJOpenApp_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12012
12493
|
MJOpenAppInstallHistories_OpenAppIDArray(mjopenapp_: MJOpenApp_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12013
12494
|
CreateMJOpenApp(input: CreateMJOpenAppInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
12014
12495
|
UpdateMJOpenApp(input: UpdateMJOpenAppInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -13830,6 +14311,9 @@ export declare class MJRowLevelSecurityFilter_ {
|
|
|
13830
14311
|
FilterText?: string;
|
|
13831
14312
|
_mj__CreatedAt: Date;
|
|
13832
14313
|
_mj__UpdatedAt: Date;
|
|
14314
|
+
MJEntityPermissions_DeleteRLSFilterIDArray: MJEntityPermission_[];
|
|
14315
|
+
MJEntityPermissions_ReadRLSFilterIDArray: MJEntityPermission_[];
|
|
14316
|
+
MJEntityPermissions_CreateRLSFilterIDArray: MJEntityPermission_[];
|
|
13833
14317
|
MJEntityPermissions_UpdateRLSFilterIDArray: MJEntityPermission_[];
|
|
13834
14318
|
}
|
|
13835
14319
|
export declare class CreateMJRowLevelSecurityFilterInput {
|
|
@@ -13860,6 +14344,9 @@ export declare class MJRowLevelSecurityFilterResolver extends ResolverBase {
|
|
|
13860
14344
|
RunMJRowLevelSecurityFilterDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13861
14345
|
MJRowLevelSecurityFilter(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRowLevelSecurityFilter_ | null>;
|
|
13862
14346
|
AllMJRowLevelSecurityFilters({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14347
|
+
MJEntityPermissions_DeleteRLSFilterIDArray(mjrowlevelsecurityfilter_: MJRowLevelSecurityFilter_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14348
|
+
MJEntityPermissions_ReadRLSFilterIDArray(mjrowlevelsecurityfilter_: MJRowLevelSecurityFilter_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14349
|
+
MJEntityPermissions_CreateRLSFilterIDArray(mjrowlevelsecurityfilter_: MJRowLevelSecurityFilter_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13863
14350
|
MJEntityPermissions_UpdateRLSFilterIDArray(mjrowlevelsecurityfilter_: MJRowLevelSecurityFilter_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13864
14351
|
CreateMJRowLevelSecurityFilter(input: CreateMJRowLevelSecurityFilterInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13865
14352
|
UpdateMJRowLevelSecurityFilter(input: UpdateMJRowLevelSecurityFilterInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -14552,8 +15039,8 @@ export declare class MJTask_ {
|
|
|
14552
15039
|
User?: string;
|
|
14553
15040
|
Agent?: string;
|
|
14554
15041
|
RootParentID?: string;
|
|
14555
|
-
MJTaskDependencies_DependsOnTaskIDArray: MJTaskDependency_[];
|
|
14556
15042
|
MJTaskDependencies_TaskIDArray: MJTaskDependency_[];
|
|
15043
|
+
MJTaskDependencies_DependsOnTaskIDArray: MJTaskDependency_[];
|
|
14557
15044
|
MJTasks_ParentIDArray: MJTask_[];
|
|
14558
15045
|
}
|
|
14559
15046
|
export declare class CreateMJTaskInput {
|
|
@@ -14605,8 +15092,8 @@ export declare class MJTaskResolver extends ResolverBase {
|
|
|
14605
15092
|
RunMJTaskViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14606
15093
|
RunMJTaskDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14607
15094
|
MJTask(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTask_ | null>;
|
|
14608
|
-
MJTaskDependencies_DependsOnTaskIDArray(mjtask_: MJTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14609
15095
|
MJTaskDependencies_TaskIDArray(mjtask_: MJTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15096
|
+
MJTaskDependencies_DependsOnTaskIDArray(mjtask_: MJTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14610
15097
|
MJTasks_ParentIDArray(mjtask_: MJTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14611
15098
|
CreateMJTask(input: CreateMJTaskInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14612
15099
|
UpdateMJTask(input: UpdateMJTaskInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -14839,9 +15326,9 @@ export declare class MJTemplate_ {
|
|
|
14839
15326
|
User: string;
|
|
14840
15327
|
MJTemplateParams_TemplateIDArray: MJTemplateParam_[];
|
|
14841
15328
|
MJTemplateContents_TemplateIDArray: MJTemplateContent_[];
|
|
14842
|
-
MJUserNotificationTypes_SMSTemplateIDArray: MJUserNotificationType_[];
|
|
14843
|
-
MJAIPrompts_TemplateIDArray: MJAIPrompt_[];
|
|
14844
15329
|
MJUserNotificationTypes_EmailTemplateIDArray: MJUserNotificationType_[];
|
|
15330
|
+
MJAIPrompts_TemplateIDArray: MJAIPrompt_[];
|
|
15331
|
+
MJUserNotificationTypes_SMSTemplateIDArray: MJUserNotificationType_[];
|
|
14845
15332
|
MJEntityDocuments_TemplateIDArray: MJEntityDocument_[];
|
|
14846
15333
|
}
|
|
14847
15334
|
export declare class CreateMJTemplateInput {
|
|
@@ -14883,9 +15370,9 @@ export declare class MJTemplateResolver extends ResolverBase {
|
|
|
14883
15370
|
MJTemplate(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTemplate_ | null>;
|
|
14884
15371
|
MJTemplateParams_TemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14885
15372
|
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
15373
|
MJUserNotificationTypes_EmailTemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15374
|
+
MJAIPrompts_TemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15375
|
+
MJUserNotificationTypes_SMSTemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14889
15376
|
MJEntityDocuments_TemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14890
15377
|
CreateMJTemplate(input: CreateMJTemplateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14891
15378
|
UpdateMJTemplate(input: UpdateMJTemplateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -15412,8 +15899,8 @@ export declare class MJTestSuite_ {
|
|
|
15412
15899
|
Parent?: string;
|
|
15413
15900
|
RootParentID?: string;
|
|
15414
15901
|
MJTestSuites_ParentIDArray: MJTestSuite_[];
|
|
15415
|
-
MJTestSuiteTests_SuiteIDArray: MJTestSuiteTest_[];
|
|
15416
15902
|
MJTestSuiteRuns_SuiteIDArray: MJTestSuiteRun_[];
|
|
15903
|
+
MJTestSuiteTests_SuiteIDArray: MJTestSuiteTest_[];
|
|
15417
15904
|
}
|
|
15418
15905
|
export declare class CreateMJTestSuiteInput {
|
|
15419
15906
|
ID?: string;
|
|
@@ -15453,8 +15940,8 @@ export declare class MJTestSuiteResolver extends ResolverBase {
|
|
|
15453
15940
|
RunMJTestSuiteDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15454
15941
|
MJTestSuite(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTestSuite_ | null>;
|
|
15455
15942
|
MJTestSuites_ParentIDArray(mjtestsuite_: MJTestSuite_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15456
|
-
MJTestSuiteTests_SuiteIDArray(mjtestsuite_: MJTestSuite_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15457
15943
|
MJTestSuiteRuns_SuiteIDArray(mjtestsuite_: MJTestSuite_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15944
|
+
MJTestSuiteTests_SuiteIDArray(mjtestsuite_: MJTestSuite_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15458
15945
|
CreateMJTestSuite(input: CreateMJTestSuiteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15459
15946
|
UpdateMJTestSuite(input: UpdateMJTestSuiteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15460
15947
|
DeleteMJTestSuite(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -15468,8 +15955,8 @@ export declare class MJTestType_ {
|
|
|
15468
15955
|
_mj__CreatedAt: Date;
|
|
15469
15956
|
_mj__UpdatedAt: Date;
|
|
15470
15957
|
VariablesSchema?: string;
|
|
15471
|
-
MJTestRubrics_TypeIDArray: MJTestRubric_[];
|
|
15472
15958
|
MJTests_TypeIDArray: MJTest_[];
|
|
15959
|
+
MJTestRubrics_TypeIDArray: MJTestRubric_[];
|
|
15473
15960
|
}
|
|
15474
15961
|
export declare class CreateMJTestTypeInput {
|
|
15475
15962
|
ID?: string;
|
|
@@ -15502,8 +15989,8 @@ export declare class MJTestTypeResolver extends ResolverBase {
|
|
|
15502
15989
|
RunMJTestTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15503
15990
|
RunMJTestTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15504
15991
|
MJTestType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTestType_ | null>;
|
|
15505
|
-
MJTestRubrics_TypeIDArray(mjtesttype_: MJTestType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15506
15992
|
MJTests_TypeIDArray(mjtesttype_: MJTestType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15993
|
+
MJTestRubrics_TypeIDArray(mjtesttype_: MJTestType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15507
15994
|
CreateMJTestType(input: CreateMJTestTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15508
15995
|
UpdateMJTestType(input: UpdateMJTestTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15509
15996
|
DeleteMJTestType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -16306,7 +16793,7 @@ export declare class MJUser_ {
|
|
|
16306
16793
|
MJCompanyIntegrationRuns_RunByUserIDArray: MJCompanyIntegrationRun_[];
|
|
16307
16794
|
MJUserNotifications_UserIDArray: MJUserNotification_[];
|
|
16308
16795
|
MJConversations_UserIDArray: MJConversation_[];
|
|
16309
|
-
|
|
16796
|
+
MJRecordMergeLogs_ApprovedByUserIDArray: MJRecordMergeLog_[];
|
|
16310
16797
|
MJDataContexts_UserIDArray: MJDataContext_[];
|
|
16311
16798
|
MJReportCategories_UserIDArray: MJReportCategory_[];
|
|
16312
16799
|
MJUserViewCategories_UserIDArray: MJUserViewCategory_[];
|
|
@@ -16323,7 +16810,7 @@ export declare class MJUser_ {
|
|
|
16323
16810
|
MJListCategories_UserIDArray: MJListCategory_[];
|
|
16324
16811
|
MJScheduledActions_CreatedByUserIDArray: MJScheduledAction_[];
|
|
16325
16812
|
MJResourceLinks_UserIDArray: MJResourceLink_[];
|
|
16326
|
-
|
|
16813
|
+
MJAIAgentRequests_RequestForUserIDArray: MJAIAgentRequest_[];
|
|
16327
16814
|
MJAIAgentNotes_UserIDArray: MJAIAgentNote_[];
|
|
16328
16815
|
MJReportUserStates_UserIDArray: MJReportUserState_[];
|
|
16329
16816
|
MJDashboardUserPreferences_UserIDArray: MJDashboardUserPreference_[];
|
|
@@ -16331,43 +16818,45 @@ export declare class MJUser_ {
|
|
|
16331
16818
|
MJArtifactVersions_UserIDArray: MJArtifactVersion_[];
|
|
16332
16819
|
MJPublicLinks_UserIDArray: MJPublicLink_[];
|
|
16333
16820
|
MJScheduledJobRuns_ExecutedByUserIDArray: MJScheduledJobRun_[];
|
|
16334
|
-
|
|
16335
|
-
|
|
16821
|
+
MJScheduledJobs_OwnerUserIDArray: MJScheduledJob_[];
|
|
16822
|
+
MJArtifactPermissions_SharedByUserIDArray: MJArtifactPermission_[];
|
|
16336
16823
|
MJArtifactUses_UserIDArray: MJArtifactUse_[];
|
|
16337
16824
|
MJConversationDetailRatings_UserIDArray: MJConversationDetailRating_[];
|
|
16338
16825
|
MJTestRunFeedbacks_ReviewerUserIDArray: MJTestRunFeedback_[];
|
|
16339
16826
|
MJTestSuiteRuns_RunByUserIDArray: MJTestSuiteRun_[];
|
|
16340
16827
|
MJUserSettings_UserIDArray: MJUserSetting_[];
|
|
16341
|
-
MJListShares_UserIDArray: MJListShare_[];
|
|
16342
16828
|
MJListInvitations_CreatedByUserIDArray: MJListInvitation_[];
|
|
16829
|
+
MJListShares_UserIDArray: MJListShare_[];
|
|
16830
|
+
MJDashboardCategoryPermissions_SharedByUserIDArray: MJDashboardCategoryPermission_[];
|
|
16343
16831
|
MJDashboardCategoryLinks_UserIDArray: MJDashboardCategoryLink_[];
|
|
16344
|
-
|
|
16345
|
-
|
|
16346
|
-
MJAPIKeys_UserIDArray: MJAPIKey_[];
|
|
16832
|
+
MJDashboardPermissions_UserIDArray: MJDashboardPermission_[];
|
|
16833
|
+
MJAPIKeys_CreatedByUserIDArray: MJAPIKey_[];
|
|
16347
16834
|
MJUserNotificationPreferences_UserIDArray: MJUserNotificationPreference_[];
|
|
16348
16835
|
MJMCPToolExecutionLogs_UserIDArray: MJMCPToolExecutionLog_[];
|
|
16349
16836
|
MJVersionLabelRestores_UserIDArray: MJVersionLabelRestore_[];
|
|
16350
16837
|
MJOAuthAuthorizationStates_UserIDArray: MJOAuthAuthorizationState_[];
|
|
16351
|
-
MJOpenApps_InstalledByUserIDArray: MJOpenApp_[];
|
|
16352
16838
|
MJOpenAppInstallHistories_ExecutedByUserIDArray: MJOpenAppInstallHistory_[];
|
|
16839
|
+
MJOpenApps_InstalledByUserIDArray: MJOpenApp_[];
|
|
16353
16840
|
MJResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
16354
|
-
|
|
16841
|
+
MJAIAgentRequests_ResponseByUserIDArray: MJAIAgentRequest_[];
|
|
16355
16842
|
MJConversationDetails_UserIDArray: MJConversationDetail_[];
|
|
16356
16843
|
MJAccessControlRules_GrantedByUserIDArray: MJAccessControlRule_[];
|
|
16357
16844
|
MJArtifacts_UserIDArray: MJArtifact_[];
|
|
16358
|
-
|
|
16359
|
-
|
|
16360
|
-
|
|
16845
|
+
MJScheduledJobs_NotifyUserIDArray: MJScheduledJob_[];
|
|
16846
|
+
MJCollectionPermissions_UserIDArray: MJCollectionPermission_[];
|
|
16847
|
+
MJArtifactPermissions_UserIDArray: MJArtifactPermission_[];
|
|
16361
16848
|
MJTestRuns_RunByUserIDArray: MJTestRun_[];
|
|
16362
|
-
|
|
16363
|
-
|
|
16364
|
-
|
|
16849
|
+
MJDashboardPermissions_SharedByUserIDArray: MJDashboardPermission_[];
|
|
16850
|
+
MJDashboardCategoryPermissions_UserIDArray: MJDashboardCategoryPermission_[];
|
|
16851
|
+
MJAPIKeys_UserIDArray: MJAPIKey_[];
|
|
16365
16852
|
MJMCPServerConnectionPermissions_UserIDArray: MJMCPServerConnectionPermission_[];
|
|
16366
16853
|
MJVersionLabels_CreatedByUserIDArray: MJVersionLabel_[];
|
|
16854
|
+
MJDuplicateRuns_ApprovedByUserIDArray: MJDuplicateRun_[];
|
|
16367
16855
|
MJAIAgentRuns_UserIDArray: MJAIAgentRun_[];
|
|
16368
16856
|
MJAIAgentPermissions_UserIDArray: MJAIAgentPermission_[];
|
|
16369
16857
|
MJCollections_OwnerIDArray: MJCollection_[];
|
|
16370
|
-
|
|
16858
|
+
MJCollectionPermissions_SharedByUserIDArray: MJCollectionPermission_[];
|
|
16859
|
+
MJRecordMergeLogs_InitiatedByUserIDArray: MJRecordMergeLog_[];
|
|
16371
16860
|
MJTasks_UserIDArray: MJTask_[];
|
|
16372
16861
|
MJAIAgentExamples_UserIDArray: MJAIAgentExample_[];
|
|
16373
16862
|
MJAIAgents_OwnerUserIDArray: MJAIAgent_[];
|
|
@@ -16436,7 +16925,7 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
16436
16925
|
MJCompanyIntegrationRuns_RunByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16437
16926
|
MJUserNotifications_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16438
16927
|
MJConversations_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16439
|
-
|
|
16928
|
+
MJRecordMergeLogs_ApprovedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16440
16929
|
MJDataContexts_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16441
16930
|
MJReportCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16442
16931
|
MJUserViewCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -16453,7 +16942,7 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
16453
16942
|
MJListCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16454
16943
|
MJScheduledActions_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16455
16944
|
MJResourceLinks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16456
|
-
|
|
16945
|
+
MJAIAgentRequests_RequestForUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16457
16946
|
MJAIAgentNotes_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16458
16947
|
MJReportUserStates_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16459
16948
|
MJDashboardUserPreferences_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -16461,43 +16950,45 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
16461
16950
|
MJArtifactVersions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16462
16951
|
MJPublicLinks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16463
16952
|
MJScheduledJobRuns_ExecutedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16464
|
-
|
|
16465
|
-
|
|
16953
|
+
MJScheduledJobs_OwnerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16954
|
+
MJArtifactPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16466
16955
|
MJArtifactUses_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16467
16956
|
MJConversationDetailRatings_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16468
16957
|
MJTestRunFeedbacks_ReviewerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16469
16958
|
MJTestSuiteRuns_RunByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16470
16959
|
MJUserSettings_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16471
|
-
MJListShares_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16472
16960
|
MJListInvitations_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16961
|
+
MJListShares_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16962
|
+
MJDashboardCategoryPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16473
16963
|
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[]>;
|
|
16964
|
+
MJDashboardPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16965
|
+
MJAPIKeys_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16477
16966
|
MJUserNotificationPreferences_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16478
16967
|
MJMCPToolExecutionLogs_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16479
16968
|
MJVersionLabelRestores_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16480
16969
|
MJOAuthAuthorizationStates_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16481
|
-
MJOpenApps_InstalledByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16482
16970
|
MJOpenAppInstallHistories_ExecutedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16971
|
+
MJOpenApps_InstalledByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16483
16972
|
MJResourcePermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16484
|
-
|
|
16973
|
+
MJAIAgentRequests_ResponseByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16485
16974
|
MJConversationDetails_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16486
16975
|
MJAccessControlRules_GrantedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16487
16976
|
MJArtifacts_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16488
|
-
|
|
16489
|
-
|
|
16490
|
-
|
|
16977
|
+
MJScheduledJobs_NotifyUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16978
|
+
MJCollectionPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16979
|
+
MJArtifactPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16491
16980
|
MJTestRuns_RunByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16492
|
-
|
|
16493
|
-
|
|
16494
|
-
|
|
16981
|
+
MJDashboardPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16982
|
+
MJDashboardCategoryPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16983
|
+
MJAPIKeys_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16495
16984
|
MJMCPServerConnectionPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16496
16985
|
MJVersionLabels_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16986
|
+
MJDuplicateRuns_ApprovedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16497
16987
|
MJAIAgentRuns_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16498
16988
|
MJAIAgentPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16499
16989
|
MJCollections_OwnerIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16500
|
-
|
|
16990
|
+
MJCollectionPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16991
|
+
MJRecordMergeLogs_InitiatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16501
16992
|
MJTasks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16502
16993
|
MJAIAgentExamples_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16503
16994
|
MJAIAgents_OwnerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -16779,10 +17270,10 @@ export declare class MJVersionLabel_ {
|
|
|
16779
17270
|
Parent?: string;
|
|
16780
17271
|
CreatedByUser: string;
|
|
16781
17272
|
RootParentID?: string;
|
|
16782
|
-
MJVersionLabelRestores_PreRestoreLabelIDArray: MJVersionLabelRestore_[];
|
|
16783
|
-
MJVersionLabelItems_VersionLabelIDArray: MJVersionLabelItem_[];
|
|
16784
17273
|
MJVersionLabelRestores_VersionLabelIDArray: MJVersionLabelRestore_[];
|
|
16785
17274
|
MJVersionLabels_ParentIDArray: MJVersionLabel_[];
|
|
17275
|
+
MJVersionLabelRestores_PreRestoreLabelIDArray: MJVersionLabelRestore_[];
|
|
17276
|
+
MJVersionLabelItems_VersionLabelIDArray: MJVersionLabelItem_[];
|
|
16786
17277
|
}
|
|
16787
17278
|
export declare class CreateMJVersionLabelInput {
|
|
16788
17279
|
ID?: string;
|
|
@@ -16827,10 +17318,10 @@ export declare class MJVersionLabelResolver extends ResolverBase {
|
|
|
16827
17318
|
RunMJVersionLabelViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16828
17319
|
RunMJVersionLabelDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16829
17320
|
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
17321
|
MJVersionLabelRestores_VersionLabelIDArray(mjversionlabel_: MJVersionLabel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16833
17322
|
MJVersionLabels_ParentIDArray(mjversionlabel_: MJVersionLabel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17323
|
+
MJVersionLabelRestores_PreRestoreLabelIDArray(mjversionlabel_: MJVersionLabel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17324
|
+
MJVersionLabelItems_VersionLabelIDArray(mjversionlabel_: MJVersionLabel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16834
17325
|
CreateMJVersionLabel(input: CreateMJVersionLabelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16835
17326
|
UpdateMJVersionLabel(input: UpdateMJVersionLabelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16836
17327
|
DeleteMJVersionLabel(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|