@memberjunction/server 5.13.0 → 5.15.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.
Files changed (37) hide show
  1. package/dist/agents/skip-sdk.d.ts +8 -0
  2. package/dist/agents/skip-sdk.d.ts.map +1 -1
  3. package/dist/agents/skip-sdk.js +19 -0
  4. package/dist/agents/skip-sdk.js.map +1 -1
  5. package/dist/config.d.ts +37 -0
  6. package/dist/config.d.ts.map +1 -1
  7. package/dist/config.js +8 -0
  8. package/dist/config.js.map +1 -1
  9. package/dist/generated/generated.d.ts +169 -0
  10. package/dist/generated/generated.d.ts.map +1 -1
  11. package/dist/generated/generated.js +909 -1
  12. package/dist/generated/generated.js.map +1 -1
  13. package/dist/index.d.ts +2 -1
  14. package/dist/index.d.ts.map +1 -1
  15. package/dist/index.js +2 -1
  16. package/dist/index.js.map +1 -1
  17. package/dist/resolvers/GetDataResolver.d.ts.map +1 -1
  18. package/dist/resolvers/GetDataResolver.js +2 -1
  19. package/dist/resolvers/GetDataResolver.js.map +1 -1
  20. package/dist/resolvers/{CreateQueryResolver.d.ts → QuerySystemUserResolver.d.ts} +26 -82
  21. package/dist/resolvers/QuerySystemUserResolver.d.ts.map +1 -0
  22. package/dist/resolvers/{CreateQueryResolver.js → QuerySystemUserResolver.js} +123 -486
  23. package/dist/resolvers/QuerySystemUserResolver.js.map +1 -0
  24. package/dist/resolvers/TestQuerySQLResolver.d.ts +54 -0
  25. package/dist/resolvers/TestQuerySQLResolver.d.ts.map +1 -0
  26. package/dist/resolvers/TestQuerySQLResolver.js +189 -0
  27. package/dist/resolvers/TestQuerySQLResolver.js.map +1 -0
  28. package/package.json +59 -59
  29. package/src/agents/skip-sdk.ts +22 -0
  30. package/src/config.ts +8 -0
  31. package/src/generated/generated.ts +635 -2
  32. package/src/index.ts +2 -1
  33. package/src/resolvers/GetDataResolver.ts +2 -1
  34. package/src/resolvers/{CreateQueryResolver.ts → QuerySystemUserResolver.ts} +143 -413
  35. package/src/resolvers/TestQuerySQLResolver.ts +149 -0
  36. package/dist/resolvers/CreateQueryResolver.d.ts.map +0 -1
  37. package/dist/resolvers/CreateQueryResolver.js.map +0 -1
