@memberjunction/server 2.55.0 → 2.56.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/generated/generated.d.ts +48 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +248 -0
- package/dist/generated/generated.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +26 -26
- package/src/generated/generated.ts +152 -0
- package/src/index.ts +3 -0
|
@@ -524,6 +524,7 @@ export declare class AIAgent_ {
|
|
|
524
524
|
TypeID?: string;
|
|
525
525
|
Status?: string;
|
|
526
526
|
DriverClass?: string;
|
|
527
|
+
IconClass?: string;
|
|
527
528
|
Parent?: string;
|
|
528
529
|
ContextCompressionPrompt?: string;
|
|
529
530
|
Type?: string;
|
|
@@ -554,6 +555,7 @@ export declare class CreateAIAgentInput {
|
|
|
554
555
|
TypeID: string | null;
|
|
555
556
|
Status: string | null;
|
|
556
557
|
DriverClass: string | null;
|
|
558
|
+
IconClass: string | null;
|
|
557
559
|
}
|
|
558
560
|
export declare class UpdateAIAgentInput {
|
|
559
561
|
ID: string;
|
|
@@ -571,6 +573,7 @@ export declare class UpdateAIAgentInput {
|
|
|
571
573
|
TypeID?: string | null;
|
|
572
574
|
Status?: string | null;
|
|
573
575
|
DriverClass?: string | null;
|
|
576
|
+
IconClass?: string | null;
|
|
574
577
|
OldValues___?: KeyValuePairInput[];
|
|
575
578
|
}
|
|
576
579
|
export declare class RunAIAgentViewResult {
|
|
@@ -6589,6 +6592,7 @@ export declare class Action_ {
|
|
|
6589
6592
|
_mj__UpdatedAt: Date;
|
|
6590
6593
|
DriverClass?: string;
|
|
6591
6594
|
ParentID?: string;
|
|
6595
|
+
IconClass?: string;
|
|
6592
6596
|
Category?: string;
|
|
6593
6597
|
CodeApprovedByUser?: string;
|
|
6594
6598
|
Parent?: string;
|
|
@@ -6623,6 +6627,7 @@ export declare class CreateActionInput {
|
|
|
6623
6627
|
Status?: string;
|
|
6624
6628
|
DriverClass: string | null;
|
|
6625
6629
|
ParentID: string | null;
|
|
6630
|
+
IconClass: string | null;
|
|
6626
6631
|
}
|
|
6627
6632
|
export declare class UpdateActionInput {
|
|
6628
6633
|
ID: string;
|
|
@@ -6644,6 +6649,7 @@ export declare class UpdateActionInput {
|
|
|
6644
6649
|
Status?: string;
|
|
6645
6650
|
DriverClass?: string | null;
|
|
6646
6651
|
ParentID?: string | null;
|
|
6652
|
+
IconClass?: string | null;
|
|
6647
6653
|
OldValues___?: KeyValuePairInput[];
|
|
6648
6654
|
}
|
|
6649
6655
|
export declare class RunActionViewResult {
|
|
@@ -9395,6 +9401,20 @@ export declare class AIPromptRun_ {
|
|
|
9395
9401
|
LogProbs?: boolean;
|
|
9396
9402
|
TopLogProbs?: number;
|
|
9397
9403
|
DescendantCost?: number;
|
|
9404
|
+
ValidationAttemptCount?: number;
|
|
9405
|
+
SuccessfulValidationCount?: number;
|
|
9406
|
+
FinalValidationPassed?: boolean;
|
|
9407
|
+
ValidationBehavior?: string;
|
|
9408
|
+
RetryStrategy?: string;
|
|
9409
|
+
MaxRetriesConfigured?: number;
|
|
9410
|
+
FinalValidationError?: string;
|
|
9411
|
+
ValidationErrorCount?: number;
|
|
9412
|
+
CommonValidationError?: string;
|
|
9413
|
+
FirstAttemptAt?: Date;
|
|
9414
|
+
LastAttemptAt?: Date;
|
|
9415
|
+
TotalRetryDurationMS?: number;
|
|
9416
|
+
ValidationAttempts?: string;
|
|
9417
|
+
ValidationSummary?: string;
|
|
9398
9418
|
Prompt: string;
|
|
9399
9419
|
Model: string;
|
|
9400
9420
|
Vendor: string;
|
|
@@ -9442,6 +9462,20 @@ export declare class CreateAIPromptRunInput {
|
|
|
9442
9462
|
LogProbs: boolean | null;
|
|
9443
9463
|
TopLogProbs: number | null;
|
|
9444
9464
|
DescendantCost: number | null;
|
|
9465
|
+
ValidationAttemptCount: number | null;
|
|
9466
|
+
SuccessfulValidationCount: number | null;
|
|
9467
|
+
FinalValidationPassed: boolean | null;
|
|
9468
|
+
ValidationBehavior: string | null;
|
|
9469
|
+
RetryStrategy: string | null;
|
|
9470
|
+
MaxRetriesConfigured: number | null;
|
|
9471
|
+
FinalValidationError: string | null;
|
|
9472
|
+
ValidationErrorCount: number | null;
|
|
9473
|
+
CommonValidationError: string | null;
|
|
9474
|
+
FirstAttemptAt: Date | null;
|
|
9475
|
+
LastAttemptAt: Date | null;
|
|
9476
|
+
TotalRetryDurationMS: number | null;
|
|
9477
|
+
ValidationAttempts: string | null;
|
|
9478
|
+
ValidationSummary: string | null;
|
|
9445
9479
|
}
|
|
9446
9480
|
export declare class UpdateAIPromptRunInput {
|
|
9447
9481
|
ID: string;
|
|
@@ -9482,6 +9516,20 @@ export declare class UpdateAIPromptRunInput {
|
|
|
9482
9516
|
LogProbs?: boolean | null;
|
|
9483
9517
|
TopLogProbs?: number | null;
|
|
9484
9518
|
DescendantCost?: number | null;
|
|
9519
|
+
ValidationAttemptCount?: number | null;
|
|
9520
|
+
SuccessfulValidationCount?: number | null;
|
|
9521
|
+
FinalValidationPassed?: boolean | null;
|
|
9522
|
+
ValidationBehavior?: string | null;
|
|
9523
|
+
RetryStrategy?: string | null;
|
|
9524
|
+
MaxRetriesConfigured?: number | null;
|
|
9525
|
+
FinalValidationError?: string | null;
|
|
9526
|
+
ValidationErrorCount?: number | null;
|
|
9527
|
+
CommonValidationError?: string | null;
|
|
9528
|
+
FirstAttemptAt?: Date | null;
|
|
9529
|
+
LastAttemptAt?: Date | null;
|
|
9530
|
+
TotalRetryDurationMS?: number | null;
|
|
9531
|
+
ValidationAttempts?: string | null;
|
|
9532
|
+
ValidationSummary?: string | null;
|
|
9485
9533
|
OldValues___?: KeyValuePairInput[];
|
|
9486
9534
|
}
|
|
9487
9535
|
export declare class RunAIPromptRunViewResult {
|