@memberjunction/server 5.24.0 → 5.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agents/skip-sdk.d.ts +12 -0
- package/dist/agents/skip-sdk.d.ts.map +1 -1
- package/dist/agents/skip-sdk.js +70 -1
- package/dist/agents/skip-sdk.js.map +1 -1
- package/dist/config.d.ts +70 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +21 -0
- package/dist/config.js.map +1 -1
- package/dist/generated/generated.d.ts +498 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +2755 -0
- package/dist/generated/generated.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +18 -2
- package/dist/index.js.map +1 -1
- package/dist/resolvers/ArtifactFileResolver.d.ts +15 -0
- package/dist/resolvers/ArtifactFileResolver.d.ts.map +1 -0
- package/dist/resolvers/ArtifactFileResolver.js +74 -0
- package/dist/resolvers/ArtifactFileResolver.js.map +1 -0
- package/dist/resolvers/AutotagPipelineResolver.d.ts +13 -0
- package/dist/resolvers/AutotagPipelineResolver.d.ts.map +1 -1
- package/dist/resolvers/AutotagPipelineResolver.js +103 -3
- package/dist/resolvers/AutotagPipelineResolver.js.map +1 -1
- package/dist/resolvers/CacheStatsResolver.d.ts +31 -0
- package/dist/resolvers/CacheStatsResolver.d.ts.map +1 -0
- package/dist/resolvers/CacheStatsResolver.js +181 -0
- package/dist/resolvers/CacheStatsResolver.js.map +1 -0
- package/dist/resolvers/FileResolver.d.ts.map +1 -1
- package/dist/resolvers/FileResolver.js +12 -32
- package/dist/resolvers/FileResolver.js.map +1 -1
- package/dist/resolvers/GeoResolver.d.ts +58 -0
- package/dist/resolvers/GeoResolver.d.ts.map +1 -0
- package/dist/resolvers/GeoResolver.js +302 -0
- package/dist/resolvers/GeoResolver.js.map +1 -0
- package/dist/resolvers/RunAIAgentResolver.d.ts +13 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.js +115 -20
- package/dist/resolvers/RunAIAgentResolver.js.map +1 -1
- package/dist/resolvers/SearchKnowledgeResolver.d.ts +21 -80
- package/dist/resolvers/SearchKnowledgeResolver.d.ts.map +1 -1
- package/dist/resolvers/SearchKnowledgeResolver.js +129 -604
- package/dist/resolvers/SearchKnowledgeResolver.js.map +1 -1
- package/dist/resolvers/SearchKnowledgeSystemUserResolver.d.ts +19 -0
- package/dist/resolvers/SearchKnowledgeSystemUserResolver.d.ts.map +1 -0
- package/dist/resolvers/SearchKnowledgeSystemUserResolver.js +149 -0
- package/dist/resolvers/SearchKnowledgeSystemUserResolver.js.map +1 -0
- package/package.json +66 -63
- package/src/__tests__/search-knowledge-tags.test.ts +177 -337
- package/src/__tests__/skip-sdk-organic-keys.test.ts +274 -0
- package/src/agents/skip-sdk.ts +83 -2
- package/src/config.ts +24 -0
- package/src/generated/generated.ts +1902 -1
- package/src/index.ts +18 -2
- package/src/resolvers/ArtifactFileResolver.ts +71 -0
- package/src/resolvers/AutotagPipelineResolver.ts +118 -4
- package/src/resolvers/CacheStatsResolver.ts +142 -0
- package/src/resolvers/FileResolver.ts +12 -41
- package/src/resolvers/GeoResolver.ts +258 -0
- package/src/resolvers/RunAIAgentResolver.ts +137 -23
- package/src/resolvers/SearchKnowledgeResolver.ts +114 -715
- package/src/resolvers/SearchKnowledgeSystemUserResolver.ts +138 -0
|
@@ -775,7 +775,9 @@ export declare class MJAIAgentCategory_ {
|
|
|
775
775
|
Status: string;
|
|
776
776
|
_mj__CreatedAt: Date;
|
|
777
777
|
_mj__UpdatedAt: Date;
|
|
778
|
+
DefaultStorageAccountID?: string;
|
|
778
779
|
Parent?: string;
|
|
780
|
+
DefaultStorageAccount?: string;
|
|
779
781
|
RootParentID?: string;
|
|
780
782
|
MJAIAgentCategories_ParentIDArray: MJAIAgentCategory_[];
|
|
781
783
|
MJAIAgents_CategoryIDArray: MJAIAgent_[];
|
|
@@ -787,6 +789,7 @@ export declare class CreateMJAIAgentCategoryInput {
|
|
|
787
789
|
ParentID: string | null;
|
|
788
790
|
AssignmentStrategy: string | null;
|
|
789
791
|
Status?: string;
|
|
792
|
+
DefaultStorageAccountID: string | null;
|
|
790
793
|
}
|
|
791
794
|
export declare class UpdateMJAIAgentCategoryInput {
|
|
792
795
|
ID: string;
|
|
@@ -795,6 +798,7 @@ export declare class UpdateMJAIAgentCategoryInput {
|
|
|
795
798
|
ParentID?: string | null;
|
|
796
799
|
AssignmentStrategy?: string | null;
|
|
797
800
|
Status?: string;
|
|
801
|
+
DefaultStorageAccountID?: string | null;
|
|
798
802
|
OldValues___?: KeyValuePairInput[];
|
|
799
803
|
}
|
|
800
804
|
export declare class RunMJAIAgentCategoryViewResult {
|
|
@@ -2230,7 +2234,9 @@ export declare class MJAIAgentType_ {
|
|
|
2230
2234
|
UIFormSectionExpandedByDefault: boolean;
|
|
2231
2235
|
PromptParamsSchema?: string;
|
|
2232
2236
|
AssignmentStrategy?: string;
|
|
2237
|
+
DefaultStorageAccountID?: string;
|
|
2233
2238
|
SystemPrompt?: string;
|
|
2239
|
+
DefaultStorageAccount?: string;
|
|
2234
2240
|
MJAIAgents_TypeIDArray: MJAIAgent_[];
|
|
2235
2241
|
}
|
|
2236
2242
|
export declare class CreateMJAIAgentTypeInput {
|
|
@@ -2246,6 +2252,7 @@ export declare class CreateMJAIAgentTypeInput {
|
|
|
2246
2252
|
UIFormSectionExpandedByDefault?: boolean;
|
|
2247
2253
|
PromptParamsSchema: string | null;
|
|
2248
2254
|
AssignmentStrategy: string | null;
|
|
2255
|
+
DefaultStorageAccountID: string | null;
|
|
2249
2256
|
}
|
|
2250
2257
|
export declare class UpdateMJAIAgentTypeInput {
|
|
2251
2258
|
ID: string;
|
|
@@ -2260,6 +2267,7 @@ export declare class UpdateMJAIAgentTypeInput {
|
|
|
2260
2267
|
UIFormSectionExpandedByDefault?: boolean;
|
|
2261
2268
|
PromptParamsSchema?: string | null;
|
|
2262
2269
|
AssignmentStrategy?: string | null;
|
|
2270
|
+
DefaultStorageAccountID?: string | null;
|
|
2263
2271
|
OldValues___?: KeyValuePairInput[];
|
|
2264
2272
|
}
|
|
2265
2273
|
export declare class RunMJAIAgentTypeViewResult {
|
|
@@ -2345,6 +2353,7 @@ export declare class MJAIAgent_ {
|
|
|
2345
2353
|
RerankerConfiguration?: string;
|
|
2346
2354
|
CategoryID?: string;
|
|
2347
2355
|
AllowEphemeralClientTools: boolean;
|
|
2356
|
+
DefaultStorageAccountID?: string;
|
|
2348
2357
|
Parent?: string;
|
|
2349
2358
|
ContextCompressionPrompt?: string;
|
|
2350
2359
|
Type?: string;
|
|
@@ -2352,6 +2361,7 @@ export declare class MJAIAgent_ {
|
|
|
2352
2361
|
OwnerUser: string;
|
|
2353
2362
|
AttachmentStorageProvider?: string;
|
|
2354
2363
|
Category?: string;
|
|
2364
|
+
DefaultStorageAccount?: string;
|
|
2355
2365
|
RootParentID?: string;
|
|
2356
2366
|
MJAIAgentActions_AgentIDArray: MJAIAgentAction_[];
|
|
2357
2367
|
MJAIAgentModels_AgentIDArray: MJAIAgentModel_[];
|
|
@@ -2439,6 +2449,7 @@ export declare class CreateMJAIAgentInput {
|
|
|
2439
2449
|
RerankerConfiguration: string | null;
|
|
2440
2450
|
CategoryID: string | null;
|
|
2441
2451
|
AllowEphemeralClientTools?: boolean;
|
|
2452
|
+
DefaultStorageAccountID: string | null;
|
|
2442
2453
|
}
|
|
2443
2454
|
export declare class UpdateMJAIAgentInput {
|
|
2444
2455
|
ID: string;
|
|
@@ -2502,6 +2513,7 @@ export declare class UpdateMJAIAgentInput {
|
|
|
2502
2513
|
RerankerConfiguration?: string | null;
|
|
2503
2514
|
CategoryID?: string | null;
|
|
2504
2515
|
AllowEphemeralClientTools?: boolean;
|
|
2516
|
+
DefaultStorageAccountID?: string | null;
|
|
2505
2517
|
OldValues___?: KeyValuePairInput[];
|
|
2506
2518
|
}
|
|
2507
2519
|
export declare class RunMJAIAgentViewResult {
|
|
@@ -4861,6 +4873,50 @@ export declare class MJApplicationEntityResolver extends ResolverBase {
|
|
|
4861
4873
|
UpdateMJApplicationEntity(input: UpdateMJApplicationEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4862
4874
|
DeleteMJApplicationEntity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4863
4875
|
}
|
|
4876
|
+
export declare class MJApplicationRole_ {
|
|
4877
|
+
ID: string;
|
|
4878
|
+
ApplicationID: string;
|
|
4879
|
+
RoleID: string;
|
|
4880
|
+
CanAccess: boolean;
|
|
4881
|
+
CanAdmin: boolean;
|
|
4882
|
+
_mj__CreatedAt: Date;
|
|
4883
|
+
_mj__UpdatedAt: Date;
|
|
4884
|
+
Application: string;
|
|
4885
|
+
Role: string;
|
|
4886
|
+
}
|
|
4887
|
+
export declare class CreateMJApplicationRoleInput {
|
|
4888
|
+
ID?: string;
|
|
4889
|
+
ApplicationID?: string;
|
|
4890
|
+
RoleID?: string;
|
|
4891
|
+
CanAccess?: boolean;
|
|
4892
|
+
CanAdmin?: boolean;
|
|
4893
|
+
}
|
|
4894
|
+
export declare class UpdateMJApplicationRoleInput {
|
|
4895
|
+
ID: string;
|
|
4896
|
+
ApplicationID?: string;
|
|
4897
|
+
RoleID?: string;
|
|
4898
|
+
CanAccess?: boolean;
|
|
4899
|
+
CanAdmin?: boolean;
|
|
4900
|
+
OldValues___?: KeyValuePairInput[];
|
|
4901
|
+
}
|
|
4902
|
+
export declare class RunMJApplicationRoleViewResult {
|
|
4903
|
+
Results: MJApplicationRole_[];
|
|
4904
|
+
UserViewRunID?: string;
|
|
4905
|
+
RowCount: number;
|
|
4906
|
+
TotalRowCount: number;
|
|
4907
|
+
ExecutionTime: number;
|
|
4908
|
+
ErrorMessage?: string;
|
|
4909
|
+
Success: boolean;
|
|
4910
|
+
}
|
|
4911
|
+
export declare class MJApplicationRoleResolver extends ResolverBase {
|
|
4912
|
+
RunMJApplicationRoleViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4913
|
+
RunMJApplicationRoleViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4914
|
+
RunMJApplicationRoleDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4915
|
+
MJApplicationRole(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJApplicationRole_ | null>;
|
|
4916
|
+
CreateMJApplicationRole(input: CreateMJApplicationRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4917
|
+
UpdateMJApplicationRole(input: UpdateMJApplicationRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4918
|
+
DeleteMJApplicationRole(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4919
|
+
}
|
|
4864
4920
|
export declare class MJApplicationSetting_ {
|
|
4865
4921
|
ID: string;
|
|
4866
4922
|
ApplicationID: string;
|
|
@@ -4928,6 +4984,7 @@ export declare class MJApplication_ {
|
|
|
4928
4984
|
MJApplicationSettings_ApplicationIDArray: MJApplicationSetting_[];
|
|
4929
4985
|
MJDashboards_ApplicationIDArray: MJDashboard_[];
|
|
4930
4986
|
MJDashboardUserPreferences_ApplicationIDArray: MJDashboardUserPreference_[];
|
|
4987
|
+
MJApplicationRoles_ApplicationIDArray: MJApplicationRole_[];
|
|
4931
4988
|
}
|
|
4932
4989
|
export declare class CreateMJApplicationInput {
|
|
4933
4990
|
ID?: string;
|
|
@@ -4986,6 +5043,7 @@ export declare class MJApplicationResolver extends ResolverBase {
|
|
|
4986
5043
|
MJApplicationSettings_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4987
5044
|
MJDashboards_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4988
5045
|
MJDashboardUserPreferences_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5046
|
+
MJApplicationRoles_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4989
5047
|
CreateMJApplication(input: CreateMJApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4990
5048
|
UpdateMJApplication(input: UpdateMJApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4991
5049
|
DeleteMJApplication(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5056,6 +5114,7 @@ export declare class MJArtifactType_ {
|
|
|
5056
5114
|
ExtractRules?: string;
|
|
5057
5115
|
DriverClass?: string;
|
|
5058
5116
|
Icon?: string;
|
|
5117
|
+
ContentCategory: string;
|
|
5059
5118
|
Parent?: string;
|
|
5060
5119
|
RootParentID?: string;
|
|
5061
5120
|
MJConversationArtifacts_ArtifactTypeIDArray: MJConversationArtifact_[];
|
|
@@ -5074,6 +5133,7 @@ export declare class CreateMJArtifactTypeInput {
|
|
|
5074
5133
|
ExtractRules: string | null;
|
|
5075
5134
|
DriverClass: string | null;
|
|
5076
5135
|
Icon: string | null;
|
|
5136
|
+
ContentCategory?: string;
|
|
5077
5137
|
}
|
|
5078
5138
|
export declare class UpdateMJArtifactTypeInput {
|
|
5079
5139
|
ID: string;
|
|
@@ -5085,6 +5145,7 @@ export declare class UpdateMJArtifactTypeInput {
|
|
|
5085
5145
|
ExtractRules?: string | null;
|
|
5086
5146
|
DriverClass?: string | null;
|
|
5087
5147
|
Icon?: string | null;
|
|
5148
|
+
ContentCategory?: string;
|
|
5088
5149
|
OldValues___?: KeyValuePairInput[];
|
|
5089
5150
|
}
|
|
5090
5151
|
export declare class RunMJArtifactTypeViewResult {
|
|
@@ -5213,8 +5274,14 @@ export declare class MJArtifactVersion_ {
|
|
|
5213
5274
|
ContentHash?: string;
|
|
5214
5275
|
Name?: string;
|
|
5215
5276
|
Description?: string;
|
|
5277
|
+
FileID?: string;
|
|
5278
|
+
ContentMode: string;
|
|
5279
|
+
MimeType?: string;
|
|
5280
|
+
FileName?: string;
|
|
5281
|
+
ContentSizeBytes?: number;
|
|
5216
5282
|
Artifact: string;
|
|
5217
5283
|
User: string;
|
|
5284
|
+
File?: string;
|
|
5218
5285
|
MJArtifactVersionAttributes_ArtifactVersionIDArray: MJArtifactVersionAttribute_[];
|
|
5219
5286
|
MJCollectionArtifacts_ArtifactVersionIDArray: MJCollectionArtifact_[];
|
|
5220
5287
|
MJConversationDetailArtifacts_ArtifactVersionIDArray: MJConversationDetailArtifact_[];
|
|
@@ -5231,6 +5298,11 @@ export declare class CreateMJArtifactVersionInput {
|
|
|
5231
5298
|
ContentHash: string | null;
|
|
5232
5299
|
Name: string | null;
|
|
5233
5300
|
Description: string | null;
|
|
5301
|
+
FileID: string | null;
|
|
5302
|
+
ContentMode?: string;
|
|
5303
|
+
MimeType: string | null;
|
|
5304
|
+
FileName: string | null;
|
|
5305
|
+
ContentSizeBytes: number | null;
|
|
5234
5306
|
}
|
|
5235
5307
|
export declare class UpdateMJArtifactVersionInput {
|
|
5236
5308
|
ID: string;
|
|
@@ -5243,6 +5315,11 @@ export declare class UpdateMJArtifactVersionInput {
|
|
|
5243
5315
|
ContentHash?: string | null;
|
|
5244
5316
|
Name?: string | null;
|
|
5245
5317
|
Description?: string | null;
|
|
5318
|
+
FileID?: string | null;
|
|
5319
|
+
ContentMode?: string;
|
|
5320
|
+
MimeType?: string | null;
|
|
5321
|
+
FileName?: string | null;
|
|
5322
|
+
ContentSizeBytes?: number | null;
|
|
5246
5323
|
OldValues___?: KeyValuePairInput[];
|
|
5247
5324
|
}
|
|
5248
5325
|
export declare class RunMJArtifactVersionViewResult {
|
|
@@ -8152,6 +8229,64 @@ export declare class MJConversationResolver extends ResolverBase {
|
|
|
8152
8229
|
UpdateMJConversation(input: UpdateMJConversationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8153
8230
|
DeleteMJConversation(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8154
8231
|
}
|
|
8232
|
+
export declare class MJCountry_ {
|
|
8233
|
+
ID: string;
|
|
8234
|
+
Name: string;
|
|
8235
|
+
ISO2: string;
|
|
8236
|
+
ISO3: string;
|
|
8237
|
+
NumericCode?: number;
|
|
8238
|
+
Latitude?: number;
|
|
8239
|
+
Longitude?: number;
|
|
8240
|
+
BoundaryGeoJSON?: string;
|
|
8241
|
+
CommonAliases?: string;
|
|
8242
|
+
_mj__CreatedAt: Date;
|
|
8243
|
+
_mj__UpdatedAt: Date;
|
|
8244
|
+
MJStateProvinces_CountryIDArray: MJStateProvince_[];
|
|
8245
|
+
MJRecordGeoCodes_CountryIDArray: MJRecordGeoCode_[];
|
|
8246
|
+
}
|
|
8247
|
+
export declare class CreateMJCountryInput {
|
|
8248
|
+
ID?: string;
|
|
8249
|
+
Name?: string;
|
|
8250
|
+
ISO2?: string;
|
|
8251
|
+
ISO3?: string;
|
|
8252
|
+
NumericCode: number | null;
|
|
8253
|
+
Latitude: number | null;
|
|
8254
|
+
Longitude: number | null;
|
|
8255
|
+
BoundaryGeoJSON: string | null;
|
|
8256
|
+
CommonAliases: string | null;
|
|
8257
|
+
}
|
|
8258
|
+
export declare class UpdateMJCountryInput {
|
|
8259
|
+
ID: string;
|
|
8260
|
+
Name?: string;
|
|
8261
|
+
ISO2?: string;
|
|
8262
|
+
ISO3?: string;
|
|
8263
|
+
NumericCode?: number | null;
|
|
8264
|
+
Latitude?: number | null;
|
|
8265
|
+
Longitude?: number | null;
|
|
8266
|
+
BoundaryGeoJSON?: string | null;
|
|
8267
|
+
CommonAliases?: string | null;
|
|
8268
|
+
OldValues___?: KeyValuePairInput[];
|
|
8269
|
+
}
|
|
8270
|
+
export declare class RunMJCountryViewResult {
|
|
8271
|
+
Results: MJCountry_[];
|
|
8272
|
+
UserViewRunID?: string;
|
|
8273
|
+
RowCount: number;
|
|
8274
|
+
TotalRowCount: number;
|
|
8275
|
+
ExecutionTime: number;
|
|
8276
|
+
ErrorMessage?: string;
|
|
8277
|
+
Success: boolean;
|
|
8278
|
+
}
|
|
8279
|
+
export declare class MJCountryResolver extends ResolverBase {
|
|
8280
|
+
RunMJCountryViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8281
|
+
RunMJCountryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8282
|
+
RunMJCountryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8283
|
+
MJCountry(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCountry_ | null>;
|
|
8284
|
+
MJStateProvinces_CountryIDArray(mjcountry_: MJCountry_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8285
|
+
MJRecordGeoCodes_CountryIDArray(mjcountry_: MJCountry_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8286
|
+
CreateMJCountry(input: CreateMJCountryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8287
|
+
UpdateMJCountry(input: UpdateMJCountryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8288
|
+
DeleteMJCountry(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8289
|
+
}
|
|
8155
8290
|
export declare class MJCredentialCategory_ {
|
|
8156
8291
|
ID: string;
|
|
8157
8292
|
Name: string;
|
|
@@ -8274,8 +8409,10 @@ export declare class MJCredential_ {
|
|
|
8274
8409
|
CredentialType: string;
|
|
8275
8410
|
Category?: string;
|
|
8276
8411
|
MJOAuthTokens_CredentialIDArray: MJOAuthToken_[];
|
|
8412
|
+
MJSearchProviders_CredentialIDArray: MJSearchProvider_[];
|
|
8277
8413
|
MJFileStorageAccounts_CredentialIDArray: MJFileStorageAccount_[];
|
|
8278
8414
|
MJMCPServerConnections_CredentialIDArray: MJMCPServerConnection_[];
|
|
8415
|
+
MJVectorDatabases_CredentialIDArray: MJVectorDatabase_[];
|
|
8279
8416
|
MJAICredentialBindings_CredentialIDArray: MJAICredentialBinding_[];
|
|
8280
8417
|
MJCompanyIntegrations_CredentialIDArray: MJCompanyIntegration_[];
|
|
8281
8418
|
}
|
|
@@ -8323,8 +8460,10 @@ export declare class MJCredentialResolver extends ResolverBase {
|
|
|
8323
8460
|
RunMJCredentialDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8324
8461
|
MJCredential(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCredential_ | null>;
|
|
8325
8462
|
MJOAuthTokens_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8463
|
+
MJSearchProviders_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8326
8464
|
MJFileStorageAccounts_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8327
8465
|
MJMCPServerConnections_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8466
|
+
MJVectorDatabases_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8328
8467
|
MJAICredentialBindings_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8329
8468
|
MJCompanyIntegrations_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8330
8469
|
CreateMJCredential(input: CreateMJCredentialInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -9603,6 +9742,13 @@ export declare class MJEntity_ {
|
|
|
9603
9742
|
Status: string;
|
|
9604
9743
|
DisplayName?: string;
|
|
9605
9744
|
AllowMultipleSubtypes: boolean;
|
|
9745
|
+
AutoUpdateFullTextSearch: boolean;
|
|
9746
|
+
AutoUpdateAllowUserSearchAPI: boolean;
|
|
9747
|
+
TrustServerCacheCompletely: boolean;
|
|
9748
|
+
SupportsGeoCoding: boolean;
|
|
9749
|
+
AutoUpdateSupportsGeoCoding: boolean;
|
|
9750
|
+
AllowCaching: boolean;
|
|
9751
|
+
DetectExternalChanges: boolean;
|
|
9606
9752
|
CodeName?: string;
|
|
9607
9753
|
ClassName?: string;
|
|
9608
9754
|
BaseTableCodeName?: string;
|
|
@@ -9655,6 +9801,7 @@ export declare class MJEntity_ {
|
|
|
9655
9801
|
MJEntityRelationships_RelatedEntityIDArray: MJEntityRelationship_[];
|
|
9656
9802
|
MJEntityOrganicKeyRelatedEntities_RelatedEntityIDArray: MJEntityOrganicKeyRelatedEntity_[];
|
|
9657
9803
|
MJEntityOrganicKeys_EntityIDArray: MJEntityOrganicKey_[];
|
|
9804
|
+
MJRecordGeoCodes_EntityIDArray: MJRecordGeoCode_[];
|
|
9658
9805
|
MJGeneratedCodes_LinkedEntityIDArray: MJGeneratedCode_[];
|
|
9659
9806
|
MJRecordLinks_SourceEntityIDArray: MJRecordLink_[];
|
|
9660
9807
|
MJCompanyIntegrationEntityMaps_EntityIDArray: MJCompanyIntegrationEntityMap_[];
|
|
@@ -9719,6 +9866,13 @@ export declare class CreateMJEntityInput {
|
|
|
9719
9866
|
Status?: string;
|
|
9720
9867
|
DisplayName: string | null;
|
|
9721
9868
|
AllowMultipleSubtypes?: boolean;
|
|
9869
|
+
AutoUpdateFullTextSearch?: boolean;
|
|
9870
|
+
AutoUpdateAllowUserSearchAPI?: boolean;
|
|
9871
|
+
TrustServerCacheCompletely?: boolean;
|
|
9872
|
+
SupportsGeoCoding?: boolean;
|
|
9873
|
+
AutoUpdateSupportsGeoCoding?: boolean;
|
|
9874
|
+
AllowCaching?: boolean;
|
|
9875
|
+
DetectExternalChanges?: boolean;
|
|
9722
9876
|
}
|
|
9723
9877
|
export declare class UpdateMJEntityInput {
|
|
9724
9878
|
ID: string;
|
|
@@ -9775,6 +9929,13 @@ export declare class UpdateMJEntityInput {
|
|
|
9775
9929
|
Status?: string;
|
|
9776
9930
|
DisplayName?: string | null;
|
|
9777
9931
|
AllowMultipleSubtypes?: boolean;
|
|
9932
|
+
AutoUpdateFullTextSearch?: boolean;
|
|
9933
|
+
AutoUpdateAllowUserSearchAPI?: boolean;
|
|
9934
|
+
TrustServerCacheCompletely?: boolean;
|
|
9935
|
+
SupportsGeoCoding?: boolean;
|
|
9936
|
+
AutoUpdateSupportsGeoCoding?: boolean;
|
|
9937
|
+
AllowCaching?: boolean;
|
|
9938
|
+
DetectExternalChanges?: boolean;
|
|
9778
9939
|
OldValues___?: KeyValuePairInput[];
|
|
9779
9940
|
}
|
|
9780
9941
|
export declare class RunMJEntityViewResult {
|
|
@@ -9838,6 +9999,7 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
9838
9999
|
MJEntityRelationships_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9839
10000
|
MJEntityOrganicKeyRelatedEntities_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9840
10001
|
MJEntityOrganicKeys_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10002
|
+
MJRecordGeoCodes_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9841
10003
|
MJGeneratedCodes_LinkedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9842
10004
|
MJRecordLinks_SourceEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9843
10005
|
MJCompanyIntegrationEntityMaps_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -10534,6 +10696,10 @@ export declare class MJEntityField_ {
|
|
|
10534
10696
|
JSONType?: string;
|
|
10535
10697
|
JSONTypeIsArray: boolean;
|
|
10536
10698
|
JSONTypeDefinition?: string;
|
|
10699
|
+
UserSearchPredicateAPI: string;
|
|
10700
|
+
AutoUpdateUserSearchPredicate: boolean;
|
|
10701
|
+
AutoUpdateFullTextSearch: boolean;
|
|
10702
|
+
AutoUpdateExtendedType: boolean;
|
|
10537
10703
|
FieldCodeName?: string;
|
|
10538
10704
|
Entity: string;
|
|
10539
10705
|
SchemaName: string;
|
|
@@ -10596,6 +10762,10 @@ export declare class CreateMJEntityFieldInput {
|
|
|
10596
10762
|
JSONType: string | null;
|
|
10597
10763
|
JSONTypeIsArray?: boolean;
|
|
10598
10764
|
JSONTypeDefinition: string | null;
|
|
10765
|
+
UserSearchPredicateAPI?: string;
|
|
10766
|
+
AutoUpdateUserSearchPredicate?: boolean;
|
|
10767
|
+
AutoUpdateFullTextSearch?: boolean;
|
|
10768
|
+
AutoUpdateExtendedType?: boolean;
|
|
10599
10769
|
}
|
|
10600
10770
|
export declare class UpdateMJEntityFieldInput {
|
|
10601
10771
|
ID: string;
|
|
@@ -10644,6 +10814,10 @@ export declare class UpdateMJEntityFieldInput {
|
|
|
10644
10814
|
JSONType?: string | null;
|
|
10645
10815
|
JSONTypeIsArray?: boolean;
|
|
10646
10816
|
JSONTypeDefinition?: string | null;
|
|
10817
|
+
UserSearchPredicateAPI?: string;
|
|
10818
|
+
AutoUpdateUserSearchPredicate?: boolean;
|
|
10819
|
+
AutoUpdateFullTextSearch?: boolean;
|
|
10820
|
+
AutoUpdateExtendedType?: boolean;
|
|
10647
10821
|
OldValues___?: KeyValuePairInput[];
|
|
10648
10822
|
}
|
|
10649
10823
|
export declare class RunMJEntityFieldViewResult {
|
|
@@ -11365,6 +11539,57 @@ export declare class MJFileEntityRecordLinkResolver extends ResolverBase {
|
|
|
11365
11539
|
UpdateMJFileEntityRecordLink(input: UpdateMJFileEntityRecordLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11366
11540
|
DeleteMJFileEntityRecordLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11367
11541
|
}
|
|
11542
|
+
export declare class MJFileStorageAccountPermission_ {
|
|
11543
|
+
ID: string;
|
|
11544
|
+
FileStorageAccountID: string;
|
|
11545
|
+
Type: string;
|
|
11546
|
+
UserID?: string;
|
|
11547
|
+
RoleID?: string;
|
|
11548
|
+
CanRead: boolean;
|
|
11549
|
+
CanWrite: boolean;
|
|
11550
|
+
_mj__CreatedAt: Date;
|
|
11551
|
+
_mj__UpdatedAt: Date;
|
|
11552
|
+
FileStorageAccount: string;
|
|
11553
|
+
User?: string;
|
|
11554
|
+
Role?: string;
|
|
11555
|
+
}
|
|
11556
|
+
export declare class CreateMJFileStorageAccountPermissionInput {
|
|
11557
|
+
ID?: string;
|
|
11558
|
+
FileStorageAccountID?: string;
|
|
11559
|
+
Type?: string;
|
|
11560
|
+
UserID: string | null;
|
|
11561
|
+
RoleID: string | null;
|
|
11562
|
+
CanRead?: boolean;
|
|
11563
|
+
CanWrite?: boolean;
|
|
11564
|
+
}
|
|
11565
|
+
export declare class UpdateMJFileStorageAccountPermissionInput {
|
|
11566
|
+
ID: string;
|
|
11567
|
+
FileStorageAccountID?: string;
|
|
11568
|
+
Type?: string;
|
|
11569
|
+
UserID?: string | null;
|
|
11570
|
+
RoleID?: string | null;
|
|
11571
|
+
CanRead?: boolean;
|
|
11572
|
+
CanWrite?: boolean;
|
|
11573
|
+
OldValues___?: KeyValuePairInput[];
|
|
11574
|
+
}
|
|
11575
|
+
export declare class RunMJFileStorageAccountPermissionViewResult {
|
|
11576
|
+
Results: MJFileStorageAccountPermission_[];
|
|
11577
|
+
UserViewRunID?: string;
|
|
11578
|
+
RowCount: number;
|
|
11579
|
+
TotalRowCount: number;
|
|
11580
|
+
ExecutionTime: number;
|
|
11581
|
+
ErrorMessage?: string;
|
|
11582
|
+
Success: boolean;
|
|
11583
|
+
}
|
|
11584
|
+
export declare class MJFileStorageAccountPermissionResolver extends ResolverBase {
|
|
11585
|
+
RunMJFileStorageAccountPermissionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11586
|
+
RunMJFileStorageAccountPermissionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11587
|
+
RunMJFileStorageAccountPermissionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11588
|
+
MJFileStorageAccountPermission(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJFileStorageAccountPermission_ | null>;
|
|
11589
|
+
CreateMJFileStorageAccountPermission(input: CreateMJFileStorageAccountPermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11590
|
+
UpdateMJFileStorageAccountPermission(input: UpdateMJFileStorageAccountPermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11591
|
+
DeleteMJFileStorageAccountPermission(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11592
|
+
}
|
|
11368
11593
|
export declare class MJFileStorageAccount_ {
|
|
11369
11594
|
ID: string;
|
|
11370
11595
|
Name: string;
|
|
@@ -11373,8 +11598,13 @@ export declare class MJFileStorageAccount_ {
|
|
|
11373
11598
|
CredentialID: string;
|
|
11374
11599
|
_mj__CreatedAt: Date;
|
|
11375
11600
|
_mj__UpdatedAt: Date;
|
|
11601
|
+
IncludeInGlobalSearch: boolean;
|
|
11376
11602
|
Provider: string;
|
|
11377
11603
|
Credential: string;
|
|
11604
|
+
MJAIAgentTypes_DefaultStorageAccountIDArray: MJAIAgentType_[];
|
|
11605
|
+
MJFileStorageAccountPermissions_FileStorageAccountIDArray: MJFileStorageAccountPermission_[];
|
|
11606
|
+
MJAIAgentCategories_DefaultStorageAccountIDArray: MJAIAgentCategory_[];
|
|
11607
|
+
MJAIAgents_DefaultStorageAccountIDArray: MJAIAgent_[];
|
|
11378
11608
|
}
|
|
11379
11609
|
export declare class CreateMJFileStorageAccountInput {
|
|
11380
11610
|
ID?: string;
|
|
@@ -11382,6 +11612,7 @@ export declare class CreateMJFileStorageAccountInput {
|
|
|
11382
11612
|
Description: string | null;
|
|
11383
11613
|
ProviderID?: string;
|
|
11384
11614
|
CredentialID?: string;
|
|
11615
|
+
IncludeInGlobalSearch?: boolean;
|
|
11385
11616
|
}
|
|
11386
11617
|
export declare class UpdateMJFileStorageAccountInput {
|
|
11387
11618
|
ID: string;
|
|
@@ -11389,6 +11620,7 @@ export declare class UpdateMJFileStorageAccountInput {
|
|
|
11389
11620
|
Description?: string | null;
|
|
11390
11621
|
ProviderID?: string;
|
|
11391
11622
|
CredentialID?: string;
|
|
11623
|
+
IncludeInGlobalSearch?: boolean;
|
|
11392
11624
|
OldValues___?: KeyValuePairInput[];
|
|
11393
11625
|
}
|
|
11394
11626
|
export declare class RunMJFileStorageAccountViewResult {
|
|
@@ -11405,6 +11637,10 @@ export declare class MJFileStorageAccountResolver extends ResolverBase {
|
|
|
11405
11637
|
RunMJFileStorageAccountViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11406
11638
|
RunMJFileStorageAccountDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11407
11639
|
MJFileStorageAccount(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJFileStorageAccount_ | null>;
|
|
11640
|
+
MJAIAgentTypes_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11641
|
+
MJFileStorageAccountPermissions_FileStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11642
|
+
MJAIAgentCategories_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11643
|
+
MJAIAgents_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11408
11644
|
CreateMJFileStorageAccount(input: CreateMJFileStorageAccountInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11409
11645
|
UpdateMJFileStorageAccount(input: UpdateMJFileStorageAccountInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11410
11646
|
DeleteMJFileStorageAccount(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11491,6 +11727,7 @@ export declare class MJFile_ {
|
|
|
11491
11727
|
MJAIPromptRunMedias_FileIDArray: MJAIPromptRunMedia_[];
|
|
11492
11728
|
MJConversationDetailAttachments_FileIDArray: MJConversationDetailAttachment_[];
|
|
11493
11729
|
MJAIAgentRunMedias_FileIDArray: MJAIAgentRunMedia_[];
|
|
11730
|
+
MJArtifactVersions_FileIDArray: MJArtifactVersion_[];
|
|
11494
11731
|
}
|
|
11495
11732
|
export declare class CreateMJFileInput {
|
|
11496
11733
|
ID?: string;
|
|
@@ -11531,6 +11768,7 @@ export declare class MJFileResolver extends ResolverBase {
|
|
|
11531
11768
|
MJAIPromptRunMedias_FileIDArray(mjfile_: MJFile_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11532
11769
|
MJConversationDetailAttachments_FileIDArray(mjfile_: MJFile_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11533
11770
|
MJAIAgentRunMedias_FileIDArray(mjfile_: MJFile_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11771
|
+
MJArtifactVersions_FileIDArray(mjfile_: MJFile_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11534
11772
|
CreateMJFile(input: CreateMJFileInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11535
11773
|
UpdateMJFile(input: UpdateMJFileInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11536
11774
|
DeleteMJFile(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11646,6 +11884,57 @@ export declare class MJGeneratedCodeResolver extends ResolverBase {
|
|
|
11646
11884
|
UpdateMJGeneratedCode(input: UpdateMJGeneratedCodeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11647
11885
|
DeleteMJGeneratedCode(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11648
11886
|
}
|
|
11887
|
+
export declare class MJInstanceConfiguration_ {
|
|
11888
|
+
ID: string;
|
|
11889
|
+
FeatureKey: string;
|
|
11890
|
+
Value: string;
|
|
11891
|
+
ValueType: string;
|
|
11892
|
+
Category: string;
|
|
11893
|
+
DisplayName: string;
|
|
11894
|
+
Description?: string;
|
|
11895
|
+
DefaultValue: string;
|
|
11896
|
+
_mj__CreatedAt: Date;
|
|
11897
|
+
_mj__UpdatedAt: Date;
|
|
11898
|
+
}
|
|
11899
|
+
export declare class CreateMJInstanceConfigurationInput {
|
|
11900
|
+
ID?: string;
|
|
11901
|
+
FeatureKey?: string;
|
|
11902
|
+
Value?: string;
|
|
11903
|
+
ValueType?: string;
|
|
11904
|
+
Category?: string;
|
|
11905
|
+
DisplayName?: string;
|
|
11906
|
+
Description: string | null;
|
|
11907
|
+
DefaultValue?: string;
|
|
11908
|
+
}
|
|
11909
|
+
export declare class UpdateMJInstanceConfigurationInput {
|
|
11910
|
+
ID: string;
|
|
11911
|
+
FeatureKey?: string;
|
|
11912
|
+
Value?: string;
|
|
11913
|
+
ValueType?: string;
|
|
11914
|
+
Category?: string;
|
|
11915
|
+
DisplayName?: string;
|
|
11916
|
+
Description?: string | null;
|
|
11917
|
+
DefaultValue?: string;
|
|
11918
|
+
OldValues___?: KeyValuePairInput[];
|
|
11919
|
+
}
|
|
11920
|
+
export declare class RunMJInstanceConfigurationViewResult {
|
|
11921
|
+
Results: MJInstanceConfiguration_[];
|
|
11922
|
+
UserViewRunID?: string;
|
|
11923
|
+
RowCount: number;
|
|
11924
|
+
TotalRowCount: number;
|
|
11925
|
+
ExecutionTime: number;
|
|
11926
|
+
ErrorMessage?: string;
|
|
11927
|
+
Success: boolean;
|
|
11928
|
+
}
|
|
11929
|
+
export declare class MJInstanceConfigurationResolver extends ResolverBase {
|
|
11930
|
+
RunMJInstanceConfigurationViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11931
|
+
RunMJInstanceConfigurationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11932
|
+
RunMJInstanceConfigurationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11933
|
+
MJInstanceConfiguration(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJInstanceConfiguration_ | null>;
|
|
11934
|
+
CreateMJInstanceConfiguration(input: CreateMJInstanceConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11935
|
+
UpdateMJInstanceConfiguration(input: UpdateMJInstanceConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11936
|
+
DeleteMJInstanceConfiguration(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11937
|
+
}
|
|
11649
11938
|
export declare class MJIntegrationObjectField_ {
|
|
11650
11939
|
ID: string;
|
|
11651
11940
|
IntegrationObjectID: string;
|
|
@@ -14515,6 +14804,81 @@ export declare class MJRecordChangeResolver extends ResolverBase {
|
|
|
14515
14804
|
UpdateMJRecordChange(input: UpdateMJRecordChangeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14516
14805
|
DeleteMJRecordChange(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14517
14806
|
}
|
|
14807
|
+
export declare class MJRecordGeoCode_ {
|
|
14808
|
+
ID: string;
|
|
14809
|
+
EntityID: string;
|
|
14810
|
+
RecordID: string;
|
|
14811
|
+
LocationType: string;
|
|
14812
|
+
Latitude?: number;
|
|
14813
|
+
Longitude?: number;
|
|
14814
|
+
Precision?: string;
|
|
14815
|
+
CountryID?: string;
|
|
14816
|
+
StateProvinceID?: string;
|
|
14817
|
+
Status: string;
|
|
14818
|
+
ErrorMessage?: string;
|
|
14819
|
+
RetryCount: number;
|
|
14820
|
+
SourceFieldHash?: string;
|
|
14821
|
+
GeocodedAt?: Date;
|
|
14822
|
+
GeocodingSource?: string;
|
|
14823
|
+
_mj__CreatedAt: Date;
|
|
14824
|
+
_mj__UpdatedAt: Date;
|
|
14825
|
+
Entity: string;
|
|
14826
|
+
Country?: string;
|
|
14827
|
+
StateProvince?: string;
|
|
14828
|
+
}
|
|
14829
|
+
export declare class CreateMJRecordGeoCodeInput {
|
|
14830
|
+
ID?: string;
|
|
14831
|
+
EntityID?: string;
|
|
14832
|
+
RecordID?: string;
|
|
14833
|
+
LocationType?: string;
|
|
14834
|
+
Latitude: number | null;
|
|
14835
|
+
Longitude: number | null;
|
|
14836
|
+
Precision: string | null;
|
|
14837
|
+
CountryID: string | null;
|
|
14838
|
+
StateProvinceID: string | null;
|
|
14839
|
+
Status?: string;
|
|
14840
|
+
ErrorMessage: string | null;
|
|
14841
|
+
RetryCount?: number;
|
|
14842
|
+
SourceFieldHash: string | null;
|
|
14843
|
+
GeocodedAt: Date | null;
|
|
14844
|
+
GeocodingSource: string | null;
|
|
14845
|
+
}
|
|
14846
|
+
export declare class UpdateMJRecordGeoCodeInput {
|
|
14847
|
+
ID: string;
|
|
14848
|
+
EntityID?: string;
|
|
14849
|
+
RecordID?: string;
|
|
14850
|
+
LocationType?: string;
|
|
14851
|
+
Latitude?: number | null;
|
|
14852
|
+
Longitude?: number | null;
|
|
14853
|
+
Precision?: string | null;
|
|
14854
|
+
CountryID?: string | null;
|
|
14855
|
+
StateProvinceID?: string | null;
|
|
14856
|
+
Status?: string;
|
|
14857
|
+
ErrorMessage?: string | null;
|
|
14858
|
+
RetryCount?: number;
|
|
14859
|
+
SourceFieldHash?: string | null;
|
|
14860
|
+
GeocodedAt?: Date | null;
|
|
14861
|
+
GeocodingSource?: string | null;
|
|
14862
|
+
OldValues___?: KeyValuePairInput[];
|
|
14863
|
+
}
|
|
14864
|
+
export declare class RunMJRecordGeoCodeViewResult {
|
|
14865
|
+
Results: MJRecordGeoCode_[];
|
|
14866
|
+
UserViewRunID?: string;
|
|
14867
|
+
RowCount: number;
|
|
14868
|
+
TotalRowCount: number;
|
|
14869
|
+
ExecutionTime: number;
|
|
14870
|
+
ErrorMessage?: string;
|
|
14871
|
+
Success: boolean;
|
|
14872
|
+
}
|
|
14873
|
+
export declare class MJRecordGeoCodeResolver extends ResolverBase {
|
|
14874
|
+
RunMJRecordGeoCodeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14875
|
+
RunMJRecordGeoCodeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14876
|
+
RunMJRecordGeoCodeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14877
|
+
MJRecordGeoCode(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRecordGeoCode_ | null>;
|
|
14878
|
+
CreateMJRecordGeoCode(input: CreateMJRecordGeoCodeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14879
|
+
UpdateMJRecordGeoCode(input: UpdateMJRecordGeoCodeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14880
|
+
DeleteMJRecordGeoCode(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14881
|
+
}
|
|
14518
14882
|
export declare class MJRecordLink_ {
|
|
14519
14883
|
ID: string;
|
|
14520
14884
|
SourceEntityID: string;
|
|
@@ -15135,6 +15499,8 @@ export declare class MJRole_ {
|
|
|
15135
15499
|
MJQueryPermissions_RoleIDArray: MJQueryPermission_[];
|
|
15136
15500
|
MJResourcePermissions_RoleIDArray: MJResourcePermission_[];
|
|
15137
15501
|
MJMCPServerConnectionPermissions_RoleIDArray: MJMCPServerConnectionPermission_[];
|
|
15502
|
+
MJFileStorageAccountPermissions_RoleIDArray: MJFileStorageAccountPermission_[];
|
|
15503
|
+
MJApplicationRoles_RoleIDArray: MJApplicationRole_[];
|
|
15138
15504
|
MJAIAgentPermissions_RoleIDArray: MJAIAgentPermission_[];
|
|
15139
15505
|
}
|
|
15140
15506
|
export declare class CreateMJRoleInput {
|
|
@@ -15174,6 +15540,8 @@ export declare class MJRoleResolver extends ResolverBase {
|
|
|
15174
15540
|
MJQueryPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15175
15541
|
MJResourcePermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15176
15542
|
MJMCPServerConnectionPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15543
|
+
MJFileStorageAccountPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15544
|
+
MJApplicationRoles_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15177
15545
|
MJAIAgentPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15178
15546
|
CreateMJRole(input: CreateMJRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15179
15547
|
UpdateMJRole(input: UpdateMJRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -15625,6 +15993,73 @@ export declare class MJSchemaInfoResolver extends ResolverBase {
|
|
|
15625
15993
|
UpdateMJSchemaInfo(input: UpdateMJSchemaInfoInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15626
15994
|
DeleteMJSchemaInfo(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15627
15995
|
}
|
|
15996
|
+
export declare class MJSearchProvider_ {
|
|
15997
|
+
ID: string;
|
|
15998
|
+
Name: string;
|
|
15999
|
+
Description?: string;
|
|
16000
|
+
DriverClass: string;
|
|
16001
|
+
Status: string;
|
|
16002
|
+
Priority: number;
|
|
16003
|
+
SupportsPreview: boolean;
|
|
16004
|
+
MaxResultsOverride?: number;
|
|
16005
|
+
ProviderConfig?: string;
|
|
16006
|
+
CredentialID?: string;
|
|
16007
|
+
DisplayName?: string;
|
|
16008
|
+
Icon?: string;
|
|
16009
|
+
Comments?: string;
|
|
16010
|
+
_mj__CreatedAt: Date;
|
|
16011
|
+
_mj__UpdatedAt: Date;
|
|
16012
|
+
Credential?: string;
|
|
16013
|
+
}
|
|
16014
|
+
export declare class CreateMJSearchProviderInput {
|
|
16015
|
+
ID?: string;
|
|
16016
|
+
Name?: string;
|
|
16017
|
+
Description: string | null;
|
|
16018
|
+
DriverClass?: string;
|
|
16019
|
+
Status?: string;
|
|
16020
|
+
Priority?: number;
|
|
16021
|
+
SupportsPreview?: boolean;
|
|
16022
|
+
MaxResultsOverride: number | null;
|
|
16023
|
+
ProviderConfig: string | null;
|
|
16024
|
+
CredentialID: string | null;
|
|
16025
|
+
DisplayName: string | null;
|
|
16026
|
+
Icon: string | null;
|
|
16027
|
+
Comments: string | null;
|
|
16028
|
+
}
|
|
16029
|
+
export declare class UpdateMJSearchProviderInput {
|
|
16030
|
+
ID: string;
|
|
16031
|
+
Name?: string;
|
|
16032
|
+
Description?: string | null;
|
|
16033
|
+
DriverClass?: string;
|
|
16034
|
+
Status?: string;
|
|
16035
|
+
Priority?: number;
|
|
16036
|
+
SupportsPreview?: boolean;
|
|
16037
|
+
MaxResultsOverride?: number | null;
|
|
16038
|
+
ProviderConfig?: string | null;
|
|
16039
|
+
CredentialID?: string | null;
|
|
16040
|
+
DisplayName?: string | null;
|
|
16041
|
+
Icon?: string | null;
|
|
16042
|
+
Comments?: string | null;
|
|
16043
|
+
OldValues___?: KeyValuePairInput[];
|
|
16044
|
+
}
|
|
16045
|
+
export declare class RunMJSearchProviderViewResult {
|
|
16046
|
+
Results: MJSearchProvider_[];
|
|
16047
|
+
UserViewRunID?: string;
|
|
16048
|
+
RowCount: number;
|
|
16049
|
+
TotalRowCount: number;
|
|
16050
|
+
ExecutionTime: number;
|
|
16051
|
+
ErrorMessage?: string;
|
|
16052
|
+
Success: boolean;
|
|
16053
|
+
}
|
|
16054
|
+
export declare class MJSearchProviderResolver extends ResolverBase {
|
|
16055
|
+
RunMJSearchProviderViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16056
|
+
RunMJSearchProviderViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16057
|
+
RunMJSearchProviderDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16058
|
+
MJSearchProvider(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchProvider_ | null>;
|
|
16059
|
+
CreateMJSearchProvider(input: CreateMJSearchProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16060
|
+
UpdateMJSearchProvider(input: UpdateMJSearchProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16061
|
+
DeleteMJSearchProvider(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16062
|
+
}
|
|
15628
16063
|
export declare class MJSkill_ {
|
|
15629
16064
|
ID: string;
|
|
15630
16065
|
Name: string;
|
|
@@ -15726,6 +16161,63 @@ export declare class MJSQLDialectResolver extends ResolverBase {
|
|
|
15726
16161
|
UpdateMJSQLDialect(input: UpdateMJSQLDialectInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15727
16162
|
DeleteMJSQLDialect(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15728
16163
|
}
|
|
16164
|
+
export declare class MJStateProvince_ {
|
|
16165
|
+
ID: string;
|
|
16166
|
+
CountryID: string;
|
|
16167
|
+
Name: string;
|
|
16168
|
+
Code: string;
|
|
16169
|
+
ISO3166_2: string;
|
|
16170
|
+
Latitude?: number;
|
|
16171
|
+
Longitude?: number;
|
|
16172
|
+
BoundaryGeoJSON?: string;
|
|
16173
|
+
CommonAliases?: string;
|
|
16174
|
+
_mj__CreatedAt: Date;
|
|
16175
|
+
_mj__UpdatedAt: Date;
|
|
16176
|
+
Country: string;
|
|
16177
|
+
MJRecordGeoCodes_StateProvinceIDArray: MJRecordGeoCode_[];
|
|
16178
|
+
}
|
|
16179
|
+
export declare class CreateMJStateProvinceInput {
|
|
16180
|
+
ID?: string;
|
|
16181
|
+
CountryID?: string;
|
|
16182
|
+
Name?: string;
|
|
16183
|
+
Code?: string;
|
|
16184
|
+
ISO3166_2?: string;
|
|
16185
|
+
Latitude: number | null;
|
|
16186
|
+
Longitude: number | null;
|
|
16187
|
+
BoundaryGeoJSON: string | null;
|
|
16188
|
+
CommonAliases: string | null;
|
|
16189
|
+
}
|
|
16190
|
+
export declare class UpdateMJStateProvinceInput {
|
|
16191
|
+
ID: string;
|
|
16192
|
+
CountryID?: string;
|
|
16193
|
+
Name?: string;
|
|
16194
|
+
Code?: string;
|
|
16195
|
+
ISO3166_2?: string;
|
|
16196
|
+
Latitude?: number | null;
|
|
16197
|
+
Longitude?: number | null;
|
|
16198
|
+
BoundaryGeoJSON?: string | null;
|
|
16199
|
+
CommonAliases?: string | null;
|
|
16200
|
+
OldValues___?: KeyValuePairInput[];
|
|
16201
|
+
}
|
|
16202
|
+
export declare class RunMJStateProvinceViewResult {
|
|
16203
|
+
Results: MJStateProvince_[];
|
|
16204
|
+
UserViewRunID?: string;
|
|
16205
|
+
RowCount: number;
|
|
16206
|
+
TotalRowCount: number;
|
|
16207
|
+
ExecutionTime: number;
|
|
16208
|
+
ErrorMessage?: string;
|
|
16209
|
+
Success: boolean;
|
|
16210
|
+
}
|
|
16211
|
+
export declare class MJStateProvinceResolver extends ResolverBase {
|
|
16212
|
+
RunMJStateProvinceViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16213
|
+
RunMJStateProvinceViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16214
|
+
RunMJStateProvinceDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16215
|
+
MJStateProvince(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJStateProvince_ | null>;
|
|
16216
|
+
MJRecordGeoCodes_StateProvinceIDArray(mjstateprovince_: MJStateProvince_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16217
|
+
CreateMJStateProvince(input: CreateMJStateProvinceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16218
|
+
UpdateMJStateProvince(input: UpdateMJStateProvinceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16219
|
+
DeleteMJStateProvince(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16220
|
+
}
|
|
15729
16221
|
export declare class MJTagAuditLog_ {
|
|
15730
16222
|
ID: string;
|
|
15731
16223
|
TagID: string;
|
|
@@ -17852,6 +18344,7 @@ export declare class MJUser_ {
|
|
|
17852
18344
|
MJMCPServerConnectionPermissions_UserIDArray: MJMCPServerConnectionPermission_[];
|
|
17853
18345
|
MJVersionLabels_CreatedByUserIDArray: MJVersionLabel_[];
|
|
17854
18346
|
MJDuplicateRuns_ApprovedByUserIDArray: MJDuplicateRun_[];
|
|
18347
|
+
MJFileStorageAccountPermissions_UserIDArray: MJFileStorageAccountPermission_[];
|
|
17855
18348
|
MJAIAgentRuns_UserIDArray: MJAIAgentRun_[];
|
|
17856
18349
|
MJAIAgentPermissions_UserIDArray: MJAIAgentPermission_[];
|
|
17857
18350
|
MJCollectionPermissions_SharedByUserIDArray: MJCollectionPermission_[];
|
|
@@ -17988,6 +18481,7 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
17988
18481
|
MJMCPServerConnectionPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17989
18482
|
MJVersionLabels_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17990
18483
|
MJDuplicateRuns_ApprovedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18484
|
+
MJFileStorageAccountPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17991
18485
|
MJAIAgentRuns_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17992
18486
|
MJAIAgentPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17993
18487
|
MJCollectionPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -18009,6 +18503,8 @@ export declare class MJVectorDatabase_ {
|
|
|
18009
18503
|
_mj__CreatedAt: Date;
|
|
18010
18504
|
_mj__UpdatedAt: Date;
|
|
18011
18505
|
Configuration?: string;
|
|
18506
|
+
CredentialID?: string;
|
|
18507
|
+
Credential?: string;
|
|
18012
18508
|
MJVectorIndexes_VectorDatabaseIDArray: MJVectorIndex_[];
|
|
18013
18509
|
MJEntityDocuments_VectorDatabaseIDArray: MJEntityDocument_[];
|
|
18014
18510
|
}
|
|
@@ -18019,6 +18515,7 @@ export declare class CreateMJVectorDatabaseInput {
|
|
|
18019
18515
|
DefaultURL: string | null;
|
|
18020
18516
|
ClassKey: string | null;
|
|
18021
18517
|
Configuration: string | null;
|
|
18518
|
+
CredentialID: string | null;
|
|
18022
18519
|
}
|
|
18023
18520
|
export declare class UpdateMJVectorDatabaseInput {
|
|
18024
18521
|
ID: string;
|
|
@@ -18027,6 +18524,7 @@ export declare class UpdateMJVectorDatabaseInput {
|
|
|
18027
18524
|
DefaultURL?: string | null;
|
|
18028
18525
|
ClassKey?: string | null;
|
|
18029
18526
|
Configuration?: string | null;
|
|
18527
|
+
CredentialID?: string | null;
|
|
18030
18528
|
OldValues___?: KeyValuePairInput[];
|
|
18031
18529
|
}
|
|
18032
18530
|
export declare class RunMJVectorDatabaseViewResult {
|