@memberjunction/core-entities 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.
@@ -687,6 +687,7 @@ export declare const AIAgentSchema: z.ZodObject<{
687
687
  StartingPayloadValidation: z.ZodNullable<z.ZodString>;
688
688
  StartingPayloadValidationMode: z.ZodUnion<[z.ZodLiteral<"Fail">, z.ZodLiteral<"Warn">]>;
689
689
  DefaultPromptEffortLevel: z.ZodNullable<z.ZodNumber>;
690
+ ChatHandlingOption: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Success">, z.ZodLiteral<"Failed">, z.ZodLiteral<"Retry">]>>;
690
691
  Parent: z.ZodNullable<z.ZodString>;
691
692
  ContextCompressionPrompt: z.ZodNullable<z.ZodString>;
692
693
  Type: z.ZodNullable<z.ZodString>;
@@ -729,6 +730,7 @@ export declare const AIAgentSchema: z.ZodObject<{
729
730
  StartingPayloadValidation?: string;
730
731
  StartingPayloadValidationMode?: "Fail" | "Warn";
731
732
  DefaultPromptEffortLevel?: number;
733
+ ChatHandlingOption?: "Failed" | "Retry" | "Success";
732
734
  ContextCompressionPrompt?: string;
733
735
  }, {
734
736
  ID?: string;
@@ -769,6 +771,7 @@ export declare const AIAgentSchema: z.ZodObject<{
769
771
  StartingPayloadValidation?: string;
770
772
  StartingPayloadValidationMode?: "Fail" | "Warn";
771
773
  DefaultPromptEffortLevel?: number;
774
+ ChatHandlingOption?: "Failed" | "Retry" | "Success";
772
775
  ContextCompressionPrompt?: string;
773
776
  }>;
774
777
  export type AIAgentEntityType = z.infer<typeof AIAgentSchema>;
@@ -4863,10 +4866,10 @@ export declare const AIAgentRunSchema: z.ZodObject<{
4863
4866
  User?: string;
4864
4867
  AgentID?: string;
4865
4868
  Agent?: string;
4869
+ Success?: boolean;
4866
4870
  EffortLevel?: number;
4867
4871
  ConfigurationID?: string;
4868
4872
  Configuration?: string;
4869
- Success?: boolean;
4870
4873
  ErrorMessage?: string;
4871
4874
  LastRunID?: string;
4872
4875
  ConversationID?: string;
@@ -4909,10 +4912,10 @@ export declare const AIAgentRunSchema: z.ZodObject<{
4909
4912
  User?: string;
4910
4913
  AgentID?: string;
4911
4914
  Agent?: string;
4915
+ Success?: boolean;
4912
4916
  EffortLevel?: number;
4913
4917
  ConfigurationID?: string;
4914
4918
  Configuration?: string;
4915
- Success?: boolean;
4916
4919
  ErrorMessage?: string;
4917
4920
  LastRunID?: string;
4918
4921
  ConversationID?: string;
@@ -5540,6 +5543,7 @@ export declare const AIPromptRunSchema: z.ZodObject<{
5540
5543
  ModelID?: string;
5541
5544
  Model?: string;
5542
5545
  ExecutionOrder?: number;
5546
+ Success?: boolean;
5543
5547
  Vendor?: string;
5544
5548
  ResponseFormat?: string;
5545
5549
  SelectionStrategy?: "Default" | "Specific" | "ByPower";
@@ -5559,7 +5563,6 @@ export declare const AIPromptRunSchema: z.ZodObject<{
5559
5563
  VendorID?: string;
5560
5564
  ConfigurationID?: string;
5561
5565
  Configuration?: string;
5562
- Success?: boolean;
5563
5566
  ErrorMessage?: string;
5564
5567
  Prompt?: string;
5565
5568
  CompletionTime?: number;
@@ -5632,6 +5635,7 @@ export declare const AIPromptRunSchema: z.ZodObject<{
5632
5635
  ModelID?: string;
5633
5636
  Model?: string;
5634
5637
  ExecutionOrder?: number;
5638
+ Success?: boolean;
5635
5639
  Vendor?: string;
5636
5640
  ResponseFormat?: string;
5637
5641
  SelectionStrategy?: "Default" | "Specific" | "ByPower";
@@ -5651,7 +5655,6 @@ export declare const AIPromptRunSchema: z.ZodObject<{
5651
5655
  VendorID?: string;
5652
5656
  ConfigurationID?: string;
5653
5657
  Configuration?: string;
5654
- Success?: boolean;
5655
5658
  ErrorMessage?: string;
5656
5659
  Prompt?: string;
5657
5660
  CompletionTime?: number;
@@ -5871,6 +5874,7 @@ export declare const ComponentLibrarySchema: z.ZodObject<{
5871
5874
  Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Deprecated">, z.ZodLiteral<"Disabled">]>;
5872
5875
  LintRules: z.ZodNullable<z.ZodString>;
5873
5876
  Dependencies: z.ZodNullable<z.ZodString>;
5877
+ UsageType: z.ZodUnion<[z.ZodLiteral<"Direct">, z.ZodLiteral<"Dependency">, z.ZodLiteral<"Both">]>;
5874
5878
  }, "strip", z.ZodTypeAny, {
5875
5879
  ID?: string;
5876
5880
  __mj_CreatedAt?: Date;
@@ -5886,6 +5890,7 @@ export declare const ComponentLibrarySchema: z.ZodObject<{
5886
5890
  CDNCssUrl?: string;
5887
5891
  LintRules?: string;
5888
5892
  Dependencies?: string;
5893
+ UsageType?: "Both" | "Direct" | "Dependency";
5889
5894
  }, {
5890
5895
  ID?: string;
5891
5896
  __mj_CreatedAt?: Date;
@@ -5901,6 +5906,7 @@ export declare const ComponentLibrarySchema: z.ZodObject<{
5901
5906
  CDNCssUrl?: string;
5902
5907
  LintRules?: string;
5903
5908
  Dependencies?: string;
5909
+ UsageType?: "Both" | "Direct" | "Dependency";
5904
5910
  }>;
5905
5911
  export type ComponentLibraryEntityType = z.infer<typeof ComponentLibrarySchema>;
5906
5912
  /**
@@ -10912,6 +10918,19 @@ if this limit is exceeded.
10912
10918
  get DefaultPromptEffortLevel(): number | null;
10913
10919
  set DefaultPromptEffortLevel(value: number | null);
10914
10920
  /**
10921
+ * * Field Name: ChatHandlingOption
10922
+ * * Display Name: Chat Handling Option
10923
+ * * SQL Data Type: nvarchar(30)
10924
+ * * Value List Type: List
10925
+ * * Possible Values
10926
+ * * Success
10927
+ * * Failed
10928
+ * * Retry
10929
+ * * Description: Controls how Chat next steps are handled. When null (default), Chat propagates to caller. When set to Success, Failed, or Retry, Chat steps are remapped to that value and re-validated.
10930
+ */
10931
+ get ChatHandlingOption(): 'Success' | 'Failed' | 'Retry' | null;
10932
+ set ChatHandlingOption(value: 'Success' | 'Failed' | 'Retry' | null);
10933
+ /**
10915
10934
  * * Field Name: Parent
10916
10935
  * * Display Name: Parent
10917
10936
  * * SQL Data Type: nvarchar(255)
@@ -25431,6 +25450,20 @@ export declare class ComponentLibraryEntity extends BaseEntity<ComponentLibraryE
25431
25450
  */
25432
25451
  get Dependencies(): string | null;
25433
25452
  set Dependencies(value: string | null);
25453
+ /**
25454
+ * * Field Name: UsageType
25455
+ * * Display Name: Usage Type
25456
+ * * SQL Data Type: nvarchar(50)
25457
+ * * Default Value: Both
25458
+ * * Value List Type: List
25459
+ * * Possible Values
25460
+ * * Direct
25461
+ * * Dependency
25462
+ * * Both
25463
+ * * Description: Controls how the library can be used: Direct (by components), Dependency (only as dependency), or Both
25464
+ */
25465
+ get UsageType(): 'Direct' | 'Dependency' | 'Both';
25466
+ set UsageType(value: 'Direct' | 'Dependency' | 'Both');
25434
25467
  }
25435
25468
  /**
25436
25469
  * MJ: Component Library Links - strongly typed entity sub-class