@memberjunction/server 2.80.0 → 2.81.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.
- package/dist/generated/generated.d.ts +33 -6
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +155 -19
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/ResolverBase.d.ts.map +1 -1
- package/dist/generic/ResolverBase.js +4 -2
- package/dist/generic/ResolverBase.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/resolvers/CreateQueryResolver.d.ts +8 -0
- package/dist/resolvers/CreateQueryResolver.d.ts.map +1 -1
- package/dist/resolvers/CreateQueryResolver.js +67 -13
- package/dist/resolvers/CreateQueryResolver.js.map +1 -1
- package/dist/resolvers/QueryResolver.d.ts +6 -4
- package/dist/resolvers/QueryResolver.d.ts.map +1 -1
- package/dist/resolvers/QueryResolver.js +51 -17
- package/dist/resolvers/QueryResolver.js.map +1 -1
- package/package.json +35 -34
- package/src/generated/generated.ts +101 -19
- package/src/generic/ResolverBase.ts +4 -2
- package/src/index.ts +3 -0
- package/src/resolvers/CreateQueryResolver.ts +49 -13
- package/src/resolvers/QueryResolver.ts +43 -14
|
@@ -2250,6 +2250,7 @@ export declare class Entity_ {
|
|
|
2250
2250
|
RowCount?: number;
|
|
2251
2251
|
RowCountRunAt?: Date;
|
|
2252
2252
|
Status: string;
|
|
2253
|
+
DisplayName?: string;
|
|
2253
2254
|
CodeName?: string;
|
|
2254
2255
|
ClassName?: string;
|
|
2255
2256
|
BaseTableCodeName?: string;
|
|
@@ -2347,6 +2348,7 @@ export declare class CreateEntityInput {
|
|
|
2347
2348
|
RowCount: number | null;
|
|
2348
2349
|
RowCountRunAt: Date | null;
|
|
2349
2350
|
Status?: string;
|
|
2351
|
+
DisplayName: string | null;
|
|
2350
2352
|
}
|
|
2351
2353
|
export declare class UpdateEntityInput {
|
|
2352
2354
|
ID: string;
|
|
@@ -2401,6 +2403,7 @@ export declare class UpdateEntityInput {
|
|
|
2401
2403
|
RowCount?: number | null;
|
|
2402
2404
|
RowCountRunAt?: Date | null;
|
|
2403
2405
|
Status?: string;
|
|
2406
|
+
DisplayName?: string | null;
|
|
2404
2407
|
OldValues___?: KeyValuePairInput[];
|
|
2405
2408
|
}
|
|
2406
2409
|
export declare class RunEntityViewResult {
|
|
@@ -5714,6 +5717,10 @@ export declare class QueryCategory_ {
|
|
|
5714
5717
|
UserID: string;
|
|
5715
5718
|
_mj__CreatedAt: Date;
|
|
5716
5719
|
_mj__UpdatedAt: Date;
|
|
5720
|
+
DefaultCacheEnabled: boolean;
|
|
5721
|
+
DefaultCacheTTLMinutes?: number;
|
|
5722
|
+
DefaultCacheMaxSize?: number;
|
|
5723
|
+
CacheInheritanceEnabled: boolean;
|
|
5717
5724
|
Parent?: string;
|
|
5718
5725
|
User: string;
|
|
5719
5726
|
QueryCategories_ParentIDArray: QueryCategory_[];
|
|
@@ -5725,6 +5732,10 @@ export declare class CreateQueryCategoryInput {
|
|
|
5725
5732
|
ParentID: string | null;
|
|
5726
5733
|
Description: string | null;
|
|
5727
5734
|
UserID?: string;
|
|
5735
|
+
DefaultCacheEnabled?: boolean;
|
|
5736
|
+
DefaultCacheTTLMinutes: number | null;
|
|
5737
|
+
DefaultCacheMaxSize: number | null;
|
|
5738
|
+
CacheInheritanceEnabled?: boolean;
|
|
5728
5739
|
}
|
|
5729
5740
|
export declare class UpdateQueryCategoryInput {
|
|
5730
5741
|
ID: string;
|
|
@@ -5732,6 +5743,10 @@ export declare class UpdateQueryCategoryInput {
|
|
|
5732
5743
|
ParentID?: string | null;
|
|
5733
5744
|
Description?: string | null;
|
|
5734
5745
|
UserID?: string;
|
|
5746
|
+
DefaultCacheEnabled?: boolean;
|
|
5747
|
+
DefaultCacheTTLMinutes?: number | null;
|
|
5748
|
+
DefaultCacheMaxSize?: number | null;
|
|
5749
|
+
CacheInheritanceEnabled?: boolean;
|
|
5735
5750
|
OldValues___?: KeyValuePairInput[];
|
|
5736
5751
|
}
|
|
5737
5752
|
export declare class RunQueryCategoryViewResult {
|
|
@@ -5770,6 +5785,10 @@ export declare class Query_ {
|
|
|
5770
5785
|
_mj__CreatedAt: Date;
|
|
5771
5786
|
_mj__UpdatedAt: Date;
|
|
5772
5787
|
UsesTemplate?: boolean;
|
|
5788
|
+
AuditQueryRuns: boolean;
|
|
5789
|
+
CacheEnabled: boolean;
|
|
5790
|
+
CacheTTLMinutes?: number;
|
|
5791
|
+
CacheMaxSize?: number;
|
|
5773
5792
|
Category?: string;
|
|
5774
5793
|
QueryFields_QueryIDArray: QueryField_[];
|
|
5775
5794
|
QueryPermissions_QueryIDArray: QueryPermission_[];
|
|
@@ -5791,6 +5810,10 @@ export declare class CreateQueryInput {
|
|
|
5791
5810
|
QualityRank?: number | null;
|
|
5792
5811
|
ExecutionCostRank: number | null;
|
|
5793
5812
|
UsesTemplate?: boolean | null;
|
|
5813
|
+
AuditQueryRuns?: boolean;
|
|
5814
|
+
CacheEnabled?: boolean;
|
|
5815
|
+
CacheTTLMinutes: number | null;
|
|
5816
|
+
CacheMaxSize: number | null;
|
|
5794
5817
|
}
|
|
5795
5818
|
export declare class UpdateQueryInput {
|
|
5796
5819
|
ID: string;
|
|
@@ -5806,6 +5829,10 @@ export declare class UpdateQueryInput {
|
|
|
5806
5829
|
QualityRank?: number | null;
|
|
5807
5830
|
ExecutionCostRank?: number | null;
|
|
5808
5831
|
UsesTemplate?: boolean | null;
|
|
5832
|
+
AuditQueryRuns?: boolean;
|
|
5833
|
+
CacheEnabled?: boolean;
|
|
5834
|
+
CacheTTLMinutes?: number | null;
|
|
5835
|
+
CacheMaxSize?: number | null;
|
|
5809
5836
|
OldValues___?: KeyValuePairInput[];
|
|
5810
5837
|
}
|
|
5811
5838
|
export declare class RunQueryViewResult {
|
|
@@ -8969,10 +8996,10 @@ export declare class AIModelVendor_ {
|
|
|
8969
8996
|
SupportsStreaming: boolean;
|
|
8970
8997
|
_mj__CreatedAt: Date;
|
|
8971
8998
|
_mj__UpdatedAt: Date;
|
|
8972
|
-
TypeID
|
|
8999
|
+
TypeID: string;
|
|
8973
9000
|
Model: string;
|
|
8974
9001
|
Vendor: string;
|
|
8975
|
-
Type
|
|
9002
|
+
Type: string;
|
|
8976
9003
|
}
|
|
8977
9004
|
export declare class CreateAIModelVendorInput {
|
|
8978
9005
|
ID?: string;
|
|
@@ -8988,7 +9015,7 @@ export declare class CreateAIModelVendorInput {
|
|
|
8988
9015
|
SupportedResponseFormats?: string;
|
|
8989
9016
|
SupportsEffortLevel?: boolean;
|
|
8990
9017
|
SupportsStreaming?: boolean;
|
|
8991
|
-
TypeID
|
|
9018
|
+
TypeID?: string;
|
|
8992
9019
|
}
|
|
8993
9020
|
export declare class UpdateAIModelVendorInput {
|
|
8994
9021
|
ID: string;
|
|
@@ -9004,7 +9031,7 @@ export declare class UpdateAIModelVendorInput {
|
|
|
9004
9031
|
SupportedResponseFormats?: string;
|
|
9005
9032
|
SupportsEffortLevel?: boolean;
|
|
9006
9033
|
SupportsStreaming?: boolean;
|
|
9007
|
-
TypeID?: string
|
|
9034
|
+
TypeID?: string;
|
|
9008
9035
|
OldValues___?: KeyValuePairInput[];
|
|
9009
9036
|
}
|
|
9010
9037
|
export declare class RunAIModelVendorViewResult {
|
|
@@ -9291,8 +9318,8 @@ export declare class ConversationArtifact_ {
|
|
|
9291
9318
|
_mj__UpdatedAt: Date;
|
|
9292
9319
|
Conversation?: string;
|
|
9293
9320
|
ArtifactType: string;
|
|
9294
|
-
MJ_ConversationArtifactPermissions_ConversationArtifactIDArray: ConversationArtifactPermission_[];
|
|
9295
9321
|
MJ_ConversationArtifactVersions_ConversationArtifactIDArray: ConversationArtifactVersion_[];
|
|
9322
|
+
MJ_ConversationArtifactPermissions_ConversationArtifactIDArray: ConversationArtifactPermission_[];
|
|
9296
9323
|
ConversationDetails_ArtifactIDArray: ConversationDetail_[];
|
|
9297
9324
|
}
|
|
9298
9325
|
export declare class CreateConversationArtifactInput {
|
|
@@ -9328,8 +9355,8 @@ export declare class ConversationArtifactResolver extends ResolverBase {
|
|
|
9328
9355
|
RunConversationArtifactViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9329
9356
|
RunConversationArtifactDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9330
9357
|
ConversationArtifact(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<ConversationArtifact_ | null>;
|
|
9331
|
-
MJ_ConversationArtifactPermissions_ConversationArtifactIDArray(conversationartifact_: ConversationArtifact_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9332
9358
|
MJ_ConversationArtifactVersions_ConversationArtifactIDArray(conversationartifact_: ConversationArtifact_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9359
|
+
MJ_ConversationArtifactPermissions_ConversationArtifactIDArray(conversationartifact_: ConversationArtifact_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9333
9360
|
ConversationDetails_ArtifactIDArray(conversationartifact_: ConversationArtifact_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9334
9361
|
CreateConversationArtifact(input: CreateConversationArtifactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9335
9362
|
UpdateConversationArtifact(input: UpdateConversationArtifactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|