@memberjunction/server 5.8.0 → 5.10.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/README.md +1 -0
- package/dist/agents/skip-agent.d.ts.map +1 -1
- package/dist/agents/skip-agent.js +1 -0
- package/dist/agents/skip-agent.js.map +1 -1
- package/dist/agents/skip-sdk.d.ts +6 -0
- package/dist/agents/skip-sdk.d.ts.map +1 -1
- package/dist/agents/skip-sdk.js +5 -3
- package/dist/agents/skip-sdk.js.map +1 -1
- package/dist/apolloServer/index.d.ts +10 -2
- package/dist/apolloServer/index.d.ts.map +1 -1
- package/dist/apolloServer/index.js +22 -8
- package/dist/apolloServer/index.js.map +1 -1
- package/dist/config.d.ts +125 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +23 -0
- package/dist/config.js.map +1 -1
- package/dist/context.d.ts +17 -0
- package/dist/context.d.ts.map +1 -1
- package/dist/context.js +144 -62
- package/dist/context.js.map +1 -1
- package/dist/generated/generated.d.ts +210 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +1049 -0
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/CacheInvalidationResolver.d.ts +32 -0
- package/dist/generic/CacheInvalidationResolver.d.ts.map +1 -0
- package/dist/generic/CacheInvalidationResolver.js +80 -0
- package/dist/generic/CacheInvalidationResolver.js.map +1 -0
- package/dist/generic/PubSubManager.d.ts +27 -0
- package/dist/generic/PubSubManager.d.ts.map +1 -0
- package/dist/generic/PubSubManager.js +41 -0
- package/dist/generic/PubSubManager.js.map +1 -0
- package/dist/generic/ResolverBase.d.ts +14 -0
- package/dist/generic/ResolverBase.d.ts.map +1 -1
- package/dist/generic/ResolverBase.js +66 -4
- package/dist/generic/ResolverBase.js.map +1 -1
- package/dist/hooks.d.ts +65 -0
- package/dist/hooks.d.ts.map +1 -0
- package/dist/hooks.js +14 -0
- package/dist/hooks.js.map +1 -0
- package/dist/index.d.ts +7 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +173 -45
- package/dist/index.js.map +1 -1
- package/dist/multiTenancy/index.d.ts +47 -0
- package/dist/multiTenancy/index.d.ts.map +1 -0
- package/dist/multiTenancy/index.js +152 -0
- package/dist/multiTenancy/index.js.map +1 -0
- package/dist/resolvers/CurrentUserContextResolver.d.ts +18 -0
- package/dist/resolvers/CurrentUserContextResolver.d.ts.map +1 -0
- package/dist/resolvers/CurrentUserContextResolver.js +54 -0
- package/dist/resolvers/CurrentUserContextResolver.js.map +1 -0
- package/dist/resolvers/IntegrationDiscoveryResolver.d.ts +123 -0
- package/dist/resolvers/IntegrationDiscoveryResolver.d.ts.map +1 -0
- package/dist/resolvers/IntegrationDiscoveryResolver.js +624 -0
- package/dist/resolvers/IntegrationDiscoveryResolver.js.map +1 -0
- package/dist/rest/RESTEndpointHandler.d.ts +3 -1
- package/dist/rest/RESTEndpointHandler.d.ts.map +1 -1
- package/dist/rest/RESTEndpointHandler.js +14 -33
- package/dist/rest/RESTEndpointHandler.js.map +1 -1
- package/dist/test-dynamic-plugin.d.ts +6 -0
- package/dist/test-dynamic-plugin.d.ts.map +1 -0
- package/dist/test-dynamic-plugin.js +18 -0
- package/dist/test-dynamic-plugin.js.map +1 -0
- package/dist/types.d.ts +9 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +61 -57
- package/src/__tests__/bcsaas-integration.test.ts +455 -0
- package/src/__tests__/middleware-integration.test.ts +877 -0
- package/src/__tests__/mjapi-bootstrap.test.ts +29 -0
- package/src/__tests__/multiTenancy.security.test.ts +334 -0
- package/src/__tests__/multiTenancy.test.ts +225 -0
- package/src/__tests__/unifiedAuth.test.ts +416 -0
- package/src/agents/skip-agent.ts +1 -0
- package/src/agents/skip-sdk.ts +13 -3
- package/src/apolloServer/index.ts +32 -16
- package/src/config.ts +25 -0
- package/src/context.ts +205 -98
- package/src/generated/generated.ts +746 -1
- package/src/generic/CacheInvalidationResolver.ts +66 -0
- package/src/generic/PubSubManager.ts +46 -0
- package/src/generic/ResolverBase.ts +70 -4
- package/src/hooks.ts +77 -0
- package/src/index.ts +199 -49
- package/src/multiTenancy/index.ts +183 -0
- package/src/resolvers/CurrentUserContextResolver.ts +39 -0
- package/src/resolvers/IntegrationDiscoveryResolver.ts +584 -0
- package/src/rest/RESTEndpointHandler.ts +23 -42
- package/src/test-dynamic-plugin.ts +36 -0
- package/src/types.ts +10 -0
|
@@ -1740,6 +1740,7 @@ export declare class MJAIAgentRun_ {
|
|
|
1740
1740
|
PrimaryScopeEntityID?: string;
|
|
1741
1741
|
PrimaryScopeRecordID?: string;
|
|
1742
1742
|
SecondaryScopes?: string;
|
|
1743
|
+
ExternalReferenceID?: string;
|
|
1743
1744
|
Agent?: string;
|
|
1744
1745
|
ParentRun?: string;
|
|
1745
1746
|
Conversation?: string;
|
|
@@ -1805,6 +1806,7 @@ export declare class CreateMJAIAgentRunInput {
|
|
|
1805
1806
|
PrimaryScopeEntityID: string | null;
|
|
1806
1807
|
PrimaryScopeRecordID: string | null;
|
|
1807
1808
|
SecondaryScopes: string | null;
|
|
1809
|
+
ExternalReferenceID: string | null;
|
|
1808
1810
|
}
|
|
1809
1811
|
export declare class UpdateMJAIAgentRunInput {
|
|
1810
1812
|
ID: string;
|
|
@@ -1849,6 +1851,7 @@ export declare class UpdateMJAIAgentRunInput {
|
|
|
1849
1851
|
PrimaryScopeEntityID?: string | null;
|
|
1850
1852
|
PrimaryScopeRecordID?: string | null;
|
|
1851
1853
|
SecondaryScopes?: string | null;
|
|
1854
|
+
ExternalReferenceID?: string | null;
|
|
1852
1855
|
OldValues___?: KeyValuePairInput[];
|
|
1853
1856
|
}
|
|
1854
1857
|
export declare class RunMJAIAgentRunViewResult {
|
|
@@ -6144,6 +6147,16 @@ export declare class MJCompanyIntegration_ {
|
|
|
6144
6147
|
SourceTypeID?: string;
|
|
6145
6148
|
Configuration?: string;
|
|
6146
6149
|
CredentialID?: string;
|
|
6150
|
+
ScheduleEnabled: boolean;
|
|
6151
|
+
ScheduleType: string;
|
|
6152
|
+
ScheduleIntervalMinutes?: number;
|
|
6153
|
+
CronExpression?: string;
|
|
6154
|
+
NextScheduledRunAt?: Date;
|
|
6155
|
+
LastScheduledRunAt?: Date;
|
|
6156
|
+
IsLocked: boolean;
|
|
6157
|
+
LockedAt?: Date;
|
|
6158
|
+
LockedByInstance?: string;
|
|
6159
|
+
LockExpiresAt?: Date;
|
|
6147
6160
|
Company: string;
|
|
6148
6161
|
Integration: string;
|
|
6149
6162
|
DriverClassName?: string;
|
|
@@ -6175,6 +6188,16 @@ export declare class CreateMJCompanyIntegrationInput {
|
|
|
6175
6188
|
SourceTypeID: string | null;
|
|
6176
6189
|
Configuration: string | null;
|
|
6177
6190
|
CredentialID: string | null;
|
|
6191
|
+
ScheduleEnabled?: boolean;
|
|
6192
|
+
ScheduleType?: string;
|
|
6193
|
+
ScheduleIntervalMinutes: number | null;
|
|
6194
|
+
CronExpression: string | null;
|
|
6195
|
+
NextScheduledRunAt: Date | null;
|
|
6196
|
+
LastScheduledRunAt: Date | null;
|
|
6197
|
+
IsLocked?: boolean;
|
|
6198
|
+
LockedAt: Date | null;
|
|
6199
|
+
LockedByInstance: string | null;
|
|
6200
|
+
LockExpiresAt: Date | null;
|
|
6178
6201
|
}
|
|
6179
6202
|
export declare class UpdateMJCompanyIntegrationInput {
|
|
6180
6203
|
ID: string;
|
|
@@ -6194,6 +6217,16 @@ export declare class UpdateMJCompanyIntegrationInput {
|
|
|
6194
6217
|
SourceTypeID?: string | null;
|
|
6195
6218
|
Configuration?: string | null;
|
|
6196
6219
|
CredentialID?: string | null;
|
|
6220
|
+
ScheduleEnabled?: boolean;
|
|
6221
|
+
ScheduleType?: string;
|
|
6222
|
+
ScheduleIntervalMinutes?: number | null;
|
|
6223
|
+
CronExpression?: string | null;
|
|
6224
|
+
NextScheduledRunAt?: Date | null;
|
|
6225
|
+
LastScheduledRunAt?: Date | null;
|
|
6226
|
+
IsLocked?: boolean;
|
|
6227
|
+
LockedAt?: Date | null;
|
|
6228
|
+
LockedByInstance?: string | null;
|
|
6229
|
+
LockExpiresAt?: Date | null;
|
|
6197
6230
|
OldValues___?: KeyValuePairInput[];
|
|
6198
6231
|
}
|
|
6199
6232
|
export declare class RunMJCompanyIntegrationViewResult {
|
|
@@ -10862,6 +10895,181 @@ export declare class MJGeneratedCodeResolver extends ResolverBase {
|
|
|
10862
10895
|
UpdateMJGeneratedCode(input: UpdateMJGeneratedCodeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10863
10896
|
DeleteMJGeneratedCode(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10864
10897
|
}
|
|
10898
|
+
export declare class MJIntegrationObjectField_ {
|
|
10899
|
+
ID: string;
|
|
10900
|
+
IntegrationObjectID: string;
|
|
10901
|
+
Name: string;
|
|
10902
|
+
DisplayName?: string;
|
|
10903
|
+
Description?: string;
|
|
10904
|
+
Category?: string;
|
|
10905
|
+
Type: string;
|
|
10906
|
+
Length?: number;
|
|
10907
|
+
Precision?: number;
|
|
10908
|
+
Scale?: number;
|
|
10909
|
+
AllowsNull: boolean;
|
|
10910
|
+
DefaultValue?: string;
|
|
10911
|
+
IsPrimaryKey: boolean;
|
|
10912
|
+
IsUniqueKey: boolean;
|
|
10913
|
+
IsReadOnly: boolean;
|
|
10914
|
+
IsRequired: boolean;
|
|
10915
|
+
RelatedIntegrationObjectID?: string;
|
|
10916
|
+
RelatedIntegrationObjectFieldName?: string;
|
|
10917
|
+
Sequence: number;
|
|
10918
|
+
Configuration?: string;
|
|
10919
|
+
Status: string;
|
|
10920
|
+
_mj__CreatedAt: Date;
|
|
10921
|
+
_mj__UpdatedAt: Date;
|
|
10922
|
+
IntegrationObject: string;
|
|
10923
|
+
RelatedIntegrationObject?: string;
|
|
10924
|
+
}
|
|
10925
|
+
export declare class CreateMJIntegrationObjectFieldInput {
|
|
10926
|
+
ID?: string;
|
|
10927
|
+
IntegrationObjectID?: string;
|
|
10928
|
+
Name?: string;
|
|
10929
|
+
DisplayName: string | null;
|
|
10930
|
+
Description: string | null;
|
|
10931
|
+
Category: string | null;
|
|
10932
|
+
Type?: string;
|
|
10933
|
+
Length: number | null;
|
|
10934
|
+
Precision: number | null;
|
|
10935
|
+
Scale: number | null;
|
|
10936
|
+
AllowsNull?: boolean;
|
|
10937
|
+
DefaultValue: string | null;
|
|
10938
|
+
IsPrimaryKey?: boolean;
|
|
10939
|
+
IsUniqueKey?: boolean;
|
|
10940
|
+
IsReadOnly?: boolean;
|
|
10941
|
+
IsRequired?: boolean;
|
|
10942
|
+
RelatedIntegrationObjectID: string | null;
|
|
10943
|
+
RelatedIntegrationObjectFieldName: string | null;
|
|
10944
|
+
Sequence?: number;
|
|
10945
|
+
Configuration: string | null;
|
|
10946
|
+
Status?: string;
|
|
10947
|
+
}
|
|
10948
|
+
export declare class UpdateMJIntegrationObjectFieldInput {
|
|
10949
|
+
ID: string;
|
|
10950
|
+
IntegrationObjectID?: string;
|
|
10951
|
+
Name?: string;
|
|
10952
|
+
DisplayName?: string | null;
|
|
10953
|
+
Description?: string | null;
|
|
10954
|
+
Category?: string | null;
|
|
10955
|
+
Type?: string;
|
|
10956
|
+
Length?: number | null;
|
|
10957
|
+
Precision?: number | null;
|
|
10958
|
+
Scale?: number | null;
|
|
10959
|
+
AllowsNull?: boolean;
|
|
10960
|
+
DefaultValue?: string | null;
|
|
10961
|
+
IsPrimaryKey?: boolean;
|
|
10962
|
+
IsUniqueKey?: boolean;
|
|
10963
|
+
IsReadOnly?: boolean;
|
|
10964
|
+
IsRequired?: boolean;
|
|
10965
|
+
RelatedIntegrationObjectID?: string | null;
|
|
10966
|
+
RelatedIntegrationObjectFieldName?: string | null;
|
|
10967
|
+
Sequence?: number;
|
|
10968
|
+
Configuration?: string | null;
|
|
10969
|
+
Status?: string;
|
|
10970
|
+
OldValues___?: KeyValuePairInput[];
|
|
10971
|
+
}
|
|
10972
|
+
export declare class RunMJIntegrationObjectFieldViewResult {
|
|
10973
|
+
Results: MJIntegrationObjectField_[];
|
|
10974
|
+
UserViewRunID?: string;
|
|
10975
|
+
RowCount: number;
|
|
10976
|
+
TotalRowCount: number;
|
|
10977
|
+
ExecutionTime: number;
|
|
10978
|
+
ErrorMessage?: string;
|
|
10979
|
+
Success: boolean;
|
|
10980
|
+
}
|
|
10981
|
+
export declare class MJIntegrationObjectFieldResolver extends ResolverBase {
|
|
10982
|
+
RunMJIntegrationObjectFieldViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10983
|
+
RunMJIntegrationObjectFieldViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10984
|
+
RunMJIntegrationObjectFieldDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10985
|
+
MJIntegrationObjectField(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJIntegrationObjectField_ | null>;
|
|
10986
|
+
CreateMJIntegrationObjectField(input: CreateMJIntegrationObjectFieldInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10987
|
+
UpdateMJIntegrationObjectField(input: UpdateMJIntegrationObjectFieldInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10988
|
+
DeleteMJIntegrationObjectField(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10989
|
+
}
|
|
10990
|
+
export declare class MJIntegrationObject_ {
|
|
10991
|
+
ID: string;
|
|
10992
|
+
IntegrationID: string;
|
|
10993
|
+
Name: string;
|
|
10994
|
+
DisplayName?: string;
|
|
10995
|
+
Description?: string;
|
|
10996
|
+
Category?: string;
|
|
10997
|
+
APIPath: string;
|
|
10998
|
+
ResponseDataKey?: string;
|
|
10999
|
+
DefaultPageSize: number;
|
|
11000
|
+
SupportsPagination: boolean;
|
|
11001
|
+
PaginationType: string;
|
|
11002
|
+
SupportsIncrementalSync: boolean;
|
|
11003
|
+
SupportsWrite: boolean;
|
|
11004
|
+
DefaultQueryParams?: string;
|
|
11005
|
+
Configuration?: string;
|
|
11006
|
+
Sequence: number;
|
|
11007
|
+
Status: string;
|
|
11008
|
+
_mj__CreatedAt: Date;
|
|
11009
|
+
_mj__UpdatedAt: Date;
|
|
11010
|
+
Integration: string;
|
|
11011
|
+
MJIntegrationObjectFields_IntegrationObjectIDArray: MJIntegrationObjectField_[];
|
|
11012
|
+
MJIntegrationObjectFields_RelatedIntegrationObjectIDArray: MJIntegrationObjectField_[];
|
|
11013
|
+
}
|
|
11014
|
+
export declare class CreateMJIntegrationObjectInput {
|
|
11015
|
+
ID?: string;
|
|
11016
|
+
IntegrationID?: string;
|
|
11017
|
+
Name?: string;
|
|
11018
|
+
DisplayName: string | null;
|
|
11019
|
+
Description: string | null;
|
|
11020
|
+
Category: string | null;
|
|
11021
|
+
APIPath?: string;
|
|
11022
|
+
ResponseDataKey: string | null;
|
|
11023
|
+
DefaultPageSize?: number;
|
|
11024
|
+
SupportsPagination?: boolean;
|
|
11025
|
+
PaginationType?: string;
|
|
11026
|
+
SupportsIncrementalSync?: boolean;
|
|
11027
|
+
SupportsWrite?: boolean;
|
|
11028
|
+
DefaultQueryParams: string | null;
|
|
11029
|
+
Configuration: string | null;
|
|
11030
|
+
Sequence?: number;
|
|
11031
|
+
Status?: string;
|
|
11032
|
+
}
|
|
11033
|
+
export declare class UpdateMJIntegrationObjectInput {
|
|
11034
|
+
ID: string;
|
|
11035
|
+
IntegrationID?: string;
|
|
11036
|
+
Name?: string;
|
|
11037
|
+
DisplayName?: string | null;
|
|
11038
|
+
Description?: string | null;
|
|
11039
|
+
Category?: string | null;
|
|
11040
|
+
APIPath?: string;
|
|
11041
|
+
ResponseDataKey?: string | null;
|
|
11042
|
+
DefaultPageSize?: number;
|
|
11043
|
+
SupportsPagination?: boolean;
|
|
11044
|
+
PaginationType?: string;
|
|
11045
|
+
SupportsIncrementalSync?: boolean;
|
|
11046
|
+
SupportsWrite?: boolean;
|
|
11047
|
+
DefaultQueryParams?: string | null;
|
|
11048
|
+
Configuration?: string | null;
|
|
11049
|
+
Sequence?: number;
|
|
11050
|
+
Status?: string;
|
|
11051
|
+
OldValues___?: KeyValuePairInput[];
|
|
11052
|
+
}
|
|
11053
|
+
export declare class RunMJIntegrationObjectViewResult {
|
|
11054
|
+
Results: MJIntegrationObject_[];
|
|
11055
|
+
UserViewRunID?: string;
|
|
11056
|
+
RowCount: number;
|
|
11057
|
+
TotalRowCount: number;
|
|
11058
|
+
ExecutionTime: number;
|
|
11059
|
+
ErrorMessage?: string;
|
|
11060
|
+
Success: boolean;
|
|
11061
|
+
}
|
|
11062
|
+
export declare class MJIntegrationObjectResolver extends ResolverBase {
|
|
11063
|
+
RunMJIntegrationObjectViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11064
|
+
RunMJIntegrationObjectViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11065
|
+
RunMJIntegrationObjectDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11066
|
+
MJIntegrationObject(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJIntegrationObject_ | null>;
|
|
11067
|
+
MJIntegrationObjectFields_IntegrationObjectIDArray(mjintegrationobject_: MJIntegrationObject_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11068
|
+
MJIntegrationObjectFields_RelatedIntegrationObjectIDArray(mjintegrationobject_: MJIntegrationObject_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11069
|
+
CreateMJIntegrationObject(input: CreateMJIntegrationObjectInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11070
|
+
UpdateMJIntegrationObject(input: UpdateMJIntegrationObjectInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11071
|
+
DeleteMJIntegrationObject(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11072
|
+
}
|
|
10865
11073
|
export declare class MJIntegrationSourceType_ {
|
|
10866
11074
|
ID: string;
|
|
10867
11075
|
Name: string;
|
|
@@ -10971,6 +11179,7 @@ export declare class MJIntegration_ {
|
|
|
10971
11179
|
MJIntegrationURLFormats_IntegrationIDArray: MJIntegrationURLFormat_[];
|
|
10972
11180
|
MJCompanyIntegrations_IntegrationIDArray: MJCompanyIntegration_[];
|
|
10973
11181
|
MJRecordChanges_IntegrationIDArray: MJRecordChange_[];
|
|
11182
|
+
MJIntegrationObjects_IntegrationIDArray: MJIntegrationObject_[];
|
|
10974
11183
|
}
|
|
10975
11184
|
export declare class CreateMJIntegrationInput {
|
|
10976
11185
|
Name?: string;
|
|
@@ -11013,6 +11222,7 @@ export declare class MJIntegrationResolver extends ResolverBase {
|
|
|
11013
11222
|
MJIntegrationURLFormats_IntegrationIDArray(mjintegration_: MJIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11014
11223
|
MJCompanyIntegrations_IntegrationIDArray(mjintegration_: MJIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11015
11224
|
MJRecordChanges_IntegrationIDArray(mjintegration_: MJIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11225
|
+
MJIntegrationObjects_IntegrationIDArray(mjintegration_: MJIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11016
11226
|
CreateMJIntegration(input: CreateMJIntegrationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11017
11227
|
UpdateMJIntegration(input: UpdateMJIntegrationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11018
11228
|
DeleteMJIntegration(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|