@memberjunction/server 2.4.1 → 2.5.1
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.
|
@@ -2717,13 +2717,15 @@ export declare class AIModel_ {
|
|
|
2717
2717
|
SpeedRank?: number;
|
|
2718
2718
|
CostRank?: number;
|
|
2719
2719
|
ModelSelectionInsights?: string;
|
|
2720
|
+
InputTokenLimit?: number;
|
|
2720
2721
|
AIModelType: string;
|
|
2721
2722
|
AIActions_DefaultModelIDArray: AIAction_[];
|
|
2722
2723
|
EntityDocuments_AIModelIDArray: EntityDocument_[];
|
|
2723
2724
|
AIModelActions_AIModelIDArray: AIModelAction_[];
|
|
2724
2725
|
VectorIndexes_EmbeddingModelIDArray: VectorIndex_[];
|
|
2725
|
-
|
|
2726
|
+
ContentTypes_AIModelIDArray: ContentType_[];
|
|
2726
2727
|
AIResultCache_AIModelIDArray: AIResultCache_[];
|
|
2728
|
+
EntityAIActions_AIModelIDArray: EntityAIAction_[];
|
|
2727
2729
|
}
|
|
2728
2730
|
export declare class CreateAIModelInput {
|
|
2729
2731
|
Name: string;
|
|
@@ -2738,6 +2740,7 @@ export declare class CreateAIModelInput {
|
|
|
2738
2740
|
SpeedRank?: number;
|
|
2739
2741
|
CostRank?: number;
|
|
2740
2742
|
ModelSelectionInsights?: string;
|
|
2743
|
+
InputTokenLimit?: number;
|
|
2741
2744
|
}
|
|
2742
2745
|
export declare class UpdateAIModelInput {
|
|
2743
2746
|
ID: string;
|
|
@@ -2753,6 +2756,7 @@ export declare class UpdateAIModelInput {
|
|
|
2753
2756
|
SpeedRank?: number;
|
|
2754
2757
|
CostRank?: number;
|
|
2755
2758
|
ModelSelectionInsights?: string;
|
|
2759
|
+
InputTokenLimit?: number;
|
|
2756
2760
|
OldValues___?: KeyValuePairInput[];
|
|
2757
2761
|
}
|
|
2758
2762
|
export declare class RunAIModelViewResult {
|
|
@@ -2774,8 +2778,9 @@ export declare class AIModelResolver extends ResolverBase {
|
|
|
2774
2778
|
EntityDocuments_AIModelIDArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2775
2779
|
AIModelActions_AIModelIDArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2776
2780
|
VectorIndexes_EmbeddingModelIDArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2777
|
-
|
|
2781
|
+
ContentTypes_AIModelIDArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2778
2782
|
AIResultCache_AIModelIDArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2783
|
+
EntityAIActions_AIModelIDArray(aimodel_: AIModel_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2779
2784
|
CreateAIModel(input: CreateAIModelInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2780
2785
|
UpdateAIModel(input: UpdateAIModelInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2781
2786
|
DeleteAIModel(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6019,6 +6024,7 @@ export declare class CommunicationProvider_ {
|
|
|
6019
6024
|
SupportsReceiving: boolean;
|
|
6020
6025
|
_mj__CreatedAt: Date;
|
|
6021
6026
|
_mj__UpdatedAt: Date;
|
|
6027
|
+
SupportsScheduledSending: boolean;
|
|
6022
6028
|
CommunicationLogs_CommunicationProviderIDArray: CommunicationLog_[];
|
|
6023
6029
|
CommunicationProviderMessageTypes_CommunicationProviderIDArray: CommunicationProviderMessageType_[];
|
|
6024
6030
|
}
|
|
@@ -6028,6 +6034,7 @@ export declare class CreateCommunicationProviderInput {
|
|
|
6028
6034
|
Status: string;
|
|
6029
6035
|
SupportsSending: boolean;
|
|
6030
6036
|
SupportsReceiving: boolean;
|
|
6037
|
+
SupportsScheduledSending: boolean;
|
|
6031
6038
|
}
|
|
6032
6039
|
export declare class UpdateCommunicationProviderInput {
|
|
6033
6040
|
ID: string;
|
|
@@ -6036,6 +6043,7 @@ export declare class UpdateCommunicationProviderInput {
|
|
|
6036
6043
|
Status: string;
|
|
6037
6044
|
SupportsSending: boolean;
|
|
6038
6045
|
SupportsReceiving: boolean;
|
|
6046
|
+
SupportsScheduledSending: boolean;
|
|
6039
6047
|
OldValues___?: KeyValuePairInput[];
|
|
6040
6048
|
}
|
|
6041
6049
|
export declare class RunCommunicationProviderViewResult {
|
|
@@ -6426,6 +6434,7 @@ export declare class TemplateParam_ {
|
|
|
6426
6434
|
RecordID?: string;
|
|
6427
6435
|
_mj__CreatedAt: Date;
|
|
6428
6436
|
_mj__UpdatedAt: Date;
|
|
6437
|
+
OrderBy?: string;
|
|
6429
6438
|
Template: string;
|
|
6430
6439
|
Entity?: string;
|
|
6431
6440
|
}
|
|
@@ -6441,6 +6450,7 @@ export declare class CreateTemplateParamInput {
|
|
|
6441
6450
|
ExtraFilter?: string;
|
|
6442
6451
|
EntityID?: string;
|
|
6443
6452
|
RecordID?: string;
|
|
6453
|
+
OrderBy?: string;
|
|
6444
6454
|
}
|
|
6445
6455
|
export declare class UpdateTemplateParamInput {
|
|
6446
6456
|
ID: string;
|
|
@@ -6455,6 +6465,7 @@ export declare class UpdateTemplateParamInput {
|
|
|
6455
6465
|
ExtraFilter?: string;
|
|
6456
6466
|
EntityID?: string;
|
|
6457
6467
|
RecordID?: string;
|
|
6468
|
+
OrderBy?: string;
|
|
6458
6469
|
OldValues___?: KeyValuePairInput[];
|
|
6459
6470
|
}
|
|
6460
6471
|
export declare class RunTemplateParamViewResult {
|
|
@@ -6923,4 +6934,492 @@ export declare class EntityActionParamResolver extends ResolverBase {
|
|
|
6923
6934
|
UpdateEntityActionParam(input: UpdateEntityActionParamInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6924
6935
|
DeleteEntityActionParam(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6925
6936
|
}
|
|
6937
|
+
export declare class ContentProcessRun_ {
|
|
6938
|
+
ID: string;
|
|
6939
|
+
SourceID: string;
|
|
6940
|
+
StartTime?: Date;
|
|
6941
|
+
EndTime?: Date;
|
|
6942
|
+
Status?: string;
|
|
6943
|
+
ProcessedItems?: number;
|
|
6944
|
+
_mj__CreatedAt: Date;
|
|
6945
|
+
_mj__UpdatedAt: Date;
|
|
6946
|
+
Source?: string;
|
|
6947
|
+
}
|
|
6948
|
+
export declare class CreateContentProcessRunInput {
|
|
6949
|
+
SourceID: string;
|
|
6950
|
+
StartTime?: Date;
|
|
6951
|
+
EndTime?: Date;
|
|
6952
|
+
Status?: string;
|
|
6953
|
+
ProcessedItems?: number;
|
|
6954
|
+
}
|
|
6955
|
+
export declare class UpdateContentProcessRunInput {
|
|
6956
|
+
ID: string;
|
|
6957
|
+
SourceID: string;
|
|
6958
|
+
StartTime?: Date;
|
|
6959
|
+
EndTime?: Date;
|
|
6960
|
+
Status?: string;
|
|
6961
|
+
ProcessedItems?: number;
|
|
6962
|
+
OldValues___?: KeyValuePairInput[];
|
|
6963
|
+
}
|
|
6964
|
+
export declare class RunContentProcessRunViewResult {
|
|
6965
|
+
Results: ContentProcessRun_[];
|
|
6966
|
+
UserViewRunID?: string;
|
|
6967
|
+
RowCount: number;
|
|
6968
|
+
TotalRowCount: number;
|
|
6969
|
+
ExecutionTime: number;
|
|
6970
|
+
ErrorMessage?: string;
|
|
6971
|
+
Success: boolean;
|
|
6972
|
+
}
|
|
6973
|
+
export declare class ContentProcessRunResolver extends ResolverBase {
|
|
6974
|
+
RunContentProcessRunViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6975
|
+
RunContentProcessRunViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6976
|
+
RunContentProcessRunDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6977
|
+
ContentProcessRun(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentProcessRun_ | null>;
|
|
6978
|
+
CreateContentProcessRun(input: CreateContentProcessRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6979
|
+
UpdateContentProcessRun(input: UpdateContentProcessRunInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6980
|
+
DeleteContentProcessRun(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6981
|
+
}
|
|
6982
|
+
export declare class ContentSource_ {
|
|
6983
|
+
ID: string;
|
|
6984
|
+
Name?: string;
|
|
6985
|
+
ContentTypeID: string;
|
|
6986
|
+
ContentSourceTypeID: string;
|
|
6987
|
+
ContentFileTypeID: string;
|
|
6988
|
+
URL: string;
|
|
6989
|
+
_mj__CreatedAt: Date;
|
|
6990
|
+
_mj__UpdatedAt: Date;
|
|
6991
|
+
ContentType: string;
|
|
6992
|
+
ContentSourceType: string;
|
|
6993
|
+
ContentFileType: string;
|
|
6994
|
+
ContentProcessRuns_SourceIDArray: ContentProcessRun_[];
|
|
6995
|
+
ContentSourceParams_ContentSourceIDArray: ContentSourceParam_[];
|
|
6996
|
+
ContentItems_ContentSourceIDArray: ContentItem_[];
|
|
6997
|
+
}
|
|
6998
|
+
export declare class CreateContentSourceInput {
|
|
6999
|
+
Name?: string;
|
|
7000
|
+
ContentTypeID: string;
|
|
7001
|
+
ContentSourceTypeID: string;
|
|
7002
|
+
ContentFileTypeID: string;
|
|
7003
|
+
URL: string;
|
|
7004
|
+
}
|
|
7005
|
+
export declare class UpdateContentSourceInput {
|
|
7006
|
+
ID: string;
|
|
7007
|
+
Name?: string;
|
|
7008
|
+
ContentTypeID: string;
|
|
7009
|
+
ContentSourceTypeID: string;
|
|
7010
|
+
ContentFileTypeID: string;
|
|
7011
|
+
URL: string;
|
|
7012
|
+
OldValues___?: KeyValuePairInput[];
|
|
7013
|
+
}
|
|
7014
|
+
export declare class RunContentSourceViewResult {
|
|
7015
|
+
Results: ContentSource_[];
|
|
7016
|
+
UserViewRunID?: string;
|
|
7017
|
+
RowCount: number;
|
|
7018
|
+
TotalRowCount: number;
|
|
7019
|
+
ExecutionTime: number;
|
|
7020
|
+
ErrorMessage?: string;
|
|
7021
|
+
Success: boolean;
|
|
7022
|
+
}
|
|
7023
|
+
export declare class ContentSourceResolver extends ResolverBase {
|
|
7024
|
+
RunContentSourceViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7025
|
+
RunContentSourceViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7026
|
+
RunContentSourceDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7027
|
+
ContentSource(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentSource_ | null>;
|
|
7028
|
+
ContentProcessRuns_SourceIDArray(contentsource_: ContentSource_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7029
|
+
ContentSourceParams_ContentSourceIDArray(contentsource_: ContentSource_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7030
|
+
ContentItems_ContentSourceIDArray(contentsource_: ContentSource_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7031
|
+
CreateContentSource(input: CreateContentSourceInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7032
|
+
UpdateContentSource(input: UpdateContentSourceInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7033
|
+
DeleteContentSource(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7034
|
+
}
|
|
7035
|
+
export declare class ContentSourceParam_ {
|
|
7036
|
+
ID: string;
|
|
7037
|
+
ContentSourceID: string;
|
|
7038
|
+
ContentSourceTypeParamID: string;
|
|
7039
|
+
Value: string;
|
|
7040
|
+
_mj__CreatedAt: Date;
|
|
7041
|
+
_mj__UpdatedAt: Date;
|
|
7042
|
+
ContentSource?: string;
|
|
7043
|
+
}
|
|
7044
|
+
export declare class CreateContentSourceParamInput {
|
|
7045
|
+
ContentSourceID: string;
|
|
7046
|
+
ContentSourceTypeParamID: string;
|
|
7047
|
+
Value: string;
|
|
7048
|
+
}
|
|
7049
|
+
export declare class UpdateContentSourceParamInput {
|
|
7050
|
+
ID: string;
|
|
7051
|
+
ContentSourceID: string;
|
|
7052
|
+
ContentSourceTypeParamID: string;
|
|
7053
|
+
Value: string;
|
|
7054
|
+
OldValues___?: KeyValuePairInput[];
|
|
7055
|
+
}
|
|
7056
|
+
export declare class RunContentSourceParamViewResult {
|
|
7057
|
+
Results: ContentSourceParam_[];
|
|
7058
|
+
UserViewRunID?: string;
|
|
7059
|
+
RowCount: number;
|
|
7060
|
+
TotalRowCount: number;
|
|
7061
|
+
ExecutionTime: number;
|
|
7062
|
+
ErrorMessage?: string;
|
|
7063
|
+
Success: boolean;
|
|
7064
|
+
}
|
|
7065
|
+
export declare class ContentSourceParamResolver extends ResolverBase {
|
|
7066
|
+
RunContentSourceParamViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7067
|
+
RunContentSourceParamViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7068
|
+
RunContentSourceParamDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7069
|
+
ContentSourceParam(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentSourceParam_ | null>;
|
|
7070
|
+
CreateContentSourceParam(input: CreateContentSourceParamInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7071
|
+
UpdateContentSourceParam(input: UpdateContentSourceParamInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7072
|
+
DeleteContentSourceParam(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7073
|
+
}
|
|
7074
|
+
export declare class ContentSourceType_ {
|
|
7075
|
+
ID: string;
|
|
7076
|
+
Name: string;
|
|
7077
|
+
Description?: string;
|
|
7078
|
+
_mj__CreatedAt: Date;
|
|
7079
|
+
_mj__UpdatedAt: Date;
|
|
7080
|
+
ContentSources_ContentSourceTypeIDArray: ContentSource_[];
|
|
7081
|
+
ContentItems_ContentSourceTypeIDArray: ContentItem_[];
|
|
7082
|
+
}
|
|
7083
|
+
export declare class CreateContentSourceTypeInput {
|
|
7084
|
+
Name: string;
|
|
7085
|
+
Description?: string;
|
|
7086
|
+
}
|
|
7087
|
+
export declare class UpdateContentSourceTypeInput {
|
|
7088
|
+
ID: string;
|
|
7089
|
+
Name: string;
|
|
7090
|
+
Description?: string;
|
|
7091
|
+
OldValues___?: KeyValuePairInput[];
|
|
7092
|
+
}
|
|
7093
|
+
export declare class RunContentSourceTypeViewResult {
|
|
7094
|
+
Results: ContentSourceType_[];
|
|
7095
|
+
UserViewRunID?: string;
|
|
7096
|
+
RowCount: number;
|
|
7097
|
+
TotalRowCount: number;
|
|
7098
|
+
ExecutionTime: number;
|
|
7099
|
+
ErrorMessage?: string;
|
|
7100
|
+
Success: boolean;
|
|
7101
|
+
}
|
|
7102
|
+
export declare class ContentSourceTypeResolver extends ResolverBase {
|
|
7103
|
+
RunContentSourceTypeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7104
|
+
RunContentSourceTypeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7105
|
+
RunContentSourceTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7106
|
+
ContentSourceType(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentSourceType_ | null>;
|
|
7107
|
+
ContentSources_ContentSourceTypeIDArray(contentsourcetype_: ContentSourceType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7108
|
+
ContentItems_ContentSourceTypeIDArray(contentsourcetype_: ContentSourceType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7109
|
+
CreateContentSourceType(input: CreateContentSourceTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7110
|
+
UpdateContentSourceType(input: UpdateContentSourceTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7111
|
+
DeleteContentSourceType(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7112
|
+
}
|
|
7113
|
+
export declare class ContentSourceTypeParam_ {
|
|
7114
|
+
ID: string;
|
|
7115
|
+
Name: string;
|
|
7116
|
+
Description?: string;
|
|
7117
|
+
Type?: string;
|
|
7118
|
+
DefaultValue?: string;
|
|
7119
|
+
IsRequired: boolean;
|
|
7120
|
+
_mj__CreatedAt: Date;
|
|
7121
|
+
_mj__UpdatedAt: Date;
|
|
7122
|
+
}
|
|
7123
|
+
export declare class CreateContentSourceTypeParamInput {
|
|
7124
|
+
Name: string;
|
|
7125
|
+
Description?: string;
|
|
7126
|
+
Type?: string;
|
|
7127
|
+
DefaultValue?: string;
|
|
7128
|
+
IsRequired: boolean;
|
|
7129
|
+
}
|
|
7130
|
+
export declare class UpdateContentSourceTypeParamInput {
|
|
7131
|
+
ID: string;
|
|
7132
|
+
Name: string;
|
|
7133
|
+
Description?: string;
|
|
7134
|
+
Type?: string;
|
|
7135
|
+
DefaultValue?: string;
|
|
7136
|
+
IsRequired: boolean;
|
|
7137
|
+
OldValues___?: KeyValuePairInput[];
|
|
7138
|
+
}
|
|
7139
|
+
export declare class RunContentSourceTypeParamViewResult {
|
|
7140
|
+
Results: ContentSourceTypeParam_[];
|
|
7141
|
+
UserViewRunID?: string;
|
|
7142
|
+
RowCount: number;
|
|
7143
|
+
TotalRowCount: number;
|
|
7144
|
+
ExecutionTime: number;
|
|
7145
|
+
ErrorMessage?: string;
|
|
7146
|
+
Success: boolean;
|
|
7147
|
+
}
|
|
7148
|
+
export declare class ContentSourceTypeParamResolver extends ResolverBase {
|
|
7149
|
+
RunContentSourceTypeParamViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7150
|
+
RunContentSourceTypeParamViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7151
|
+
RunContentSourceTypeParamDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7152
|
+
ContentSourceTypeParam(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentSourceTypeParam_ | null>;
|
|
7153
|
+
CreateContentSourceTypeParam(input: CreateContentSourceTypeParamInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7154
|
+
UpdateContentSourceTypeParam(input: UpdateContentSourceTypeParamInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7155
|
+
DeleteContentSourceTypeParam(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7156
|
+
}
|
|
7157
|
+
export declare class ContentType_ {
|
|
7158
|
+
ID: string;
|
|
7159
|
+
Name: string;
|
|
7160
|
+
Description?: string;
|
|
7161
|
+
AIModelID: string;
|
|
7162
|
+
MinTags: number;
|
|
7163
|
+
MaxTags: number;
|
|
7164
|
+
_mj__CreatedAt: Date;
|
|
7165
|
+
_mj__UpdatedAt: Date;
|
|
7166
|
+
AIModel: string;
|
|
7167
|
+
ContentSources_ContentTypeIDArray: ContentSource_[];
|
|
7168
|
+
ContentItems_ContentTypeIDArray: ContentItem_[];
|
|
7169
|
+
}
|
|
7170
|
+
export declare class CreateContentTypeInput {
|
|
7171
|
+
Name: string;
|
|
7172
|
+
Description?: string;
|
|
7173
|
+
AIModelID: string;
|
|
7174
|
+
MinTags: number;
|
|
7175
|
+
MaxTags: number;
|
|
7176
|
+
}
|
|
7177
|
+
export declare class UpdateContentTypeInput {
|
|
7178
|
+
ID: string;
|
|
7179
|
+
Name: string;
|
|
7180
|
+
Description?: string;
|
|
7181
|
+
AIModelID: string;
|
|
7182
|
+
MinTags: number;
|
|
7183
|
+
MaxTags: number;
|
|
7184
|
+
OldValues___?: KeyValuePairInput[];
|
|
7185
|
+
}
|
|
7186
|
+
export declare class RunContentTypeViewResult {
|
|
7187
|
+
Results: ContentType_[];
|
|
7188
|
+
UserViewRunID?: string;
|
|
7189
|
+
RowCount: number;
|
|
7190
|
+
TotalRowCount: number;
|
|
7191
|
+
ExecutionTime: number;
|
|
7192
|
+
ErrorMessage?: string;
|
|
7193
|
+
Success: boolean;
|
|
7194
|
+
}
|
|
7195
|
+
export declare class ContentTypeResolver extends ResolverBase {
|
|
7196
|
+
RunContentTypeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7197
|
+
RunContentTypeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7198
|
+
RunContentTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7199
|
+
ContentType(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentType_ | null>;
|
|
7200
|
+
ContentSources_ContentTypeIDArray(contenttype_: ContentType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7201
|
+
ContentItems_ContentTypeIDArray(contenttype_: ContentType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7202
|
+
CreateContentType(input: CreateContentTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7203
|
+
UpdateContentType(input: UpdateContentTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7204
|
+
DeleteContentType(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7205
|
+
}
|
|
7206
|
+
export declare class ContentTypeAttribute_ {
|
|
7207
|
+
ID: string;
|
|
7208
|
+
ContentTypeID: string;
|
|
7209
|
+
Name: string;
|
|
7210
|
+
Prompt: string;
|
|
7211
|
+
Description?: string;
|
|
7212
|
+
_mj__CreatedAt: Date;
|
|
7213
|
+
_mj__UpdatedAt: Date;
|
|
7214
|
+
}
|
|
7215
|
+
export declare class CreateContentTypeAttributeInput {
|
|
7216
|
+
ContentTypeID: string;
|
|
7217
|
+
Name: string;
|
|
7218
|
+
Prompt: string;
|
|
7219
|
+
Description?: string;
|
|
7220
|
+
}
|
|
7221
|
+
export declare class UpdateContentTypeAttributeInput {
|
|
7222
|
+
ID: string;
|
|
7223
|
+
ContentTypeID: string;
|
|
7224
|
+
Name: string;
|
|
7225
|
+
Prompt: string;
|
|
7226
|
+
Description?: string;
|
|
7227
|
+
OldValues___?: KeyValuePairInput[];
|
|
7228
|
+
}
|
|
7229
|
+
export declare class RunContentTypeAttributeViewResult {
|
|
7230
|
+
Results: ContentTypeAttribute_[];
|
|
7231
|
+
UserViewRunID?: string;
|
|
7232
|
+
RowCount: number;
|
|
7233
|
+
TotalRowCount: number;
|
|
7234
|
+
ExecutionTime: number;
|
|
7235
|
+
ErrorMessage?: string;
|
|
7236
|
+
Success: boolean;
|
|
7237
|
+
}
|
|
7238
|
+
export declare class ContentTypeAttributeResolver extends ResolverBase {
|
|
7239
|
+
RunContentTypeAttributeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7240
|
+
RunContentTypeAttributeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7241
|
+
RunContentTypeAttributeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7242
|
+
ContentTypeAttribute(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentTypeAttribute_ | null>;
|
|
7243
|
+
CreateContentTypeAttribute(input: CreateContentTypeAttributeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7244
|
+
UpdateContentTypeAttribute(input: UpdateContentTypeAttributeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7245
|
+
DeleteContentTypeAttribute(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7246
|
+
}
|
|
7247
|
+
export declare class ContentFileType_ {
|
|
7248
|
+
ID: string;
|
|
7249
|
+
Name: string;
|
|
7250
|
+
FileExtension?: string;
|
|
7251
|
+
_mj__CreatedAt: Date;
|
|
7252
|
+
_mj__UpdatedAt: Date;
|
|
7253
|
+
ContentSources_ContentFileTypeIDArray: ContentSource_[];
|
|
7254
|
+
ContentItems_ContentFileTypeIDArray: ContentItem_[];
|
|
7255
|
+
}
|
|
7256
|
+
export declare class CreateContentFileTypeInput {
|
|
7257
|
+
Name: string;
|
|
7258
|
+
FileExtension?: string;
|
|
7259
|
+
}
|
|
7260
|
+
export declare class UpdateContentFileTypeInput {
|
|
7261
|
+
ID: string;
|
|
7262
|
+
Name: string;
|
|
7263
|
+
FileExtension?: string;
|
|
7264
|
+
OldValues___?: KeyValuePairInput[];
|
|
7265
|
+
}
|
|
7266
|
+
export declare class RunContentFileTypeViewResult {
|
|
7267
|
+
Results: ContentFileType_[];
|
|
7268
|
+
UserViewRunID?: string;
|
|
7269
|
+
RowCount: number;
|
|
7270
|
+
TotalRowCount: number;
|
|
7271
|
+
ExecutionTime: number;
|
|
7272
|
+
ErrorMessage?: string;
|
|
7273
|
+
Success: boolean;
|
|
7274
|
+
}
|
|
7275
|
+
export declare class ContentFileTypeResolver extends ResolverBase {
|
|
7276
|
+
RunContentFileTypeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7277
|
+
RunContentFileTypeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7278
|
+
RunContentFileTypeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7279
|
+
ContentFileType(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentFileType_ | null>;
|
|
7280
|
+
ContentSources_ContentFileTypeIDArray(contentfiletype_: ContentFileType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7281
|
+
ContentItems_ContentFileTypeIDArray(contentfiletype_: ContentFileType_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7282
|
+
CreateContentFileType(input: CreateContentFileTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7283
|
+
UpdateContentFileType(input: UpdateContentFileTypeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7284
|
+
DeleteContentFileType(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7285
|
+
}
|
|
7286
|
+
export declare class ContentItem_ {
|
|
7287
|
+
ID: string;
|
|
7288
|
+
ContentSourceID: string;
|
|
7289
|
+
Name?: string;
|
|
7290
|
+
Description?: string;
|
|
7291
|
+
ContentTypeID: string;
|
|
7292
|
+
ContentSourceTypeID: string;
|
|
7293
|
+
ContentFileTypeID: string;
|
|
7294
|
+
Checksum?: string;
|
|
7295
|
+
URL: string;
|
|
7296
|
+
Text?: string;
|
|
7297
|
+
_mj__CreatedAt: Date;
|
|
7298
|
+
_mj__UpdatedAt: Date;
|
|
7299
|
+
ContentSource?: string;
|
|
7300
|
+
ContentType: string;
|
|
7301
|
+
ContentSourceType: string;
|
|
7302
|
+
ContentFileType: string;
|
|
7303
|
+
ContentItemAttributes_ContentItemIDArray: ContentItemAttribute_[];
|
|
7304
|
+
ContentItemTags_ItemIDArray: ContentItemTag_[];
|
|
7305
|
+
}
|
|
7306
|
+
export declare class CreateContentItemInput {
|
|
7307
|
+
ContentSourceID: string;
|
|
7308
|
+
Name?: string;
|
|
7309
|
+
Description?: string;
|
|
7310
|
+
ContentTypeID: string;
|
|
7311
|
+
ContentSourceTypeID: string;
|
|
7312
|
+
ContentFileTypeID: string;
|
|
7313
|
+
Checksum?: string;
|
|
7314
|
+
URL: string;
|
|
7315
|
+
Text?: string;
|
|
7316
|
+
}
|
|
7317
|
+
export declare class UpdateContentItemInput {
|
|
7318
|
+
ID: string;
|
|
7319
|
+
ContentSourceID: string;
|
|
7320
|
+
Name?: string;
|
|
7321
|
+
Description?: string;
|
|
7322
|
+
ContentTypeID: string;
|
|
7323
|
+
ContentSourceTypeID: string;
|
|
7324
|
+
ContentFileTypeID: string;
|
|
7325
|
+
Checksum?: string;
|
|
7326
|
+
URL: string;
|
|
7327
|
+
Text?: string;
|
|
7328
|
+
OldValues___?: KeyValuePairInput[];
|
|
7329
|
+
}
|
|
7330
|
+
export declare class RunContentItemViewResult {
|
|
7331
|
+
Results: ContentItem_[];
|
|
7332
|
+
UserViewRunID?: string;
|
|
7333
|
+
RowCount: number;
|
|
7334
|
+
TotalRowCount: number;
|
|
7335
|
+
ExecutionTime: number;
|
|
7336
|
+
ErrorMessage?: string;
|
|
7337
|
+
Success: boolean;
|
|
7338
|
+
}
|
|
7339
|
+
export declare class ContentItemResolver extends ResolverBase {
|
|
7340
|
+
RunContentItemViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7341
|
+
RunContentItemViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7342
|
+
RunContentItemDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7343
|
+
ContentItem(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentItem_ | null>;
|
|
7344
|
+
ContentItemAttributes_ContentItemIDArray(contentitem_: ContentItem_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7345
|
+
ContentItemTags_ItemIDArray(contentitem_: ContentItem_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7346
|
+
CreateContentItem(input: CreateContentItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7347
|
+
UpdateContentItem(input: UpdateContentItemInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7348
|
+
DeleteContentItem(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7349
|
+
}
|
|
7350
|
+
export declare class ContentItemAttribute_ {
|
|
7351
|
+
ID: string;
|
|
7352
|
+
ContentItemID: string;
|
|
7353
|
+
Name: string;
|
|
7354
|
+
Value: string;
|
|
7355
|
+
_mj__CreatedAt: Date;
|
|
7356
|
+
_mj__UpdatedAt: Date;
|
|
7357
|
+
ContentItem?: string;
|
|
7358
|
+
}
|
|
7359
|
+
export declare class CreateContentItemAttributeInput {
|
|
7360
|
+
ContentItemID: string;
|
|
7361
|
+
Name: string;
|
|
7362
|
+
Value: string;
|
|
7363
|
+
}
|
|
7364
|
+
export declare class UpdateContentItemAttributeInput {
|
|
7365
|
+
ID: string;
|
|
7366
|
+
ContentItemID: string;
|
|
7367
|
+
Name: string;
|
|
7368
|
+
Value: string;
|
|
7369
|
+
OldValues___?: KeyValuePairInput[];
|
|
7370
|
+
}
|
|
7371
|
+
export declare class RunContentItemAttributeViewResult {
|
|
7372
|
+
Results: ContentItemAttribute_[];
|
|
7373
|
+
UserViewRunID?: string;
|
|
7374
|
+
RowCount: number;
|
|
7375
|
+
TotalRowCount: number;
|
|
7376
|
+
ExecutionTime: number;
|
|
7377
|
+
ErrorMessage?: string;
|
|
7378
|
+
Success: boolean;
|
|
7379
|
+
}
|
|
7380
|
+
export declare class ContentItemAttributeResolver extends ResolverBase {
|
|
7381
|
+
RunContentItemAttributeViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7382
|
+
RunContentItemAttributeViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7383
|
+
RunContentItemAttributeDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7384
|
+
ContentItemAttribute(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentItemAttribute_ | null>;
|
|
7385
|
+
CreateContentItemAttribute(input: CreateContentItemAttributeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7386
|
+
UpdateContentItemAttribute(input: UpdateContentItemAttributeInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7387
|
+
DeleteContentItemAttribute(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7388
|
+
}
|
|
7389
|
+
export declare class ContentItemTag_ {
|
|
7390
|
+
ID: string;
|
|
7391
|
+
ItemID: string;
|
|
7392
|
+
Tag: string;
|
|
7393
|
+
_mj__CreatedAt: Date;
|
|
7394
|
+
_mj__UpdatedAt: Date;
|
|
7395
|
+
Item?: string;
|
|
7396
|
+
}
|
|
7397
|
+
export declare class CreateContentItemTagInput {
|
|
7398
|
+
ItemID: string;
|
|
7399
|
+
Tag: string;
|
|
7400
|
+
}
|
|
7401
|
+
export declare class UpdateContentItemTagInput {
|
|
7402
|
+
ID: string;
|
|
7403
|
+
ItemID: string;
|
|
7404
|
+
Tag: string;
|
|
7405
|
+
OldValues___?: KeyValuePairInput[];
|
|
7406
|
+
}
|
|
7407
|
+
export declare class RunContentItemTagViewResult {
|
|
7408
|
+
Results: ContentItemTag_[];
|
|
7409
|
+
UserViewRunID?: string;
|
|
7410
|
+
RowCount: number;
|
|
7411
|
+
TotalRowCount: number;
|
|
7412
|
+
ExecutionTime: number;
|
|
7413
|
+
ErrorMessage?: string;
|
|
7414
|
+
Success: boolean;
|
|
7415
|
+
}
|
|
7416
|
+
export declare class ContentItemTagResolver extends ResolverBase {
|
|
7417
|
+
RunContentItemTagViewByID(input: RunViewByIDInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7418
|
+
RunContentItemTagViewByName(input: RunViewByNameInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7419
|
+
RunContentItemTagDynamicView(input: RunDynamicViewInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7420
|
+
ContentItemTag(ID: string, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentItemTag_ | null>;
|
|
7421
|
+
CreateContentItemTag(input: CreateContentItemTagInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7422
|
+
UpdateContentItemTag(input: UpdateContentItemTagInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7423
|
+
DeleteContentItemTag(ID: string, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7424
|
+
}
|
|
6926
7425
|
//# sourceMappingURL=generated.d.ts.map
|