@memberjunction/server 5.37.0 → 5.39.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 +79 -12
- package/dist/agents/skip-sdk.d.ts.map +1 -1
- package/dist/agents/skip-sdk.js +16 -12
- package/dist/agents/skip-sdk.js.map +1 -1
- package/dist/apolloServer/index.d.ts +0 -8
- package/dist/apolloServer/index.d.ts.map +1 -1
- package/dist/apolloServer/index.js +61 -0
- package/dist/apolloServer/index.js.map +1 -1
- package/dist/config.d.ts +68 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +24 -0
- package/dist/config.js.map +1 -1
- package/dist/context.d.ts.map +1 -1
- package/dist/context.js +2 -21
- package/dist/context.js.map +1 -1
- package/dist/generated/generated.d.ts +172 -5
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +867 -14
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/FireAndForgetHeartbeat.d.ts +51 -0
- package/dist/generic/FireAndForgetHeartbeat.d.ts.map +1 -0
- package/dist/generic/FireAndForgetHeartbeat.js +44 -0
- package/dist/generic/FireAndForgetHeartbeat.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +177 -16
- package/dist/index.js.map +1 -1
- package/dist/logging/NoLog.d.ts +50 -0
- package/dist/logging/NoLog.d.ts.map +1 -0
- package/dist/logging/NoLog.js +80 -0
- package/dist/logging/NoLog.js.map +1 -0
- package/dist/logging/bootAudit.d.ts +43 -0
- package/dist/logging/bootAudit.d.ts.map +1 -0
- package/dist/logging/bootAudit.js +83 -0
- package/dist/logging/bootAudit.js.map +1 -0
- package/dist/logging/boundaryLogPayload.d.ts +18 -0
- package/dist/logging/boundaryLogPayload.d.ts.map +1 -0
- package/dist/logging/boundaryLogPayload.js +18 -0
- package/dist/logging/boundaryLogPayload.js.map +1 -0
- package/dist/logging/secretRedactor.d.ts +23 -0
- package/dist/logging/secretRedactor.d.ts.map +1 -0
- package/dist/logging/secretRedactor.js +53 -0
- package/dist/logging/secretRedactor.js.map +1 -0
- package/dist/logging/shortenForLog.d.ts +8 -0
- package/dist/logging/shortenForLog.d.ts.map +1 -0
- package/dist/logging/shortenForLog.js +21 -0
- package/dist/logging/shortenForLog.js.map +1 -0
- package/dist/logging/variablesLoggingMiddleware.d.ts +22 -0
- package/dist/logging/variablesLoggingMiddleware.d.ts.map +1 -0
- package/dist/logging/variablesLoggingMiddleware.js +127 -0
- package/dist/logging/variablesLoggingMiddleware.js.map +1 -0
- package/dist/resolvers/GetDataResolver.d.ts.map +1 -1
- package/dist/resolvers/GetDataResolver.js +8 -4
- package/dist/resolvers/GetDataResolver.js.map +1 -1
- package/dist/resolvers/IntegrationDiscoveryResolver.d.ts +259 -2
- package/dist/resolvers/IntegrationDiscoveryResolver.d.ts.map +1 -1
- package/dist/resolvers/IntegrationDiscoveryResolver.js +1276 -117
- package/dist/resolvers/IntegrationDiscoveryResolver.js.map +1 -1
- package/dist/resolvers/IntegrationProgressResolver.d.ts +90 -0
- package/dist/resolvers/IntegrationProgressResolver.d.ts.map +1 -0
- package/dist/resolvers/IntegrationProgressResolver.js +196 -0
- package/dist/resolvers/IntegrationProgressResolver.js.map +1 -0
- package/dist/resolvers/MCPResolver.d.ts.map +1 -1
- package/dist/resolvers/MCPResolver.js +19 -14
- package/dist/resolvers/MCPResolver.js.map +1 -1
- package/dist/resolvers/QueryResolver.d.ts.map +1 -1
- package/dist/resolvers/QueryResolver.js +5 -4
- package/dist/resolvers/QueryResolver.js.map +1 -1
- package/dist/resolvers/QuerySystemUserResolver.d.ts.map +1 -1
- package/dist/resolvers/QuerySystemUserResolver.js +6 -18
- package/dist/resolvers/QuerySystemUserResolver.js.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.js +32 -64
- package/dist/resolvers/RunAIAgentResolver.js.map +1 -1
- package/dist/resolvers/RunTestResolver.d.ts.map +1 -1
- package/dist/resolvers/RunTestResolver.js +12 -2
- package/dist/resolvers/RunTestResolver.js.map +1 -1
- package/dist/resolvers/SearchEntitiesResolver.d.ts +46 -0
- package/dist/resolvers/SearchEntitiesResolver.d.ts.map +1 -0
- package/dist/resolvers/SearchEntitiesResolver.js +216 -0
- package/dist/resolvers/SearchEntitiesResolver.js.map +1 -0
- package/dist/resolvers/VectorizeEntityResolver.d.ts.map +1 -1
- package/dist/resolvers/VectorizeEntityResolver.js +14 -1
- package/dist/resolvers/VectorizeEntityResolver.js.map +1 -1
- package/dist/services/ScheduledJobsService.d.ts.map +1 -1
- package/dist/services/ScheduledJobsService.js +14 -2
- package/dist/services/ScheduledJobsService.js.map +1 -1
- package/package.json +75 -74
- package/src/__tests__/NoLog.test.ts +76 -0
- package/src/__tests__/bootAudit.test.ts +188 -0
- package/src/__tests__/boundaryLogPayload.test.ts +31 -0
- package/src/__tests__/getDataTokenRedaction.test.ts +84 -0
- package/src/__tests__/resolverBase.rls.test.ts +224 -0
- package/src/__tests__/secretRedactor.test.ts +163 -0
- package/src/__tests__/subscriptionRedaction.test.ts +217 -0
- package/src/agents/skip-sdk.ts +16 -13
- package/src/apolloServer/index.ts +58 -0
- package/src/config.ts +27 -0
- package/src/context.ts +2 -19
- package/src/generated/generated.ts +627 -15
- package/src/generic/FireAndForgetHeartbeat.ts +85 -0
- package/src/generic/__tests__/FireAndForgetHeartbeat.test.ts +99 -0
- package/src/index.ts +199 -19
- package/src/logging/NoLog.ts +88 -0
- package/src/logging/bootAudit.ts +117 -0
- package/src/logging/boundaryLogPayload.ts +19 -0
- package/src/logging/secretRedactor.ts +82 -0
- package/src/logging/shortenForLog.ts +17 -0
- package/src/logging/variablesLoggingMiddleware.ts +191 -0
- package/src/resolvers/GetDataResolver.ts +9 -5
- package/src/resolvers/IntegrationDiscoveryResolver.ts +1111 -120
- package/src/resolvers/IntegrationProgressResolver.ts +220 -0
- package/src/resolvers/MCPResolver.ts +18 -14
- package/src/resolvers/QueryResolver.ts +7 -6
- package/src/resolvers/QuerySystemUserResolver.ts +11 -25
- package/src/resolvers/RunAIAgentResolver.ts +34 -71
- package/src/resolvers/RunTestResolver.ts +14 -2
- package/src/resolvers/SearchEntitiesResolver.ts +173 -0
- package/src/resolvers/VectorizeEntityResolver.ts +14 -1
- package/src/resolvers/__tests__/IntegrationProgressResolver.test.ts +170 -0
- package/src/services/ScheduledJobsService.ts +15 -2
|
@@ -2021,6 +2021,8 @@ export declare class MJAIAgentRun_ {
|
|
|
2021
2021
|
SecondaryScopes?: string;
|
|
2022
2022
|
ExternalReferenceID?: string;
|
|
2023
2023
|
CompanyID?: string;
|
|
2024
|
+
TotalCacheReadTokensUsed?: number;
|
|
2025
|
+
TotalCacheWriteTokensUsed?: number;
|
|
2024
2026
|
Agent?: string;
|
|
2025
2027
|
ParentRun?: string;
|
|
2026
2028
|
Conversation?: string;
|
|
@@ -2090,6 +2092,8 @@ export declare class CreateMJAIAgentRunInput {
|
|
|
2090
2092
|
SecondaryScopes: string | null;
|
|
2091
2093
|
ExternalReferenceID: string | null;
|
|
2092
2094
|
CompanyID: string | null;
|
|
2095
|
+
TotalCacheReadTokensUsed: number | null;
|
|
2096
|
+
TotalCacheWriteTokensUsed: number | null;
|
|
2093
2097
|
RestoreContext___?: RestoreContextInput;
|
|
2094
2098
|
}
|
|
2095
2099
|
export declare class UpdateMJAIAgentRunInput {
|
|
@@ -2137,6 +2141,8 @@ export declare class UpdateMJAIAgentRunInput {
|
|
|
2137
2141
|
SecondaryScopes?: string | null;
|
|
2138
2142
|
ExternalReferenceID?: string | null;
|
|
2139
2143
|
CompanyID?: string | null;
|
|
2144
|
+
TotalCacheReadTokensUsed?: number | null;
|
|
2145
|
+
TotalCacheWriteTokensUsed?: number | null;
|
|
2140
2146
|
OldValues___?: KeyValuePairInput[];
|
|
2141
2147
|
RestoreContext___?: RestoreContextInput;
|
|
2142
2148
|
}
|
|
@@ -2564,6 +2570,7 @@ export declare class MJAIAgent_ {
|
|
|
2564
2570
|
MJConversationDetails_AgentIDArray: MJConversationDetail_[];
|
|
2565
2571
|
MJAIAgents_ParentIDArray: MJAIAgent_[];
|
|
2566
2572
|
MJActions_CreatedByAgentIDArray: MJAction_[];
|
|
2573
|
+
MJConversations_DefaultAgentIDArray: MJConversation_[];
|
|
2567
2574
|
}
|
|
2568
2575
|
export declare class CreateMJAIAgentInput {
|
|
2569
2576
|
ID?: string;
|
|
@@ -2740,6 +2747,7 @@ export declare class MJAIAgentResolver extends ResolverBase {
|
|
|
2740
2747
|
MJConversationDetails_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2741
2748
|
MJAIAgents_ParentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2742
2749
|
MJActions_CreatedByAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2750
|
+
MJConversations_DefaultAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2743
2751
|
CreateMJAIAgent(input: CreateMJAIAgentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2744
2752
|
UpdateMJAIAgent(input: UpdateMJAIAgentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2745
2753
|
DeleteMJAIAgent(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3222,6 +3230,8 @@ export declare class MJAIModelCost_ {
|
|
|
3222
3230
|
Comments?: string;
|
|
3223
3231
|
_mj__CreatedAt: Date;
|
|
3224
3232
|
_mj__UpdatedAt: Date;
|
|
3233
|
+
CacheReadPricePerUnit?: number;
|
|
3234
|
+
CacheWritePricePerUnit?: number;
|
|
3225
3235
|
Model: string;
|
|
3226
3236
|
Vendor: string;
|
|
3227
3237
|
PriceType: string;
|
|
@@ -3241,6 +3251,8 @@ export declare class CreateMJAIModelCostInput {
|
|
|
3241
3251
|
UnitTypeID?: string;
|
|
3242
3252
|
ProcessingType?: string;
|
|
3243
3253
|
Comments: string | null;
|
|
3254
|
+
CacheReadPricePerUnit: number | null;
|
|
3255
|
+
CacheWritePricePerUnit: number | null;
|
|
3244
3256
|
RestoreContext___?: RestoreContextInput;
|
|
3245
3257
|
}
|
|
3246
3258
|
export declare class UpdateMJAIModelCostInput {
|
|
@@ -3257,6 +3269,8 @@ export declare class UpdateMJAIModelCostInput {
|
|
|
3257
3269
|
UnitTypeID?: string;
|
|
3258
3270
|
ProcessingType?: string;
|
|
3259
3271
|
Comments?: string | null;
|
|
3272
|
+
CacheReadPricePerUnit?: number | null;
|
|
3273
|
+
CacheWritePricePerUnit?: number | null;
|
|
3260
3274
|
OldValues___?: KeyValuePairInput[];
|
|
3261
3275
|
RestoreContext___?: RestoreContextInput;
|
|
3262
3276
|
}
|
|
@@ -3991,6 +4005,10 @@ export declare class MJAIPromptRun_ {
|
|
|
3991
4005
|
Comments?: string;
|
|
3992
4006
|
TestRunID?: string;
|
|
3993
4007
|
AssistantPrefill?: string;
|
|
4008
|
+
TokensCacheRead?: number;
|
|
4009
|
+
TokensCacheWrite?: number;
|
|
4010
|
+
TokensCacheReadRollup?: number;
|
|
4011
|
+
TokensCacheWriteRollup?: number;
|
|
3994
4012
|
Prompt: string;
|
|
3995
4013
|
Model: string;
|
|
3996
4014
|
Vendor: string;
|
|
@@ -4095,6 +4113,10 @@ export declare class CreateMJAIPromptRunInput {
|
|
|
4095
4113
|
Comments: string | null;
|
|
4096
4114
|
TestRunID: string | null;
|
|
4097
4115
|
AssistantPrefill: string | null;
|
|
4116
|
+
TokensCacheRead: number | null;
|
|
4117
|
+
TokensCacheWrite: number | null;
|
|
4118
|
+
TokensCacheReadRollup: number | null;
|
|
4119
|
+
TokensCacheWriteRollup: number | null;
|
|
4098
4120
|
RestoreContext___?: RestoreContextInput;
|
|
4099
4121
|
}
|
|
4100
4122
|
export declare class UpdateMJAIPromptRunInput {
|
|
@@ -4181,6 +4203,10 @@ export declare class UpdateMJAIPromptRunInput {
|
|
|
4181
4203
|
Comments?: string | null;
|
|
4182
4204
|
TestRunID?: string | null;
|
|
4183
4205
|
AssistantPrefill?: string | null;
|
|
4206
|
+
TokensCacheRead?: number | null;
|
|
4207
|
+
TokensCacheWrite?: number | null;
|
|
4208
|
+
TokensCacheReadRollup?: number | null;
|
|
4209
|
+
TokensCacheWriteRollup?: number | null;
|
|
4184
4210
|
OldValues___?: KeyValuePairInput[];
|
|
4185
4211
|
RestoreContext___?: RestoreContextInput;
|
|
4186
4212
|
}
|
|
@@ -5244,6 +5270,7 @@ export declare class MJApplication_ {
|
|
|
5244
5270
|
MJDashboards_ApplicationIDArray: MJDashboard_[];
|
|
5245
5271
|
MJApplicationRoles_ApplicationIDArray: MJApplicationRole_[];
|
|
5246
5272
|
MJDashboardUserPreferences_ApplicationIDArray: MJDashboardUserPreference_[];
|
|
5273
|
+
MJConversations_ApplicationIDArray: MJConversation_[];
|
|
5247
5274
|
}
|
|
5248
5275
|
export declare class CreateMJApplicationInput {
|
|
5249
5276
|
ID?: string;
|
|
@@ -5305,6 +5332,7 @@ export declare class MJApplicationResolver extends ResolverBase {
|
|
|
5305
5332
|
MJDashboards_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5306
5333
|
MJApplicationRoles_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5307
5334
|
MJDashboardUserPreferences_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5335
|
+
MJConversations_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5308
5336
|
CreateMJApplication(input: CreateMJApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5309
5337
|
UpdateMJApplication(input: UpdateMJApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5310
5338
|
DeleteMJApplication(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5737,7 +5765,7 @@ export declare class MJArtifactUse_ {
|
|
|
5737
5765
|
UsageContext?: string;
|
|
5738
5766
|
_mj__CreatedAt: Date;
|
|
5739
5767
|
_mj__UpdatedAt: Date;
|
|
5740
|
-
ArtifactVersion
|
|
5768
|
+
ArtifactVersion?: string;
|
|
5741
5769
|
User: string;
|
|
5742
5770
|
}
|
|
5743
5771
|
export declare class CreateMJArtifactUseInput {
|
|
@@ -5784,7 +5812,7 @@ export declare class MJArtifactVersionAttribute_ {
|
|
|
5784
5812
|
StandardProperty?: string;
|
|
5785
5813
|
_mj__CreatedAt: Date;
|
|
5786
5814
|
_mj__UpdatedAt: Date;
|
|
5787
|
-
ArtifactVersion
|
|
5815
|
+
ArtifactVersion?: string;
|
|
5788
5816
|
}
|
|
5789
5817
|
export declare class CreateMJArtifactVersionAttributeInput {
|
|
5790
5818
|
ID?: string;
|
|
@@ -6197,7 +6225,7 @@ export declare class MJCollectionArtifact_ {
|
|
|
6197
6225
|
_mj__UpdatedAt: Date;
|
|
6198
6226
|
ArtifactVersionID: string;
|
|
6199
6227
|
Collection: string;
|
|
6200
|
-
ArtifactVersion
|
|
6228
|
+
ArtifactVersion?: string;
|
|
6201
6229
|
}
|
|
6202
6230
|
export declare class CreateMJCollectionArtifactInput {
|
|
6203
6231
|
ID?: string;
|
|
@@ -7481,6 +7509,7 @@ export declare class MJComponent_ {
|
|
|
7481
7509
|
MJComponentDependencies_ComponentIDArray: MJComponentDependency_[];
|
|
7482
7510
|
MJComponentLibraryLinks_ComponentIDArray: MJComponentLibraryLink_[];
|
|
7483
7511
|
MJComponentDependencies_DependencyComponentIDArray: MJComponentDependency_[];
|
|
7512
|
+
MJEntityFormOverrides_ComponentIDArray: MJEntityFormOverride_[];
|
|
7484
7513
|
}
|
|
7485
7514
|
export declare class CreateMJComponentInput {
|
|
7486
7515
|
ID?: string;
|
|
@@ -7560,6 +7589,7 @@ export declare class MJComponentResolver extends ResolverBase {
|
|
|
7560
7589
|
MJComponentDependencies_ComponentIDArray(mjcomponent_: MJComponent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7561
7590
|
MJComponentLibraryLinks_ComponentIDArray(mjcomponent_: MJComponent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7562
7591
|
MJComponentDependencies_DependencyComponentIDArray(mjcomponent_: MJComponent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7592
|
+
MJEntityFormOverrides_ComponentIDArray(mjcomponent_: MJComponent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7563
7593
|
CreateMJComponent(input: CreateMJComponentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7564
7594
|
UpdateMJComponent(input: UpdateMJComponentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7565
7595
|
DeleteMJComponent(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8526,7 +8556,7 @@ export declare class MJConversationDetailArtifact_ {
|
|
|
8526
8556
|
_mj__CreatedAt: Date;
|
|
8527
8557
|
_mj__UpdatedAt: Date;
|
|
8528
8558
|
ConversationDetail: string;
|
|
8529
|
-
ArtifactVersion
|
|
8559
|
+
ArtifactVersion?: string;
|
|
8530
8560
|
}
|
|
8531
8561
|
export declare class CreateMJConversationDetailArtifactInput {
|
|
8532
8562
|
ID?: string;
|
|
@@ -8582,7 +8612,7 @@ export declare class MJConversationDetailAttachment_ {
|
|
|
8582
8612
|
ConversationDetail: string;
|
|
8583
8613
|
Modality: string;
|
|
8584
8614
|
File?: string;
|
|
8585
|
-
ArtifactVersion?:
|
|
8615
|
+
ArtifactVersion?: string;
|
|
8586
8616
|
}
|
|
8587
8617
|
export declare class CreateMJConversationDetailAttachmentInput {
|
|
8588
8618
|
ID?: string;
|
|
@@ -8833,12 +8863,18 @@ export declare class MJConversation_ {
|
|
|
8833
8863
|
ProjectID?: string;
|
|
8834
8864
|
IsPinned: boolean;
|
|
8835
8865
|
TestRunID?: string;
|
|
8866
|
+
ApplicationScope: string;
|
|
8867
|
+
ApplicationID?: string;
|
|
8868
|
+
DefaultAgentID?: string;
|
|
8869
|
+
AdditionalData?: string;
|
|
8836
8870
|
User: string;
|
|
8837
8871
|
LinkedEntity?: string;
|
|
8838
8872
|
DataContext?: string;
|
|
8839
8873
|
Environment: string;
|
|
8840
8874
|
Project?: string;
|
|
8841
8875
|
TestRun?: string;
|
|
8876
|
+
Application?: string;
|
|
8877
|
+
DefaultAgent?: string;
|
|
8842
8878
|
MJConversationDetails_ConversationIDArray: MJConversationDetail_[];
|
|
8843
8879
|
MJReports_ConversationIDArray: MJReport_[];
|
|
8844
8880
|
MJConversationArtifacts_ConversationIDArray: MJConversationArtifact_[];
|
|
@@ -8862,6 +8898,10 @@ export declare class CreateMJConversationInput {
|
|
|
8862
8898
|
ProjectID: string | null;
|
|
8863
8899
|
IsPinned?: boolean;
|
|
8864
8900
|
TestRunID: string | null;
|
|
8901
|
+
ApplicationScope?: string;
|
|
8902
|
+
ApplicationID: string | null;
|
|
8903
|
+
DefaultAgentID: string | null;
|
|
8904
|
+
AdditionalData: string | null;
|
|
8865
8905
|
RestoreContext___?: RestoreContextInput;
|
|
8866
8906
|
}
|
|
8867
8907
|
export declare class UpdateMJConversationInput {
|
|
@@ -8880,6 +8920,10 @@ export declare class UpdateMJConversationInput {
|
|
|
8880
8920
|
ProjectID?: string | null;
|
|
8881
8921
|
IsPinned?: boolean;
|
|
8882
8922
|
TestRunID?: string | null;
|
|
8923
|
+
ApplicationScope?: string;
|
|
8924
|
+
ApplicationID?: string | null;
|
|
8925
|
+
DefaultAgentID?: string | null;
|
|
8926
|
+
AdditionalData?: string | null;
|
|
8883
8927
|
OldValues___?: KeyValuePairInput[];
|
|
8884
8928
|
RestoreContext___?: RestoreContextInput;
|
|
8885
8929
|
}
|
|
@@ -10544,6 +10588,7 @@ export declare class MJEntity_ {
|
|
|
10544
10588
|
MJResourceTypes_CategoryEntityIDArray: MJResourceType_[];
|
|
10545
10589
|
MJAIAgentRuns_PrimaryScopeEntityIDArray: MJAIAgentRun_[];
|
|
10546
10590
|
MJTestRuns_TargetLogEntityIDArray: MJTestRun_[];
|
|
10591
|
+
MJEntityFormOverrides_EntityIDArray: MJEntityFormOverride_[];
|
|
10547
10592
|
}
|
|
10548
10593
|
export declare class CreateMJEntityInput {
|
|
10549
10594
|
ID?: string;
|
|
@@ -10748,6 +10793,7 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
10748
10793
|
MJResourceTypes_CategoryEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10749
10794
|
MJAIAgentRuns_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10750
10795
|
MJTestRuns_TargetLogEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10796
|
+
MJEntityFormOverrides_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10751
10797
|
CreateMJEntity(input: CreateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10752
10798
|
UpdateMJEntity(input: UpdateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10753
10799
|
DeleteMJEntity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11611,6 +11657,72 @@ export declare class MJEntityFieldResolver extends ResolverBase {
|
|
|
11611
11657
|
UpdateMJEntityField(input: UpdateMJEntityFieldInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11612
11658
|
DeleteMJEntityField(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11613
11659
|
}
|
|
11660
|
+
export declare class MJEntityFormOverride_ {
|
|
11661
|
+
ID: string;
|
|
11662
|
+
EntityID: string;
|
|
11663
|
+
ComponentID: string;
|
|
11664
|
+
Name: string;
|
|
11665
|
+
Description?: string;
|
|
11666
|
+
Scope: string;
|
|
11667
|
+
UserID?: string;
|
|
11668
|
+
RoleID?: string;
|
|
11669
|
+
Priority: number;
|
|
11670
|
+
Status: string;
|
|
11671
|
+
Notes?: string;
|
|
11672
|
+
_mj__CreatedAt: Date;
|
|
11673
|
+
_mj__UpdatedAt: Date;
|
|
11674
|
+
Entity: string;
|
|
11675
|
+
Component: string;
|
|
11676
|
+
User?: string;
|
|
11677
|
+
Role?: string;
|
|
11678
|
+
}
|
|
11679
|
+
export declare class CreateMJEntityFormOverrideInput {
|
|
11680
|
+
ID?: string;
|
|
11681
|
+
EntityID?: string;
|
|
11682
|
+
ComponentID?: string;
|
|
11683
|
+
Name?: string;
|
|
11684
|
+
Description: string | null;
|
|
11685
|
+
Scope?: string;
|
|
11686
|
+
UserID: string | null;
|
|
11687
|
+
RoleID: string | null;
|
|
11688
|
+
Priority?: number;
|
|
11689
|
+
Status?: string;
|
|
11690
|
+
Notes: string | null;
|
|
11691
|
+
RestoreContext___?: RestoreContextInput;
|
|
11692
|
+
}
|
|
11693
|
+
export declare class UpdateMJEntityFormOverrideInput {
|
|
11694
|
+
ID: string;
|
|
11695
|
+
EntityID?: string;
|
|
11696
|
+
ComponentID?: string;
|
|
11697
|
+
Name?: string;
|
|
11698
|
+
Description?: string | null;
|
|
11699
|
+
Scope?: string;
|
|
11700
|
+
UserID?: string | null;
|
|
11701
|
+
RoleID?: string | null;
|
|
11702
|
+
Priority?: number;
|
|
11703
|
+
Status?: string;
|
|
11704
|
+
Notes?: string | null;
|
|
11705
|
+
OldValues___?: KeyValuePairInput[];
|
|
11706
|
+
RestoreContext___?: RestoreContextInput;
|
|
11707
|
+
}
|
|
11708
|
+
export declare class RunMJEntityFormOverrideViewResult {
|
|
11709
|
+
Results: MJEntityFormOverride_[];
|
|
11710
|
+
UserViewRunID?: string;
|
|
11711
|
+
RowCount: number;
|
|
11712
|
+
TotalRowCount: number;
|
|
11713
|
+
ExecutionTime: number;
|
|
11714
|
+
ErrorMessage?: string;
|
|
11715
|
+
Success: boolean;
|
|
11716
|
+
}
|
|
11717
|
+
export declare class MJEntityFormOverrideResolver extends ResolverBase {
|
|
11718
|
+
RunMJEntityFormOverrideViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11719
|
+
RunMJEntityFormOverrideViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11720
|
+
RunMJEntityFormOverrideDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11721
|
+
MJEntityFormOverride(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJEntityFormOverride_ | null>;
|
|
11722
|
+
CreateMJEntityFormOverride(input: CreateMJEntityFormOverrideInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11723
|
+
UpdateMJEntityFormOverride(input: UpdateMJEntityFormOverrideInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11724
|
+
DeleteMJEntityFormOverride(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11725
|
+
}
|
|
11614
11726
|
export declare class MJEntityOrganicKeyRelatedEntity_ {
|
|
11615
11727
|
ID: string;
|
|
11616
11728
|
EntityOrganicKeyID: string;
|
|
@@ -12776,6 +12888,7 @@ export declare class MJIntegrationObjectField_ {
|
|
|
12776
12888
|
_mj__CreatedAt: Date;
|
|
12777
12889
|
_mj__UpdatedAt: Date;
|
|
12778
12890
|
IsCustom: boolean;
|
|
12891
|
+
MetadataSource: string;
|
|
12779
12892
|
IntegrationObject: string;
|
|
12780
12893
|
RelatedIntegrationObject?: string;
|
|
12781
12894
|
}
|
|
@@ -12802,6 +12915,7 @@ export declare class CreateMJIntegrationObjectFieldInput {
|
|
|
12802
12915
|
Configuration: string | null;
|
|
12803
12916
|
Status?: string;
|
|
12804
12917
|
IsCustom?: boolean;
|
|
12918
|
+
MetadataSource?: string;
|
|
12805
12919
|
RestoreContext___?: RestoreContextInput;
|
|
12806
12920
|
}
|
|
12807
12921
|
export declare class UpdateMJIntegrationObjectFieldInput {
|
|
@@ -12827,6 +12941,7 @@ export declare class UpdateMJIntegrationObjectFieldInput {
|
|
|
12827
12941
|
Configuration?: string | null;
|
|
12828
12942
|
Status?: string;
|
|
12829
12943
|
IsCustom?: boolean;
|
|
12944
|
+
MetadataSource?: string;
|
|
12830
12945
|
OldValues___?: KeyValuePairInput[];
|
|
12831
12946
|
RestoreContext___?: RestoreContextInput;
|
|
12832
12947
|
}
|
|
@@ -12872,6 +12987,20 @@ export declare class MJIntegrationObject_ {
|
|
|
12872
12987
|
WriteMethod?: string;
|
|
12873
12988
|
DeleteMethod?: string;
|
|
12874
12989
|
IsCustom: boolean;
|
|
12990
|
+
CreateAPIPath?: string;
|
|
12991
|
+
CreateMethod?: string;
|
|
12992
|
+
CreateBodyShape?: string;
|
|
12993
|
+
CreateBodyKey?: string;
|
|
12994
|
+
CreateIDLocation?: string;
|
|
12995
|
+
UpdateAPIPath?: string;
|
|
12996
|
+
UpdateMethod?: string;
|
|
12997
|
+
UpdateBodyShape?: string;
|
|
12998
|
+
UpdateBodyKey?: string;
|
|
12999
|
+
UpdateIDLocation?: string;
|
|
13000
|
+
DeleteAPIPath?: string;
|
|
13001
|
+
DeleteIDLocation?: string;
|
|
13002
|
+
IncrementalWatermarkField?: string;
|
|
13003
|
+
MetadataSource: string;
|
|
12875
13004
|
Integration: string;
|
|
12876
13005
|
MJIntegrationObjectFields_IntegrationObjectIDArray: MJIntegrationObjectField_[];
|
|
12877
13006
|
MJIntegrationObjectFields_RelatedIntegrationObjectIDArray: MJIntegrationObjectField_[];
|
|
@@ -12898,6 +13027,20 @@ export declare class CreateMJIntegrationObjectInput {
|
|
|
12898
13027
|
WriteMethod?: string | null;
|
|
12899
13028
|
DeleteMethod?: string | null;
|
|
12900
13029
|
IsCustom?: boolean;
|
|
13030
|
+
CreateAPIPath: string | null;
|
|
13031
|
+
CreateMethod: string | null;
|
|
13032
|
+
CreateBodyShape: string | null;
|
|
13033
|
+
CreateBodyKey: string | null;
|
|
13034
|
+
CreateIDLocation: string | null;
|
|
13035
|
+
UpdateAPIPath: string | null;
|
|
13036
|
+
UpdateMethod: string | null;
|
|
13037
|
+
UpdateBodyShape: string | null;
|
|
13038
|
+
UpdateBodyKey: string | null;
|
|
13039
|
+
UpdateIDLocation: string | null;
|
|
13040
|
+
DeleteAPIPath: string | null;
|
|
13041
|
+
DeleteIDLocation: string | null;
|
|
13042
|
+
IncrementalWatermarkField: string | null;
|
|
13043
|
+
MetadataSource?: string;
|
|
12901
13044
|
RestoreContext___?: RestoreContextInput;
|
|
12902
13045
|
}
|
|
12903
13046
|
export declare class UpdateMJIntegrationObjectInput {
|
|
@@ -12922,6 +13065,20 @@ export declare class UpdateMJIntegrationObjectInput {
|
|
|
12922
13065
|
WriteMethod?: string | null;
|
|
12923
13066
|
DeleteMethod?: string | null;
|
|
12924
13067
|
IsCustom?: boolean;
|
|
13068
|
+
CreateAPIPath?: string | null;
|
|
13069
|
+
CreateMethod?: string | null;
|
|
13070
|
+
CreateBodyShape?: string | null;
|
|
13071
|
+
CreateBodyKey?: string | null;
|
|
13072
|
+
CreateIDLocation?: string | null;
|
|
13073
|
+
UpdateAPIPath?: string | null;
|
|
13074
|
+
UpdateMethod?: string | null;
|
|
13075
|
+
UpdateBodyShape?: string | null;
|
|
13076
|
+
UpdateBodyKey?: string | null;
|
|
13077
|
+
UpdateIDLocation?: string | null;
|
|
13078
|
+
DeleteAPIPath?: string | null;
|
|
13079
|
+
DeleteIDLocation?: string | null;
|
|
13080
|
+
IncrementalWatermarkField?: string | null;
|
|
13081
|
+
MetadataSource?: string;
|
|
12925
13082
|
OldValues___?: KeyValuePairInput[];
|
|
12926
13083
|
RestoreContext___?: RestoreContextInput;
|
|
12927
13084
|
}
|
|
@@ -16586,6 +16743,7 @@ export declare class MJRole_ {
|
|
|
16586
16743
|
MJResourcePermissions_RoleIDArray: MJResourcePermission_[];
|
|
16587
16744
|
MJAIAgentPermissions_RoleIDArray: MJAIAgentPermission_[];
|
|
16588
16745
|
MJSearchScopePermissions_RoleIDArray: MJSearchScopePermission_[];
|
|
16746
|
+
MJEntityFormOverrides_RoleIDArray: MJEntityFormOverride_[];
|
|
16589
16747
|
}
|
|
16590
16748
|
export declare class CreateMJRoleInput {
|
|
16591
16749
|
ID?: string;
|
|
@@ -16630,6 +16788,7 @@ export declare class MJRoleResolver extends ResolverBase {
|
|
|
16630
16788
|
MJResourcePermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16631
16789
|
MJAIAgentPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16632
16790
|
MJSearchScopePermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16791
|
+
MJEntityFormOverrides_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16633
16792
|
CreateMJRole(input: CreateMJRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16634
16793
|
UpdateMJRole(input: UpdateMJRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16635
16794
|
DeleteMJRole(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -16956,6 +17115,7 @@ export declare class MJScheduledJob_ {
|
|
|
16956
17115
|
ConcurrencyMode: string;
|
|
16957
17116
|
_mj__CreatedAt: Date;
|
|
16958
17117
|
_mj__UpdatedAt: Date;
|
|
17118
|
+
RunImmediatelyIfNeverRun: boolean;
|
|
16959
17119
|
JobType: string;
|
|
16960
17120
|
OwnerUser?: string;
|
|
16961
17121
|
NotifyUser?: string;
|
|
@@ -16989,6 +17149,7 @@ export declare class CreateMJScheduledJobInput {
|
|
|
16989
17149
|
LockedByInstance: string | null;
|
|
16990
17150
|
ExpectedCompletionAt: Date | null;
|
|
16991
17151
|
ConcurrencyMode?: string;
|
|
17152
|
+
RunImmediatelyIfNeverRun?: boolean;
|
|
16992
17153
|
RestoreContext___?: RestoreContextInput;
|
|
16993
17154
|
}
|
|
16994
17155
|
export declare class UpdateMJScheduledJobInput {
|
|
@@ -17018,6 +17179,7 @@ export declare class UpdateMJScheduledJobInput {
|
|
|
17018
17179
|
LockedByInstance?: string | null;
|
|
17019
17180
|
ExpectedCompletionAt?: Date | null;
|
|
17020
17181
|
ConcurrencyMode?: string;
|
|
17182
|
+
RunImmediatelyIfNeverRun?: boolean;
|
|
17021
17183
|
OldValues___?: KeyValuePairInput[];
|
|
17022
17184
|
RestoreContext___?: RestoreContextInput;
|
|
17023
17185
|
}
|
|
@@ -17997,6 +18159,7 @@ export declare class MJTagSynonym_ {
|
|
|
17997
18159
|
Source: string;
|
|
17998
18160
|
_mj__CreatedAt: Date;
|
|
17999
18161
|
_mj__UpdatedAt: Date;
|
|
18162
|
+
Status: string;
|
|
18000
18163
|
Tag: string;
|
|
18001
18164
|
}
|
|
18002
18165
|
export declare class CreateMJTagSynonymInput {
|
|
@@ -18004,6 +18167,7 @@ export declare class CreateMJTagSynonymInput {
|
|
|
18004
18167
|
TagID?: string;
|
|
18005
18168
|
Synonym?: string;
|
|
18006
18169
|
Source?: string;
|
|
18170
|
+
Status?: string;
|
|
18007
18171
|
RestoreContext___?: RestoreContextInput;
|
|
18008
18172
|
}
|
|
18009
18173
|
export declare class UpdateMJTagSynonymInput {
|
|
@@ -18011,6 +18175,7 @@ export declare class UpdateMJTagSynonymInput {
|
|
|
18011
18175
|
TagID?: string;
|
|
18012
18176
|
Synonym?: string;
|
|
18013
18177
|
Source?: string;
|
|
18178
|
+
Status?: string;
|
|
18014
18179
|
OldValues___?: KeyValuePairInput[];
|
|
18015
18180
|
RestoreContext___?: RestoreContextInput;
|
|
18016
18181
|
}
|
|
@@ -20194,6 +20359,7 @@ export declare class MJUser_ {
|
|
|
20194
20359
|
MJTasks_UserIDArray: MJTask_[];
|
|
20195
20360
|
MJAIAgents_OwnerUserIDArray: MJAIAgent_[];
|
|
20196
20361
|
MJLists_LastRefreshedByUserIDArray: MJList_[];
|
|
20362
|
+
MJEntityFormOverrides_UserIDArray: MJEntityFormOverride_[];
|
|
20197
20363
|
}
|
|
20198
20364
|
export declare class CreateMJUserInput {
|
|
20199
20365
|
ID?: string;
|
|
@@ -20342,6 +20508,7 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
20342
20508
|
MJTasks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20343
20509
|
MJAIAgents_OwnerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20344
20510
|
MJLists_LastRefreshedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20511
|
+
MJEntityFormOverrides_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20345
20512
|
CreateMJUser(input: CreateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
20346
20513
|
UpdateMJUser(input: UpdateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
20347
20514
|
DeleteMJUser(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|