@memberjunction/server 5.32.0 → 5.34.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 +2 -1
- package/dist/agents/skip-agent.d.ts +3 -1
- package/dist/agents/skip-agent.d.ts.map +1 -1
- package/dist/agents/skip-agent.js +15 -3
- package/dist/agents/skip-agent.js.map +1 -1
- package/dist/auth/newUsers.d.ts.map +1 -1
- package/dist/auth/newUsers.js +11 -3
- package/dist/auth/newUsers.js.map +1 -1
- package/dist/context.d.ts.map +1 -1
- package/dist/context.js +23 -3
- package/dist/context.js.map +1 -1
- package/dist/generated/generated.d.ts +551 -5
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +3277 -120
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/ResolverBase.d.ts +1 -1
- package/dist/generic/ResolverBase.d.ts.map +1 -1
- package/dist/generic/ResolverBase.js +9 -2
- package/dist/generic/ResolverBase.js.map +1 -1
- package/dist/generic/RunViewResolver.d.ts +5 -1
- package/dist/generic/RunViewResolver.d.ts.map +1 -1
- package/dist/generic/RunViewResolver.js +33 -2
- package/dist/generic/RunViewResolver.js.map +1 -1
- package/dist/index.d.ts +12 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +29 -9
- package/dist/index.js.map +1 -1
- package/dist/resolvers/AvailableSearchProvidersResolver.d.ts +26 -0
- package/dist/resolvers/AvailableSearchProvidersResolver.d.ts.map +1 -0
- package/dist/resolvers/AvailableSearchProvidersResolver.js +65 -0
- package/dist/resolvers/AvailableSearchProvidersResolver.js.map +1 -0
- package/dist/resolvers/ComponentRegistryResolver.d.ts +11 -25
- package/dist/resolvers/ComponentRegistryResolver.d.ts.map +1 -1
- package/dist/resolvers/ComponentRegistryResolver.js +51 -93
- package/dist/resolvers/ComponentRegistryResolver.js.map +1 -1
- package/dist/resolvers/GetDataResolver.d.ts.map +1 -1
- package/dist/resolvers/GetDataResolver.js +5 -1
- package/dist/resolvers/GetDataResolver.js.map +1 -1
- package/dist/resolvers/IntegrationDiscoveryResolver.d.ts.map +1 -1
- package/dist/resolvers/IntegrationDiscoveryResolver.js +9 -4
- package/dist/resolvers/IntegrationDiscoveryResolver.js.map +1 -1
- package/dist/resolvers/QuerySystemUserResolver.d.ts +6 -0
- package/dist/resolvers/QuerySystemUserResolver.d.ts.map +1 -1
- package/dist/resolvers/QuerySystemUserResolver.js +31 -1
- package/dist/resolvers/QuerySystemUserResolver.js.map +1 -1
- package/dist/resolvers/SearchKnowledgeResolver.d.ts +44 -1
- package/dist/resolvers/SearchKnowledgeResolver.d.ts.map +1 -1
- package/dist/resolvers/SearchKnowledgeResolver.js +217 -7
- package/dist/resolvers/SearchKnowledgeResolver.js.map +1 -1
- package/dist/resolvers/SearchKnowledgeStreamResolver.d.ts +79 -0
- package/dist/resolvers/SearchKnowledgeStreamResolver.d.ts.map +1 -0
- package/dist/resolvers/SearchKnowledgeStreamResolver.js +342 -0
- package/dist/resolvers/SearchKnowledgeStreamResolver.js.map +1 -0
- package/dist/types.d.ts +6 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +68 -68
- package/src/__tests__/databaseAbstraction.test.ts +123 -61
- package/src/agents/skip-agent.ts +18 -4
- package/src/auth/newUsers.ts +12 -3
- package/src/context.ts +21 -3
- package/src/generated/generated.ts +2229 -80
- package/src/generic/ResolverBase.ts +11 -2
- package/src/generic/RunViewResolver.ts +29 -2
- package/src/index.ts +29 -9
- package/src/resolvers/AvailableSearchProvidersResolver.ts +43 -0
- package/src/resolvers/ComponentRegistryResolver.ts +71 -123
- package/src/resolvers/GetDataResolver.ts +6 -2
- package/src/resolvers/IntegrationDiscoveryResolver.ts +10 -4
- package/src/resolvers/QuerySystemUserResolver.ts +27 -1
- package/src/resolvers/SearchKnowledgeResolver.ts +205 -4
- package/src/resolvers/SearchKnowledgeStreamResolver.ts +338 -0
- package/src/types.ts +6 -1
|
@@ -2167,6 +2167,77 @@ export declare class MJAIAgentRunResolver extends ResolverBase {
|
|
|
2167
2167
|
UpdateMJAIAgentRun(input: UpdateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2168
2168
|
DeleteMJAIAgentRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2169
2169
|
}
|
|
2170
|
+
export declare class MJAIAgentSearchScope_ {
|
|
2171
|
+
ID: string;
|
|
2172
|
+
AgentID: string;
|
|
2173
|
+
SearchScopeID: string;
|
|
2174
|
+
Phase: string;
|
|
2175
|
+
Status: string;
|
|
2176
|
+
StartAt?: Date;
|
|
2177
|
+
EndAt?: Date;
|
|
2178
|
+
Priority: number;
|
|
2179
|
+
MaxResults?: number;
|
|
2180
|
+
MinScore?: number;
|
|
2181
|
+
QueryTemplateID?: string;
|
|
2182
|
+
FusionWeightsOverride?: string;
|
|
2183
|
+
IsDefault: boolean;
|
|
2184
|
+
_mj__CreatedAt: Date;
|
|
2185
|
+
_mj__UpdatedAt: Date;
|
|
2186
|
+
Agent?: string;
|
|
2187
|
+
SearchScope: string;
|
|
2188
|
+
QueryTemplate?: string;
|
|
2189
|
+
}
|
|
2190
|
+
export declare class CreateMJAIAgentSearchScopeInput {
|
|
2191
|
+
ID?: string;
|
|
2192
|
+
AgentID?: string;
|
|
2193
|
+
SearchScopeID?: string;
|
|
2194
|
+
Phase?: string;
|
|
2195
|
+
Status?: string;
|
|
2196
|
+
StartAt: Date | null;
|
|
2197
|
+
EndAt: Date | null;
|
|
2198
|
+
Priority?: number;
|
|
2199
|
+
MaxResults: number | null;
|
|
2200
|
+
MinScore: number | null;
|
|
2201
|
+
QueryTemplateID: string | null;
|
|
2202
|
+
FusionWeightsOverride: string | null;
|
|
2203
|
+
IsDefault?: boolean;
|
|
2204
|
+
RestoreContext___?: RestoreContextInput;
|
|
2205
|
+
}
|
|
2206
|
+
export declare class UpdateMJAIAgentSearchScopeInput {
|
|
2207
|
+
ID: string;
|
|
2208
|
+
AgentID?: string;
|
|
2209
|
+
SearchScopeID?: string;
|
|
2210
|
+
Phase?: string;
|
|
2211
|
+
Status?: string;
|
|
2212
|
+
StartAt?: Date | null;
|
|
2213
|
+
EndAt?: Date | null;
|
|
2214
|
+
Priority?: number;
|
|
2215
|
+
MaxResults?: number | null;
|
|
2216
|
+
MinScore?: number | null;
|
|
2217
|
+
QueryTemplateID?: string | null;
|
|
2218
|
+
FusionWeightsOverride?: string | null;
|
|
2219
|
+
IsDefault?: boolean;
|
|
2220
|
+
OldValues___?: KeyValuePairInput[];
|
|
2221
|
+
RestoreContext___?: RestoreContextInput;
|
|
2222
|
+
}
|
|
2223
|
+
export declare class RunMJAIAgentSearchScopeViewResult {
|
|
2224
|
+
Results: MJAIAgentSearchScope_[];
|
|
2225
|
+
UserViewRunID?: string;
|
|
2226
|
+
RowCount: number;
|
|
2227
|
+
TotalRowCount: number;
|
|
2228
|
+
ExecutionTime: number;
|
|
2229
|
+
ErrorMessage?: string;
|
|
2230
|
+
Success: boolean;
|
|
2231
|
+
}
|
|
2232
|
+
export declare class MJAIAgentSearchScopeResolver extends ResolverBase {
|
|
2233
|
+
RunMJAIAgentSearchScopeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2234
|
+
RunMJAIAgentSearchScopeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2235
|
+
RunMJAIAgentSearchScopeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2236
|
+
MJAIAgentSearchScope(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentSearchScope_ | null>;
|
|
2237
|
+
CreateMJAIAgentSearchScope(input: CreateMJAIAgentSearchScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2238
|
+
UpdateMJAIAgentSearchScope(input: UpdateMJAIAgentSearchScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2239
|
+
DeleteMJAIAgentSearchScope(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2240
|
+
}
|
|
2170
2241
|
export declare class MJAIAgentStepPath_ {
|
|
2171
2242
|
ID: string;
|
|
2172
2243
|
OriginStepID: string;
|
|
@@ -2456,6 +2527,7 @@ export declare class MJAIAgent_ {
|
|
|
2456
2527
|
CategoryID?: string;
|
|
2457
2528
|
AllowEphemeralClientTools: boolean;
|
|
2458
2529
|
DefaultStorageAccountID?: string;
|
|
2530
|
+
SearchScopeAccess: string;
|
|
2459
2531
|
Parent?: string;
|
|
2460
2532
|
ContextCompressionPrompt?: string;
|
|
2461
2533
|
Type?: string;
|
|
@@ -2476,6 +2548,8 @@ export declare class MJAIAgent_ {
|
|
|
2476
2548
|
MJAIAgentDataSources_AgentIDArray: MJAIAgentDataSource_[];
|
|
2477
2549
|
MJAIAgentModalities_AgentIDArray: MJAIAgentModality_[];
|
|
2478
2550
|
MJAIAgentClientTools_AgentIDArray: MJAIAgentClientTool_[];
|
|
2551
|
+
MJAIAgentSearchScopes_AgentIDArray: MJAIAgentSearchScope_[];
|
|
2552
|
+
MJSearchExecutionLogs_AIAgentIDArray: MJSearchExecutionLog_[];
|
|
2479
2553
|
MJAIAgentNotes_AgentIDArray: MJAIAgentNote_[];
|
|
2480
2554
|
MJAIAgentPrompts_AgentIDArray: MJAIAgentPrompt_[];
|
|
2481
2555
|
MJAIAgentRuns_AgentIDArray: MJAIAgentRun_[];
|
|
@@ -2553,6 +2627,7 @@ export declare class CreateMJAIAgentInput {
|
|
|
2553
2627
|
CategoryID: string | null;
|
|
2554
2628
|
AllowEphemeralClientTools?: boolean;
|
|
2555
2629
|
DefaultStorageAccountID: string | null;
|
|
2630
|
+
SearchScopeAccess?: string;
|
|
2556
2631
|
RestoreContext___?: RestoreContextInput;
|
|
2557
2632
|
}
|
|
2558
2633
|
export declare class UpdateMJAIAgentInput {
|
|
@@ -2618,6 +2693,7 @@ export declare class UpdateMJAIAgentInput {
|
|
|
2618
2693
|
CategoryID?: string | null;
|
|
2619
2694
|
AllowEphemeralClientTools?: boolean;
|
|
2620
2695
|
DefaultStorageAccountID?: string | null;
|
|
2696
|
+
SearchScopeAccess?: string;
|
|
2621
2697
|
OldValues___?: KeyValuePairInput[];
|
|
2622
2698
|
RestoreContext___?: RestoreContextInput;
|
|
2623
2699
|
}
|
|
@@ -2646,6 +2722,8 @@ export declare class MJAIAgentResolver extends ResolverBase {
|
|
|
2646
2722
|
MJAIAgentDataSources_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2647
2723
|
MJAIAgentModalities_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2648
2724
|
MJAIAgentClientTools_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2725
|
+
MJAIAgentSearchScopes_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2726
|
+
MJSearchExecutionLogs_AIAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2649
2727
|
MJAIAgentNotes_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2650
2728
|
MJAIAgentPrompts_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2651
2729
|
MJAIAgentRuns_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -4399,7 +4477,7 @@ export declare class MJAIResultCache_ {
|
|
|
4399
4477
|
VendorID?: string;
|
|
4400
4478
|
AgentID?: string;
|
|
4401
4479
|
ConfigurationID?: string;
|
|
4402
|
-
PromptEmbedding?:
|
|
4480
|
+
PromptEmbedding?: string;
|
|
4403
4481
|
PromptRunID?: string;
|
|
4404
4482
|
AIPrompt: string;
|
|
4405
4483
|
AIModel: string;
|
|
@@ -4420,7 +4498,7 @@ export declare class CreateMJAIResultCacheInput {
|
|
|
4420
4498
|
VendorID: string | null;
|
|
4421
4499
|
AgentID: string | null;
|
|
4422
4500
|
ConfigurationID: string | null;
|
|
4423
|
-
PromptEmbedding:
|
|
4501
|
+
PromptEmbedding: string | null;
|
|
4424
4502
|
PromptRunID: string | null;
|
|
4425
4503
|
RestoreContext___?: RestoreContextInput;
|
|
4426
4504
|
}
|
|
@@ -4436,7 +4514,7 @@ export declare class UpdateMJAIResultCacheInput {
|
|
|
4436
4514
|
VendorID?: string | null;
|
|
4437
4515
|
AgentID?: string | null;
|
|
4438
4516
|
ConfigurationID?: string | null;
|
|
4439
|
-
PromptEmbedding?:
|
|
4517
|
+
PromptEmbedding?: string | null;
|
|
4440
4518
|
PromptRunID?: string | null;
|
|
4441
4519
|
OldValues___?: KeyValuePairInput[];
|
|
4442
4520
|
RestoreContext___?: RestoreContextInput;
|
|
@@ -10440,6 +10518,7 @@ export declare class MJEntity_ {
|
|
|
10440
10518
|
MJEntityFields_RelatedEntityIDArray: MJEntityField_[];
|
|
10441
10519
|
MJArchiveConfigurationEntities_EntityIDArray: MJArchiveConfigurationEntity_[];
|
|
10442
10520
|
MJArchiveRunDetails_EntityIDArray: MJArchiveRunDetail_[];
|
|
10521
|
+
MJSearchScopeEntities_EntityIDArray: MJSearchScopeEntity_[];
|
|
10443
10522
|
MJResourceTypes_CategoryEntityIDArray: MJResourceType_[];
|
|
10444
10523
|
MJContentSources_EntityIDArray: MJContentSource_[];
|
|
10445
10524
|
MJTestRuns_TargetLogEntityIDArray: MJTestRun_[];
|
|
@@ -10643,6 +10722,7 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
10643
10722
|
MJEntityFields_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10644
10723
|
MJArchiveConfigurationEntities_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10645
10724
|
MJArchiveRunDetails_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10725
|
+
MJSearchScopeEntities_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10646
10726
|
MJResourceTypes_CategoryEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10647
10727
|
MJContentSources_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10648
10728
|
MJTestRuns_TargetLogEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -11365,6 +11445,7 @@ export declare class MJEntityField_ {
|
|
|
11365
11445
|
AutoUpdateUserSearchPredicate: boolean;
|
|
11366
11446
|
AutoUpdateFullTextSearch: boolean;
|
|
11367
11447
|
AutoUpdateExtendedType: boolean;
|
|
11448
|
+
IsComputed: boolean;
|
|
11368
11449
|
FieldCodeName?: string;
|
|
11369
11450
|
Entity: string;
|
|
11370
11451
|
SchemaName: string;
|
|
@@ -11431,6 +11512,7 @@ export declare class CreateMJEntityFieldInput {
|
|
|
11431
11512
|
AutoUpdateUserSearchPredicate?: boolean;
|
|
11432
11513
|
AutoUpdateFullTextSearch?: boolean;
|
|
11433
11514
|
AutoUpdateExtendedType?: boolean;
|
|
11515
|
+
IsComputed?: boolean;
|
|
11434
11516
|
RestoreContext___?: RestoreContextInput;
|
|
11435
11517
|
}
|
|
11436
11518
|
export declare class UpdateMJEntityFieldInput {
|
|
@@ -11484,6 +11566,7 @@ export declare class UpdateMJEntityFieldInput {
|
|
|
11484
11566
|
AutoUpdateUserSearchPredicate?: boolean;
|
|
11485
11567
|
AutoUpdateFullTextSearch?: boolean;
|
|
11486
11568
|
AutoUpdateExtendedType?: boolean;
|
|
11569
|
+
IsComputed?: boolean;
|
|
11487
11570
|
OldValues___?: KeyValuePairInput[];
|
|
11488
11571
|
RestoreContext___?: RestoreContextInput;
|
|
11489
11572
|
}
|
|
@@ -12299,6 +12382,7 @@ export declare class MJFileStorageAccount_ {
|
|
|
12299
12382
|
Credential: string;
|
|
12300
12383
|
MJAIAgentTypes_DefaultStorageAccountIDArray: MJAIAgentType_[];
|
|
12301
12384
|
MJArchiveConfigurations_StorageAccountIDArray: MJArchiveConfiguration_[];
|
|
12385
|
+
MJSearchScopeStorageAccounts_FileStorageAccountIDArray: MJSearchScopeStorageAccount_[];
|
|
12302
12386
|
MJFileStorageAccountPermissions_FileStorageAccountIDArray: MJFileStorageAccountPermission_[];
|
|
12303
12387
|
MJAIAgentCategories_DefaultStorageAccountIDArray: MJAIAgentCategory_[];
|
|
12304
12388
|
MJAIAgents_DefaultStorageAccountIDArray: MJAIAgent_[];
|
|
@@ -12338,6 +12422,7 @@ export declare class MJFileStorageAccountResolver extends ResolverBase {
|
|
|
12338
12422
|
MJFileStorageAccount(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJFileStorageAccount_ | null>;
|
|
12339
12423
|
MJAIAgentTypes_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12340
12424
|
MJArchiveConfigurations_StorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12425
|
+
MJSearchScopeStorageAccounts_FileStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12341
12426
|
MJFileStorageAccountPermissions_FileStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12342
12427
|
MJAIAgentCategories_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12343
12428
|
MJAIAgents_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -16459,6 +16544,7 @@ export declare class MJRole_ {
|
|
|
16459
16544
|
MJFileStorageAccountPermissions_RoleIDArray: MJFileStorageAccountPermission_[];
|
|
16460
16545
|
MJApplicationRoles_RoleIDArray: MJApplicationRole_[];
|
|
16461
16546
|
MJAIAgentPermissions_RoleIDArray: MJAIAgentPermission_[];
|
|
16547
|
+
MJSearchScopePermissions_RoleIDArray: MJSearchScopePermission_[];
|
|
16462
16548
|
}
|
|
16463
16549
|
export declare class CreateMJRoleInput {
|
|
16464
16550
|
ID?: string;
|
|
@@ -16502,6 +16588,7 @@ export declare class MJRoleResolver extends ResolverBase {
|
|
|
16502
16588
|
MJFileStorageAccountPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16503
16589
|
MJApplicationRoles_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16504
16590
|
MJAIAgentPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16591
|
+
MJSearchScopePermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16505
16592
|
CreateMJRole(input: CreateMJRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16506
16593
|
UpdateMJRole(input: UpdateMJRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16507
16594
|
DeleteMJRole(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -16966,6 +17053,74 @@ export declare class MJSchemaInfoResolver extends ResolverBase {
|
|
|
16966
17053
|
UpdateMJSchemaInfo(input: UpdateMJSchemaInfoInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16967
17054
|
DeleteMJSchemaInfo(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16968
17055
|
}
|
|
17056
|
+
export declare class MJSearchExecutionLog_ {
|
|
17057
|
+
ID: string;
|
|
17058
|
+
SearchScopeID?: string;
|
|
17059
|
+
UserID?: string;
|
|
17060
|
+
AIAgentID?: string;
|
|
17061
|
+
Query: string;
|
|
17062
|
+
TotalDurationMs: number;
|
|
17063
|
+
ResultCount: number;
|
|
17064
|
+
RerankerName?: string;
|
|
17065
|
+
RerankerCostCents?: number;
|
|
17066
|
+
Status: string;
|
|
17067
|
+
FailureReason?: string;
|
|
17068
|
+
ProvidersJSON?: string;
|
|
17069
|
+
_mj__CreatedAt: Date;
|
|
17070
|
+
_mj__UpdatedAt: Date;
|
|
17071
|
+
SearchScope?: string;
|
|
17072
|
+
User?: string;
|
|
17073
|
+
AIAgent?: string;
|
|
17074
|
+
}
|
|
17075
|
+
export declare class CreateMJSearchExecutionLogInput {
|
|
17076
|
+
ID?: string;
|
|
17077
|
+
SearchScopeID: string | null;
|
|
17078
|
+
UserID: string | null;
|
|
17079
|
+
AIAgentID: string | null;
|
|
17080
|
+
Query?: string;
|
|
17081
|
+
TotalDurationMs?: number;
|
|
17082
|
+
ResultCount?: number;
|
|
17083
|
+
RerankerName: string | null;
|
|
17084
|
+
RerankerCostCents: number | null;
|
|
17085
|
+
Status?: string;
|
|
17086
|
+
FailureReason: string | null;
|
|
17087
|
+
ProvidersJSON: string | null;
|
|
17088
|
+
RestoreContext___?: RestoreContextInput;
|
|
17089
|
+
}
|
|
17090
|
+
export declare class UpdateMJSearchExecutionLogInput {
|
|
17091
|
+
ID: string;
|
|
17092
|
+
SearchScopeID?: string | null;
|
|
17093
|
+
UserID?: string | null;
|
|
17094
|
+
AIAgentID?: string | null;
|
|
17095
|
+
Query?: string;
|
|
17096
|
+
TotalDurationMs?: number;
|
|
17097
|
+
ResultCount?: number;
|
|
17098
|
+
RerankerName?: string | null;
|
|
17099
|
+
RerankerCostCents?: number | null;
|
|
17100
|
+
Status?: string;
|
|
17101
|
+
FailureReason?: string | null;
|
|
17102
|
+
ProvidersJSON?: string | null;
|
|
17103
|
+
OldValues___?: KeyValuePairInput[];
|
|
17104
|
+
RestoreContext___?: RestoreContextInput;
|
|
17105
|
+
}
|
|
17106
|
+
export declare class RunMJSearchExecutionLogViewResult {
|
|
17107
|
+
Results: MJSearchExecutionLog_[];
|
|
17108
|
+
UserViewRunID?: string;
|
|
17109
|
+
RowCount: number;
|
|
17110
|
+
TotalRowCount: number;
|
|
17111
|
+
ExecutionTime: number;
|
|
17112
|
+
ErrorMessage?: string;
|
|
17113
|
+
Success: boolean;
|
|
17114
|
+
}
|
|
17115
|
+
export declare class MJSearchExecutionLogResolver extends ResolverBase {
|
|
17116
|
+
RunMJSearchExecutionLogViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17117
|
+
RunMJSearchExecutionLogViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17118
|
+
RunMJSearchExecutionLogDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17119
|
+
MJSearchExecutionLog(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchExecutionLog_ | null>;
|
|
17120
|
+
CreateMJSearchExecutionLog(input: CreateMJSearchExecutionLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17121
|
+
UpdateMJSearchExecutionLog(input: UpdateMJSearchExecutionLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17122
|
+
DeleteMJSearchExecutionLog(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17123
|
+
}
|
|
16969
17124
|
export declare class MJSearchProvider_ {
|
|
16970
17125
|
ID: string;
|
|
16971
17126
|
Name: string;
|
|
@@ -16983,6 +17138,7 @@ export declare class MJSearchProvider_ {
|
|
|
16983
17138
|
_mj__CreatedAt: Date;
|
|
16984
17139
|
_mj__UpdatedAt: Date;
|
|
16985
17140
|
Credential?: string;
|
|
17141
|
+
MJSearchScopeProviders_SearchProviderIDArray: MJSearchScopeProvider_[];
|
|
16986
17142
|
}
|
|
16987
17143
|
export declare class CreateMJSearchProviderInput {
|
|
16988
17144
|
ID?: string;
|
|
@@ -17031,10 +17187,388 @@ export declare class MJSearchProviderResolver extends ResolverBase {
|
|
|
17031
17187
|
RunMJSearchProviderViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17032
17188
|
RunMJSearchProviderDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17033
17189
|
MJSearchProvider(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchProvider_ | null>;
|
|
17190
|
+
MJSearchScopeProviders_SearchProviderIDArray(mjsearchprovider_: MJSearchProvider_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17034
17191
|
CreateMJSearchProvider(input: CreateMJSearchProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17035
17192
|
UpdateMJSearchProvider(input: UpdateMJSearchProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17036
17193
|
DeleteMJSearchProvider(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17037
17194
|
}
|
|
17195
|
+
export declare class MJSearchScopeEntity_ {
|
|
17196
|
+
ID: string;
|
|
17197
|
+
SearchScopeID: string;
|
|
17198
|
+
EntityID: string;
|
|
17199
|
+
ExtraFilter?: string;
|
|
17200
|
+
UserSearchString?: string;
|
|
17201
|
+
_mj__CreatedAt: Date;
|
|
17202
|
+
_mj__UpdatedAt: Date;
|
|
17203
|
+
SearchScope: string;
|
|
17204
|
+
Entity: string;
|
|
17205
|
+
}
|
|
17206
|
+
export declare class CreateMJSearchScopeEntityInput {
|
|
17207
|
+
ID?: string;
|
|
17208
|
+
SearchScopeID?: string;
|
|
17209
|
+
EntityID?: string;
|
|
17210
|
+
ExtraFilter: string | null;
|
|
17211
|
+
UserSearchString: string | null;
|
|
17212
|
+
RestoreContext___?: RestoreContextInput;
|
|
17213
|
+
}
|
|
17214
|
+
export declare class UpdateMJSearchScopeEntityInput {
|
|
17215
|
+
ID: string;
|
|
17216
|
+
SearchScopeID?: string;
|
|
17217
|
+
EntityID?: string;
|
|
17218
|
+
ExtraFilter?: string | null;
|
|
17219
|
+
UserSearchString?: string | null;
|
|
17220
|
+
OldValues___?: KeyValuePairInput[];
|
|
17221
|
+
RestoreContext___?: RestoreContextInput;
|
|
17222
|
+
}
|
|
17223
|
+
export declare class RunMJSearchScopeEntityViewResult {
|
|
17224
|
+
Results: MJSearchScopeEntity_[];
|
|
17225
|
+
UserViewRunID?: string;
|
|
17226
|
+
RowCount: number;
|
|
17227
|
+
TotalRowCount: number;
|
|
17228
|
+
ExecutionTime: number;
|
|
17229
|
+
ErrorMessage?: string;
|
|
17230
|
+
Success: boolean;
|
|
17231
|
+
}
|
|
17232
|
+
export declare class MJSearchScopeEntityResolver extends ResolverBase {
|
|
17233
|
+
RunMJSearchScopeEntityViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17234
|
+
RunMJSearchScopeEntityViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17235
|
+
RunMJSearchScopeEntityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17236
|
+
MJSearchScopeEntity(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchScopeEntity_ | null>;
|
|
17237
|
+
CreateMJSearchScopeEntity(input: CreateMJSearchScopeEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17238
|
+
UpdateMJSearchScopeEntity(input: UpdateMJSearchScopeEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17239
|
+
DeleteMJSearchScopeEntity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17240
|
+
}
|
|
17241
|
+
export declare class MJSearchScopeExternalIndex_ {
|
|
17242
|
+
ID: string;
|
|
17243
|
+
SearchScopeID: string;
|
|
17244
|
+
IndexType: string;
|
|
17245
|
+
VectorIndexID?: string;
|
|
17246
|
+
ExternalIndexName?: string;
|
|
17247
|
+
ExternalIndexConfig?: string;
|
|
17248
|
+
MetadataFilter?: string;
|
|
17249
|
+
_mj__CreatedAt: Date;
|
|
17250
|
+
_mj__UpdatedAt: Date;
|
|
17251
|
+
SearchScope: string;
|
|
17252
|
+
VectorIndex?: string;
|
|
17253
|
+
}
|
|
17254
|
+
export declare class CreateMJSearchScopeExternalIndexInput {
|
|
17255
|
+
ID?: string;
|
|
17256
|
+
SearchScopeID?: string;
|
|
17257
|
+
IndexType?: string;
|
|
17258
|
+
VectorIndexID: string | null;
|
|
17259
|
+
ExternalIndexName: string | null;
|
|
17260
|
+
ExternalIndexConfig: string | null;
|
|
17261
|
+
MetadataFilter: string | null;
|
|
17262
|
+
RestoreContext___?: RestoreContextInput;
|
|
17263
|
+
}
|
|
17264
|
+
export declare class UpdateMJSearchScopeExternalIndexInput {
|
|
17265
|
+
ID: string;
|
|
17266
|
+
SearchScopeID?: string;
|
|
17267
|
+
IndexType?: string;
|
|
17268
|
+
VectorIndexID?: string | null;
|
|
17269
|
+
ExternalIndexName?: string | null;
|
|
17270
|
+
ExternalIndexConfig?: string | null;
|
|
17271
|
+
MetadataFilter?: string | null;
|
|
17272
|
+
OldValues___?: KeyValuePairInput[];
|
|
17273
|
+
RestoreContext___?: RestoreContextInput;
|
|
17274
|
+
}
|
|
17275
|
+
export declare class RunMJSearchScopeExternalIndexViewResult {
|
|
17276
|
+
Results: MJSearchScopeExternalIndex_[];
|
|
17277
|
+
UserViewRunID?: string;
|
|
17278
|
+
RowCount: number;
|
|
17279
|
+
TotalRowCount: number;
|
|
17280
|
+
ExecutionTime: number;
|
|
17281
|
+
ErrorMessage?: string;
|
|
17282
|
+
Success: boolean;
|
|
17283
|
+
}
|
|
17284
|
+
export declare class MJSearchScopeExternalIndexResolver extends ResolverBase {
|
|
17285
|
+
RunMJSearchScopeExternalIndexViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17286
|
+
RunMJSearchScopeExternalIndexViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17287
|
+
RunMJSearchScopeExternalIndexDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17288
|
+
MJSearchScopeExternalIndex(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchScopeExternalIndex_ | null>;
|
|
17289
|
+
CreateMJSearchScopeExternalIndex(input: CreateMJSearchScopeExternalIndexInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17290
|
+
UpdateMJSearchScopeExternalIndex(input: UpdateMJSearchScopeExternalIndexInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17291
|
+
DeleteMJSearchScopeExternalIndex(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17292
|
+
}
|
|
17293
|
+
export declare class MJSearchScopePermission_ {
|
|
17294
|
+
ID: string;
|
|
17295
|
+
SearchScopeID: string;
|
|
17296
|
+
UserID?: string;
|
|
17297
|
+
RoleID?: string;
|
|
17298
|
+
PermissionLevel: string;
|
|
17299
|
+
_mj__CreatedAt: Date;
|
|
17300
|
+
_mj__UpdatedAt: Date;
|
|
17301
|
+
SearchScope: string;
|
|
17302
|
+
User?: string;
|
|
17303
|
+
Role?: string;
|
|
17304
|
+
}
|
|
17305
|
+
export declare class CreateMJSearchScopePermissionInput {
|
|
17306
|
+
ID?: string;
|
|
17307
|
+
SearchScopeID?: string;
|
|
17308
|
+
UserID: string | null;
|
|
17309
|
+
RoleID: string | null;
|
|
17310
|
+
PermissionLevel?: string;
|
|
17311
|
+
RestoreContext___?: RestoreContextInput;
|
|
17312
|
+
}
|
|
17313
|
+
export declare class UpdateMJSearchScopePermissionInput {
|
|
17314
|
+
ID: string;
|
|
17315
|
+
SearchScopeID?: string;
|
|
17316
|
+
UserID?: string | null;
|
|
17317
|
+
RoleID?: string | null;
|
|
17318
|
+
PermissionLevel?: string;
|
|
17319
|
+
OldValues___?: KeyValuePairInput[];
|
|
17320
|
+
RestoreContext___?: RestoreContextInput;
|
|
17321
|
+
}
|
|
17322
|
+
export declare class RunMJSearchScopePermissionViewResult {
|
|
17323
|
+
Results: MJSearchScopePermission_[];
|
|
17324
|
+
UserViewRunID?: string;
|
|
17325
|
+
RowCount: number;
|
|
17326
|
+
TotalRowCount: number;
|
|
17327
|
+
ExecutionTime: number;
|
|
17328
|
+
ErrorMessage?: string;
|
|
17329
|
+
Success: boolean;
|
|
17330
|
+
}
|
|
17331
|
+
export declare class MJSearchScopePermissionResolver extends ResolverBase {
|
|
17332
|
+
RunMJSearchScopePermissionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17333
|
+
RunMJSearchScopePermissionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17334
|
+
RunMJSearchScopePermissionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17335
|
+
MJSearchScopePermission(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchScopePermission_ | null>;
|
|
17336
|
+
CreateMJSearchScopePermission(input: CreateMJSearchScopePermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17337
|
+
UpdateMJSearchScopePermission(input: UpdateMJSearchScopePermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17338
|
+
DeleteMJSearchScopePermission(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17339
|
+
}
|
|
17340
|
+
export declare class MJSearchScopeProvider_ {
|
|
17341
|
+
ID: string;
|
|
17342
|
+
SearchScopeID: string;
|
|
17343
|
+
SearchProviderID: string;
|
|
17344
|
+
Enabled: boolean;
|
|
17345
|
+
MaxResultsOverride?: number;
|
|
17346
|
+
ProviderConfigOverride?: string;
|
|
17347
|
+
QueryTransformTemplateID?: string;
|
|
17348
|
+
_mj__CreatedAt: Date;
|
|
17349
|
+
_mj__UpdatedAt: Date;
|
|
17350
|
+
SearchScope: string;
|
|
17351
|
+
SearchProvider: string;
|
|
17352
|
+
QueryTransformTemplate?: string;
|
|
17353
|
+
}
|
|
17354
|
+
export declare class CreateMJSearchScopeProviderInput {
|
|
17355
|
+
ID?: string;
|
|
17356
|
+
SearchScopeID?: string;
|
|
17357
|
+
SearchProviderID?: string;
|
|
17358
|
+
Enabled?: boolean;
|
|
17359
|
+
MaxResultsOverride: number | null;
|
|
17360
|
+
ProviderConfigOverride: string | null;
|
|
17361
|
+
QueryTransformTemplateID: string | null;
|
|
17362
|
+
RestoreContext___?: RestoreContextInput;
|
|
17363
|
+
}
|
|
17364
|
+
export declare class UpdateMJSearchScopeProviderInput {
|
|
17365
|
+
ID: string;
|
|
17366
|
+
SearchScopeID?: string;
|
|
17367
|
+
SearchProviderID?: string;
|
|
17368
|
+
Enabled?: boolean;
|
|
17369
|
+
MaxResultsOverride?: number | null;
|
|
17370
|
+
ProviderConfigOverride?: string | null;
|
|
17371
|
+
QueryTransformTemplateID?: string | null;
|
|
17372
|
+
OldValues___?: KeyValuePairInput[];
|
|
17373
|
+
RestoreContext___?: RestoreContextInput;
|
|
17374
|
+
}
|
|
17375
|
+
export declare class RunMJSearchScopeProviderViewResult {
|
|
17376
|
+
Results: MJSearchScopeProvider_[];
|
|
17377
|
+
UserViewRunID?: string;
|
|
17378
|
+
RowCount: number;
|
|
17379
|
+
TotalRowCount: number;
|
|
17380
|
+
ExecutionTime: number;
|
|
17381
|
+
ErrorMessage?: string;
|
|
17382
|
+
Success: boolean;
|
|
17383
|
+
}
|
|
17384
|
+
export declare class MJSearchScopeProviderResolver extends ResolverBase {
|
|
17385
|
+
RunMJSearchScopeProviderViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17386
|
+
RunMJSearchScopeProviderViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17387
|
+
RunMJSearchScopeProviderDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17388
|
+
MJSearchScopeProvider(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchScopeProvider_ | null>;
|
|
17389
|
+
CreateMJSearchScopeProvider(input: CreateMJSearchScopeProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17390
|
+
UpdateMJSearchScopeProvider(input: UpdateMJSearchScopeProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17391
|
+
DeleteMJSearchScopeProvider(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17392
|
+
}
|
|
17393
|
+
export declare class MJSearchScopeStorageAccount_ {
|
|
17394
|
+
ID: string;
|
|
17395
|
+
SearchScopeID: string;
|
|
17396
|
+
FileStorageAccountID: string;
|
|
17397
|
+
FolderPath?: string;
|
|
17398
|
+
_mj__CreatedAt: Date;
|
|
17399
|
+
_mj__UpdatedAt: Date;
|
|
17400
|
+
SearchScope: string;
|
|
17401
|
+
FileStorageAccount: string;
|
|
17402
|
+
}
|
|
17403
|
+
export declare class CreateMJSearchScopeStorageAccountInput {
|
|
17404
|
+
ID?: string;
|
|
17405
|
+
SearchScopeID?: string;
|
|
17406
|
+
FileStorageAccountID?: string;
|
|
17407
|
+
FolderPath: string | null;
|
|
17408
|
+
RestoreContext___?: RestoreContextInput;
|
|
17409
|
+
}
|
|
17410
|
+
export declare class UpdateMJSearchScopeStorageAccountInput {
|
|
17411
|
+
ID: string;
|
|
17412
|
+
SearchScopeID?: string;
|
|
17413
|
+
FileStorageAccountID?: string;
|
|
17414
|
+
FolderPath?: string | null;
|
|
17415
|
+
OldValues___?: KeyValuePairInput[];
|
|
17416
|
+
RestoreContext___?: RestoreContextInput;
|
|
17417
|
+
}
|
|
17418
|
+
export declare class RunMJSearchScopeStorageAccountViewResult {
|
|
17419
|
+
Results: MJSearchScopeStorageAccount_[];
|
|
17420
|
+
UserViewRunID?: string;
|
|
17421
|
+
RowCount: number;
|
|
17422
|
+
TotalRowCount: number;
|
|
17423
|
+
ExecutionTime: number;
|
|
17424
|
+
ErrorMessage?: string;
|
|
17425
|
+
Success: boolean;
|
|
17426
|
+
}
|
|
17427
|
+
export declare class MJSearchScopeStorageAccountResolver extends ResolverBase {
|
|
17428
|
+
RunMJSearchScopeStorageAccountViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17429
|
+
RunMJSearchScopeStorageAccountViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17430
|
+
RunMJSearchScopeStorageAccountDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17431
|
+
MJSearchScopeStorageAccount(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchScopeStorageAccount_ | null>;
|
|
17432
|
+
CreateMJSearchScopeStorageAccount(input: CreateMJSearchScopeStorageAccountInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17433
|
+
UpdateMJSearchScopeStorageAccount(input: UpdateMJSearchScopeStorageAccountInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17434
|
+
DeleteMJSearchScopeStorageAccount(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17435
|
+
}
|
|
17436
|
+
export declare class MJSearchScopeTestQuery_ {
|
|
17437
|
+
ID: string;
|
|
17438
|
+
SearchScopeID: string;
|
|
17439
|
+
Label: string;
|
|
17440
|
+
Query: string;
|
|
17441
|
+
ExpectedTopResultEntity?: string;
|
|
17442
|
+
ExpectedTopResultRecordID?: string;
|
|
17443
|
+
Notes?: string;
|
|
17444
|
+
_mj__CreatedAt: Date;
|
|
17445
|
+
_mj__UpdatedAt: Date;
|
|
17446
|
+
SearchScope: string;
|
|
17447
|
+
}
|
|
17448
|
+
export declare class CreateMJSearchScopeTestQueryInput {
|
|
17449
|
+
ID?: string;
|
|
17450
|
+
SearchScopeID?: string;
|
|
17451
|
+
Label?: string;
|
|
17452
|
+
Query?: string;
|
|
17453
|
+
ExpectedTopResultEntity: string | null;
|
|
17454
|
+
ExpectedTopResultRecordID: string | null;
|
|
17455
|
+
Notes: string | null;
|
|
17456
|
+
RestoreContext___?: RestoreContextInput;
|
|
17457
|
+
}
|
|
17458
|
+
export declare class UpdateMJSearchScopeTestQueryInput {
|
|
17459
|
+
ID: string;
|
|
17460
|
+
SearchScopeID?: string;
|
|
17461
|
+
Label?: string;
|
|
17462
|
+
Query?: string;
|
|
17463
|
+
ExpectedTopResultEntity?: string | null;
|
|
17464
|
+
ExpectedTopResultRecordID?: string | null;
|
|
17465
|
+
Notes?: string | null;
|
|
17466
|
+
OldValues___?: KeyValuePairInput[];
|
|
17467
|
+
RestoreContext___?: RestoreContextInput;
|
|
17468
|
+
}
|
|
17469
|
+
export declare class RunMJSearchScopeTestQueryViewResult {
|
|
17470
|
+
Results: MJSearchScopeTestQuery_[];
|
|
17471
|
+
UserViewRunID?: string;
|
|
17472
|
+
RowCount: number;
|
|
17473
|
+
TotalRowCount: number;
|
|
17474
|
+
ExecutionTime: number;
|
|
17475
|
+
ErrorMessage?: string;
|
|
17476
|
+
Success: boolean;
|
|
17477
|
+
}
|
|
17478
|
+
export declare class MJSearchScopeTestQueryResolver extends ResolverBase {
|
|
17479
|
+
RunMJSearchScopeTestQueryViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17480
|
+
RunMJSearchScopeTestQueryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17481
|
+
RunMJSearchScopeTestQueryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17482
|
+
MJSearchScopeTestQuery(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchScopeTestQuery_ | null>;
|
|
17483
|
+
CreateMJSearchScopeTestQuery(input: CreateMJSearchScopeTestQueryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17484
|
+
UpdateMJSearchScopeTestQuery(input: UpdateMJSearchScopeTestQueryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17485
|
+
DeleteMJSearchScopeTestQuery(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17486
|
+
}
|
|
17487
|
+
export declare class MJSearchScope_ {
|
|
17488
|
+
ID: string;
|
|
17489
|
+
Name: string;
|
|
17490
|
+
Description?: string;
|
|
17491
|
+
Icon?: string;
|
|
17492
|
+
IsGlobal: boolean;
|
|
17493
|
+
IsDefault: boolean;
|
|
17494
|
+
OwnerUserID?: string;
|
|
17495
|
+
Status: string;
|
|
17496
|
+
StartAt?: Date;
|
|
17497
|
+
EndAt?: Date;
|
|
17498
|
+
ScopeConfig?: string;
|
|
17499
|
+
SearchContextConfig?: string;
|
|
17500
|
+
RerankerBudgetCents?: number;
|
|
17501
|
+
_mj__CreatedAt: Date;
|
|
17502
|
+
_mj__UpdatedAt: Date;
|
|
17503
|
+
OwnerUser?: string;
|
|
17504
|
+
MJSearchScopeExternalIndexes_SearchScopeIDArray: MJSearchScopeExternalIndex_[];
|
|
17505
|
+
MJSearchScopeEntities_SearchScopeIDArray: MJSearchScopeEntity_[];
|
|
17506
|
+
MJSearchScopePermissions_SearchScopeIDArray: MJSearchScopePermission_[];
|
|
17507
|
+
MJSearchScopeTestQueries_SearchScopeIDArray: MJSearchScopeTestQuery_[];
|
|
17508
|
+
MJSearchScopeProviders_SearchScopeIDArray: MJSearchScopeProvider_[];
|
|
17509
|
+
MJSearchScopeStorageAccounts_SearchScopeIDArray: MJSearchScopeStorageAccount_[];
|
|
17510
|
+
MJAIAgentSearchScopes_SearchScopeIDArray: MJAIAgentSearchScope_[];
|
|
17511
|
+
MJSearchExecutionLogs_SearchScopeIDArray: MJSearchExecutionLog_[];
|
|
17512
|
+
}
|
|
17513
|
+
export declare class CreateMJSearchScopeInput {
|
|
17514
|
+
ID?: string;
|
|
17515
|
+
Name?: string;
|
|
17516
|
+
Description: string | null;
|
|
17517
|
+
Icon: string | null;
|
|
17518
|
+
IsGlobal?: boolean;
|
|
17519
|
+
IsDefault?: boolean;
|
|
17520
|
+
OwnerUserID: string | null;
|
|
17521
|
+
Status?: string;
|
|
17522
|
+
StartAt: Date | null;
|
|
17523
|
+
EndAt: Date | null;
|
|
17524
|
+
ScopeConfig: string | null;
|
|
17525
|
+
SearchContextConfig: string | null;
|
|
17526
|
+
RerankerBudgetCents: number | null;
|
|
17527
|
+
RestoreContext___?: RestoreContextInput;
|
|
17528
|
+
}
|
|
17529
|
+
export declare class UpdateMJSearchScopeInput {
|
|
17530
|
+
ID: string;
|
|
17531
|
+
Name?: string;
|
|
17532
|
+
Description?: string | null;
|
|
17533
|
+
Icon?: string | null;
|
|
17534
|
+
IsGlobal?: boolean;
|
|
17535
|
+
IsDefault?: boolean;
|
|
17536
|
+
OwnerUserID?: string | null;
|
|
17537
|
+
Status?: string;
|
|
17538
|
+
StartAt?: Date | null;
|
|
17539
|
+
EndAt?: Date | null;
|
|
17540
|
+
ScopeConfig?: string | null;
|
|
17541
|
+
SearchContextConfig?: string | null;
|
|
17542
|
+
RerankerBudgetCents?: number | null;
|
|
17543
|
+
OldValues___?: KeyValuePairInput[];
|
|
17544
|
+
RestoreContext___?: RestoreContextInput;
|
|
17545
|
+
}
|
|
17546
|
+
export declare class RunMJSearchScopeViewResult {
|
|
17547
|
+
Results: MJSearchScope_[];
|
|
17548
|
+
UserViewRunID?: string;
|
|
17549
|
+
RowCount: number;
|
|
17550
|
+
TotalRowCount: number;
|
|
17551
|
+
ExecutionTime: number;
|
|
17552
|
+
ErrorMessage?: string;
|
|
17553
|
+
Success: boolean;
|
|
17554
|
+
}
|
|
17555
|
+
export declare class MJSearchScopeResolver extends ResolverBase {
|
|
17556
|
+
RunMJSearchScopeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17557
|
+
RunMJSearchScopeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17558
|
+
RunMJSearchScopeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17559
|
+
MJSearchScope(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchScope_ | null>;
|
|
17560
|
+
MJSearchScopeExternalIndexes_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17561
|
+
MJSearchScopeEntities_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17562
|
+
MJSearchScopePermissions_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17563
|
+
MJSearchScopeTestQueries_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17564
|
+
MJSearchScopeProviders_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17565
|
+
MJSearchScopeStorageAccounts_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17566
|
+
MJAIAgentSearchScopes_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17567
|
+
MJSearchExecutionLogs_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17568
|
+
CreateMJSearchScope(input: CreateMJSearchScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17569
|
+
UpdateMJSearchScope(input: UpdateMJSearchScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17570
|
+
DeleteMJSearchScope(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17571
|
+
}
|
|
17038
17572
|
export declare class MJSkill_ {
|
|
17039
17573
|
ID: string;
|
|
17040
17574
|
Name: string;
|
|
@@ -17529,8 +18063,8 @@ export declare class MJTag_ {
|
|
|
17529
18063
|
RootMergedIntoTagID?: string;
|
|
17530
18064
|
MJTags_ParentIDArray: MJTag_[];
|
|
17531
18065
|
MJTaggedItems_TagIDArray: MJTaggedItem_[];
|
|
17532
|
-
MJTagCoOccurrences_TagBIDArray: MJTagCoOccurrence_[];
|
|
17533
18066
|
MJContentItemTags_TagIDArray: MJContentItemTag_[];
|
|
18067
|
+
MJTagCoOccurrences_TagBIDArray: MJTagCoOccurrence_[];
|
|
17534
18068
|
MJTagSynonyms_TagIDArray: MJTagSynonym_[];
|
|
17535
18069
|
MJTagAuditLogs_RelatedTagIDArray: MJTagAuditLog_[];
|
|
17536
18070
|
MJTagCoOccurrences_TagAIDArray: MJTagCoOccurrence_[];
|
|
@@ -17596,8 +18130,8 @@ export declare class MJTagResolver extends ResolverBase {
|
|
|
17596
18130
|
MJTag(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTag_ | null>;
|
|
17597
18131
|
MJTags_ParentIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17598
18132
|
MJTaggedItems_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17599
|
-
MJTagCoOccurrences_TagBIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17600
18133
|
MJContentItemTags_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18134
|
+
MJTagCoOccurrences_TagBIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17601
18135
|
MJTagSynonyms_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17602
18136
|
MJTagAuditLogs_RelatedTagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17603
18137
|
MJTagCoOccurrences_TagAIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -18020,6 +18554,8 @@ export declare class MJTemplate_ {
|
|
|
18020
18554
|
MJUserNotificationTypes_EmailTemplateIDArray: MJUserNotificationType_[];
|
|
18021
18555
|
MJAIPrompts_TemplateIDArray: MJAIPrompt_[];
|
|
18022
18556
|
MJUserNotificationTypes_SMSTemplateIDArray: MJUserNotificationType_[];
|
|
18557
|
+
MJSearchScopeProviders_QueryTransformTemplateIDArray: MJSearchScopeProvider_[];
|
|
18558
|
+
MJAIAgentSearchScopes_QueryTemplateIDArray: MJAIAgentSearchScope_[];
|
|
18023
18559
|
MJEntityDocuments_TemplateIDArray: MJEntityDocument_[];
|
|
18024
18560
|
}
|
|
18025
18561
|
export declare class CreateMJTemplateInput {
|
|
@@ -18066,6 +18602,8 @@ export declare class MJTemplateResolver extends ResolverBase {
|
|
|
18066
18602
|
MJUserNotificationTypes_EmailTemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18067
18603
|
MJAIPrompts_TemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18068
18604
|
MJUserNotificationTypes_SMSTemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18605
|
+
MJSearchScopeProviders_QueryTransformTemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18606
|
+
MJAIAgentSearchScopes_QueryTemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18069
18607
|
MJEntityDocuments_TemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18070
18608
|
CreateMJTemplate(input: CreateMJTemplateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18071
18609
|
UpdateMJTemplate(input: UpdateMJTemplateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -19584,6 +20122,7 @@ export declare class MJUser_ {
|
|
|
19584
20122
|
MJMCPToolFavorites_UserIDArray: MJMCPToolFavorite_[];
|
|
19585
20123
|
MJResourcePermissions_SharedByUserIDArray: MJResourcePermission_[];
|
|
19586
20124
|
MJTagSuggestions_ReviewedByUserIDArray: MJTagSuggestion_[];
|
|
20125
|
+
MJSearchScopes_OwnerUserIDArray: MJSearchScope_[];
|
|
19587
20126
|
MJResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
19588
20127
|
MJAIAgentRequests_ResponseByUserIDArray: MJAIAgentRequest_[];
|
|
19589
20128
|
MJConversationDetails_UserIDArray: MJConversationDetail_[];
|
|
@@ -19606,6 +20145,8 @@ export declare class MJUser_ {
|
|
|
19606
20145
|
MJCollectionPermissions_SharedByUserIDArray: MJCollectionPermission_[];
|
|
19607
20146
|
MJCollections_OwnerIDArray: MJCollection_[];
|
|
19608
20147
|
MJRecordMergeLogs_InitiatedByUserIDArray: MJRecordMergeLog_[];
|
|
20148
|
+
MJSearchScopePermissions_UserIDArray: MJSearchScopePermission_[];
|
|
20149
|
+
MJSearchExecutionLogs_UserIDArray: MJSearchExecutionLog_[];
|
|
19609
20150
|
MJTasks_UserIDArray: MJTask_[];
|
|
19610
20151
|
MJAIAgentExamples_UserIDArray: MJAIAgentExample_[];
|
|
19611
20152
|
MJAIAgents_OwnerUserIDArray: MJAIAgent_[];
|
|
@@ -19728,6 +20269,7 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
19728
20269
|
MJMCPToolFavorites_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19729
20270
|
MJResourcePermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19730
20271
|
MJTagSuggestions_ReviewedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20272
|
+
MJSearchScopes_OwnerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19731
20273
|
MJResourcePermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19732
20274
|
MJAIAgentRequests_ResponseByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19733
20275
|
MJConversationDetails_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -19750,6 +20292,8 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
19750
20292
|
MJCollectionPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19751
20293
|
MJCollections_OwnerIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19752
20294
|
MJRecordMergeLogs_InitiatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20295
|
+
MJSearchScopePermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20296
|
+
MJSearchExecutionLogs_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19753
20297
|
MJTasks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19754
20298
|
MJAIAgentExamples_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19755
20299
|
MJAIAgents_OwnerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -19827,6 +20371,7 @@ export declare class MJVectorIndex_ {
|
|
|
19827
20371
|
VectorDatabase: string;
|
|
19828
20372
|
EmbeddingModel: string;
|
|
19829
20373
|
MJEntityRecordDocuments_VectorIndexIDArray: MJEntityRecordDocument_[];
|
|
20374
|
+
MJSearchScopeExternalIndexes_VectorIndexIDArray: MJSearchScopeExternalIndex_[];
|
|
19830
20375
|
MJEntityDocuments_VectorIndexIDArray: MJEntityDocument_[];
|
|
19831
20376
|
MJContentTypes_VectorIndexIDArray: MJContentType_[];
|
|
19832
20377
|
MJContentSources_VectorIndexIDArray: MJContentSource_[];
|
|
@@ -19871,6 +20416,7 @@ export declare class MJVectorIndexResolver extends ResolverBase {
|
|
|
19871
20416
|
RunMJVectorIndexDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19872
20417
|
MJVectorIndex(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJVectorIndex_ | null>;
|
|
19873
20418
|
MJEntityRecordDocuments_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20419
|
+
MJSearchScopeExternalIndexes_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19874
20420
|
MJEntityDocuments_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19875
20421
|
MJContentTypes_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19876
20422
|
MJContentSources_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|