@memberjunction/server 5.21.0 → 5.23.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 +44 -0
- package/dist/agents/skip-sdk.d.ts.map +1 -1
- package/dist/agents/skip-sdk.js +32 -2
- package/dist/agents/skip-sdk.js.map +1 -1
- package/dist/generated/generated.d.ts +172 -4
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +931 -2
- package/dist/generated/generated.js.map +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/resolvers/AutotagPipelineResolver.d.ts +21 -0
- package/dist/resolvers/AutotagPipelineResolver.d.ts.map +1 -0
- package/dist/resolvers/AutotagPipelineResolver.js +147 -0
- package/dist/resolvers/AutotagPipelineResolver.js.map +1 -0
- package/dist/resolvers/ClientToolRequestResolver.d.ts +43 -0
- package/dist/resolvers/ClientToolRequestResolver.d.ts.map +1 -0
- package/dist/resolvers/ClientToolRequestResolver.js +161 -0
- package/dist/resolvers/ClientToolRequestResolver.js.map +1 -0
- package/dist/resolvers/FetchEntityVectorsResolver.d.ts +29 -0
- package/dist/resolvers/FetchEntityVectorsResolver.d.ts.map +1 -0
- package/dist/resolvers/FetchEntityVectorsResolver.js +218 -0
- package/dist/resolvers/FetchEntityVectorsResolver.js.map +1 -0
- package/dist/resolvers/PipelineProgressResolver.d.ts +33 -0
- package/dist/resolvers/PipelineProgressResolver.d.ts.map +1 -0
- package/dist/resolvers/PipelineProgressResolver.js +138 -0
- package/dist/resolvers/PipelineProgressResolver.js.map +1 -0
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.js +7 -5
- package/dist/resolvers/RunAIAgentResolver.js.map +1 -1
- package/dist/resolvers/SearchKnowledgeResolver.d.ts +85 -0
- package/dist/resolvers/SearchKnowledgeResolver.d.ts.map +1 -0
- package/dist/resolvers/SearchKnowledgeResolver.js +587 -0
- package/dist/resolvers/SearchKnowledgeResolver.js.map +1 -0
- package/dist/resolvers/VectorizeEntityResolver.d.ts +21 -0
- package/dist/resolvers/VectorizeEntityResolver.d.ts.map +1 -0
- package/dist/resolvers/VectorizeEntityResolver.js +134 -0
- package/dist/resolvers/VectorizeEntityResolver.js.map +1 -0
- package/package.json +63 -62
- package/src/agents/skip-sdk.ts +31 -2
- package/src/generated/generated.ts +650 -7
- package/src/index.ts +13 -0
- package/src/resolvers/AutotagPipelineResolver.ts +146 -0
- package/src/resolvers/ClientToolRequestResolver.ts +128 -0
- package/src/resolvers/FetchEntityVectorsResolver.ts +234 -0
- package/src/resolvers/PipelineProgressResolver.ts +107 -0
- package/src/resolvers/RunAIAgentResolver.ts +7 -5
- package/src/resolvers/SearchKnowledgeResolver.ts +614 -0
- package/src/resolvers/VectorizeEntityResolver.ts +123 -0
|
@@ -817,6 +817,50 @@ export declare class MJAIAgentCategoryResolver extends ResolverBase {
|
|
|
817
817
|
UpdateMJAIAgentCategory(input: UpdateMJAIAgentCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
818
818
|
DeleteMJAIAgentCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
819
819
|
}
|
|
820
|
+
export declare class MJAIAgentClientTool_ {
|
|
821
|
+
ID: string;
|
|
822
|
+
AgentID: string;
|
|
823
|
+
ClientToolDefinitionID: string;
|
|
824
|
+
IsRequired: boolean;
|
|
825
|
+
Priority: number;
|
|
826
|
+
_mj__CreatedAt: Date;
|
|
827
|
+
_mj__UpdatedAt: Date;
|
|
828
|
+
Agent?: string;
|
|
829
|
+
ClientToolDefinition: string;
|
|
830
|
+
}
|
|
831
|
+
export declare class CreateMJAIAgentClientToolInput {
|
|
832
|
+
ID?: string;
|
|
833
|
+
AgentID?: string;
|
|
834
|
+
ClientToolDefinitionID?: string;
|
|
835
|
+
IsRequired?: boolean;
|
|
836
|
+
Priority?: number;
|
|
837
|
+
}
|
|
838
|
+
export declare class UpdateMJAIAgentClientToolInput {
|
|
839
|
+
ID: string;
|
|
840
|
+
AgentID?: string;
|
|
841
|
+
ClientToolDefinitionID?: string;
|
|
842
|
+
IsRequired?: boolean;
|
|
843
|
+
Priority?: number;
|
|
844
|
+
OldValues___?: KeyValuePairInput[];
|
|
845
|
+
}
|
|
846
|
+
export declare class RunMJAIAgentClientToolViewResult {
|
|
847
|
+
Results: MJAIAgentClientTool_[];
|
|
848
|
+
UserViewRunID?: string;
|
|
849
|
+
RowCount: number;
|
|
850
|
+
TotalRowCount: number;
|
|
851
|
+
ExecutionTime: number;
|
|
852
|
+
ErrorMessage?: string;
|
|
853
|
+
Success: boolean;
|
|
854
|
+
}
|
|
855
|
+
export declare class MJAIAgentClientToolResolver extends ResolverBase {
|
|
856
|
+
RunMJAIAgentClientToolViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
857
|
+
RunMJAIAgentClientToolViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
858
|
+
RunMJAIAgentClientToolDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
859
|
+
MJAIAgentClientTool(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentClientTool_ | null>;
|
|
860
|
+
CreateMJAIAgentClientTool(input: CreateMJAIAgentClientToolInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
861
|
+
UpdateMJAIAgentClientTool(input: UpdateMJAIAgentClientToolInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
862
|
+
DeleteMJAIAgentClientTool(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
863
|
+
}
|
|
820
864
|
export declare class MJAIAgentConfiguration_ {
|
|
821
865
|
ID: string;
|
|
822
866
|
AgentID: string;
|
|
@@ -2300,6 +2344,7 @@ export declare class MJAIAgent_ {
|
|
|
2300
2344
|
AutoArchiveEnabled: boolean;
|
|
2301
2345
|
RerankerConfiguration?: string;
|
|
2302
2346
|
CategoryID?: string;
|
|
2347
|
+
AllowEphemeralClientTools: boolean;
|
|
2303
2348
|
Parent?: string;
|
|
2304
2349
|
ContextCompressionPrompt?: string;
|
|
2305
2350
|
Type?: string;
|
|
@@ -2318,6 +2363,7 @@ export declare class MJAIAgent_ {
|
|
|
2318
2363
|
MJAIAgentPermissions_AgentIDArray: MJAIAgentPermission_[];
|
|
2319
2364
|
MJAIAgentDataSources_AgentIDArray: MJAIAgentDataSource_[];
|
|
2320
2365
|
MJAIAgentModalities_AgentIDArray: MJAIAgentModality_[];
|
|
2366
|
+
MJAIAgentClientTools_AgentIDArray: MJAIAgentClientTool_[];
|
|
2321
2367
|
MJAIAgentNotes_AgentIDArray: MJAIAgentNote_[];
|
|
2322
2368
|
MJAIAgentPrompts_AgentIDArray: MJAIAgentPrompt_[];
|
|
2323
2369
|
MJAIAgentRuns_AgentIDArray: MJAIAgentRun_[];
|
|
@@ -2392,6 +2438,7 @@ export declare class CreateMJAIAgentInput {
|
|
|
2392
2438
|
AutoArchiveEnabled?: boolean;
|
|
2393
2439
|
RerankerConfiguration: string | null;
|
|
2394
2440
|
CategoryID: string | null;
|
|
2441
|
+
AllowEphemeralClientTools?: boolean;
|
|
2395
2442
|
}
|
|
2396
2443
|
export declare class UpdateMJAIAgentInput {
|
|
2397
2444
|
ID: string;
|
|
@@ -2454,6 +2501,7 @@ export declare class UpdateMJAIAgentInput {
|
|
|
2454
2501
|
AutoArchiveEnabled?: boolean;
|
|
2455
2502
|
RerankerConfiguration?: string | null;
|
|
2456
2503
|
CategoryID?: string | null;
|
|
2504
|
+
AllowEphemeralClientTools?: boolean;
|
|
2457
2505
|
OldValues___?: KeyValuePairInput[];
|
|
2458
2506
|
}
|
|
2459
2507
|
export declare class RunMJAIAgentViewResult {
|
|
@@ -2480,6 +2528,7 @@ export declare class MJAIAgentResolver extends ResolverBase {
|
|
|
2480
2528
|
MJAIAgentPermissions_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2481
2529
|
MJAIAgentDataSources_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2482
2530
|
MJAIAgentModalities_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2531
|
+
MJAIAgentClientTools_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2483
2532
|
MJAIAgentNotes_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2484
2533
|
MJAIAgentPrompts_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2485
2534
|
MJAIAgentRuns_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -2553,6 +2602,59 @@ export declare class MJAIArchitectureResolver extends ResolverBase {
|
|
|
2553
2602
|
UpdateMJAIArchitecture(input: UpdateMJAIArchitectureInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2554
2603
|
DeleteMJAIArchitecture(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2555
2604
|
}
|
|
2605
|
+
export declare class MJAIClientToolDefinition_ {
|
|
2606
|
+
ID: string;
|
|
2607
|
+
Name: string;
|
|
2608
|
+
Description: string;
|
|
2609
|
+
Category?: string;
|
|
2610
|
+
InputSchemaJSON?: string;
|
|
2611
|
+
OutputSchemaJSON?: string;
|
|
2612
|
+
DefaultTimeoutMs?: number;
|
|
2613
|
+
RequiresContextType?: string;
|
|
2614
|
+
_mj__CreatedAt: Date;
|
|
2615
|
+
_mj__UpdatedAt: Date;
|
|
2616
|
+
MJAIAgentClientTools_ClientToolDefinitionIDArray: MJAIAgentClientTool_[];
|
|
2617
|
+
}
|
|
2618
|
+
export declare class CreateMJAIClientToolDefinitionInput {
|
|
2619
|
+
ID?: string;
|
|
2620
|
+
Name?: string;
|
|
2621
|
+
Description?: string;
|
|
2622
|
+
Category: string | null;
|
|
2623
|
+
InputSchemaJSON: string | null;
|
|
2624
|
+
OutputSchemaJSON: string | null;
|
|
2625
|
+
DefaultTimeoutMs?: number | null;
|
|
2626
|
+
RequiresContextType: string | null;
|
|
2627
|
+
}
|
|
2628
|
+
export declare class UpdateMJAIClientToolDefinitionInput {
|
|
2629
|
+
ID: string;
|
|
2630
|
+
Name?: string;
|
|
2631
|
+
Description?: string;
|
|
2632
|
+
Category?: string | null;
|
|
2633
|
+
InputSchemaJSON?: string | null;
|
|
2634
|
+
OutputSchemaJSON?: string | null;
|
|
2635
|
+
DefaultTimeoutMs?: number | null;
|
|
2636
|
+
RequiresContextType?: string | null;
|
|
2637
|
+
OldValues___?: KeyValuePairInput[];
|
|
2638
|
+
}
|
|
2639
|
+
export declare class RunMJAIClientToolDefinitionViewResult {
|
|
2640
|
+
Results: MJAIClientToolDefinition_[];
|
|
2641
|
+
UserViewRunID?: string;
|
|
2642
|
+
RowCount: number;
|
|
2643
|
+
TotalRowCount: number;
|
|
2644
|
+
ExecutionTime: number;
|
|
2645
|
+
ErrorMessage?: string;
|
|
2646
|
+
Success: boolean;
|
|
2647
|
+
}
|
|
2648
|
+
export declare class MJAIClientToolDefinitionResolver extends ResolverBase {
|
|
2649
|
+
RunMJAIClientToolDefinitionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2650
|
+
RunMJAIClientToolDefinitionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2651
|
+
RunMJAIClientToolDefinitionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2652
|
+
MJAIClientToolDefinition(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIClientToolDefinition_ | null>;
|
|
2653
|
+
MJAIAgentClientTools_ClientToolDefinitionIDArray(mjaiclienttooldefinition_: MJAIClientToolDefinition_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2654
|
+
CreateMJAIClientToolDefinition(input: CreateMJAIClientToolDefinitionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2655
|
+
UpdateMJAIClientToolDefinition(input: UpdateMJAIClientToolDefinitionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2656
|
+
DeleteMJAIClientToolDefinition(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2657
|
+
}
|
|
2556
2658
|
export declare class MJAIConfigurationParam_ {
|
|
2557
2659
|
ID: string;
|
|
2558
2660
|
ConfigurationID: string;
|
|
@@ -3274,7 +3376,9 @@ export declare class MJAIModel_ {
|
|
|
3274
3376
|
MJAIModelVendors_ModelIDArray: MJAIModelVendor_[];
|
|
3275
3377
|
MJGeneratedCodes_GeneratedByModelIDArray: MJGeneratedCode_[];
|
|
3276
3378
|
MJAIModelCosts_ModelIDArray: MJAIModelCost_[];
|
|
3379
|
+
MJContentTypes_EmbeddingModelIDArray: MJContentType_[];
|
|
3277
3380
|
MJAIPromptModels_ModelIDArray: MJAIPromptModel_[];
|
|
3381
|
+
MJContentSources_EmbeddingModelIDArray: MJContentSource_[];
|
|
3278
3382
|
MJAIPromptRuns_OriginalModelIDArray: MJAIPromptRun_[];
|
|
3279
3383
|
MJAIAgentRuns_OverrideModelIDArray: MJAIAgentRun_[];
|
|
3280
3384
|
MJQueries_EmbeddingModelIDArray: MJQuery_[];
|
|
@@ -3356,7 +3460,9 @@ export declare class MJAIModelResolver extends ResolverBase {
|
|
|
3356
3460
|
MJAIModelVendors_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3357
3461
|
MJGeneratedCodes_GeneratedByModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3358
3462
|
MJAIModelCosts_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3463
|
+
MJContentTypes_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3359
3464
|
MJAIPromptModels_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3465
|
+
MJContentSources_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3360
3466
|
MJAIPromptRuns_OriginalModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3361
3467
|
MJAIAgentRuns_OverrideModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3362
3468
|
MJQueries_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -6837,17 +6943,20 @@ export declare class MJContentItemTag_ {
|
|
|
6837
6943
|
Tag: string;
|
|
6838
6944
|
_mj__CreatedAt: Date;
|
|
6839
6945
|
_mj__UpdatedAt: Date;
|
|
6946
|
+
Weight: number;
|
|
6840
6947
|
Item?: string;
|
|
6841
6948
|
}
|
|
6842
6949
|
export declare class CreateMJContentItemTagInput {
|
|
6843
6950
|
ID?: string;
|
|
6844
6951
|
ItemID?: string;
|
|
6845
6952
|
Tag?: string;
|
|
6953
|
+
Weight?: number;
|
|
6846
6954
|
}
|
|
6847
6955
|
export declare class UpdateMJContentItemTagInput {
|
|
6848
6956
|
ID: string;
|
|
6849
6957
|
ItemID?: string;
|
|
6850
6958
|
Tag?: string;
|
|
6959
|
+
Weight?: number;
|
|
6851
6960
|
OldValues___?: KeyValuePairInput[];
|
|
6852
6961
|
}
|
|
6853
6962
|
export declare class RunMJContentItemTagViewResult {
|
|
@@ -7113,9 +7222,13 @@ export declare class MJContentSource_ {
|
|
|
7113
7222
|
URL: string;
|
|
7114
7223
|
_mj__CreatedAt: Date;
|
|
7115
7224
|
_mj__UpdatedAt: Date;
|
|
7225
|
+
EmbeddingModelID?: string;
|
|
7226
|
+
VectorIndexID?: string;
|
|
7116
7227
|
ContentType: string;
|
|
7117
7228
|
ContentSourceType: string;
|
|
7118
7229
|
ContentFileType: string;
|
|
7230
|
+
EmbeddingModel?: string;
|
|
7231
|
+
VectorIndex?: string;
|
|
7119
7232
|
MJContentItems_ContentSourceIDArray: MJContentItem_[];
|
|
7120
7233
|
MJContentProcessRuns_SourceIDArray: MJContentProcessRun_[];
|
|
7121
7234
|
MJContentSourceParams_ContentSourceIDArray: MJContentSourceParam_[];
|
|
@@ -7127,6 +7240,8 @@ export declare class CreateMJContentSourceInput {
|
|
|
7127
7240
|
ContentSourceTypeID?: string;
|
|
7128
7241
|
ContentFileTypeID?: string;
|
|
7129
7242
|
URL?: string;
|
|
7243
|
+
EmbeddingModelID: string | null;
|
|
7244
|
+
VectorIndexID: string | null;
|
|
7130
7245
|
}
|
|
7131
7246
|
export declare class UpdateMJContentSourceInput {
|
|
7132
7247
|
ID: string;
|
|
@@ -7135,6 +7250,8 @@ export declare class UpdateMJContentSourceInput {
|
|
|
7135
7250
|
ContentSourceTypeID?: string;
|
|
7136
7251
|
ContentFileTypeID?: string;
|
|
7137
7252
|
URL?: string;
|
|
7253
|
+
EmbeddingModelID?: string | null;
|
|
7254
|
+
VectorIndexID?: string | null;
|
|
7138
7255
|
OldValues___?: KeyValuePairInput[];
|
|
7139
7256
|
}
|
|
7140
7257
|
export declare class RunMJContentSourceViewResult {
|
|
@@ -7209,7 +7326,11 @@ export declare class MJContentType_ {
|
|
|
7209
7326
|
MaxTags: number;
|
|
7210
7327
|
_mj__CreatedAt: Date;
|
|
7211
7328
|
_mj__UpdatedAt: Date;
|
|
7329
|
+
EmbeddingModelID?: string;
|
|
7330
|
+
VectorIndexID?: string;
|
|
7212
7331
|
AIModel: string;
|
|
7332
|
+
EmbeddingModel?: string;
|
|
7333
|
+
VectorIndex?: string;
|
|
7213
7334
|
MJContentSources_ContentTypeIDArray: MJContentSource_[];
|
|
7214
7335
|
MJContentItems_ContentTypeIDArray: MJContentItem_[];
|
|
7215
7336
|
}
|
|
@@ -7220,6 +7341,8 @@ export declare class CreateMJContentTypeInput {
|
|
|
7220
7341
|
AIModelID?: string;
|
|
7221
7342
|
MinTags?: number;
|
|
7222
7343
|
MaxTags?: number;
|
|
7344
|
+
EmbeddingModelID: string | null;
|
|
7345
|
+
VectorIndexID: string | null;
|
|
7223
7346
|
}
|
|
7224
7347
|
export declare class UpdateMJContentTypeInput {
|
|
7225
7348
|
ID: string;
|
|
@@ -7228,6 +7351,8 @@ export declare class UpdateMJContentTypeInput {
|
|
|
7228
7351
|
AIModelID?: string;
|
|
7229
7352
|
MinTags?: number;
|
|
7230
7353
|
MaxTags?: number;
|
|
7354
|
+
EmbeddingModelID?: string | null;
|
|
7355
|
+
VectorIndexID?: string | null;
|
|
7231
7356
|
OldValues___?: KeyValuePairInput[];
|
|
7232
7357
|
}
|
|
7233
7358
|
export declare class RunMJContentTypeViewResult {
|
|
@@ -8602,6 +8727,7 @@ export declare class MJDuplicateRunDetailMatch_ {
|
|
|
8602
8727
|
MergedAt: Date;
|
|
8603
8728
|
_mj__CreatedAt: Date;
|
|
8604
8729
|
_mj__UpdatedAt: Date;
|
|
8730
|
+
RecordMetadata?: string;
|
|
8605
8731
|
DuplicateRunDetail: string;
|
|
8606
8732
|
RecordMergeLog?: string;
|
|
8607
8733
|
}
|
|
@@ -8617,6 +8743,7 @@ export declare class CreateMJDuplicateRunDetailMatchInput {
|
|
|
8617
8743
|
RecordMergeLogID: string | null;
|
|
8618
8744
|
MergeStatus?: string;
|
|
8619
8745
|
MergedAt?: Date;
|
|
8746
|
+
RecordMetadata: string | null;
|
|
8620
8747
|
}
|
|
8621
8748
|
export declare class UpdateMJDuplicateRunDetailMatchInput {
|
|
8622
8749
|
ID: string;
|
|
@@ -8630,6 +8757,7 @@ export declare class UpdateMJDuplicateRunDetailMatchInput {
|
|
|
8630
8757
|
RecordMergeLogID?: string | null;
|
|
8631
8758
|
MergeStatus?: string;
|
|
8632
8759
|
MergedAt?: Date;
|
|
8760
|
+
RecordMetadata?: string | null;
|
|
8633
8761
|
OldValues___?: KeyValuePairInput[];
|
|
8634
8762
|
}
|
|
8635
8763
|
export declare class RunMJDuplicateRunDetailMatchViewResult {
|
|
@@ -8661,6 +8789,7 @@ export declare class MJDuplicateRunDetail_ {
|
|
|
8661
8789
|
MergeErrorMessage?: string;
|
|
8662
8790
|
_mj__CreatedAt: Date;
|
|
8663
8791
|
_mj__UpdatedAt: Date;
|
|
8792
|
+
RecordMetadata?: string;
|
|
8664
8793
|
DuplicateRun: string;
|
|
8665
8794
|
MJDuplicateRunDetailMatches_DuplicateRunDetailIDArray: MJDuplicateRunDetailMatch_[];
|
|
8666
8795
|
}
|
|
@@ -8673,6 +8802,7 @@ export declare class CreateMJDuplicateRunDetailInput {
|
|
|
8673
8802
|
MatchErrorMessage: string | null;
|
|
8674
8803
|
MergeStatus?: string;
|
|
8675
8804
|
MergeErrorMessage: string | null;
|
|
8805
|
+
RecordMetadata: string | null;
|
|
8676
8806
|
}
|
|
8677
8807
|
export declare class UpdateMJDuplicateRunDetailInput {
|
|
8678
8808
|
ID: string;
|
|
@@ -8683,6 +8813,7 @@ export declare class UpdateMJDuplicateRunDetailInput {
|
|
|
8683
8813
|
MatchErrorMessage?: string | null;
|
|
8684
8814
|
MergeStatus?: string;
|
|
8685
8815
|
MergeErrorMessage?: string | null;
|
|
8816
|
+
RecordMetadata?: string | null;
|
|
8686
8817
|
OldValues___?: KeyValuePairInput[];
|
|
8687
8818
|
}
|
|
8688
8819
|
export declare class RunMJDuplicateRunDetailViewResult {
|
|
@@ -8708,7 +8839,7 @@ export declare class MJDuplicateRun_ {
|
|
|
8708
8839
|
ID: string;
|
|
8709
8840
|
EntityID: string;
|
|
8710
8841
|
StartedByUserID: string;
|
|
8711
|
-
SourceListID
|
|
8842
|
+
SourceListID?: string;
|
|
8712
8843
|
StartedAt: Date;
|
|
8713
8844
|
EndedAt?: Date;
|
|
8714
8845
|
ApprovalStatus: string;
|
|
@@ -8720,7 +8851,7 @@ export declare class MJDuplicateRun_ {
|
|
|
8720
8851
|
_mj__UpdatedAt: Date;
|
|
8721
8852
|
Entity: string;
|
|
8722
8853
|
StartedByUser: string;
|
|
8723
|
-
SourceList
|
|
8854
|
+
SourceList?: string;
|
|
8724
8855
|
ApprovedByUser?: string;
|
|
8725
8856
|
MJDuplicateRunDetails_DuplicateRunIDArray: MJDuplicateRunDetail_[];
|
|
8726
8857
|
}
|
|
@@ -8728,7 +8859,7 @@ export declare class CreateMJDuplicateRunInput {
|
|
|
8728
8859
|
ID?: string;
|
|
8729
8860
|
EntityID?: string;
|
|
8730
8861
|
StartedByUserID?: string;
|
|
8731
|
-
SourceListID
|
|
8862
|
+
SourceListID: string | null;
|
|
8732
8863
|
StartedAt?: Date;
|
|
8733
8864
|
EndedAt: Date | null;
|
|
8734
8865
|
ApprovalStatus?: string;
|
|
@@ -8741,7 +8872,7 @@ export declare class UpdateMJDuplicateRunInput {
|
|
|
8741
8872
|
ID: string;
|
|
8742
8873
|
EntityID?: string;
|
|
8743
8874
|
StartedByUserID?: string;
|
|
8744
|
-
SourceListID?: string;
|
|
8875
|
+
SourceListID?: string | null;
|
|
8745
8876
|
StartedAt?: Date;
|
|
8746
8877
|
EndedAt?: Date | null;
|
|
8747
8878
|
ApprovalStatus?: string;
|
|
@@ -9949,11 +10080,14 @@ export declare class MJEntityDocument_ {
|
|
|
9949
10080
|
AbsoluteMatchThreshold: number;
|
|
9950
10081
|
_mj__CreatedAt: Date;
|
|
9951
10082
|
_mj__UpdatedAt: Date;
|
|
10083
|
+
VectorIndexID?: string;
|
|
10084
|
+
Configuration?: string;
|
|
9952
10085
|
Type: string;
|
|
9953
10086
|
Entity: string;
|
|
9954
10087
|
VectorDatabase: string;
|
|
9955
10088
|
Template: string;
|
|
9956
10089
|
AIModel: string;
|
|
10090
|
+
VectorIndex?: string;
|
|
9957
10091
|
MJEntityDocumentRuns_EntityDocumentIDArray: MJEntityDocumentRun_[];
|
|
9958
10092
|
MJEntityDocumentSettings_EntityDocumentIDArray: MJEntityDocumentSetting_[];
|
|
9959
10093
|
MJEntityRecordDocuments_EntityDocumentIDArray: MJEntityRecordDocument_[];
|
|
@@ -9969,6 +10103,8 @@ export declare class CreateMJEntityDocumentInput {
|
|
|
9969
10103
|
AIModelID?: string;
|
|
9970
10104
|
PotentialMatchThreshold?: number;
|
|
9971
10105
|
AbsoluteMatchThreshold?: number;
|
|
10106
|
+
VectorIndexID: string | null;
|
|
10107
|
+
Configuration: string | null;
|
|
9972
10108
|
}
|
|
9973
10109
|
export declare class UpdateMJEntityDocumentInput {
|
|
9974
10110
|
ID: string;
|
|
@@ -9981,6 +10117,8 @@ export declare class UpdateMJEntityDocumentInput {
|
|
|
9981
10117
|
AIModelID?: string;
|
|
9982
10118
|
PotentialMatchThreshold?: number;
|
|
9983
10119
|
AbsoluteMatchThreshold?: number;
|
|
10120
|
+
VectorIndexID?: string | null;
|
|
10121
|
+
Configuration?: string | null;
|
|
9984
10122
|
OldValues___?: KeyValuePairInput[];
|
|
9985
10123
|
}
|
|
9986
10124
|
export declare class RunMJEntityDocumentViewResult {
|
|
@@ -10110,6 +10248,9 @@ export declare class MJEntityField_ {
|
|
|
10110
10248
|
IsSoftPrimaryKey: boolean;
|
|
10111
10249
|
IsSoftForeignKey: boolean;
|
|
10112
10250
|
RelatedEntityJoinFields?: string;
|
|
10251
|
+
JSONType?: string;
|
|
10252
|
+
JSONTypeIsArray: boolean;
|
|
10253
|
+
JSONTypeDefinition?: string;
|
|
10113
10254
|
FieldCodeName?: string;
|
|
10114
10255
|
Entity: string;
|
|
10115
10256
|
SchemaName: string;
|
|
@@ -10169,6 +10310,9 @@ export declare class CreateMJEntityFieldInput {
|
|
|
10169
10310
|
IsSoftPrimaryKey?: boolean;
|
|
10170
10311
|
IsSoftForeignKey?: boolean;
|
|
10171
10312
|
RelatedEntityJoinFields: string | null;
|
|
10313
|
+
JSONType: string | null;
|
|
10314
|
+
JSONTypeIsArray?: boolean;
|
|
10315
|
+
JSONTypeDefinition: string | null;
|
|
10172
10316
|
}
|
|
10173
10317
|
export declare class UpdateMJEntityFieldInput {
|
|
10174
10318
|
ID: string;
|
|
@@ -10214,6 +10358,9 @@ export declare class UpdateMJEntityFieldInput {
|
|
|
10214
10358
|
IsSoftPrimaryKey?: boolean;
|
|
10215
10359
|
IsSoftForeignKey?: boolean;
|
|
10216
10360
|
RelatedEntityJoinFields?: string | null;
|
|
10361
|
+
JSONType?: string | null;
|
|
10362
|
+
JSONTypeIsArray?: boolean;
|
|
10363
|
+
JSONTypeDefinition?: string | null;
|
|
10217
10364
|
OldValues___?: KeyValuePairInput[];
|
|
10218
10365
|
}
|
|
10219
10366
|
export declare class RunMJEntityFieldViewResult {
|
|
@@ -17399,6 +17546,7 @@ export declare class MJVectorDatabase_ {
|
|
|
17399
17546
|
ClassKey?: string;
|
|
17400
17547
|
_mj__CreatedAt: Date;
|
|
17401
17548
|
_mj__UpdatedAt: Date;
|
|
17549
|
+
Configuration?: string;
|
|
17402
17550
|
MJVectorIndexes_VectorDatabaseIDArray: MJVectorIndex_[];
|
|
17403
17551
|
MJEntityDocuments_VectorDatabaseIDArray: MJEntityDocument_[];
|
|
17404
17552
|
}
|
|
@@ -17408,6 +17556,7 @@ export declare class CreateMJVectorDatabaseInput {
|
|
|
17408
17556
|
Description: string | null;
|
|
17409
17557
|
DefaultURL: string | null;
|
|
17410
17558
|
ClassKey: string | null;
|
|
17559
|
+
Configuration: string | null;
|
|
17411
17560
|
}
|
|
17412
17561
|
export declare class UpdateMJVectorDatabaseInput {
|
|
17413
17562
|
ID: string;
|
|
@@ -17415,6 +17564,7 @@ export declare class UpdateMJVectorDatabaseInput {
|
|
|
17415
17564
|
Description?: string | null;
|
|
17416
17565
|
DefaultURL?: string | null;
|
|
17417
17566
|
ClassKey?: string | null;
|
|
17567
|
+
Configuration?: string | null;
|
|
17418
17568
|
OldValues___?: KeyValuePairInput[];
|
|
17419
17569
|
}
|
|
17420
17570
|
export declare class RunMJVectorDatabaseViewResult {
|
|
@@ -17445,9 +17595,16 @@ export declare class MJVectorIndex_ {
|
|
|
17445
17595
|
EmbeddingModelID: string;
|
|
17446
17596
|
_mj__CreatedAt: Date;
|
|
17447
17597
|
_mj__UpdatedAt: Date;
|
|
17598
|
+
ExternalID?: string;
|
|
17599
|
+
Dimensions?: number;
|
|
17600
|
+
Metric?: string;
|
|
17601
|
+
ProviderConfig?: string;
|
|
17448
17602
|
VectorDatabase: string;
|
|
17449
17603
|
EmbeddingModel: string;
|
|
17450
17604
|
MJEntityRecordDocuments_VectorIndexIDArray: MJEntityRecordDocument_[];
|
|
17605
|
+
MJEntityDocuments_VectorIndexIDArray: MJEntityDocument_[];
|
|
17606
|
+
MJContentTypes_VectorIndexIDArray: MJContentType_[];
|
|
17607
|
+
MJContentSources_VectorIndexIDArray: MJContentSource_[];
|
|
17451
17608
|
}
|
|
17452
17609
|
export declare class CreateMJVectorIndexInput {
|
|
17453
17610
|
ID?: string;
|
|
@@ -17455,6 +17612,10 @@ export declare class CreateMJVectorIndexInput {
|
|
|
17455
17612
|
Description: string | null;
|
|
17456
17613
|
VectorDatabaseID?: string;
|
|
17457
17614
|
EmbeddingModelID?: string;
|
|
17615
|
+
ExternalID: string | null;
|
|
17616
|
+
Dimensions: number | null;
|
|
17617
|
+
Metric: string | null;
|
|
17618
|
+
ProviderConfig: string | null;
|
|
17458
17619
|
}
|
|
17459
17620
|
export declare class UpdateMJVectorIndexInput {
|
|
17460
17621
|
ID: string;
|
|
@@ -17462,6 +17623,10 @@ export declare class UpdateMJVectorIndexInput {
|
|
|
17462
17623
|
Description?: string | null;
|
|
17463
17624
|
VectorDatabaseID?: string;
|
|
17464
17625
|
EmbeddingModelID?: string;
|
|
17626
|
+
ExternalID?: string | null;
|
|
17627
|
+
Dimensions?: number | null;
|
|
17628
|
+
Metric?: string | null;
|
|
17629
|
+
ProviderConfig?: string | null;
|
|
17465
17630
|
OldValues___?: KeyValuePairInput[];
|
|
17466
17631
|
}
|
|
17467
17632
|
export declare class RunMJVectorIndexViewResult {
|
|
@@ -17479,6 +17644,9 @@ export declare class MJVectorIndexResolver extends ResolverBase {
|
|
|
17479
17644
|
RunMJVectorIndexDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17480
17645
|
MJVectorIndex(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJVectorIndex_ | null>;
|
|
17481
17646
|
MJEntityRecordDocuments_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17647
|
+
MJEntityDocuments_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17648
|
+
MJContentTypes_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17649
|
+
MJContentSources_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17482
17650
|
CreateMJVectorIndex(input: CreateMJVectorIndexInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17483
17651
|
UpdateMJVectorIndex(input: UpdateMJVectorIndexInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17484
17652
|
DeleteMJVectorIndex(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|