@memberjunction/server 2.89.0 → 2.90.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.
@@ -9355,6 +9355,9 @@ export declare class Component_ {
9355
9355
  HasCustomEvents: boolean;
9356
9356
  RequiresData: boolean;
9357
9357
  DependencyCount: number;
9358
+ TechnicalDesignVectorEmbeddingModelID?: string;
9359
+ FunctionalRequirementsVectorEmbeddingModelID?: string;
9360
+ HasRequiredCustomProps: boolean;
9358
9361
  SourceRegistry?: string;
9359
9362
  MJ_ComponentDependencies_DependencyComponentIDArray: ComponentDependency_[];
9360
9363
  MJ_ComponentLibraryLinks_ComponentIDArray: ComponentLibraryLink_[];
@@ -9385,6 +9388,9 @@ export declare class CreateComponentInput {
9385
9388
  HasCustomEvents?: boolean;
9386
9389
  RequiresData?: boolean;
9387
9390
  DependencyCount?: number;
9391
+ TechnicalDesignVectorEmbeddingModelID: string | null;
9392
+ FunctionalRequirementsVectorEmbeddingModelID: string | null;
9393
+ HasRequiredCustomProps?: boolean;
9388
9394
  }
9389
9395
  export declare class UpdateComponentInput {
9390
9396
  ID: string;
@@ -9411,6 +9417,9 @@ export declare class UpdateComponentInput {
9411
9417
  HasCustomEvents?: boolean;
9412
9418
  RequiresData?: boolean;
9413
9419
  DependencyCount?: number;
9420
+ TechnicalDesignVectorEmbeddingModelID?: string | null;
9421
+ FunctionalRequirementsVectorEmbeddingModelID?: string | null;
9422
+ HasRequiredCustomProps?: boolean;
9414
9423
  OldValues___?: KeyValuePairInput[];
9415
9424
  }
9416
9425
  export declare class RunComponentViewResult {