@memberjunction/server 2.40.0 → 2.42.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.
@@ -296,6 +296,110 @@ export declare class AIAgentNoteTypeResolver extends ResolverBase {
296
296
  UpdateAIAgentNoteType(input: UpdateAIAgentNoteTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
297
297
  DeleteAIAgentNoteType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
298
298
  }
299
+ export declare class AIVendor_ {
300
+ ID: string;
301
+ Name: string;
302
+ Description?: string;
303
+ _mj__CreatedAt: Date;
304
+ _mj__UpdatedAt: Date;
305
+ MJ_AIPromptModels_VendorIDArray: AIPromptModel_[];
306
+ AIResultCache_VendorIDArray: AIResultCache_[];
307
+ MJ_AIModelVendors_VendorIDArray: AIModelVendor_[];
308
+ MJ_AIPromptRuns_VendorIDArray: AIPromptRun_[];
309
+ MJ_AIVendorTypes_VendorIDArray: AIVendorType_[];
310
+ }
311
+ export declare class CreateAIVendorInput {
312
+ Name?: string;
313
+ Description: string | null;
314
+ }
315
+ export declare class UpdateAIVendorInput {
316
+ ID: string;
317
+ Name?: string;
318
+ Description?: string | null;
319
+ OldValues___?: KeyValuePairInput[];
320
+ }
321
+ export declare class RunAIVendorViewResult {
322
+ Results: AIVendor_[];
323
+ UserViewRunID?: string;
324
+ RowCount: number;
325
+ TotalRowCount: number;
326
+ ExecutionTime: number;
327
+ ErrorMessage?: string;
328
+ Success: boolean;
329
+ }
330
+ export declare class AIVendorResolver extends ResolverBase {
331
+ RunAIVendorViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
332
+ RunAIVendorViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
333
+ RunAIVendorDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
334
+ AIVendor(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIVendor_ | null>;
335
+ MJ_AIPromptModels_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
336
+ AIResultCache_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
337
+ MJ_AIModelVendors_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
338
+ MJ_AIPromptRuns_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
339
+ MJ_AIVendorTypes_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
340
+ CreateAIVendor(input: CreateAIVendorInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
341
+ UpdateAIVendor(input: UpdateAIVendorInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
342
+ DeleteAIVendor(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
343
+ }
344
+ export declare class AIConfiguration_ {
345
+ ID: string;
346
+ Name: string;
347
+ Description?: string;
348
+ IsDefault: boolean;
349
+ Status: string;
350
+ DefaultPromptForContextCompressionID?: string;
351
+ DefaultPromptForContextSummarizationID?: string;
352
+ _mj__CreatedAt: Date;
353
+ _mj__UpdatedAt: Date;
354
+ DefaultPromptForContextCompression?: string;
355
+ DefaultPromptForContextSummarization?: string;
356
+ MJ_AIConfigurationParams_ConfigurationIDArray: AIConfigurationParam_[];
357
+ MJ_AIAgentPrompts_ConfigurationIDArray: AIAgentPrompt_[];
358
+ MJ_AIPromptModels_ConfigurationIDArray: AIPromptModel_[];
359
+ AIResultCache_ConfigurationIDArray: AIResultCache_[];
360
+ MJ_AIPromptRuns_ConfigurationIDArray: AIPromptRun_[];
361
+ }
362
+ export declare class CreateAIConfigurationInput {
363
+ Name?: string;
364
+ Description: string | null;
365
+ IsDefault?: boolean;
366
+ Status?: string;
367
+ DefaultPromptForContextCompressionID: string | null;
368
+ DefaultPromptForContextSummarizationID: string | null;
369
+ }
370
+ export declare class UpdateAIConfigurationInput {
371
+ ID: string;
372
+ Name?: string;
373
+ Description?: string | null;
374
+ IsDefault?: boolean;
375
+ Status?: string;
376
+ DefaultPromptForContextCompressionID?: string | null;
377
+ DefaultPromptForContextSummarizationID?: string | null;
378
+ OldValues___?: KeyValuePairInput[];
379
+ }
380
+ export declare class RunAIConfigurationViewResult {
381
+ Results: AIConfiguration_[];
382
+ UserViewRunID?: string;
383
+ RowCount: number;
384
+ TotalRowCount: number;
385
+ ExecutionTime: number;
386
+ ErrorMessage?: string;
387
+ Success: boolean;
388
+ }
389
+ export declare class AIConfigurationResolver extends ResolverBase {
390
+ RunAIConfigurationViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
391
+ RunAIConfigurationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
392
+ RunAIConfigurationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
393
+ AIConfiguration(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIConfiguration_ | null>;
394
+ MJ_AIConfigurationParams_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
395
+ MJ_AIAgentPrompts_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
396
+ MJ_AIPromptModels_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
397
+ AIResultCache_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
398
+ MJ_AIPromptRuns_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
399
+ CreateAIConfiguration(input: CreateAIConfigurationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
400
+ UpdateAIConfiguration(input: UpdateAIConfigurationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
401
+ DeleteAIConfiguration(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
402
+ }
299
403
  export declare class AIAgent_ {
300
404
  ID: string;
301
405
  Name?: string;
@@ -303,22 +407,52 @@ export declare class AIAgent_ {
303
407
  LogoURL?: string;
304
408
  _mj__CreatedAt: Date;
305
409
  _mj__UpdatedAt: Date;
410
+ ParentID?: string;
411
+ ExposeAsAction: boolean;
412
+ ExecutionOrder: number;
413
+ ExecutionMode: string;
414
+ EnableContextCompression: boolean;
415
+ ContextCompressionMessageThreshold?: number;
416
+ ContextCompressionPromptID?: string;
417
+ ContextCompressionMessageRetentionCount?: number;
418
+ Parent?: string;
419
+ ContextCompressionPrompt?: string;
306
420
  AIAgentRequests_AgentIDArray: AIAgentRequest_[];
307
421
  AIAgentLearningCycles_AgentIDArray: AIAgentLearningCycle_[];
308
422
  AIAgentModels_AgentIDArray: AIAgentModel_[];
309
423
  AIAgentActions_AgentIDArray: AIAgentAction_[];
424
+ MJ_AIAgentPrompts_AgentIDArray: AIAgentPrompt_[];
310
425
  AIAgentNotes_AgentIDArray: AIAgentNote_[];
426
+ AIResultCache_AgentIDArray: AIResultCache_[];
427
+ MJ_AIPromptRuns_AgentIDArray: AIPromptRun_[];
428
+ AIAgents_ParentIDArray: AIAgent_[];
311
429
  }
312
430
  export declare class CreateAIAgentInput {
313
431
  Name: string | null;
314
432
  Description: string | null;
315
433
  LogoURL: string | null;
434
+ ParentID: string | null;
435
+ ExposeAsAction?: boolean;
436
+ ExecutionOrder?: number;
437
+ ExecutionMode?: string;
438
+ EnableContextCompression?: boolean;
439
+ ContextCompressionMessageThreshold: number | null;
440
+ ContextCompressionPromptID: string | null;
441
+ ContextCompressionMessageRetentionCount: number | null;
316
442
  }
317
443
  export declare class UpdateAIAgentInput {
318
444
  ID: string;
319
445
  Name?: string | null;
320
446
  Description?: string | null;
321
447
  LogoURL?: string | null;
448
+ ParentID?: string | null;
449
+ ExposeAsAction?: boolean;
450
+ ExecutionOrder?: number;
451
+ ExecutionMode?: string;
452
+ EnableContextCompression?: boolean;
453
+ ContextCompressionMessageThreshold?: number | null;
454
+ ContextCompressionPromptID?: string | null;
455
+ ContextCompressionMessageRetentionCount?: number | null;
322
456
  OldValues___?: KeyValuePairInput[];
323
457
  }
324
458
  export declare class RunAIAgentViewResult {
@@ -339,11 +473,81 @@ export declare class AIAgentResolver extends ResolverBase {
339
473
  AIAgentLearningCycles_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
340
474
  AIAgentModels_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
341
475
  AIAgentActions_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
476
+ MJ_AIAgentPrompts_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
342
477
  AIAgentNotes_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
478
+ AIResultCache_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
479
+ MJ_AIPromptRuns_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
480
+ AIAgents_ParentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
343
481
  CreateAIAgent(input: CreateAIAgentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
344
482
  UpdateAIAgent(input: UpdateAIAgentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
345
483
  DeleteAIAgent(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
346
484
  }
485
+ export declare class AIPromptModel_ {
486
+ ID: string;
487
+ PromptID: string;
488
+ ModelID: string;
489
+ VendorID?: string;
490
+ ConfigurationID?: string;
491
+ Priority: number;
492
+ ExecutionGroup: number;
493
+ ModelParameters?: string;
494
+ Status: string;
495
+ ParallelizationMode: string;
496
+ ParallelCount: number;
497
+ ParallelConfigParam?: string;
498
+ _mj__CreatedAt: Date;
499
+ _mj__UpdatedAt: Date;
500
+ Prompt: string;
501
+ Model: string;
502
+ Vendor?: string;
503
+ Configuration?: string;
504
+ }
505
+ export declare class CreateAIPromptModelInput {
506
+ PromptID?: string;
507
+ ModelID?: string;
508
+ VendorID: string | null;
509
+ ConfigurationID: string | null;
510
+ Priority?: number;
511
+ ExecutionGroup?: number;
512
+ ModelParameters: string | null;
513
+ Status?: string;
514
+ ParallelizationMode?: string;
515
+ ParallelCount?: number;
516
+ ParallelConfigParam: string | null;
517
+ }
518
+ export declare class UpdateAIPromptModelInput {
519
+ ID: string;
520
+ PromptID?: string;
521
+ ModelID?: string;
522
+ VendorID?: string | null;
523
+ ConfigurationID?: string | null;
524
+ Priority?: number;
525
+ ExecutionGroup?: number;
526
+ ModelParameters?: string | null;
527
+ Status?: string;
528
+ ParallelizationMode?: string;
529
+ ParallelCount?: number;
530
+ ParallelConfigParam?: string | null;
531
+ OldValues___?: KeyValuePairInput[];
532
+ }
533
+ export declare class RunAIPromptModelViewResult {
534
+ Results: AIPromptModel_[];
535
+ UserViewRunID?: string;
536
+ RowCount: number;
537
+ TotalRowCount: number;
538
+ ExecutionTime: number;
539
+ ErrorMessage?: string;
540
+ Success: boolean;
541
+ }
542
+ export declare class AIPromptModelResolver extends ResolverBase {
543
+ RunAIPromptModelViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
544
+ RunAIPromptModelViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
545
+ RunAIPromptModelDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
546
+ AIPromptModel(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIPromptModel_ | null>;
547
+ CreateAIPromptModel(input: CreateAIPromptModelInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
548
+ UpdateAIPromptModel(input: UpdateAIPromptModelInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
549
+ DeleteAIPromptModel(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
550
+ }
347
551
  export declare class AIAgentNote_ {
348
552
  ID: string;
349
553
  AgentID?: string;
@@ -439,16 +643,45 @@ export declare class AIPrompt_ {
439
643
  CategoryID?: string;
440
644
  TypeID: string;
441
645
  Status: string;
442
- CacheResults: boolean;
443
- CacheExpiration: number;
444
646
  _mj__CreatedAt: Date;
445
647
  _mj__UpdatedAt: Date;
446
648
  ResponseFormat: string;
447
649
  ModelSpecificResponseFormat?: string;
650
+ AIModelTypeID?: string;
651
+ MinPowerRank?: number;
652
+ SelectionStrategy: string;
653
+ PowerPreference: string;
654
+ ParallelizationMode: string;
655
+ ParallelCount?: number;
656
+ ParallelConfigParam?: string;
657
+ OutputType: string;
658
+ OutputExample?: string;
659
+ ValidationBehavior: string;
660
+ MaxRetries: number;
661
+ RetryDelayMS: number;
662
+ RetryStrategy: string;
663
+ ResultSelectorPromptID?: string;
664
+ EnableCaching: boolean;
665
+ CacheTTLSeconds?: number;
666
+ CacheMatchType: string;
667
+ CacheSimilarityThreshold?: number;
668
+ CacheMustMatchModel: boolean;
669
+ CacheMustMatchVendor: boolean;
670
+ CacheMustMatchAgent: boolean;
671
+ CacheMustMatchConfig: boolean;
448
672
  Template: string;
449
673
  Category?: string;
450
674
  Type: string;
675
+ AIModelType?: string;
676
+ ResultSelectorPrompt?: string;
451
677
  AIResultCache_AIPromptIDArray: AIResultCache_[];
678
+ MJ_AIConfigurations_DefaultPromptForContextCompressionIDArray: AIConfiguration_[];
679
+ MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray: AIConfiguration_[];
680
+ AIPrompts_ResultSelectorPromptIDArray: AIPrompt_[];
681
+ MJ_AIPromptModels_PromptIDArray: AIPromptModel_[];
682
+ MJ_AIAgentPrompts_PromptIDArray: AIAgentPrompt_[];
683
+ MJ_AIPromptRuns_PromptIDArray: AIPromptRun_[];
684
+ AIAgents_ContextCompressionPromptIDArray: AIAgent_[];
452
685
  }
453
686
  export declare class CreateAIPromptInput {
454
687
  Name?: string;
@@ -457,10 +690,30 @@ export declare class CreateAIPromptInput {
457
690
  CategoryID: string | null;
458
691
  TypeID?: string;
459
692
  Status?: string;
460
- CacheResults?: boolean;
461
- CacheExpiration?: number;
462
693
  ResponseFormat?: string;
463
694
  ModelSpecificResponseFormat: string | null;
695
+ AIModelTypeID: string | null;
696
+ MinPowerRank?: number | null;
697
+ SelectionStrategy?: string;
698
+ PowerPreference?: string;
699
+ ParallelizationMode?: string;
700
+ ParallelCount: number | null;
701
+ ParallelConfigParam: string | null;
702
+ OutputType?: string;
703
+ OutputExample: string | null;
704
+ ValidationBehavior?: string;
705
+ MaxRetries?: number;
706
+ RetryDelayMS?: number;
707
+ RetryStrategy?: string;
708
+ ResultSelectorPromptID: string | null;
709
+ EnableCaching?: boolean;
710
+ CacheTTLSeconds: number | null;
711
+ CacheMatchType?: string;
712
+ CacheSimilarityThreshold: number | null;
713
+ CacheMustMatchModel?: boolean;
714
+ CacheMustMatchVendor?: boolean;
715
+ CacheMustMatchAgent?: boolean;
716
+ CacheMustMatchConfig?: boolean;
464
717
  }
465
718
  export declare class UpdateAIPromptInput {
466
719
  ID: string;
@@ -470,10 +723,30 @@ export declare class UpdateAIPromptInput {
470
723
  CategoryID?: string | null;
471
724
  TypeID?: string;
472
725
  Status?: string;
473
- CacheResults?: boolean;
474
- CacheExpiration?: number;
475
726
  ResponseFormat?: string;
476
727
  ModelSpecificResponseFormat?: string | null;
728
+ AIModelTypeID?: string | null;
729
+ MinPowerRank?: number | null;
730
+ SelectionStrategy?: string;
731
+ PowerPreference?: string;
732
+ ParallelizationMode?: string;
733
+ ParallelCount?: number | null;
734
+ ParallelConfigParam?: string | null;
735
+ OutputType?: string;
736
+ OutputExample?: string | null;
737
+ ValidationBehavior?: string;
738
+ MaxRetries?: number;
739
+ RetryDelayMS?: number;
740
+ RetryStrategy?: string;
741
+ ResultSelectorPromptID?: string | null;
742
+ EnableCaching?: boolean;
743
+ CacheTTLSeconds?: number | null;
744
+ CacheMatchType?: string;
745
+ CacheSimilarityThreshold?: number | null;
746
+ CacheMustMatchModel?: boolean;
747
+ CacheMustMatchVendor?: boolean;
748
+ CacheMustMatchAgent?: boolean;
749
+ CacheMustMatchConfig?: boolean;
477
750
  OldValues___?: KeyValuePairInput[];
478
751
  }
479
752
  export declare class RunAIPromptViewResult {
@@ -491,6 +764,13 @@ export declare class AIPromptResolver extends ResolverBase {
491
764
  RunAIPromptDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
492
765
  AIPrompt(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIPrompt_ | null>;
493
766
  AIResultCache_AIPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
767
+ MJ_AIConfigurations_DefaultPromptForContextCompressionIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
768
+ MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
769
+ AIPrompts_ResultSelectorPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
770
+ MJ_AIPromptModels_PromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
771
+ MJ_AIAgentPrompts_PromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
772
+ MJ_AIPromptRuns_PromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
773
+ AIAgents_ContextCompressionPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
494
774
  CreateAIPrompt(input: CreateAIPromptInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
495
775
  UpdateAIPrompt(input: UpdateAIPromptInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
496
776
  DeleteAIPrompt(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
@@ -506,8 +786,16 @@ export declare class AIResultCache_ {
506
786
  ExpiredOn?: Date;
507
787
  _mj__CreatedAt: Date;
508
788
  _mj__UpdatedAt: Date;
789
+ VendorID?: string;
790
+ AgentID?: string;
791
+ ConfigurationID?: string;
792
+ PromptEmbedding?: number;
793
+ PromptRunID?: string;
509
794
  AIPrompt: string;
510
795
  AIModel: string;
796
+ Vendor?: string;
797
+ Agent?: string;
798
+ Configuration?: string;
511
799
  }
512
800
  export declare class CreateAIResultCacheInput {
513
801
  AIPromptID?: string;
@@ -517,6 +805,11 @@ export declare class CreateAIResultCacheInput {
517
805
  ResultText: string | null;
518
806
  Status?: string;
519
807
  ExpiredOn: Date | null;
808
+ VendorID: string | null;
809
+ AgentID: string | null;
810
+ ConfigurationID: string | null;
811
+ PromptEmbedding: number | null;
812
+ PromptRunID: string | null;
520
813
  }
521
814
  export declare class UpdateAIResultCacheInput {
522
815
  ID: string;
@@ -527,6 +820,11 @@ export declare class UpdateAIResultCacheInput {
527
820
  ResultText?: string | null;
528
821
  Status?: string;
529
822
  ExpiredOn?: Date | null;
823
+ VendorID?: string | null;
824
+ AgentID?: string | null;
825
+ ConfigurationID?: string | null;
826
+ PromptEmbedding?: number | null;
827
+ PromptRunID?: string | null;
530
828
  OldValues___?: KeyValuePairInput[];
531
829
  }
532
830
  export declare class RunAIResultCacheViewResult {
@@ -1312,6 +1610,10 @@ export declare class Entity_ {
1312
1610
  RowsToPackSampleMethod: string;
1313
1611
  RowsToPackSampleCount: number;
1314
1612
  RowsToPackSampleOrder?: string;
1613
+ AutoRowCountFrequency?: number;
1614
+ RowCount?: number;
1615
+ RowCountRunAt?: Date;
1616
+ Status: string;
1315
1617
  CodeName?: string;
1316
1618
  ClassName?: string;
1317
1619
  BaseTableCodeName?: string;
@@ -1404,6 +1706,10 @@ export declare class CreateEntityInput {
1404
1706
  RowsToPackSampleMethod?: string;
1405
1707
  RowsToPackSampleCount?: number;
1406
1708
  RowsToPackSampleOrder: string | null;
1709
+ AutoRowCountFrequency: number | null;
1710
+ RowCount: number | null;
1711
+ RowCountRunAt: Date | null;
1712
+ Status?: string;
1407
1713
  }
1408
1714
  export declare class UpdateEntityInput {
1409
1715
  ID: string;
@@ -1454,6 +1760,10 @@ export declare class UpdateEntityInput {
1454
1760
  RowsToPackSampleMethod?: string;
1455
1761
  RowsToPackSampleCount?: number;
1456
1762
  RowsToPackSampleOrder?: string | null;
1763
+ AutoRowCountFrequency?: number | null;
1764
+ RowCount?: number | null;
1765
+ RowCountRunAt?: Date | null;
1766
+ Status?: string;
1457
1767
  OldValues___?: KeyValuePairInput[];
1458
1768
  }
1459
1769
  export declare class RunEntityViewResult {
@@ -1567,8 +1877,10 @@ export declare class User_ {
1567
1877
  ListCategories_UserIDArray: ListCategory_[];
1568
1878
  ScheduledActions_CreatedByUserIDArray: ScheduledAction_[];
1569
1879
  AIAgentRequests_ResponseByUserIDArray: AIAgentRequest_[];
1880
+ MJ_DashboardUserPreferences_UserIDArray: DashboardUserPreference_[];
1570
1881
  MJ_ReportUserStates_UserIDArray: ReportUserState_[];
1571
1882
  AIAgentNotes_UserIDArray: AIAgentNote_[];
1883
+ MJ_DashboardUserStates_UserIDArray: DashboardUserState_[];
1572
1884
  ResourcePermissions_UserIDArray: ResourcePermission_[];
1573
1885
  AIAgentRequests_RequestForUserIDArray: AIAgentRequest_[];
1574
1886
  ConversationDetails_UserIDArray: ConversationDetail_[];
@@ -1650,8 +1962,10 @@ export declare class UserResolverBase extends ResolverBase {
1650
1962
  ListCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
1651
1963
  ScheduledActions_CreatedByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
1652
1964
  AIAgentRequests_ResponseByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
1965
+ MJ_DashboardUserPreferences_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
1653
1966
  MJ_ReportUserStates_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
1654
1967
  AIAgentNotes_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
1968
+ MJ_DashboardUserStates_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
1655
1969
  ResourcePermissions_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
1656
1970
  AIAgentRequests_RequestForUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
1657
1971
  ConversationDetails_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
@@ -1821,6 +2135,7 @@ export declare class UserView_ {
1821
2135
  SortState?: string;
1822
2136
  _mj__CreatedAt: Date;
1823
2137
  _mj__UpdatedAt: Date;
2138
+ Thumbnail?: string;
1824
2139
  UserName: string;
1825
2140
  UserFirstLast?: string;
1826
2141
  UserEmail: string;
@@ -1849,6 +2164,7 @@ export declare class CreateUserViewInput {
1849
2164
  WhereClause: string | null;
1850
2165
  CustomWhereClause?: boolean;
1851
2166
  SortState: string | null;
2167
+ Thumbnail: string | null;
1852
2168
  }
1853
2169
  export declare class UpdateUserViewInput {
1854
2170
  ID: string;
@@ -1869,6 +2185,7 @@ export declare class UpdateUserViewInput {
1869
2185
  WhereClause?: string | null;
1870
2186
  CustomWhereClause?: boolean;
1871
2187
  SortState?: string | null;
2188
+ Thumbnail?: string | null;
1872
2189
  OldValues___?: KeyValuePairInput[];
1873
2190
  }
1874
2191
  export declare class RunUserViewViewResult {
@@ -2068,15 +2385,19 @@ export declare class Application_ {
2068
2385
  DefaultForNewUser: boolean;
2069
2386
  _mj__CreatedAt: Date;
2070
2387
  _mj__UpdatedAt: Date;
2388
+ SchemaAutoAddNewEntities?: string;
2071
2389
  ApplicationSettings_ApplicationIDArray: ApplicationSetting_[];
2072
2390
  UserApplications_ApplicationIDArray: UserApplication_[];
2073
2391
  ApplicationEntities_ApplicationIDArray: ApplicationEntity_[];
2392
+ Dashboards_ApplicationIDArray: Dashboard_[];
2393
+ MJ_DashboardUserPreferences_ApplicationIDArray: DashboardUserPreference_[];
2074
2394
  }
2075
2395
  export declare class CreateApplicationInput {
2076
2396
  Name?: string;
2077
2397
  Description: string | null;
2078
2398
  Icon: string | null;
2079
2399
  DefaultForNewUser?: boolean;
2400
+ SchemaAutoAddNewEntities: string | null;
2080
2401
  }
2081
2402
  export declare class UpdateApplicationInput {
2082
2403
  ID: string;
@@ -2084,6 +2405,7 @@ export declare class UpdateApplicationInput {
2084
2405
  Description?: string | null;
2085
2406
  Icon?: string | null;
2086
2407
  DefaultForNewUser?: boolean;
2408
+ SchemaAutoAddNewEntities?: string | null;
2087
2409
  OldValues___?: KeyValuePairInput[];
2088
2410
  }
2089
2411
  export declare class RunApplicationViewResult {
@@ -2104,6 +2426,8 @@ export declare class ApplicationResolver extends ResolverBase {
2104
2426
  ApplicationSettings_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
2105
2427
  UserApplications_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
2106
2428
  ApplicationEntities_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
2429
+ Dashboards_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
2430
+ MJ_DashboardUserPreferences_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
2107
2431
  CreateApplication(input: CreateApplicationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
2108
2432
  UpdateApplication(input: UpdateApplicationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
2109
2433
  DeleteApplication(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
@@ -2977,22 +3301,22 @@ export declare class AIModel_ {
2977
3301
  ID: string;
2978
3302
  Name: string;
2979
3303
  Description?: string;
2980
- Vendor?: string;
2981
3304
  AIModelTypeID: string;
2982
3305
  PowerRank?: number;
2983
3306
  IsActive: boolean;
2984
- DriverClass?: string;
2985
- DriverImportPath?: string;
2986
- APIName?: string;
2987
3307
  _mj__CreatedAt: Date;
2988
3308
  _mj__UpdatedAt: Date;
2989
3309
  SpeedRank?: number;
2990
3310
  CostRank?: number;
2991
3311
  ModelSelectionInsights?: string;
2992
- InputTokenLimit?: number;
2993
- SupportedResponseFormats: string;
2994
- SupportsEffortLevel: boolean;
2995
3312
  AIModelType: string;
3313
+ Vendor?: string;
3314
+ DriverClass?: string;
3315
+ DriverImportPath?: string;
3316
+ APIName?: string;
3317
+ InputTokenLimit?: number;
3318
+ SupportedResponseFormats?: string;
3319
+ SupportsEffortLevel?: boolean;
2996
3320
  AIActions_DefaultModelIDArray: AIAction_[];
2997
3321
  EntityDocuments_AIModelIDArray: EntityDocument_[];
2998
3322
  AIModelActions_AIModelIDArray: AIModelAction_[];
@@ -3000,43 +3324,32 @@ export declare class AIModel_ {
3000
3324
  ContentTypes_AIModelIDArray: ContentType_[];
3001
3325
  AIResultCache_AIModelIDArray: AIResultCache_[];
3002
3326
  EntityAIActions_AIModelIDArray: EntityAIAction_[];
3327
+ MJ_AIModelVendors_ModelIDArray: AIModelVendor_[];
3003
3328
  AIAgentModels_ModelIDArray: AIAgentModel_[];
3004
3329
  GeneratedCodes_GeneratedByModelIDArray: GeneratedCode_[];
3330
+ MJ_AIPromptModels_ModelIDArray: AIPromptModel_[];
3331
+ MJ_AIPromptRuns_ModelIDArray: AIPromptRun_[];
3005
3332
  }
3006
3333
  export declare class CreateAIModelInput {
3007
3334
  Name?: string;
3008
3335
  Description: string | null;
3009
- Vendor: string | null;
3010
3336
  AIModelTypeID?: string;
3011
3337
  PowerRank?: number | null;
3012
3338
  IsActive?: boolean;
3013
- DriverClass: string | null;
3014
- DriverImportPath: string | null;
3015
- APIName: string | null;
3016
3339
  SpeedRank?: number | null;
3017
3340
  CostRank?: number | null;
3018
3341
  ModelSelectionInsights: string | null;
3019
- InputTokenLimit: number | null;
3020
- SupportedResponseFormats?: string;
3021
- SupportsEffortLevel?: boolean;
3022
3342
  }
3023
3343
  export declare class UpdateAIModelInput {
3024
3344
  ID: string;
3025
3345
  Name?: string;
3026
3346
  Description?: string | null;
3027
- Vendor?: string | null;
3028
3347
  AIModelTypeID?: string;
3029
3348
  PowerRank?: number | null;
3030
3349
  IsActive?: boolean;
3031
- DriverClass?: string | null;
3032
- DriverImportPath?: string | null;
3033
- APIName?: string | null;
3034
3350
  SpeedRank?: number | null;
3035
3351
  CostRank?: number | null;
3036
3352
  ModelSelectionInsights?: string | null;
3037
- InputTokenLimit?: number | null;
3038
- SupportedResponseFormats?: string;
3039
- SupportsEffortLevel?: boolean;
3040
3353
  OldValues___?: KeyValuePairInput[];
3041
3354
  }
3042
3355
  export declare class RunAIModelViewResult {
@@ -3061,8 +3374,11 @@ export declare class AIModelResolver extends ResolverBase {
3061
3374
  ContentTypes_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
3062
3375
  AIResultCache_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
3063
3376
  EntityAIActions_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
3377
+ MJ_AIModelVendors_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
3064
3378
  AIAgentModels_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
3065
3379
  GeneratedCodes_GeneratedByModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
3380
+ MJ_AIPromptModels_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
3381
+ MJ_AIPromptRuns_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
3066
3382
  CreateAIModel(input: CreateAIModelInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
3067
3383
  UpdateAIModel(input: UpdateAIModelInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
3068
3384
  DeleteAIModel(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
@@ -3235,6 +3551,7 @@ export declare class AIModelType_ {
3235
3551
  _mj__CreatedAt: Date;
3236
3552
  _mj__UpdatedAt: Date;
3237
3553
  AIModels_AIModelTypeIDArray: AIModel_[];
3554
+ AIPrompts_AIModelTypeIDArray: AIPrompt_[];
3238
3555
  }
3239
3556
  export declare class CreateAIModelTypeInput {
3240
3557
  Name?: string;
@@ -3262,6 +3579,7 @@ export declare class AIModelTypeResolver extends ResolverBase {
3262
3579
  AIModelType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModelType_ | null>;
3263
3580
  AllAIModelTypes({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
3264
3581
  AIModels_AIModelTypeIDArray(aimodeltype_: AIModelType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
3582
+ AIPrompts_AIModelTypeIDArray(aimodeltype_: AIModelType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
3265
3583
  CreateAIModelType(input: CreateAIModelTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
3266
3584
  UpdateAIModelType(input: UpdateAIModelTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
3267
3585
  DeleteAIModelType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
@@ -3437,8 +3755,17 @@ export declare class Dashboard_ {
3437
3755
  UIConfigDetails: string;
3438
3756
  _mj__CreatedAt: Date;
3439
3757
  _mj__UpdatedAt: Date;
3758
+ Type: string;
3759
+ Thumbnail?: string;
3760
+ Scope: string;
3761
+ ApplicationID?: string;
3762
+ Code?: string;
3763
+ DriverClass?: string;
3440
3764
  User: string;
3441
3765
  Category?: string;
3766
+ Application?: string;
3767
+ MJ_DashboardUserStates_DashboardIDArray: DashboardUserState_[];
3768
+ MJ_DashboardUserPreferences_DashboardIDArray: DashboardUserPreference_[];
3442
3769
  }
3443
3770
  export declare class CreateDashboardInput {
3444
3771
  Name?: string;
@@ -3446,6 +3773,12 @@ export declare class CreateDashboardInput {
3446
3773
  UserID?: string;
3447
3774
  CategoryID: string | null;
3448
3775
  UIConfigDetails?: string;
3776
+ Type?: string;
3777
+ Thumbnail: string | null;
3778
+ Scope?: string;
3779
+ ApplicationID: string | null;
3780
+ Code: string | null;
3781
+ DriverClass: string | null;
3449
3782
  }
3450
3783
  export declare class UpdateDashboardInput {
3451
3784
  ID: string;
@@ -3454,6 +3787,12 @@ export declare class UpdateDashboardInput {
3454
3787
  UserID?: string;
3455
3788
  CategoryID?: string | null;
3456
3789
  UIConfigDetails?: string;
3790
+ Type?: string;
3791
+ Thumbnail?: string | null;
3792
+ Scope?: string;
3793
+ ApplicationID?: string | null;
3794
+ Code?: string | null;
3795
+ DriverClass?: string | null;
3457
3796
  OldValues___?: KeyValuePairInput[];
3458
3797
  }
3459
3798
  export declare class RunDashboardViewResult {
@@ -3470,6 +3809,8 @@ export declare class DashboardResolver extends ResolverBase {
3470
3809
  RunDashboardViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
3471
3810
  RunDashboardDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
3472
3811
  Dashboard(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Dashboard_ | null>;
3812
+ MJ_DashboardUserStates_DashboardIDArray(dashboard_: Dashboard_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
3813
+ MJ_DashboardUserPreferences_DashboardIDArray(dashboard_: Dashboard_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
3473
3814
  CreateDashboard(input: CreateDashboardInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
3474
3815
  UpdateDashboard(input: UpdateDashboardInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
3475
3816
  DeleteDashboard(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
@@ -3566,6 +3907,7 @@ export declare class Report_ {
3566
3907
  OutputWorkflowID?: string;
3567
3908
  _mj__CreatedAt: Date;
3568
3909
  _mj__UpdatedAt: Date;
3910
+ Thumbnail?: string;
3569
3911
  Category?: string;
3570
3912
  User: string;
3571
3913
  Conversation?: string;
@@ -3594,6 +3936,7 @@ export declare class CreateReportInput {
3594
3936
  OutputFrequency: string | null;
3595
3937
  OutputTargetEmail: string | null;
3596
3938
  OutputWorkflowID: string | null;
3939
+ Thumbnail: string | null;
3597
3940
  }
3598
3941
  export declare class UpdateReportInput {
3599
3942
  ID: string;
@@ -3612,6 +3955,7 @@ export declare class UpdateReportInput {
3612
3955
  OutputFrequency?: string | null;
3613
3956
  OutputTargetEmail?: string | null;
3614
3957
  OutputWorkflowID?: string | null;
3958
+ Thumbnail?: string | null;
3615
3959
  OldValues___?: KeyValuePairInput[];
3616
3960
  }
3617
3961
  export declare class RunReportViewResult {
@@ -3929,6 +4273,7 @@ export declare class ConversationDetail_ {
3929
4273
  UserID?: string;
3930
4274
  ArtifactID?: string;
3931
4275
  ArtifactVersionID?: string;
4276
+ CompletionTime?: number;
3932
4277
  Conversation?: string;
3933
4278
  User?: string;
3934
4279
  Artifact?: string;
@@ -3948,6 +4293,7 @@ export declare class CreateConversationDetailInput {
3948
4293
  UserID: string | null;
3949
4294
  ArtifactID: string | null;
3950
4295
  ArtifactVersionID: string | null;
4296
+ CompletionTime: number | null;
3951
4297
  }
3952
4298
  export declare class UpdateConversationDetailInput {
3953
4299
  ID: string;
@@ -3964,6 +4310,7 @@ export declare class UpdateConversationDetailInput {
3964
4310
  UserID?: string | null;
3965
4311
  ArtifactID?: string | null;
3966
4312
  ArtifactVersionID?: string | null;
4313
+ CompletionTime?: number | null;
3967
4314
  OldValues___?: KeyValuePairInput[];
3968
4315
  }
3969
4316
  export declare class RunConversationDetailViewResult {
@@ -3998,6 +4345,7 @@ export declare class Conversation_ {
3998
4345
  DataContextID?: string;
3999
4346
  _mj__CreatedAt: Date;
4000
4347
  _mj__UpdatedAt: Date;
4348
+ Status: string;
4001
4349
  User: string;
4002
4350
  LinkedEntity?: string;
4003
4351
  DataContext?: string;
@@ -4015,6 +4363,7 @@ export declare class CreateConversationInput {
4015
4363
  LinkedEntityID: string | null;
4016
4364
  LinkedRecordID: string | null;
4017
4365
  DataContextID: string | null;
4366
+ Status?: string;
4018
4367
  }
4019
4368
  export declare class UpdateConversationInput {
4020
4369
  ID: string;
@@ -4027,6 +4376,7 @@ export declare class UpdateConversationInput {
4027
4376
  LinkedEntityID?: string | null;
4028
4377
  LinkedRecordID?: string | null;
4029
4378
  DataContextID?: string | null;
4379
+ Status?: string;
4030
4380
  OldValues___?: KeyValuePairInput[];
4031
4381
  }
4032
4382
  export declare class RunConversationViewResult {
@@ -7496,6 +7846,110 @@ export declare class AIAgentRequestResolver extends ResolverBase {
7496
7846
  UpdateAIAgentRequest(input: UpdateAIAgentRequestInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
7497
7847
  DeleteAIAgentRequest(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
7498
7848
  }
7849
+ export declare class AIModelVendor_ {
7850
+ ID: string;
7851
+ ModelID: string;
7852
+ VendorID: string;
7853
+ Priority: number;
7854
+ Status: string;
7855
+ DriverClass?: string;
7856
+ DriverImportPath?: string;
7857
+ APIName?: string;
7858
+ MaxInputTokens?: number;
7859
+ MaxOutputTokens?: number;
7860
+ SupportedResponseFormats: string;
7861
+ SupportsEffortLevel: boolean;
7862
+ SupportsStreaming: boolean;
7863
+ _mj__CreatedAt: Date;
7864
+ _mj__UpdatedAt: Date;
7865
+ Model: string;
7866
+ Vendor: string;
7867
+ }
7868
+ export declare class CreateAIModelVendorInput {
7869
+ ModelID?: string;
7870
+ VendorID?: string;
7871
+ Priority?: number;
7872
+ Status?: string;
7873
+ DriverClass: string | null;
7874
+ DriverImportPath: string | null;
7875
+ APIName: string | null;
7876
+ MaxInputTokens: number | null;
7877
+ MaxOutputTokens: number | null;
7878
+ SupportedResponseFormats?: string;
7879
+ SupportsEffortLevel?: boolean;
7880
+ SupportsStreaming?: boolean;
7881
+ }
7882
+ export declare class UpdateAIModelVendorInput {
7883
+ ID: string;
7884
+ ModelID?: string;
7885
+ VendorID?: string;
7886
+ Priority?: number;
7887
+ Status?: string;
7888
+ DriverClass?: string | null;
7889
+ DriverImportPath?: string | null;
7890
+ APIName?: string | null;
7891
+ MaxInputTokens?: number | null;
7892
+ MaxOutputTokens?: number | null;
7893
+ SupportedResponseFormats?: string;
7894
+ SupportsEffortLevel?: boolean;
7895
+ SupportsStreaming?: boolean;
7896
+ OldValues___?: KeyValuePairInput[];
7897
+ }
7898
+ export declare class RunAIModelVendorViewResult {
7899
+ Results: AIModelVendor_[];
7900
+ UserViewRunID?: string;
7901
+ RowCount: number;
7902
+ TotalRowCount: number;
7903
+ ExecutionTime: number;
7904
+ ErrorMessage?: string;
7905
+ Success: boolean;
7906
+ }
7907
+ export declare class AIModelVendorResolver extends ResolverBase {
7908
+ RunAIModelVendorViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
7909
+ RunAIModelVendorViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
7910
+ RunAIModelVendorDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
7911
+ AIModelVendor(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModelVendor_ | null>;
7912
+ CreateAIModelVendor(input: CreateAIModelVendorInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
7913
+ UpdateAIModelVendor(input: UpdateAIModelVendorInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
7914
+ DeleteAIModelVendor(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
7915
+ }
7916
+ export declare class AIVendorTypeDefinition_ {
7917
+ ID: string;
7918
+ Name: string;
7919
+ Description?: string;
7920
+ _mj__CreatedAt: Date;
7921
+ _mj__UpdatedAt: Date;
7922
+ MJ_AIVendorTypes_TypeIDArray: AIVendorType_[];
7923
+ }
7924
+ export declare class CreateAIVendorTypeDefinitionInput {
7925
+ Name?: string;
7926
+ Description: string | null;
7927
+ }
7928
+ export declare class UpdateAIVendorTypeDefinitionInput {
7929
+ ID: string;
7930
+ Name?: string;
7931
+ Description?: string | null;
7932
+ OldValues___?: KeyValuePairInput[];
7933
+ }
7934
+ export declare class RunAIVendorTypeDefinitionViewResult {
7935
+ Results: AIVendorTypeDefinition_[];
7936
+ UserViewRunID?: string;
7937
+ RowCount: number;
7938
+ TotalRowCount: number;
7939
+ ExecutionTime: number;
7940
+ ErrorMessage?: string;
7941
+ Success: boolean;
7942
+ }
7943
+ export declare class AIVendorTypeDefinitionResolver extends ResolverBase {
7944
+ RunAIVendorTypeDefinitionViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
7945
+ RunAIVendorTypeDefinitionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
7946
+ RunAIVendorTypeDefinitionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
7947
+ AIVendorTypeDefinition(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIVendorTypeDefinition_ | null>;
7948
+ MJ_AIVendorTypes_TypeIDArray(aivendortypedefinition_: AIVendorTypeDefinition_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
7949
+ CreateAIVendorTypeDefinition(input: CreateAIVendorTypeDefinitionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
7950
+ UpdateAIVendorTypeDefinition(input: UpdateAIVendorTypeDefinitionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
7951
+ DeleteAIVendorTypeDefinition(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
7952
+ }
7499
7953
  export declare class ReportUserState_ {
7500
7954
  ID: string;
7501
7955
  ReportID: string;
@@ -7573,6 +8027,46 @@ export declare class QueryEntityResolver extends ResolverBase {
7573
8027
  UpdateQueryEntity(input: UpdateQueryEntityInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
7574
8028
  DeleteQueryEntity(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
7575
8029
  }
8030
+ export declare class DashboardUserState_ {
8031
+ ID: string;
8032
+ DashboardID: string;
8033
+ UserID: string;
8034
+ UserState?: string;
8035
+ _mj__CreatedAt: Date;
8036
+ _mj__UpdatedAt: Date;
8037
+ Dashboard: string;
8038
+ User: string;
8039
+ }
8040
+ export declare class CreateDashboardUserStateInput {
8041
+ DashboardID?: string;
8042
+ UserID?: string;
8043
+ UserState: string | null;
8044
+ }
8045
+ export declare class UpdateDashboardUserStateInput {
8046
+ ID: string;
8047
+ DashboardID?: string;
8048
+ UserID?: string;
8049
+ UserState?: string | null;
8050
+ OldValues___?: KeyValuePairInput[];
8051
+ }
8052
+ export declare class RunDashboardUserStateViewResult {
8053
+ Results: DashboardUserState_[];
8054
+ UserViewRunID?: string;
8055
+ RowCount: number;
8056
+ TotalRowCount: number;
8057
+ ExecutionTime: number;
8058
+ ErrorMessage?: string;
8059
+ Success: boolean;
8060
+ }
8061
+ export declare class DashboardUserStateResolver extends ResolverBase {
8062
+ RunDashboardUserStateViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
8063
+ RunDashboardUserStateViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
8064
+ RunDashboardUserStateDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
8065
+ DashboardUserState(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DashboardUserState_ | null>;
8066
+ CreateDashboardUserState(input: CreateDashboardUserStateInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8067
+ UpdateDashboardUserState(input: UpdateDashboardUserStateInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8068
+ DeleteDashboardUserState(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8069
+ }
7576
8070
  export declare class ArtifactType_ {
7577
8071
  ID: string;
7578
8072
  Name: string;
@@ -7616,6 +8110,49 @@ export declare class ArtifactTypeResolver extends ResolverBase {
7616
8110
  UpdateArtifactType(input: UpdateArtifactTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
7617
8111
  DeleteArtifactType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
7618
8112
  }
8113
+ export declare class AIVendorType_ {
8114
+ ID: string;
8115
+ VendorID: string;
8116
+ TypeID: string;
8117
+ Rank: number;
8118
+ Status: string;
8119
+ _mj__CreatedAt: Date;
8120
+ _mj__UpdatedAt: Date;
8121
+ Vendor: string;
8122
+ Type: string;
8123
+ }
8124
+ export declare class CreateAIVendorTypeInput {
8125
+ VendorID?: string;
8126
+ TypeID?: string;
8127
+ Rank?: number;
8128
+ Status?: string;
8129
+ }
8130
+ export declare class UpdateAIVendorTypeInput {
8131
+ ID: string;
8132
+ VendorID?: string;
8133
+ TypeID?: string;
8134
+ Rank?: number;
8135
+ Status?: string;
8136
+ OldValues___?: KeyValuePairInput[];
8137
+ }
8138
+ export declare class RunAIVendorTypeViewResult {
8139
+ Results: AIVendorType_[];
8140
+ UserViewRunID?: string;
8141
+ RowCount: number;
8142
+ TotalRowCount: number;
8143
+ ExecutionTime: number;
8144
+ ErrorMessage?: string;
8145
+ Success: boolean;
8146
+ }
8147
+ export declare class AIVendorTypeResolver extends ResolverBase {
8148
+ RunAIVendorTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
8149
+ RunAIVendorTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
8150
+ RunAIVendorTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
8151
+ AIVendorType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIVendorType_ | null>;
8152
+ CreateAIVendorType(input: CreateAIVendorTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8153
+ UpdateAIVendorType(input: UpdateAIVendorTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8154
+ DeleteAIVendorType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8155
+ }
7619
8156
  export declare class ConversationArtifact_ {
7620
8157
  ID: string;
7621
8158
  Name: string;
@@ -7671,6 +8208,109 @@ export declare class ConversationArtifactResolver extends ResolverBase {
7671
8208
  UpdateConversationArtifact(input: UpdateConversationArtifactInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
7672
8209
  DeleteConversationArtifact(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
7673
8210
  }
8211
+ export declare class AIAgentPrompt_ {
8212
+ ID: string;
8213
+ AgentID: string;
8214
+ PromptID: string;
8215
+ Purpose?: string;
8216
+ ExecutionOrder: number;
8217
+ ConfigurationID?: string;
8218
+ Status: string;
8219
+ ContextBehavior: string;
8220
+ ContextMessageCount?: number;
8221
+ _mj__CreatedAt: Date;
8222
+ _mj__UpdatedAt: Date;
8223
+ Agent?: string;
8224
+ Prompt: string;
8225
+ Configuration?: string;
8226
+ }
8227
+ export declare class CreateAIAgentPromptInput {
8228
+ AgentID?: string;
8229
+ PromptID?: string;
8230
+ Purpose: string | null;
8231
+ ExecutionOrder?: number;
8232
+ ConfigurationID: string | null;
8233
+ Status?: string;
8234
+ ContextBehavior?: string;
8235
+ ContextMessageCount: number | null;
8236
+ }
8237
+ export declare class UpdateAIAgentPromptInput {
8238
+ ID: string;
8239
+ AgentID?: string;
8240
+ PromptID?: string;
8241
+ Purpose?: string | null;
8242
+ ExecutionOrder?: number;
8243
+ ConfigurationID?: string | null;
8244
+ Status?: string;
8245
+ ContextBehavior?: string;
8246
+ ContextMessageCount?: number | null;
8247
+ OldValues___?: KeyValuePairInput[];
8248
+ }
8249
+ export declare class RunAIAgentPromptViewResult {
8250
+ Results: AIAgentPrompt_[];
8251
+ UserViewRunID?: string;
8252
+ RowCount: number;
8253
+ TotalRowCount: number;
8254
+ ExecutionTime: number;
8255
+ ErrorMessage?: string;
8256
+ Success: boolean;
8257
+ }
8258
+ export declare class AIAgentPromptResolver extends ResolverBase {
8259
+ RunAIAgentPromptViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
8260
+ RunAIAgentPromptViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
8261
+ RunAIAgentPromptDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
8262
+ AIAgentPrompt(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentPrompt_ | null>;
8263
+ CreateAIAgentPrompt(input: CreateAIAgentPromptInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8264
+ UpdateAIAgentPrompt(input: UpdateAIAgentPromptInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8265
+ DeleteAIAgentPrompt(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8266
+ }
8267
+ export declare class DashboardUserPreference_ {
8268
+ ID: string;
8269
+ UserID?: string;
8270
+ DashboardID: string;
8271
+ Scope: string;
8272
+ ApplicationID?: string;
8273
+ DisplayOrder: number;
8274
+ _mj__CreatedAt: Date;
8275
+ _mj__UpdatedAt: Date;
8276
+ User?: string;
8277
+ Dashboard: string;
8278
+ Application?: string;
8279
+ }
8280
+ export declare class CreateDashboardUserPreferenceInput {
8281
+ UserID: string | null;
8282
+ DashboardID?: string;
8283
+ Scope?: string;
8284
+ ApplicationID: string | null;
8285
+ DisplayOrder?: number;
8286
+ }
8287
+ export declare class UpdateDashboardUserPreferenceInput {
8288
+ ID: string;
8289
+ UserID?: string | null;
8290
+ DashboardID?: string;
8291
+ Scope?: string;
8292
+ ApplicationID?: string | null;
8293
+ DisplayOrder?: number;
8294
+ OldValues___?: KeyValuePairInput[];
8295
+ }
8296
+ export declare class RunDashboardUserPreferenceViewResult {
8297
+ Results: DashboardUserPreference_[];
8298
+ UserViewRunID?: string;
8299
+ RowCount: number;
8300
+ TotalRowCount: number;
8301
+ ExecutionTime: number;
8302
+ ErrorMessage?: string;
8303
+ Success: boolean;
8304
+ }
8305
+ export declare class DashboardUserPreferenceResolver extends ResolverBase {
8306
+ RunDashboardUserPreferenceViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
8307
+ RunDashboardUserPreferenceViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
8308
+ RunDashboardUserPreferenceDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
8309
+ DashboardUserPreference(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DashboardUserPreference_ | null>;
8310
+ CreateDashboardUserPreference(input: CreateDashboardUserPreferenceInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8311
+ UpdateDashboardUserPreference(input: UpdateDashboardUserPreferenceInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8312
+ DeleteDashboardUserPreference(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8313
+ }
7674
8314
  export declare class ContentProcessRun_ {
7675
8315
  ID: string;
7676
8316
  SourceID: string;
@@ -8224,6 +8864,90 @@ export declare class GeneratedCodeResolver extends ResolverBase {
8224
8864
  UpdateGeneratedCode(input: UpdateGeneratedCodeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8225
8865
  DeleteGeneratedCode(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8226
8866
  }
8867
+ export declare class AIPromptRun_ {
8868
+ ID: string;
8869
+ PromptID: string;
8870
+ ModelID: string;
8871
+ VendorID: string;
8872
+ AgentID?: string;
8873
+ ConfigurationID?: string;
8874
+ RunAt: Date;
8875
+ CompletedAt?: Date;
8876
+ ExecutionTimeMS?: number;
8877
+ Messages?: string;
8878
+ Result?: string;
8879
+ TokensUsed?: number;
8880
+ TokensPrompt?: number;
8881
+ TokensCompletion?: number;
8882
+ TotalCost?: number;
8883
+ Success: boolean;
8884
+ ErrorMessage?: string;
8885
+ _mj__CreatedAt: Date;
8886
+ _mj__UpdatedAt: Date;
8887
+ Prompt: string;
8888
+ Model: string;
8889
+ Vendor: string;
8890
+ Agent?: string;
8891
+ Configuration?: string;
8892
+ AIResultCache_PromptRunIDArray: AIResultCache_[];
8893
+ }
8894
+ export declare class CreateAIPromptRunInput {
8895
+ PromptID?: string;
8896
+ ModelID?: string;
8897
+ VendorID?: string;
8898
+ AgentID: string | null;
8899
+ ConfigurationID: string | null;
8900
+ RunAt?: Date;
8901
+ CompletedAt: Date | null;
8902
+ ExecutionTimeMS: number | null;
8903
+ Messages: string | null;
8904
+ Result: string | null;
8905
+ TokensUsed: number | null;
8906
+ TokensPrompt: number | null;
8907
+ TokensCompletion: number | null;
8908
+ TotalCost: number | null;
8909
+ Success?: boolean;
8910
+ ErrorMessage: string | null;
8911
+ }
8912
+ export declare class UpdateAIPromptRunInput {
8913
+ ID: string;
8914
+ PromptID?: string;
8915
+ ModelID?: string;
8916
+ VendorID?: string;
8917
+ AgentID?: string | null;
8918
+ ConfigurationID?: string | null;
8919
+ RunAt?: Date;
8920
+ CompletedAt?: Date | null;
8921
+ ExecutionTimeMS?: number | null;
8922
+ Messages?: string | null;
8923
+ Result?: string | null;
8924
+ TokensUsed?: number | null;
8925
+ TokensPrompt?: number | null;
8926
+ TokensCompletion?: number | null;
8927
+ TotalCost?: number | null;
8928
+ Success?: boolean;
8929
+ ErrorMessage?: string | null;
8930
+ OldValues___?: KeyValuePairInput[];
8931
+ }
8932
+ export declare class RunAIPromptRunViewResult {
8933
+ Results: AIPromptRun_[];
8934
+ UserViewRunID?: string;
8935
+ RowCount: number;
8936
+ TotalRowCount: number;
8937
+ ExecutionTime: number;
8938
+ ErrorMessage?: string;
8939
+ Success: boolean;
8940
+ }
8941
+ export declare class AIPromptRunResolver extends ResolverBase {
8942
+ RunAIPromptRunViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
8943
+ RunAIPromptRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
8944
+ RunAIPromptRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
8945
+ AIPromptRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIPromptRun_ | null>;
8946
+ AIResultCache_PromptRunIDArray(aipromptrun_: AIPromptRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
8947
+ CreateAIPromptRun(input: CreateAIPromptRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8948
+ UpdateAIPromptRun(input: UpdateAIPromptRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8949
+ DeleteAIPromptRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8950
+ }
8227
8951
  export declare class ConversationArtifactPermission_ {
8228
8952
  ID: string;
8229
8953
  ConversationArtifactID: string;
@@ -8356,4 +9080,49 @@ export declare class ReportVersionResolver extends ResolverBase {
8356
9080
  UpdateReportVersion(input: UpdateReportVersionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8357
9081
  DeleteReportVersion(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
8358
9082
  }
9083
+ export declare class AIConfigurationParam_ {
9084
+ ID: string;
9085
+ ConfigurationID: string;
9086
+ Name: string;
9087
+ Type: string;
9088
+ Value: string;
9089
+ Description?: string;
9090
+ _mj__CreatedAt: Date;
9091
+ _mj__UpdatedAt: Date;
9092
+ Configuration: string;
9093
+ }
9094
+ export declare class CreateAIConfigurationParamInput {
9095
+ ConfigurationID?: string;
9096
+ Name?: string;
9097
+ Type?: string;
9098
+ Value?: string;
9099
+ Description: string | null;
9100
+ }
9101
+ export declare class UpdateAIConfigurationParamInput {
9102
+ ID: string;
9103
+ ConfigurationID?: string;
9104
+ Name?: string;
9105
+ Type?: string;
9106
+ Value?: string;
9107
+ Description?: string | null;
9108
+ OldValues___?: KeyValuePairInput[];
9109
+ }
9110
+ export declare class RunAIConfigurationParamViewResult {
9111
+ Results: AIConfigurationParam_[];
9112
+ UserViewRunID?: string;
9113
+ RowCount: number;
9114
+ TotalRowCount: number;
9115
+ ExecutionTime: number;
9116
+ ErrorMessage?: string;
9117
+ Success: boolean;
9118
+ }
9119
+ export declare class AIConfigurationParamResolver extends ResolverBase {
9120
+ RunAIConfigurationParamViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
9121
+ RunAIConfigurationParamViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
9122
+ RunAIConfigurationParamDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
9123
+ AIConfigurationParam(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIConfigurationParam_ | null>;
9124
+ CreateAIConfigurationParam(input: CreateAIConfigurationParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9125
+ UpdateAIConfigurationParam(input: UpdateAIConfigurationParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9126
+ DeleteAIConfigurationParam(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9127
+ }
8359
9128
  //# sourceMappingURL=generated.d.ts.map