@memberjunction/server 4.1.0 → 4.3.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.
@@ -15053,6 +15053,8 @@ export declare class MJSchemaInfo_ {
15053
15053
  _mj__CreatedAt: Date;
15054
15054
  _mj__UpdatedAt: Date;
15055
15055
  Description?: string;
15056
+ EntityNamePrefix?: string;
15057
+ EntityNameSuffix?: string;
15056
15058
  }
15057
15059
  export declare class CreateMJSchemaInfoInput {
15058
15060
  ID?: string;
@@ -15061,6 +15063,8 @@ export declare class CreateMJSchemaInfoInput {
15061
15063
  EntityIDMax?: number;
15062
15064
  Comments: string | null;
15063
15065
  Description: string | null;
15066
+ EntityNamePrefix: string | null;
15067
+ EntityNameSuffix: string | null;
15064
15068
  }
15065
15069
  export declare class UpdateMJSchemaInfoInput {
15066
15070
  ID: string;
@@ -15069,6 +15073,8 @@ export declare class UpdateMJSchemaInfoInput {
15069
15073
  EntityIDMax?: number;
15070
15074
  Comments?: string | null;
15071
15075
  Description?: string | null;
15076
+ EntityNamePrefix?: string | null;
15077
+ EntityNameSuffix?: string | null;
15072
15078
  OldValues___?: KeyValuePairInput[];
15073
15079
  }
15074
15080
  export declare class RunMJSchemaInfoViewResult {