@memberjunction/server 5.28.0 → 5.29.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/config.d.ts +151 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +15 -0
- package/dist/config.js.map +1 -1
- package/dist/generated/generated.d.ts +332 -4
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +1862 -24
- package/dist/generated/generated.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/resolvers/FeedbackResolver.d.ts +150 -0
- package/dist/resolvers/FeedbackResolver.d.ts.map +1 -0
- package/dist/resolvers/FeedbackResolver.js +876 -0
- package/dist/resolvers/FeedbackResolver.js.map +1 -0
- package/dist/resolvers/FileResolver.d.ts +27 -0
- package/dist/resolvers/FileResolver.d.ts.map +1 -1
- package/dist/resolvers/FileResolver.js +32 -3
- package/dist/resolvers/FileResolver.js.map +1 -1
- package/dist/resolvers/MCPResolver.d.ts +77 -0
- package/dist/resolvers/MCPResolver.d.ts.map +1 -1
- package/dist/resolvers/MCPResolver.js +300 -1
- package/dist/resolvers/MCPResolver.js.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.js +87 -32
- package/dist/resolvers/RunAIAgentResolver.js.map +1 -1
- package/package.json +68 -66
- package/src/config.ts +19 -0
- package/src/generated/generated.ts +1281 -21
- package/src/index.ts +1 -0
- package/src/resolvers/FeedbackResolver.ts +940 -0
- package/src/resolvers/FileResolver.ts +33 -4
- package/src/resolvers/MCPResolver.ts +297 -1
- package/src/resolvers/RunAIAgentResolver.ts +89 -32
|
@@ -5192,6 +5192,282 @@ export declare class MJApplicationResolver extends ResolverBase {
|
|
|
5192
5192
|
UpdateMJApplication(input: UpdateMJApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5193
5193
|
DeleteMJApplication(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5194
5194
|
}
|
|
5195
|
+
export declare class MJArchiveConfigurationEntity_ {
|
|
5196
|
+
ID: string;
|
|
5197
|
+
ArchiveConfigurationID: string;
|
|
5198
|
+
EntityID: string;
|
|
5199
|
+
Mode?: string;
|
|
5200
|
+
RetentionDays?: number;
|
|
5201
|
+
DateField: string;
|
|
5202
|
+
FilterExpression?: string;
|
|
5203
|
+
BatchSize?: number;
|
|
5204
|
+
Priority: number;
|
|
5205
|
+
FieldConfiguration: string;
|
|
5206
|
+
DriverClass?: string;
|
|
5207
|
+
ArchiveRelatedRecordChanges?: boolean;
|
|
5208
|
+
IsActive: boolean;
|
|
5209
|
+
_mj__CreatedAt: Date;
|
|
5210
|
+
_mj__UpdatedAt: Date;
|
|
5211
|
+
ArchiveConfiguration: string;
|
|
5212
|
+
Entity: string;
|
|
5213
|
+
}
|
|
5214
|
+
export declare class CreateMJArchiveConfigurationEntityInput {
|
|
5215
|
+
ID?: string;
|
|
5216
|
+
ArchiveConfigurationID?: string;
|
|
5217
|
+
EntityID?: string;
|
|
5218
|
+
Mode: string | null;
|
|
5219
|
+
RetentionDays: number | null;
|
|
5220
|
+
DateField?: string;
|
|
5221
|
+
FilterExpression: string | null;
|
|
5222
|
+
BatchSize: number | null;
|
|
5223
|
+
Priority?: number;
|
|
5224
|
+
FieldConfiguration?: string;
|
|
5225
|
+
DriverClass: string | null;
|
|
5226
|
+
ArchiveRelatedRecordChanges: boolean | null;
|
|
5227
|
+
IsActive?: boolean;
|
|
5228
|
+
RestoreContext___?: RestoreContextInput;
|
|
5229
|
+
}
|
|
5230
|
+
export declare class UpdateMJArchiveConfigurationEntityInput {
|
|
5231
|
+
ID: string;
|
|
5232
|
+
ArchiveConfigurationID?: string;
|
|
5233
|
+
EntityID?: string;
|
|
5234
|
+
Mode?: string | null;
|
|
5235
|
+
RetentionDays?: number | null;
|
|
5236
|
+
DateField?: string;
|
|
5237
|
+
FilterExpression?: string | null;
|
|
5238
|
+
BatchSize?: number | null;
|
|
5239
|
+
Priority?: number;
|
|
5240
|
+
FieldConfiguration?: string;
|
|
5241
|
+
DriverClass?: string | null;
|
|
5242
|
+
ArchiveRelatedRecordChanges?: boolean | null;
|
|
5243
|
+
IsActive?: boolean;
|
|
5244
|
+
OldValues___?: KeyValuePairInput[];
|
|
5245
|
+
RestoreContext___?: RestoreContextInput;
|
|
5246
|
+
}
|
|
5247
|
+
export declare class RunMJArchiveConfigurationEntityViewResult {
|
|
5248
|
+
Results: MJArchiveConfigurationEntity_[];
|
|
5249
|
+
UserViewRunID?: string;
|
|
5250
|
+
RowCount: number;
|
|
5251
|
+
TotalRowCount: number;
|
|
5252
|
+
ExecutionTime: number;
|
|
5253
|
+
ErrorMessage?: string;
|
|
5254
|
+
Success: boolean;
|
|
5255
|
+
}
|
|
5256
|
+
export declare class MJArchiveConfigurationEntityResolver extends ResolverBase {
|
|
5257
|
+
RunMJArchiveConfigurationEntityViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5258
|
+
RunMJArchiveConfigurationEntityViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5259
|
+
RunMJArchiveConfigurationEntityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5260
|
+
MJArchiveConfigurationEntity(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJArchiveConfigurationEntity_ | null>;
|
|
5261
|
+
CreateMJArchiveConfigurationEntity(input: CreateMJArchiveConfigurationEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5262
|
+
UpdateMJArchiveConfigurationEntity(input: UpdateMJArchiveConfigurationEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5263
|
+
DeleteMJArchiveConfigurationEntity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5264
|
+
}
|
|
5265
|
+
export declare class MJArchiveConfiguration_ {
|
|
5266
|
+
ID: string;
|
|
5267
|
+
Name: string;
|
|
5268
|
+
Description?: string;
|
|
5269
|
+
StorageAccountID?: string;
|
|
5270
|
+
RootPath: string;
|
|
5271
|
+
ArchiveFormat: string;
|
|
5272
|
+
IsActive: boolean;
|
|
5273
|
+
DefaultRetentionDays: number;
|
|
5274
|
+
DefaultMode: string;
|
|
5275
|
+
DefaultBatchSize: number;
|
|
5276
|
+
ArchiveRelatedRecordChanges: boolean;
|
|
5277
|
+
Status: string;
|
|
5278
|
+
CreatedByUserID: string;
|
|
5279
|
+
_mj__CreatedAt: Date;
|
|
5280
|
+
_mj__UpdatedAt: Date;
|
|
5281
|
+
StorageAccount?: string;
|
|
5282
|
+
CreatedByUser: string;
|
|
5283
|
+
MJArchiveConfigurationEntities_ArchiveConfigurationIDArray: MJArchiveConfigurationEntity_[];
|
|
5284
|
+
MJArchiveRuns_ArchiveConfigurationIDArray: MJArchiveRun_[];
|
|
5285
|
+
}
|
|
5286
|
+
export declare class CreateMJArchiveConfigurationInput {
|
|
5287
|
+
ID?: string;
|
|
5288
|
+
Name?: string;
|
|
5289
|
+
Description: string | null;
|
|
5290
|
+
StorageAccountID: string | null;
|
|
5291
|
+
RootPath?: string;
|
|
5292
|
+
ArchiveFormat?: string;
|
|
5293
|
+
IsActive?: boolean;
|
|
5294
|
+
DefaultRetentionDays?: number;
|
|
5295
|
+
DefaultMode?: string;
|
|
5296
|
+
DefaultBatchSize?: number;
|
|
5297
|
+
ArchiveRelatedRecordChanges?: boolean;
|
|
5298
|
+
Status?: string;
|
|
5299
|
+
CreatedByUserID?: string;
|
|
5300
|
+
RestoreContext___?: RestoreContextInput;
|
|
5301
|
+
}
|
|
5302
|
+
export declare class UpdateMJArchiveConfigurationInput {
|
|
5303
|
+
ID: string;
|
|
5304
|
+
Name?: string;
|
|
5305
|
+
Description?: string | null;
|
|
5306
|
+
StorageAccountID?: string | null;
|
|
5307
|
+
RootPath?: string;
|
|
5308
|
+
ArchiveFormat?: string;
|
|
5309
|
+
IsActive?: boolean;
|
|
5310
|
+
DefaultRetentionDays?: number;
|
|
5311
|
+
DefaultMode?: string;
|
|
5312
|
+
DefaultBatchSize?: number;
|
|
5313
|
+
ArchiveRelatedRecordChanges?: boolean;
|
|
5314
|
+
Status?: string;
|
|
5315
|
+
CreatedByUserID?: string;
|
|
5316
|
+
OldValues___?: KeyValuePairInput[];
|
|
5317
|
+
RestoreContext___?: RestoreContextInput;
|
|
5318
|
+
}
|
|
5319
|
+
export declare class RunMJArchiveConfigurationViewResult {
|
|
5320
|
+
Results: MJArchiveConfiguration_[];
|
|
5321
|
+
UserViewRunID?: string;
|
|
5322
|
+
RowCount: number;
|
|
5323
|
+
TotalRowCount: number;
|
|
5324
|
+
ExecutionTime: number;
|
|
5325
|
+
ErrorMessage?: string;
|
|
5326
|
+
Success: boolean;
|
|
5327
|
+
}
|
|
5328
|
+
export declare class MJArchiveConfigurationResolver extends ResolverBase {
|
|
5329
|
+
RunMJArchiveConfigurationViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5330
|
+
RunMJArchiveConfigurationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5331
|
+
RunMJArchiveConfigurationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5332
|
+
MJArchiveConfiguration(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJArchiveConfiguration_ | null>;
|
|
5333
|
+
MJArchiveConfigurationEntities_ArchiveConfigurationIDArray(mjarchiveconfiguration_: MJArchiveConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5334
|
+
MJArchiveRuns_ArchiveConfigurationIDArray(mjarchiveconfiguration_: MJArchiveConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5335
|
+
CreateMJArchiveConfiguration(input: CreateMJArchiveConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5336
|
+
UpdateMJArchiveConfiguration(input: UpdateMJArchiveConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5337
|
+
DeleteMJArchiveConfiguration(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5338
|
+
}
|
|
5339
|
+
export declare class MJArchiveRunDetail_ {
|
|
5340
|
+
ID: string;
|
|
5341
|
+
ArchiveRunID: string;
|
|
5342
|
+
EntityID: string;
|
|
5343
|
+
RecordID: string;
|
|
5344
|
+
Status: string;
|
|
5345
|
+
StoragePath?: string;
|
|
5346
|
+
BytesArchived: number;
|
|
5347
|
+
ErrorMessage?: string;
|
|
5348
|
+
ArchivedAt?: Date;
|
|
5349
|
+
VersionStamp?: Date;
|
|
5350
|
+
IsRecordChangeArchive: boolean;
|
|
5351
|
+
_mj__CreatedAt: Date;
|
|
5352
|
+
_mj__UpdatedAt: Date;
|
|
5353
|
+
Entity: string;
|
|
5354
|
+
}
|
|
5355
|
+
export declare class CreateMJArchiveRunDetailInput {
|
|
5356
|
+
ID?: string;
|
|
5357
|
+
ArchiveRunID?: string;
|
|
5358
|
+
EntityID?: string;
|
|
5359
|
+
RecordID?: string;
|
|
5360
|
+
Status?: string;
|
|
5361
|
+
StoragePath: string | null;
|
|
5362
|
+
BytesArchived?: number;
|
|
5363
|
+
ErrorMessage: string | null;
|
|
5364
|
+
ArchivedAt: Date | null;
|
|
5365
|
+
VersionStamp: Date | null;
|
|
5366
|
+
IsRecordChangeArchive?: boolean;
|
|
5367
|
+
RestoreContext___?: RestoreContextInput;
|
|
5368
|
+
}
|
|
5369
|
+
export declare class UpdateMJArchiveRunDetailInput {
|
|
5370
|
+
ID: string;
|
|
5371
|
+
ArchiveRunID?: string;
|
|
5372
|
+
EntityID?: string;
|
|
5373
|
+
RecordID?: string;
|
|
5374
|
+
Status?: string;
|
|
5375
|
+
StoragePath?: string | null;
|
|
5376
|
+
BytesArchived?: number;
|
|
5377
|
+
ErrorMessage?: string | null;
|
|
5378
|
+
ArchivedAt?: Date | null;
|
|
5379
|
+
VersionStamp?: Date | null;
|
|
5380
|
+
IsRecordChangeArchive?: boolean;
|
|
5381
|
+
OldValues___?: KeyValuePairInput[];
|
|
5382
|
+
RestoreContext___?: RestoreContextInput;
|
|
5383
|
+
}
|
|
5384
|
+
export declare class RunMJArchiveRunDetailViewResult {
|
|
5385
|
+
Results: MJArchiveRunDetail_[];
|
|
5386
|
+
UserViewRunID?: string;
|
|
5387
|
+
RowCount: number;
|
|
5388
|
+
TotalRowCount: number;
|
|
5389
|
+
ExecutionTime: number;
|
|
5390
|
+
ErrorMessage?: string;
|
|
5391
|
+
Success: boolean;
|
|
5392
|
+
}
|
|
5393
|
+
export declare class MJArchiveRunDetailResolver extends ResolverBase {
|
|
5394
|
+
RunMJArchiveRunDetailViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5395
|
+
RunMJArchiveRunDetailViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5396
|
+
RunMJArchiveRunDetailDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5397
|
+
MJArchiveRunDetail(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJArchiveRunDetail_ | null>;
|
|
5398
|
+
CreateMJArchiveRunDetail(input: CreateMJArchiveRunDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5399
|
+
UpdateMJArchiveRunDetail(input: UpdateMJArchiveRunDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5400
|
+
DeleteMJArchiveRunDetail(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5401
|
+
}
|
|
5402
|
+
export declare class MJArchiveRun_ {
|
|
5403
|
+
ID: string;
|
|
5404
|
+
ArchiveConfigurationID: string;
|
|
5405
|
+
StartedAt: Date;
|
|
5406
|
+
CompletedAt?: Date;
|
|
5407
|
+
Status: string;
|
|
5408
|
+
TotalRecords: number;
|
|
5409
|
+
ArchivedRecords: number;
|
|
5410
|
+
FailedRecords: number;
|
|
5411
|
+
SkippedRecords: number;
|
|
5412
|
+
TotalBytesArchived: number;
|
|
5413
|
+
ErrorLog?: string;
|
|
5414
|
+
UserID: string;
|
|
5415
|
+
_mj__CreatedAt: Date;
|
|
5416
|
+
_mj__UpdatedAt: Date;
|
|
5417
|
+
ArchiveConfiguration: string;
|
|
5418
|
+
User: string;
|
|
5419
|
+
MJArchiveRunDetails_ArchiveRunIDArray: MJArchiveRunDetail_[];
|
|
5420
|
+
}
|
|
5421
|
+
export declare class CreateMJArchiveRunInput {
|
|
5422
|
+
ID?: string;
|
|
5423
|
+
ArchiveConfigurationID?: string;
|
|
5424
|
+
StartedAt?: Date;
|
|
5425
|
+
CompletedAt: Date | null;
|
|
5426
|
+
Status?: string;
|
|
5427
|
+
TotalRecords?: number;
|
|
5428
|
+
ArchivedRecords?: number;
|
|
5429
|
+
FailedRecords?: number;
|
|
5430
|
+
SkippedRecords?: number;
|
|
5431
|
+
TotalBytesArchived?: number;
|
|
5432
|
+
ErrorLog: string | null;
|
|
5433
|
+
UserID?: string;
|
|
5434
|
+
RestoreContext___?: RestoreContextInput;
|
|
5435
|
+
}
|
|
5436
|
+
export declare class UpdateMJArchiveRunInput {
|
|
5437
|
+
ID: string;
|
|
5438
|
+
ArchiveConfigurationID?: string;
|
|
5439
|
+
StartedAt?: Date;
|
|
5440
|
+
CompletedAt?: Date | null;
|
|
5441
|
+
Status?: string;
|
|
5442
|
+
TotalRecords?: number;
|
|
5443
|
+
ArchivedRecords?: number;
|
|
5444
|
+
FailedRecords?: number;
|
|
5445
|
+
SkippedRecords?: number;
|
|
5446
|
+
TotalBytesArchived?: number;
|
|
5447
|
+
ErrorLog?: string | null;
|
|
5448
|
+
UserID?: string;
|
|
5449
|
+
OldValues___?: KeyValuePairInput[];
|
|
5450
|
+
RestoreContext___?: RestoreContextInput;
|
|
5451
|
+
}
|
|
5452
|
+
export declare class RunMJArchiveRunViewResult {
|
|
5453
|
+
Results: MJArchiveRun_[];
|
|
5454
|
+
UserViewRunID?: string;
|
|
5455
|
+
RowCount: number;
|
|
5456
|
+
TotalRowCount: number;
|
|
5457
|
+
ExecutionTime: number;
|
|
5458
|
+
ErrorMessage?: string;
|
|
5459
|
+
Success: boolean;
|
|
5460
|
+
}
|
|
5461
|
+
export declare class MJArchiveRunResolver extends ResolverBase {
|
|
5462
|
+
RunMJArchiveRunViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5463
|
+
RunMJArchiveRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5464
|
+
RunMJArchiveRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5465
|
+
MJArchiveRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJArchiveRun_ | null>;
|
|
5466
|
+
MJArchiveRunDetails_ArchiveRunIDArray(mjarchiverun_: MJArchiveRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5467
|
+
CreateMJArchiveRun(input: CreateMJArchiveRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5468
|
+
UpdateMJArchiveRun(input: UpdateMJArchiveRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5469
|
+
DeleteMJArchiveRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5470
|
+
}
|
|
5195
5471
|
export declare class MJArtifactPermission_ {
|
|
5196
5472
|
ID: string;
|
|
5197
5473
|
ArtifactID: string;
|
|
@@ -10110,6 +10386,8 @@ export declare class MJEntity_ {
|
|
|
10110
10386
|
MJRecordLinks_SourceEntityIDArray: MJRecordLink_[];
|
|
10111
10387
|
MJCompanyIntegrationEntityMaps_EntityIDArray: MJCompanyIntegrationEntityMap_[];
|
|
10112
10388
|
MJEntityFields_RelatedEntityIDArray: MJEntityField_[];
|
|
10389
|
+
MJArchiveConfigurationEntities_EntityIDArray: MJArchiveConfigurationEntity_[];
|
|
10390
|
+
MJArchiveRunDetails_EntityIDArray: MJArchiveRunDetail_[];
|
|
10113
10391
|
MJResourceTypes_CategoryEntityIDArray: MJResourceType_[];
|
|
10114
10392
|
MJContentSources_EntityIDArray: MJContentSource_[];
|
|
10115
10393
|
MJTestRuns_TargetLogEntityIDArray: MJTestRun_[];
|
|
@@ -10310,6 +10588,8 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
10310
10588
|
MJRecordLinks_SourceEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10311
10589
|
MJCompanyIntegrationEntityMaps_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10312
10590
|
MJEntityFields_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10591
|
+
MJArchiveConfigurationEntities_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10592
|
+
MJArchiveRunDetails_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10313
10593
|
MJResourceTypes_CategoryEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10314
10594
|
MJContentSources_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10315
10595
|
MJTestRuns_TargetLogEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -11962,6 +12242,7 @@ export declare class MJFileStorageAccount_ {
|
|
|
11962
12242
|
Provider: string;
|
|
11963
12243
|
Credential: string;
|
|
11964
12244
|
MJAIAgentTypes_DefaultStorageAccountIDArray: MJAIAgentType_[];
|
|
12245
|
+
MJArchiveConfigurations_StorageAccountIDArray: MJArchiveConfiguration_[];
|
|
11965
12246
|
MJFileStorageAccountPermissions_FileStorageAccountIDArray: MJFileStorageAccountPermission_[];
|
|
11966
12247
|
MJAIAgentCategories_DefaultStorageAccountIDArray: MJAIAgentCategory_[];
|
|
11967
12248
|
MJAIAgents_DefaultStorageAccountIDArray: MJAIAgent_[];
|
|
@@ -12000,6 +12281,7 @@ export declare class MJFileStorageAccountResolver extends ResolverBase {
|
|
|
12000
12281
|
RunMJFileStorageAccountDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
12001
12282
|
MJFileStorageAccount(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJFileStorageAccount_ | null>;
|
|
12002
12283
|
MJAIAgentTypes_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12284
|
+
MJArchiveConfigurations_StorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12003
12285
|
MJFileStorageAccountPermissions_FileStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12004
12286
|
MJAIAgentCategories_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12005
12287
|
MJAIAgents_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -13296,6 +13578,7 @@ export declare class MJMCPServerTool_ {
|
|
|
13296
13578
|
GeneratedAction?: string;
|
|
13297
13579
|
GeneratedActionCategory?: string;
|
|
13298
13580
|
MJMCPServerConnectionTools_MCPServerToolIDArray: MJMCPServerConnectionTool_[];
|
|
13581
|
+
MJMCPToolFavorites_MCPServerToolIDArray: MJMCPToolFavorite_[];
|
|
13299
13582
|
MJMCPToolExecutionLogs_MCPServerToolIDArray: MJMCPToolExecutionLog_[];
|
|
13300
13583
|
}
|
|
13301
13584
|
export declare class CreateMJMCPServerToolInput {
|
|
@@ -13346,6 +13629,7 @@ export declare class MJMCPServerToolResolver extends ResolverBase {
|
|
|
13346
13629
|
RunMJMCPServerToolDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13347
13630
|
MJMCPServerTool(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMCPServerTool_ | null>;
|
|
13348
13631
|
MJMCPServerConnectionTools_MCPServerToolIDArray(mjmcpservertool_: MJMCPServerTool_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13632
|
+
MJMCPToolFavorites_MCPServerToolIDArray(mjmcpservertool_: MJMCPServerTool_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13349
13633
|
MJMCPToolExecutionLogs_MCPServerToolIDArray(mjmcpservertool_: MJMCPServerTool_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13350
13634
|
CreateMJMCPServerTool(input: CreateMJMCPServerToolInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13351
13635
|
UpdateMJMCPServerTool(input: UpdateMJMCPServerToolInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -13527,6 +13811,44 @@ export declare class MJMCPToolExecutionLogResolver extends ResolverBase {
|
|
|
13527
13811
|
UpdateMJMCPToolExecutionLog(input: UpdateMJMCPToolExecutionLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13528
13812
|
DeleteMJMCPToolExecutionLog(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13529
13813
|
}
|
|
13814
|
+
export declare class MJMCPToolFavorite_ {
|
|
13815
|
+
ID: string;
|
|
13816
|
+
UserID: string;
|
|
13817
|
+
MCPServerToolID: string;
|
|
13818
|
+
_mj__CreatedAt: Date;
|
|
13819
|
+
_mj__UpdatedAt: Date;
|
|
13820
|
+
User: string;
|
|
13821
|
+
MCPServerTool?: string;
|
|
13822
|
+
}
|
|
13823
|
+
export declare class CreateMJMCPToolFavoriteInput {
|
|
13824
|
+
ID?: string;
|
|
13825
|
+
UserID?: string;
|
|
13826
|
+
MCPServerToolID?: string;
|
|
13827
|
+
}
|
|
13828
|
+
export declare class UpdateMJMCPToolFavoriteInput {
|
|
13829
|
+
ID: string;
|
|
13830
|
+
UserID?: string;
|
|
13831
|
+
MCPServerToolID?: string;
|
|
13832
|
+
OldValues___?: KeyValuePairInput[];
|
|
13833
|
+
}
|
|
13834
|
+
export declare class RunMJMCPToolFavoriteViewResult {
|
|
13835
|
+
Results: MJMCPToolFavorite_[];
|
|
13836
|
+
UserViewRunID?: string;
|
|
13837
|
+
RowCount: number;
|
|
13838
|
+
TotalRowCount: number;
|
|
13839
|
+
ExecutionTime: number;
|
|
13840
|
+
ErrorMessage?: string;
|
|
13841
|
+
Success: boolean;
|
|
13842
|
+
}
|
|
13843
|
+
export declare class MJMCPToolFavoriteResolver extends ResolverBase {
|
|
13844
|
+
RunMJMCPToolFavoriteViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13845
|
+
RunMJMCPToolFavoriteViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13846
|
+
RunMJMCPToolFavoriteDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13847
|
+
MJMCPToolFavorite(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMCPToolFavorite_ | null>;
|
|
13848
|
+
CreateMJMCPToolFavorite(input: CreateMJMCPToolFavoriteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13849
|
+
UpdateMJMCPToolFavorite(input: UpdateMJMCPToolFavoriteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13850
|
+
DeleteMJMCPToolFavorite(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13851
|
+
}
|
|
13530
13852
|
export declare class MJOAuthAuthServerMetadataCache_ {
|
|
13531
13853
|
ID: string;
|
|
13532
13854
|
IssuerURL: string;
|
|
@@ -16912,8 +17234,8 @@ export declare class MJTag_ {
|
|
|
16912
17234
|
MJTagCoOccurrences_TagBIDArray: MJTagCoOccurrence_[];
|
|
16913
17235
|
MJTagAuditLogs_RelatedTagIDArray: MJTagAuditLog_[];
|
|
16914
17236
|
MJTagCoOccurrences_TagAIDArray: MJTagCoOccurrence_[];
|
|
16915
|
-
MJTagAuditLogs_TagIDArray: MJTagAuditLog_[];
|
|
16916
17237
|
MJTags_MergedIntoTagIDArray: MJTag_[];
|
|
17238
|
+
MJTagAuditLogs_TagIDArray: MJTagAuditLog_[];
|
|
16917
17239
|
}
|
|
16918
17240
|
export declare class CreateMJTagInput {
|
|
16919
17241
|
ID?: string;
|
|
@@ -16956,8 +17278,8 @@ export declare class MJTagResolver extends ResolverBase {
|
|
|
16956
17278
|
MJTagCoOccurrences_TagBIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16957
17279
|
MJTagAuditLogs_RelatedTagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16958
17280
|
MJTagCoOccurrences_TagAIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16959
|
-
MJTagAuditLogs_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16960
17281
|
MJTags_MergedIntoTagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17282
|
+
MJTagAuditLogs_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16961
17283
|
CreateMJTag(input: CreateMJTagInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16962
17284
|
UpdateMJTag(input: UpdateMJTagInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16963
17285
|
DeleteMJTag(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -18928,9 +19250,11 @@ export declare class MJUser_ {
|
|
|
18928
19250
|
MJOpenAppInstallHistories_ExecutedByUserIDArray: MJOpenAppInstallHistory_[];
|
|
18929
19251
|
MJOpenApps_InstalledByUserIDArray: MJOpenApp_[];
|
|
18930
19252
|
MJContentItemDuplicates_ResolvedByUserIDArray: MJContentItemDuplicate_[];
|
|
19253
|
+
MJTagAuditLogs_PerformedByUserIDArray: MJTagAuditLog_[];
|
|
18931
19254
|
MJContentProcessRuns_StartedByUserIDArray: MJContentProcessRun_[];
|
|
18932
19255
|
MJKnowledgeHubSavedSearches_UserIDArray: MJKnowledgeHubSavedSearch_[];
|
|
18933
|
-
|
|
19256
|
+
MJMCPToolFavorites_UserIDArray: MJMCPToolFavorite_[];
|
|
19257
|
+
MJArchiveConfigurations_CreatedByUserIDArray: MJArchiveConfiguration_[];
|
|
18934
19258
|
MJResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
18935
19259
|
MJAIAgentRequests_ResponseByUserIDArray: MJAIAgentRequest_[];
|
|
18936
19260
|
MJConversationDetails_UserIDArray: MJConversationDetail_[];
|
|
@@ -18947,6 +19271,7 @@ export declare class MJUser_ {
|
|
|
18947
19271
|
MJVersionLabels_CreatedByUserIDArray: MJVersionLabel_[];
|
|
18948
19272
|
MJDuplicateRuns_ApprovedByUserIDArray: MJDuplicateRun_[];
|
|
18949
19273
|
MJFileStorageAccountPermissions_UserIDArray: MJFileStorageAccountPermission_[];
|
|
19274
|
+
MJArchiveRuns_UserIDArray: MJArchiveRun_[];
|
|
18950
19275
|
MJAIAgentRuns_UserIDArray: MJAIAgentRun_[];
|
|
18951
19276
|
MJAIAgentPermissions_UserIDArray: MJAIAgentPermission_[];
|
|
18952
19277
|
MJCollectionPermissions_SharedByUserIDArray: MJCollectionPermission_[];
|
|
@@ -19067,9 +19392,11 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
19067
19392
|
MJOpenAppInstallHistories_ExecutedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19068
19393
|
MJOpenApps_InstalledByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19069
19394
|
MJContentItemDuplicates_ResolvedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19395
|
+
MJTagAuditLogs_PerformedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19070
19396
|
MJContentProcessRuns_StartedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19071
19397
|
MJKnowledgeHubSavedSearches_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19072
|
-
|
|
19398
|
+
MJMCPToolFavorites_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19399
|
+
MJArchiveConfigurations_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19073
19400
|
MJResourcePermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19074
19401
|
MJAIAgentRequests_ResponseByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19075
19402
|
MJConversationDetails_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -19086,6 +19413,7 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
19086
19413
|
MJVersionLabels_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19087
19414
|
MJDuplicateRuns_ApprovedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19088
19415
|
MJFileStorageAccountPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19416
|
+
MJArchiveRuns_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19089
19417
|
MJAIAgentRuns_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19090
19418
|
MJAIAgentPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19091
19419
|
MJCollectionPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|