@memberjunction/server 2.64.0 → 2.66.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 +6 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +32 -0
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/ResolverBase.d.ts +1 -1
- package/dist/generic/ResolverBase.d.ts.map +1 -1
- package/dist/generic/ResolverBase.js +5 -4
- package/dist/generic/ResolverBase.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -2
- package/dist/index.js.map +1 -1
- package/package.json +34 -34
- package/src/generated/generated.ts +20 -0
- package/src/generic/ResolverBase.ts +9 -4
- package/src/index.ts +0 -3
|
@@ -552,6 +552,8 @@ export declare class AIAgent_ {
|
|
|
552
552
|
ModelSelectionMode: string;
|
|
553
553
|
PayloadDownstreamPaths: string;
|
|
554
554
|
PayloadUpstreamPaths: string;
|
|
555
|
+
PayloadSelfReadPaths?: string;
|
|
556
|
+
PayloadSelfWritePaths?: string;
|
|
555
557
|
Parent?: string;
|
|
556
558
|
ContextCompressionPrompt?: string;
|
|
557
559
|
Type?: string;
|
|
@@ -586,6 +588,8 @@ export declare class CreateAIAgentInput {
|
|
|
586
588
|
ModelSelectionMode?: string;
|
|
587
589
|
PayloadDownstreamPaths?: string;
|
|
588
590
|
PayloadUpstreamPaths?: string;
|
|
591
|
+
PayloadSelfReadPaths: string | null;
|
|
592
|
+
PayloadSelfWritePaths: string | null;
|
|
589
593
|
}
|
|
590
594
|
export declare class UpdateAIAgentInput {
|
|
591
595
|
ID: string;
|
|
@@ -607,6 +611,8 @@ export declare class UpdateAIAgentInput {
|
|
|
607
611
|
ModelSelectionMode?: string;
|
|
608
612
|
PayloadDownstreamPaths?: string;
|
|
609
613
|
PayloadUpstreamPaths?: string;
|
|
614
|
+
PayloadSelfReadPaths?: string | null;
|
|
615
|
+
PayloadSelfWritePaths?: string | null;
|
|
610
616
|
OldValues___?: KeyValuePairInput[];
|
|
611
617
|
}
|
|
612
618
|
export declare class RunAIAgentViewResult {
|