@memberjunction/server 2.87.0 → 2.88.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.
@@ -9351,6 +9351,10 @@ export declare class Component_ {
9351
9351
  TechnicalDesign?: string;
9352
9352
  FunctionalRequirementsVector?: string;
9353
9353
  TechnicalDesignVector?: string;
9354
+ HasCustomProps: boolean;
9355
+ HasCustomEvents: boolean;
9356
+ RequiresData: boolean;
9357
+ DependencyCount: number;
9354
9358
  SourceRegistry?: string;
9355
9359
  MJ_ComponentDependencies_DependencyComponentIDArray: ComponentDependency_[];
9356
9360
  MJ_ComponentLibraryLinks_ComponentIDArray: ComponentLibraryLink_[];
@@ -9377,6 +9381,10 @@ export declare class CreateComponentInput {
9377
9381
  TechnicalDesign: string | null;
9378
9382
  FunctionalRequirementsVector: string | null;
9379
9383
  TechnicalDesignVector: string | null;
9384
+ HasCustomProps?: boolean;
9385
+ HasCustomEvents?: boolean;
9386
+ RequiresData?: boolean;
9387
+ DependencyCount?: number;
9380
9388
  }
9381
9389
  export declare class UpdateComponentInput {
9382
9390
  ID: string;
@@ -9399,6 +9407,10 @@ export declare class UpdateComponentInput {
9399
9407
  TechnicalDesign?: string | null;
9400
9408
  FunctionalRequirementsVector?: string | null;
9401
9409
  TechnicalDesignVector?: string | null;
9410
+ HasCustomProps?: boolean;
9411
+ HasCustomEvents?: boolean;
9412
+ RequiresData?: boolean;
9413
+ DependencyCount?: number;
9402
9414
  OldValues___?: KeyValuePairInput[];
9403
9415
  }
9404
9416
  export declare class RunComponentViewResult {