@memberjunction/server 5.39.0 → 5.40.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/auth/index.js +1 -1
- package/dist/auth/index.js.map +1 -1
- package/dist/auth/magicLink/MagicLinkKeys.d.ts +58 -0
- package/dist/auth/magicLink/MagicLinkKeys.d.ts.map +1 -0
- package/dist/auth/magicLink/MagicLinkKeys.js +99 -0
- package/dist/auth/magicLink/MagicLinkKeys.js.map +1 -0
- package/dist/auth/magicLink/MagicLinkRouter.d.ts +33 -0
- package/dist/auth/magicLink/MagicLinkRouter.d.ts.map +1 -0
- package/dist/auth/magicLink/MagicLinkRouter.js +184 -0
- package/dist/auth/magicLink/MagicLinkRouter.js.map +1 -0
- package/dist/auth/magicLink/MagicLinkService.d.ts +123 -0
- package/dist/auth/magicLink/MagicLinkService.d.ts.map +1 -0
- package/dist/auth/magicLink/MagicLinkService.js +605 -0
- package/dist/auth/magicLink/MagicLinkService.js.map +1 -0
- package/dist/auth/magicLink/index.d.ts +6 -0
- package/dist/auth/magicLink/index.d.ts.map +1 -0
- package/dist/auth/magicLink/index.js +6 -0
- package/dist/auth/magicLink/index.js.map +1 -0
- package/dist/auth/magicLink/magicLinkCore.d.ts +82 -0
- package/dist/auth/magicLink/magicLinkCore.d.ts.map +1 -0
- package/dist/auth/magicLink/magicLinkCore.js +164 -0
- package/dist/auth/magicLink/magicLinkCore.js.map +1 -0
- package/dist/auth/magicLink/redeemLanding.d.ts +22 -0
- package/dist/auth/magicLink/redeemLanding.d.ts.map +1 -0
- package/dist/auth/magicLink/redeemLanding.js +61 -0
- package/dist/auth/magicLink/redeemLanding.js.map +1 -0
- package/dist/auth/magicLink/types.d.ts +131 -0
- package/dist/auth/magicLink/types.d.ts.map +1 -0
- package/dist/auth/magicLink/types.js +6 -0
- package/dist/auth/magicLink/types.js.map +1 -0
- package/dist/config.d.ts +411 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +60 -0
- package/dist/config.js.map +1 -1
- package/dist/context.d.ts.map +1 -1
- package/dist/context.js +225 -2
- package/dist/context.js.map +1 -1
- package/dist/generated/generated.d.ts +877 -4
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +17779 -12750
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/ResolverBase.d.ts.map +1 -1
- package/dist/generic/ResolverBase.js +35 -7
- package/dist/generic/ResolverBase.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +25 -0
- package/dist/index.js.map +1 -1
- package/dist/resolvers/CurrentUserContextResolver.d.ts +9 -3
- package/dist/resolvers/CurrentUserContextResolver.d.ts.map +1 -1
- package/dist/resolvers/CurrentUserContextResolver.js +19 -5
- package/dist/resolvers/CurrentUserContextResolver.js.map +1 -1
- package/dist/resolvers/EntityResolver.d.ts.map +1 -1
- package/dist/resolvers/EntityResolver.js +13 -2
- package/dist/resolvers/EntityResolver.js.map +1 -1
- package/dist/resolvers/GenerateSeedTaxonomyResolver.d.ts +28 -0
- package/dist/resolvers/GenerateSeedTaxonomyResolver.d.ts.map +1 -0
- package/dist/resolvers/GenerateSeedTaxonomyResolver.js +100 -0
- package/dist/resolvers/GenerateSeedTaxonomyResolver.js.map +1 -0
- package/dist/resolvers/RunClusterAnalysisResolver.d.ts +74 -0
- package/dist/resolvers/RunClusterAnalysisResolver.d.ts.map +1 -0
- package/dist/resolvers/RunClusterAnalysisResolver.js +243 -0
- package/dist/resolvers/RunClusterAnalysisResolver.js.map +1 -0
- package/dist/resolvers/UserResolver.d.ts +16 -2
- package/dist/resolvers/UserResolver.d.ts.map +1 -1
- package/dist/resolvers/UserResolver.js +45 -2
- package/dist/resolvers/UserResolver.js.map +1 -1
- package/dist/rest/SignatureWebhookHandler.d.ts +19 -0
- package/dist/rest/SignatureWebhookHandler.d.ts.map +1 -0
- package/dist/rest/SignatureWebhookHandler.js +86 -0
- package/dist/rest/SignatureWebhookHandler.js.map +1 -0
- package/package.json +75 -71
- package/src/__tests__/magicLink.test.ts +387 -0
- package/src/auth/index.ts +2 -2
- package/src/auth/magicLink/MagicLinkKeys.ts +122 -0
- package/src/auth/magicLink/MagicLinkRouter.ts +209 -0
- package/src/auth/magicLink/MagicLinkService.ts +724 -0
- package/src/auth/magicLink/index.ts +17 -0
- package/src/auth/magicLink/magicLinkCore.ts +216 -0
- package/src/auth/magicLink/redeemLanding.ts +62 -0
- package/src/auth/magicLink/types.ts +137 -0
- package/src/config.ts +62 -0
- package/src/context.ts +252 -3
- package/src/generated/generated.ts +12302 -8878
- package/src/generic/ResolverBase.ts +35 -7
- package/src/index.ts +28 -0
- package/src/resolvers/CurrentUserContextResolver.ts +21 -5
- package/src/resolvers/EntityResolver.ts +17 -5
- package/src/resolvers/GenerateSeedTaxonomyResolver.ts +90 -0
- package/src/resolvers/RunClusterAnalysisResolver.ts +249 -0
- package/src/resolvers/UserResolver.ts +38 -2
- package/src/rest/SignatureWebhookHandler.ts +103 -0
|
@@ -2023,6 +2023,7 @@ export declare class MJAIAgentRun_ {
|
|
|
2023
2023
|
CompanyID?: string;
|
|
2024
2024
|
TotalCacheReadTokensUsed?: number;
|
|
2025
2025
|
TotalCacheWriteTokensUsed?: number;
|
|
2026
|
+
LastHeartbeatAt?: Date;
|
|
2026
2027
|
Agent?: string;
|
|
2027
2028
|
ParentRun?: string;
|
|
2028
2029
|
Conversation?: string;
|
|
@@ -2094,6 +2095,7 @@ export declare class CreateMJAIAgentRunInput {
|
|
|
2094
2095
|
CompanyID: string | null;
|
|
2095
2096
|
TotalCacheReadTokensUsed: number | null;
|
|
2096
2097
|
TotalCacheWriteTokensUsed: number | null;
|
|
2098
|
+
LastHeartbeatAt: Date | null;
|
|
2097
2099
|
RestoreContext___?: RestoreContextInput;
|
|
2098
2100
|
}
|
|
2099
2101
|
export declare class UpdateMJAIAgentRunInput {
|
|
@@ -2143,6 +2145,7 @@ export declare class UpdateMJAIAgentRunInput {
|
|
|
2143
2145
|
CompanyID?: string | null;
|
|
2144
2146
|
TotalCacheReadTokensUsed?: number | null;
|
|
2145
2147
|
TotalCacheWriteTokensUsed?: number | null;
|
|
2148
|
+
LastHeartbeatAt?: Date | null;
|
|
2146
2149
|
OldValues___?: KeyValuePairInput[];
|
|
2147
2150
|
RestoreContext___?: RestoreContextInput;
|
|
2148
2151
|
}
|
|
@@ -4027,6 +4030,7 @@ export declare class MJAIPromptRun_ {
|
|
|
4027
4030
|
MJAIPromptRunMedias_PromptRunIDArray: MJAIPromptRunMedia_[];
|
|
4028
4031
|
MJAIPromptRuns_RerunFromPromptRunIDArray: MJAIPromptRun_[];
|
|
4029
4032
|
MJAIResultCache_PromptRunIDArray: MJAIResultCache_[];
|
|
4033
|
+
MJContentItemTags_AIPromptRunIDArray: MJContentItemTag_[];
|
|
4030
4034
|
MJAIPromptRuns_ParentIDArray: MJAIPromptRun_[];
|
|
4031
4035
|
}
|
|
4032
4036
|
export declare class CreateMJAIPromptRunInput {
|
|
@@ -4228,6 +4232,7 @@ export declare class MJAIPromptRunResolver extends ResolverBase {
|
|
|
4228
4232
|
MJAIPromptRunMedias_PromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4229
4233
|
MJAIPromptRuns_RerunFromPromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4230
4234
|
MJAIResultCache_PromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4235
|
+
MJContentItemTags_AIPromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4231
4236
|
MJAIPromptRuns_ParentIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4232
4237
|
CreateMJAIPromptRun(input: CreateMJAIPromptRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4233
4238
|
UpdateMJAIPromptRun(input: UpdateMJAIPromptRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4988,6 +4993,7 @@ export declare class MJAPIKey_ {
|
|
|
4988
4993
|
CreatedByUserID: string;
|
|
4989
4994
|
_mj__CreatedAt: Date;
|
|
4990
4995
|
_mj__UpdatedAt: Date;
|
|
4996
|
+
KeyPrefix?: string;
|
|
4991
4997
|
User: string;
|
|
4992
4998
|
CreatedByUser: string;
|
|
4993
4999
|
MJAPIKeyApplications_APIKeyIDArray: MJAPIKeyApplication_[];
|
|
@@ -5004,6 +5010,7 @@ export declare class CreateMJAPIKeyInput {
|
|
|
5004
5010
|
ExpiresAt: Date | null;
|
|
5005
5011
|
LastUsedAt: Date | null;
|
|
5006
5012
|
CreatedByUserID?: string;
|
|
5013
|
+
KeyPrefix: string | null;
|
|
5007
5014
|
RestoreContext___?: RestoreContextInput;
|
|
5008
5015
|
}
|
|
5009
5016
|
export declare class UpdateMJAPIKeyInput {
|
|
@@ -5016,6 +5023,7 @@ export declare class UpdateMJAPIKeyInput {
|
|
|
5016
5023
|
ExpiresAt?: Date | null;
|
|
5017
5024
|
LastUsedAt?: Date | null;
|
|
5018
5025
|
CreatedByUserID?: string;
|
|
5026
|
+
KeyPrefix?: string | null;
|
|
5019
5027
|
OldValues___?: KeyValuePairInput[];
|
|
5020
5028
|
RestoreContext___?: RestoreContextInput;
|
|
5021
5029
|
}
|
|
@@ -5202,17 +5210,17 @@ export declare class MJApplicationRoleResolver extends ResolverBase {
|
|
|
5202
5210
|
}
|
|
5203
5211
|
export declare class MJApplicationSetting_ {
|
|
5204
5212
|
ID: string;
|
|
5205
|
-
ApplicationID
|
|
5213
|
+
ApplicationID?: string;
|
|
5206
5214
|
Name: string;
|
|
5207
5215
|
Value: string;
|
|
5208
5216
|
Comments?: string;
|
|
5209
5217
|
_mj__CreatedAt: Date;
|
|
5210
5218
|
_mj__UpdatedAt: Date;
|
|
5211
|
-
Application
|
|
5219
|
+
Application?: string;
|
|
5212
5220
|
}
|
|
5213
5221
|
export declare class CreateMJApplicationSettingInput {
|
|
5214
5222
|
ID?: string;
|
|
5215
|
-
ApplicationID
|
|
5223
|
+
ApplicationID: string | null;
|
|
5216
5224
|
Name?: string;
|
|
5217
5225
|
Value?: string;
|
|
5218
5226
|
Comments: string | null;
|
|
@@ -5220,7 +5228,7 @@ export declare class CreateMJApplicationSettingInput {
|
|
|
5220
5228
|
}
|
|
5221
5229
|
export declare class UpdateMJApplicationSettingInput {
|
|
5222
5230
|
ID: string;
|
|
5223
|
-
ApplicationID?: string;
|
|
5231
|
+
ApplicationID?: string | null;
|
|
5224
5232
|
Name?: string;
|
|
5225
5233
|
Value?: string;
|
|
5226
5234
|
Comments?: string | null;
|
|
@@ -5271,6 +5279,8 @@ export declare class MJApplication_ {
|
|
|
5271
5279
|
MJApplicationRoles_ApplicationIDArray: MJApplicationRole_[];
|
|
5272
5280
|
MJDashboardUserPreferences_ApplicationIDArray: MJDashboardUserPreference_[];
|
|
5273
5281
|
MJConversations_ApplicationIDArray: MJConversation_[];
|
|
5282
|
+
MJMagicLinkInviteApplications_ApplicationIDArray: MJMagicLinkInviteApplication_[];
|
|
5283
|
+
MJMagicLinkInvites_ApplicationIDArray: MJMagicLinkInvite_[];
|
|
5274
5284
|
}
|
|
5275
5285
|
export declare class CreateMJApplicationInput {
|
|
5276
5286
|
ID?: string;
|
|
@@ -5333,6 +5343,8 @@ export declare class MJApplicationResolver extends ResolverBase {
|
|
|
5333
5343
|
MJApplicationRoles_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5334
5344
|
MJDashboardUserPreferences_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5335
5345
|
MJConversations_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5346
|
+
MJMagicLinkInviteApplications_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5347
|
+
MJMagicLinkInvites_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5336
5348
|
CreateMJApplication(input: CreateMJApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5337
5349
|
UpdateMJApplication(input: UpdateMJApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5338
5350
|
DeleteMJApplication(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5878,6 +5890,7 @@ export declare class MJArtifactVersion_ {
|
|
|
5878
5890
|
MJArtifactUses_ArtifactVersionIDArray: MJArtifactUse_[];
|
|
5879
5891
|
MJConversationDetailArtifacts_ArtifactVersionIDArray: MJConversationDetailArtifact_[];
|
|
5880
5892
|
MJConversationDetailAttachments_ArtifactVersionIDArray: MJConversationDetailAttachment_[];
|
|
5893
|
+
MJSignatureRequestDocuments_ArtifactVersionIDArray: MJSignatureRequestDocument_[];
|
|
5881
5894
|
}
|
|
5882
5895
|
export declare class CreateMJArtifactVersionInput {
|
|
5883
5896
|
ID?: string;
|
|
@@ -5937,6 +5950,7 @@ export declare class MJArtifactVersionResolver extends ResolverBase {
|
|
|
5937
5950
|
MJArtifactUses_ArtifactVersionIDArray(mjartifactversion_: MJArtifactVersion_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5938
5951
|
MJConversationDetailArtifacts_ArtifactVersionIDArray(mjartifactversion_: MJArtifactVersion_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5939
5952
|
MJConversationDetailAttachments_ArtifactVersionIDArray(mjartifactversion_: MJArtifactVersion_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5953
|
+
MJSignatureRequestDocuments_ArtifactVersionIDArray(mjartifactversion_: MJArtifactVersion_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5940
5954
|
CreateMJArtifactVersion(input: CreateMJArtifactVersionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5941
5955
|
UpdateMJArtifactVersion(input: UpdateMJArtifactVersionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5942
5956
|
DeleteMJArtifactVersion(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5957,6 +5971,7 @@ export declare class MJArtifact_ {
|
|
|
5957
5971
|
User: string;
|
|
5958
5972
|
MJArtifactVersions_ArtifactIDArray: MJArtifactVersion_[];
|
|
5959
5973
|
MJArtifactPermissions_ArtifactIDArray: MJArtifactPermission_[];
|
|
5974
|
+
MJSignatureRequestDocuments_ArtifactIDArray: MJSignatureRequestDocument_[];
|
|
5960
5975
|
}
|
|
5961
5976
|
export declare class CreateMJArtifactInput {
|
|
5962
5977
|
ID?: string;
|
|
@@ -5997,6 +6012,7 @@ export declare class MJArtifactResolver extends ResolverBase {
|
|
|
5997
6012
|
MJArtifact(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJArtifact_ | null>;
|
|
5998
6013
|
MJArtifactVersions_ArtifactIDArray(mjartifact_: MJArtifact_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5999
6014
|
MJArtifactPermissions_ArtifactIDArray(mjartifact_: MJArtifact_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6015
|
+
MJSignatureRequestDocuments_ArtifactIDArray(mjartifact_: MJArtifact_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6000
6016
|
CreateMJArtifact(input: CreateMJArtifactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6001
6017
|
UpdateMJArtifact(input: UpdateMJArtifactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6002
6018
|
DeleteMJArtifact(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6217,6 +6233,123 @@ export declare class MJAuthorizationResolver extends ResolverBase {
|
|
|
6217
6233
|
UpdateMJAuthorization(input: UpdateMJAuthorizationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6218
6234
|
DeleteMJAuthorization(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6219
6235
|
}
|
|
6236
|
+
export declare class MJClusterAnalysis_ {
|
|
6237
|
+
ID: string;
|
|
6238
|
+
Name: string;
|
|
6239
|
+
Description?: string;
|
|
6240
|
+
UserID: string;
|
|
6241
|
+
EntityID?: string;
|
|
6242
|
+
Algorithm: string;
|
|
6243
|
+
Configuration?: string;
|
|
6244
|
+
Metrics?: string;
|
|
6245
|
+
ProjectedPoints?: string;
|
|
6246
|
+
ViewportState?: string;
|
|
6247
|
+
Status: string;
|
|
6248
|
+
_mj__CreatedAt: Date;
|
|
6249
|
+
_mj__UpdatedAt: Date;
|
|
6250
|
+
User: string;
|
|
6251
|
+
Entity?: string;
|
|
6252
|
+
MJClusterAnalysisClusters_ClusterAnalysisIDArray: MJClusterAnalysisCluster_[];
|
|
6253
|
+
}
|
|
6254
|
+
export declare class CreateMJClusterAnalysisInput {
|
|
6255
|
+
ID?: string;
|
|
6256
|
+
Name?: string;
|
|
6257
|
+
Description: string | null;
|
|
6258
|
+
UserID?: string;
|
|
6259
|
+
EntityID: string | null;
|
|
6260
|
+
Algorithm?: string;
|
|
6261
|
+
Configuration: string | null;
|
|
6262
|
+
Metrics: string | null;
|
|
6263
|
+
ProjectedPoints: string | null;
|
|
6264
|
+
ViewportState: string | null;
|
|
6265
|
+
Status?: string;
|
|
6266
|
+
RestoreContext___?: RestoreContextInput;
|
|
6267
|
+
}
|
|
6268
|
+
export declare class UpdateMJClusterAnalysisInput {
|
|
6269
|
+
ID: string;
|
|
6270
|
+
Name?: string;
|
|
6271
|
+
Description?: string | null;
|
|
6272
|
+
UserID?: string;
|
|
6273
|
+
EntityID?: string | null;
|
|
6274
|
+
Algorithm?: string;
|
|
6275
|
+
Configuration?: string | null;
|
|
6276
|
+
Metrics?: string | null;
|
|
6277
|
+
ProjectedPoints?: string | null;
|
|
6278
|
+
ViewportState?: string | null;
|
|
6279
|
+
Status?: string;
|
|
6280
|
+
OldValues___?: KeyValuePairInput[];
|
|
6281
|
+
RestoreContext___?: RestoreContextInput;
|
|
6282
|
+
}
|
|
6283
|
+
export declare class RunMJClusterAnalysisViewResult {
|
|
6284
|
+
Results: MJClusterAnalysis_[];
|
|
6285
|
+
UserViewRunID?: string;
|
|
6286
|
+
RowCount: number;
|
|
6287
|
+
TotalRowCount: number;
|
|
6288
|
+
ExecutionTime: number;
|
|
6289
|
+
ErrorMessage?: string;
|
|
6290
|
+
Success: boolean;
|
|
6291
|
+
}
|
|
6292
|
+
export declare class MJClusterAnalysisResolver extends ResolverBase {
|
|
6293
|
+
RunMJClusterAnalysisViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6294
|
+
RunMJClusterAnalysisViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6295
|
+
RunMJClusterAnalysisDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6296
|
+
MJClusterAnalysis(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJClusterAnalysis_ | null>;
|
|
6297
|
+
MJClusterAnalysisClusters_ClusterAnalysisIDArray(mjclusteranalysis_: MJClusterAnalysis_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6298
|
+
CreateMJClusterAnalysis(input: CreateMJClusterAnalysisInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6299
|
+
UpdateMJClusterAnalysis(input: UpdateMJClusterAnalysisInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6300
|
+
DeleteMJClusterAnalysis(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6301
|
+
}
|
|
6302
|
+
export declare class MJClusterAnalysisCluster_ {
|
|
6303
|
+
ID: string;
|
|
6304
|
+
ClusterAnalysisID: string;
|
|
6305
|
+
ClusterIndex: number;
|
|
6306
|
+
Label?: string;
|
|
6307
|
+
MemberCount: number;
|
|
6308
|
+
Color?: string;
|
|
6309
|
+
IsUserEdited: boolean;
|
|
6310
|
+
_mj__CreatedAt: Date;
|
|
6311
|
+
_mj__UpdatedAt: Date;
|
|
6312
|
+
ClusterAnalysis: string;
|
|
6313
|
+
}
|
|
6314
|
+
export declare class CreateMJClusterAnalysisClusterInput {
|
|
6315
|
+
ID?: string;
|
|
6316
|
+
ClusterAnalysisID?: string;
|
|
6317
|
+
ClusterIndex?: number;
|
|
6318
|
+
Label: string | null;
|
|
6319
|
+
MemberCount?: number;
|
|
6320
|
+
Color: string | null;
|
|
6321
|
+
IsUserEdited?: boolean;
|
|
6322
|
+
RestoreContext___?: RestoreContextInput;
|
|
6323
|
+
}
|
|
6324
|
+
export declare class UpdateMJClusterAnalysisClusterInput {
|
|
6325
|
+
ID: string;
|
|
6326
|
+
ClusterAnalysisID?: string;
|
|
6327
|
+
ClusterIndex?: number;
|
|
6328
|
+
Label?: string | null;
|
|
6329
|
+
MemberCount?: number;
|
|
6330
|
+
Color?: string | null;
|
|
6331
|
+
IsUserEdited?: boolean;
|
|
6332
|
+
OldValues___?: KeyValuePairInput[];
|
|
6333
|
+
RestoreContext___?: RestoreContextInput;
|
|
6334
|
+
}
|
|
6335
|
+
export declare class RunMJClusterAnalysisClusterViewResult {
|
|
6336
|
+
Results: MJClusterAnalysisCluster_[];
|
|
6337
|
+
UserViewRunID?: string;
|
|
6338
|
+
RowCount: number;
|
|
6339
|
+
TotalRowCount: number;
|
|
6340
|
+
ExecutionTime: number;
|
|
6341
|
+
ErrorMessage?: string;
|
|
6342
|
+
Success: boolean;
|
|
6343
|
+
}
|
|
6344
|
+
export declare class MJClusterAnalysisClusterResolver extends ResolverBase {
|
|
6345
|
+
RunMJClusterAnalysisClusterViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6346
|
+
RunMJClusterAnalysisClusterViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6347
|
+
RunMJClusterAnalysisClusterDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6348
|
+
MJClusterAnalysisCluster(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJClusterAnalysisCluster_ | null>;
|
|
6349
|
+
CreateMJClusterAnalysisCluster(input: CreateMJClusterAnalysisClusterInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6350
|
+
UpdateMJClusterAnalysisCluster(input: UpdateMJClusterAnalysisClusterInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6351
|
+
DeleteMJClusterAnalysisCluster(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6352
|
+
}
|
|
6220
6353
|
export declare class MJCollectionArtifact_ {
|
|
6221
6354
|
ID: string;
|
|
6222
6355
|
CollectionID: string;
|
|
@@ -6676,6 +6809,7 @@ export declare class MJCompany_ {
|
|
|
6676
6809
|
MJMCPServerConnections_CompanyIDArray: MJMCPServerConnection_[];
|
|
6677
6810
|
MJAIAgentNotes_CompanyIDArray: MJAIAgentNote_[];
|
|
6678
6811
|
MJAIAgentExamples_CompanyIDArray: MJAIAgentExample_[];
|
|
6812
|
+
MJSignatureAccounts_CompanyIDArray: MJSignatureAccount_[];
|
|
6679
6813
|
}
|
|
6680
6814
|
export declare class CreateMJCompanyInput {
|
|
6681
6815
|
ID?: string;
|
|
@@ -6716,6 +6850,7 @@ export declare class MJCompanyResolver extends ResolverBase {
|
|
|
6716
6850
|
MJMCPServerConnections_CompanyIDArray(mjcompany_: MJCompany_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6717
6851
|
MJAIAgentNotes_CompanyIDArray(mjcompany_: MJCompany_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6718
6852
|
MJAIAgentExamples_CompanyIDArray(mjcompany_: MJCompany_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6853
|
+
MJSignatureAccounts_CompanyIDArray(mjcompany_: MJCompany_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6719
6854
|
CreateMJCompany(input: CreateMJCompanyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6720
6855
|
UpdateMJCompany(input: UpdateMJCompanyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6721
6856
|
DeleteMJCompany(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7745,8 +7880,11 @@ export declare class MJContentItemTag_ {
|
|
|
7745
7880
|
_mj__UpdatedAt: Date;
|
|
7746
7881
|
Weight: number;
|
|
7747
7882
|
TagID?: string;
|
|
7883
|
+
AIPromptRunID?: string;
|
|
7884
|
+
Reasoning?: string;
|
|
7748
7885
|
Item?: string;
|
|
7749
7886
|
Tag_Virtual?: string;
|
|
7887
|
+
AIPromptRun?: string;
|
|
7750
7888
|
}
|
|
7751
7889
|
export declare class CreateMJContentItemTagInput {
|
|
7752
7890
|
ID?: string;
|
|
@@ -7754,6 +7892,8 @@ export declare class CreateMJContentItemTagInput {
|
|
|
7754
7892
|
Tag?: string;
|
|
7755
7893
|
Weight?: number;
|
|
7756
7894
|
TagID: string | null;
|
|
7895
|
+
AIPromptRunID: string | null;
|
|
7896
|
+
Reasoning: string | null;
|
|
7757
7897
|
RestoreContext___?: RestoreContextInput;
|
|
7758
7898
|
}
|
|
7759
7899
|
export declare class UpdateMJContentItemTagInput {
|
|
@@ -7762,6 +7902,8 @@ export declare class UpdateMJContentItemTagInput {
|
|
|
7762
7902
|
Tag?: string;
|
|
7763
7903
|
Weight?: number;
|
|
7764
7904
|
TagID?: string | null;
|
|
7905
|
+
AIPromptRunID?: string | null;
|
|
7906
|
+
Reasoning?: string | null;
|
|
7765
7907
|
OldValues___?: KeyValuePairInput[];
|
|
7766
7908
|
RestoreContext___?: RestoreContextInput;
|
|
7767
7909
|
}
|
|
@@ -9143,6 +9285,7 @@ export declare class MJCredential_ {
|
|
|
9143
9285
|
MJVectorDatabases_CredentialIDArray: MJVectorDatabase_[];
|
|
9144
9286
|
MJAICredentialBindings_CredentialIDArray: MJAICredentialBinding_[];
|
|
9145
9287
|
MJCompanyIntegrations_CredentialIDArray: MJCompanyIntegration_[];
|
|
9288
|
+
MJSignatureAccounts_CredentialIDArray: MJSignatureAccount_[];
|
|
9146
9289
|
}
|
|
9147
9290
|
export declare class CreateMJCredentialInput {
|
|
9148
9291
|
ID?: string;
|
|
@@ -9196,6 +9339,7 @@ export declare class MJCredentialResolver extends ResolverBase {
|
|
|
9196
9339
|
MJVectorDatabases_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9197
9340
|
MJAICredentialBindings_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9198
9341
|
MJCompanyIntegrations_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9342
|
+
MJSignatureAccounts_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9199
9343
|
CreateMJCredential(input: CreateMJCredentialInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9200
9344
|
UpdateMJCredential(input: UpdateMJCredentialInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9201
9345
|
DeleteMJCredential(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10589,6 +10733,8 @@ export declare class MJEntity_ {
|
|
|
10589
10733
|
MJAIAgentRuns_PrimaryScopeEntityIDArray: MJAIAgentRun_[];
|
|
10590
10734
|
MJTestRuns_TargetLogEntityIDArray: MJTestRun_[];
|
|
10591
10735
|
MJEntityFormOverrides_EntityIDArray: MJEntityFormOverride_[];
|
|
10736
|
+
MJClusterAnalysis_EntityIDArray: MJClusterAnalysis_[];
|
|
10737
|
+
MJSignatureRequests_EntityIDArray: MJSignatureRequest_[];
|
|
10592
10738
|
}
|
|
10593
10739
|
export declare class CreateMJEntityInput {
|
|
10594
10740
|
ID?: string;
|
|
@@ -10794,6 +10940,8 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
10794
10940
|
MJAIAgentRuns_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10795
10941
|
MJTestRuns_TargetLogEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10796
10942
|
MJEntityFormOverrides_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10943
|
+
MJClusterAnalysis_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10944
|
+
MJSignatureRequests_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10797
10945
|
CreateMJEntity(input: CreateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10798
10946
|
UpdateMJEntity(input: UpdateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10799
10947
|
DeleteMJEntity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -13700,6 +13848,302 @@ export declare class MJListResolver extends ResolverBase {
|
|
|
13700
13848
|
UpdateMJList(input: UpdateMJListInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13701
13849
|
DeleteMJList(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13702
13850
|
}
|
|
13851
|
+
export declare class MJMagicLinkInviteAllowedDomain_ {
|
|
13852
|
+
ID: string;
|
|
13853
|
+
InviteID: string;
|
|
13854
|
+
Domain: string;
|
|
13855
|
+
_mj__CreatedAt: Date;
|
|
13856
|
+
_mj__UpdatedAt: Date;
|
|
13857
|
+
}
|
|
13858
|
+
export declare class CreateMJMagicLinkInviteAllowedDomainInput {
|
|
13859
|
+
ID?: string;
|
|
13860
|
+
InviteID?: string;
|
|
13861
|
+
Domain?: string;
|
|
13862
|
+
RestoreContext___?: RestoreContextInput;
|
|
13863
|
+
}
|
|
13864
|
+
export declare class UpdateMJMagicLinkInviteAllowedDomainInput {
|
|
13865
|
+
ID: string;
|
|
13866
|
+
InviteID?: string;
|
|
13867
|
+
Domain?: string;
|
|
13868
|
+
OldValues___?: KeyValuePairInput[];
|
|
13869
|
+
RestoreContext___?: RestoreContextInput;
|
|
13870
|
+
}
|
|
13871
|
+
export declare class RunMJMagicLinkInviteAllowedDomainViewResult {
|
|
13872
|
+
Results: MJMagicLinkInviteAllowedDomain_[];
|
|
13873
|
+
UserViewRunID?: string;
|
|
13874
|
+
RowCount: number;
|
|
13875
|
+
TotalRowCount: number;
|
|
13876
|
+
ExecutionTime: number;
|
|
13877
|
+
ErrorMessage?: string;
|
|
13878
|
+
Success: boolean;
|
|
13879
|
+
}
|
|
13880
|
+
export declare class MJMagicLinkInviteAllowedDomainResolver extends ResolverBase {
|
|
13881
|
+
RunMJMagicLinkInviteAllowedDomainViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13882
|
+
RunMJMagicLinkInviteAllowedDomainViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13883
|
+
RunMJMagicLinkInviteAllowedDomainDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13884
|
+
MJMagicLinkInviteAllowedDomain(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMagicLinkInviteAllowedDomain_ | null>;
|
|
13885
|
+
CreateMJMagicLinkInviteAllowedDomain(input: CreateMJMagicLinkInviteAllowedDomainInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13886
|
+
UpdateMJMagicLinkInviteAllowedDomain(input: UpdateMJMagicLinkInviteAllowedDomainInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13887
|
+
DeleteMJMagicLinkInviteAllowedDomain(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13888
|
+
}
|
|
13889
|
+
export declare class MJMagicLinkInviteAllowedPath_ {
|
|
13890
|
+
ID: string;
|
|
13891
|
+
InviteID: string;
|
|
13892
|
+
Path: string;
|
|
13893
|
+
_mj__CreatedAt: Date;
|
|
13894
|
+
_mj__UpdatedAt: Date;
|
|
13895
|
+
}
|
|
13896
|
+
export declare class CreateMJMagicLinkInviteAllowedPathInput {
|
|
13897
|
+
ID?: string;
|
|
13898
|
+
InviteID?: string;
|
|
13899
|
+
Path?: string;
|
|
13900
|
+
RestoreContext___?: RestoreContextInput;
|
|
13901
|
+
}
|
|
13902
|
+
export declare class UpdateMJMagicLinkInviteAllowedPathInput {
|
|
13903
|
+
ID: string;
|
|
13904
|
+
InviteID?: string;
|
|
13905
|
+
Path?: string;
|
|
13906
|
+
OldValues___?: KeyValuePairInput[];
|
|
13907
|
+
RestoreContext___?: RestoreContextInput;
|
|
13908
|
+
}
|
|
13909
|
+
export declare class RunMJMagicLinkInviteAllowedPathViewResult {
|
|
13910
|
+
Results: MJMagicLinkInviteAllowedPath_[];
|
|
13911
|
+
UserViewRunID?: string;
|
|
13912
|
+
RowCount: number;
|
|
13913
|
+
TotalRowCount: number;
|
|
13914
|
+
ExecutionTime: number;
|
|
13915
|
+
ErrorMessage?: string;
|
|
13916
|
+
Success: boolean;
|
|
13917
|
+
}
|
|
13918
|
+
export declare class MJMagicLinkInviteAllowedPathResolver extends ResolverBase {
|
|
13919
|
+
RunMJMagicLinkInviteAllowedPathViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13920
|
+
RunMJMagicLinkInviteAllowedPathViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13921
|
+
RunMJMagicLinkInviteAllowedPathDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13922
|
+
MJMagicLinkInviteAllowedPath(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMagicLinkInviteAllowedPath_ | null>;
|
|
13923
|
+
CreateMJMagicLinkInviteAllowedPath(input: CreateMJMagicLinkInviteAllowedPathInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13924
|
+
UpdateMJMagicLinkInviteAllowedPath(input: UpdateMJMagicLinkInviteAllowedPathInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13925
|
+
DeleteMJMagicLinkInviteAllowedPath(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13926
|
+
}
|
|
13927
|
+
export declare class MJMagicLinkInviteApplication_ {
|
|
13928
|
+
ID: string;
|
|
13929
|
+
InviteID: string;
|
|
13930
|
+
ApplicationID: string;
|
|
13931
|
+
_mj__CreatedAt: Date;
|
|
13932
|
+
_mj__UpdatedAt: Date;
|
|
13933
|
+
Application: string;
|
|
13934
|
+
}
|
|
13935
|
+
export declare class CreateMJMagicLinkInviteApplicationInput {
|
|
13936
|
+
ID?: string;
|
|
13937
|
+
InviteID?: string;
|
|
13938
|
+
ApplicationID?: string;
|
|
13939
|
+
RestoreContext___?: RestoreContextInput;
|
|
13940
|
+
}
|
|
13941
|
+
export declare class UpdateMJMagicLinkInviteApplicationInput {
|
|
13942
|
+
ID: string;
|
|
13943
|
+
InviteID?: string;
|
|
13944
|
+
ApplicationID?: string;
|
|
13945
|
+
OldValues___?: KeyValuePairInput[];
|
|
13946
|
+
RestoreContext___?: RestoreContextInput;
|
|
13947
|
+
}
|
|
13948
|
+
export declare class RunMJMagicLinkInviteApplicationViewResult {
|
|
13949
|
+
Results: MJMagicLinkInviteApplication_[];
|
|
13950
|
+
UserViewRunID?: string;
|
|
13951
|
+
RowCount: number;
|
|
13952
|
+
TotalRowCount: number;
|
|
13953
|
+
ExecutionTime: number;
|
|
13954
|
+
ErrorMessage?: string;
|
|
13955
|
+
Success: boolean;
|
|
13956
|
+
}
|
|
13957
|
+
export declare class MJMagicLinkInviteApplicationResolver extends ResolverBase {
|
|
13958
|
+
RunMJMagicLinkInviteApplicationViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13959
|
+
RunMJMagicLinkInviteApplicationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13960
|
+
RunMJMagicLinkInviteApplicationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13961
|
+
MJMagicLinkInviteApplication(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMagicLinkInviteApplication_ | null>;
|
|
13962
|
+
CreateMJMagicLinkInviteApplication(input: CreateMJMagicLinkInviteApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13963
|
+
UpdateMJMagicLinkInviteApplication(input: UpdateMJMagicLinkInviteApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13964
|
+
DeleteMJMagicLinkInviteApplication(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13965
|
+
}
|
|
13966
|
+
export declare class MJMagicLinkInviteRole_ {
|
|
13967
|
+
ID: string;
|
|
13968
|
+
InviteID: string;
|
|
13969
|
+
RoleID: string;
|
|
13970
|
+
_mj__CreatedAt: Date;
|
|
13971
|
+
_mj__UpdatedAt: Date;
|
|
13972
|
+
Role: string;
|
|
13973
|
+
}
|
|
13974
|
+
export declare class CreateMJMagicLinkInviteRoleInput {
|
|
13975
|
+
ID?: string;
|
|
13976
|
+
InviteID?: string;
|
|
13977
|
+
RoleID?: string;
|
|
13978
|
+
RestoreContext___?: RestoreContextInput;
|
|
13979
|
+
}
|
|
13980
|
+
export declare class UpdateMJMagicLinkInviteRoleInput {
|
|
13981
|
+
ID: string;
|
|
13982
|
+
InviteID?: string;
|
|
13983
|
+
RoleID?: string;
|
|
13984
|
+
OldValues___?: KeyValuePairInput[];
|
|
13985
|
+
RestoreContext___?: RestoreContextInput;
|
|
13986
|
+
}
|
|
13987
|
+
export declare class RunMJMagicLinkInviteRoleViewResult {
|
|
13988
|
+
Results: MJMagicLinkInviteRole_[];
|
|
13989
|
+
UserViewRunID?: string;
|
|
13990
|
+
RowCount: number;
|
|
13991
|
+
TotalRowCount: number;
|
|
13992
|
+
ExecutionTime: number;
|
|
13993
|
+
ErrorMessage?: string;
|
|
13994
|
+
Success: boolean;
|
|
13995
|
+
}
|
|
13996
|
+
export declare class MJMagicLinkInviteRoleResolver extends ResolverBase {
|
|
13997
|
+
RunMJMagicLinkInviteRoleViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13998
|
+
RunMJMagicLinkInviteRoleViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13999
|
+
RunMJMagicLinkInviteRoleDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14000
|
+
MJMagicLinkInviteRole(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMagicLinkInviteRole_ | null>;
|
|
14001
|
+
CreateMJMagicLinkInviteRole(input: CreateMJMagicLinkInviteRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14002
|
+
UpdateMJMagicLinkInviteRole(input: UpdateMJMagicLinkInviteRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14003
|
+
DeleteMJMagicLinkInviteRole(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14004
|
+
}
|
|
14005
|
+
export declare class MJMagicLinkInvite_ {
|
|
14006
|
+
ID: string;
|
|
14007
|
+
TokenHash: string;
|
|
14008
|
+
Email?: string;
|
|
14009
|
+
ApplicationID: string;
|
|
14010
|
+
RoleID: string;
|
|
14011
|
+
ExpiresAt: Date;
|
|
14012
|
+
ConsumedAt?: Date;
|
|
14013
|
+
MaxUses: number;
|
|
14014
|
+
UseCount: number;
|
|
14015
|
+
CreatedByUserID: string;
|
|
14016
|
+
Status: string;
|
|
14017
|
+
IdentityMode: string;
|
|
14018
|
+
Kind: string;
|
|
14019
|
+
ResourceTypeID?: string;
|
|
14020
|
+
ResourceID?: string;
|
|
14021
|
+
_mj__CreatedAt: Date;
|
|
14022
|
+
_mj__UpdatedAt: Date;
|
|
14023
|
+
Application: string;
|
|
14024
|
+
Role: string;
|
|
14025
|
+
CreatedByUser: string;
|
|
14026
|
+
ResourceType?: string;
|
|
14027
|
+
MJMagicLinkInviteAllowedDomains_InviteIDArray: MJMagicLinkInviteAllowedDomain_[];
|
|
14028
|
+
MJMagicLinkInviteAllowedPaths_InviteIDArray: MJMagicLinkInviteAllowedPath_[];
|
|
14029
|
+
MJMagicLinkInviteApplications_InviteIDArray: MJMagicLinkInviteApplication_[];
|
|
14030
|
+
MJMagicLinkInviteRoles_InviteIDArray: MJMagicLinkInviteRole_[];
|
|
14031
|
+
MJMagicLinkRedemptions_InviteIDArray: MJMagicLinkRedemption_[];
|
|
14032
|
+
}
|
|
14033
|
+
export declare class CreateMJMagicLinkInviteInput {
|
|
14034
|
+
ID?: string;
|
|
14035
|
+
TokenHash?: string;
|
|
14036
|
+
Email: string | null;
|
|
14037
|
+
ApplicationID?: string;
|
|
14038
|
+
RoleID?: string;
|
|
14039
|
+
ExpiresAt?: Date;
|
|
14040
|
+
ConsumedAt: Date | null;
|
|
14041
|
+
MaxUses?: number;
|
|
14042
|
+
UseCount?: number;
|
|
14043
|
+
CreatedByUserID?: string;
|
|
14044
|
+
Status?: string;
|
|
14045
|
+
IdentityMode?: string;
|
|
14046
|
+
Kind?: string;
|
|
14047
|
+
ResourceTypeID: string | null;
|
|
14048
|
+
ResourceID: string | null;
|
|
14049
|
+
RestoreContext___?: RestoreContextInput;
|
|
14050
|
+
}
|
|
14051
|
+
export declare class UpdateMJMagicLinkInviteInput {
|
|
14052
|
+
ID: string;
|
|
14053
|
+
TokenHash?: string;
|
|
14054
|
+
Email?: string | null;
|
|
14055
|
+
ApplicationID?: string;
|
|
14056
|
+
RoleID?: string;
|
|
14057
|
+
ExpiresAt?: Date;
|
|
14058
|
+
ConsumedAt?: Date | null;
|
|
14059
|
+
MaxUses?: number;
|
|
14060
|
+
UseCount?: number;
|
|
14061
|
+
CreatedByUserID?: string;
|
|
14062
|
+
Status?: string;
|
|
14063
|
+
IdentityMode?: string;
|
|
14064
|
+
Kind?: string;
|
|
14065
|
+
ResourceTypeID?: string | null;
|
|
14066
|
+
ResourceID?: string | null;
|
|
14067
|
+
OldValues___?: KeyValuePairInput[];
|
|
14068
|
+
RestoreContext___?: RestoreContextInput;
|
|
14069
|
+
}
|
|
14070
|
+
export declare class RunMJMagicLinkInviteViewResult {
|
|
14071
|
+
Results: MJMagicLinkInvite_[];
|
|
14072
|
+
UserViewRunID?: string;
|
|
14073
|
+
RowCount: number;
|
|
14074
|
+
TotalRowCount: number;
|
|
14075
|
+
ExecutionTime: number;
|
|
14076
|
+
ErrorMessage?: string;
|
|
14077
|
+
Success: boolean;
|
|
14078
|
+
}
|
|
14079
|
+
export declare class MJMagicLinkInviteResolver extends ResolverBase {
|
|
14080
|
+
RunMJMagicLinkInviteViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14081
|
+
RunMJMagicLinkInviteViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14082
|
+
RunMJMagicLinkInviteDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14083
|
+
MJMagicLinkInvite(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMagicLinkInvite_ | null>;
|
|
14084
|
+
MJMagicLinkInviteAllowedDomains_InviteIDArray(mjmagiclinkinvite_: MJMagicLinkInvite_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14085
|
+
MJMagicLinkInviteAllowedPaths_InviteIDArray(mjmagiclinkinvite_: MJMagicLinkInvite_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14086
|
+
MJMagicLinkInviteApplications_InviteIDArray(mjmagiclinkinvite_: MJMagicLinkInvite_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14087
|
+
MJMagicLinkInviteRoles_InviteIDArray(mjmagiclinkinvite_: MJMagicLinkInvite_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14088
|
+
MJMagicLinkRedemptions_InviteIDArray(mjmagiclinkinvite_: MJMagicLinkInvite_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14089
|
+
CreateMJMagicLinkInvite(input: CreateMJMagicLinkInviteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14090
|
+
UpdateMJMagicLinkInvite(input: UpdateMJMagicLinkInviteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14091
|
+
DeleteMJMagicLinkInvite(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14092
|
+
}
|
|
14093
|
+
export declare class MJMagicLinkRedemption_ {
|
|
14094
|
+
ID: string;
|
|
14095
|
+
InviteID?: string;
|
|
14096
|
+
AttemptedAt: Date;
|
|
14097
|
+
Outcome: string;
|
|
14098
|
+
IPAddress?: string;
|
|
14099
|
+
UserAgent?: string;
|
|
14100
|
+
Origin?: string;
|
|
14101
|
+
ProvisionedUserID?: string;
|
|
14102
|
+
_mj__CreatedAt: Date;
|
|
14103
|
+
_mj__UpdatedAt: Date;
|
|
14104
|
+
ProvisionedUser?: string;
|
|
14105
|
+
}
|
|
14106
|
+
export declare class CreateMJMagicLinkRedemptionInput {
|
|
14107
|
+
ID?: string;
|
|
14108
|
+
InviteID: string | null;
|
|
14109
|
+
AttemptedAt?: Date;
|
|
14110
|
+
Outcome?: string;
|
|
14111
|
+
IPAddress: string | null;
|
|
14112
|
+
UserAgent: string | null;
|
|
14113
|
+
Origin: string | null;
|
|
14114
|
+
ProvisionedUserID: string | null;
|
|
14115
|
+
RestoreContext___?: RestoreContextInput;
|
|
14116
|
+
}
|
|
14117
|
+
export declare class UpdateMJMagicLinkRedemptionInput {
|
|
14118
|
+
ID: string;
|
|
14119
|
+
InviteID?: string | null;
|
|
14120
|
+
AttemptedAt?: Date;
|
|
14121
|
+
Outcome?: string;
|
|
14122
|
+
IPAddress?: string | null;
|
|
14123
|
+
UserAgent?: string | null;
|
|
14124
|
+
Origin?: string | null;
|
|
14125
|
+
ProvisionedUserID?: string | null;
|
|
14126
|
+
OldValues___?: KeyValuePairInput[];
|
|
14127
|
+
RestoreContext___?: RestoreContextInput;
|
|
14128
|
+
}
|
|
14129
|
+
export declare class RunMJMagicLinkRedemptionViewResult {
|
|
14130
|
+
Results: MJMagicLinkRedemption_[];
|
|
14131
|
+
UserViewRunID?: string;
|
|
14132
|
+
RowCount: number;
|
|
14133
|
+
TotalRowCount: number;
|
|
14134
|
+
ExecutionTime: number;
|
|
14135
|
+
ErrorMessage?: string;
|
|
14136
|
+
Success: boolean;
|
|
14137
|
+
}
|
|
14138
|
+
export declare class MJMagicLinkRedemptionResolver extends ResolverBase {
|
|
14139
|
+
RunMJMagicLinkRedemptionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14140
|
+
RunMJMagicLinkRedemptionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14141
|
+
RunMJMagicLinkRedemptionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14142
|
+
MJMagicLinkRedemption(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMagicLinkRedemption_ | null>;
|
|
14143
|
+
CreateMJMagicLinkRedemption(input: CreateMJMagicLinkRedemptionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14144
|
+
UpdateMJMagicLinkRedemption(input: UpdateMJMagicLinkRedemptionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14145
|
+
DeleteMJMagicLinkRedemption(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14146
|
+
}
|
|
13703
14147
|
export declare class MJMCPServerConnectionPermission_ {
|
|
13704
14148
|
ID: string;
|
|
13705
14149
|
MCPServerConnectionID: string;
|
|
@@ -16678,6 +17122,7 @@ export declare class MJResourceType_ {
|
|
|
16678
17122
|
MJUserNotifications_ResourceTypeIDArray: MJUserNotification_[];
|
|
16679
17123
|
MJResourceLinks_ResourceTypeIDArray: MJResourceLink_[];
|
|
16680
17124
|
MJResourcePermissions_ResourceTypeIDArray: MJResourcePermission_[];
|
|
17125
|
+
MJMagicLinkInvites_ResourceTypeIDArray: MJMagicLinkInvite_[];
|
|
16681
17126
|
}
|
|
16682
17127
|
export declare class CreateMJResourceTypeInput {
|
|
16683
17128
|
ID?: string;
|
|
@@ -16720,6 +17165,7 @@ export declare class MJResourceTypeResolver extends ResolverBase {
|
|
|
16720
17165
|
MJUserNotifications_ResourceTypeIDArray(mjresourcetype_: MJResourceType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16721
17166
|
MJResourceLinks_ResourceTypeIDArray(mjresourcetype_: MJResourceType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16722
17167
|
MJResourcePermissions_ResourceTypeIDArray(mjresourcetype_: MJResourceType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17168
|
+
MJMagicLinkInvites_ResourceTypeIDArray(mjresourcetype_: MJResourceType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16723
17169
|
CreateMJResourceType(input: CreateMJResourceTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16724
17170
|
UpdateMJResourceType(input: UpdateMJResourceTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16725
17171
|
DeleteMJResourceType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -16744,6 +17190,8 @@ export declare class MJRole_ {
|
|
|
16744
17190
|
MJAIAgentPermissions_RoleIDArray: MJAIAgentPermission_[];
|
|
16745
17191
|
MJSearchScopePermissions_RoleIDArray: MJSearchScopePermission_[];
|
|
16746
17192
|
MJEntityFormOverrides_RoleIDArray: MJEntityFormOverride_[];
|
|
17193
|
+
MJMagicLinkInviteRoles_RoleIDArray: MJMagicLinkInviteRole_[];
|
|
17194
|
+
MJMagicLinkInvites_RoleIDArray: MJMagicLinkInvite_[];
|
|
16747
17195
|
}
|
|
16748
17196
|
export declare class CreateMJRoleInput {
|
|
16749
17197
|
ID?: string;
|
|
@@ -16789,6 +17237,8 @@ export declare class MJRoleResolver extends ResolverBase {
|
|
|
16789
17237
|
MJAIAgentPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16790
17238
|
MJSearchScopePermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16791
17239
|
MJEntityFormOverrides_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17240
|
+
MJMagicLinkInviteRoles_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17241
|
+
MJMagicLinkInvites_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16792
17242
|
CreateMJRole(input: CreateMJRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16793
17243
|
UpdateMJRole(input: UpdateMJRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16794
17244
|
DeleteMJRole(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -17772,6 +18222,359 @@ export declare class MJSearchScopeResolver extends ResolverBase {
|
|
|
17772
18222
|
UpdateMJSearchScope(input: UpdateMJSearchScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17773
18223
|
DeleteMJSearchScope(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17774
18224
|
}
|
|
18225
|
+
export declare class MJSignatureAccount_ {
|
|
18226
|
+
ID: string;
|
|
18227
|
+
Name: string;
|
|
18228
|
+
SignatureProviderID: string;
|
|
18229
|
+
CredentialID: string;
|
|
18230
|
+
CompanyID?: string;
|
|
18231
|
+
IsActive: boolean;
|
|
18232
|
+
IsDefault: boolean;
|
|
18233
|
+
DefaultFromName?: string;
|
|
18234
|
+
DefaultFromEmail?: string;
|
|
18235
|
+
Configuration?: string;
|
|
18236
|
+
_mj__CreatedAt: Date;
|
|
18237
|
+
_mj__UpdatedAt: Date;
|
|
18238
|
+
SignatureProvider: string;
|
|
18239
|
+
Credential: string;
|
|
18240
|
+
Company?: string;
|
|
18241
|
+
MJSignatureRequests_SignatureAccountIDArray: MJSignatureRequest_[];
|
|
18242
|
+
}
|
|
18243
|
+
export declare class CreateMJSignatureAccountInput {
|
|
18244
|
+
ID?: string;
|
|
18245
|
+
Name?: string;
|
|
18246
|
+
SignatureProviderID?: string;
|
|
18247
|
+
CredentialID?: string;
|
|
18248
|
+
CompanyID: string | null;
|
|
18249
|
+
IsActive?: boolean;
|
|
18250
|
+
IsDefault?: boolean;
|
|
18251
|
+
DefaultFromName: string | null;
|
|
18252
|
+
DefaultFromEmail: string | null;
|
|
18253
|
+
Configuration: string | null;
|
|
18254
|
+
RestoreContext___?: RestoreContextInput;
|
|
18255
|
+
}
|
|
18256
|
+
export declare class UpdateMJSignatureAccountInput {
|
|
18257
|
+
ID: string;
|
|
18258
|
+
Name?: string;
|
|
18259
|
+
SignatureProviderID?: string;
|
|
18260
|
+
CredentialID?: string;
|
|
18261
|
+
CompanyID?: string | null;
|
|
18262
|
+
IsActive?: boolean;
|
|
18263
|
+
IsDefault?: boolean;
|
|
18264
|
+
DefaultFromName?: string | null;
|
|
18265
|
+
DefaultFromEmail?: string | null;
|
|
18266
|
+
Configuration?: string | null;
|
|
18267
|
+
OldValues___?: KeyValuePairInput[];
|
|
18268
|
+
RestoreContext___?: RestoreContextInput;
|
|
18269
|
+
}
|
|
18270
|
+
export declare class RunMJSignatureAccountViewResult {
|
|
18271
|
+
Results: MJSignatureAccount_[];
|
|
18272
|
+
UserViewRunID?: string;
|
|
18273
|
+
RowCount: number;
|
|
18274
|
+
TotalRowCount: number;
|
|
18275
|
+
ExecutionTime: number;
|
|
18276
|
+
ErrorMessage?: string;
|
|
18277
|
+
Success: boolean;
|
|
18278
|
+
}
|
|
18279
|
+
export declare class MJSignatureAccountResolver extends ResolverBase {
|
|
18280
|
+
RunMJSignatureAccountViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18281
|
+
RunMJSignatureAccountViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18282
|
+
RunMJSignatureAccountDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18283
|
+
MJSignatureAccount(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSignatureAccount_ | null>;
|
|
18284
|
+
MJSignatureRequests_SignatureAccountIDArray(mjsignatureaccount_: MJSignatureAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18285
|
+
CreateMJSignatureAccount(input: CreateMJSignatureAccountInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18286
|
+
UpdateMJSignatureAccount(input: UpdateMJSignatureAccountInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18287
|
+
DeleteMJSignatureAccount(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18288
|
+
}
|
|
18289
|
+
export declare class MJSignatureProvider_ {
|
|
18290
|
+
ID: string;
|
|
18291
|
+
Name: string;
|
|
18292
|
+
ServerDriverKey: string;
|
|
18293
|
+
IsActive: boolean;
|
|
18294
|
+
Priority: number;
|
|
18295
|
+
RequiresOAuth: boolean;
|
|
18296
|
+
SupportsTemplates: boolean;
|
|
18297
|
+
SupportsEmbeddedSigning: boolean;
|
|
18298
|
+
Configuration?: string;
|
|
18299
|
+
_mj__CreatedAt: Date;
|
|
18300
|
+
_mj__UpdatedAt: Date;
|
|
18301
|
+
MJSignatureAccounts_SignatureProviderIDArray: MJSignatureAccount_[];
|
|
18302
|
+
}
|
|
18303
|
+
export declare class CreateMJSignatureProviderInput {
|
|
18304
|
+
ID?: string;
|
|
18305
|
+
Name?: string;
|
|
18306
|
+
ServerDriverKey?: string;
|
|
18307
|
+
IsActive?: boolean;
|
|
18308
|
+
Priority?: number;
|
|
18309
|
+
RequiresOAuth?: boolean;
|
|
18310
|
+
SupportsTemplates?: boolean;
|
|
18311
|
+
SupportsEmbeddedSigning?: boolean;
|
|
18312
|
+
Configuration: string | null;
|
|
18313
|
+
RestoreContext___?: RestoreContextInput;
|
|
18314
|
+
}
|
|
18315
|
+
export declare class UpdateMJSignatureProviderInput {
|
|
18316
|
+
ID: string;
|
|
18317
|
+
Name?: string;
|
|
18318
|
+
ServerDriverKey?: string;
|
|
18319
|
+
IsActive?: boolean;
|
|
18320
|
+
Priority?: number;
|
|
18321
|
+
RequiresOAuth?: boolean;
|
|
18322
|
+
SupportsTemplates?: boolean;
|
|
18323
|
+
SupportsEmbeddedSigning?: boolean;
|
|
18324
|
+
Configuration?: string | null;
|
|
18325
|
+
OldValues___?: KeyValuePairInput[];
|
|
18326
|
+
RestoreContext___?: RestoreContextInput;
|
|
18327
|
+
}
|
|
18328
|
+
export declare class RunMJSignatureProviderViewResult {
|
|
18329
|
+
Results: MJSignatureProvider_[];
|
|
18330
|
+
UserViewRunID?: string;
|
|
18331
|
+
RowCount: number;
|
|
18332
|
+
TotalRowCount: number;
|
|
18333
|
+
ExecutionTime: number;
|
|
18334
|
+
ErrorMessage?: string;
|
|
18335
|
+
Success: boolean;
|
|
18336
|
+
}
|
|
18337
|
+
export declare class MJSignatureProviderResolver extends ResolverBase {
|
|
18338
|
+
RunMJSignatureProviderViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18339
|
+
RunMJSignatureProviderViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18340
|
+
RunMJSignatureProviderDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18341
|
+
MJSignatureProvider(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSignatureProvider_ | null>;
|
|
18342
|
+
MJSignatureAccounts_SignatureProviderIDArray(mjsignatureprovider_: MJSignatureProvider_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18343
|
+
CreateMJSignatureProvider(input: CreateMJSignatureProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18344
|
+
UpdateMJSignatureProvider(input: UpdateMJSignatureProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18345
|
+
DeleteMJSignatureProvider(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18346
|
+
}
|
|
18347
|
+
export declare class MJSignatureRequestDocument_ {
|
|
18348
|
+
ID: string;
|
|
18349
|
+
SignatureRequestID: string;
|
|
18350
|
+
ArtifactID?: string;
|
|
18351
|
+
ArtifactVersionID?: string;
|
|
18352
|
+
Name: string;
|
|
18353
|
+
Sequence: number;
|
|
18354
|
+
Role: string;
|
|
18355
|
+
_mj__CreatedAt: Date;
|
|
18356
|
+
_mj__UpdatedAt: Date;
|
|
18357
|
+
SignatureRequest: string;
|
|
18358
|
+
Artifact?: string;
|
|
18359
|
+
ArtifactVersion?: string;
|
|
18360
|
+
}
|
|
18361
|
+
export declare class CreateMJSignatureRequestDocumentInput {
|
|
18362
|
+
ID?: string;
|
|
18363
|
+
SignatureRequestID?: string;
|
|
18364
|
+
ArtifactID: string | null;
|
|
18365
|
+
ArtifactVersionID: string | null;
|
|
18366
|
+
Name?: string;
|
|
18367
|
+
Sequence?: number;
|
|
18368
|
+
Role?: string;
|
|
18369
|
+
RestoreContext___?: RestoreContextInput;
|
|
18370
|
+
}
|
|
18371
|
+
export declare class UpdateMJSignatureRequestDocumentInput {
|
|
18372
|
+
ID: string;
|
|
18373
|
+
SignatureRequestID?: string;
|
|
18374
|
+
ArtifactID?: string | null;
|
|
18375
|
+
ArtifactVersionID?: string | null;
|
|
18376
|
+
Name?: string;
|
|
18377
|
+
Sequence?: number;
|
|
18378
|
+
Role?: string;
|
|
18379
|
+
OldValues___?: KeyValuePairInput[];
|
|
18380
|
+
RestoreContext___?: RestoreContextInput;
|
|
18381
|
+
}
|
|
18382
|
+
export declare class RunMJSignatureRequestDocumentViewResult {
|
|
18383
|
+
Results: MJSignatureRequestDocument_[];
|
|
18384
|
+
UserViewRunID?: string;
|
|
18385
|
+
RowCount: number;
|
|
18386
|
+
TotalRowCount: number;
|
|
18387
|
+
ExecutionTime: number;
|
|
18388
|
+
ErrorMessage?: string;
|
|
18389
|
+
Success: boolean;
|
|
18390
|
+
}
|
|
18391
|
+
export declare class MJSignatureRequestDocumentResolver extends ResolverBase {
|
|
18392
|
+
RunMJSignatureRequestDocumentViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18393
|
+
RunMJSignatureRequestDocumentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18394
|
+
RunMJSignatureRequestDocumentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18395
|
+
MJSignatureRequestDocument(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSignatureRequestDocument_ | null>;
|
|
18396
|
+
CreateMJSignatureRequestDocument(input: CreateMJSignatureRequestDocumentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18397
|
+
UpdateMJSignatureRequestDocument(input: UpdateMJSignatureRequestDocumentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18398
|
+
DeleteMJSignatureRequestDocument(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18399
|
+
}
|
|
18400
|
+
export declare class MJSignatureRequestLog_ {
|
|
18401
|
+
ID: string;
|
|
18402
|
+
SignatureRequestID?: string;
|
|
18403
|
+
Operation: string;
|
|
18404
|
+
Success: boolean;
|
|
18405
|
+
StatusBefore?: string;
|
|
18406
|
+
StatusAfter?: string;
|
|
18407
|
+
Detail?: string;
|
|
18408
|
+
_mj__CreatedAt: Date;
|
|
18409
|
+
_mj__UpdatedAt: Date;
|
|
18410
|
+
SignatureRequest?: string;
|
|
18411
|
+
}
|
|
18412
|
+
export declare class CreateMJSignatureRequestLogInput {
|
|
18413
|
+
ID?: string;
|
|
18414
|
+
SignatureRequestID: string | null;
|
|
18415
|
+
Operation?: string;
|
|
18416
|
+
Success?: boolean;
|
|
18417
|
+
StatusBefore: string | null;
|
|
18418
|
+
StatusAfter: string | null;
|
|
18419
|
+
Detail: string | null;
|
|
18420
|
+
RestoreContext___?: RestoreContextInput;
|
|
18421
|
+
}
|
|
18422
|
+
export declare class UpdateMJSignatureRequestLogInput {
|
|
18423
|
+
ID: string;
|
|
18424
|
+
SignatureRequestID?: string | null;
|
|
18425
|
+
Operation?: string;
|
|
18426
|
+
Success?: boolean;
|
|
18427
|
+
StatusBefore?: string | null;
|
|
18428
|
+
StatusAfter?: string | null;
|
|
18429
|
+
Detail?: string | null;
|
|
18430
|
+
OldValues___?: KeyValuePairInput[];
|
|
18431
|
+
RestoreContext___?: RestoreContextInput;
|
|
18432
|
+
}
|
|
18433
|
+
export declare class RunMJSignatureRequestLogViewResult {
|
|
18434
|
+
Results: MJSignatureRequestLog_[];
|
|
18435
|
+
UserViewRunID?: string;
|
|
18436
|
+
RowCount: number;
|
|
18437
|
+
TotalRowCount: number;
|
|
18438
|
+
ExecutionTime: number;
|
|
18439
|
+
ErrorMessage?: string;
|
|
18440
|
+
Success: boolean;
|
|
18441
|
+
}
|
|
18442
|
+
export declare class MJSignatureRequestLogResolver extends ResolverBase {
|
|
18443
|
+
RunMJSignatureRequestLogViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18444
|
+
RunMJSignatureRequestLogViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18445
|
+
RunMJSignatureRequestLogDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18446
|
+
MJSignatureRequestLog(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSignatureRequestLog_ | null>;
|
|
18447
|
+
CreateMJSignatureRequestLog(input: CreateMJSignatureRequestLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18448
|
+
UpdateMJSignatureRequestLog(input: UpdateMJSignatureRequestLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18449
|
+
DeleteMJSignatureRequestLog(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18450
|
+
}
|
|
18451
|
+
export declare class MJSignatureRequestRecipient_ {
|
|
18452
|
+
ID: string;
|
|
18453
|
+
SignatureRequestID: string;
|
|
18454
|
+
Email: string;
|
|
18455
|
+
Name?: string;
|
|
18456
|
+
RoutingOrder: number;
|
|
18457
|
+
Role?: string;
|
|
18458
|
+
Status: string;
|
|
18459
|
+
SignedAt?: Date;
|
|
18460
|
+
ExternalRecipientID?: string;
|
|
18461
|
+
_mj__CreatedAt: Date;
|
|
18462
|
+
_mj__UpdatedAt: Date;
|
|
18463
|
+
SignatureRequest: string;
|
|
18464
|
+
}
|
|
18465
|
+
export declare class CreateMJSignatureRequestRecipientInput {
|
|
18466
|
+
ID?: string;
|
|
18467
|
+
SignatureRequestID?: string;
|
|
18468
|
+
Email?: string;
|
|
18469
|
+
Name: string | null;
|
|
18470
|
+
RoutingOrder?: number;
|
|
18471
|
+
Role: string | null;
|
|
18472
|
+
Status?: string;
|
|
18473
|
+
SignedAt: Date | null;
|
|
18474
|
+
ExternalRecipientID: string | null;
|
|
18475
|
+
RestoreContext___?: RestoreContextInput;
|
|
18476
|
+
}
|
|
18477
|
+
export declare class UpdateMJSignatureRequestRecipientInput {
|
|
18478
|
+
ID: string;
|
|
18479
|
+
SignatureRequestID?: string;
|
|
18480
|
+
Email?: string;
|
|
18481
|
+
Name?: string | null;
|
|
18482
|
+
RoutingOrder?: number;
|
|
18483
|
+
Role?: string | null;
|
|
18484
|
+
Status?: string;
|
|
18485
|
+
SignedAt?: Date | null;
|
|
18486
|
+
ExternalRecipientID?: string | null;
|
|
18487
|
+
OldValues___?: KeyValuePairInput[];
|
|
18488
|
+
RestoreContext___?: RestoreContextInput;
|
|
18489
|
+
}
|
|
18490
|
+
export declare class RunMJSignatureRequestRecipientViewResult {
|
|
18491
|
+
Results: MJSignatureRequestRecipient_[];
|
|
18492
|
+
UserViewRunID?: string;
|
|
18493
|
+
RowCount: number;
|
|
18494
|
+
TotalRowCount: number;
|
|
18495
|
+
ExecutionTime: number;
|
|
18496
|
+
ErrorMessage?: string;
|
|
18497
|
+
Success: boolean;
|
|
18498
|
+
}
|
|
18499
|
+
export declare class MJSignatureRequestRecipientResolver extends ResolverBase {
|
|
18500
|
+
RunMJSignatureRequestRecipientViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18501
|
+
RunMJSignatureRequestRecipientViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18502
|
+
RunMJSignatureRequestRecipientDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18503
|
+
MJSignatureRequestRecipient(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSignatureRequestRecipient_ | null>;
|
|
18504
|
+
CreateMJSignatureRequestRecipient(input: CreateMJSignatureRequestRecipientInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18505
|
+
UpdateMJSignatureRequestRecipient(input: UpdateMJSignatureRequestRecipientInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18506
|
+
DeleteMJSignatureRequestRecipient(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18507
|
+
}
|
|
18508
|
+
export declare class MJSignatureRequest_ {
|
|
18509
|
+
ID: string;
|
|
18510
|
+
SignatureAccountID: string;
|
|
18511
|
+
Name: string;
|
|
18512
|
+
Message?: string;
|
|
18513
|
+
Status: string;
|
|
18514
|
+
ExternalEnvelopeID?: string;
|
|
18515
|
+
EntityID?: string;
|
|
18516
|
+
RecordID?: string;
|
|
18517
|
+
SentAt?: Date;
|
|
18518
|
+
CompletedAt?: Date;
|
|
18519
|
+
VoidReason?: string;
|
|
18520
|
+
_mj__CreatedAt: Date;
|
|
18521
|
+
_mj__UpdatedAt: Date;
|
|
18522
|
+
SignatureAccount: string;
|
|
18523
|
+
Entity?: string;
|
|
18524
|
+
MJSignatureRequestLogs_SignatureRequestIDArray: MJSignatureRequestLog_[];
|
|
18525
|
+
MJSignatureRequestRecipients_SignatureRequestIDArray: MJSignatureRequestRecipient_[];
|
|
18526
|
+
MJSignatureRequestDocuments_SignatureRequestIDArray: MJSignatureRequestDocument_[];
|
|
18527
|
+
}
|
|
18528
|
+
export declare class CreateMJSignatureRequestInput {
|
|
18529
|
+
ID?: string;
|
|
18530
|
+
SignatureAccountID?: string;
|
|
18531
|
+
Name?: string;
|
|
18532
|
+
Message: string | null;
|
|
18533
|
+
Status?: string;
|
|
18534
|
+
ExternalEnvelopeID: string | null;
|
|
18535
|
+
EntityID: string | null;
|
|
18536
|
+
RecordID: string | null;
|
|
18537
|
+
SentAt: Date | null;
|
|
18538
|
+
CompletedAt: Date | null;
|
|
18539
|
+
VoidReason: string | null;
|
|
18540
|
+
RestoreContext___?: RestoreContextInput;
|
|
18541
|
+
}
|
|
18542
|
+
export declare class UpdateMJSignatureRequestInput {
|
|
18543
|
+
ID: string;
|
|
18544
|
+
SignatureAccountID?: string;
|
|
18545
|
+
Name?: string;
|
|
18546
|
+
Message?: string | null;
|
|
18547
|
+
Status?: string;
|
|
18548
|
+
ExternalEnvelopeID?: string | null;
|
|
18549
|
+
EntityID?: string | null;
|
|
18550
|
+
RecordID?: string | null;
|
|
18551
|
+
SentAt?: Date | null;
|
|
18552
|
+
CompletedAt?: Date | null;
|
|
18553
|
+
VoidReason?: string | null;
|
|
18554
|
+
OldValues___?: KeyValuePairInput[];
|
|
18555
|
+
RestoreContext___?: RestoreContextInput;
|
|
18556
|
+
}
|
|
18557
|
+
export declare class RunMJSignatureRequestViewResult {
|
|
18558
|
+
Results: MJSignatureRequest_[];
|
|
18559
|
+
UserViewRunID?: string;
|
|
18560
|
+
RowCount: number;
|
|
18561
|
+
TotalRowCount: number;
|
|
18562
|
+
ExecutionTime: number;
|
|
18563
|
+
ErrorMessage?: string;
|
|
18564
|
+
Success: boolean;
|
|
18565
|
+
}
|
|
18566
|
+
export declare class MJSignatureRequestResolver extends ResolverBase {
|
|
18567
|
+
RunMJSignatureRequestViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18568
|
+
RunMJSignatureRequestViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18569
|
+
RunMJSignatureRequestDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18570
|
+
MJSignatureRequest(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSignatureRequest_ | null>;
|
|
18571
|
+
MJSignatureRequestLogs_SignatureRequestIDArray(mjsignaturerequest_: MJSignatureRequest_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18572
|
+
MJSignatureRequestRecipients_SignatureRequestIDArray(mjsignaturerequest_: MJSignatureRequest_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18573
|
+
MJSignatureRequestDocuments_SignatureRequestIDArray(mjsignaturerequest_: MJSignatureRequest_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18574
|
+
CreateMJSignatureRequest(input: CreateMJSignatureRequestInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18575
|
+
UpdateMJSignatureRequest(input: UpdateMJSignatureRequestInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18576
|
+
DeleteMJSignatureRequest(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18577
|
+
}
|
|
17775
18578
|
export declare class MJSkill_ {
|
|
17776
18579
|
ID: string;
|
|
17777
18580
|
Name: string;
|
|
@@ -20156,6 +20959,7 @@ export declare class MJUserView_ {
|
|
|
20156
20959
|
Thumbnail?: string;
|
|
20157
20960
|
CardState?: string;
|
|
20158
20961
|
DisplayState?: string;
|
|
20962
|
+
ViewTypeID?: string;
|
|
20159
20963
|
UserName: string;
|
|
20160
20964
|
UserFirstLast?: string;
|
|
20161
20965
|
UserEmail: string;
|
|
@@ -20189,6 +20993,7 @@ export declare class CreateMJUserViewInput {
|
|
|
20189
20993
|
Thumbnail: string | null;
|
|
20190
20994
|
CardState: string | null;
|
|
20191
20995
|
DisplayState: string | null;
|
|
20996
|
+
ViewTypeID: string | null;
|
|
20192
20997
|
RestoreContext___?: RestoreContextInput;
|
|
20193
20998
|
}
|
|
20194
20999
|
export declare class UpdateMJUserViewInput {
|
|
@@ -20213,6 +21018,7 @@ export declare class UpdateMJUserViewInput {
|
|
|
20213
21018
|
Thumbnail?: string | null;
|
|
20214
21019
|
CardState?: string | null;
|
|
20215
21020
|
DisplayState?: string | null;
|
|
21021
|
+
ViewTypeID?: string | null;
|
|
20216
21022
|
OldValues___?: KeyValuePairInput[];
|
|
20217
21023
|
RestoreContext___?: RestoreContextInput;
|
|
20218
21024
|
}
|
|
@@ -20360,6 +21166,9 @@ export declare class MJUser_ {
|
|
|
20360
21166
|
MJAIAgents_OwnerUserIDArray: MJAIAgent_[];
|
|
20361
21167
|
MJLists_LastRefreshedByUserIDArray: MJList_[];
|
|
20362
21168
|
MJEntityFormOverrides_UserIDArray: MJEntityFormOverride_[];
|
|
21169
|
+
MJClusterAnalysis_UserIDArray: MJClusterAnalysis_[];
|
|
21170
|
+
MJMagicLinkRedemptions_ProvisionedUserIDArray: MJMagicLinkRedemption_[];
|
|
21171
|
+
MJMagicLinkInvites_CreatedByUserIDArray: MJMagicLinkInvite_[];
|
|
20363
21172
|
}
|
|
20364
21173
|
export declare class CreateMJUserInput {
|
|
20365
21174
|
ID?: string;
|
|
@@ -20509,6 +21318,9 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
20509
21318
|
MJAIAgents_OwnerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20510
21319
|
MJLists_LastRefreshedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20511
21320
|
MJEntityFormOverrides_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21321
|
+
MJClusterAnalysis_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21322
|
+
MJMagicLinkRedemptions_ProvisionedUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21323
|
+
MJMagicLinkInvites_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20512
21324
|
CreateMJUser(input: CreateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
20513
21325
|
UpdateMJUser(input: UpdateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
20514
21326
|
DeleteMJUser(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -20882,6 +21694,67 @@ export declare class MJVersionLabelResolver extends ResolverBase {
|
|
|
20882
21694
|
UpdateMJVersionLabel(input: UpdateMJVersionLabelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
20883
21695
|
DeleteMJVersionLabel(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
20884
21696
|
}
|
|
21697
|
+
export declare class MJViewType_ {
|
|
21698
|
+
ID: string;
|
|
21699
|
+
Name: string;
|
|
21700
|
+
DisplayName: string;
|
|
21701
|
+
Description?: string;
|
|
21702
|
+
DriverClass: string;
|
|
21703
|
+
PropertySheetDriverClass?: string;
|
|
21704
|
+
Icon?: string;
|
|
21705
|
+
Sequence: number;
|
|
21706
|
+
IsActive: boolean;
|
|
21707
|
+
SupportsConfiguration: boolean;
|
|
21708
|
+
_mj__CreatedAt: Date;
|
|
21709
|
+
_mj__UpdatedAt: Date;
|
|
21710
|
+
MJUserViews_ViewTypeIDArray: MJUserView_[];
|
|
21711
|
+
}
|
|
21712
|
+
export declare class CreateMJViewTypeInput {
|
|
21713
|
+
ID?: string;
|
|
21714
|
+
Name?: string;
|
|
21715
|
+
DisplayName?: string;
|
|
21716
|
+
Description: string | null;
|
|
21717
|
+
DriverClass?: string;
|
|
21718
|
+
PropertySheetDriverClass: string | null;
|
|
21719
|
+
Icon: string | null;
|
|
21720
|
+
Sequence?: number;
|
|
21721
|
+
IsActive?: boolean;
|
|
21722
|
+
SupportsConfiguration?: boolean;
|
|
21723
|
+
RestoreContext___?: RestoreContextInput;
|
|
21724
|
+
}
|
|
21725
|
+
export declare class UpdateMJViewTypeInput {
|
|
21726
|
+
ID: string;
|
|
21727
|
+
Name?: string;
|
|
21728
|
+
DisplayName?: string;
|
|
21729
|
+
Description?: string | null;
|
|
21730
|
+
DriverClass?: string;
|
|
21731
|
+
PropertySheetDriverClass?: string | null;
|
|
21732
|
+
Icon?: string | null;
|
|
21733
|
+
Sequence?: number;
|
|
21734
|
+
IsActive?: boolean;
|
|
21735
|
+
SupportsConfiguration?: boolean;
|
|
21736
|
+
OldValues___?: KeyValuePairInput[];
|
|
21737
|
+
RestoreContext___?: RestoreContextInput;
|
|
21738
|
+
}
|
|
21739
|
+
export declare class RunMJViewTypeViewResult {
|
|
21740
|
+
Results: MJViewType_[];
|
|
21741
|
+
UserViewRunID?: string;
|
|
21742
|
+
RowCount: number;
|
|
21743
|
+
TotalRowCount: number;
|
|
21744
|
+
ExecutionTime: number;
|
|
21745
|
+
ErrorMessage?: string;
|
|
21746
|
+
Success: boolean;
|
|
21747
|
+
}
|
|
21748
|
+
export declare class MJViewTypeResolver extends ResolverBase {
|
|
21749
|
+
RunMJViewTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
21750
|
+
RunMJViewTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
21751
|
+
RunMJViewTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
21752
|
+
MJViewType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJViewType_ | null>;
|
|
21753
|
+
MJUserViews_ViewTypeIDArray(mjviewtype_: MJViewType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21754
|
+
CreateMJViewType(input: CreateMJViewTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
21755
|
+
UpdateMJViewType(input: UpdateMJViewTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
21756
|
+
DeleteMJViewType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
21757
|
+
}
|
|
20885
21758
|
export declare class MJWorkflowEngine_ {
|
|
20886
21759
|
ID: string;
|
|
20887
21760
|
Name: string;
|