@memberjunction/server 5.24.0 → 5.25.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/generated/generated.d.ts +492 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +2731 -0
- package/dist/generated/generated.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- 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/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 +63 -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/generated/generated.ts +1884 -1
- package/src/index.ts +2 -0
- package/src/resolvers/ArtifactFileResolver.ts +71 -0
- package/src/resolvers/AutotagPipelineResolver.ts +118 -4
- 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,11 @@ 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;
|
|
9606
9750
|
CodeName?: string;
|
|
9607
9751
|
ClassName?: string;
|
|
9608
9752
|
BaseTableCodeName?: string;
|
|
@@ -9655,6 +9799,7 @@ export declare class MJEntity_ {
|
|
|
9655
9799
|
MJEntityRelationships_RelatedEntityIDArray: MJEntityRelationship_[];
|
|
9656
9800
|
MJEntityOrganicKeyRelatedEntities_RelatedEntityIDArray: MJEntityOrganicKeyRelatedEntity_[];
|
|
9657
9801
|
MJEntityOrganicKeys_EntityIDArray: MJEntityOrganicKey_[];
|
|
9802
|
+
MJRecordGeoCodes_EntityIDArray: MJRecordGeoCode_[];
|
|
9658
9803
|
MJGeneratedCodes_LinkedEntityIDArray: MJGeneratedCode_[];
|
|
9659
9804
|
MJRecordLinks_SourceEntityIDArray: MJRecordLink_[];
|
|
9660
9805
|
MJCompanyIntegrationEntityMaps_EntityIDArray: MJCompanyIntegrationEntityMap_[];
|
|
@@ -9719,6 +9864,11 @@ export declare class CreateMJEntityInput {
|
|
|
9719
9864
|
Status?: string;
|
|
9720
9865
|
DisplayName: string | null;
|
|
9721
9866
|
AllowMultipleSubtypes?: boolean;
|
|
9867
|
+
AutoUpdateFullTextSearch?: boolean;
|
|
9868
|
+
AutoUpdateAllowUserSearchAPI?: boolean;
|
|
9869
|
+
TrustServerCacheCompletely?: boolean;
|
|
9870
|
+
SupportsGeoCoding?: boolean;
|
|
9871
|
+
AutoUpdateSupportsGeoCoding?: boolean;
|
|
9722
9872
|
}
|
|
9723
9873
|
export declare class UpdateMJEntityInput {
|
|
9724
9874
|
ID: string;
|
|
@@ -9775,6 +9925,11 @@ export declare class UpdateMJEntityInput {
|
|
|
9775
9925
|
Status?: string;
|
|
9776
9926
|
DisplayName?: string | null;
|
|
9777
9927
|
AllowMultipleSubtypes?: boolean;
|
|
9928
|
+
AutoUpdateFullTextSearch?: boolean;
|
|
9929
|
+
AutoUpdateAllowUserSearchAPI?: boolean;
|
|
9930
|
+
TrustServerCacheCompletely?: boolean;
|
|
9931
|
+
SupportsGeoCoding?: boolean;
|
|
9932
|
+
AutoUpdateSupportsGeoCoding?: boolean;
|
|
9778
9933
|
OldValues___?: KeyValuePairInput[];
|
|
9779
9934
|
}
|
|
9780
9935
|
export declare class RunMJEntityViewResult {
|
|
@@ -9838,6 +9993,7 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
9838
9993
|
MJEntityRelationships_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9839
9994
|
MJEntityOrganicKeyRelatedEntities_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9840
9995
|
MJEntityOrganicKeys_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9996
|
+
MJRecordGeoCodes_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9841
9997
|
MJGeneratedCodes_LinkedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9842
9998
|
MJRecordLinks_SourceEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9843
9999
|
MJCompanyIntegrationEntityMaps_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -10534,6 +10690,10 @@ export declare class MJEntityField_ {
|
|
|
10534
10690
|
JSONType?: string;
|
|
10535
10691
|
JSONTypeIsArray: boolean;
|
|
10536
10692
|
JSONTypeDefinition?: string;
|
|
10693
|
+
UserSearchPredicateAPI: string;
|
|
10694
|
+
AutoUpdateUserSearchPredicate: boolean;
|
|
10695
|
+
AutoUpdateFullTextSearch: boolean;
|
|
10696
|
+
AutoUpdateExtendedType: boolean;
|
|
10537
10697
|
FieldCodeName?: string;
|
|
10538
10698
|
Entity: string;
|
|
10539
10699
|
SchemaName: string;
|
|
@@ -10596,6 +10756,10 @@ export declare class CreateMJEntityFieldInput {
|
|
|
10596
10756
|
JSONType: string | null;
|
|
10597
10757
|
JSONTypeIsArray?: boolean;
|
|
10598
10758
|
JSONTypeDefinition: string | null;
|
|
10759
|
+
UserSearchPredicateAPI?: string;
|
|
10760
|
+
AutoUpdateUserSearchPredicate?: boolean;
|
|
10761
|
+
AutoUpdateFullTextSearch?: boolean;
|
|
10762
|
+
AutoUpdateExtendedType?: boolean;
|
|
10599
10763
|
}
|
|
10600
10764
|
export declare class UpdateMJEntityFieldInput {
|
|
10601
10765
|
ID: string;
|
|
@@ -10644,6 +10808,10 @@ export declare class UpdateMJEntityFieldInput {
|
|
|
10644
10808
|
JSONType?: string | null;
|
|
10645
10809
|
JSONTypeIsArray?: boolean;
|
|
10646
10810
|
JSONTypeDefinition?: string | null;
|
|
10811
|
+
UserSearchPredicateAPI?: string;
|
|
10812
|
+
AutoUpdateUserSearchPredicate?: boolean;
|
|
10813
|
+
AutoUpdateFullTextSearch?: boolean;
|
|
10814
|
+
AutoUpdateExtendedType?: boolean;
|
|
10647
10815
|
OldValues___?: KeyValuePairInput[];
|
|
10648
10816
|
}
|
|
10649
10817
|
export declare class RunMJEntityFieldViewResult {
|
|
@@ -11365,6 +11533,57 @@ export declare class MJFileEntityRecordLinkResolver extends ResolverBase {
|
|
|
11365
11533
|
UpdateMJFileEntityRecordLink(input: UpdateMJFileEntityRecordLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11366
11534
|
DeleteMJFileEntityRecordLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11367
11535
|
}
|
|
11536
|
+
export declare class MJFileStorageAccountPermission_ {
|
|
11537
|
+
ID: string;
|
|
11538
|
+
FileStorageAccountID: string;
|
|
11539
|
+
Type: string;
|
|
11540
|
+
UserID?: string;
|
|
11541
|
+
RoleID?: string;
|
|
11542
|
+
CanRead: boolean;
|
|
11543
|
+
CanWrite: boolean;
|
|
11544
|
+
_mj__CreatedAt: Date;
|
|
11545
|
+
_mj__UpdatedAt: Date;
|
|
11546
|
+
FileStorageAccount: string;
|
|
11547
|
+
User?: string;
|
|
11548
|
+
Role?: string;
|
|
11549
|
+
}
|
|
11550
|
+
export declare class CreateMJFileStorageAccountPermissionInput {
|
|
11551
|
+
ID?: string;
|
|
11552
|
+
FileStorageAccountID?: string;
|
|
11553
|
+
Type?: string;
|
|
11554
|
+
UserID: string | null;
|
|
11555
|
+
RoleID: string | null;
|
|
11556
|
+
CanRead?: boolean;
|
|
11557
|
+
CanWrite?: boolean;
|
|
11558
|
+
}
|
|
11559
|
+
export declare class UpdateMJFileStorageAccountPermissionInput {
|
|
11560
|
+
ID: string;
|
|
11561
|
+
FileStorageAccountID?: string;
|
|
11562
|
+
Type?: string;
|
|
11563
|
+
UserID?: string | null;
|
|
11564
|
+
RoleID?: string | null;
|
|
11565
|
+
CanRead?: boolean;
|
|
11566
|
+
CanWrite?: boolean;
|
|
11567
|
+
OldValues___?: KeyValuePairInput[];
|
|
11568
|
+
}
|
|
11569
|
+
export declare class RunMJFileStorageAccountPermissionViewResult {
|
|
11570
|
+
Results: MJFileStorageAccountPermission_[];
|
|
11571
|
+
UserViewRunID?: string;
|
|
11572
|
+
RowCount: number;
|
|
11573
|
+
TotalRowCount: number;
|
|
11574
|
+
ExecutionTime: number;
|
|
11575
|
+
ErrorMessage?: string;
|
|
11576
|
+
Success: boolean;
|
|
11577
|
+
}
|
|
11578
|
+
export declare class MJFileStorageAccountPermissionResolver extends ResolverBase {
|
|
11579
|
+
RunMJFileStorageAccountPermissionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11580
|
+
RunMJFileStorageAccountPermissionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11581
|
+
RunMJFileStorageAccountPermissionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11582
|
+
MJFileStorageAccountPermission(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJFileStorageAccountPermission_ | null>;
|
|
11583
|
+
CreateMJFileStorageAccountPermission(input: CreateMJFileStorageAccountPermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11584
|
+
UpdateMJFileStorageAccountPermission(input: UpdateMJFileStorageAccountPermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11585
|
+
DeleteMJFileStorageAccountPermission(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11586
|
+
}
|
|
11368
11587
|
export declare class MJFileStorageAccount_ {
|
|
11369
11588
|
ID: string;
|
|
11370
11589
|
Name: string;
|
|
@@ -11373,8 +11592,13 @@ export declare class MJFileStorageAccount_ {
|
|
|
11373
11592
|
CredentialID: string;
|
|
11374
11593
|
_mj__CreatedAt: Date;
|
|
11375
11594
|
_mj__UpdatedAt: Date;
|
|
11595
|
+
IncludeInGlobalSearch: boolean;
|
|
11376
11596
|
Provider: string;
|
|
11377
11597
|
Credential: string;
|
|
11598
|
+
MJAIAgentTypes_DefaultStorageAccountIDArray: MJAIAgentType_[];
|
|
11599
|
+
MJFileStorageAccountPermissions_FileStorageAccountIDArray: MJFileStorageAccountPermission_[];
|
|
11600
|
+
MJAIAgentCategories_DefaultStorageAccountIDArray: MJAIAgentCategory_[];
|
|
11601
|
+
MJAIAgents_DefaultStorageAccountIDArray: MJAIAgent_[];
|
|
11378
11602
|
}
|
|
11379
11603
|
export declare class CreateMJFileStorageAccountInput {
|
|
11380
11604
|
ID?: string;
|
|
@@ -11382,6 +11606,7 @@ export declare class CreateMJFileStorageAccountInput {
|
|
|
11382
11606
|
Description: string | null;
|
|
11383
11607
|
ProviderID?: string;
|
|
11384
11608
|
CredentialID?: string;
|
|
11609
|
+
IncludeInGlobalSearch?: boolean;
|
|
11385
11610
|
}
|
|
11386
11611
|
export declare class UpdateMJFileStorageAccountInput {
|
|
11387
11612
|
ID: string;
|
|
@@ -11389,6 +11614,7 @@ export declare class UpdateMJFileStorageAccountInput {
|
|
|
11389
11614
|
Description?: string | null;
|
|
11390
11615
|
ProviderID?: string;
|
|
11391
11616
|
CredentialID?: string;
|
|
11617
|
+
IncludeInGlobalSearch?: boolean;
|
|
11392
11618
|
OldValues___?: KeyValuePairInput[];
|
|
11393
11619
|
}
|
|
11394
11620
|
export declare class RunMJFileStorageAccountViewResult {
|
|
@@ -11405,6 +11631,10 @@ export declare class MJFileStorageAccountResolver extends ResolverBase {
|
|
|
11405
11631
|
RunMJFileStorageAccountViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11406
11632
|
RunMJFileStorageAccountDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11407
11633
|
MJFileStorageAccount(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJFileStorageAccount_ | null>;
|
|
11634
|
+
MJAIAgentTypes_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11635
|
+
MJFileStorageAccountPermissions_FileStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11636
|
+
MJAIAgentCategories_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11637
|
+
MJAIAgents_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11408
11638
|
CreateMJFileStorageAccount(input: CreateMJFileStorageAccountInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11409
11639
|
UpdateMJFileStorageAccount(input: UpdateMJFileStorageAccountInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11410
11640
|
DeleteMJFileStorageAccount(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11491,6 +11721,7 @@ export declare class MJFile_ {
|
|
|
11491
11721
|
MJAIPromptRunMedias_FileIDArray: MJAIPromptRunMedia_[];
|
|
11492
11722
|
MJConversationDetailAttachments_FileIDArray: MJConversationDetailAttachment_[];
|
|
11493
11723
|
MJAIAgentRunMedias_FileIDArray: MJAIAgentRunMedia_[];
|
|
11724
|
+
MJArtifactVersions_FileIDArray: MJArtifactVersion_[];
|
|
11494
11725
|
}
|
|
11495
11726
|
export declare class CreateMJFileInput {
|
|
11496
11727
|
ID?: string;
|
|
@@ -11531,6 +11762,7 @@ export declare class MJFileResolver extends ResolverBase {
|
|
|
11531
11762
|
MJAIPromptRunMedias_FileIDArray(mjfile_: MJFile_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11532
11763
|
MJConversationDetailAttachments_FileIDArray(mjfile_: MJFile_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11533
11764
|
MJAIAgentRunMedias_FileIDArray(mjfile_: MJFile_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11765
|
+
MJArtifactVersions_FileIDArray(mjfile_: MJFile_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11534
11766
|
CreateMJFile(input: CreateMJFileInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11535
11767
|
UpdateMJFile(input: UpdateMJFileInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11536
11768
|
DeleteMJFile(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11646,6 +11878,57 @@ export declare class MJGeneratedCodeResolver extends ResolverBase {
|
|
|
11646
11878
|
UpdateMJGeneratedCode(input: UpdateMJGeneratedCodeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11647
11879
|
DeleteMJGeneratedCode(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11648
11880
|
}
|
|
11881
|
+
export declare class MJInstanceConfiguration_ {
|
|
11882
|
+
ID: string;
|
|
11883
|
+
FeatureKey: string;
|
|
11884
|
+
Value: string;
|
|
11885
|
+
ValueType: string;
|
|
11886
|
+
Category: string;
|
|
11887
|
+
DisplayName: string;
|
|
11888
|
+
Description?: string;
|
|
11889
|
+
DefaultValue: string;
|
|
11890
|
+
_mj__CreatedAt: Date;
|
|
11891
|
+
_mj__UpdatedAt: Date;
|
|
11892
|
+
}
|
|
11893
|
+
export declare class CreateMJInstanceConfigurationInput {
|
|
11894
|
+
ID?: string;
|
|
11895
|
+
FeatureKey?: string;
|
|
11896
|
+
Value?: string;
|
|
11897
|
+
ValueType?: string;
|
|
11898
|
+
Category?: string;
|
|
11899
|
+
DisplayName?: string;
|
|
11900
|
+
Description: string | null;
|
|
11901
|
+
DefaultValue?: string;
|
|
11902
|
+
}
|
|
11903
|
+
export declare class UpdateMJInstanceConfigurationInput {
|
|
11904
|
+
ID: string;
|
|
11905
|
+
FeatureKey?: string;
|
|
11906
|
+
Value?: string;
|
|
11907
|
+
ValueType?: string;
|
|
11908
|
+
Category?: string;
|
|
11909
|
+
DisplayName?: string;
|
|
11910
|
+
Description?: string | null;
|
|
11911
|
+
DefaultValue?: string;
|
|
11912
|
+
OldValues___?: KeyValuePairInput[];
|
|
11913
|
+
}
|
|
11914
|
+
export declare class RunMJInstanceConfigurationViewResult {
|
|
11915
|
+
Results: MJInstanceConfiguration_[];
|
|
11916
|
+
UserViewRunID?: string;
|
|
11917
|
+
RowCount: number;
|
|
11918
|
+
TotalRowCount: number;
|
|
11919
|
+
ExecutionTime: number;
|
|
11920
|
+
ErrorMessage?: string;
|
|
11921
|
+
Success: boolean;
|
|
11922
|
+
}
|
|
11923
|
+
export declare class MJInstanceConfigurationResolver extends ResolverBase {
|
|
11924
|
+
RunMJInstanceConfigurationViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11925
|
+
RunMJInstanceConfigurationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11926
|
+
RunMJInstanceConfigurationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11927
|
+
MJInstanceConfiguration(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJInstanceConfiguration_ | null>;
|
|
11928
|
+
CreateMJInstanceConfiguration(input: CreateMJInstanceConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11929
|
+
UpdateMJInstanceConfiguration(input: UpdateMJInstanceConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11930
|
+
DeleteMJInstanceConfiguration(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11931
|
+
}
|
|
11649
11932
|
export declare class MJIntegrationObjectField_ {
|
|
11650
11933
|
ID: string;
|
|
11651
11934
|
IntegrationObjectID: string;
|
|
@@ -14515,6 +14798,81 @@ export declare class MJRecordChangeResolver extends ResolverBase {
|
|
|
14515
14798
|
UpdateMJRecordChange(input: UpdateMJRecordChangeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14516
14799
|
DeleteMJRecordChange(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14517
14800
|
}
|
|
14801
|
+
export declare class MJRecordGeoCode_ {
|
|
14802
|
+
ID: string;
|
|
14803
|
+
EntityID: string;
|
|
14804
|
+
RecordID: string;
|
|
14805
|
+
LocationType: string;
|
|
14806
|
+
Latitude?: number;
|
|
14807
|
+
Longitude?: number;
|
|
14808
|
+
Precision?: string;
|
|
14809
|
+
CountryID?: string;
|
|
14810
|
+
StateProvinceID?: string;
|
|
14811
|
+
Status: string;
|
|
14812
|
+
ErrorMessage?: string;
|
|
14813
|
+
RetryCount: number;
|
|
14814
|
+
SourceFieldHash?: string;
|
|
14815
|
+
GeocodedAt?: Date;
|
|
14816
|
+
GeocodingSource?: string;
|
|
14817
|
+
_mj__CreatedAt: Date;
|
|
14818
|
+
_mj__UpdatedAt: Date;
|
|
14819
|
+
Entity: string;
|
|
14820
|
+
Country?: string;
|
|
14821
|
+
StateProvince?: string;
|
|
14822
|
+
}
|
|
14823
|
+
export declare class CreateMJRecordGeoCodeInput {
|
|
14824
|
+
ID?: string;
|
|
14825
|
+
EntityID?: string;
|
|
14826
|
+
RecordID?: string;
|
|
14827
|
+
LocationType?: string;
|
|
14828
|
+
Latitude: number | null;
|
|
14829
|
+
Longitude: number | null;
|
|
14830
|
+
Precision: string | null;
|
|
14831
|
+
CountryID: string | null;
|
|
14832
|
+
StateProvinceID: string | null;
|
|
14833
|
+
Status?: string;
|
|
14834
|
+
ErrorMessage: string | null;
|
|
14835
|
+
RetryCount?: number;
|
|
14836
|
+
SourceFieldHash: string | null;
|
|
14837
|
+
GeocodedAt: Date | null;
|
|
14838
|
+
GeocodingSource: string | null;
|
|
14839
|
+
}
|
|
14840
|
+
export declare class UpdateMJRecordGeoCodeInput {
|
|
14841
|
+
ID: string;
|
|
14842
|
+
EntityID?: string;
|
|
14843
|
+
RecordID?: string;
|
|
14844
|
+
LocationType?: string;
|
|
14845
|
+
Latitude?: number | null;
|
|
14846
|
+
Longitude?: number | null;
|
|
14847
|
+
Precision?: string | null;
|
|
14848
|
+
CountryID?: string | null;
|
|
14849
|
+
StateProvinceID?: string | null;
|
|
14850
|
+
Status?: string;
|
|
14851
|
+
ErrorMessage?: string | null;
|
|
14852
|
+
RetryCount?: number;
|
|
14853
|
+
SourceFieldHash?: string | null;
|
|
14854
|
+
GeocodedAt?: Date | null;
|
|
14855
|
+
GeocodingSource?: string | null;
|
|
14856
|
+
OldValues___?: KeyValuePairInput[];
|
|
14857
|
+
}
|
|
14858
|
+
export declare class RunMJRecordGeoCodeViewResult {
|
|
14859
|
+
Results: MJRecordGeoCode_[];
|
|
14860
|
+
UserViewRunID?: string;
|
|
14861
|
+
RowCount: number;
|
|
14862
|
+
TotalRowCount: number;
|
|
14863
|
+
ExecutionTime: number;
|
|
14864
|
+
ErrorMessage?: string;
|
|
14865
|
+
Success: boolean;
|
|
14866
|
+
}
|
|
14867
|
+
export declare class MJRecordGeoCodeResolver extends ResolverBase {
|
|
14868
|
+
RunMJRecordGeoCodeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14869
|
+
RunMJRecordGeoCodeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14870
|
+
RunMJRecordGeoCodeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14871
|
+
MJRecordGeoCode(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRecordGeoCode_ | null>;
|
|
14872
|
+
CreateMJRecordGeoCode(input: CreateMJRecordGeoCodeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14873
|
+
UpdateMJRecordGeoCode(input: UpdateMJRecordGeoCodeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14874
|
+
DeleteMJRecordGeoCode(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14875
|
+
}
|
|
14518
14876
|
export declare class MJRecordLink_ {
|
|
14519
14877
|
ID: string;
|
|
14520
14878
|
SourceEntityID: string;
|
|
@@ -15135,6 +15493,8 @@ export declare class MJRole_ {
|
|
|
15135
15493
|
MJQueryPermissions_RoleIDArray: MJQueryPermission_[];
|
|
15136
15494
|
MJResourcePermissions_RoleIDArray: MJResourcePermission_[];
|
|
15137
15495
|
MJMCPServerConnectionPermissions_RoleIDArray: MJMCPServerConnectionPermission_[];
|
|
15496
|
+
MJFileStorageAccountPermissions_RoleIDArray: MJFileStorageAccountPermission_[];
|
|
15497
|
+
MJApplicationRoles_RoleIDArray: MJApplicationRole_[];
|
|
15138
15498
|
MJAIAgentPermissions_RoleIDArray: MJAIAgentPermission_[];
|
|
15139
15499
|
}
|
|
15140
15500
|
export declare class CreateMJRoleInput {
|
|
@@ -15174,6 +15534,8 @@ export declare class MJRoleResolver extends ResolverBase {
|
|
|
15174
15534
|
MJQueryPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15175
15535
|
MJResourcePermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15176
15536
|
MJMCPServerConnectionPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15537
|
+
MJFileStorageAccountPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15538
|
+
MJApplicationRoles_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15177
15539
|
MJAIAgentPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15178
15540
|
CreateMJRole(input: CreateMJRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15179
15541
|
UpdateMJRole(input: UpdateMJRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -15625,6 +15987,73 @@ export declare class MJSchemaInfoResolver extends ResolverBase {
|
|
|
15625
15987
|
UpdateMJSchemaInfo(input: UpdateMJSchemaInfoInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15626
15988
|
DeleteMJSchemaInfo(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15627
15989
|
}
|
|
15990
|
+
export declare class MJSearchProvider_ {
|
|
15991
|
+
ID: string;
|
|
15992
|
+
Name: string;
|
|
15993
|
+
Description?: string;
|
|
15994
|
+
DriverClass: string;
|
|
15995
|
+
Status: string;
|
|
15996
|
+
Priority: number;
|
|
15997
|
+
SupportsPreview: boolean;
|
|
15998
|
+
MaxResultsOverride?: number;
|
|
15999
|
+
ProviderConfig?: string;
|
|
16000
|
+
CredentialID?: string;
|
|
16001
|
+
DisplayName?: string;
|
|
16002
|
+
Icon?: string;
|
|
16003
|
+
Comments?: string;
|
|
16004
|
+
_mj__CreatedAt: Date;
|
|
16005
|
+
_mj__UpdatedAt: Date;
|
|
16006
|
+
Credential?: string;
|
|
16007
|
+
}
|
|
16008
|
+
export declare class CreateMJSearchProviderInput {
|
|
16009
|
+
ID?: string;
|
|
16010
|
+
Name?: string;
|
|
16011
|
+
Description: string | null;
|
|
16012
|
+
DriverClass?: string;
|
|
16013
|
+
Status?: string;
|
|
16014
|
+
Priority?: number;
|
|
16015
|
+
SupportsPreview?: boolean;
|
|
16016
|
+
MaxResultsOverride: number | null;
|
|
16017
|
+
ProviderConfig: string | null;
|
|
16018
|
+
CredentialID: string | null;
|
|
16019
|
+
DisplayName: string | null;
|
|
16020
|
+
Icon: string | null;
|
|
16021
|
+
Comments: string | null;
|
|
16022
|
+
}
|
|
16023
|
+
export declare class UpdateMJSearchProviderInput {
|
|
16024
|
+
ID: string;
|
|
16025
|
+
Name?: string;
|
|
16026
|
+
Description?: string | null;
|
|
16027
|
+
DriverClass?: string;
|
|
16028
|
+
Status?: string;
|
|
16029
|
+
Priority?: number;
|
|
16030
|
+
SupportsPreview?: boolean;
|
|
16031
|
+
MaxResultsOverride?: number | null;
|
|
16032
|
+
ProviderConfig?: string | null;
|
|
16033
|
+
CredentialID?: string | null;
|
|
16034
|
+
DisplayName?: string | null;
|
|
16035
|
+
Icon?: string | null;
|
|
16036
|
+
Comments?: string | null;
|
|
16037
|
+
OldValues___?: KeyValuePairInput[];
|
|
16038
|
+
}
|
|
16039
|
+
export declare class RunMJSearchProviderViewResult {
|
|
16040
|
+
Results: MJSearchProvider_[];
|
|
16041
|
+
UserViewRunID?: string;
|
|
16042
|
+
RowCount: number;
|
|
16043
|
+
TotalRowCount: number;
|
|
16044
|
+
ExecutionTime: number;
|
|
16045
|
+
ErrorMessage?: string;
|
|
16046
|
+
Success: boolean;
|
|
16047
|
+
}
|
|
16048
|
+
export declare class MJSearchProviderResolver extends ResolverBase {
|
|
16049
|
+
RunMJSearchProviderViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16050
|
+
RunMJSearchProviderViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16051
|
+
RunMJSearchProviderDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16052
|
+
MJSearchProvider(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchProvider_ | null>;
|
|
16053
|
+
CreateMJSearchProvider(input: CreateMJSearchProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16054
|
+
UpdateMJSearchProvider(input: UpdateMJSearchProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16055
|
+
DeleteMJSearchProvider(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16056
|
+
}
|
|
15628
16057
|
export declare class MJSkill_ {
|
|
15629
16058
|
ID: string;
|
|
15630
16059
|
Name: string;
|
|
@@ -15726,6 +16155,63 @@ export declare class MJSQLDialectResolver extends ResolverBase {
|
|
|
15726
16155
|
UpdateMJSQLDialect(input: UpdateMJSQLDialectInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15727
16156
|
DeleteMJSQLDialect(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15728
16157
|
}
|
|
16158
|
+
export declare class MJStateProvince_ {
|
|
16159
|
+
ID: string;
|
|
16160
|
+
CountryID: string;
|
|
16161
|
+
Name: string;
|
|
16162
|
+
Code: string;
|
|
16163
|
+
ISO3166_2: string;
|
|
16164
|
+
Latitude?: number;
|
|
16165
|
+
Longitude?: number;
|
|
16166
|
+
BoundaryGeoJSON?: string;
|
|
16167
|
+
CommonAliases?: string;
|
|
16168
|
+
_mj__CreatedAt: Date;
|
|
16169
|
+
_mj__UpdatedAt: Date;
|
|
16170
|
+
Country: string;
|
|
16171
|
+
MJRecordGeoCodes_StateProvinceIDArray: MJRecordGeoCode_[];
|
|
16172
|
+
}
|
|
16173
|
+
export declare class CreateMJStateProvinceInput {
|
|
16174
|
+
ID?: string;
|
|
16175
|
+
CountryID?: string;
|
|
16176
|
+
Name?: string;
|
|
16177
|
+
Code?: string;
|
|
16178
|
+
ISO3166_2?: string;
|
|
16179
|
+
Latitude: number | null;
|
|
16180
|
+
Longitude: number | null;
|
|
16181
|
+
BoundaryGeoJSON: string | null;
|
|
16182
|
+
CommonAliases: string | null;
|
|
16183
|
+
}
|
|
16184
|
+
export declare class UpdateMJStateProvinceInput {
|
|
16185
|
+
ID: string;
|
|
16186
|
+
CountryID?: string;
|
|
16187
|
+
Name?: string;
|
|
16188
|
+
Code?: string;
|
|
16189
|
+
ISO3166_2?: string;
|
|
16190
|
+
Latitude?: number | null;
|
|
16191
|
+
Longitude?: number | null;
|
|
16192
|
+
BoundaryGeoJSON?: string | null;
|
|
16193
|
+
CommonAliases?: string | null;
|
|
16194
|
+
OldValues___?: KeyValuePairInput[];
|
|
16195
|
+
}
|
|
16196
|
+
export declare class RunMJStateProvinceViewResult {
|
|
16197
|
+
Results: MJStateProvince_[];
|
|
16198
|
+
UserViewRunID?: string;
|
|
16199
|
+
RowCount: number;
|
|
16200
|
+
TotalRowCount: number;
|
|
16201
|
+
ExecutionTime: number;
|
|
16202
|
+
ErrorMessage?: string;
|
|
16203
|
+
Success: boolean;
|
|
16204
|
+
}
|
|
16205
|
+
export declare class MJStateProvinceResolver extends ResolverBase {
|
|
16206
|
+
RunMJStateProvinceViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16207
|
+
RunMJStateProvinceViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16208
|
+
RunMJStateProvinceDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16209
|
+
MJStateProvince(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJStateProvince_ | null>;
|
|
16210
|
+
MJRecordGeoCodes_StateProvinceIDArray(mjstateprovince_: MJStateProvince_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16211
|
+
CreateMJStateProvince(input: CreateMJStateProvinceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16212
|
+
UpdateMJStateProvince(input: UpdateMJStateProvinceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16213
|
+
DeleteMJStateProvince(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16214
|
+
}
|
|
15729
16215
|
export declare class MJTagAuditLog_ {
|
|
15730
16216
|
ID: string;
|
|
15731
16217
|
TagID: string;
|
|
@@ -17852,6 +18338,7 @@ export declare class MJUser_ {
|
|
|
17852
18338
|
MJMCPServerConnectionPermissions_UserIDArray: MJMCPServerConnectionPermission_[];
|
|
17853
18339
|
MJVersionLabels_CreatedByUserIDArray: MJVersionLabel_[];
|
|
17854
18340
|
MJDuplicateRuns_ApprovedByUserIDArray: MJDuplicateRun_[];
|
|
18341
|
+
MJFileStorageAccountPermissions_UserIDArray: MJFileStorageAccountPermission_[];
|
|
17855
18342
|
MJAIAgentRuns_UserIDArray: MJAIAgentRun_[];
|
|
17856
18343
|
MJAIAgentPermissions_UserIDArray: MJAIAgentPermission_[];
|
|
17857
18344
|
MJCollectionPermissions_SharedByUserIDArray: MJCollectionPermission_[];
|
|
@@ -17988,6 +18475,7 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
17988
18475
|
MJMCPServerConnectionPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17989
18476
|
MJVersionLabels_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17990
18477
|
MJDuplicateRuns_ApprovedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18478
|
+
MJFileStorageAccountPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17991
18479
|
MJAIAgentRuns_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17992
18480
|
MJAIAgentPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17993
18481
|
MJCollectionPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -18009,6 +18497,8 @@ export declare class MJVectorDatabase_ {
|
|
|
18009
18497
|
_mj__CreatedAt: Date;
|
|
18010
18498
|
_mj__UpdatedAt: Date;
|
|
18011
18499
|
Configuration?: string;
|
|
18500
|
+
CredentialID?: string;
|
|
18501
|
+
Credential?: string;
|
|
18012
18502
|
MJVectorIndexes_VectorDatabaseIDArray: MJVectorIndex_[];
|
|
18013
18503
|
MJEntityDocuments_VectorDatabaseIDArray: MJEntityDocument_[];
|
|
18014
18504
|
}
|
|
@@ -18019,6 +18509,7 @@ export declare class CreateMJVectorDatabaseInput {
|
|
|
18019
18509
|
DefaultURL: string | null;
|
|
18020
18510
|
ClassKey: string | null;
|
|
18021
18511
|
Configuration: string | null;
|
|
18512
|
+
CredentialID: string | null;
|
|
18022
18513
|
}
|
|
18023
18514
|
export declare class UpdateMJVectorDatabaseInput {
|
|
18024
18515
|
ID: string;
|
|
@@ -18027,6 +18518,7 @@ export declare class UpdateMJVectorDatabaseInput {
|
|
|
18027
18518
|
DefaultURL?: string | null;
|
|
18028
18519
|
ClassKey?: string | null;
|
|
18029
18520
|
Configuration?: string | null;
|
|
18521
|
+
CredentialID?: string | null;
|
|
18030
18522
|
OldValues___?: KeyValuePairInput[];
|
|
18031
18523
|
}
|
|
18032
18524
|
export declare class RunMJVectorDatabaseViewResult {
|