@memberjunction/server 2.85.0 → 2.86.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.
@@ -264,6 +264,56 @@ export declare class AIAgentModelResolver extends ResolverBase {
264
264
  UpdateAIAgentModel(input: UpdateAIAgentModelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
265
265
  DeleteAIAgentModel(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
266
266
  }
267
+ export declare class ComponentRegistry_ {
268
+ ID: string;
269
+ Name: string;
270
+ Description?: string;
271
+ URI?: string;
272
+ Type?: string;
273
+ APIVersion?: string;
274
+ Status?: string;
275
+ _mj__CreatedAt: Date;
276
+ _mj__UpdatedAt: Date;
277
+ MJ_Components_SourceRegistryIDArray: Component_[];
278
+ }
279
+ export declare class CreateComponentRegistryInput {
280
+ ID?: string;
281
+ Name?: string;
282
+ Description: string | null;
283
+ URI: string | null;
284
+ Type: string | null;
285
+ APIVersion: string | null;
286
+ Status: string | null;
287
+ }
288
+ export declare class UpdateComponentRegistryInput {
289
+ ID: string;
290
+ Name?: string;
291
+ Description?: string | null;
292
+ URI?: string | null;
293
+ Type?: string | null;
294
+ APIVersion?: string | null;
295
+ Status?: string | null;
296
+ OldValues___?: KeyValuePairInput[];
297
+ }
298
+ export declare class RunComponentRegistryViewResult {
299
+ Results: ComponentRegistry_[];
300
+ UserViewRunID?: string;
301
+ RowCount: number;
302
+ TotalRowCount: number;
303
+ ExecutionTime: number;
304
+ ErrorMessage?: string;
305
+ Success: boolean;
306
+ }
307
+ export declare class ComponentRegistryResolver extends ResolverBase {
308
+ RunComponentRegistryViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
309
+ RunComponentRegistryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
310
+ RunComponentRegistryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
311
+ ComponentRegistry(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<ComponentRegistry_ | null>;
312
+ MJ_Components_SourceRegistryIDArray(componentregistry_: ComponentRegistry_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
313
+ CreateComponentRegistry(input: CreateComponentRegistryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
314
+ UpdateComponentRegistry(input: UpdateComponentRegistryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
315
+ DeleteComponentRegistry(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
316
+ }
267
317
  export declare class AIAgentNoteType_ {
268
318
  ID: string;
269
319
  Name?: string;
@@ -302,6 +352,44 @@ export declare class AIAgentNoteTypeResolver extends ResolverBase {
302
352
  UpdateAIAgentNoteType(input: UpdateAIAgentNoteTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
303
353
  DeleteAIAgentNoteType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
304
354
  }
355
+ export declare class ComponentDependency_ {
356
+ ID: string;
357
+ ComponentID: string;
358
+ DependencyComponentID: string;
359
+ _mj__CreatedAt: Date;
360
+ _mj__UpdatedAt: Date;
361
+ Component: string;
362
+ DependencyComponent: string;
363
+ }
364
+ export declare class CreateComponentDependencyInput {
365
+ ID?: string;
366
+ ComponentID?: string;
367
+ DependencyComponentID?: string;
368
+ }
369
+ export declare class UpdateComponentDependencyInput {
370
+ ID: string;
371
+ ComponentID?: string;
372
+ DependencyComponentID?: string;
373
+ OldValues___?: KeyValuePairInput[];
374
+ }
375
+ export declare class RunComponentDependencyViewResult {
376
+ Results: ComponentDependency_[];
377
+ UserViewRunID?: string;
378
+ RowCount: number;
379
+ TotalRowCount: number;
380
+ ExecutionTime: number;
381
+ ErrorMessage?: string;
382
+ Success: boolean;
383
+ }
384
+ export declare class ComponentDependencyResolver extends ResolverBase {
385
+ RunComponentDependencyViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
386
+ RunComponentDependencyViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
387
+ RunComponentDependencyDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
388
+ ComponentDependency(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<ComponentDependency_ | null>;
389
+ CreateComponentDependency(input: CreateComponentDependencyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
390
+ UpdateComponentDependency(input: UpdateComponentDependencyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
391
+ DeleteComponentDependency(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
392
+ }
305
393
  export declare class AIAgentRun_ {
306
394
  ID: string;
307
395
  AgentID: string;
@@ -603,10 +691,12 @@ export declare class AIAgent_ {
603
691
  AIAgentLearningCycles_AgentIDArray: AIAgentLearningCycle_[];
604
692
  AIAgentRequests_AgentIDArray: AIAgentRequest_[];
605
693
  MJ_AIAgentSteps_AgentIDArray: AIAgentStep_[];
694
+ MJ_AIAgentRelationships_AgentIDArray: AIAgentRelationship_[];
606
695
  AIAgentNotes_AgentIDArray: AIAgentNote_[];
607
696
  MJ_AIAgentPrompts_AgentIDArray: AIAgentPrompt_[];
608
697
  MJ_AIAgentRuns_AgentIDArray: AIAgentRun_[];
609
698
  MJ_AIAgentSteps_SubAgentIDArray: AIAgentStep_[];
699
+ MJ_AIAgentRelationships_SubAgentIDArray: AIAgentRelationship_[];
610
700
  AIResultCache_AgentIDArray: AIResultCache_[];
611
701
  MJ_AIPromptRuns_AgentIDArray: AIPromptRun_[];
612
702
  AIAgents_ParentIDArray: AIAgent_[];
@@ -703,10 +793,12 @@ export declare class AIAgentResolver extends ResolverBase {
703
793
  AIAgentLearningCycles_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
704
794
  AIAgentRequests_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
705
795
  MJ_AIAgentSteps_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
796
+ MJ_AIAgentRelationships_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
706
797
  AIAgentNotes_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
707
798
  MJ_AIAgentPrompts_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
708
799
  MJ_AIAgentRuns_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
709
800
  MJ_AIAgentSteps_SubAgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
801
+ MJ_AIAgentRelationships_SubAgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
710
802
  AIResultCache_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
711
803
  MJ_AIPromptRuns_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
712
804
  AIAgents_ParentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
@@ -9236,6 +9328,100 @@ export declare class DashboardUserStateResolver extends ResolverBase {
9236
9328
  UpdateDashboardUserState(input: UpdateDashboardUserStateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9237
9329
  DeleteDashboardUserState(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9238
9330
  }
9331
+ export declare class Component_ {
9332
+ ID: string;
9333
+ Namespace?: string;
9334
+ Name: string;
9335
+ Version: string;
9336
+ VersionSequence: number;
9337
+ Title?: string;
9338
+ Description?: string;
9339
+ Type?: string;
9340
+ Status?: string;
9341
+ DeveloperName?: string;
9342
+ DeveloperEmail?: string;
9343
+ DeveloperOrganization?: string;
9344
+ SourceRegistryID?: string;
9345
+ ReplicatedAt?: Date;
9346
+ LastSyncedAt?: Date;
9347
+ _mj__CreatedAt: Date;
9348
+ _mj__UpdatedAt: Date;
9349
+ Specification: string;
9350
+ FunctionalRequirements?: string;
9351
+ TechnicalDesign?: string;
9352
+ FunctionalRequirementsVector?: string;
9353
+ TechnicalDesignVector?: string;
9354
+ SourceRegistry?: string;
9355
+ MJ_ComponentDependencies_DependencyComponentIDArray: ComponentDependency_[];
9356
+ MJ_ComponentLibraryLinks_ComponentIDArray: ComponentLibraryLink_[];
9357
+ MJ_ComponentDependencies_ComponentIDArray: ComponentDependency_[];
9358
+ }
9359
+ export declare class CreateComponentInput {
9360
+ ID?: string;
9361
+ Namespace: string | null;
9362
+ Name?: string;
9363
+ Version?: string;
9364
+ VersionSequence?: number;
9365
+ Title: string | null;
9366
+ Description: string | null;
9367
+ Type: string | null;
9368
+ Status: string | null;
9369
+ DeveloperName: string | null;
9370
+ DeveloperEmail: string | null;
9371
+ DeveloperOrganization: string | null;
9372
+ SourceRegistryID: string | null;
9373
+ ReplicatedAt: Date | null;
9374
+ LastSyncedAt: Date | null;
9375
+ Specification?: string;
9376
+ FunctionalRequirements: string | null;
9377
+ TechnicalDesign: string | null;
9378
+ FunctionalRequirementsVector: string | null;
9379
+ TechnicalDesignVector: string | null;
9380
+ }
9381
+ export declare class UpdateComponentInput {
9382
+ ID: string;
9383
+ Namespace?: string | null;
9384
+ Name?: string;
9385
+ Version?: string;
9386
+ VersionSequence?: number;
9387
+ Title?: string | null;
9388
+ Description?: string | null;
9389
+ Type?: string | null;
9390
+ Status?: string | null;
9391
+ DeveloperName?: string | null;
9392
+ DeveloperEmail?: string | null;
9393
+ DeveloperOrganization?: string | null;
9394
+ SourceRegistryID?: string | null;
9395
+ ReplicatedAt?: Date | null;
9396
+ LastSyncedAt?: Date | null;
9397
+ Specification?: string;
9398
+ FunctionalRequirements?: string | null;
9399
+ TechnicalDesign?: string | null;
9400
+ FunctionalRequirementsVector?: string | null;
9401
+ TechnicalDesignVector?: string | null;
9402
+ OldValues___?: KeyValuePairInput[];
9403
+ }
9404
+ export declare class RunComponentViewResult {
9405
+ Results: Component_[];
9406
+ UserViewRunID?: string;
9407
+ RowCount: number;
9408
+ TotalRowCount: number;
9409
+ ExecutionTime: number;
9410
+ ErrorMessage?: string;
9411
+ Success: boolean;
9412
+ }
9413
+ export declare class ComponentResolver extends ResolverBase {
9414
+ RunComponentViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
9415
+ RunComponentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
9416
+ RunComponentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
9417
+ Component(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Component_ | null>;
9418
+ MJ_ComponentDependencies_DependencyComponentIDArray(component_: Component_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
9419
+ MJ_ComponentLibraryLinks_ComponentIDArray(component_: Component_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
9420
+ MJ_ComponentDependencies_ComponentIDArray(component_: Component_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
9421
+ CreateComponent(input: CreateComponentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9422
+ UpdateComponent(input: UpdateComponentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9423
+ DeleteComponent(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9424
+ }
9239
9425
  export declare class ArtifactType_ {
9240
9426
  ID: string;
9241
9427
  Name: string;
@@ -9437,6 +9623,62 @@ export declare class AIAgentPromptResolver extends ResolverBase {
9437
9623
  UpdateAIAgentPrompt(input: UpdateAIAgentPromptInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9438
9624
  DeleteAIAgentPrompt(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9439
9625
  }
9626
+ export declare class ComponentLibrary_ {
9627
+ ID: string;
9628
+ Name: string;
9629
+ DisplayName?: string;
9630
+ Version?: string;
9631
+ GlobalVariable?: string;
9632
+ Category?: string;
9633
+ CDNUrl?: string;
9634
+ CDNCssUrl?: string;
9635
+ Description?: string;
9636
+ _mj__CreatedAt: Date;
9637
+ _mj__UpdatedAt: Date;
9638
+ MJ_ComponentLibraryLinks_LibraryIDArray: ComponentLibraryLink_[];
9639
+ }
9640
+ export declare class CreateComponentLibraryInput {
9641
+ ID?: string;
9642
+ Name?: string;
9643
+ DisplayName: string | null;
9644
+ Version: string | null;
9645
+ GlobalVariable: string | null;
9646
+ Category: string | null;
9647
+ CDNUrl: string | null;
9648
+ CDNCssUrl: string | null;
9649
+ Description: string | null;
9650
+ }
9651
+ export declare class UpdateComponentLibraryInput {
9652
+ ID: string;
9653
+ Name?: string;
9654
+ DisplayName?: string | null;
9655
+ Version?: string | null;
9656
+ GlobalVariable?: string | null;
9657
+ Category?: string | null;
9658
+ CDNUrl?: string | null;
9659
+ CDNCssUrl?: string | null;
9660
+ Description?: string | null;
9661
+ OldValues___?: KeyValuePairInput[];
9662
+ }
9663
+ export declare class RunComponentLibraryViewResult {
9664
+ Results: ComponentLibrary_[];
9665
+ UserViewRunID?: string;
9666
+ RowCount: number;
9667
+ TotalRowCount: number;
9668
+ ExecutionTime: number;
9669
+ ErrorMessage?: string;
9670
+ Success: boolean;
9671
+ }
9672
+ export declare class ComponentLibraryResolver extends ResolverBase {
9673
+ RunComponentLibraryViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
9674
+ RunComponentLibraryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
9675
+ RunComponentLibraryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
9676
+ ComponentLibrary(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<ComponentLibrary_ | null>;
9677
+ MJ_ComponentLibraryLinks_LibraryIDArray(componentlibrary_: ComponentLibrary_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
9678
+ CreateComponentLibrary(input: CreateComponentLibraryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9679
+ UpdateComponentLibrary(input: UpdateComponentLibraryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9680
+ DeleteComponentLibrary(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9681
+ }
9440
9682
  export declare class DashboardUserPreference_ {
9441
9683
  ID: string;
9442
9684
  UserID?: string;
@@ -9546,6 +9788,88 @@ export declare class QueryParameterResolver extends ResolverBase {
9546
9788
  UpdateQueryParameter(input: UpdateQueryParameterInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9547
9789
  DeleteQueryParameter(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9548
9790
  }
9791
+ export declare class AIAgentRelationship_ {
9792
+ ID: string;
9793
+ AgentID: string;
9794
+ SubAgentID: string;
9795
+ Status: string;
9796
+ _mj__CreatedAt: Date;
9797
+ _mj__UpdatedAt: Date;
9798
+ Agent?: string;
9799
+ SubAgent?: string;
9800
+ }
9801
+ export declare class CreateAIAgentRelationshipInput {
9802
+ ID?: string;
9803
+ AgentID?: string;
9804
+ SubAgentID?: string;
9805
+ Status?: string;
9806
+ }
9807
+ export declare class UpdateAIAgentRelationshipInput {
9808
+ ID: string;
9809
+ AgentID?: string;
9810
+ SubAgentID?: string;
9811
+ Status?: string;
9812
+ OldValues___?: KeyValuePairInput[];
9813
+ }
9814
+ export declare class RunAIAgentRelationshipViewResult {
9815
+ Results: AIAgentRelationship_[];
9816
+ UserViewRunID?: string;
9817
+ RowCount: number;
9818
+ TotalRowCount: number;
9819
+ ExecutionTime: number;
9820
+ ErrorMessage?: string;
9821
+ Success: boolean;
9822
+ }
9823
+ export declare class AIAgentRelationshipResolver extends ResolverBase {
9824
+ RunAIAgentRelationshipViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
9825
+ RunAIAgentRelationshipViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
9826
+ RunAIAgentRelationshipDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
9827
+ AIAgentRelationship(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<AIAgentRelationship_ | null>;
9828
+ CreateAIAgentRelationship(input: CreateAIAgentRelationshipInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9829
+ UpdateAIAgentRelationship(input: UpdateAIAgentRelationshipInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9830
+ DeleteAIAgentRelationship(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9831
+ }
9832
+ export declare class ComponentLibraryLink_ {
9833
+ ID: string;
9834
+ ComponentID: string;
9835
+ LibraryID: string;
9836
+ MinVersion?: string;
9837
+ _mj__CreatedAt: Date;
9838
+ _mj__UpdatedAt: Date;
9839
+ Component: string;
9840
+ Library: string;
9841
+ }
9842
+ export declare class CreateComponentLibraryLinkInput {
9843
+ ID?: string;
9844
+ ComponentID?: string;
9845
+ LibraryID?: string;
9846
+ MinVersion: string | null;
9847
+ }
9848
+ export declare class UpdateComponentLibraryLinkInput {
9849
+ ID: string;
9850
+ ComponentID?: string;
9851
+ LibraryID?: string;
9852
+ MinVersion?: string | null;
9853
+ OldValues___?: KeyValuePairInput[];
9854
+ }
9855
+ export declare class RunComponentLibraryLinkViewResult {
9856
+ Results: ComponentLibraryLink_[];
9857
+ UserViewRunID?: string;
9858
+ RowCount: number;
9859
+ TotalRowCount: number;
9860
+ ExecutionTime: number;
9861
+ ErrorMessage?: string;
9862
+ Success: boolean;
9863
+ }
9864
+ export declare class ComponentLibraryLinkResolver extends ResolverBase {
9865
+ RunComponentLibraryLinkViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
9866
+ RunComponentLibraryLinkViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
9867
+ RunComponentLibraryLinkDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
9868
+ ComponentLibraryLink(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<ComponentLibraryLink_ | null>;
9869
+ CreateComponentLibraryLink(input: CreateComponentLibraryLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9870
+ UpdateComponentLibraryLink(input: UpdateComponentLibraryLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9871
+ DeleteComponentLibraryLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
9872
+ }
9549
9873
  export declare class ContentProcessRun_ {
9550
9874
  ID: string;
9551
9875
  SourceID: string;