@@ -3108,6 +3108,8 @@ export declare class MJAIModelType_ {
3108
3108
  _mj__UpdatedAt: Date;
3109
3109
  DefaultInputModalityID: string;
3110
3110
  DefaultOutputModalityID: string;
3111
+ SupportsPrefill: boolean;
3112
+ PrefillFallbackText?: string;
3111
3113
  DefaultInputModality: string;
3112
3114
  DefaultOutputModality: string;
3113
3115
  MJAIModels_AIModelTypeIDArray: MJAIModel_[];
@@ -3119,6 +3121,8 @@ export declare class CreateMJAIModelTypeInput {
3119
3121
  Description: string | null;
3120
3122
  DefaultInputModalityID?: string;
3121
3123
  DefaultOutputModalityID?: string;
3124
+ SupportsPrefill?: boolean;
3125
+ PrefillFallbackText: string | null;
3122
3126
  }
3123
3127
  export declare class UpdateMJAIModelTypeInput {
3124
3128
  ID: string;
@@ -3126,6 +3130,8 @@ export declare class UpdateMJAIModelTypeInput {
3126
3130
  Description?: string | null;
3127
3131
  DefaultInputModalityID?: string;
3128
3132
  DefaultOutputModalityID?: string;
3133
+ SupportsPrefill?: boolean;
3134
+ PrefillFallbackText?: string | null;
3129
3135
  OldValues___?: KeyValuePairInput[];
3130
3136
  }
3131
3137
  export declare class RunMJAIModelTypeViewResult {
@@ -3166,6 +3172,8 @@ export declare class MJAIModelVendor_ {
3166
3172
  _mj__CreatedAt: Date;
3167
3173
  _mj__UpdatedAt: Date;
3168
3174
  TypeID: string;
3175
+ SupportsPrefill?: boolean;
3176
+ PrefillFallbackText?: string;
3169
3177
  Model: string;
3170
3178
  Vendor: string;
3171
3179
  Type: string;
@@ -3186,6 +3194,8 @@ export declare class CreateMJAIModelVendorInput {
3186
3194
  SupportsEffortLevel?: boolean;
3187
3195
  SupportsStreaming?: boolean;
3188
3196
  TypeID?: string;
3197
+ SupportsPrefill: boolean | null;
3198
+ PrefillFallbackText: string | null;
3189
3199
  }
3190
3200
  export declare class UpdateMJAIModelVendorInput {
3191
3201
  ID: string;
@@ -3202,6 +3212,8 @@ export declare class UpdateMJAIModelVendorInput {
3202
3212
  SupportsEffortLevel?: boolean;
3203
3213
  SupportsStreaming?: boolean;
3204
3214
  TypeID?: string;
3215
+ SupportsPrefill?: boolean | null;
3216
+ PrefillFallbackText?: string | null;
3205
3217
  OldValues___?: KeyValuePairInput[];
3206
3218
  }
3207
3219
  export declare class RunMJAIModelVendorViewResult {
@@ -3237,6 +3249,8 @@ export declare class MJAIModel_ {
3237
3249
  ModelSelectionInsights?: string;
3238
3250
  InheritTypeModalities: boolean;
3239
3251
  PriorVersionID?: string;
3252
+ SupportsPrefill?: boolean;
3253
+ PrefillFallbackText?: string;
3240
3254
  AIModelType: string;
3241
3255
  Vendor?: string;
3242
3256
  DriverClass?: string;
@@ -3279,6 +3293,8 @@ export declare class CreateMJAIModelInput {
3279
3293
  ModelSelectionInsights: string | null;
3280
3294
  InheritTypeModalities?: boolean;
3281
3295
  PriorVersionID: string | null;
3296
+ SupportsPrefill: boolean | null;
3297
+ PrefillFallbackText: string | null;
3282
3298
  Vendor: string | null;
3283
3299
  DriverClass: string | null;
3284
3300
  DriverImportPath: string | null;
@@ -3299,6 +3315,8 @@ export declare class UpdateMJAIModelInput {
3299
3315
  ModelSelectionInsights?: string | null;
3300
3316
  InheritTypeModalities?: boolean;
3301
3317
  PriorVersionID?: string | null;
3318
+ SupportsPrefill?: boolean | null;
3319
+ PrefillFallbackText?: string | null;
3302
3320
  Vendor?: string | null;
3303
3321
  DriverClass?: string | null;
3304
3322
  DriverImportPath?: string | null;
@@ -3627,6 +3645,7 @@ export declare class MJAIPromptRun_ {
3627
3645
  RunName?: string;
3628
3646
  Comments?: string;
3629
3647
  TestRunID?: string;
3648
+ AssistantPrefill?: string;
3630
3649
  Prompt: string;
3631
3650
  Model: string;
3632
3651
  Vendor: string;
@@ -3729,6 +3748,7 @@ export declare class CreateMJAIPromptRunInput {
3729
3748
  RunName: string | null;
3730
3749
  Comments: string | null;
3731
3750
  TestRunID: string | null;
3751
+ AssistantPrefill: string | null;
3732
3752
  }
3733
3753
  export declare class UpdateMJAIPromptRunInput {
3734
3754
  ID: string;
@@ -3813,6 +3833,7 @@ export declare class UpdateMJAIPromptRunInput {
3813
3833
  RunName?: string | null;
3814
3834
  Comments?: string | null;
3815
3835
  TestRunID?: string | null;
3836
+ AssistantPrefill?: string | null;
3816
3837
  OldValues___?: KeyValuePairInput[];
3817
3838
  }
3818
3839
  export declare class RunMJAIPromptRunViewResult {
@@ -3927,6 +3948,8 @@ export declare class MJAIPrompt_ {
3927
3948
  FailoverModelStrategy: string;
3928
3949
  FailoverErrorScope: string;
3929
3950
  EffortLevel?: number;
3951
+ AssistantPrefill?: string;
3952
+ PrefillFallbackMode: string;
3930
3953
  Template: string;
3931
3954
  Category?: string;
3932
3955
  Type: string;
@@ -3998,6 +4021,8 @@ export declare class CreateMJAIPromptInput {
3998
4021
  FailoverModelStrategy?: string;
3999
4022
  FailoverErrorScope?: string;
4000
4023
  EffortLevel: number | null;
4024
+ AssistantPrefill: string | null;
4025
+ PrefillFallbackMode?: string;
4001
4026
  }
4002
4027
  export declare class UpdateMJAIPromptInput {
4003
4028
  ID: string;
@@ -4049,6 +4074,8 @@ export declare class UpdateMJAIPromptInput {
4049
4074
  FailoverModelStrategy?: string;
4050
4075
  FailoverErrorScope?: string;
4051
4076
  EffortLevel?: number | null;
4077
+ AssistantPrefill?: string | null;
4078
+ PrefillFallbackMode?: string;
4052
4079
  OldValues___?: KeyValuePairInput[];
4053
4080
  }
4054
4081
  export declare class RunMJAIPromptViewResult {
@@ -6176,6 +6203,7 @@ export declare class MJCompanyIntegrationRun_ {
6176
6203
  Status: string;
6177
6204
  ErrorLog?: string;
6178
6205
  ConfigData?: string;
6206
+ ScheduledJobRunID?: string;
6179
6207
  Integration: string;
6180
6208
  Company: string;
6181
6209
  RunByUser: string;
@@ -6194,6 +6222,7 @@ export declare class CreateMJCompanyIntegrationRunInput {
6194
6222
  Status?: string;
6195
6223
  ErrorLog: string | null;
6196
6224
  ConfigData: string | null;
6225
+ ScheduledJobRunID: string | null;
6197
6226
  }
6198
6227
  export declare class UpdateMJCompanyIntegrationRunInput {
6199
6228
  ID: string;
@@ -6206,6 +6235,7 @@ export declare class UpdateMJCompanyIntegrationRunInput {
6206
6235
  Status?: string;
6207
6236
  ErrorLog?: string | null;
6208
6237
  ConfigData?: string | null;
6238
+ ScheduledJobRunID?: string | null;
6209
6239
  OldValues___?: KeyValuePairInput[];
6210
6240
  }
6211
6241
  export declare class RunMJCompanyIntegrationRunViewResult {
@@ -6308,6 +6338,7 @@ export declare class MJCompanyIntegration_ {
6308
6338
  LockedAt?: Date;
6309
6339
  LockedByInstance?: string;
6310
6340
  LockExpiresAt?: Date;
6341
+ ScheduledJobID?: string;
6311
6342
  Company: string;
6312
6343
  Integration: string;
6313
6344
  DriverClassName?: string;
@@ -6349,6 +6380,7 @@ export declare class CreateMJCompanyIntegrationInput {
6349
6380
  LockedAt: Date | null;
6350
6381
  LockedByInstance: string | null;
6351
6382
  LockExpiresAt: Date | null;
6383
+ ScheduledJobID: string | null;
6352
6384
  }
6353
6385
  export declare class UpdateMJCompanyIntegrationInput {
6354
6386
  ID: string;
@@ -6378,6 +6410,7 @@ export declare class UpdateMJCompanyIntegrationInput {
6378
6410
  LockedAt?: Date | null;
6379
6411
  LockedByInstance?: string | null;
6380
6412
  LockExpiresAt?: Date | null;
6413
+ ScheduledJobID?: string | null;
6381
6414
  OldValues___?: KeyValuePairInput[];
6382
6415
  }
6383
6416
  export declare class RunMJCompanyIntegrationViewResult {
@@ -9207,6 +9240,8 @@ export declare class MJEntity_ {
9207
9240
  MJVersionLabelItems_EntityIDArray: MJVersionLabelItem_[];
9208
9241
  MJEntityAIActions_EntityIDArray: MJEntityAIAction_[];
9209
9242
  MJEntityRelationships_RelatedEntityIDArray: MJEntityRelationship_[];
9243
+ MJEntityOrganicKeyRelatedEntities_RelatedEntityIDArray: MJEntityOrganicKeyRelatedEntity_[];
9244
+ MJEntityOrganicKeys_EntityIDArray: MJEntityOrganicKey_[];
9210
9245
  MJGeneratedCodes_LinkedEntityIDArray: MJGeneratedCode_[];
9211
9246
  MJRecordLinks_SourceEntityIDArray: MJRecordLink_[];
9212
9247
  MJCompanyIntegrationEntityMaps_EntityIDArray: MJCompanyIntegrationEntityMap_[];
@@ -9387,6 +9422,8 @@ export declare class MJEntityResolverBase extends ResolverBase {
9387
9422
  MJVersionLabelItems_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
9388
9423
  MJEntityAIActions_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
9389
9424
  MJEntityRelationships_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
9425
+ MJEntityOrganicKeyRelatedEntities_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
9426
+ MJEntityOrganicKeys_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
9390
9427
  MJGeneratedCodes_LinkedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
9391
9428
  MJRecordLinks_SourceEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
9392
9429
  MJCompanyIntegrationEntityMaps_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
@@ -10196,6 +10233,134 @@ export declare class MJEntityFieldResolver extends ResolverBase {
10196
10233
  UpdateMJEntityField(input: UpdateMJEntityFieldInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
10197
10234
  DeleteMJEntityField(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
10198
10235
  }
10236
+ export declare class MJEntityOrganicKeyRelatedEntity_ {
10237
+ ID: string;
10238
+ EntityOrganicKeyID: string;
10239
+ RelatedEntityID: string;
10240
+ RelatedEntityFieldNames?: string;
10241
+ TransitiveObjectName?: string;
10242
+ TransitiveObjectMatchFieldNames?: string;
10243
+ TransitiveObjectOutputFieldName?: string;
10244
+ RelatedEntityJoinFieldName?: string;
10245
+ DisplayName?: string;
10246
+ DisplayLocation: string;
10247
+ DisplayComponentID?: string;
10248
+ DisplayComponentConfiguration?: string;
10249
+ Sequence: number;
10250
+ _mj__CreatedAt: Date;
10251
+ _mj__UpdatedAt: Date;
10252
+ EntityOrganicKey: string;
10253
+ RelatedEntity: string;
10254
+ }
10255
+ export declare class CreateMJEntityOrganicKeyRelatedEntityInput {
10256
+ ID?: string;
10257
+ EntityOrganicKeyID?: string;
10258
+ RelatedEntityID?: string;
10259
+ RelatedEntityFieldNames: string | null;
10260
+ TransitiveObjectName: string | null;
10261
+ TransitiveObjectMatchFieldNames: string | null;
10262
+ TransitiveObjectOutputFieldName: string | null;
10263
+ RelatedEntityJoinFieldName: string | null;
10264
+ DisplayName: string | null;
10265
+ DisplayLocation?: string;
10266
+ DisplayComponentID: string | null;
10267
+ DisplayComponentConfiguration: string | null;
10268
+ Sequence?: number;
10269
+ }
10270
+ export declare class UpdateMJEntityOrganicKeyRelatedEntityInput {
10271
+ ID: string;
10272
+ EntityOrganicKeyID?: string;
10273
+ RelatedEntityID?: string;
10274
+ RelatedEntityFieldNames?: string | null;
10275
+ TransitiveObjectName?: string | null;
10276
+ TransitiveObjectMatchFieldNames?: string | null;
10277
+ TransitiveObjectOutputFieldName?: string | null;
10278
+ RelatedEntityJoinFieldName?: string | null;
10279
+ DisplayName?: string | null;
10280
+ DisplayLocation?: string;
10281
+ DisplayComponentID?: string | null;
10282
+ DisplayComponentConfiguration?: string | null;
10283
+ Sequence?: number;
10284
+ OldValues___?: KeyValuePairInput[];
10285
+ }
10286
+ export declare class RunMJEntityOrganicKeyRelatedEntityViewResult {
10287
+ Results: MJEntityOrganicKeyRelatedEntity_[];
10288
+ UserViewRunID?: string;
10289
+ RowCount: number;
10290
+ TotalRowCount: number;
10291
+ ExecutionTime: number;
10292
+ ErrorMessage?: string;
10293
+ Success: boolean;
10294
+ }
10295
+ export declare class MJEntityOrganicKeyRelatedEntityResolver extends ResolverBase {
10296
+ RunMJEntityOrganicKeyRelatedEntityViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
10297
+ RunMJEntityOrganicKeyRelatedEntityViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
10298
+ RunMJEntityOrganicKeyRelatedEntityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
10299
+ MJEntityOrganicKeyRelatedEntity(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJEntityOrganicKeyRelatedEntity_ | null>;
10300
+ CreateMJEntityOrganicKeyRelatedEntity(input: CreateMJEntityOrganicKeyRelatedEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
10301
+ UpdateMJEntityOrganicKeyRelatedEntity(input: UpdateMJEntityOrganicKeyRelatedEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
10302
+ DeleteMJEntityOrganicKeyRelatedEntity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
10303
+ }
10304
+ export declare class MJEntityOrganicKey_ {
10305
+ ID: string;
10306
+ EntityID: string;
10307
+ Name: string;
10308
+ Description?: string;
10309
+ MatchFieldNames: string;
10310
+ NormalizationStrategy: string;
10311
+ CustomNormalizationExpression?: string;
10312
+ AutoCreateRelatedViewOnForm: boolean;
10313
+ Sequence: number;
10314
+ Status: string;
10315
+ _mj__CreatedAt: Date;
10316
+ _mj__UpdatedAt: Date;
10317
+ Entity: string;
10318
+ MJEntityOrganicKeyRelatedEntities_EntityOrganicKeyIDArray: MJEntityOrganicKeyRelatedEntity_[];
10319
+ }
10320
+ export declare class CreateMJEntityOrganicKeyInput {
10321
+ ID?: string;
10322
+ EntityID?: string;
10323
+ Name?: string;
10324
+ Description: string | null;
10325
+ MatchFieldNames?: string;
10326
+ NormalizationStrategy?: string;
10327
+ CustomNormalizationExpression: string | null;
10328
+ AutoCreateRelatedViewOnForm?: boolean;
10329
+ Sequence?: number;
10330
+ Status?: string;
10331
+ }
10332
+ export declare class UpdateMJEntityOrganicKeyInput {
10333
+ ID: string;
10334
+ EntityID?: string;
10335
+ Name?: string;
10336
+ Description?: string | null;
10337
+ MatchFieldNames?: string;
10338
+ NormalizationStrategy?: string;
10339
+ CustomNormalizationExpression?: string | null;
10340
+ AutoCreateRelatedViewOnForm?: boolean;
10341
+ Sequence?: number;
10342
+ Status?: string;
10343
+ OldValues___?: KeyValuePairInput[];
10344
+ }
10345
+ export declare class RunMJEntityOrganicKeyViewResult {
10346
+ Results: MJEntityOrganicKey_[];
10347
+ UserViewRunID?: string;
10348
+ RowCount: number;
10349
+ TotalRowCount: number;
10350
+ ExecutionTime: number;
10351
+ ErrorMessage?: string;
10352
+ Success: boolean;
10353
+ }
10354
+ export declare class MJEntityOrganicKeyResolver extends ResolverBase {
10355
+ RunMJEntityOrganicKeyViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
10356
+ RunMJEntityOrganicKeyViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
10357
+ RunMJEntityOrganicKeyDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
10358
+ MJEntityOrganicKey(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJEntityOrganicKey_ | null>;
10359
+ MJEntityOrganicKeyRelatedEntities_EntityOrganicKeyIDArray(mjentityorganickey_: MJEntityOrganicKey_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
10360
+ CreateMJEntityOrganicKey(input: CreateMJEntityOrganicKeyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
10361
+ UpdateMJEntityOrganicKey(input: UpdateMJEntityOrganicKeyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
10362
+ DeleteMJEntityOrganicKey(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
10363
+ }
10199
10364
  export declare class MJEntityPermission_ {
10200
10365
  ID: string;
10201
10366
  EntityID: string;
@@ -14711,6 +14876,7 @@ export declare class MJScheduledJobRun_ {
14711
14876
  ScheduledJob: string;
14712
14877
  ExecutedByUser?: string;
14713
14878
  MJAIAgentRuns_ScheduledJobRunIDArray: MJAIAgentRun_[];
14879
+ MJCompanyIntegrationRuns_ScheduledJobRunIDArray: MJCompanyIntegrationRun_[];
14714
14880
  }
14715
14881
  export declare class CreateMJScheduledJobRunInput {
14716
14882
  ID?: string;
@@ -14752,6 +14918,7 @@ export declare class MJScheduledJobRunResolver extends ResolverBase {
14752
14918
  RunMJScheduledJobRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
14753
14919
  MJScheduledJobRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJScheduledJobRun_ | null>;
14754
14920
  MJAIAgentRuns_ScheduledJobRunIDArray(mjscheduledjobrun_: MJScheduledJobRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
14921
+ MJCompanyIntegrationRuns_ScheduledJobRunIDArray(mjscheduledjobrun_: MJScheduledJobRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
14755
14922
  CreateMJScheduledJobRun(input: CreateMJScheduledJobRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
14756
14923
  UpdateMJScheduledJobRun(input: UpdateMJScheduledJobRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
14757
14924
  DeleteMJScheduledJobRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
@@ -14839,6 +15006,7 @@ export declare class MJScheduledJob_ {
14839
15006
  OwnerUser?: string;
14840
15007
  NotifyUser?: string;
14841
15008
  MJScheduledJobRuns_ScheduledJobIDArray: MJScheduledJobRun_[];
15009
+ MJCompanyIntegrations_ScheduledJobIDArray: MJCompanyIntegration_[];
14842
15010
  }
14843
15011
  export declare class CreateMJScheduledJobInput {
14844
15012
  ID?: string;
@@ -14912,6 +15080,7 @@ export declare class MJScheduledJobResolver extends ResolverBase {
14912
15080
  RunMJScheduledJobDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
14913
15081
  MJScheduledJob(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJScheduledJob_ | null>;
14914
15082
  MJScheduledJobRuns_ScheduledJobIDArray(mjscheduledjob_: MJScheduledJob_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
15083
+ MJCompanyIntegrations_ScheduledJobIDArray(mjscheduledjob_: MJScheduledJob_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
14915
15084
  CreateMJScheduledJob(input: CreateMJScheduledJobInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
14916
15085
  UpdateMJScheduledJob(input: UpdateMJScheduledJobInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
14917
15086
  DeleteMJScheduledJob(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;