@memberjunction/server 5.10.1 → 5.11.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 +57 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +619 -285
- package/dist/generated/generated.js.map +1 -1
- package/package.json +59 -59
- package/src/generated/generated.ts +513 -286
|
@@ -12757,6 +12757,7 @@ export declare class MJQuery_ {
|
|
|
12757
12757
|
EmbeddingModelID?: string;
|
|
12758
12758
|
CacheValidationSQL?: string;
|
|
12759
12759
|
SQLDialectID: string;
|
|
12760
|
+
Reusable: boolean;
|
|
12760
12761
|
Category?: string;
|
|
12761
12762
|
EmbeddingModel?: string;
|
|
12762
12763
|
SQLDialect: string;
|
|
@@ -12764,8 +12765,10 @@ export declare class MJQuery_ {
|
|
|
12764
12765
|
MJQueryPermissions_QueryIDArray: MJQueryPermission_[];
|
|
12765
12766
|
MJDataContextItems_QueryIDArray: MJDataContextItem_[];
|
|
12766
12767
|
MJQueryParameters_QueryIDArray: MJQueryParameter_[];
|
|
12768
|
+
MJQueryDependencies_DependsOnQueryIDArray: MJQueryDependency_[];
|
|
12767
12769
|
MJQueryEntities_QueryIDArray: MJQueryEntity_[];
|
|
12768
12770
|
MJQuerySQLs_QueryIDArray: MJQuerySQL_[];
|
|
12771
|
+
MJQueryDependencies_QueryIDArray: MJQueryDependency_[];
|
|
12769
12772
|
}
|
|
12770
12773
|
export declare class CreateMJQueryInput {
|
|
12771
12774
|
ID?: string;
|
|
@@ -12789,6 +12792,7 @@ export declare class CreateMJQueryInput {
|
|
|
12789
12792
|
EmbeddingModelID: string | null;
|
|
12790
12793
|
CacheValidationSQL: string | null;
|
|
12791
12794
|
SQLDialectID?: string;
|
|
12795
|
+
Reusable?: boolean;
|
|
12792
12796
|
}
|
|
12793
12797
|
export declare class UpdateMJQueryInput {
|
|
12794
12798
|
ID: string;
|
|
@@ -12812,6 +12816,7 @@ export declare class UpdateMJQueryInput {
|
|
|
12812
12816
|
EmbeddingModelID?: string | null;
|
|
12813
12817
|
CacheValidationSQL?: string | null;
|
|
12814
12818
|
SQLDialectID?: string;
|
|
12819
|
+
Reusable?: boolean;
|
|
12815
12820
|
OldValues___?: KeyValuePairInput[];
|
|
12816
12821
|
}
|
|
12817
12822
|
export declare class RunMJQueryViewResult {
|
|
@@ -12832,8 +12837,10 @@ export declare class MJQueryResolver extends ResolverBase {
|
|
|
12832
12837
|
MJQueryPermissions_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12833
12838
|
MJDataContextItems_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12834
12839
|
MJQueryParameters_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12840
|
+
MJQueryDependencies_DependsOnQueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12835
12841
|
MJQueryEntities_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12836
12842
|
MJQuerySQLs_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12843
|
+
MJQueryDependencies_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12837
12844
|
CreateMJQuery(input: CreateMJQueryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
12838
12845
|
UpdateMJQuery(input: UpdateMJQueryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
12839
12846
|
DeleteMJQuery(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -12899,6 +12906,56 @@ export declare class MJQueryCategoryResolver extends ResolverBase {
|
|
|
12899
12906
|
UpdateMJQueryCategory(input: UpdateMJQueryCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
12900
12907
|
DeleteMJQueryCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
12901
12908
|
}
|
|
12909
|
+
export declare class MJQueryDependency_ {
|
|
12910
|
+
ID: string;
|
|
12911
|
+
QueryID: string;
|
|
12912
|
+
DependsOnQueryID: string;
|
|
12913
|
+
ReferencePath: string;
|
|
12914
|
+
Alias?: string;
|
|
12915
|
+
ParameterMapping?: string;
|
|
12916
|
+
DetectionMethod: string;
|
|
12917
|
+
_mj__CreatedAt: Date;
|
|
12918
|
+
_mj__UpdatedAt: Date;
|
|
12919
|
+
Query: string;
|
|
12920
|
+
DependsOnQuery: string;
|
|
12921
|
+
}
|
|
12922
|
+
export declare class CreateMJQueryDependencyInput {
|
|
12923
|
+
ID?: string;
|
|
12924
|
+
QueryID?: string;
|
|
12925
|
+
DependsOnQueryID?: string;
|
|
12926
|
+
ReferencePath?: string;
|
|
12927
|
+
Alias: string | null;
|
|
12928
|
+
ParameterMapping: string | null;
|
|
12929
|
+
DetectionMethod?: string;
|
|
12930
|
+
}
|
|
12931
|
+
export declare class UpdateMJQueryDependencyInput {
|
|
12932
|
+
ID: string;
|
|
12933
|
+
QueryID?: string;
|
|
12934
|
+
DependsOnQueryID?: string;
|
|
12935
|
+
ReferencePath?: string;
|
|
12936
|
+
Alias?: string | null;
|
|
12937
|
+
ParameterMapping?: string | null;
|
|
12938
|
+
DetectionMethod?: string;
|
|
12939
|
+
OldValues___?: KeyValuePairInput[];
|
|
12940
|
+
}
|
|
12941
|
+
export declare class RunMJQueryDependencyViewResult {
|
|
12942
|
+
Results: MJQueryDependency_[];
|
|
12943
|
+
UserViewRunID?: string;
|
|
12944
|
+
RowCount: number;
|
|
12945
|
+
TotalRowCount: number;
|
|
12946
|
+
ExecutionTime: number;
|
|
12947
|
+
ErrorMessage?: string;
|
|
12948
|
+
Success: boolean;
|
|
12949
|
+
}
|
|
12950
|
+
export declare class MJQueryDependencyResolver extends ResolverBase {
|
|
12951
|
+
RunMJQueryDependencyViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
12952
|
+
RunMJQueryDependencyViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
12953
|
+
RunMJQueryDependencyDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
12954
|
+
MJQueryDependency(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJQueryDependency_ | null>;
|
|
12955
|
+
CreateMJQueryDependency(input: CreateMJQueryDependencyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
12956
|
+
UpdateMJQueryDependency(input: UpdateMJQueryDependencyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
12957
|
+
DeleteMJQueryDependency(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
12958
|
+
}
|
|
12902
12959
|
export declare class MJQueryEntity_ {
|
|
12903
12960
|
ID: string;
|
|
12904
12961
|
QueryID: string;
|