@memberjunction/server 2.48.0 → 2.49.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/apolloServer/TransactionPlugin.js +7 -7
- package/dist/apolloServer/TransactionPlugin.js.map +1 -1
- package/dist/auth/index.d.ts +3 -3
- package/dist/auth/index.d.ts.map +1 -1
- package/dist/auth/index.js.map +1 -1
- package/dist/context.d.ts +3 -3
- package/dist/context.d.ts.map +1 -1
- package/dist/context.js.map +1 -1
- package/dist/generated/generated.d.ts +683 -326
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +5528 -3028
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/ResolverBase.d.ts +17 -17
- package/dist/generic/ResolverBase.d.ts.map +1 -1
- package/dist/generic/ResolverBase.js +7 -5
- package/dist/generic/ResolverBase.js.map +1 -1
- package/dist/generic/RunViewResolver.d.ts.map +1 -1
- package/dist/generic/RunViewResolver.js +12 -4
- package/dist/generic/RunViewResolver.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +16 -14
- package/dist/index.js.map +1 -1
- package/dist/orm.d.ts +3 -3
- package/dist/orm.d.ts.map +1 -1
- package/dist/orm.js +14 -15
- package/dist/orm.js.map +1 -1
- package/dist/resolvers/AskSkipResolver.d.ts +19 -19
- package/dist/resolvers/AskSkipResolver.d.ts.map +1 -1
- package/dist/resolvers/AskSkipResolver.js +17 -12
- package/dist/resolvers/AskSkipResolver.js.map +1 -1
- package/dist/resolvers/EntityResolver.d.ts +2 -1
- package/dist/resolvers/EntityResolver.d.ts.map +1 -1
- package/dist/resolvers/EntityResolver.js +6 -3
- package/dist/resolvers/EntityResolver.js.map +1 -1
- package/dist/resolvers/FileCategoryResolver.d.ts.map +1 -1
- package/dist/resolvers/FileCategoryResolver.js +10 -2
- package/dist/resolvers/FileCategoryResolver.js.map +1 -1
- package/dist/resolvers/GetDataResolver.d.ts.map +1 -1
- package/dist/resolvers/GetDataResolver.js +4 -2
- package/dist/resolvers/GetDataResolver.js.map +1 -1
- package/dist/resolvers/ReportResolver.d.ts.map +1 -1
- package/dist/resolvers/ReportResolver.js +5 -3
- package/dist/resolvers/ReportResolver.js.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts +19 -0
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -0
- package/dist/resolvers/RunAIAgentResolver.js +194 -0
- package/dist/resolvers/RunAIAgentResolver.js.map +1 -0
- package/dist/resolvers/UserFavoriteResolver.d.ts +2 -2
- package/dist/resolvers/UserViewResolver.d.ts +4 -4
- package/dist/resolvers/UserViewResolver.d.ts.map +1 -1
- package/dist/resolvers/UserViewResolver.js.map +1 -1
- package/dist/types.d.ts +6 -6
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/dist/util.d.ts +10 -3
- package/dist/util.d.ts.map +1 -1
- package/dist/util.js +22 -3
- package/dist/util.js.map +1 -1
- package/package.json +24 -25
- package/src/apolloServer/TransactionPlugin.ts +8 -8
- package/src/auth/index.ts +4 -4
- package/src/context.ts +2 -2
- package/src/generated/generated.ts +4762 -3024
- package/src/generic/ResolverBase.ts +23 -22
- package/src/generic/RunViewResolver.ts +12 -4
- package/src/index.ts +17 -15
- package/src/orm.ts +18 -17
- package/src/resolvers/AskSkipResolver.ts +36 -32
- package/src/resolvers/EntityResolver.ts +5 -2
- package/src/resolvers/FileCategoryResolver.ts +9 -2
- package/src/resolvers/GetDataResolver.ts +4 -2
- package/src/resolvers/ReportResolver.ts +5 -3
- package/src/resolvers/RunAIAgentResolver.ts +174 -0
- package/src/resolvers/UserViewResolver.ts +0 -1
- package/src/types.ts +8 -8
- package/src/util.ts +31 -6
|
@@ -21,6 +21,7 @@ export declare class ScheduledAction_ {
|
|
|
21
21
|
ScheduledActionParams_ScheduledActionIDArray: ScheduledActionParam_[];
|
|
22
22
|
}
|
|
23
23
|
export declare class CreateScheduledActionInput {
|
|
24
|
+
ID?: string;
|
|
24
25
|
Name?: string;
|
|
25
26
|
Description: string | null;
|
|
26
27
|
CreatedByUserID?: string;
|
|
@@ -66,7 +67,7 @@ export declare class ScheduledActionResolver extends ResolverBase {
|
|
|
66
67
|
RunScheduledActionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
67
68
|
RunScheduledActionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
68
69
|
ScheduledAction(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ScheduledAction_ | null>;
|
|
69
|
-
ScheduledActionParams_ScheduledActionIDArray(scheduledaction_: ScheduledAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
70
|
+
ScheduledActionParams_ScheduledActionIDArray(scheduledaction_: ScheduledAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
70
71
|
CreateScheduledAction(input: CreateScheduledActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
71
72
|
UpdateScheduledAction(input: UpdateScheduledActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
72
73
|
DeleteScheduledAction(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -84,6 +85,7 @@ export declare class ScheduledActionParam_ {
|
|
|
84
85
|
ActionParam: string;
|
|
85
86
|
}
|
|
86
87
|
export declare class CreateScheduledActionParamInput {
|
|
88
|
+
ID?: string;
|
|
87
89
|
ScheduledActionID?: string;
|
|
88
90
|
ActionParamID?: string;
|
|
89
91
|
ValueType?: string;
|
|
@@ -132,6 +134,7 @@ export declare class ExplorerNavigationItem_ {
|
|
|
132
134
|
_mj__UpdatedAt: Date;
|
|
133
135
|
}
|
|
134
136
|
export declare class CreateExplorerNavigationItemInput {
|
|
137
|
+
ID?: string;
|
|
135
138
|
Sequence?: number;
|
|
136
139
|
Name?: string;
|
|
137
140
|
Route?: string;
|
|
@@ -185,6 +188,7 @@ export declare class GeneratedCodeCategory_ {
|
|
|
185
188
|
GeneratedCodes_CategoryIDArray: GeneratedCode_[];
|
|
186
189
|
}
|
|
187
190
|
export declare class CreateGeneratedCodeCategoryInput {
|
|
191
|
+
ID?: string;
|
|
188
192
|
Name?: string;
|
|
189
193
|
Description: string | null;
|
|
190
194
|
ParentID: string | null;
|
|
@@ -210,8 +214,8 @@ export declare class GeneratedCodeCategoryResolver extends ResolverBase {
|
|
|
210
214
|
RunGeneratedCodeCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
211
215
|
RunGeneratedCodeCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
212
216
|
GeneratedCodeCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<GeneratedCodeCategory_ | null>;
|
|
213
|
-
GeneratedCodeCategories_ParentIDArray(generatedcodecategory_: GeneratedCodeCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
214
|
-
GeneratedCodes_CategoryIDArray(generatedcodecategory_: GeneratedCodeCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
217
|
+
GeneratedCodeCategories_ParentIDArray(generatedcodecategory_: GeneratedCodeCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
218
|
+
GeneratedCodes_CategoryIDArray(generatedcodecategory_: GeneratedCodeCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
215
219
|
CreateGeneratedCodeCategory(input: CreateGeneratedCodeCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
216
220
|
UpdateGeneratedCodeCategory(input: UpdateGeneratedCodeCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
217
221
|
DeleteGeneratedCodeCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -228,6 +232,7 @@ export declare class AIAgentModel_ {
|
|
|
228
232
|
Model?: string;
|
|
229
233
|
}
|
|
230
234
|
export declare class CreateAIAgentModelInput {
|
|
235
|
+
ID?: string;
|
|
231
236
|
AgentID: string | null;
|
|
232
237
|
ModelID: string | null;
|
|
233
238
|
Active: boolean | null;
|
|
@@ -268,6 +273,7 @@ export declare class AIAgentNoteType_ {
|
|
|
268
273
|
AIAgentNotes_AgentNoteTypeIDArray: AIAgentNote_[];
|
|
269
274
|
}
|
|
270
275
|
export declare class CreateAIAgentNoteTypeInput {
|
|
276
|
+
ID?: string;
|
|
271
277
|
Name: string | null;
|
|
272
278
|
Description: string | null;
|
|
273
279
|
}
|
|
@@ -291,7 +297,7 @@ export declare class AIAgentNoteTypeResolver extends ResolverBase {
|
|
|
291
297
|
RunAIAgentNoteTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
292
298
|
RunAIAgentNoteTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
293
299
|
AIAgentNoteType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentNoteType_ | null>;
|
|
294
|
-
AIAgentNotes_AgentNoteTypeIDArray(aiagentnotetype_: AIAgentNoteType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
300
|
+
AIAgentNotes_AgentNoteTypeIDArray(aiagentnotetype_: AIAgentNoteType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
295
301
|
CreateAIAgentNoteType(input: CreateAIAgentNoteTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
296
302
|
UpdateAIAgentNoteType(input: UpdateAIAgentNoteTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
297
303
|
DeleteAIAgentNoteType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -313,6 +319,12 @@ export declare class AIAgentRun_ {
|
|
|
313
319
|
TotalCost?: number;
|
|
314
320
|
_mj__CreatedAt: Date;
|
|
315
321
|
_mj__UpdatedAt: Date;
|
|
322
|
+
TotalPromptTokensUsed?: number;
|
|
323
|
+
TotalCompletionTokensUsed?: number;
|
|
324
|
+
TotalTokensUsedRollup?: number;
|
|
325
|
+
TotalPromptTokensUsedRollup?: number;
|
|
326
|
+
TotalCompletionTokensUsedRollup?: number;
|
|
327
|
+
TotalCostRollup?: number;
|
|
316
328
|
Agent?: string;
|
|
317
329
|
Conversation?: string;
|
|
318
330
|
User?: string;
|
|
@@ -321,6 +333,7 @@ export declare class AIAgentRun_ {
|
|
|
321
333
|
MJ_AIPromptRuns_AgentRunIDArray: AIPromptRun_[];
|
|
322
334
|
}
|
|
323
335
|
export declare class CreateAIAgentRunInput {
|
|
336
|
+
ID?: string;
|
|
324
337
|
AgentID?: string;
|
|
325
338
|
ParentRunID: string | null;
|
|
326
339
|
Status?: string;
|
|
@@ -334,6 +347,12 @@ export declare class CreateAIAgentRunInput {
|
|
|
334
347
|
AgentState: string | null;
|
|
335
348
|
TotalTokensUsed?: number | null;
|
|
336
349
|
TotalCost?: number | null;
|
|
350
|
+
TotalPromptTokensUsed: number | null;
|
|
351
|
+
TotalCompletionTokensUsed: number | null;
|
|
352
|
+
TotalTokensUsedRollup: number | null;
|
|
353
|
+
TotalPromptTokensUsedRollup: number | null;
|
|
354
|
+
TotalCompletionTokensUsedRollup: number | null;
|
|
355
|
+
TotalCostRollup: number | null;
|
|
337
356
|
}
|
|
338
357
|
export declare class UpdateAIAgentRunInput {
|
|
339
358
|
ID: string;
|
|
@@ -350,6 +369,12 @@ export declare class UpdateAIAgentRunInput {
|
|
|
350
369
|
AgentState?: string | null;
|
|
351
370
|
TotalTokensUsed?: number | null;
|
|
352
371
|
TotalCost?: number | null;
|
|
372
|
+
TotalPromptTokensUsed?: number | null;
|
|
373
|
+
TotalCompletionTokensUsed?: number | null;
|
|
374
|
+
TotalTokensUsedRollup?: number | null;
|
|
375
|
+
TotalPromptTokensUsedRollup?: number | null;
|
|
376
|
+
TotalCompletionTokensUsedRollup?: number | null;
|
|
377
|
+
TotalCostRollup?: number | null;
|
|
353
378
|
OldValues___?: KeyValuePairInput[];
|
|
354
379
|
}
|
|
355
380
|
export declare class RunAIAgentRunViewResult {
|
|
@@ -366,9 +391,9 @@ export declare class AIAgentRunResolver extends ResolverBase {
|
|
|
366
391
|
RunAIAgentRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
367
392
|
RunAIAgentRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
368
393
|
AIAgentRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentRun_ | null>;
|
|
369
|
-
MJ_AIAgentRunSteps_AgentRunIDArray(aiagentrun_: AIAgentRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
370
|
-
MJ_AIAgentRuns_ParentRunIDArray(aiagentrun_: AIAgentRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
371
|
-
MJ_AIPromptRuns_AgentRunIDArray(aiagentrun_: AIAgentRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
394
|
+
MJ_AIAgentRunSteps_AgentRunIDArray(aiagentrun_: AIAgentRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
395
|
+
MJ_AIAgentRuns_ParentRunIDArray(aiagentrun_: AIAgentRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
396
|
+
MJ_AIPromptRuns_AgentRunIDArray(aiagentrun_: AIAgentRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
372
397
|
CreateAIAgentRun(input: CreateAIAgentRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
373
398
|
UpdateAIAgentRun(input: UpdateAIAgentRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
374
399
|
DeleteAIAgentRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -381,11 +406,13 @@ export declare class AIVendor_ {
|
|
|
381
406
|
_mj__UpdatedAt: Date;
|
|
382
407
|
MJ_AIPromptModels_VendorIDArray: AIPromptModel_[];
|
|
383
408
|
AIResultCache_VendorIDArray: AIResultCache_[];
|
|
409
|
+
MJ_AIModelCosts_VendorIDArray: AIModelCost_[];
|
|
384
410
|
MJ_AIModelVendors_VendorIDArray: AIModelVendor_[];
|
|
385
411
|
MJ_AIPromptRuns_VendorIDArray: AIPromptRun_[];
|
|
386
412
|
MJ_AIVendorTypes_VendorIDArray: AIVendorType_[];
|
|
387
413
|
}
|
|
388
414
|
export declare class CreateAIVendorInput {
|
|
415
|
+
ID?: string;
|
|
389
416
|
Name?: string;
|
|
390
417
|
Description: string | null;
|
|
391
418
|
}
|
|
@@ -409,11 +436,12 @@ export declare class AIVendorResolver extends ResolverBase {
|
|
|
409
436
|
RunAIVendorViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
410
437
|
RunAIVendorDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
411
438
|
AIVendor(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIVendor_ | null>;
|
|
412
|
-
MJ_AIPromptModels_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
413
|
-
AIResultCache_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
439
|
+
MJ_AIPromptModels_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
440
|
+
AIResultCache_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
441
|
+
MJ_AIModelCosts_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
442
|
+
MJ_AIModelVendors_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
443
|
+
MJ_AIPromptRuns_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
444
|
+
MJ_AIVendorTypes_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
417
445
|
CreateAIVendor(input: CreateAIVendorInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
418
446
|
UpdateAIVendor(input: UpdateAIVendorInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
419
447
|
DeleteAIVendor(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -437,6 +465,7 @@ export declare class AIConfiguration_ {
|
|
|
437
465
|
MJ_AIPromptRuns_ConfigurationIDArray: AIPromptRun_[];
|
|
438
466
|
}
|
|
439
467
|
export declare class CreateAIConfigurationInput {
|
|
468
|
+
ID?: string;
|
|
440
469
|
Name?: string;
|
|
441
470
|
Description: string | null;
|
|
442
471
|
IsDefault?: boolean;
|
|
@@ -468,11 +497,11 @@ export declare class AIConfigurationResolver extends ResolverBase {
|
|
|
468
497
|
RunAIConfigurationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
469
498
|
RunAIConfigurationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
470
499
|
AIConfiguration(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIConfiguration_ | null>;
|
|
471
|
-
MJ_AIConfigurationParams_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
472
|
-
MJ_AIAgentPrompts_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
473
|
-
MJ_AIPromptModels_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
474
|
-
AIResultCache_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
475
|
-
MJ_AIPromptRuns_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
500
|
+
MJ_AIConfigurationParams_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
501
|
+
MJ_AIAgentPrompts_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
502
|
+
MJ_AIPromptModels_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
503
|
+
AIResultCache_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
504
|
+
MJ_AIPromptRuns_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
476
505
|
CreateAIConfiguration(input: CreateAIConfigurationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
477
506
|
UpdateAIConfiguration(input: UpdateAIConfigurationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
478
507
|
DeleteAIConfiguration(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -493,6 +522,8 @@ export declare class AIAgent_ {
|
|
|
493
522
|
ContextCompressionPromptID?: string;
|
|
494
523
|
ContextCompressionMessageRetentionCount?: number;
|
|
495
524
|
TypeID?: string;
|
|
525
|
+
Status?: string;
|
|
526
|
+
DriverClass?: string;
|
|
496
527
|
Parent?: string;
|
|
497
528
|
ContextCompressionPrompt?: string;
|
|
498
529
|
Type?: string;
|
|
@@ -508,6 +539,7 @@ export declare class AIAgent_ {
|
|
|
508
539
|
AIAgents_ParentIDArray: AIAgent_[];
|
|
509
540
|
}
|
|
510
541
|
export declare class CreateAIAgentInput {
|
|
542
|
+
ID?: string;
|
|
511
543
|
Name: string | null;
|
|
512
544
|
Description: string | null;
|
|
513
545
|
LogoURL: string | null;
|
|
@@ -520,6 +552,8 @@ export declare class CreateAIAgentInput {
|
|
|
520
552
|
ContextCompressionPromptID: string | null;
|
|
521
553
|
ContextCompressionMessageRetentionCount: number | null;
|
|
522
554
|
TypeID: string | null;
|
|
555
|
+
Status: string | null;
|
|
556
|
+
DriverClass: string | null;
|
|
523
557
|
}
|
|
524
558
|
export declare class UpdateAIAgentInput {
|
|
525
559
|
ID: string;
|
|
@@ -535,6 +569,8 @@ export declare class UpdateAIAgentInput {
|
|
|
535
569
|
ContextCompressionPromptID?: string | null;
|
|
536
570
|
ContextCompressionMessageRetentionCount?: number | null;
|
|
537
571
|
TypeID?: string | null;
|
|
572
|
+
Status?: string | null;
|
|
573
|
+
DriverClass?: string | null;
|
|
538
574
|
OldValues___?: KeyValuePairInput[];
|
|
539
575
|
}
|
|
540
576
|
export declare class RunAIAgentViewResult {
|
|
@@ -551,20 +587,90 @@ export declare class AIAgentResolver extends ResolverBase {
|
|
|
551
587
|
RunAIAgentViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
552
588
|
RunAIAgentDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
553
589
|
AIAgent(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgent_ | null>;
|
|
554
|
-
AIAgentRequests_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
555
|
-
AIAgentLearningCycles_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
556
|
-
AIAgentModels_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
557
|
-
AIAgentActions_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
558
|
-
MJ_AIAgentPrompts_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
559
|
-
MJ_AIAgentRuns_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
560
|
-
AIAgentNotes_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
561
|
-
AIResultCache_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
562
|
-
MJ_AIPromptRuns_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
563
|
-
AIAgents_ParentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
590
|
+
AIAgentRequests_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
591
|
+
AIAgentLearningCycles_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
592
|
+
AIAgentModels_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
593
|
+
AIAgentActions_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
594
|
+
MJ_AIAgentPrompts_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
595
|
+
MJ_AIAgentRuns_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
596
|
+
AIAgentNotes_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
597
|
+
AIResultCache_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
598
|
+
MJ_AIPromptRuns_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
599
|
+
AIAgents_ParentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
564
600
|
CreateAIAgent(input: CreateAIAgentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
565
601
|
UpdateAIAgent(input: UpdateAIAgentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
566
602
|
DeleteAIAgent(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
567
603
|
}
|
|
604
|
+
export declare class AIModelCost_ {
|
|
605
|
+
ID: string;
|
|
606
|
+
ModelID: string;
|
|
607
|
+
VendorID: string;
|
|
608
|
+
StartedAt?: Date;
|
|
609
|
+
EndedAt?: Date;
|
|
610
|
+
Status: string;
|
|
611
|
+
Currency: string;
|
|
612
|
+
PriceTypeID: string;
|
|
613
|
+
InputPricePerUnit: number;
|
|
614
|
+
OutputPricePerUnit: number;
|
|
615
|
+
UnitTypeID: string;
|
|
616
|
+
ProcessingType: string;
|
|
617
|
+
Comments?: string;
|
|
618
|
+
_mj__CreatedAt: Date;
|
|
619
|
+
_mj__UpdatedAt: Date;
|
|
620
|
+
Model: string;
|
|
621
|
+
Vendor: string;
|
|
622
|
+
PriceType: string;
|
|
623
|
+
UnitType: string;
|
|
624
|
+
}
|
|
625
|
+
export declare class CreateAIModelCostInput {
|
|
626
|
+
ID?: string;
|
|
627
|
+
ModelID?: string;
|
|
628
|
+
VendorID?: string;
|
|
629
|
+
StartedAt?: Date | null;
|
|
630
|
+
EndedAt: Date | null;
|
|
631
|
+
Status?: string;
|
|
632
|
+
Currency?: string;
|
|
633
|
+
PriceTypeID?: string;
|
|
634
|
+
InputPricePerUnit?: number;
|
|
635
|
+
OutputPricePerUnit?: number;
|
|
636
|
+
UnitTypeID?: string;
|
|
637
|
+
ProcessingType?: string;
|
|
638
|
+
Comments: string | null;
|
|
639
|
+
}
|
|
640
|
+
export declare class UpdateAIModelCostInput {
|
|
641
|
+
ID: string;
|
|
642
|
+
ModelID?: string;
|
|
643
|
+
VendorID?: string;
|
|
644
|
+
StartedAt?: Date | null;
|
|
645
|
+
EndedAt?: Date | null;
|
|
646
|
+
Status?: string;
|
|
647
|
+
Currency?: string;
|
|
648
|
+
PriceTypeID?: string;
|
|
649
|
+
InputPricePerUnit?: number;
|
|
650
|
+
OutputPricePerUnit?: number;
|
|
651
|
+
UnitTypeID?: string;
|
|
652
|
+
ProcessingType?: string;
|
|
653
|
+
Comments?: string | null;
|
|
654
|
+
OldValues___?: KeyValuePairInput[];
|
|
655
|
+
}
|
|
656
|
+
export declare class RunAIModelCostViewResult {
|
|
657
|
+
Results: AIModelCost_[];
|
|
658
|
+
UserViewRunID?: string;
|
|
659
|
+
RowCount: number;
|
|
660
|
+
TotalRowCount: number;
|
|
661
|
+
ExecutionTime: number;
|
|
662
|
+
ErrorMessage?: string;
|
|
663
|
+
Success: boolean;
|
|
664
|
+
}
|
|
665
|
+
export declare class AIModelCostResolver extends ResolverBase {
|
|
666
|
+
RunAIModelCostViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
667
|
+
RunAIModelCostViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
668
|
+
RunAIModelCostDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
669
|
+
AIModelCost(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModelCost_ | null>;
|
|
670
|
+
CreateAIModelCost(input: CreateAIModelCostInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
671
|
+
UpdateAIModelCost(input: UpdateAIModelCostInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
672
|
+
DeleteAIModelCost(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
673
|
+
}
|
|
568
674
|
export declare class AIPromptModel_ {
|
|
569
675
|
ID: string;
|
|
570
676
|
PromptID: string;
|
|
@@ -586,6 +692,7 @@ export declare class AIPromptModel_ {
|
|
|
586
692
|
Configuration?: string;
|
|
587
693
|
}
|
|
588
694
|
export declare class CreateAIPromptModelInput {
|
|
695
|
+
ID?: string;
|
|
589
696
|
PromptID?: string;
|
|
590
697
|
ModelID?: string;
|
|
591
698
|
VendorID: string | null;
|
|
@@ -639,14 +746,19 @@ export declare class AIAgentType_ {
|
|
|
639
746
|
IsActive: boolean;
|
|
640
747
|
_mj__CreatedAt: Date;
|
|
641
748
|
_mj__UpdatedAt: Date;
|
|
749
|
+
AgentPromptPlaceholder?: string;
|
|
750
|
+
DriverClass?: string;
|
|
642
751
|
SystemPrompt?: string;
|
|
643
752
|
AIAgents_TypeIDArray: AIAgent_[];
|
|
644
753
|
}
|
|
645
754
|
export declare class CreateAIAgentTypeInput {
|
|
755
|
+
ID?: string;
|
|
646
756
|
Name?: string;
|
|
647
757
|
Description: string | null;
|
|
648
758
|
SystemPromptID: string | null;
|
|
649
759
|
IsActive?: boolean;
|
|
760
|
+
AgentPromptPlaceholder: string | null;
|
|
761
|
+
DriverClass: string | null;
|
|
650
762
|
}
|
|
651
763
|
export declare class UpdateAIAgentTypeInput {
|
|
652
764
|
ID: string;
|
|
@@ -654,6 +766,8 @@ export declare class UpdateAIAgentTypeInput {
|
|
|
654
766
|
Description?: string | null;
|
|
655
767
|
SystemPromptID?: string | null;
|
|
656
768
|
IsActive?: boolean;
|
|
769
|
+
AgentPromptPlaceholder?: string | null;
|
|
770
|
+
DriverClass?: string | null;
|
|
657
771
|
OldValues___?: KeyValuePairInput[];
|
|
658
772
|
}
|
|
659
773
|
export declare class RunAIAgentTypeViewResult {
|
|
@@ -670,7 +784,7 @@ export declare class AIAgentTypeResolver extends ResolverBase {
|
|
|
670
784
|
RunAIAgentTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
671
785
|
RunAIAgentTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
672
786
|
AIAgentType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentType_ | null>;
|
|
673
|
-
AIAgents_TypeIDArray(aiagenttype_: AIAgentType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
787
|
+
AIAgents_TypeIDArray(aiagenttype_: AIAgentType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
674
788
|
CreateAIAgentType(input: CreateAIAgentTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
675
789
|
UpdateAIAgentType(input: UpdateAIAgentTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
676
790
|
DeleteAIAgentType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -689,6 +803,7 @@ export declare class AIAgentNote_ {
|
|
|
689
803
|
User?: string;
|
|
690
804
|
}
|
|
691
805
|
export declare class CreateAIAgentNoteInput {
|
|
806
|
+
ID?: string;
|
|
692
807
|
AgentID: string | null;
|
|
693
808
|
AgentNoteTypeID: string | null;
|
|
694
809
|
Note: string | null;
|
|
@@ -733,6 +848,7 @@ export declare class AIAgentAction_ {
|
|
|
733
848
|
Action?: string;
|
|
734
849
|
}
|
|
735
850
|
export declare class CreateAIAgentActionInput {
|
|
851
|
+
ID?: string;
|
|
736
852
|
AgentID: string | null;
|
|
737
853
|
ActionID: string | null;
|
|
738
854
|
Status?: string;
|
|
@@ -762,6 +878,44 @@ export declare class AIAgentActionResolver extends ResolverBase {
|
|
|
762
878
|
UpdateAIAgentAction(input: UpdateAIAgentActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
763
879
|
DeleteAIAgentAction(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
764
880
|
}
|
|
881
|
+
export declare class AIModelPriceType_ {
|
|
882
|
+
ID: string;
|
|
883
|
+
Name: string;
|
|
884
|
+
Description?: string;
|
|
885
|
+
_mj__CreatedAt: Date;
|
|
886
|
+
_mj__UpdatedAt: Date;
|
|
887
|
+
MJ_AIModelCosts_PriceTypeIDArray: AIModelCost_[];
|
|
888
|
+
}
|
|
889
|
+
export declare class CreateAIModelPriceTypeInput {
|
|
890
|
+
ID?: string;
|
|
891
|
+
Name?: string;
|
|
892
|
+
Description: string | null;
|
|
893
|
+
}
|
|
894
|
+
export declare class UpdateAIModelPriceTypeInput {
|
|
895
|
+
ID: string;
|
|
896
|
+
Name?: string;
|
|
897
|
+
Description?: string | null;
|
|
898
|
+
OldValues___?: KeyValuePairInput[];
|
|
899
|
+
}
|
|
900
|
+
export declare class RunAIModelPriceTypeViewResult {
|
|
901
|
+
Results: AIModelPriceType_[];
|
|
902
|
+
UserViewRunID?: string;
|
|
903
|
+
RowCount: number;
|
|
904
|
+
TotalRowCount: number;
|
|
905
|
+
ExecutionTime: number;
|
|
906
|
+
ErrorMessage?: string;
|
|
907
|
+
Success: boolean;
|
|
908
|
+
}
|
|
909
|
+
export declare class AIModelPriceTypeResolver extends ResolverBase {
|
|
910
|
+
RunAIModelPriceTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
911
|
+
RunAIModelPriceTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
912
|
+
RunAIModelPriceTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
913
|
+
AIModelPriceType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModelPriceType_ | null>;
|
|
914
|
+
MJ_AIModelCosts_PriceTypeIDArray(aimodelpricetype_: AIModelPriceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
915
|
+
CreateAIModelPriceType(input: CreateAIModelPriceTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
916
|
+
UpdateAIModelPriceType(input: UpdateAIModelPriceTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
917
|
+
DeleteAIModelPriceType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
918
|
+
}
|
|
765
919
|
export declare class AIPrompt_ {
|
|
766
920
|
ID: string;
|
|
767
921
|
Name: string;
|
|
@@ -814,6 +968,7 @@ export declare class AIPrompt_ {
|
|
|
814
968
|
AIAgents_ContextCompressionPromptIDArray: AIAgent_[];
|
|
815
969
|
}
|
|
816
970
|
export declare class CreateAIPromptInput {
|
|
971
|
+
ID?: string;
|
|
817
972
|
Name?: string;
|
|
818
973
|
Description: string | null;
|
|
819
974
|
TemplateID?: string;
|
|
@@ -897,15 +1052,15 @@ export declare class AIPromptResolver extends ResolverBase {
|
|
|
897
1052
|
RunAIPromptViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
898
1053
|
RunAIPromptDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
899
1054
|
AIPrompt(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIPrompt_ | null>;
|
|
900
|
-
AIResultCache_AIPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
901
|
-
MJ_AIAgentTypes_SystemPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
902
|
-
MJ_AIConfigurations_DefaultPromptForContextCompressionIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
903
|
-
MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
904
|
-
AIPrompts_ResultSelectorPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
905
|
-
MJ_AIPromptModels_PromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
906
|
-
MJ_AIAgentPrompts_PromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
907
|
-
MJ_AIPromptRuns_PromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
908
|
-
AIAgents_ContextCompressionPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1055
|
+
AIResultCache_AIPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1056
|
+
MJ_AIAgentTypes_SystemPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1057
|
+
MJ_AIConfigurations_DefaultPromptForContextCompressionIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1058
|
+
MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1059
|
+
AIPrompts_ResultSelectorPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1060
|
+
MJ_AIPromptModels_PromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1061
|
+
MJ_AIAgentPrompts_PromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1062
|
+
MJ_AIPromptRuns_PromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1063
|
+
AIAgents_ContextCompressionPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
909
1064
|
CreateAIPrompt(input: CreateAIPromptInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
910
1065
|
UpdateAIPrompt(input: UpdateAIPromptInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
911
1066
|
DeleteAIPrompt(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -933,6 +1088,7 @@ export declare class AIResultCache_ {
|
|
|
933
1088
|
Configuration?: string;
|
|
934
1089
|
}
|
|
935
1090
|
export declare class CreateAIResultCacheInput {
|
|
1091
|
+
ID?: string;
|
|
936
1092
|
AIPromptID?: string;
|
|
937
1093
|
AIModelID?: string;
|
|
938
1094
|
RunAt?: Date;
|
|
@@ -992,6 +1148,7 @@ export declare class AIPromptCategory_ {
|
|
|
992
1148
|
AIPromptCategories_ParentIDArray: AIPromptCategory_[];
|
|
993
1149
|
}
|
|
994
1150
|
export declare class CreateAIPromptCategoryInput {
|
|
1151
|
+
ID?: string;
|
|
995
1152
|
Name?: string;
|
|
996
1153
|
ParentID: string | null;
|
|
997
1154
|
Description: string | null;
|
|
@@ -1017,8 +1174,8 @@ export declare class AIPromptCategoryResolver extends ResolverBase {
|
|
|
1017
1174
|
RunAIPromptCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1018
1175
|
RunAIPromptCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1019
1176
|
AIPromptCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIPromptCategory_ | null>;
|
|
1020
|
-
AIPrompts_CategoryIDArray(aipromptcategory_: AIPromptCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1021
|
-
AIPromptCategories_ParentIDArray(aipromptcategory_: AIPromptCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1177
|
+
AIPrompts_CategoryIDArray(aipromptcategory_: AIPromptCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1178
|
+
AIPromptCategories_ParentIDArray(aipromptcategory_: AIPromptCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1022
1179
|
CreateAIPromptCategory(input: CreateAIPromptCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1023
1180
|
UpdateAIPromptCategory(input: UpdateAIPromptCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1024
1181
|
DeleteAIPromptCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1032,6 +1189,7 @@ export declare class AIPromptType_ {
|
|
|
1032
1189
|
AIPrompts_TypeIDArray: AIPrompt_[];
|
|
1033
1190
|
}
|
|
1034
1191
|
export declare class CreateAIPromptTypeInput {
|
|
1192
|
+
ID?: string;
|
|
1035
1193
|
Name?: string;
|
|
1036
1194
|
Description: string | null;
|
|
1037
1195
|
}
|
|
@@ -1055,7 +1213,7 @@ export declare class AIPromptTypeResolver extends ResolverBase {
|
|
|
1055
1213
|
RunAIPromptTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1056
1214
|
RunAIPromptTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1057
1215
|
AIPromptType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIPromptType_ | null>;
|
|
1058
|
-
AIPrompts_TypeIDArray(aiprompttype_: AIPromptType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1216
|
+
AIPrompts_TypeIDArray(aiprompttype_: AIPromptType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1059
1217
|
CreateAIPromptType(input: CreateAIPromptTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1060
1218
|
UpdateAIPromptType(input: UpdateAIPromptTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1061
1219
|
DeleteAIPromptType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1074,6 +1232,7 @@ export declare class Company_ {
|
|
|
1074
1232
|
Employees_CompanyIDArray: Employee_[];
|
|
1075
1233
|
}
|
|
1076
1234
|
export declare class CreateCompanyInput {
|
|
1235
|
+
ID?: string;
|
|
1077
1236
|
Name?: string;
|
|
1078
1237
|
Description?: string;
|
|
1079
1238
|
Website: string | null;
|
|
@@ -1103,10 +1262,10 @@ export declare class CompanyResolver extends ResolverBase {
|
|
|
1103
1262
|
RunCompanyViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1104
1263
|
RunCompanyDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1105
1264
|
Company(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Company_ | null>;
|
|
1106
|
-
AllCompanies({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1107
|
-
Workflows_CompanyNameArray(company_: Company_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1108
|
-
CompanyIntegrations_CompanyNameArray(company_: Company_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1109
|
-
Employees_CompanyIDArray(company_: Company_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1265
|
+
AllCompanies({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1266
|
+
Workflows_CompanyNameArray(company_: Company_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1267
|
+
CompanyIntegrations_CompanyNameArray(company_: Company_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1268
|
+
Employees_CompanyIDArray(company_: Company_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1110
1269
|
CreateCompany(input: CreateCompanyInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1111
1270
|
UpdateCompany(input: UpdateCompanyInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1112
1271
|
DeleteCompany(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1136,6 +1295,7 @@ export declare class Employee_ {
|
|
|
1136
1295
|
EmployeeRoles_EmployeeIDArray: EmployeeRole_[];
|
|
1137
1296
|
}
|
|
1138
1297
|
export declare class CreateEmployeeInput {
|
|
1298
|
+
ID?: string;
|
|
1139
1299
|
FirstName?: string;
|
|
1140
1300
|
LastName?: string;
|
|
1141
1301
|
CompanyID?: string;
|
|
@@ -1171,12 +1331,12 @@ export declare class EmployeeResolver extends ResolverBase {
|
|
|
1171
1331
|
RunEmployeeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1172
1332
|
RunEmployeeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1173
1333
|
Employee(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Employee_ | null>;
|
|
1174
|
-
AllEmployees({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1175
|
-
Users_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1176
|
-
EmployeeSkills_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1177
|
-
EmployeeCompanyIntegrations_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1178
|
-
Employees_SupervisorIDArray(employee_: Employee_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1179
|
-
EmployeeRoles_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1334
|
+
AllEmployees({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1335
|
+
Users_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1336
|
+
EmployeeSkills_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1337
|
+
EmployeeCompanyIntegrations_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1338
|
+
Employees_SupervisorIDArray(employee_: Employee_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1339
|
+
EmployeeRoles_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1180
1340
|
CreateEmployee(input: CreateEmployeeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1181
1341
|
UpdateEmployee(input: UpdateEmployeeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1182
1342
|
DeleteEmployee(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1193,6 +1353,7 @@ export declare class UserFavorite_ {
|
|
|
1193
1353
|
EntityBaseView: string;
|
|
1194
1354
|
}
|
|
1195
1355
|
export declare class CreateUserFavoriteInput {
|
|
1356
|
+
ID?: string;
|
|
1196
1357
|
UserID?: string;
|
|
1197
1358
|
EntityID?: string;
|
|
1198
1359
|
RecordID?: string;
|
|
@@ -1333,6 +1494,7 @@ export declare class Role_ {
|
|
|
1333
1494
|
ResourcePermissions_RoleIDArray: ResourcePermission_[];
|
|
1334
1495
|
}
|
|
1335
1496
|
export declare class CreateRoleInput {
|
|
1497
|
+
ID?: string;
|
|
1336
1498
|
Name?: string;
|
|
1337
1499
|
Description: string | null;
|
|
1338
1500
|
DirectoryID: string | null;
|
|
@@ -1360,13 +1522,13 @@ export declare class RoleResolver extends ResolverBase {
|
|
|
1360
1522
|
RunRoleViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1361
1523
|
RunRoleDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1362
1524
|
Role(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Role_ | null>;
|
|
1363
|
-
AllRoles({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1364
|
-
UserRoles_RoleNameArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1365
|
-
AuthorizationRoles_RoleNameArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1366
|
-
EntityPermissions_RoleNameArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1367
|
-
QueryPermissions_RoleNameArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1368
|
-
EmployeeRoles_RoleIDArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1369
|
-
ResourcePermissions_RoleIDArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1525
|
+
AllRoles({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1526
|
+
UserRoles_RoleNameArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1527
|
+
AuthorizationRoles_RoleNameArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1528
|
+
EntityPermissions_RoleNameArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1529
|
+
QueryPermissions_RoleNameArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1530
|
+
EmployeeRoles_RoleIDArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1531
|
+
ResourcePermissions_RoleIDArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1370
1532
|
CreateRole(input: CreateRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1371
1533
|
UpdateRole(input: UpdateRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1372
1534
|
DeleteRole(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1395,9 +1557,9 @@ export declare class SkillResolver extends ResolverBase {
|
|
|
1395
1557
|
RunSkillViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1396
1558
|
RunSkillDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1397
1559
|
Skill(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Skill_ | null>;
|
|
1398
|
-
AllSkills({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1399
|
-
EmployeeSkills_SkillIDArray(skill_: Skill_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1400
|
-
Skills_ParentIDArray(skill_: Skill_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1560
|
+
AllSkills({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1561
|
+
EmployeeSkills_SkillIDArray(skill_: Skill_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1562
|
+
Skills_ParentIDArray(skill_: Skill_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1401
1563
|
}
|
|
1402
1564
|
export declare class IntegrationURLFormat_ {
|
|
1403
1565
|
ID: string;
|
|
@@ -1433,7 +1595,7 @@ export declare class IntegrationURLFormatResolver extends ResolverBase {
|
|
|
1433
1595
|
RunIntegrationURLFormatViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1434
1596
|
RunIntegrationURLFormatDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1435
1597
|
IntegrationURLFormat(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<IntegrationURLFormat_ | null>;
|
|
1436
|
-
AllIntegrationURLFormats({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1598
|
+
AllIntegrationURLFormats({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1437
1599
|
UpdateIntegrationURLFormat(input: UpdateIntegrationURLFormatInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1438
1600
|
DeleteIntegrationURLFormat(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1439
1601
|
}
|
|
@@ -1477,10 +1639,10 @@ export declare class IntegrationResolver extends ResolverBase {
|
|
|
1477
1639
|
RunIntegrationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1478
1640
|
RunIntegrationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1479
1641
|
Integration(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Integration_ | null>;
|
|
1480
|
-
AllIntegrations({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1481
|
-
IntegrationURLFormats_IntegrationIDArray(integration_: Integration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1482
|
-
CompanyIntegrations_IntegrationNameArray(integration_: Integration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1483
|
-
RecordChanges_IntegrationIDArray(integration_: Integration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1642
|
+
AllIntegrations({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1643
|
+
IntegrationURLFormats_IntegrationIDArray(integration_: Integration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1644
|
+
CompanyIntegrations_IntegrationNameArray(integration_: Integration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1645
|
+
RecordChanges_IntegrationIDArray(integration_: Integration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1484
1646
|
UpdateIntegration(input: UpdateIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1485
1647
|
DeleteIntegration(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1486
1648
|
}
|
|
@@ -1542,10 +1704,10 @@ export declare class CompanyIntegrationResolver extends ResolverBase {
|
|
|
1542
1704
|
RunCompanyIntegrationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1543
1705
|
RunCompanyIntegrationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1544
1706
|
CompanyIntegration(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegration_ | null>;
|
|
1545
|
-
CompanyIntegrationRecordMaps_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1546
|
-
Lists_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1547
|
-
CompanyIntegrationRuns_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1548
|
-
EmployeeCompanyIntegrations_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1707
|
+
CompanyIntegrationRecordMaps_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1708
|
+
Lists_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1709
|
+
CompanyIntegrationRuns_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1710
|
+
EmployeeCompanyIntegrations_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1549
1711
|
UpdateCompanyIntegration(input: UpdateCompanyIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1550
1712
|
DeleteCompanyIntegration(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1551
1713
|
}
|
|
@@ -1610,6 +1772,7 @@ export declare class EntityField_ {
|
|
|
1610
1772
|
EntityFieldValues_EntityFieldIDArray: EntityFieldValue_[];
|
|
1611
1773
|
}
|
|
1612
1774
|
export declare class CreateEntityFieldInput {
|
|
1775
|
+
ID?: string;
|
|
1613
1776
|
DisplayName: string | null;
|
|
1614
1777
|
Description: string | null;
|
|
1615
1778
|
AutoUpdateDescription?: boolean;
|
|
@@ -1689,8 +1852,8 @@ export declare class EntityFieldResolver extends ResolverBase {
|
|
|
1689
1852
|
RunEntityFieldViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1690
1853
|
RunEntityFieldDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1691
1854
|
EntityField(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityField_ | null>;
|
|
1692
|
-
AllEntityFields({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1693
|
-
EntityFieldValues_EntityFieldIDArray(entityfield_: EntityField_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1855
|
+
AllEntityFields({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1856
|
+
EntityFieldValues_EntityFieldIDArray(entityfield_: EntityField_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1694
1857
|
CreateEntityField(input: CreateEntityFieldInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1695
1858
|
UpdateEntityField(input: UpdateEntityFieldInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1696
1859
|
DeleteEntityField(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1797,6 +1960,7 @@ export declare class Entity_ {
|
|
|
1797
1960
|
GeneratedCodes_LinkedEntityIDArray: GeneratedCode_[];
|
|
1798
1961
|
}
|
|
1799
1962
|
export declare class CreateEntityInput {
|
|
1963
|
+
ID?: string;
|
|
1800
1964
|
ParentID: string | null;
|
|
1801
1965
|
Name?: string;
|
|
1802
1966
|
NameSuffix: string | null;
|
|
@@ -1918,44 +2082,44 @@ export declare class EntityResolverBase extends ResolverBase {
|
|
|
1918
2082
|
RunEntityViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1919
2083
|
RunEntityDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1920
2084
|
Entity(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Entity_ | null>;
|
|
1921
|
-
AllEntities({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1922
|
-
AuditLogs_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1923
|
-
TemplateParams_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1924
|
-
DatasetItems_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1925
|
-
Users_LinkedEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1926
|
-
CompanyIntegrationRecordMaps_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1927
|
-
Entities_ParentIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1928
|
-
UserViewCategories_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1929
|
-
EntityAIActions_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1930
|
-
EntityActions_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1931
|
-
Conversations_LinkedEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1932
|
-
DuplicateRuns_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1933
|
-
TaggedItems_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1934
|
-
RecordMergeLogs_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1935
|
-
UserApplicationEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1936
|
-
QueryFields_SourceEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1937
|
-
UserViews_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1938
|
-
RecommendationItems_DestinationEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1939
|
-
EntityPermissions_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1940
|
-
Lists_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1941
|
-
UserRecordLogs_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1942
|
-
EntityDocuments_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1943
|
-
Recommendations_SourceEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1944
|
-
FileEntityRecordLinks_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1945
|
-
EntitySettings_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1946
|
-
EntityRelationships_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1947
|
-
CompanyIntegrationRunDetails_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1948
|
-
DataContextItems_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1949
|
-
IntegrationURLFormats_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1950
|
-
EntityFields_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1951
|
-
UserFavorites_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1952
|
-
EntityCommunicationMessageTypes_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1953
|
-
EntityRecordDocuments_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1954
|
-
RecordChanges_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1955
|
-
ApplicationEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1956
|
-
ResourceTypes_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1957
|
-
QueryEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1958
|
-
GeneratedCodes_LinkedEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2085
|
+
AllEntities({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2086
|
+
AuditLogs_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2087
|
+
TemplateParams_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2088
|
+
DatasetItems_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2089
|
+
Users_LinkedEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2090
|
+
CompanyIntegrationRecordMaps_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2091
|
+
Entities_ParentIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2092
|
+
UserViewCategories_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2093
|
+
EntityAIActions_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2094
|
+
EntityActions_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2095
|
+
Conversations_LinkedEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2096
|
+
DuplicateRuns_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2097
|
+
TaggedItems_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2098
|
+
RecordMergeLogs_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2099
|
+
UserApplicationEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2100
|
+
QueryFields_SourceEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2101
|
+
UserViews_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2102
|
+
RecommendationItems_DestinationEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2103
|
+
EntityPermissions_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2104
|
+
Lists_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2105
|
+
UserRecordLogs_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2106
|
+
EntityDocuments_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2107
|
+
Recommendations_SourceEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2108
|
+
FileEntityRecordLinks_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2109
|
+
EntitySettings_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2110
|
+
EntityRelationships_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2111
|
+
CompanyIntegrationRunDetails_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2112
|
+
DataContextItems_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2113
|
+
IntegrationURLFormats_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2114
|
+
EntityFields_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2115
|
+
UserFavorites_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2116
|
+
EntityCommunicationMessageTypes_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2117
|
+
EntityRecordDocuments_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2118
|
+
RecordChanges_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2119
|
+
ApplicationEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2120
|
+
ResourceTypes_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2121
|
+
QueryEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2122
|
+
GeneratedCodes_LinkedEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1959
2123
|
CreateEntity(input: CreateEntityInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1960
2124
|
UpdateEntity(input: UpdateEntityInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1961
2125
|
DeleteEntity(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2011,9 +2175,9 @@ export declare class User_ {
|
|
|
2011
2175
|
UserNotifications_UserIDArray: UserNotification_[];
|
|
2012
2176
|
Templates_UserIDArray: Template_[];
|
|
2013
2177
|
UserFavorites_UserIDArray: UserFavorite_[];
|
|
2178
|
+
ResourceLinks_UserIDArray: ResourceLink_[];
|
|
2014
2179
|
ListCategories_UserIDArray: ListCategory_[];
|
|
2015
2180
|
ScheduledActions_CreatedByUserIDArray: ScheduledAction_[];
|
|
2016
|
-
ResourceLinks_UserIDArray: ResourceLink_[];
|
|
2017
2181
|
AIAgentRequests_ResponseByUserIDArray: AIAgentRequest_[];
|
|
2018
2182
|
MJ_DashboardUserPreferences_UserIDArray: DashboardUserPreference_[];
|
|
2019
2183
|
MJ_ReportUserStates_UserIDArray: ReportUserState_[];
|
|
@@ -2025,6 +2189,7 @@ export declare class User_ {
|
|
|
2025
2189
|
MJ_AIAgentRuns_UserIDArray: AIAgentRun_[];
|
|
2026
2190
|
}
|
|
2027
2191
|
export declare class CreateUserInput {
|
|
2192
|
+
ID?: string;
|
|
2028
2193
|
Name?: string;
|
|
2029
2194
|
FirstName: string | null;
|
|
2030
2195
|
LastName: string | null;
|
|
@@ -2066,49 +2231,49 @@ export declare class UserResolverBase extends ResolverBase {
|
|
|
2066
2231
|
RunUserViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2067
2232
|
RunUserDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2068
2233
|
User(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<User_ | null>;
|
|
2069
|
-
AllUsers({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2070
|
-
RecommendationRuns_RunByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2071
|
-
UserApplications_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2072
|
-
Dashboards_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2073
|
-
RecordChanges_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2074
|
-
Reports_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2075
|
-
DashboardCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2076
|
-
Actions_CodeApprovedByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2077
|
-
QueryCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2078
|
-
UserViewCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2079
|
-
DataContexts_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2080
|
-
RecordMergeLogs_InitiatedByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2081
|
-
CompanyIntegrationRuns_RunByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2082
|
-
ReportCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2083
|
-
RecordChangeReplayRuns_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2084
|
-
UserRoles_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2085
|
-
UserViewRuns_RunByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2086
|
-
Workspaces_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2087
|
-
Conversations_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2088
|
-
Lists_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2089
|
-
CommunicationRuns_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2090
|
-
ActionExecutionLogs_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2091
|
-
AuditLogs_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2092
|
-
ReportSnapshots_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2093
|
-
UserViews_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2094
|
-
TemplateCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2095
|
-
DuplicateRuns_StartedByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2096
|
-
UserRecordLogs_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2097
|
-
UserNotifications_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2098
|
-
Templates_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2099
|
-
UserFavorites_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
AIAgentRequests_ResponseByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2104
|
-
MJ_DashboardUserPreferences_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2105
|
-
MJ_ReportUserStates_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2106
|
-
AIAgentNotes_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2107
|
-
MJ_DashboardUserStates_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2108
|
-
ResourcePermissions_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2109
|
-
AIAgentRequests_RequestForUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2110
|
-
ConversationDetails_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2111
|
-
MJ_AIAgentRuns_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2234
|
+
AllUsers({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2235
|
+
RecommendationRuns_RunByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2236
|
+
UserApplications_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2237
|
+
Dashboards_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2238
|
+
RecordChanges_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2239
|
+
Reports_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2240
|
+
DashboardCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2241
|
+
Actions_CodeApprovedByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2242
|
+
QueryCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2243
|
+
UserViewCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2244
|
+
DataContexts_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2245
|
+
RecordMergeLogs_InitiatedByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2246
|
+
CompanyIntegrationRuns_RunByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2247
|
+
ReportCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2248
|
+
RecordChangeReplayRuns_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2249
|
+
UserRoles_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2250
|
+
UserViewRuns_RunByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2251
|
+
Workspaces_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2252
|
+
Conversations_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2253
|
+
Lists_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2254
|
+
CommunicationRuns_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2255
|
+
ActionExecutionLogs_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2256
|
+
AuditLogs_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2257
|
+
ReportSnapshots_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2258
|
+
UserViews_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2259
|
+
TemplateCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2260
|
+
DuplicateRuns_StartedByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2261
|
+
UserRecordLogs_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2262
|
+
UserNotifications_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2263
|
+
Templates_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2264
|
+
UserFavorites_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2265
|
+
ResourceLinks_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2266
|
+
ListCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2267
|
+
ScheduledActions_CreatedByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2268
|
+
AIAgentRequests_ResponseByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2269
|
+
MJ_DashboardUserPreferences_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2270
|
+
MJ_ReportUserStates_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2271
|
+
AIAgentNotes_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2272
|
+
MJ_DashboardUserStates_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2273
|
+
ResourcePermissions_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2274
|
+
AIAgentRequests_RequestForUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2275
|
+
ConversationDetails_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2276
|
+
MJ_AIAgentRuns_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2112
2277
|
CreateUser(input: CreateUserInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2113
2278
|
UpdateUser(input: UpdateUserInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2114
2279
|
DeleteUser(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2149,6 +2314,7 @@ export declare class EntityRelationship_ {
|
|
|
2149
2314
|
DisplayUserViewName?: string;
|
|
2150
2315
|
}
|
|
2151
2316
|
export declare class CreateEntityRelationshipInput {
|
|
2317
|
+
ID?: string;
|
|
2152
2318
|
EntityID?: string;
|
|
2153
2319
|
Sequence?: number;
|
|
2154
2320
|
RelatedEntityID?: string;
|
|
@@ -2206,7 +2372,7 @@ export declare class EntityRelationshipResolver extends ResolverBase {
|
|
|
2206
2372
|
RunEntityRelationshipViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2207
2373
|
RunEntityRelationshipDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2208
2374
|
EntityRelationship(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityRelationship_ | null>;
|
|
2209
|
-
AllEntityRelationships({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2375
|
+
AllEntityRelationships({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2210
2376
|
CreateEntityRelationship(input: CreateEntityRelationshipInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2211
2377
|
UpdateEntityRelationship(input: UpdateEntityRelationshipInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2212
2378
|
DeleteEntityRelationship(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2287,6 +2453,7 @@ export declare class UserView_ {
|
|
|
2287
2453
|
EntityRelationships_DisplayUserViewGUIDArray: EntityRelationship_[];
|
|
2288
2454
|
}
|
|
2289
2455
|
export declare class CreateUserViewInput {
|
|
2456
|
+
ID?: string;
|
|
2290
2457
|
UserID?: string;
|
|
2291
2458
|
EntityID?: string;
|
|
2292
2459
|
Name?: string;
|
|
@@ -2342,10 +2509,10 @@ export declare class UserViewResolverBase extends ResolverBase {
|
|
|
2342
2509
|
RunUserViewViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2343
2510
|
RunUserViewDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2344
2511
|
UserView(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserView_ | null>;
|
|
2345
|
-
AllUserViews({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2346
|
-
DataContextItems_ViewIDArray(userview_: UserView_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2347
|
-
UserViewRuns_UserViewIDArray(userview_: UserView_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2348
|
-
EntityRelationships_DisplayUserViewGUIDArray(userview_: UserView_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2512
|
+
AllUserViews({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2513
|
+
DataContextItems_ViewIDArray(userview_: UserView_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2514
|
+
UserViewRuns_UserViewIDArray(userview_: UserView_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2515
|
+
EntityRelationships_DisplayUserViewGUIDArray(userview_: UserView_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2349
2516
|
CreateUserView(input: CreateUserViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2350
2517
|
UpdateUserView(input: UpdateUserViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2351
2518
|
DeleteUserView(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2371,6 +2538,7 @@ export declare class CompanyIntegrationRun_ {
|
|
|
2371
2538
|
CompanyIntegrationRunAPILogs_CompanyIntegrationRunIDArray: CompanyIntegrationRunAPILog_[];
|
|
2372
2539
|
}
|
|
2373
2540
|
export declare class CreateCompanyIntegrationRunInput {
|
|
2541
|
+
ID?: string;
|
|
2374
2542
|
CompanyIntegrationID?: string;
|
|
2375
2543
|
RunByUserID?: string;
|
|
2376
2544
|
StartedAt: Date | null;
|
|
@@ -2408,9 +2576,9 @@ export declare class CompanyIntegrationRunResolver extends ResolverBase {
|
|
|
2408
2576
|
RunCompanyIntegrationRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2409
2577
|
RunCompanyIntegrationRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2410
2578
|
CompanyIntegrationRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRun_ | null>;
|
|
2411
|
-
ErrorLogs_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2412
|
-
CompanyIntegrationRunDetails_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2413
|
-
CompanyIntegrationRunAPILogs_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2579
|
+
ErrorLogs_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2580
|
+
CompanyIntegrationRunDetails_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2581
|
+
CompanyIntegrationRunAPILogs_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2414
2582
|
CreateCompanyIntegrationRun(input: CreateCompanyIntegrationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2415
2583
|
UpdateCompanyIntegrationRun(input: UpdateCompanyIntegrationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2416
2584
|
}
|
|
@@ -2430,6 +2598,7 @@ export declare class CompanyIntegrationRunDetail_ {
|
|
|
2430
2598
|
ErrorLogs_CompanyIntegrationRunDetailIDArray: ErrorLog_[];
|
|
2431
2599
|
}
|
|
2432
2600
|
export declare class CreateCompanyIntegrationRunDetailInput {
|
|
2601
|
+
ID?: string;
|
|
2433
2602
|
CompanyIntegrationRunID?: string;
|
|
2434
2603
|
EntityID?: string;
|
|
2435
2604
|
RecordID?: string;
|
|
@@ -2461,7 +2630,7 @@ export declare class CompanyIntegrationRunDetailResolver extends ResolverBase {
|
|
|
2461
2630
|
RunCompanyIntegrationRunDetailViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2462
2631
|
RunCompanyIntegrationRunDetailDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2463
2632
|
CompanyIntegrationRunDetail(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRunDetail_ | null>;
|
|
2464
|
-
ErrorLogs_CompanyIntegrationRunDetailIDArray(companyintegrationrundetail_: CompanyIntegrationRunDetail_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2633
|
+
ErrorLogs_CompanyIntegrationRunDetailIDArray(companyintegrationrundetail_: CompanyIntegrationRunDetail_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2465
2634
|
CreateCompanyIntegrationRunDetail(input: CreateCompanyIntegrationRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2466
2635
|
UpdateCompanyIntegrationRunDetail(input: UpdateCompanyIntegrationRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2467
2636
|
}
|
|
@@ -2479,6 +2648,7 @@ export declare class ErrorLog_ {
|
|
|
2479
2648
|
_mj__UpdatedAt: Date;
|
|
2480
2649
|
}
|
|
2481
2650
|
export declare class CreateErrorLogInput {
|
|
2651
|
+
ID?: string;
|
|
2482
2652
|
CompanyIntegrationRunID: string | null;
|
|
2483
2653
|
CompanyIntegrationRunDetailID: string | null;
|
|
2484
2654
|
Code: string | null;
|
|
@@ -2533,6 +2703,7 @@ export declare class Application_ {
|
|
|
2533
2703
|
MJ_DashboardUserPreferences_ApplicationIDArray: DashboardUserPreference_[];
|
|
2534
2704
|
}
|
|
2535
2705
|
export declare class CreateApplicationInput {
|
|
2706
|
+
ID?: string;
|
|
2536
2707
|
Name?: string;
|
|
2537
2708
|
Description: string | null;
|
|
2538
2709
|
Icon: string | null;
|
|
@@ -2562,12 +2733,12 @@ export declare class ApplicationResolver extends ResolverBase {
|
|
|
2562
2733
|
RunApplicationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2563
2734
|
RunApplicationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2564
2735
|
Application(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Application_ | null>;
|
|
2565
|
-
AllApplications({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2566
|
-
ApplicationSettings_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2567
|
-
UserApplications_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2568
|
-
ApplicationEntities_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2569
|
-
Dashboards_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2570
|
-
MJ_DashboardUserPreferences_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2736
|
+
AllApplications({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2737
|
+
ApplicationSettings_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2738
|
+
UserApplications_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2739
|
+
ApplicationEntities_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2740
|
+
Dashboards_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2741
|
+
MJ_DashboardUserPreferences_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2571
2742
|
CreateApplication(input: CreateApplicationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2572
2743
|
UpdateApplication(input: UpdateApplicationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2573
2744
|
DeleteApplication(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2588,6 +2759,7 @@ export declare class ApplicationEntity_ {
|
|
|
2588
2759
|
EntityBaseTableCodeName?: string;
|
|
2589
2760
|
}
|
|
2590
2761
|
export declare class CreateApplicationEntityInput {
|
|
2762
|
+
ID?: string;
|
|
2591
2763
|
ApplicationID?: string;
|
|
2592
2764
|
EntityID?: string;
|
|
2593
2765
|
Sequence?: number;
|
|
@@ -2642,6 +2814,7 @@ export declare class EntityPermission_ {
|
|
|
2642
2814
|
DeleteRLSFilter?: string;
|
|
2643
2815
|
}
|
|
2644
2816
|
export declare class CreateEntityPermissionInput {
|
|
2817
|
+
ID?: string;
|
|
2645
2818
|
EntityID?: string;
|
|
2646
2819
|
RoleID?: string;
|
|
2647
2820
|
CanCreate?: boolean;
|
|
@@ -2681,7 +2854,7 @@ export declare class EntityPermissionResolver extends ResolverBase {
|
|
|
2681
2854
|
RunEntityPermissionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2682
2855
|
RunEntityPermissionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2683
2856
|
EntityPermission(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityPermission_ | null>;
|
|
2684
|
-
AllEntityPermissions({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2857
|
+
AllEntityPermissions({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2685
2858
|
CreateEntityPermission(input: CreateEntityPermissionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2686
2859
|
UpdateEntityPermission(input: UpdateEntityPermissionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2687
2860
|
DeleteEntityPermission(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2698,6 +2871,7 @@ export declare class UserApplicationEntity_ {
|
|
|
2698
2871
|
Entity: string;
|
|
2699
2872
|
}
|
|
2700
2873
|
export declare class CreateUserApplicationEntityInput {
|
|
2874
|
+
ID?: string;
|
|
2701
2875
|
UserApplicationID?: string;
|
|
2702
2876
|
EntityID?: string;
|
|
2703
2877
|
Sequence?: number;
|
|
@@ -2740,6 +2914,7 @@ export declare class UserApplication_ {
|
|
|
2740
2914
|
UserApplicationEntities_UserApplicationIDArray: UserApplicationEntity_[];
|
|
2741
2915
|
}
|
|
2742
2916
|
export declare class CreateUserApplicationInput {
|
|
2917
|
+
ID?: string;
|
|
2743
2918
|
UserID?: string;
|
|
2744
2919
|
ApplicationID?: string;
|
|
2745
2920
|
Sequence?: number;
|
|
@@ -2767,7 +2942,7 @@ export declare class UserApplicationResolver extends ResolverBase {
|
|
|
2767
2942
|
RunUserApplicationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2768
2943
|
RunUserApplicationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2769
2944
|
UserApplication(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserApplication_ | null>;
|
|
2770
|
-
UserApplicationEntities_UserApplicationIDArray(userapplication_: UserApplication_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2945
|
+
UserApplicationEntities_UserApplicationIDArray(userapplication_: UserApplication_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2771
2946
|
CreateUserApplication(input: CreateUserApplicationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2772
2947
|
UpdateUserApplication(input: UpdateUserApplicationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2773
2948
|
DeleteUserApplication(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2784,6 +2959,7 @@ export declare class CompanyIntegrationRunAPILog_ {
|
|
|
2784
2959
|
_mj__UpdatedAt: Date;
|
|
2785
2960
|
}
|
|
2786
2961
|
export declare class CreateCompanyIntegrationRunAPILogInput {
|
|
2962
|
+
ID?: string;
|
|
2787
2963
|
CompanyIntegrationRunID?: string;
|
|
2788
2964
|
ExecutedAt?: Date;
|
|
2789
2965
|
IsSuccess?: boolean;
|
|
@@ -2836,6 +3012,7 @@ export declare class List_ {
|
|
|
2836
3012
|
DuplicateRuns_SourceListIDArray: DuplicateRun_[];
|
|
2837
3013
|
}
|
|
2838
3014
|
export declare class CreateListInput {
|
|
3015
|
+
ID?: string;
|
|
2839
3016
|
Name?: string;
|
|
2840
3017
|
Description: string | null;
|
|
2841
3018
|
EntityID?: string;
|
|
@@ -2869,8 +3046,8 @@ export declare class ListResolver extends ResolverBase {
|
|
|
2869
3046
|
RunListViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2870
3047
|
RunListDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2871
3048
|
List(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<List_ | null>;
|
|
2872
|
-
ListDetails_ListIDArray(list_: List_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2873
|
-
DuplicateRuns_SourceListIDArray(list_: List_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3049
|
+
ListDetails_ListIDArray(list_: List_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3050
|
+
DuplicateRuns_SourceListIDArray(list_: List_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2874
3051
|
CreateList(input: CreateListInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2875
3052
|
UpdateList(input: UpdateListInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2876
3053
|
DeleteList(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2887,6 +3064,7 @@ export declare class ListDetail_ {
|
|
|
2887
3064
|
List: string;
|
|
2888
3065
|
}
|
|
2889
3066
|
export declare class CreateListDetailInput {
|
|
3067
|
+
ID?: string;
|
|
2890
3068
|
ListID?: string;
|
|
2891
3069
|
RecordID?: string;
|
|
2892
3070
|
Sequence?: number;
|
|
@@ -2932,6 +3110,7 @@ export declare class UserViewRun_ {
|
|
|
2932
3110
|
UserViewRunDetails_UserViewRunIDArray: UserViewRunDetail_[];
|
|
2933
3111
|
}
|
|
2934
3112
|
export declare class CreateUserViewRunInput {
|
|
3113
|
+
ID?: string;
|
|
2935
3114
|
UserViewID?: string;
|
|
2936
3115
|
RunAt?: Date;
|
|
2937
3116
|
RunByUserID?: string;
|
|
@@ -2957,7 +3136,7 @@ export declare class UserViewRunResolver extends ResolverBase {
|
|
|
2957
3136
|
RunUserViewRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2958
3137
|
RunUserViewRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2959
3138
|
UserViewRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserViewRun_ | null>;
|
|
2960
|
-
UserViewRunDetails_UserViewRunIDArray(userviewrun_: UserViewRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3139
|
+
UserViewRunDetails_UserViewRunIDArray(userviewrun_: UserViewRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2961
3140
|
CreateUserViewRun(input: CreateUserViewRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2962
3141
|
UpdateUserViewRun(input: UpdateUserViewRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2963
3142
|
}
|
|
@@ -2971,6 +3150,7 @@ export declare class UserViewRunDetail_ {
|
|
|
2971
3150
|
EntityID: string;
|
|
2972
3151
|
}
|
|
2973
3152
|
export declare class CreateUserViewRunDetailInput {
|
|
3153
|
+
ID?: string;
|
|
2974
3154
|
UserViewRunID?: string;
|
|
2975
3155
|
RecordID?: string;
|
|
2976
3156
|
}
|
|
@@ -3078,8 +3258,8 @@ export declare class WorkflowResolver extends ResolverBase {
|
|
|
3078
3258
|
RunWorkflowViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3079
3259
|
RunWorkflowDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3080
3260
|
Workflow(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Workflow_ | null>;
|
|
3081
|
-
Reports_OutputWorkflowIDArray(workflow_: Workflow_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3082
|
-
WorkflowRuns_WorkflowNameArray(workflow_: Workflow_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3261
|
+
Reports_OutputWorkflowIDArray(workflow_: Workflow_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3262
|
+
WorkflowRuns_WorkflowNameArray(workflow_: Workflow_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3083
3263
|
UpdateWorkflow(input: UpdateWorkflowInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3084
3264
|
}
|
|
3085
3265
|
export declare class WorkflowEngine_ {
|
|
@@ -3114,7 +3294,7 @@ export declare class WorkflowEngineResolver extends ResolverBase {
|
|
|
3114
3294
|
RunWorkflowEngineViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3115
3295
|
RunWorkflowEngineDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3116
3296
|
WorkflowEngine(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<WorkflowEngine_ | null>;
|
|
3117
|
-
Workflows_WorkflowEngineNameArray(workflowengine_: WorkflowEngine_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3297
|
+
Workflows_WorkflowEngineNameArray(workflowengine_: WorkflowEngine_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3118
3298
|
UpdateWorkflowEngine(input: UpdateWorkflowEngineInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3119
3299
|
DeleteWorkflowEngine(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3120
3300
|
}
|
|
@@ -3141,6 +3321,7 @@ export declare class RecordChange_ {
|
|
|
3141
3321
|
Integration?: string;
|
|
3142
3322
|
}
|
|
3143
3323
|
export declare class CreateRecordChangeInput {
|
|
3324
|
+
ID?: string;
|
|
3144
3325
|
EntityID?: string;
|
|
3145
3326
|
RecordID?: string;
|
|
3146
3327
|
UserID?: string;
|
|
@@ -3201,6 +3382,7 @@ export declare class UserRole_ {
|
|
|
3201
3382
|
Role: string;
|
|
3202
3383
|
}
|
|
3203
3384
|
export declare class CreateUserRoleInput {
|
|
3385
|
+
ID?: string;
|
|
3204
3386
|
UserID?: string;
|
|
3205
3387
|
RoleID?: string;
|
|
3206
3388
|
}
|
|
@@ -3218,7 +3400,7 @@ export declare class UserRoleResolver extends ResolverBase {
|
|
|
3218
3400
|
RunUserRoleViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3219
3401
|
RunUserRoleDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3220
3402
|
UserRole(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserRole_ | null>;
|
|
3221
|
-
AllUserRoles({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3403
|
+
AllUserRoles({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3222
3404
|
CreateUserRole(input: CreateUserRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3223
3405
|
DeleteUserRole(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3224
3406
|
}
|
|
@@ -3245,8 +3427,8 @@ export declare class RowLevelSecurityFilterResolver extends ResolverBase {
|
|
|
3245
3427
|
RunRowLevelSecurityFilterViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3246
3428
|
RunRowLevelSecurityFilterDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3247
3429
|
RowLevelSecurityFilter(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RowLevelSecurityFilter_ | null>;
|
|
3248
|
-
AllRowLevelSecurityFilters({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3249
|
-
EntityPermissions_ReadRLSFilterIDArray(rowlevelsecurityfilter_: RowLevelSecurityFilter_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3430
|
+
AllRowLevelSecurityFilters({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3431
|
+
EntityPermissions_ReadRLSFilterIDArray(rowlevelsecurityfilter_: RowLevelSecurityFilter_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3250
3432
|
}
|
|
3251
3433
|
export declare class AuditLog_ {
|
|
3252
3434
|
ID: string;
|
|
@@ -3266,6 +3448,7 @@ export declare class AuditLog_ {
|
|
|
3266
3448
|
Entity?: string;
|
|
3267
3449
|
}
|
|
3268
3450
|
export declare class CreateAuditLogInput {
|
|
3451
|
+
ID?: string;
|
|
3269
3452
|
UserID?: string;
|
|
3270
3453
|
AuditLogTypeID?: string;
|
|
3271
3454
|
AuthorizationID: string | null;
|
|
@@ -3334,12 +3517,12 @@ export declare class AuthorizationResolver extends ResolverBase {
|
|
|
3334
3517
|
RunAuthorizationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3335
3518
|
RunAuthorizationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3336
3519
|
Authorization(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Authorization_ | null>;
|
|
3337
|
-
AllAuthorizations({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3338
|
-
AuthorizationRoles_AuthorizationIDArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3339
|
-
ActionAuthorizations_AuthorizationIDArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3340
|
-
Authorizations_ParentIDArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3341
|
-
AuditLogs_AuthorizationNameArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3342
|
-
AuditLogTypes_AuthorizationNameArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3520
|
+
AllAuthorizations({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3521
|
+
AuthorizationRoles_AuthorizationIDArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3522
|
+
ActionAuthorizations_AuthorizationIDArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3523
|
+
Authorizations_ParentIDArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3524
|
+
AuditLogs_AuthorizationNameArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3525
|
+
AuditLogTypes_AuthorizationNameArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3343
3526
|
}
|
|
3344
3527
|
export declare class AuthorizationRole_ {
|
|
3345
3528
|
ID: string;
|
|
@@ -3365,7 +3548,7 @@ export declare class AuthorizationRoleResolver extends ResolverBase {
|
|
|
3365
3548
|
RunAuthorizationRoleViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3366
3549
|
RunAuthorizationRoleDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3367
3550
|
AuthorizationRole(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AuthorizationRole_ | null>;
|
|
3368
|
-
AllAuthorizationRoles({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3551
|
+
AllAuthorizationRoles({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3369
3552
|
}
|
|
3370
3553
|
export declare class AuditLogType_ {
|
|
3371
3554
|
ID: string;
|
|
@@ -3394,9 +3577,9 @@ export declare class AuditLogTypeResolver extends ResolverBase {
|
|
|
3394
3577
|
RunAuditLogTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3395
3578
|
RunAuditLogTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3396
3579
|
AuditLogType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AuditLogType_ | null>;
|
|
3397
|
-
AllAuditLogTypes({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3398
|
-
AuditLogTypes_ParentIDArray(auditlogtype_: AuditLogType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3399
|
-
AuditLogs_AuditLogTypeNameArray(auditlogtype_: AuditLogType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3580
|
+
AllAuditLogTypes({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3581
|
+
AuditLogTypes_ParentIDArray(auditlogtype_: AuditLogType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3582
|
+
AuditLogs_AuditLogTypeNameArray(auditlogtype_: AuditLogType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3400
3583
|
}
|
|
3401
3584
|
export declare class EntityFieldValue_ {
|
|
3402
3585
|
ID: string;
|
|
@@ -3434,7 +3617,7 @@ export declare class EntityFieldValueResolver extends ResolverBase {
|
|
|
3434
3617
|
RunEntityFieldValueViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3435
3618
|
RunEntityFieldValueDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3436
3619
|
EntityFieldValue(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityFieldValue_ | null>;
|
|
3437
|
-
AllEntityFieldValues({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3620
|
+
AllEntityFieldValues({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3438
3621
|
UpdateEntityFieldValue(input: UpdateEntityFieldValueInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3439
3622
|
}
|
|
3440
3623
|
export declare class AIModel_ {
|
|
@@ -3466,11 +3649,13 @@ export declare class AIModel_ {
|
|
|
3466
3649
|
EntityAIActions_AIModelIDArray: EntityAIAction_[];
|
|
3467
3650
|
MJ_AIModelVendors_ModelIDArray: AIModelVendor_[];
|
|
3468
3651
|
AIAgentModels_ModelIDArray: AIAgentModel_[];
|
|
3652
|
+
MJ_AIModelCosts_ModelIDArray: AIModelCost_[];
|
|
3469
3653
|
GeneratedCodes_GeneratedByModelIDArray: GeneratedCode_[];
|
|
3470
3654
|
MJ_AIPromptModels_ModelIDArray: AIPromptModel_[];
|
|
3471
3655
|
MJ_AIPromptRuns_ModelIDArray: AIPromptRun_[];
|
|
3472
3656
|
}
|
|
3473
3657
|
export declare class CreateAIModelInput {
|
|
3658
|
+
ID?: string;
|
|
3474
3659
|
Name?: string;
|
|
3475
3660
|
Description: string | null;
|
|
3476
3661
|
AIModelTypeID?: string;
|
|
@@ -3506,19 +3691,20 @@ export declare class AIModelResolver extends ResolverBase {
|
|
|
3506
3691
|
RunAIModelViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3507
3692
|
RunAIModelDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3508
3693
|
AIModel(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModel_ | null>;
|
|
3509
|
-
AllAIModels({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3510
|
-
AIActions_DefaultModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3511
|
-
EntityDocuments_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3512
|
-
AIModelActions_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3513
|
-
VectorIndexes_EmbeddingModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3514
|
-
ContentTypes_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3515
|
-
AIResultCache_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3516
|
-
EntityAIActions_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3517
|
-
MJ_AIModelVendors_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3518
|
-
AIAgentModels_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3694
|
+
AllAIModels({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3695
|
+
AIActions_DefaultModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3696
|
+
EntityDocuments_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3697
|
+
AIModelActions_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3698
|
+
VectorIndexes_EmbeddingModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3699
|
+
ContentTypes_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3700
|
+
AIResultCache_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3701
|
+
EntityAIActions_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3702
|
+
MJ_AIModelVendors_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3703
|
+
AIAgentModels_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3704
|
+
MJ_AIModelCosts_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3705
|
+
GeneratedCodes_GeneratedByModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3706
|
+
MJ_AIPromptModels_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3707
|
+
MJ_AIPromptRuns_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3522
3708
|
CreateAIModel(input: CreateAIModelInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3523
3709
|
UpdateAIModel(input: UpdateAIModelInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3524
3710
|
DeleteAIModel(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3537,6 +3723,7 @@ export declare class AIAction_ {
|
|
|
3537
3723
|
EntityAIActions_AIActionIDArray: EntityAIAction_[];
|
|
3538
3724
|
}
|
|
3539
3725
|
export declare class CreateAIActionInput {
|
|
3726
|
+
ID?: string;
|
|
3540
3727
|
Name?: string;
|
|
3541
3728
|
Description: string | null;
|
|
3542
3729
|
DefaultPrompt: string | null;
|
|
@@ -3566,9 +3753,9 @@ export declare class AIActionResolver extends ResolverBase {
|
|
|
3566
3753
|
RunAIActionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3567
3754
|
RunAIActionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3568
3755
|
AIAction(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAction_ | null>;
|
|
3569
|
-
AllAIActions({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3570
|
-
AIModelActions_AIActionIDArray(aiaction_: AIAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3571
|
-
EntityAIActions_AIActionIDArray(aiaction_: AIAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3756
|
+
AllAIActions({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3757
|
+
AIModelActions_AIActionIDArray(aiaction_: AIAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3758
|
+
EntityAIActions_AIActionIDArray(aiaction_: AIAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3572
3759
|
CreateAIAction(input: CreateAIActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3573
3760
|
UpdateAIAction(input: UpdateAIActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3574
3761
|
DeleteAIAction(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3584,6 +3771,7 @@ export declare class AIModelAction_ {
|
|
|
3584
3771
|
AIAction: string;
|
|
3585
3772
|
}
|
|
3586
3773
|
export declare class CreateAIModelActionInput {
|
|
3774
|
+
ID?: string;
|
|
3587
3775
|
AIModelID?: string;
|
|
3588
3776
|
AIActionID?: string;
|
|
3589
3777
|
IsActive?: boolean;
|
|
@@ -3609,7 +3797,7 @@ export declare class AIModelActionResolver extends ResolverBase {
|
|
|
3609
3797
|
RunAIModelActionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3610
3798
|
RunAIModelActionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3611
3799
|
AIModelAction(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModelAction_ | null>;
|
|
3612
|
-
AllAIModelActions({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3800
|
+
AllAIModelActions({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3613
3801
|
CreateAIModelAction(input: CreateAIModelActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3614
3802
|
UpdateAIModelAction(input: UpdateAIModelActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3615
3803
|
DeleteAIModelAction(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3636,6 +3824,7 @@ export declare class EntityAIAction_ {
|
|
|
3636
3824
|
OutputEntity?: string;
|
|
3637
3825
|
}
|
|
3638
3826
|
export declare class CreateEntityAIActionInput {
|
|
3827
|
+
ID?: string;
|
|
3639
3828
|
EntityID?: string;
|
|
3640
3829
|
AIModelID?: string;
|
|
3641
3830
|
AIActionID?: string;
|
|
@@ -3679,7 +3868,7 @@ export declare class EntityAIActionResolver extends ResolverBase {
|
|
|
3679
3868
|
RunEntityAIActionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3680
3869
|
RunEntityAIActionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3681
3870
|
EntityAIAction(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityAIAction_ | null>;
|
|
3682
|
-
AllEntityAIActions({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3871
|
+
AllEntityAIActions({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3683
3872
|
CreateEntityAIAction(input: CreateEntityAIActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3684
3873
|
UpdateEntityAIAction(input: UpdateEntityAIActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3685
3874
|
DeleteEntityAIAction(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3694,6 +3883,7 @@ export declare class AIModelType_ {
|
|
|
3694
3883
|
AIPrompts_AIModelTypeIDArray: AIPrompt_[];
|
|
3695
3884
|
}
|
|
3696
3885
|
export declare class CreateAIModelTypeInput {
|
|
3886
|
+
ID?: string;
|
|
3697
3887
|
Name?: string;
|
|
3698
3888
|
Description: string | null;
|
|
3699
3889
|
}
|
|
@@ -3717,9 +3907,9 @@ export declare class AIModelTypeResolver extends ResolverBase {
|
|
|
3717
3907
|
RunAIModelTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3718
3908
|
RunAIModelTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3719
3909
|
AIModelType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModelType_ | null>;
|
|
3720
|
-
AllAIModelTypes({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3721
|
-
AIModels_AIModelTypeIDArray(aimodeltype_: AIModelType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3722
|
-
AIPrompts_AIModelTypeIDArray(aimodeltype_: AIModelType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3910
|
+
AllAIModelTypes({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3911
|
+
AIModels_AIModelTypeIDArray(aimodeltype_: AIModelType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3912
|
+
AIPrompts_AIModelTypeIDArray(aimodeltype_: AIModelType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3723
3913
|
CreateAIModelType(input: CreateAIModelTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3724
3914
|
UpdateAIModelType(input: UpdateAIModelTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3725
3915
|
DeleteAIModelType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3749,7 +3939,7 @@ export declare class QueueTypeResolver extends ResolverBase {
|
|
|
3749
3939
|
RunQueueTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3750
3940
|
RunQueueTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3751
3941
|
QueueType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueueType_ | null>;
|
|
3752
|
-
Queues_QueueTypeIDArray(queuetype_: QueueType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3942
|
+
Queues_QueueTypeIDArray(queuetype_: QueueType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3753
3943
|
}
|
|
3754
3944
|
export declare class Queue_ {
|
|
3755
3945
|
ID: string;
|
|
@@ -3775,6 +3965,7 @@ export declare class Queue_ {
|
|
|
3775
3965
|
QueueTasks_QueueIDArray: QueueTask_[];
|
|
3776
3966
|
}
|
|
3777
3967
|
export declare class CreateQueueInput {
|
|
3968
|
+
ID?: string;
|
|
3778
3969
|
Name?: string;
|
|
3779
3970
|
Description: string | null;
|
|
3780
3971
|
QueueTypeID?: string;
|
|
@@ -3826,7 +4017,7 @@ export declare class QueueResolver extends ResolverBase {
|
|
|
3826
4017
|
RunQueueViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3827
4018
|
RunQueueDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3828
4019
|
Queue(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Queue_ | null>;
|
|
3829
|
-
QueueTasks_QueueIDArray(queue_: Queue_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4020
|
+
QueueTasks_QueueIDArray(queue_: Queue_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3830
4021
|
CreateQueue(input: CreateQueueInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3831
4022
|
UpdateQueue(input: UpdateQueueInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3832
4023
|
}
|
|
@@ -3846,6 +4037,7 @@ export declare class QueueTask_ {
|
|
|
3846
4037
|
Queue: string;
|
|
3847
4038
|
}
|
|
3848
4039
|
export declare class CreateQueueTaskInput {
|
|
4040
|
+
ID?: string;
|
|
3849
4041
|
QueueID?: string;
|
|
3850
4042
|
Status?: string;
|
|
3851
4043
|
StartedAt: Date | null;
|
|
@@ -3908,6 +4100,7 @@ export declare class Dashboard_ {
|
|
|
3908
4100
|
MJ_DashboardUserPreferences_DashboardIDArray: DashboardUserPreference_[];
|
|
3909
4101
|
}
|
|
3910
4102
|
export declare class CreateDashboardInput {
|
|
4103
|
+
ID?: string;
|
|
3911
4104
|
Name?: string;
|
|
3912
4105
|
Description: string | null;
|
|
3913
4106
|
UserID?: string;
|
|
@@ -3949,8 +4142,8 @@ export declare class DashboardResolver extends ResolverBase {
|
|
|
3949
4142
|
RunDashboardViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3950
4143
|
RunDashboardDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3951
4144
|
Dashboard(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Dashboard_ | null>;
|
|
3952
|
-
MJ_DashboardUserStates_DashboardIDArray(dashboard_: Dashboard_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3953
|
-
MJ_DashboardUserPreferences_DashboardIDArray(dashboard_: Dashboard_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4145
|
+
MJ_DashboardUserStates_DashboardIDArray(dashboard_: Dashboard_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4146
|
+
MJ_DashboardUserPreferences_DashboardIDArray(dashboard_: Dashboard_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3954
4147
|
CreateDashboard(input: CreateDashboardInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3955
4148
|
UpdateDashboard(input: UpdateDashboardInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3956
4149
|
DeleteDashboard(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3977,7 +4170,7 @@ export declare class OutputTriggerTypeResolver extends ResolverBase {
|
|
|
3977
4170
|
RunOutputTriggerTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3978
4171
|
RunOutputTriggerTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3979
4172
|
OutputTriggerType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<OutputTriggerType_ | null>;
|
|
3980
|
-
Reports_OutputTriggerTypeIDArray(outputtriggertype_: OutputTriggerType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4173
|
+
Reports_OutputTriggerTypeIDArray(outputtriggertype_: OutputTriggerType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3981
4174
|
}
|
|
3982
4175
|
export declare class OutputFormatType_ {
|
|
3983
4176
|
ID: string;
|
|
@@ -4002,7 +4195,7 @@ export declare class OutputFormatTypeResolver extends ResolverBase {
|
|
|
4002
4195
|
RunOutputFormatTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4003
4196
|
RunOutputFormatTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4004
4197
|
OutputFormatType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<OutputFormatType_ | null>;
|
|
4005
|
-
Reports_OutputFormatTypeIDArray(outputformattype_: OutputFormatType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4198
|
+
Reports_OutputFormatTypeIDArray(outputformattype_: OutputFormatType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4006
4199
|
}
|
|
4007
4200
|
export declare class OutputDeliveryType_ {
|
|
4008
4201
|
ID: string;
|
|
@@ -4026,7 +4219,7 @@ export declare class OutputDeliveryTypeResolver extends ResolverBase {
|
|
|
4026
4219
|
RunOutputDeliveryTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4027
4220
|
RunOutputDeliveryTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4028
4221
|
OutputDeliveryType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<OutputDeliveryType_ | null>;
|
|
4029
|
-
Reports_OutputDeliveryTypeIDArray(outputdeliverytype_: OutputDeliveryType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4222
|
+
Reports_OutputDeliveryTypeIDArray(outputdeliverytype_: OutputDeliveryType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4030
4223
|
}
|
|
4031
4224
|
export declare class Report_ {
|
|
4032
4225
|
ID: string;
|
|
@@ -4061,6 +4254,7 @@ export declare class Report_ {
|
|
|
4061
4254
|
MJ_ReportUserStates_ReportIDArray: ReportUserState_[];
|
|
4062
4255
|
}
|
|
4063
4256
|
export declare class CreateReportInput {
|
|
4257
|
+
ID?: string;
|
|
4064
4258
|
Name?: string;
|
|
4065
4259
|
Description: string | null;
|
|
4066
4260
|
CategoryID: string | null;
|
|
@@ -4112,9 +4306,9 @@ export declare class ReportResolver extends ResolverBase {
|
|
|
4112
4306
|
RunReportViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4113
4307
|
RunReportDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4114
4308
|
Report(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Report_ | null>;
|
|
4115
|
-
ReportSnapshots_ReportIDArray(report_: Report_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4116
|
-
MJ_ReportVersions_ReportIDArray(report_: Report_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4117
|
-
MJ_ReportUserStates_ReportIDArray(report_: Report_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4309
|
+
ReportSnapshots_ReportIDArray(report_: Report_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4310
|
+
MJ_ReportVersions_ReportIDArray(report_: Report_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4311
|
+
MJ_ReportUserStates_ReportIDArray(report_: Report_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4118
4312
|
CreateReport(input: CreateReportInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4119
4313
|
UpdateReport(input: UpdateReportInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4120
4314
|
DeleteReport(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4130,6 +4324,7 @@ export declare class ReportSnapshot_ {
|
|
|
4130
4324
|
User: string;
|
|
4131
4325
|
}
|
|
4132
4326
|
export declare class CreateReportSnapshotInput {
|
|
4327
|
+
ID?: string;
|
|
4133
4328
|
ReportID?: string;
|
|
4134
4329
|
ResultSet?: string;
|
|
4135
4330
|
UserID?: string;
|
|
@@ -4190,10 +4385,10 @@ export declare class ResourceTypeResolver extends ResolverBase {
|
|
|
4190
4385
|
RunResourceTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4191
4386
|
RunResourceTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4192
4387
|
ResourceType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ResourceType_ | null>;
|
|
4193
|
-
WorkspaceItems_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4194
|
-
UserNotifications_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4195
|
-
ResourceLinks_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4196
|
-
ResourcePermissions_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4388
|
+
WorkspaceItems_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4389
|
+
UserNotifications_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4390
|
+
ResourceLinks_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4391
|
+
ResourcePermissions_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4197
4392
|
}
|
|
4198
4393
|
export declare class Tag_ {
|
|
4199
4394
|
ID: string;
|
|
@@ -4221,8 +4416,8 @@ export declare class TagResolver extends ResolverBase {
|
|
|
4221
4416
|
RunTagViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4222
4417
|
RunTagDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4223
4418
|
Tag(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Tag_ | null>;
|
|
4224
|
-
Tags_ParentIDArray(tag_: Tag_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4225
|
-
TaggedItems_TagIDArray(tag_: Tag_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4419
|
+
Tags_ParentIDArray(tag_: Tag_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4420
|
+
TaggedItems_TagIDArray(tag_: Tag_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4226
4421
|
}
|
|
4227
4422
|
export declare class TaggedItem_ {
|
|
4228
4423
|
ID: string;
|
|
@@ -4260,6 +4455,7 @@ export declare class Workspace_ {
|
|
|
4260
4455
|
WorkspaceItems_WorkSpaceIDArray: WorkspaceItem_[];
|
|
4261
4456
|
}
|
|
4262
4457
|
export declare class CreateWorkspaceInput {
|
|
4458
|
+
ID?: string;
|
|
4263
4459
|
Name?: string;
|
|
4264
4460
|
Description: string | null;
|
|
4265
4461
|
UserID?: string;
|
|
@@ -4285,7 +4481,7 @@ export declare class WorkspaceResolver extends ResolverBase {
|
|
|
4285
4481
|
RunWorkspaceViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4286
4482
|
RunWorkspaceDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4287
4483
|
Workspace(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Workspace_ | null>;
|
|
4288
|
-
WorkspaceItems_WorkSpaceIDArray(workspace_: Workspace_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4484
|
+
WorkspaceItems_WorkSpaceIDArray(workspace_: Workspace_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4289
4485
|
CreateWorkspace(input: CreateWorkspaceInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4290
4486
|
UpdateWorkspace(input: UpdateWorkspaceInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4291
4487
|
DeleteWorkspace(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4305,6 +4501,7 @@ export declare class WorkspaceItem_ {
|
|
|
4305
4501
|
ResourceType: string;
|
|
4306
4502
|
}
|
|
4307
4503
|
export declare class CreateWorkspaceItemInput {
|
|
4504
|
+
ID?: string;
|
|
4308
4505
|
Name?: string;
|
|
4309
4506
|
Description: string | null;
|
|
4310
4507
|
WorkspaceID?: string;
|
|
@@ -4364,7 +4561,7 @@ export declare class DatasetResolver extends ResolverBase {
|
|
|
4364
4561
|
RunDatasetViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4365
4562
|
RunDatasetDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4366
4563
|
Dataset(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Dataset_ | null>;
|
|
4367
|
-
DatasetItems_DatasetNameArray(dataset_: Dataset_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4564
|
+
DatasetItems_DatasetNameArray(dataset_: Dataset_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4368
4565
|
}
|
|
4369
4566
|
export declare class DatasetItem_ {
|
|
4370
4567
|
ID: string;
|
|
@@ -4420,6 +4617,7 @@ export declare class ConversationDetail_ {
|
|
|
4420
4617
|
Reports_ConversationDetailIDArray: Report_[];
|
|
4421
4618
|
}
|
|
4422
4619
|
export declare class CreateConversationDetailInput {
|
|
4620
|
+
ID?: string;
|
|
4423
4621
|
ConversationID?: string;
|
|
4424
4622
|
ExternalID: string | null;
|
|
4425
4623
|
Role?: string;
|
|
@@ -4467,7 +4665,7 @@ export declare class ConversationDetailResolver extends ResolverBase {
|
|
|
4467
4665
|
RunConversationDetailViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4468
4666
|
RunConversationDetailDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4469
4667
|
ConversationDetail(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ConversationDetail_ | null>;
|
|
4470
|
-
Reports_ConversationDetailIDArray(conversationdetail_: ConversationDetail_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4668
|
+
Reports_ConversationDetailIDArray(conversationdetail_: ConversationDetail_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4471
4669
|
CreateConversationDetail(input: CreateConversationDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4472
4670
|
UpdateConversationDetail(input: UpdateConversationDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4473
4671
|
DeleteConversationDetail(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4495,6 +4693,7 @@ export declare class Conversation_ {
|
|
|
4495
4693
|
MJ_AIAgentRuns_ConversationIDArray: AIAgentRun_[];
|
|
4496
4694
|
}
|
|
4497
4695
|
export declare class CreateConversationInput {
|
|
4696
|
+
ID?: string;
|
|
4498
4697
|
UserID?: string;
|
|
4499
4698
|
ExternalID: string | null;
|
|
4500
4699
|
Name: string | null;
|
|
@@ -4534,10 +4733,10 @@ export declare class ConversationResolver extends ResolverBase {
|
|
|
4534
4733
|
RunConversationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4535
4734
|
RunConversationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4536
4735
|
Conversation(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Conversation_ | null>;
|
|
4537
|
-
ConversationDetails_ConversationIDArray(conversation_: Conversation_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4538
|
-
Reports_ConversationIDArray(conversation_: Conversation_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4539
|
-
MJ_ConversationArtifacts_ConversationIDArray(conversation_: Conversation_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4540
|
-
MJ_AIAgentRuns_ConversationIDArray(conversation_: Conversation_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4736
|
+
ConversationDetails_ConversationIDArray(conversation_: Conversation_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4737
|
+
Reports_ConversationIDArray(conversation_: Conversation_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4738
|
+
MJ_ConversationArtifacts_ConversationIDArray(conversation_: Conversation_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4739
|
+
MJ_AIAgentRuns_ConversationIDArray(conversation_: Conversation_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4541
4740
|
CreateConversation(input: CreateConversationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4542
4741
|
UpdateConversation(input: UpdateConversationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4543
4742
|
DeleteConversation(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4558,6 +4757,7 @@ export declare class UserNotification_ {
|
|
|
4558
4757
|
ResourceType?: string;
|
|
4559
4758
|
}
|
|
4560
4759
|
export declare class CreateUserNotificationInput {
|
|
4760
|
+
ID?: string;
|
|
4561
4761
|
UserID?: string;
|
|
4562
4762
|
Title: string | null;
|
|
4563
4763
|
Message: string | null;
|
|
@@ -4607,6 +4807,7 @@ export declare class SchemaInfo_ {
|
|
|
4607
4807
|
_mj__UpdatedAt: Date;
|
|
4608
4808
|
}
|
|
4609
4809
|
export declare class CreateSchemaInfoInput {
|
|
4810
|
+
ID?: string;
|
|
4610
4811
|
SchemaName?: string;
|
|
4611
4812
|
EntityIDMin?: number;
|
|
4612
4813
|
EntityIDMax?: number;
|
|
@@ -4648,6 +4849,7 @@ export declare class CompanyIntegrationRecordMap_ {
|
|
|
4648
4849
|
Entity: string;
|
|
4649
4850
|
}
|
|
4650
4851
|
export declare class CreateCompanyIntegrationRecordMapInput {
|
|
4852
|
+
ID?: string;
|
|
4651
4853
|
CompanyIntegrationID?: string;
|
|
4652
4854
|
ExternalSystemRecordID?: string;
|
|
4653
4855
|
EntityID?: string;
|
|
@@ -4699,6 +4901,7 @@ export declare class RecordMergeLog_ {
|
|
|
4699
4901
|
DuplicateRunDetailMatches_RecordMergeLogIDArray: DuplicateRunDetailMatch_[];
|
|
4700
4902
|
}
|
|
4701
4903
|
export declare class CreateRecordMergeLogInput {
|
|
4904
|
+
ID?: string;
|
|
4702
4905
|
EntityID?: string;
|
|
4703
4906
|
SurvivingRecordID?: string;
|
|
4704
4907
|
InitiatedByUserID?: string;
|
|
@@ -4738,8 +4941,8 @@ export declare class RecordMergeLogResolver extends ResolverBase {
|
|
|
4738
4941
|
RunRecordMergeLogViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4739
4942
|
RunRecordMergeLogDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4740
4943
|
RecordMergeLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordMergeLog_ | null>;
|
|
4741
|
-
RecordMergeDeletionLogs_RecordMergeLogIDArray(recordmergelog_: RecordMergeLog_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4742
|
-
DuplicateRunDetailMatches_RecordMergeLogIDArray(recordmergelog_: RecordMergeLog_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4944
|
+
RecordMergeDeletionLogs_RecordMergeLogIDArray(recordmergelog_: RecordMergeLog_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4945
|
+
DuplicateRunDetailMatches_RecordMergeLogIDArray(recordmergelog_: RecordMergeLog_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4743
4946
|
CreateRecordMergeLog(input: CreateRecordMergeLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4744
4947
|
UpdateRecordMergeLog(input: UpdateRecordMergeLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4745
4948
|
}
|
|
@@ -4753,6 +4956,7 @@ export declare class RecordMergeDeletionLog_ {
|
|
|
4753
4956
|
_mj__UpdatedAt: Date;
|
|
4754
4957
|
}
|
|
4755
4958
|
export declare class CreateRecordMergeDeletionLogInput {
|
|
4959
|
+
ID?: string;
|
|
4756
4960
|
RecordMergeLogID?: string;
|
|
4757
4961
|
DeletedRecordID?: string;
|
|
4758
4962
|
Status?: string;
|
|
@@ -4803,6 +5007,7 @@ export declare class QueryField_ {
|
|
|
4803
5007
|
SourceEntity?: string;
|
|
4804
5008
|
}
|
|
4805
5009
|
export declare class CreateQueryFieldInput {
|
|
5010
|
+
ID?: string;
|
|
4806
5011
|
QueryID?: string;
|
|
4807
5012
|
Name?: string;
|
|
4808
5013
|
Description: string | null;
|
|
@@ -4864,6 +5069,7 @@ export declare class QueryCategory_ {
|
|
|
4864
5069
|
Queries_CategoryIDArray: Query_[];
|
|
4865
5070
|
}
|
|
4866
5071
|
export declare class CreateQueryCategoryInput {
|
|
5072
|
+
ID?: string;
|
|
4867
5073
|
Name?: string;
|
|
4868
5074
|
ParentID: string | null;
|
|
4869
5075
|
Description: string | null;
|
|
@@ -4891,8 +5097,8 @@ export declare class QueryCategoryResolver extends ResolverBase {
|
|
|
4891
5097
|
RunQueryCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4892
5098
|
RunQueryCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4893
5099
|
QueryCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueryCategory_ | null>;
|
|
4894
|
-
QueryCategories_ParentIDArray(querycategory_: QueryCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4895
|
-
Queries_CategoryIDArray(querycategory_: QueryCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5100
|
+
QueryCategories_ParentIDArray(querycategory_: QueryCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5101
|
+
Queries_CategoryIDArray(querycategory_: QueryCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4896
5102
|
CreateQueryCategory(input: CreateQueryCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4897
5103
|
UpdateQueryCategory(input: UpdateQueryCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4898
5104
|
DeleteQueryCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4919,6 +5125,7 @@ export declare class Query_ {
|
|
|
4919
5125
|
QueryEntities_QueryIDArray: QueryEntity_[];
|
|
4920
5126
|
}
|
|
4921
5127
|
export declare class CreateQueryInput {
|
|
5128
|
+
ID?: string;
|
|
4922
5129
|
Name?: string;
|
|
4923
5130
|
CategoryID: string | null;
|
|
4924
5131
|
UserQuestion: string | null;
|
|
@@ -4960,10 +5167,10 @@ export declare class QueryResolver extends ResolverBase {
|
|
|
4960
5167
|
RunQueryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4961
5168
|
RunQueryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4962
5169
|
Query(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Query_ | null>;
|
|
4963
|
-
QueryFields_QueryIDArray(query_: Query_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4964
|
-
DataContextItems_QueryIDArray(query_: Query_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4965
|
-
QueryPermissions_QueryIDArray(query_: Query_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4966
|
-
QueryEntities_QueryIDArray(query_: Query_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5170
|
+
QueryFields_QueryIDArray(query_: Query_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5171
|
+
DataContextItems_QueryIDArray(query_: Query_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5172
|
+
QueryPermissions_QueryIDArray(query_: Query_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5173
|
+
QueryEntities_QueryIDArray(query_: Query_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4967
5174
|
CreateQuery(input: CreateQueryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4968
5175
|
UpdateQuery(input: UpdateQueryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4969
5176
|
DeleteQuery(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4978,6 +5185,7 @@ export declare class QueryPermission_ {
|
|
|
4978
5185
|
Role: string;
|
|
4979
5186
|
}
|
|
4980
5187
|
export declare class CreateQueryPermissionInput {
|
|
5188
|
+
ID?: string;
|
|
4981
5189
|
QueryID?: string;
|
|
4982
5190
|
RoleID?: string;
|
|
4983
5191
|
}
|
|
@@ -5018,6 +5226,7 @@ export declare class VectorIndex_ {
|
|
|
5018
5226
|
EntityRecordDocuments_VectorIndexIDArray: EntityRecordDocument_[];
|
|
5019
5227
|
}
|
|
5020
5228
|
export declare class CreateVectorIndexInput {
|
|
5229
|
+
ID?: string;
|
|
5021
5230
|
Name?: string;
|
|
5022
5231
|
Description: string | null;
|
|
5023
5232
|
VectorDatabaseID?: string;
|
|
@@ -5045,7 +5254,7 @@ export declare class VectorIndexResolver extends ResolverBase {
|
|
|
5045
5254
|
RunVectorIndexViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5046
5255
|
RunVectorIndexDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5047
5256
|
VectorIndex(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<VectorIndex_ | null>;
|
|
5048
|
-
EntityRecordDocuments_VectorIndexIDArray(vectorindex_: VectorIndex_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5257
|
+
EntityRecordDocuments_VectorIndexIDArray(vectorindex_: VectorIndex_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5049
5258
|
CreateVectorIndex(input: CreateVectorIndexInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5050
5259
|
UpdateVectorIndex(input: UpdateVectorIndexInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5051
5260
|
DeleteVectorIndex(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5059,6 +5268,7 @@ export declare class EntityDocumentType_ {
|
|
|
5059
5268
|
EntityDocuments_TypeIDArray: EntityDocument_[];
|
|
5060
5269
|
}
|
|
5061
5270
|
export declare class CreateEntityDocumentTypeInput {
|
|
5271
|
+
ID?: string;
|
|
5062
5272
|
Name?: string;
|
|
5063
5273
|
Description: string | null;
|
|
5064
5274
|
}
|
|
@@ -5082,7 +5292,7 @@ export declare class EntityDocumentTypeResolver extends ResolverBase {
|
|
|
5082
5292
|
RunEntityDocumentTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5083
5293
|
RunEntityDocumentTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5084
5294
|
EntityDocumentType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityDocumentType_ | null>;
|
|
5085
|
-
EntityDocuments_TypeIDArray(entitydocumenttype_: EntityDocumentType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5295
|
+
EntityDocuments_TypeIDArray(entitydocumenttype_: EntityDocumentType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5086
5296
|
CreateEntityDocumentType(input: CreateEntityDocumentTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5087
5297
|
UpdateEntityDocumentType(input: UpdateEntityDocumentTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5088
5298
|
DeleteEntityDocumentType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5098,6 +5308,7 @@ export declare class EntityDocumentRun_ {
|
|
|
5098
5308
|
EntityDocument: string;
|
|
5099
5309
|
}
|
|
5100
5310
|
export declare class CreateEntityDocumentRunInput {
|
|
5311
|
+
ID?: string;
|
|
5101
5312
|
EntityDocumentID?: string;
|
|
5102
5313
|
StartedAt: Date | null;
|
|
5103
5314
|
EndedAt: Date | null;
|
|
@@ -5140,6 +5351,7 @@ export declare class VectorDatabase_ {
|
|
|
5140
5351
|
VectorIndexes_VectorDatabaseIDArray: VectorIndex_[];
|
|
5141
5352
|
}
|
|
5142
5353
|
export declare class CreateVectorDatabaseInput {
|
|
5354
|
+
ID?: string;
|
|
5143
5355
|
Name?: string;
|
|
5144
5356
|
Description: string | null;
|
|
5145
5357
|
DefaultURL: string | null;
|
|
@@ -5167,8 +5379,8 @@ export declare class VectorDatabaseResolver extends ResolverBase {
|
|
|
5167
5379
|
RunVectorDatabaseViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5168
5380
|
RunVectorDatabaseDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5169
5381
|
VectorDatabase(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<VectorDatabase_ | null>;
|
|
5170
|
-
EntityDocuments_IDArray(vectordatabase_: VectorDatabase_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5171
|
-
VectorIndexes_VectorDatabaseIDArray(vectordatabase_: VectorDatabase_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5382
|
+
EntityDocuments_IDArray(vectordatabase_: VectorDatabase_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5383
|
+
VectorIndexes_VectorDatabaseIDArray(vectordatabase_: VectorDatabase_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5172
5384
|
CreateVectorDatabase(input: CreateVectorDatabaseInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5173
5385
|
UpdateVectorDatabase(input: UpdateVectorDatabaseInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5174
5386
|
DeleteVectorDatabase(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5190,6 +5402,7 @@ export declare class EntityRecordDocument_ {
|
|
|
5190
5402
|
VectorIndex: string;
|
|
5191
5403
|
}
|
|
5192
5404
|
export declare class CreateEntityRecordDocumentInput {
|
|
5405
|
+
ID?: string;
|
|
5193
5406
|
EntityID?: string;
|
|
5194
5407
|
RecordID?: string;
|
|
5195
5408
|
EntityDocumentID?: string;
|
|
@@ -5251,6 +5464,7 @@ export declare class EntityDocument_ {
|
|
|
5251
5464
|
EntityRecordDocuments_EntityDocumentIDArray: EntityRecordDocument_[];
|
|
5252
5465
|
}
|
|
5253
5466
|
export declare class CreateEntityDocumentInput {
|
|
5467
|
+
ID?: string;
|
|
5254
5468
|
Name?: string;
|
|
5255
5469
|
TypeID?: string;
|
|
5256
5470
|
EntityID?: string;
|
|
@@ -5288,9 +5502,9 @@ export declare class EntityDocumentResolver extends ResolverBase {
|
|
|
5288
5502
|
RunEntityDocumentViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5289
5503
|
RunEntityDocumentDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5290
5504
|
EntityDocument(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityDocument_ | null>;
|
|
5291
|
-
EntityDocumentSettings_EntityDocumentIDArray(entitydocument_: EntityDocument_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5292
|
-
EntityDocumentRuns_EntityDocumentIDArray(entitydocument_: EntityDocument_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5293
|
-
EntityRecordDocuments_EntityDocumentIDArray(entitydocument_: EntityDocument_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5505
|
+
EntityDocumentSettings_EntityDocumentIDArray(entitydocument_: EntityDocument_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5506
|
+
EntityDocumentRuns_EntityDocumentIDArray(entitydocument_: EntityDocument_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5507
|
+
EntityRecordDocuments_EntityDocumentIDArray(entitydocument_: EntityDocument_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5294
5508
|
CreateEntityDocument(input: CreateEntityDocumentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5295
5509
|
UpdateEntityDocument(input: UpdateEntityDocumentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5296
5510
|
}
|
|
@@ -5315,6 +5529,7 @@ export declare class DataContextItem_ {
|
|
|
5315
5529
|
Entity?: string;
|
|
5316
5530
|
}
|
|
5317
5531
|
export declare class CreateDataContextItemInput {
|
|
5532
|
+
ID?: string;
|
|
5318
5533
|
DataContextID?: string;
|
|
5319
5534
|
Type?: string;
|
|
5320
5535
|
ViewID: string | null;
|
|
@@ -5374,6 +5589,7 @@ export declare class DataContext_ {
|
|
|
5374
5589
|
Conversations_DataContextIDArray: Conversation_[];
|
|
5375
5590
|
}
|
|
5376
5591
|
export declare class CreateDataContextInput {
|
|
5592
|
+
ID?: string;
|
|
5377
5593
|
Name?: string;
|
|
5378
5594
|
Description: string | null;
|
|
5379
5595
|
UserID?: string;
|
|
@@ -5401,9 +5617,9 @@ export declare class DataContextResolver extends ResolverBase {
|
|
|
5401
5617
|
RunDataContextViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5402
5618
|
RunDataContextDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5403
5619
|
DataContext(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DataContext_ | null>;
|
|
5404
|
-
Reports_DataContextIDArray(datacontext_: DataContext_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5405
|
-
DataContextItems_DataContextIDArray(datacontext_: DataContext_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5406
|
-
Conversations_DataContextIDArray(datacontext_: DataContext_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5620
|
+
Reports_DataContextIDArray(datacontext_: DataContext_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5621
|
+
DataContextItems_DataContextIDArray(datacontext_: DataContext_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5622
|
+
Conversations_DataContextIDArray(datacontext_: DataContext_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5407
5623
|
CreateDataContext(input: CreateDataContextInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5408
5624
|
UpdateDataContext(input: UpdateDataContextInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5409
5625
|
DeleteDataContext(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5424,6 +5640,7 @@ export declare class UserViewCategory_ {
|
|
|
5424
5640
|
UserViews_CategoryIDArray: UserView_[];
|
|
5425
5641
|
}
|
|
5426
5642
|
export declare class CreateUserViewCategoryInput {
|
|
5643
|
+
ID?: string;
|
|
5427
5644
|
Name?: string;
|
|
5428
5645
|
Description: string | null;
|
|
5429
5646
|
ParentID: string | null;
|
|
@@ -5453,8 +5670,8 @@ export declare class UserViewCategoryResolver extends ResolverBase {
|
|
|
5453
5670
|
RunUserViewCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5454
5671
|
RunUserViewCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5455
5672
|
UserViewCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserViewCategory_ | null>;
|
|
5456
|
-
UserViewCategories_ParentIDArray(userviewcategory_: UserViewCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5457
|
-
UserViews_CategoryIDArray(userviewcategory_: UserViewCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5673
|
+
UserViewCategories_ParentIDArray(userviewcategory_: UserViewCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5674
|
+
UserViews_CategoryIDArray(userviewcategory_: UserViewCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5458
5675
|
CreateUserViewCategory(input: CreateUserViewCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5459
5676
|
UpdateUserViewCategory(input: UpdateUserViewCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5460
5677
|
DeleteUserViewCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5473,6 +5690,7 @@ export declare class DashboardCategory_ {
|
|
|
5473
5690
|
Dashboards_CategoryIDArray: Dashboard_[];
|
|
5474
5691
|
}
|
|
5475
5692
|
export declare class CreateDashboardCategoryInput {
|
|
5693
|
+
ID?: string;
|
|
5476
5694
|
Name?: string;
|
|
5477
5695
|
Description: string | null;
|
|
5478
5696
|
ParentID: string | null;
|
|
@@ -5500,8 +5718,8 @@ export declare class DashboardCategoryResolver extends ResolverBase {
|
|
|
5500
5718
|
RunDashboardCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5501
5719
|
RunDashboardCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5502
5720
|
DashboardCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DashboardCategory_ | null>;
|
|
5503
|
-
DashboardCategories_ParentIDArray(dashboardcategory_: DashboardCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5504
|
-
Dashboards_CategoryIDArray(dashboardcategory_: DashboardCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5721
|
+
DashboardCategories_ParentIDArray(dashboardcategory_: DashboardCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5722
|
+
Dashboards_CategoryIDArray(dashboardcategory_: DashboardCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5505
5723
|
CreateDashboardCategory(input: CreateDashboardCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5506
5724
|
UpdateDashboardCategory(input: UpdateDashboardCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5507
5725
|
DeleteDashboardCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5520,6 +5738,7 @@ export declare class ReportCategory_ {
|
|
|
5520
5738
|
Reports_CategoryIDArray: Report_[];
|
|
5521
5739
|
}
|
|
5522
5740
|
export declare class CreateReportCategoryInput {
|
|
5741
|
+
ID?: string;
|
|
5523
5742
|
Name?: string;
|
|
5524
5743
|
Description: string | null;
|
|
5525
5744
|
ParentID: string | null;
|
|
@@ -5547,8 +5766,8 @@ export declare class ReportCategoryResolver extends ResolverBase {
|
|
|
5547
5766
|
RunReportCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5548
5767
|
RunReportCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5549
5768
|
ReportCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ReportCategory_ | null>;
|
|
5550
|
-
ReportCategories_ParentIDArray(reportcategory_: ReportCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5551
|
-
Reports_CategoryIDArray(reportcategory_: ReportCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5769
|
+
ReportCategories_ParentIDArray(reportcategory_: ReportCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5770
|
+
Reports_CategoryIDArray(reportcategory_: ReportCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5552
5771
|
CreateReportCategory(input: CreateReportCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5553
5772
|
UpdateReportCategory(input: UpdateReportCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5554
5773
|
DeleteReportCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5566,6 +5785,7 @@ export declare class FileStorageProvider_ {
|
|
|
5566
5785
|
Files_ProviderIDArray: File_[];
|
|
5567
5786
|
}
|
|
5568
5787
|
export declare class CreateFileStorageProviderInput {
|
|
5788
|
+
ID?: string;
|
|
5569
5789
|
Name?: string;
|
|
5570
5790
|
Description: string | null;
|
|
5571
5791
|
ServerDriverKey?: string;
|
|
@@ -5597,7 +5817,7 @@ export declare class FileStorageProviderResolver extends ResolverBase {
|
|
|
5597
5817
|
RunFileStorageProviderViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5598
5818
|
RunFileStorageProviderDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5599
5819
|
FileStorageProvider(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<FileStorageProvider_ | null>;
|
|
5600
|
-
Files_ProviderIDArray(filestorageprovider_: FileStorageProvider_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5820
|
+
Files_ProviderIDArray(filestorageprovider_: FileStorageProvider_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5601
5821
|
CreateFileStorageProvider(input: CreateFileStorageProviderInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5602
5822
|
UpdateFileStorageProvider(input: UpdateFileStorageProviderInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5603
5823
|
DeleteFileStorageProvider(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5618,6 +5838,7 @@ export declare class File_ {
|
|
|
5618
5838
|
FileEntityRecordLinks_FileIDArray: FileEntityRecordLink_[];
|
|
5619
5839
|
}
|
|
5620
5840
|
export declare class CreateFileInput {
|
|
5841
|
+
ID?: string;
|
|
5621
5842
|
Name?: string;
|
|
5622
5843
|
Description: string | null;
|
|
5623
5844
|
CategoryID: string | null;
|
|
@@ -5651,7 +5872,7 @@ export declare class FileResolver extends ResolverBase {
|
|
|
5651
5872
|
RunFileViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5652
5873
|
RunFileDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5653
5874
|
File(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<File_ | null>;
|
|
5654
|
-
FileEntityRecordLinks_FileIDArray(file_: File_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5875
|
+
FileEntityRecordLinks_FileIDArray(file_: File_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5655
5876
|
CreateFile(input: CreateFileInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5656
5877
|
UpdateFile(input: UpdateFileInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5657
5878
|
DeleteFile(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5668,6 +5889,7 @@ export declare class FileCategory_ {
|
|
|
5668
5889
|
FileCategories_ParentIDArray: FileCategory_[];
|
|
5669
5890
|
}
|
|
5670
5891
|
export declare class CreateFileCategoryInput {
|
|
5892
|
+
ID?: string;
|
|
5671
5893
|
Name?: string;
|
|
5672
5894
|
ParentID: string | null;
|
|
5673
5895
|
Description: string | null;
|
|
@@ -5693,8 +5915,8 @@ export declare class FileCategoryResolver extends ResolverBase {
|
|
|
5693
5915
|
RunFileCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5694
5916
|
RunFileCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5695
5917
|
FileCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<FileCategory_ | null>;
|
|
5696
|
-
Files_CategoryIDArray(filecategory_: FileCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5697
|
-
FileCategories_ParentIDArray(filecategory_: FileCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5918
|
+
Files_CategoryIDArray(filecategory_: FileCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5919
|
+
FileCategories_ParentIDArray(filecategory_: FileCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5698
5920
|
CreateFileCategory(input: CreateFileCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5699
5921
|
UpdateFileCategory(input: UpdateFileCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5700
5922
|
DeleteFileCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5710,6 +5932,7 @@ export declare class FileEntityRecordLink_ {
|
|
|
5710
5932
|
Entity: string;
|
|
5711
5933
|
}
|
|
5712
5934
|
export declare class CreateFileEntityRecordLinkInput {
|
|
5935
|
+
ID?: string;
|
|
5713
5936
|
FileID?: string;
|
|
5714
5937
|
EntityID?: string;
|
|
5715
5938
|
RecordID?: string;
|
|
@@ -5754,6 +5977,7 @@ export declare class VersionInstallation_ {
|
|
|
5754
5977
|
CompleteVersion?: string;
|
|
5755
5978
|
}
|
|
5756
5979
|
export declare class CreateVersionInstallationInput {
|
|
5980
|
+
ID?: string;
|
|
5757
5981
|
MajorVersion?: number;
|
|
5758
5982
|
MinorVersion?: number;
|
|
5759
5983
|
PatchVersion?: number;
|
|
@@ -5808,6 +6032,7 @@ export declare class DuplicateRunDetailMatch_ {
|
|
|
5808
6032
|
_mj__UpdatedAt: Date;
|
|
5809
6033
|
}
|
|
5810
6034
|
export declare class CreateDuplicateRunDetailMatchInput {
|
|
6035
|
+
ID?: string;
|
|
5811
6036
|
DuplicateRunDetailID?: string;
|
|
5812
6037
|
MatchSource?: string;
|
|
5813
6038
|
MatchRecordID?: string;
|
|
@@ -5861,6 +6086,7 @@ export declare class EntityDocumentSetting_ {
|
|
|
5861
6086
|
EntityDocument: string;
|
|
5862
6087
|
}
|
|
5863
6088
|
export declare class CreateEntityDocumentSettingInput {
|
|
6089
|
+
ID?: string;
|
|
5864
6090
|
EntityDocumentID?: string;
|
|
5865
6091
|
Name?: string;
|
|
5866
6092
|
Value?: string;
|
|
@@ -5903,6 +6129,7 @@ export declare class EntitySetting_ {
|
|
|
5903
6129
|
Entity: string;
|
|
5904
6130
|
}
|
|
5905
6131
|
export declare class CreateEntitySettingInput {
|
|
6132
|
+
ID?: string;
|
|
5906
6133
|
EntityID?: string;
|
|
5907
6134
|
Name?: string;
|
|
5908
6135
|
Value?: string;
|
|
@@ -5955,6 +6182,7 @@ export declare class DuplicateRun_ {
|
|
|
5955
6182
|
DuplicateRunDetails_DuplicateRunIDArray: DuplicateRunDetail_[];
|
|
5956
6183
|
}
|
|
5957
6184
|
export declare class CreateDuplicateRunInput {
|
|
6185
|
+
ID?: string;
|
|
5958
6186
|
EntityID?: string;
|
|
5959
6187
|
StartedByUserID?: string;
|
|
5960
6188
|
SourceListID?: string;
|
|
@@ -5994,7 +6222,7 @@ export declare class DuplicateRunResolver extends ResolverBase {
|
|
|
5994
6222
|
RunDuplicateRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5995
6223
|
RunDuplicateRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5996
6224
|
DuplicateRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DuplicateRun_ | null>;
|
|
5997
|
-
DuplicateRunDetails_DuplicateRunIDArray(duplicaterun_: DuplicateRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6225
|
+
DuplicateRunDetails_DuplicateRunIDArray(duplicaterun_: DuplicateRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5998
6226
|
CreateDuplicateRun(input: CreateDuplicateRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5999
6227
|
UpdateDuplicateRun(input: UpdateDuplicateRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6000
6228
|
}
|
|
@@ -6012,6 +6240,7 @@ export declare class DuplicateRunDetail_ {
|
|
|
6012
6240
|
DuplicateRunDetailMatches_DuplicateRunDetailIDArray: DuplicateRunDetailMatch_[];
|
|
6013
6241
|
}
|
|
6014
6242
|
export declare class CreateDuplicateRunDetailInput {
|
|
6243
|
+
ID?: string;
|
|
6015
6244
|
DuplicateRunID?: string;
|
|
6016
6245
|
RecordID?: string;
|
|
6017
6246
|
MatchStatus?: string;
|
|
@@ -6045,7 +6274,7 @@ export declare class DuplicateRunDetailResolver extends ResolverBase {
|
|
|
6045
6274
|
RunDuplicateRunDetailViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6046
6275
|
RunDuplicateRunDetailDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6047
6276
|
DuplicateRunDetail(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DuplicateRunDetail_ | null>;
|
|
6048
|
-
DuplicateRunDetailMatches_DuplicateRunDetailIDArray(duplicaterundetail_: DuplicateRunDetail_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6277
|
+
DuplicateRunDetailMatches_DuplicateRunDetailIDArray(duplicaterundetail_: DuplicateRunDetail_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6049
6278
|
CreateDuplicateRunDetail(input: CreateDuplicateRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6050
6279
|
UpdateDuplicateRunDetail(input: UpdateDuplicateRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6051
6280
|
}
|
|
@@ -6060,6 +6289,7 @@ export declare class ApplicationSetting_ {
|
|
|
6060
6289
|
Application: string;
|
|
6061
6290
|
}
|
|
6062
6291
|
export declare class CreateApplicationSettingInput {
|
|
6292
|
+
ID?: string;
|
|
6063
6293
|
ApplicationID?: string;
|
|
6064
6294
|
Name?: string;
|
|
6065
6295
|
Value?: string;
|
|
@@ -6104,6 +6334,7 @@ export declare class ActionCategory_ {
|
|
|
6104
6334
|
Actions_CategoryIDArray: Action_[];
|
|
6105
6335
|
}
|
|
6106
6336
|
export declare class CreateActionCategoryInput {
|
|
6337
|
+
ID?: string;
|
|
6107
6338
|
Name?: string;
|
|
6108
6339
|
Description: string | null;
|
|
6109
6340
|
ParentID: string | null;
|
|
@@ -6131,8 +6362,8 @@ export declare class ActionCategoryResolver extends ResolverBase {
|
|
|
6131
6362
|
RunActionCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6132
6363
|
RunActionCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6133
6364
|
ActionCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionCategory_ | null>;
|
|
6134
|
-
ActionCategories_ParentIDArray(actioncategory_: ActionCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6135
|
-
Actions_CategoryIDArray(actioncategory_: ActionCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6365
|
+
ActionCategories_ParentIDArray(actioncategory_: ActionCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6366
|
+
Actions_CategoryIDArray(actioncategory_: ActionCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6136
6367
|
CreateActionCategory(input: CreateActionCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6137
6368
|
UpdateActionCategory(input: UpdateActionCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6138
6369
|
DeleteActionCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6154,6 +6385,7 @@ export declare class CreateEntityActionInput {
|
|
|
6154
6385
|
EntityID?: string;
|
|
6155
6386
|
ActionID?: string;
|
|
6156
6387
|
Status?: string;
|
|
6388
|
+
ID?: string;
|
|
6157
6389
|
}
|
|
6158
6390
|
export declare class UpdateEntityActionInput {
|
|
6159
6391
|
EntityID?: string;
|
|
@@ -6176,9 +6408,9 @@ export declare class EntityActionResolver extends ResolverBase {
|
|
|
6176
6408
|
RunEntityActionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6177
6409
|
RunEntityActionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6178
6410
|
EntityAction(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityAction_ | null>;
|
|
6179
|
-
EntityActionInvocations_EntityActionIDArray(entityaction_: EntityAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6180
|
-
EntityActionFilters_EntityActionIDArray(entityaction_: EntityAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6181
|
-
EntityActionParams_EntityActionIDArray(entityaction_: EntityAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6411
|
+
EntityActionInvocations_EntityActionIDArray(entityaction_: EntityAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6412
|
+
EntityActionFilters_EntityActionIDArray(entityaction_: EntityAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6413
|
+
EntityActionParams_EntityActionIDArray(entityaction_: EntityAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6182
6414
|
CreateEntityAction(input: CreateEntityActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6183
6415
|
UpdateEntityAction(input: UpdateEntityActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6184
6416
|
DeleteEntityAction(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6193,6 +6425,7 @@ export declare class EntityActionInvocation_ {
|
|
|
6193
6425
|
InvocationType: string;
|
|
6194
6426
|
}
|
|
6195
6427
|
export declare class CreateEntityActionInvocationInput {
|
|
6428
|
+
ID?: string;
|
|
6196
6429
|
EntityActionID?: string;
|
|
6197
6430
|
InvocationTypeID?: string;
|
|
6198
6431
|
Status?: string;
|
|
@@ -6233,6 +6466,7 @@ export declare class ActionAuthorization_ {
|
|
|
6233
6466
|
Authorization: string;
|
|
6234
6467
|
}
|
|
6235
6468
|
export declare class CreateActionAuthorizationInput {
|
|
6469
|
+
ID?: string;
|
|
6236
6470
|
ActionID?: string;
|
|
6237
6471
|
AuthorizationID?: string;
|
|
6238
6472
|
Comments: string | null;
|
|
@@ -6272,6 +6506,7 @@ export declare class EntityActionInvocationType_ {
|
|
|
6272
6506
|
EntityActionInvocations_InvocationTypeIDArray: EntityActionInvocation_[];
|
|
6273
6507
|
}
|
|
6274
6508
|
export declare class CreateEntityActionInvocationTypeInput {
|
|
6509
|
+
ID?: string;
|
|
6275
6510
|
Name?: string;
|
|
6276
6511
|
Description: string | null;
|
|
6277
6512
|
DisplaySequence?: number;
|
|
@@ -6297,7 +6532,7 @@ export declare class EntityActionInvocationTypeResolver extends ResolverBase {
|
|
|
6297
6532
|
RunEntityActionInvocationTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6298
6533
|
RunEntityActionInvocationTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6299
6534
|
EntityActionInvocationType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityActionInvocationType_ | null>;
|
|
6300
|
-
EntityActionInvocations_InvocationTypeIDArray(entityactioninvocationtype_: EntityActionInvocationType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6535
|
+
EntityActionInvocations_InvocationTypeIDArray(entityactioninvocationtype_: EntityActionInvocationType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6301
6536
|
CreateEntityActionInvocationType(input: CreateEntityActionInvocationTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6302
6537
|
UpdateEntityActionInvocationType(input: UpdateEntityActionInvocationTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6303
6538
|
DeleteEntityActionInvocationType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6322,6 +6557,7 @@ export declare class Action_ {
|
|
|
6322
6557
|
Status: string;
|
|
6323
6558
|
_mj__CreatedAt: Date;
|
|
6324
6559
|
_mj__UpdatedAt: Date;
|
|
6560
|
+
DriverClass?: string;
|
|
6325
6561
|
Category?: string;
|
|
6326
6562
|
CodeApprovedByUser?: string;
|
|
6327
6563
|
ActionParams_ActionIDArray: ActionParam_[];
|
|
@@ -6335,6 +6571,7 @@ export declare class Action_ {
|
|
|
6335
6571
|
ActionAuthorizations_ActionIDArray: ActionAuthorization_[];
|
|
6336
6572
|
}
|
|
6337
6573
|
export declare class CreateActionInput {
|
|
6574
|
+
ID?: string;
|
|
6338
6575
|
CategoryID: string | null;
|
|
6339
6576
|
Name?: string;
|
|
6340
6577
|
Description: string | null;
|
|
@@ -6351,6 +6588,7 @@ export declare class CreateActionInput {
|
|
|
6351
6588
|
ForceCodeGeneration?: boolean;
|
|
6352
6589
|
RetentionPeriod: number | null;
|
|
6353
6590
|
Status?: string;
|
|
6591
|
+
DriverClass: string | null;
|
|
6354
6592
|
}
|
|
6355
6593
|
export declare class UpdateActionInput {
|
|
6356
6594
|
ID: string;
|
|
@@ -6370,6 +6608,7 @@ export declare class UpdateActionInput {
|
|
|
6370
6608
|
ForceCodeGeneration?: boolean;
|
|
6371
6609
|
RetentionPeriod?: number | null;
|
|
6372
6610
|
Status?: string;
|
|
6611
|
+
DriverClass?: string | null;
|
|
6373
6612
|
OldValues___?: KeyValuePairInput[];
|
|
6374
6613
|
}
|
|
6375
6614
|
export declare class RunActionViewResult {
|
|
@@ -6386,15 +6625,15 @@ export declare class ActionResolver extends ResolverBase {
|
|
|
6386
6625
|
RunActionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6387
6626
|
RunActionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6388
6627
|
Action(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Action_ | null>;
|
|
6389
|
-
ActionParams_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6390
|
-
ActionLibraries_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6391
|
-
ScheduledActions_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6392
|
-
ActionResultCodes_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6393
|
-
AIAgentActions_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6394
|
-
ActionContexts_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6395
|
-
EntityActions_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6396
|
-
ActionExecutionLogs_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6397
|
-
ActionAuthorizations_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6628
|
+
ActionParams_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6629
|
+
ActionLibraries_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6630
|
+
ScheduledActions_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6631
|
+
ActionResultCodes_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6632
|
+
AIAgentActions_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6633
|
+
ActionContexts_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6634
|
+
EntityActions_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6635
|
+
ActionExecutionLogs_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6636
|
+
ActionAuthorizations_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6398
6637
|
CreateAction(input: CreateActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6399
6638
|
UpdateAction(input: UpdateActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6400
6639
|
DeleteAction(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6409,6 +6648,7 @@ export declare class EntityActionFilter_ {
|
|
|
6409
6648
|
_mj__UpdatedAt: Date;
|
|
6410
6649
|
}
|
|
6411
6650
|
export declare class CreateEntityActionFilterInput {
|
|
6651
|
+
ID?: string;
|
|
6412
6652
|
EntityActionID?: string;
|
|
6413
6653
|
ActionFilterID?: string;
|
|
6414
6654
|
Sequence?: number;
|
|
@@ -6451,6 +6691,7 @@ export declare class ActionFilter_ {
|
|
|
6451
6691
|
EntityActionFilters_ActionFilterIDArray: EntityActionFilter_[];
|
|
6452
6692
|
}
|
|
6453
6693
|
export declare class CreateActionFilterInput {
|
|
6694
|
+
ID?: string;
|
|
6454
6695
|
UserDescription?: string;
|
|
6455
6696
|
UserComments: string | null;
|
|
6456
6697
|
Code?: string;
|
|
@@ -6478,7 +6719,7 @@ export declare class ActionFilterResolver extends ResolverBase {
|
|
|
6478
6719
|
RunActionFilterViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6479
6720
|
RunActionFilterDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6480
6721
|
ActionFilter(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionFilter_ | null>;
|
|
6481
|
-
EntityActionFilters_ActionFilterIDArray(actionfilter_: ActionFilter_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6722
|
+
EntityActionFilters_ActionFilterIDArray(actionfilter_: ActionFilter_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6482
6723
|
CreateActionFilter(input: CreateActionFilterInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6483
6724
|
UpdateActionFilter(input: UpdateActionFilterInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6484
6725
|
DeleteActionFilter(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6492,6 +6733,7 @@ export declare class ActionContextType_ {
|
|
|
6492
6733
|
ActionContexts_ContextTypeIDArray: ActionContext_[];
|
|
6493
6734
|
}
|
|
6494
6735
|
export declare class CreateActionContextTypeInput {
|
|
6736
|
+
ID?: string;
|
|
6495
6737
|
Name?: string;
|
|
6496
6738
|
Description: string | null;
|
|
6497
6739
|
}
|
|
@@ -6515,7 +6757,7 @@ export declare class ActionContextTypeResolver extends ResolverBase {
|
|
|
6515
6757
|
RunActionContextTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6516
6758
|
RunActionContextTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6517
6759
|
ActionContextType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionContextType_ | null>;
|
|
6518
|
-
ActionContexts_ContextTypeIDArray(actioncontexttype_: ActionContextType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6760
|
+
ActionContexts_ContextTypeIDArray(actioncontexttype_: ActionContextType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6519
6761
|
CreateActionContextType(input: CreateActionContextTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6520
6762
|
UpdateActionContextType(input: UpdateActionContextTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6521
6763
|
DeleteActionContextType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6531,6 +6773,7 @@ export declare class ActionResultCode_ {
|
|
|
6531
6773
|
Action: string;
|
|
6532
6774
|
}
|
|
6533
6775
|
export declare class CreateActionResultCodeInput {
|
|
6776
|
+
ID?: string;
|
|
6534
6777
|
ActionID?: string;
|
|
6535
6778
|
ResultCode?: string;
|
|
6536
6779
|
IsSuccess?: boolean;
|
|
@@ -6573,6 +6816,7 @@ export declare class ActionContext_ {
|
|
|
6573
6816
|
ContextType?: string;
|
|
6574
6817
|
}
|
|
6575
6818
|
export declare class CreateActionContextInput {
|
|
6819
|
+
ID?: string;
|
|
6576
6820
|
ActionID?: string;
|
|
6577
6821
|
ContextTypeID: string | null;
|
|
6578
6822
|
Status?: string;
|
|
@@ -6617,6 +6861,7 @@ export declare class ActionExecutionLog_ {
|
|
|
6617
6861
|
User: string;
|
|
6618
6862
|
}
|
|
6619
6863
|
export declare class CreateActionExecutionLogInput {
|
|
6864
|
+
ID?: string;
|
|
6620
6865
|
ActionID?: string;
|
|
6621
6866
|
StartedAt?: Date;
|
|
6622
6867
|
EndedAt: Date | null;
|
|
@@ -6671,6 +6916,7 @@ export declare class ActionParam_ {
|
|
|
6671
6916
|
ScheduledActionParams_ActionParamIDArray: ScheduledActionParam_[];
|
|
6672
6917
|
}
|
|
6673
6918
|
export declare class CreateActionParamInput {
|
|
6919
|
+
ID?: string;
|
|
6674
6920
|
ActionID?: string;
|
|
6675
6921
|
Name?: string;
|
|
6676
6922
|
DefaultValue: string | null;
|
|
@@ -6706,8 +6952,8 @@ export declare class ActionParamResolver extends ResolverBase {
|
|
|
6706
6952
|
RunActionParamViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6707
6953
|
RunActionParamDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6708
6954
|
ActionParam(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionParam_ | null>;
|
|
6709
|
-
EntityActionParams_ActionParamIDArray(actionparam_: ActionParam_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6710
|
-
ScheduledActionParams_ActionParamIDArray(actionparam_: ActionParam_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6955
|
+
EntityActionParams_ActionParamIDArray(actionparam_: ActionParam_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6956
|
+
ScheduledActionParams_ActionParamIDArray(actionparam_: ActionParam_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6711
6957
|
CreateActionParam(input: CreateActionParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6712
6958
|
UpdateActionParam(input: UpdateActionParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6713
6959
|
DeleteActionParam(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6723,6 +6969,7 @@ export declare class ActionLibrary_ {
|
|
|
6723
6969
|
Library: string;
|
|
6724
6970
|
}
|
|
6725
6971
|
export declare class CreateActionLibraryInput {
|
|
6972
|
+
ID?: string;
|
|
6726
6973
|
ActionID?: string;
|
|
6727
6974
|
LibraryID?: string;
|
|
6728
6975
|
ItemsUsed: string | null;
|
|
@@ -6765,6 +7012,7 @@ export declare class Library_ {
|
|
|
6765
7012
|
LibraryItems_LibraryIDArray: LibraryItem_[];
|
|
6766
7013
|
}
|
|
6767
7014
|
export declare class CreateLibraryInput {
|
|
7015
|
+
ID?: string;
|
|
6768
7016
|
Name?: string;
|
|
6769
7017
|
Description: string | null;
|
|
6770
7018
|
Status?: string;
|
|
@@ -6794,8 +7042,8 @@ export declare class LibraryResolver extends ResolverBase {
|
|
|
6794
7042
|
RunLibraryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6795
7043
|
RunLibraryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6796
7044
|
Library(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Library_ | null>;
|
|
6797
|
-
ActionLibraries_LibraryIDArray(library_: Library_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6798
|
-
LibraryItems_LibraryIDArray(library_: Library_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7045
|
+
ActionLibraries_LibraryIDArray(library_: Library_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7046
|
+
LibraryItems_LibraryIDArray(library_: Library_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6799
7047
|
CreateLibrary(input: CreateLibraryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6800
7048
|
UpdateLibrary(input: UpdateLibraryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6801
7049
|
DeleteLibrary(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6814,6 +7062,7 @@ export declare class ListCategory_ {
|
|
|
6814
7062
|
Lists_CategoryIDArray: List_[];
|
|
6815
7063
|
}
|
|
6816
7064
|
export declare class CreateListCategoryInput {
|
|
7065
|
+
ID?: string;
|
|
6817
7066
|
Name?: string;
|
|
6818
7067
|
Description: string | null;
|
|
6819
7068
|
ParentID: string | null;
|
|
@@ -6841,8 +7090,8 @@ export declare class ListCategoryResolver extends ResolverBase {
|
|
|
6841
7090
|
RunListCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6842
7091
|
RunListCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6843
7092
|
ListCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ListCategory_ | null>;
|
|
6844
|
-
ListCategories_ParentIDArray(listcategory_: ListCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6845
|
-
Lists_CategoryIDArray(listcategory_: ListCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7093
|
+
ListCategories_ParentIDArray(listcategory_: ListCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7094
|
+
Lists_CategoryIDArray(listcategory_: ListCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6846
7095
|
CreateListCategory(input: CreateListCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6847
7096
|
UpdateListCategory(input: UpdateListCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6848
7097
|
DeleteListCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6863,6 +7112,7 @@ export declare class CommunicationProvider_ {
|
|
|
6863
7112
|
CommunicationProviderMessageTypes_CommunicationProviderIDArray: CommunicationProviderMessageType_[];
|
|
6864
7113
|
}
|
|
6865
7114
|
export declare class CreateCommunicationProviderInput {
|
|
7115
|
+
ID?: string;
|
|
6866
7116
|
Name?: string;
|
|
6867
7117
|
Description: string | null;
|
|
6868
7118
|
Status?: string;
|
|
@@ -6898,8 +7148,8 @@ export declare class CommunicationProviderResolver extends ResolverBase {
|
|
|
6898
7148
|
RunCommunicationProviderViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6899
7149
|
RunCommunicationProviderDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6900
7150
|
CommunicationProvider(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationProvider_ | null>;
|
|
6901
|
-
CommunicationLogs_CommunicationProviderIDArray(communicationprovider_: CommunicationProvider_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6902
|
-
CommunicationProviderMessageTypes_CommunicationProviderIDArray(communicationprovider_: CommunicationProvider_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7151
|
+
CommunicationLogs_CommunicationProviderIDArray(communicationprovider_: CommunicationProvider_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7152
|
+
CommunicationProviderMessageTypes_CommunicationProviderIDArray(communicationprovider_: CommunicationProvider_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6903
7153
|
CreateCommunicationProvider(input: CreateCommunicationProviderInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6904
7154
|
UpdateCommunicationProvider(input: UpdateCommunicationProviderInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6905
7155
|
DeleteCommunicationProvider(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6919,6 +7169,7 @@ export declare class CommunicationRun_ {
|
|
|
6919
7169
|
CommunicationLogs_CommunicationRunIDArray: CommunicationLog_[];
|
|
6920
7170
|
}
|
|
6921
7171
|
export declare class CreateCommunicationRunInput {
|
|
7172
|
+
ID?: string;
|
|
6922
7173
|
UserID?: string;
|
|
6923
7174
|
Direction?: string;
|
|
6924
7175
|
Status?: string;
|
|
@@ -6952,7 +7203,7 @@ export declare class CommunicationRunResolver extends ResolverBase {
|
|
|
6952
7203
|
RunCommunicationRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6953
7204
|
RunCommunicationRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6954
7205
|
CommunicationRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationRun_ | null>;
|
|
6955
|
-
CommunicationLogs_CommunicationRunIDArray(communicationrun_: CommunicationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7206
|
+
CommunicationLogs_CommunicationRunIDArray(communicationrun_: CommunicationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6956
7207
|
CreateCommunicationRun(input: CreateCommunicationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6957
7208
|
UpdateCommunicationRun(input: UpdateCommunicationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6958
7209
|
}
|
|
@@ -6970,6 +7221,7 @@ export declare class CommunicationProviderMessageType_ {
|
|
|
6970
7221
|
CommunicationLogs_CommunicationProviderMessageTypeIDArray: CommunicationLog_[];
|
|
6971
7222
|
}
|
|
6972
7223
|
export declare class CreateCommunicationProviderMessageTypeInput {
|
|
7224
|
+
ID?: string;
|
|
6973
7225
|
CommunicationProviderID?: string;
|
|
6974
7226
|
CommunicationBaseMessageTypeID?: string;
|
|
6975
7227
|
Name?: string;
|
|
@@ -6999,7 +7251,7 @@ export declare class CommunicationProviderMessageTypeResolver extends ResolverBa
|
|
|
6999
7251
|
RunCommunicationProviderMessageTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7000
7252
|
RunCommunicationProviderMessageTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7001
7253
|
CommunicationProviderMessageType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationProviderMessageType_ | null>;
|
|
7002
|
-
CommunicationLogs_CommunicationProviderMessageTypeIDArray(communicationprovidermessagetype_: CommunicationProviderMessageType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7254
|
+
CommunicationLogs_CommunicationProviderMessageTypeIDArray(communicationprovidermessagetype_: CommunicationProviderMessageType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7003
7255
|
CreateCommunicationProviderMessageType(input: CreateCommunicationProviderMessageTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7004
7256
|
UpdateCommunicationProviderMessageType(input: UpdateCommunicationProviderMessageTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7005
7257
|
DeleteCommunicationProviderMessageType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7020,6 +7272,7 @@ export declare class CommunicationLog_ {
|
|
|
7020
7272
|
CommunicationProviderMessageType: string;
|
|
7021
7273
|
}
|
|
7022
7274
|
export declare class CreateCommunicationLogInput {
|
|
7275
|
+
ID?: string;
|
|
7023
7276
|
CommunicationProviderID?: string;
|
|
7024
7277
|
CommunicationProviderMessageTypeID?: string;
|
|
7025
7278
|
CommunicationRunID: string | null;
|
|
@@ -7071,6 +7324,7 @@ export declare class CommunicationBaseMessageType_ {
|
|
|
7071
7324
|
EntityCommunicationMessageTypes_BaseMessageTypeIDArray: EntityCommunicationMessageType_[];
|
|
7072
7325
|
}
|
|
7073
7326
|
export declare class CreateCommunicationBaseMessageTypeInput {
|
|
7327
|
+
ID?: string;
|
|
7074
7328
|
Type?: string;
|
|
7075
7329
|
SupportsAttachments?: boolean;
|
|
7076
7330
|
SupportsSubjectLine?: boolean;
|
|
@@ -7100,8 +7354,8 @@ export declare class CommunicationBaseMessageTypeResolver extends ResolverBase {
|
|
|
7100
7354
|
RunCommunicationBaseMessageTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7101
7355
|
RunCommunicationBaseMessageTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7102
7356
|
CommunicationBaseMessageType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationBaseMessageType_ | null>;
|
|
7103
|
-
CommunicationProviderMessageTypes_CommunicationBaseMessageTypeIDArray(communicationbasemessagetype_: CommunicationBaseMessageType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7104
|
-
EntityCommunicationMessageTypes_BaseMessageTypeIDArray(communicationbasemessagetype_: CommunicationBaseMessageType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7357
|
+
CommunicationProviderMessageTypes_CommunicationBaseMessageTypeIDArray(communicationbasemessagetype_: CommunicationBaseMessageType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7358
|
+
EntityCommunicationMessageTypes_BaseMessageTypeIDArray(communicationbasemessagetype_: CommunicationBaseMessageType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7105
7359
|
CreateCommunicationBaseMessageType(input: CreateCommunicationBaseMessageTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7106
7360
|
UpdateCommunicationBaseMessageType(input: UpdateCommunicationBaseMessageTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7107
7361
|
DeleteCommunicationBaseMessageType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7126,6 +7380,7 @@ export declare class Template_ {
|
|
|
7126
7380
|
EntityDocuments_TemplateIDArray: EntityDocument_[];
|
|
7127
7381
|
}
|
|
7128
7382
|
export declare class CreateTemplateInput {
|
|
7383
|
+
ID?: string;
|
|
7129
7384
|
Name?: string;
|
|
7130
7385
|
Description: string | null;
|
|
7131
7386
|
CategoryID: string | null;
|
|
@@ -7161,10 +7416,10 @@ export declare class TemplateResolver extends ResolverBase {
|
|
|
7161
7416
|
RunTemplateViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7162
7417
|
RunTemplateDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7163
7418
|
Template(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Template_ | null>;
|
|
7164
|
-
TemplateContents_TemplateIDArray(template_: Template_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7165
|
-
TemplateParams_TemplateIDArray(template_: Template_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7166
|
-
AIPrompts_TemplateIDArray(template_: Template_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7167
|
-
EntityDocuments_TemplateIDArray(template_: Template_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7419
|
+
TemplateContents_TemplateIDArray(template_: Template_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7420
|
+
TemplateParams_TemplateIDArray(template_: Template_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7421
|
+
AIPrompts_TemplateIDArray(template_: Template_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7422
|
+
EntityDocuments_TemplateIDArray(template_: Template_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7168
7423
|
CreateTemplate(input: CreateTemplateInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7169
7424
|
UpdateTemplate(input: UpdateTemplateInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7170
7425
|
DeleteTemplate(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7183,6 +7438,7 @@ export declare class TemplateCategory_ {
|
|
|
7183
7438
|
TemplateCategories_ParentIDArray: TemplateCategory_[];
|
|
7184
7439
|
}
|
|
7185
7440
|
export declare class CreateTemplateCategoryInput {
|
|
7441
|
+
ID?: string;
|
|
7186
7442
|
Name?: string;
|
|
7187
7443
|
Description: string | null;
|
|
7188
7444
|
ParentID: string | null;
|
|
@@ -7210,8 +7466,8 @@ export declare class TemplateCategoryResolver extends ResolverBase {
|
|
|
7210
7466
|
RunTemplateCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7211
7467
|
RunTemplateCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7212
7468
|
TemplateCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<TemplateCategory_ | null>;
|
|
7213
|
-
Templates_CategoryIDArray(templatecategory_: TemplateCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7214
|
-
TemplateCategories_ParentIDArray(templatecategory_: TemplateCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7469
|
+
Templates_CategoryIDArray(templatecategory_: TemplateCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7470
|
+
TemplateCategories_ParentIDArray(templatecategory_: TemplateCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7215
7471
|
CreateTemplateCategory(input: CreateTemplateCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7216
7472
|
UpdateTemplateCategory(input: UpdateTemplateCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7217
7473
|
DeleteTemplateCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7229,6 +7485,7 @@ export declare class TemplateContent_ {
|
|
|
7229
7485
|
Type: string;
|
|
7230
7486
|
}
|
|
7231
7487
|
export declare class CreateTemplateContentInput {
|
|
7488
|
+
ID?: string;
|
|
7232
7489
|
TemplateID?: string;
|
|
7233
7490
|
TypeID?: string;
|
|
7234
7491
|
TemplateText: string | null;
|
|
@@ -7282,6 +7539,7 @@ export declare class TemplateParam_ {
|
|
|
7282
7539
|
Entity?: string;
|
|
7283
7540
|
}
|
|
7284
7541
|
export declare class CreateTemplateParamInput {
|
|
7542
|
+
ID?: string;
|
|
7285
7543
|
TemplateID?: string;
|
|
7286
7544
|
Name?: string;
|
|
7287
7545
|
Description: string | null;
|
|
@@ -7339,6 +7597,7 @@ export declare class TemplateContentType_ {
|
|
|
7339
7597
|
TemplateContents_TypeIDArray: TemplateContent_[];
|
|
7340
7598
|
}
|
|
7341
7599
|
export declare class CreateTemplateContentTypeInput {
|
|
7600
|
+
ID?: string;
|
|
7342
7601
|
Name?: string;
|
|
7343
7602
|
Description: string | null;
|
|
7344
7603
|
CodeType?: string;
|
|
@@ -7364,7 +7623,7 @@ export declare class TemplateContentTypeResolver extends ResolverBase {
|
|
|
7364
7623
|
RunTemplateContentTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7365
7624
|
RunTemplateContentTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7366
7625
|
TemplateContentType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<TemplateContentType_ | null>;
|
|
7367
|
-
TemplateContents_TypeIDArray(templatecontenttype_: TemplateContentType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7626
|
+
TemplateContents_TypeIDArray(templatecontenttype_: TemplateContentType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7368
7627
|
CreateTemplateContentType(input: CreateTemplateContentTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7369
7628
|
UpdateTemplateContentType(input: UpdateTemplateContentTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7370
7629
|
DeleteTemplateContentType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7380,6 +7639,7 @@ export declare class Recommendation_ {
|
|
|
7380
7639
|
RecommendationItems_RecommendationIDArray: RecommendationItem_[];
|
|
7381
7640
|
}
|
|
7382
7641
|
export declare class CreateRecommendationInput {
|
|
7642
|
+
ID?: string;
|
|
7383
7643
|
RecommendationRunID?: string;
|
|
7384
7644
|
SourceEntityID?: string;
|
|
7385
7645
|
SourceEntityRecordID?: string;
|
|
@@ -7405,7 +7665,7 @@ export declare class RecommendationResolver extends ResolverBase {
|
|
|
7405
7665
|
RunRecommendationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7406
7666
|
RunRecommendationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7407
7667
|
Recommendation(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Recommendation_ | null>;
|
|
7408
|
-
RecommendationItems_RecommendationIDArray(recommendation_: Recommendation_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7668
|
+
RecommendationItems_RecommendationIDArray(recommendation_: Recommendation_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7409
7669
|
CreateRecommendation(input: CreateRecommendationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7410
7670
|
UpdateRecommendation(input: UpdateRecommendationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7411
7671
|
}
|
|
@@ -7418,6 +7678,7 @@ export declare class RecommendationProvider_ {
|
|
|
7418
7678
|
RecommendationRuns_RecommendationProviderIDArray: RecommendationRun_[];
|
|
7419
7679
|
}
|
|
7420
7680
|
export declare class CreateRecommendationProviderInput {
|
|
7681
|
+
ID?: string;
|
|
7421
7682
|
Name?: string;
|
|
7422
7683
|
Description: string | null;
|
|
7423
7684
|
}
|
|
@@ -7441,7 +7702,7 @@ export declare class RecommendationProviderResolver extends ResolverBase {
|
|
|
7441
7702
|
RunRecommendationProviderViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7442
7703
|
RunRecommendationProviderDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7443
7704
|
RecommendationProvider(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecommendationProvider_ | null>;
|
|
7444
|
-
RecommendationRuns_RecommendationProviderIDArray(recommendationprovider_: RecommendationProvider_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7705
|
+
RecommendationRuns_RecommendationProviderIDArray(recommendationprovider_: RecommendationProvider_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7445
7706
|
CreateRecommendationProvider(input: CreateRecommendationProviderInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7446
7707
|
UpdateRecommendationProvider(input: UpdateRecommendationProviderInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7447
7708
|
DeleteRecommendationProvider(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7461,6 +7722,7 @@ export declare class RecommendationRun_ {
|
|
|
7461
7722
|
Recommendations_RecommendationRunIDArray: Recommendation_[];
|
|
7462
7723
|
}
|
|
7463
7724
|
export declare class CreateRecommendationRunInput {
|
|
7725
|
+
ID?: string;
|
|
7464
7726
|
RecommendationProviderID?: string;
|
|
7465
7727
|
StartDate?: Date;
|
|
7466
7728
|
EndDate: Date | null;
|
|
@@ -7492,7 +7754,7 @@ export declare class RecommendationRunResolver extends ResolverBase {
|
|
|
7492
7754
|
RunRecommendationRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7493
7755
|
RunRecommendationRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7494
7756
|
RecommendationRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecommendationRun_ | null>;
|
|
7495
|
-
Recommendations_RecommendationRunIDArray(recommendationrun_: RecommendationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7757
|
+
Recommendations_RecommendationRunIDArray(recommendationrun_: RecommendationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7496
7758
|
CreateRecommendationRun(input: CreateRecommendationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7497
7759
|
UpdateRecommendationRun(input: UpdateRecommendationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7498
7760
|
}
|
|
@@ -7507,6 +7769,7 @@ export declare class RecommendationItem_ {
|
|
|
7507
7769
|
DestinationEntity: string;
|
|
7508
7770
|
}
|
|
7509
7771
|
export declare class CreateRecommendationItemInput {
|
|
7772
|
+
ID?: string;
|
|
7510
7773
|
RecommendationID?: string;
|
|
7511
7774
|
DestinationEntityID?: string;
|
|
7512
7775
|
DestinationEntityRecordID?: string;
|
|
@@ -7549,6 +7812,7 @@ export declare class EntityCommunicationMessageType_ {
|
|
|
7549
7812
|
EntityCommunicationFields_EntityCommunicationMessageTypeIDArray: EntityCommunicationField_[];
|
|
7550
7813
|
}
|
|
7551
7814
|
export declare class CreateEntityCommunicationMessageTypeInput {
|
|
7815
|
+
ID?: string;
|
|
7552
7816
|
EntityID?: string;
|
|
7553
7817
|
BaseMessageTypeID?: string;
|
|
7554
7818
|
IsActive?: boolean;
|
|
@@ -7574,7 +7838,7 @@ export declare class EntityCommunicationMessageTypeResolver extends ResolverBase
|
|
|
7574
7838
|
RunEntityCommunicationMessageTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7575
7839
|
RunEntityCommunicationMessageTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7576
7840
|
EntityCommunicationMessageType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityCommunicationMessageType_ | null>;
|
|
7577
|
-
EntityCommunicationFields_EntityCommunicationMessageTypeIDArray(entitycommunicationmessagetype_: EntityCommunicationMessageType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7841
|
+
EntityCommunicationFields_EntityCommunicationMessageTypeIDArray(entitycommunicationmessagetype_: EntityCommunicationMessageType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7578
7842
|
CreateEntityCommunicationMessageType(input: CreateEntityCommunicationMessageTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7579
7843
|
UpdateEntityCommunicationMessageType(input: UpdateEntityCommunicationMessageTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7580
7844
|
DeleteEntityCommunicationMessageType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7588,6 +7852,7 @@ export declare class EntityCommunicationField_ {
|
|
|
7588
7852
|
_mj__UpdatedAt: Date;
|
|
7589
7853
|
}
|
|
7590
7854
|
export declare class CreateEntityCommunicationFieldInput {
|
|
7855
|
+
ID?: string;
|
|
7591
7856
|
EntityCommunicationMessageTypeID?: string;
|
|
7592
7857
|
FieldName?: string;
|
|
7593
7858
|
Priority?: number;
|
|
@@ -7629,6 +7894,7 @@ export declare class RecordChangeReplayRun_ {
|
|
|
7629
7894
|
RecordChanges_ReplayRunIDArray: RecordChange_[];
|
|
7630
7895
|
}
|
|
7631
7896
|
export declare class CreateRecordChangeReplayRunInput {
|
|
7897
|
+
ID?: string;
|
|
7632
7898
|
StartedAt?: Date;
|
|
7633
7899
|
EndedAt: Date | null;
|
|
7634
7900
|
Status?: string;
|
|
@@ -7656,7 +7922,7 @@ export declare class RecordChangeReplayRunResolver extends ResolverBase {
|
|
|
7656
7922
|
RunRecordChangeReplayRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7657
7923
|
RunRecordChangeReplayRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7658
7924
|
RecordChangeReplayRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordChangeReplayRun_ | null>;
|
|
7659
|
-
RecordChanges_ReplayRunIDArray(recordchangereplayrun_: RecordChangeReplayRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7925
|
+
RecordChanges_ReplayRunIDArray(recordchangereplayrun_: RecordChangeReplayRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7660
7926
|
CreateRecordChangeReplayRun(input: CreateRecordChangeReplayRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7661
7927
|
UpdateRecordChangeReplayRun(input: UpdateRecordChangeReplayRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7662
7928
|
}
|
|
@@ -7670,6 +7936,7 @@ export declare class LibraryItem_ {
|
|
|
7670
7936
|
Library: string;
|
|
7671
7937
|
}
|
|
7672
7938
|
export declare class CreateLibraryItemInput {
|
|
7939
|
+
ID?: string;
|
|
7673
7940
|
Name?: string;
|
|
7674
7941
|
LibraryID?: string;
|
|
7675
7942
|
Type?: string;
|
|
@@ -7709,6 +7976,7 @@ export declare class EntityRelationshipDisplayComponent_ {
|
|
|
7709
7976
|
EntityRelationships_DisplayComponentIDArray: EntityRelationship_[];
|
|
7710
7977
|
}
|
|
7711
7978
|
export declare class CreateEntityRelationshipDisplayComponentInput {
|
|
7979
|
+
ID?: string;
|
|
7712
7980
|
Name?: string;
|
|
7713
7981
|
Description: string | null;
|
|
7714
7982
|
RelationshipType?: string;
|
|
@@ -7734,7 +8002,7 @@ export declare class EntityRelationshipDisplayComponentResolver extends Resolver
|
|
|
7734
8002
|
RunEntityRelationshipDisplayComponentViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7735
8003
|
RunEntityRelationshipDisplayComponentDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7736
8004
|
EntityRelationshipDisplayComponent(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityRelationshipDisplayComponent_ | null>;
|
|
7737
|
-
EntityRelationships_DisplayComponentIDArray(entityrelationshipdisplaycomponent_: EntityRelationshipDisplayComponent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8005
|
+
EntityRelationships_DisplayComponentIDArray(entityrelationshipdisplaycomponent_: EntityRelationshipDisplayComponent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7738
8006
|
CreateEntityRelationshipDisplayComponent(input: CreateEntityRelationshipDisplayComponentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7739
8007
|
UpdateEntityRelationshipDisplayComponent(input: UpdateEntityRelationshipDisplayComponentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7740
8008
|
}
|
|
@@ -7750,6 +8018,7 @@ export declare class EntityActionParam_ {
|
|
|
7750
8018
|
ActionParam: string;
|
|
7751
8019
|
}
|
|
7752
8020
|
export declare class CreateEntityActionParamInput {
|
|
8021
|
+
ID?: string;
|
|
7753
8022
|
EntityActionID?: string;
|
|
7754
8023
|
ActionParamID?: string;
|
|
7755
8024
|
ValueType?: string;
|
|
@@ -7801,6 +8070,7 @@ export declare class ResourcePermission_ {
|
|
|
7801
8070
|
User?: string;
|
|
7802
8071
|
}
|
|
7803
8072
|
export declare class CreateResourcePermissionInput {
|
|
8073
|
+
ID?: string;
|
|
7804
8074
|
ResourceTypeID?: string;
|
|
7805
8075
|
ResourceRecordID?: string;
|
|
7806
8076
|
Type?: string;
|
|
@@ -7854,6 +8124,7 @@ export declare class ResourceLink_ {
|
|
|
7854
8124
|
ResourceType: string;
|
|
7855
8125
|
}
|
|
7856
8126
|
export declare class CreateResourceLinkInput {
|
|
8127
|
+
ID?: string;
|
|
7857
8128
|
UserID?: string;
|
|
7858
8129
|
ResourceTypeID?: string;
|
|
7859
8130
|
ResourceRecordID?: string;
|
|
@@ -7898,6 +8169,7 @@ export declare class ConversationArtifactVersion_ {
|
|
|
7898
8169
|
ConversationDetails_ArtifactVersionIDArray: ConversationDetail_[];
|
|
7899
8170
|
}
|
|
7900
8171
|
export declare class CreateConversationArtifactVersionInput {
|
|
8172
|
+
ID?: string;
|
|
7901
8173
|
ConversationArtifactID?: string;
|
|
7902
8174
|
Version?: number;
|
|
7903
8175
|
Configuration?: string;
|
|
@@ -7927,7 +8199,7 @@ export declare class ConversationArtifactVersionResolver extends ResolverBase {
|
|
|
7927
8199
|
RunConversationArtifactVersionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7928
8200
|
RunConversationArtifactVersionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7929
8201
|
ConversationArtifactVersion(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ConversationArtifactVersion_ | null>;
|
|
7930
|
-
ConversationDetails_ArtifactVersionIDArray(conversationartifactversion_: ConversationArtifactVersion_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8202
|
+
ConversationDetails_ArtifactVersionIDArray(conversationartifactversion_: ConversationArtifactVersion_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7931
8203
|
CreateConversationArtifactVersion(input: CreateConversationArtifactVersionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7932
8204
|
UpdateConversationArtifactVersion(input: UpdateConversationArtifactVersionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7933
8205
|
DeleteConversationArtifactVersion(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7950,6 +8222,7 @@ export declare class AIAgentRequest_ {
|
|
|
7950
8222
|
ResponseByUser?: string;
|
|
7951
8223
|
}
|
|
7952
8224
|
export declare class CreateAIAgentRequestInput {
|
|
8225
|
+
ID?: string;
|
|
7953
8226
|
AgentID?: string;
|
|
7954
8227
|
RequestedAt?: Date;
|
|
7955
8228
|
RequestForUserID: string | null;
|
|
@@ -8013,6 +8286,7 @@ export declare class AIModelVendor_ {
|
|
|
8013
8286
|
Type?: string;
|
|
8014
8287
|
}
|
|
8015
8288
|
export declare class CreateAIModelVendorInput {
|
|
8289
|
+
ID?: string;
|
|
8016
8290
|
ModelID?: string;
|
|
8017
8291
|
VendorID?: string;
|
|
8018
8292
|
Priority?: number;
|
|
@@ -8072,6 +8346,7 @@ export declare class AIVendorTypeDefinition_ {
|
|
|
8072
8346
|
MJ_AIVendorTypes_TypeIDArray: AIVendorType_[];
|
|
8073
8347
|
}
|
|
8074
8348
|
export declare class CreateAIVendorTypeDefinitionInput {
|
|
8349
|
+
ID?: string;
|
|
8075
8350
|
Name?: string;
|
|
8076
8351
|
Description: string | null;
|
|
8077
8352
|
}
|
|
@@ -8095,8 +8370,8 @@ export declare class AIVendorTypeDefinitionResolver extends ResolverBase {
|
|
|
8095
8370
|
RunAIVendorTypeDefinitionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8096
8371
|
RunAIVendorTypeDefinitionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8097
8372
|
AIVendorTypeDefinition(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIVendorTypeDefinition_ | null>;
|
|
8098
|
-
MJ_AIModelVendors_TypeIDArray(aivendortypedefinition_: AIVendorTypeDefinition_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8099
|
-
MJ_AIVendorTypes_TypeIDArray(aivendortypedefinition_: AIVendorTypeDefinition_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8373
|
+
MJ_AIModelVendors_TypeIDArray(aivendortypedefinition_: AIVendorTypeDefinition_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8374
|
+
MJ_AIVendorTypes_TypeIDArray(aivendortypedefinition_: AIVendorTypeDefinition_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8100
8375
|
CreateAIVendorTypeDefinition(input: CreateAIVendorTypeDefinitionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8101
8376
|
UpdateAIVendorTypeDefinition(input: UpdateAIVendorTypeDefinitionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8102
8377
|
DeleteAIVendorTypeDefinition(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8112,6 +8387,7 @@ export declare class ReportUserState_ {
|
|
|
8112
8387
|
User: string;
|
|
8113
8388
|
}
|
|
8114
8389
|
export declare class CreateReportUserStateInput {
|
|
8390
|
+
ID?: string;
|
|
8115
8391
|
ReportID?: string;
|
|
8116
8392
|
UserID?: string;
|
|
8117
8393
|
ReportState: string | null;
|
|
@@ -8151,6 +8427,7 @@ export declare class QueryEntity_ {
|
|
|
8151
8427
|
Entity: string;
|
|
8152
8428
|
}
|
|
8153
8429
|
export declare class CreateQueryEntityInput {
|
|
8430
|
+
ID?: string;
|
|
8154
8431
|
QueryID?: string;
|
|
8155
8432
|
EntityID?: string;
|
|
8156
8433
|
}
|
|
@@ -8189,6 +8466,7 @@ export declare class DashboardUserState_ {
|
|
|
8189
8466
|
User: string;
|
|
8190
8467
|
}
|
|
8191
8468
|
export declare class CreateDashboardUserStateInput {
|
|
8469
|
+
ID?: string;
|
|
8192
8470
|
DashboardID?: string;
|
|
8193
8471
|
UserID?: string;
|
|
8194
8472
|
UserState: string | null;
|
|
@@ -8229,6 +8507,7 @@ export declare class ArtifactType_ {
|
|
|
8229
8507
|
MJ_ConversationArtifacts_ArtifactTypeIDArray: ConversationArtifact_[];
|
|
8230
8508
|
}
|
|
8231
8509
|
export declare class CreateArtifactTypeInput {
|
|
8510
|
+
ID?: string;
|
|
8232
8511
|
Name?: string;
|
|
8233
8512
|
Description: string | null;
|
|
8234
8513
|
ContentType?: string;
|
|
@@ -8256,7 +8535,7 @@ export declare class ArtifactTypeResolver extends ResolverBase {
|
|
|
8256
8535
|
RunArtifactTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8257
8536
|
RunArtifactTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8258
8537
|
ArtifactType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ArtifactType_ | null>;
|
|
8259
|
-
MJ_ConversationArtifacts_ArtifactTypeIDArray(artifacttype_: ArtifactType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8538
|
+
MJ_ConversationArtifacts_ArtifactTypeIDArray(artifacttype_: ArtifactType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8260
8539
|
CreateArtifactType(input: CreateArtifactTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8261
8540
|
UpdateArtifactType(input: UpdateArtifactTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8262
8541
|
DeleteArtifactType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8273,6 +8552,7 @@ export declare class AIVendorType_ {
|
|
|
8273
8552
|
Type: string;
|
|
8274
8553
|
}
|
|
8275
8554
|
export declare class CreateAIVendorTypeInput {
|
|
8555
|
+
ID?: string;
|
|
8276
8556
|
VendorID?: string;
|
|
8277
8557
|
TypeID?: string;
|
|
8278
8558
|
Rank?: number;
|
|
@@ -8321,6 +8601,7 @@ export declare class ConversationArtifact_ {
|
|
|
8321
8601
|
ConversationDetails_ArtifactIDArray: ConversationDetail_[];
|
|
8322
8602
|
}
|
|
8323
8603
|
export declare class CreateConversationArtifactInput {
|
|
8604
|
+
ID?: string;
|
|
8324
8605
|
Name?: string;
|
|
8325
8606
|
Description: string | null;
|
|
8326
8607
|
ConversationID?: string;
|
|
@@ -8352,9 +8633,9 @@ export declare class ConversationArtifactResolver extends ResolverBase {
|
|
|
8352
8633
|
RunConversationArtifactViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8353
8634
|
RunConversationArtifactDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8354
8635
|
ConversationArtifact(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ConversationArtifact_ | null>;
|
|
8355
|
-
MJ_ConversationArtifactPermissions_ConversationArtifactIDArray(conversationartifact_: ConversationArtifact_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8356
|
-
MJ_ConversationArtifactVersions_ConversationArtifactIDArray(conversationartifact_: ConversationArtifact_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8357
|
-
ConversationDetails_ArtifactIDArray(conversationartifact_: ConversationArtifact_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8636
|
+
MJ_ConversationArtifactPermissions_ConversationArtifactIDArray(conversationartifact_: ConversationArtifact_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8637
|
+
MJ_ConversationArtifactVersions_ConversationArtifactIDArray(conversationartifact_: ConversationArtifact_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8638
|
+
ConversationDetails_ArtifactIDArray(conversationartifact_: ConversationArtifact_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8358
8639
|
CreateConversationArtifact(input: CreateConversationArtifactInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8359
8640
|
UpdateConversationArtifact(input: UpdateConversationArtifactInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8360
8641
|
DeleteConversationArtifact(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8376,6 +8657,7 @@ export declare class AIAgentPrompt_ {
|
|
|
8376
8657
|
Configuration?: string;
|
|
8377
8658
|
}
|
|
8378
8659
|
export declare class CreateAIAgentPromptInput {
|
|
8660
|
+
ID?: string;
|
|
8379
8661
|
AgentID?: string;
|
|
8380
8662
|
PromptID?: string;
|
|
8381
8663
|
Purpose: string | null;
|
|
@@ -8429,6 +8711,7 @@ export declare class DashboardUserPreference_ {
|
|
|
8429
8711
|
Application?: string;
|
|
8430
8712
|
}
|
|
8431
8713
|
export declare class CreateDashboardUserPreferenceInput {
|
|
8714
|
+
ID?: string;
|
|
8432
8715
|
UserID: string | null;
|
|
8433
8716
|
DashboardID?: string;
|
|
8434
8717
|
Scope?: string;
|
|
@@ -8474,6 +8757,7 @@ export declare class ContentProcessRun_ {
|
|
|
8474
8757
|
Source?: string;
|
|
8475
8758
|
}
|
|
8476
8759
|
export declare class CreateContentProcessRunInput {
|
|
8760
|
+
ID?: string;
|
|
8477
8761
|
SourceID?: string;
|
|
8478
8762
|
StartTime: Date | null;
|
|
8479
8763
|
EndTime: Date | null;
|
|
@@ -8524,6 +8808,7 @@ export declare class ContentSource_ {
|
|
|
8524
8808
|
ContentItems_ContentSourceIDArray: ContentItem_[];
|
|
8525
8809
|
}
|
|
8526
8810
|
export declare class CreateContentSourceInput {
|
|
8811
|
+
ID?: string;
|
|
8527
8812
|
Name: string | null;
|
|
8528
8813
|
ContentTypeID?: string;
|
|
8529
8814
|
ContentSourceTypeID?: string;
|
|
@@ -8553,9 +8838,9 @@ export declare class ContentSourceResolver extends ResolverBase {
|
|
|
8553
8838
|
RunContentSourceViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8554
8839
|
RunContentSourceDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8555
8840
|
ContentSource(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentSource_ | null>;
|
|
8556
|
-
ContentProcessRuns_SourceIDArray(contentsource_: ContentSource_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8557
|
-
ContentSourceParams_ContentSourceIDArray(contentsource_: ContentSource_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8558
|
-
ContentItems_ContentSourceIDArray(contentsource_: ContentSource_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8841
|
+
ContentProcessRuns_SourceIDArray(contentsource_: ContentSource_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8842
|
+
ContentSourceParams_ContentSourceIDArray(contentsource_: ContentSource_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8843
|
+
ContentItems_ContentSourceIDArray(contentsource_: ContentSource_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8559
8844
|
CreateContentSource(input: CreateContentSourceInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8560
8845
|
UpdateContentSource(input: UpdateContentSourceInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8561
8846
|
DeleteContentSource(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8570,6 +8855,7 @@ export declare class ContentSourceParam_ {
|
|
|
8570
8855
|
ContentSource?: string;
|
|
8571
8856
|
}
|
|
8572
8857
|
export declare class CreateContentSourceParamInput {
|
|
8858
|
+
ID?: string;
|
|
8573
8859
|
ContentSourceID?: string;
|
|
8574
8860
|
ContentSourceTypeParamID?: string;
|
|
8575
8861
|
Value?: string;
|
|
@@ -8609,6 +8895,7 @@ export declare class ContentSourceType_ {
|
|
|
8609
8895
|
ContentItems_ContentSourceTypeIDArray: ContentItem_[];
|
|
8610
8896
|
}
|
|
8611
8897
|
export declare class CreateContentSourceTypeInput {
|
|
8898
|
+
ID?: string;
|
|
8612
8899
|
Name?: string;
|
|
8613
8900
|
Description: string | null;
|
|
8614
8901
|
}
|
|
@@ -8632,8 +8919,8 @@ export declare class ContentSourceTypeResolver extends ResolverBase {
|
|
|
8632
8919
|
RunContentSourceTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8633
8920
|
RunContentSourceTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8634
8921
|
ContentSourceType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentSourceType_ | null>;
|
|
8635
|
-
ContentSources_ContentSourceTypeIDArray(contentsourcetype_: ContentSourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8636
|
-
ContentItems_ContentSourceTypeIDArray(contentsourcetype_: ContentSourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8922
|
+
ContentSources_ContentSourceTypeIDArray(contentsourcetype_: ContentSourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8923
|
+
ContentItems_ContentSourceTypeIDArray(contentsourcetype_: ContentSourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8637
8924
|
CreateContentSourceType(input: CreateContentSourceTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8638
8925
|
UpdateContentSourceType(input: UpdateContentSourceTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8639
8926
|
DeleteContentSourceType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8649,6 +8936,7 @@ export declare class ContentSourceTypeParam_ {
|
|
|
8649
8936
|
_mj__UpdatedAt: Date;
|
|
8650
8937
|
}
|
|
8651
8938
|
export declare class CreateContentSourceTypeParamInput {
|
|
8939
|
+
ID?: string;
|
|
8652
8940
|
Name?: string;
|
|
8653
8941
|
Description: string | null;
|
|
8654
8942
|
Type: string | null;
|
|
@@ -8696,6 +8984,7 @@ export declare class ContentType_ {
|
|
|
8696
8984
|
ContentItems_ContentTypeIDArray: ContentItem_[];
|
|
8697
8985
|
}
|
|
8698
8986
|
export declare class CreateContentTypeInput {
|
|
8987
|
+
ID?: string;
|
|
8699
8988
|
Name?: string;
|
|
8700
8989
|
Description: string | null;
|
|
8701
8990
|
AIModelID?: string;
|
|
@@ -8725,8 +9014,8 @@ export declare class ContentTypeResolver extends ResolverBase {
|
|
|
8725
9014
|
RunContentTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8726
9015
|
RunContentTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8727
9016
|
ContentType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentType_ | null>;
|
|
8728
|
-
ContentSources_ContentTypeIDArray(contenttype_: ContentType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8729
|
-
ContentItems_ContentTypeIDArray(contenttype_: ContentType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
9017
|
+
ContentSources_ContentTypeIDArray(contenttype_: ContentType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9018
|
+
ContentItems_ContentTypeIDArray(contenttype_: ContentType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8730
9019
|
CreateContentType(input: CreateContentTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8731
9020
|
UpdateContentType(input: UpdateContentTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8732
9021
|
DeleteContentType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8741,6 +9030,7 @@ export declare class ContentTypeAttribute_ {
|
|
|
8741
9030
|
_mj__UpdatedAt: Date;
|
|
8742
9031
|
}
|
|
8743
9032
|
export declare class CreateContentTypeAttributeInput {
|
|
9033
|
+
ID?: string;
|
|
8744
9034
|
ContentTypeID?: string;
|
|
8745
9035
|
Name?: string;
|
|
8746
9036
|
Prompt?: string;
|
|
@@ -8782,6 +9072,7 @@ export declare class ContentFileType_ {
|
|
|
8782
9072
|
ContentItems_ContentFileTypeIDArray: ContentItem_[];
|
|
8783
9073
|
}
|
|
8784
9074
|
export declare class CreateContentFileTypeInput {
|
|
9075
|
+
ID?: string;
|
|
8785
9076
|
Name?: string;
|
|
8786
9077
|
FileExtension: string | null;
|
|
8787
9078
|
}
|
|
@@ -8805,8 +9096,8 @@ export declare class ContentFileTypeResolver extends ResolverBase {
|
|
|
8805
9096
|
RunContentFileTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8806
9097
|
RunContentFileTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8807
9098
|
ContentFileType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentFileType_ | null>;
|
|
8808
|
-
ContentSources_ContentFileTypeIDArray(contentfiletype_: ContentFileType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8809
|
-
ContentItems_ContentFileTypeIDArray(contentfiletype_: ContentFileType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
9099
|
+
ContentSources_ContentFileTypeIDArray(contentfiletype_: ContentFileType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9100
|
+
ContentItems_ContentFileTypeIDArray(contentfiletype_: ContentFileType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8810
9101
|
CreateContentFileType(input: CreateContentFileTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8811
9102
|
UpdateContentFileType(input: UpdateContentFileTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8812
9103
|
DeleteContentFileType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8832,6 +9123,7 @@ export declare class ContentItem_ {
|
|
|
8832
9123
|
ContentItemTags_ItemIDArray: ContentItemTag_[];
|
|
8833
9124
|
}
|
|
8834
9125
|
export declare class CreateContentItemInput {
|
|
9126
|
+
ID?: string;
|
|
8835
9127
|
ContentSourceID?: string;
|
|
8836
9128
|
Name: string | null;
|
|
8837
9129
|
Description: string | null;
|
|
@@ -8869,8 +9161,8 @@ export declare class ContentItemResolver extends ResolverBase {
|
|
|
8869
9161
|
RunContentItemViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8870
9162
|
RunContentItemDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8871
9163
|
ContentItem(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentItem_ | null>;
|
|
8872
|
-
ContentItemAttributes_ContentItemIDArray(contentitem_: ContentItem_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
8873
|
-
ContentItemTags_ItemIDArray(contentitem_: ContentItem_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
9164
|
+
ContentItemAttributes_ContentItemIDArray(contentitem_: ContentItem_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9165
|
+
ContentItemTags_ItemIDArray(contentitem_: ContentItem_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8874
9166
|
CreateContentItem(input: CreateContentItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8875
9167
|
UpdateContentItem(input: UpdateContentItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8876
9168
|
DeleteContentItem(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8885,6 +9177,7 @@ export declare class ContentItemAttribute_ {
|
|
|
8885
9177
|
ContentItem?: string;
|
|
8886
9178
|
}
|
|
8887
9179
|
export declare class CreateContentItemAttributeInput {
|
|
9180
|
+
ID?: string;
|
|
8888
9181
|
ContentItemID?: string;
|
|
8889
9182
|
Name?: string;
|
|
8890
9183
|
Value?: string;
|
|
@@ -8923,6 +9216,7 @@ export declare class ContentItemTag_ {
|
|
|
8923
9216
|
Item?: string;
|
|
8924
9217
|
}
|
|
8925
9218
|
export declare class CreateContentItemTagInput {
|
|
9219
|
+
ID?: string;
|
|
8926
9220
|
ItemID?: string;
|
|
8927
9221
|
Tag?: string;
|
|
8928
9222
|
}
|
|
@@ -8970,6 +9264,7 @@ export declare class GeneratedCode_ {
|
|
|
8970
9264
|
LinkedEntity?: string;
|
|
8971
9265
|
}
|
|
8972
9266
|
export declare class CreateGeneratedCodeInput {
|
|
9267
|
+
ID?: string;
|
|
8973
9268
|
GeneratedAt?: Date;
|
|
8974
9269
|
CategoryID?: string;
|
|
8975
9270
|
GeneratedByModelID?: string;
|
|
@@ -9039,6 +9334,11 @@ export declare class AIPromptRun_ {
|
|
|
9039
9334
|
RunType: string;
|
|
9040
9335
|
ExecutionOrder?: number;
|
|
9041
9336
|
AgentRunID?: string;
|
|
9337
|
+
Cost?: number;
|
|
9338
|
+
CostCurrency?: string;
|
|
9339
|
+
TokensUsedRollup?: number;
|
|
9340
|
+
TokensPromptRollup?: number;
|
|
9341
|
+
TokensCompletionRollup?: number;
|
|
9042
9342
|
Prompt: string;
|
|
9043
9343
|
Model: string;
|
|
9044
9344
|
Vendor: string;
|
|
@@ -9048,6 +9348,7 @@ export declare class AIPromptRun_ {
|
|
|
9048
9348
|
AIResultCache_PromptRunIDArray: AIResultCache_[];
|
|
9049
9349
|
}
|
|
9050
9350
|
export declare class CreateAIPromptRunInput {
|
|
9351
|
+
ID?: string;
|
|
9051
9352
|
PromptID?: string;
|
|
9052
9353
|
ModelID?: string;
|
|
9053
9354
|
VendorID?: string;
|
|
@@ -9068,6 +9369,11 @@ export declare class CreateAIPromptRunInput {
|
|
|
9068
9369
|
RunType?: string;
|
|
9069
9370
|
ExecutionOrder: number | null;
|
|
9070
9371
|
AgentRunID: string | null;
|
|
9372
|
+
Cost: number | null;
|
|
9373
|
+
CostCurrency: string | null;
|
|
9374
|
+
TokensUsedRollup: number | null;
|
|
9375
|
+
TokensPromptRollup: number | null;
|
|
9376
|
+
TokensCompletionRollup: number | null;
|
|
9071
9377
|
}
|
|
9072
9378
|
export declare class UpdateAIPromptRunInput {
|
|
9073
9379
|
ID: string;
|
|
@@ -9091,6 +9397,11 @@ export declare class UpdateAIPromptRunInput {
|
|
|
9091
9397
|
RunType?: string;
|
|
9092
9398
|
ExecutionOrder?: number | null;
|
|
9093
9399
|
AgentRunID?: string | null;
|
|
9400
|
+
Cost?: number | null;
|
|
9401
|
+
CostCurrency?: string | null;
|
|
9402
|
+
TokensUsedRollup?: number | null;
|
|
9403
|
+
TokensPromptRollup?: number | null;
|
|
9404
|
+
TokensCompletionRollup?: number | null;
|
|
9094
9405
|
OldValues___?: KeyValuePairInput[];
|
|
9095
9406
|
}
|
|
9096
9407
|
export declare class RunAIPromptRunViewResult {
|
|
@@ -9107,8 +9418,8 @@ export declare class AIPromptRunResolver extends ResolverBase {
|
|
|
9107
9418
|
RunAIPromptRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9108
9419
|
RunAIPromptRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9109
9420
|
AIPromptRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIPromptRun_ | null>;
|
|
9110
|
-
MJ_AIPromptRuns_ParentIDArray(aipromptrun_: AIPromptRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
9111
|
-
AIResultCache_PromptRunIDArray(aipromptrun_: AIPromptRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
9421
|
+
MJ_AIPromptRuns_ParentIDArray(aipromptrun_: AIPromptRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9422
|
+
AIResultCache_PromptRunIDArray(aipromptrun_: AIPromptRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9112
9423
|
CreateAIPromptRun(input: CreateAIPromptRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9113
9424
|
UpdateAIPromptRun(input: UpdateAIPromptRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9114
9425
|
DeleteAIPromptRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -9131,6 +9442,7 @@ export declare class AIAgentRunStep_ {
|
|
|
9131
9442
|
_mj__UpdatedAt: Date;
|
|
9132
9443
|
}
|
|
9133
9444
|
export declare class CreateAIAgentRunStepInput {
|
|
9445
|
+
ID?: string;
|
|
9134
9446
|
AgentRunID?: string;
|
|
9135
9447
|
StepNumber?: number;
|
|
9136
9448
|
StepType?: string;
|
|
@@ -9188,6 +9500,7 @@ export declare class ConversationArtifactPermission_ {
|
|
|
9188
9500
|
ConversationArtifact: string;
|
|
9189
9501
|
}
|
|
9190
9502
|
export declare class CreateConversationArtifactPermissionInput {
|
|
9503
|
+
ID?: string;
|
|
9191
9504
|
ConversationArtifactID?: string;
|
|
9192
9505
|
UserID?: string;
|
|
9193
9506
|
AccessLevel?: string;
|
|
@@ -9217,6 +9530,47 @@ export declare class ConversationArtifactPermissionResolver extends ResolverBase
|
|
|
9217
9530
|
UpdateConversationArtifactPermission(input: UpdateConversationArtifactPermissionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9218
9531
|
DeleteConversationArtifactPermission(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9219
9532
|
}
|
|
9533
|
+
export declare class AIModelPriceUnitType_ {
|
|
9534
|
+
ID: string;
|
|
9535
|
+
Name: string;
|
|
9536
|
+
Description?: string;
|
|
9537
|
+
DriverClass: string;
|
|
9538
|
+
_mj__CreatedAt: Date;
|
|
9539
|
+
_mj__UpdatedAt: Date;
|
|
9540
|
+
MJ_AIModelCosts_UnitTypeIDArray: AIModelCost_[];
|
|
9541
|
+
}
|
|
9542
|
+
export declare class CreateAIModelPriceUnitTypeInput {
|
|
9543
|
+
ID?: string;
|
|
9544
|
+
Name?: string;
|
|
9545
|
+
Description: string | null;
|
|
9546
|
+
DriverClass?: string;
|
|
9547
|
+
}
|
|
9548
|
+
export declare class UpdateAIModelPriceUnitTypeInput {
|
|
9549
|
+
ID: string;
|
|
9550
|
+
Name?: string;
|
|
9551
|
+
Description?: string | null;
|
|
9552
|
+
DriverClass?: string;
|
|
9553
|
+
OldValues___?: KeyValuePairInput[];
|
|
9554
|
+
}
|
|
9555
|
+
export declare class RunAIModelPriceUnitTypeViewResult {
|
|
9556
|
+
Results: AIModelPriceUnitType_[];
|
|
9557
|
+
UserViewRunID?: string;
|
|
9558
|
+
RowCount: number;
|
|
9559
|
+
TotalRowCount: number;
|
|
9560
|
+
ExecutionTime: number;
|
|
9561
|
+
ErrorMessage?: string;
|
|
9562
|
+
Success: boolean;
|
|
9563
|
+
}
|
|
9564
|
+
export declare class AIModelPriceUnitTypeResolver extends ResolverBase {
|
|
9565
|
+
RunAIModelPriceUnitTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9566
|
+
RunAIModelPriceUnitTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9567
|
+
RunAIModelPriceUnitTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9568
|
+
AIModelPriceUnitType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModelPriceUnitType_ | null>;
|
|
9569
|
+
MJ_AIModelCosts_UnitTypeIDArray(aimodelpriceunittype_: AIModelPriceUnitType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9570
|
+
CreateAIModelPriceUnitType(input: CreateAIModelPriceUnitTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9571
|
+
UpdateAIModelPriceUnitType(input: UpdateAIModelPriceUnitTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9572
|
+
DeleteAIModelPriceUnitType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9573
|
+
}
|
|
9220
9574
|
export declare class AIAgentLearningCycle_ {
|
|
9221
9575
|
ID: string;
|
|
9222
9576
|
AgentID: string;
|
|
@@ -9229,6 +9583,7 @@ export declare class AIAgentLearningCycle_ {
|
|
|
9229
9583
|
Agent?: string;
|
|
9230
9584
|
}
|
|
9231
9585
|
export declare class CreateAIAgentLearningCycleInput {
|
|
9586
|
+
ID?: string;
|
|
9232
9587
|
AgentID?: string;
|
|
9233
9588
|
StartedAt?: Date;
|
|
9234
9589
|
EndedAt: Date | null;
|
|
@@ -9275,6 +9630,7 @@ export declare class ReportVersion_ {
|
|
|
9275
9630
|
Report: string;
|
|
9276
9631
|
}
|
|
9277
9632
|
export declare class CreateReportVersionInput {
|
|
9633
|
+
ID?: string;
|
|
9278
9634
|
ReportID?: string;
|
|
9279
9635
|
VersionNumber?: number;
|
|
9280
9636
|
Name?: string;
|
|
@@ -9322,6 +9678,7 @@ export declare class AIConfigurationParam_ {
|
|
|
9322
9678
|
Configuration: string;
|
|
9323
9679
|
}
|
|
9324
9680
|
export declare class CreateAIConfigurationParamInput {
|
|
9681
|
+
ID?: string;
|
|
9325
9682
|
ConfigurationID?: string;
|
|
9326
9683
|
Name?: string;
|
|
9327
9684
|
Type?: string;
|