@memberjunction/server 2.97.0 → 2.99.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.
@@ -689,6 +689,7 @@ export declare class AIAgent_ {
689
689
  StartingPayloadValidation?: string;
690
690
  StartingPayloadValidationMode: string;
691
691
  DefaultPromptEffortLevel?: number;
692
+ ChatHandlingOption?: string;
692
693
  Parent?: string;
693
694
  ContextCompressionPrompt?: string;
694
695
  Type?: string;
@@ -742,6 +743,7 @@ export declare class CreateAIAgentInput {
742
743
  StartingPayloadValidation: string | null;
743
744
  StartingPayloadValidationMode?: string;
744
745
  DefaultPromptEffortLevel: number | null;
746
+ ChatHandlingOption: string | null;
745
747
  }
746
748
  export declare class UpdateAIAgentInput {
747
749
  ID: string;
@@ -778,6 +780,7 @@ export declare class UpdateAIAgentInput {
778
780
  StartingPayloadValidation?: string | null;
779
781
  StartingPayloadValidationMode?: string;
780
782
  DefaultPromptEffortLevel?: number | null;
783
+ ChatHandlingOption?: string | null;
781
784
  OldValues___?: KeyValuePairInput[];
782
785
  }
783
786
  export declare class RunAIAgentViewResult {
@@ -9665,6 +9668,7 @@ export declare class ComponentLibrary_ {
9665
9668
  Status: string;
9666
9669
  LintRules?: string;
9667
9670
  Dependencies?: string;
9671
+ UsageType: string;
9668
9672
  MJ_ComponentLibraryLinks_LibraryIDArray: ComponentLibraryLink_[];
9669
9673
  }
9670
9674
  export declare class CreateComponentLibraryInput {
@@ -9680,6 +9684,7 @@ export declare class CreateComponentLibraryInput {
9680
9684
  Status?: string;
9681
9685
  LintRules: string | null;
9682
9686
  Dependencies: string | null;
9687
+ UsageType?: string;
9683
9688
  }
9684
9689
  export declare class UpdateComponentLibraryInput {
9685
9690
  ID: string;
@@ -9694,6 +9699,7 @@ export declare class UpdateComponentLibraryInput {
9694
9699
  Status?: string;
9695
9700
  LintRules?: string | null;
9696
9701
  Dependencies?: string | null;
9702
+ UsageType?: string;
9697
9703
  OldValues___?: KeyValuePairInput[];
9698
9704
  }
9699
9705
  export declare class RunComponentLibraryViewResult {