@memberjunction/server 2.60.0 → 2.62.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.
@@ -992,6 +992,11 @@ export declare class AIPrompt_ {
992
992
  StopSequences?: string;
993
993
  IncludeLogProbs?: boolean;
994
994
  TopLogProbs?: number;
995
+ FailoverMaxAttempts?: number;
996
+ FailoverDelaySeconds?: number;
997
+ FailoverStrategy: string;
998
+ FailoverModelStrategy: string;
999
+ FailoverErrorScope: string;
995
1000
  Template: string;
996
1001
  Category?: string;
997
1002
  Type: string;
@@ -1051,6 +1056,11 @@ export declare class CreateAIPromptInput {
1051
1056
  StopSequences: string | null;
1052
1057
  IncludeLogProbs?: boolean | null;
1053
1058
  TopLogProbs: number | null;
1059
+ FailoverMaxAttempts?: number | null;
1060
+ FailoverDelaySeconds?: number | null;
1061
+ FailoverStrategy?: string;
1062
+ FailoverModelStrategy?: string;
1063
+ FailoverErrorScope?: string;
1054
1064
  }
1055
1065
  export declare class UpdateAIPromptInput {
1056
1066
  ID: string;
@@ -1096,6 +1106,11 @@ export declare class UpdateAIPromptInput {
1096
1106
  StopSequences?: string | null;
1097
1107
  IncludeLogProbs?: boolean | null;
1098
1108
  TopLogProbs?: number | null;
1109
+ FailoverMaxAttempts?: number | null;
1110
+ FailoverDelaySeconds?: number | null;
1111
+ FailoverStrategy?: string;
1112
+ FailoverModelStrategy?: string;
1113
+ FailoverErrorScope?: string;
1099
1114
  OldValues___?: KeyValuePairInput[];
1100
1115
  }
1101
1116
  export declare class RunAIPromptViewResult {
@@ -1451,6 +1466,7 @@ export declare class EmployeeCompanyIntegration_ {
1451
1466
  IsActive: boolean;
1452
1467
  _mj__CreatedAt: Date;
1453
1468
  _mj__UpdatedAt: Date;
1469
+ CompanyIntegration: string;
1454
1470
  }
1455
1471
  export declare class CreateEmployeeCompanyIntegrationInput {
1456
1472
  ID?: string;
@@ -1776,6 +1792,7 @@ export declare class CompanyIntegration_ {
1776
1792
  CustomAttribute1?: string;
1777
1793
  _mj__CreatedAt: Date;
1778
1794
  _mj__UpdatedAt: Date;
1795
+ Name: string;
1779
1796
  Company: string;
1780
1797
  Integration: string;
1781
1798
  DriverClassName?: string;
@@ -1802,6 +1819,7 @@ export declare class CreateCompanyIntegrationInput {
1802
1819
  ClientID: string | null;
1803
1820
  ClientSecret: string | null;
1804
1821
  CustomAttribute1: string | null;
1822
+ Name?: string;
1805
1823
  }
1806
1824
  export declare class UpdateCompanyIntegrationInput {
1807
1825
  ID: string;
@@ -1817,6 +1835,7 @@ export declare class UpdateCompanyIntegrationInput {
1817
1835
  ClientID?: string | null;
1818
1836
  ClientSecret?: string | null;
1819
1837
  CustomAttribute1?: string | null;
1838
+ Name?: string;
1820
1839
  OldValues___?: KeyValuePairInput[];
1821
1840
  }
1822
1841
  export declare class RunCompanyIntegrationViewResult {
@@ -3153,6 +3172,7 @@ export declare class List_ {
3153
3172
  Entity: string;
3154
3173
  User: string;
3155
3174
  Category?: string;
3175
+ CompanyIntegration?: string;
3156
3176
  ListDetails_ListIDArray: ListDetail_[];
3157
3177
  DuplicateRuns_SourceListIDArray: DuplicateRun_[];
3158
3178
  }
@@ -5279,6 +5299,7 @@ export declare class CompanyIntegrationRecordMap_ {
5279
5299
  EntityRecordID: string;
5280
5300
  _mj__CreatedAt: Date;
5281
5301
  _mj__UpdatedAt: Date;
5302
+ CompanyIntegration: string;
5282
5303
  Entity: string;
5283
5304
  }
5284
5305
  export declare class CreateCompanyIntegrationRecordMapInput {
@@ -9832,11 +9853,18 @@ export declare class AIPromptRun_ {
9832
9853
  TotalRetryDurationMS?: number;
9833
9854
  ValidationAttempts?: string;
9834
9855
  ValidationSummary?: string;
9856
+ FailoverAttempts?: number;
9857
+ FailoverErrors?: string;
9858
+ FailoverDurations?: string;
9859
+ OriginalRequestStartTime?: Date;
9860
+ TotalFailoverDuration?: number;
9861
+ OriginalModelID?: string;
9835
9862
  Prompt: string;
9836
9863
  Model: string;
9837
9864
  Vendor: string;
9838
9865
  Agent?: string;
9839
9866
  Configuration?: string;
9867
+ OriginalModel?: string;
9840
9868
  MJ_AIPromptRuns_ParentIDArray: AIPromptRun_[];
9841
9869
  AIResultCache_PromptRunIDArray: AIResultCache_[];
9842
9870
  }
@@ -9893,6 +9921,12 @@ export declare class CreateAIPromptRunInput {
9893
9921
  TotalRetryDurationMS: number | null;
9894
9922
  ValidationAttempts: string | null;
9895
9923
  ValidationSummary: string | null;
9924
+ FailoverAttempts?: number | null;
9925
+ FailoverErrors: string | null;
9926
+ FailoverDurations: string | null;
9927
+ OriginalRequestStartTime: Date | null;
9928
+ TotalFailoverDuration: number | null;
9929
+ OriginalModelID: string | null;
9896
9930
  }
9897
9931
  export declare class UpdateAIPromptRunInput {
9898
9932
  ID: string;
@@ -9947,6 +9981,12 @@ export declare class UpdateAIPromptRunInput {
9947
9981
  TotalRetryDurationMS?: number | null;
9948
9982
  ValidationAttempts?: string | null;
9949
9983
  ValidationSummary?: string | null;
9984
+ FailoverAttempts?: number | null;
9985
+ FailoverErrors?: string | null;
9986
+ FailoverDurations?: string | null;
9987
+ OriginalRequestStartTime?: Date | null;
9988
+ TotalFailoverDuration?: number | null;
9989
+ OriginalModelID?: string | null;
9950
9990
  OldValues___?: KeyValuePairInput[];
9951
9991
  }
9952
9992
  export declare class RunAIPromptRunViewResult {