@memberjunction/server 2.23.2 → 2.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/generated.d.ts +1304 -1301
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +2620 -1304
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/ResolverBase.d.ts +3 -3
- package/dist/generic/ResolverBase.d.ts.map +1 -1
- package/dist/generic/ResolverBase.js +14 -11
- package/dist/generic/ResolverBase.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/resolvers/AskSkipResolver.d.ts.map +1 -1
- package/dist/resolvers/AskSkipResolver.js +8 -0
- package/dist/resolvers/AskSkipResolver.js.map +1 -1
- package/dist/types.d.ts +9 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +22 -0
- package/dist/types.js.map +1 -1
- package/package.json +22 -22
- package/src/generated/generated.ts +2615 -1304
- package/src/generic/ResolverBase.ts +18 -11
- package/src/index.ts +2 -2
- package/src/resolvers/AskSkipResolver.ts +11 -0
- package/src/types.ts +28 -0
|
@@ -62,14 +62,14 @@ export declare class RunScheduledActionViewResult {
|
|
|
62
62
|
Success: boolean;
|
|
63
63
|
}
|
|
64
64
|
export declare class ScheduledActionResolver extends ResolverBase {
|
|
65
|
-
RunScheduledActionViewByID(input: RunViewByIDInput, {
|
|
66
|
-
RunScheduledActionViewByName(input: RunViewByNameInput, {
|
|
67
|
-
RunScheduledActionDynamicView(input: RunDynamicViewInput, {
|
|
68
|
-
ScheduledAction(ID: string, {
|
|
69
|
-
ScheduledActionParams_ScheduledActionIDArray(scheduledaction_: ScheduledAction_, {
|
|
70
|
-
CreateScheduledAction(input: CreateScheduledActionInput, {
|
|
71
|
-
UpdateScheduledAction(input: UpdateScheduledActionInput, {
|
|
72
|
-
DeleteScheduledAction(ID: string, options: DeleteOptionsInput, {
|
|
65
|
+
RunScheduledActionViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
66
|
+
RunScheduledActionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
67
|
+
RunScheduledActionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
68
|
+
ScheduledAction(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ScheduledAction_ | null>;
|
|
69
|
+
ScheduledActionParams_ScheduledActionIDArray(scheduledaction_: ScheduledAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
70
|
+
CreateScheduledAction(input: CreateScheduledActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
71
|
+
UpdateScheduledAction(input: UpdateScheduledActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
72
|
+
DeleteScheduledAction(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
73
73
|
}
|
|
74
74
|
export declare class ScheduledActionParam_ {
|
|
75
75
|
ID: string;
|
|
@@ -109,13 +109,13 @@ export declare class RunScheduledActionParamViewResult {
|
|
|
109
109
|
Success: boolean;
|
|
110
110
|
}
|
|
111
111
|
export declare class ScheduledActionParamResolver extends ResolverBase {
|
|
112
|
-
RunScheduledActionParamViewByID(input: RunViewByIDInput, {
|
|
113
|
-
RunScheduledActionParamViewByName(input: RunViewByNameInput, {
|
|
114
|
-
RunScheduledActionParamDynamicView(input: RunDynamicViewInput, {
|
|
115
|
-
ScheduledActionParam(ID: string, {
|
|
116
|
-
CreateScheduledActionParam(input: CreateScheduledActionParamInput, {
|
|
117
|
-
UpdateScheduledActionParam(input: UpdateScheduledActionParamInput, {
|
|
118
|
-
DeleteScheduledActionParam(ID: string, options: DeleteOptionsInput, {
|
|
112
|
+
RunScheduledActionParamViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
113
|
+
RunScheduledActionParamViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
114
|
+
RunScheduledActionParamDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
115
|
+
ScheduledActionParam(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ScheduledActionParam_ | null>;
|
|
116
|
+
CreateScheduledActionParam(input: CreateScheduledActionParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
117
|
+
UpdateScheduledActionParam(input: UpdateScheduledActionParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
118
|
+
DeleteScheduledActionParam(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
119
119
|
}
|
|
120
120
|
export declare class ExplorerNavigationItem_ {
|
|
121
121
|
ID: string;
|
|
@@ -165,13 +165,13 @@ export declare class RunExplorerNavigationItemViewResult {
|
|
|
165
165
|
Success: boolean;
|
|
166
166
|
}
|
|
167
167
|
export declare class ExplorerNavigationItemResolver extends ResolverBase {
|
|
168
|
-
RunExplorerNavigationItemViewByID(input: RunViewByIDInput, {
|
|
169
|
-
RunExplorerNavigationItemViewByName(input: RunViewByNameInput, {
|
|
170
|
-
RunExplorerNavigationItemDynamicView(input: RunDynamicViewInput, {
|
|
171
|
-
ExplorerNavigationItem(ID: string, {
|
|
172
|
-
CreateExplorerNavigationItem(input: CreateExplorerNavigationItemInput, {
|
|
173
|
-
UpdateExplorerNavigationItem(input: UpdateExplorerNavigationItemInput, {
|
|
174
|
-
DeleteExplorerNavigationItem(ID: string, options: DeleteOptionsInput, {
|
|
168
|
+
RunExplorerNavigationItemViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
169
|
+
RunExplorerNavigationItemViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
170
|
+
RunExplorerNavigationItemDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
171
|
+
ExplorerNavigationItem(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ExplorerNavigationItem_ | null>;
|
|
172
|
+
CreateExplorerNavigationItem(input: CreateExplorerNavigationItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
173
|
+
UpdateExplorerNavigationItem(input: UpdateExplorerNavigationItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
174
|
+
DeleteExplorerNavigationItem(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
175
175
|
}
|
|
176
176
|
export declare class AIAgentModel_ {
|
|
177
177
|
ID: string;
|
|
@@ -208,13 +208,13 @@ export declare class RunAIAgentModelViewResult {
|
|
|
208
208
|
Success: boolean;
|
|
209
209
|
}
|
|
210
210
|
export declare class AIAgentModelResolver extends ResolverBase {
|
|
211
|
-
RunAIAgentModelViewByID(input: RunViewByIDInput, {
|
|
212
|
-
RunAIAgentModelViewByName(input: RunViewByNameInput, {
|
|
213
|
-
RunAIAgentModelDynamicView(input: RunDynamicViewInput, {
|
|
214
|
-
AIAgentModel(ID: string, {
|
|
215
|
-
CreateAIAgentModel(input: CreateAIAgentModelInput, {
|
|
216
|
-
UpdateAIAgentModel(input: UpdateAIAgentModelInput, {
|
|
217
|
-
DeleteAIAgentModel(ID: string, options: DeleteOptionsInput, {
|
|
211
|
+
RunAIAgentModelViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
212
|
+
RunAIAgentModelViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
213
|
+
RunAIAgentModelDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
214
|
+
AIAgentModel(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentModel_ | null>;
|
|
215
|
+
CreateAIAgentModel(input: CreateAIAgentModelInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
216
|
+
UpdateAIAgentModel(input: UpdateAIAgentModelInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
217
|
+
DeleteAIAgentModel(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
218
218
|
}
|
|
219
219
|
export declare class AIAgentNoteType_ {
|
|
220
220
|
ID: string;
|
|
@@ -244,14 +244,14 @@ export declare class RunAIAgentNoteTypeViewResult {
|
|
|
244
244
|
Success: boolean;
|
|
245
245
|
}
|
|
246
246
|
export declare class AIAgentNoteTypeResolver extends ResolverBase {
|
|
247
|
-
RunAIAgentNoteTypeViewByID(input: RunViewByIDInput, {
|
|
248
|
-
RunAIAgentNoteTypeViewByName(input: RunViewByNameInput, {
|
|
249
|
-
RunAIAgentNoteTypeDynamicView(input: RunDynamicViewInput, {
|
|
250
|
-
AIAgentNoteType(ID: string, {
|
|
251
|
-
AIAgentNotes_AgentNoteTypeIDArray(aiagentnotetype_: AIAgentNoteType_, {
|
|
252
|
-
CreateAIAgentNoteType(input: CreateAIAgentNoteTypeInput, {
|
|
253
|
-
UpdateAIAgentNoteType(input: UpdateAIAgentNoteTypeInput, {
|
|
254
|
-
DeleteAIAgentNoteType(ID: string, options: DeleteOptionsInput, {
|
|
247
|
+
RunAIAgentNoteTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
248
|
+
RunAIAgentNoteTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
249
|
+
RunAIAgentNoteTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
250
|
+
AIAgentNoteType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentNoteType_ | null>;
|
|
251
|
+
AIAgentNotes_AgentNoteTypeIDArray(aiagentnotetype_: AIAgentNoteType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
252
|
+
CreateAIAgentNoteType(input: CreateAIAgentNoteTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
253
|
+
UpdateAIAgentNoteType(input: UpdateAIAgentNoteTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
254
|
+
DeleteAIAgentNoteType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
255
255
|
}
|
|
256
256
|
export declare class AIAgent_ {
|
|
257
257
|
ID: string;
|
|
@@ -288,18 +288,18 @@ export declare class RunAIAgentViewResult {
|
|
|
288
288
|
Success: boolean;
|
|
289
289
|
}
|
|
290
290
|
export declare class AIAgentResolver extends ResolverBase {
|
|
291
|
-
RunAIAgentViewByID(input: RunViewByIDInput, {
|
|
292
|
-
RunAIAgentViewByName(input: RunViewByNameInput, {
|
|
293
|
-
RunAIAgentDynamicView(input: RunDynamicViewInput, {
|
|
294
|
-
AIAgent(ID: string, {
|
|
295
|
-
AIAgentRequests_AgentIDArray(aiagent_: AIAgent_, {
|
|
296
|
-
AIAgentLearningCycles_AgentIDArray(aiagent_: AIAgent_, {
|
|
297
|
-
AIAgentModels_AgentIDArray(aiagent_: AIAgent_, {
|
|
298
|
-
AIAgentActions_AgentIDArray(aiagent_: AIAgent_, {
|
|
299
|
-
AIAgentNotes_AgentIDArray(aiagent_: AIAgent_, {
|
|
300
|
-
CreateAIAgent(input: CreateAIAgentInput, {
|
|
301
|
-
UpdateAIAgent(input: UpdateAIAgentInput, {
|
|
302
|
-
DeleteAIAgent(ID: string, options: DeleteOptionsInput, {
|
|
291
|
+
RunAIAgentViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
292
|
+
RunAIAgentViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
293
|
+
RunAIAgentDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
294
|
+
AIAgent(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgent_ | null>;
|
|
295
|
+
AIAgentRequests_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
296
|
+
AIAgentLearningCycles_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
297
|
+
AIAgentModels_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
298
|
+
AIAgentActions_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
299
|
+
AIAgentNotes_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
300
|
+
CreateAIAgent(input: CreateAIAgentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
301
|
+
UpdateAIAgent(input: UpdateAIAgentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
302
|
+
DeleteAIAgent(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
303
303
|
}
|
|
304
304
|
export declare class AIAgentNote_ {
|
|
305
305
|
ID: string;
|
|
@@ -340,13 +340,13 @@ export declare class RunAIAgentNoteViewResult {
|
|
|
340
340
|
Success: boolean;
|
|
341
341
|
}
|
|
342
342
|
export declare class AIAgentNoteResolver extends ResolverBase {
|
|
343
|
-
RunAIAgentNoteViewByID(input: RunViewByIDInput, {
|
|
344
|
-
RunAIAgentNoteViewByName(input: RunViewByNameInput, {
|
|
345
|
-
RunAIAgentNoteDynamicView(input: RunDynamicViewInput, {
|
|
346
|
-
AIAgentNote(ID: string, {
|
|
347
|
-
CreateAIAgentNote(input: CreateAIAgentNoteInput, {
|
|
348
|
-
UpdateAIAgentNote(input: UpdateAIAgentNoteInput, {
|
|
349
|
-
DeleteAIAgentNote(ID: string, options: DeleteOptionsInput, {
|
|
343
|
+
RunAIAgentNoteViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
344
|
+
RunAIAgentNoteViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
345
|
+
RunAIAgentNoteDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
346
|
+
AIAgentNote(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentNote_ | null>;
|
|
347
|
+
CreateAIAgentNote(input: CreateAIAgentNoteInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
348
|
+
UpdateAIAgentNote(input: UpdateAIAgentNoteInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
349
|
+
DeleteAIAgentNote(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
350
350
|
}
|
|
351
351
|
export declare class AIAgentAction_ {
|
|
352
352
|
ID: string;
|
|
@@ -380,13 +380,13 @@ export declare class RunAIAgentActionViewResult {
|
|
|
380
380
|
Success: boolean;
|
|
381
381
|
}
|
|
382
382
|
export declare class AIAgentActionResolver extends ResolverBase {
|
|
383
|
-
RunAIAgentActionViewByID(input: RunViewByIDInput, {
|
|
384
|
-
RunAIAgentActionViewByName(input: RunViewByNameInput, {
|
|
385
|
-
RunAIAgentActionDynamicView(input: RunDynamicViewInput, {
|
|
386
|
-
AIAgentAction(ID: string, {
|
|
387
|
-
CreateAIAgentAction(input: CreateAIAgentActionInput, {
|
|
388
|
-
UpdateAIAgentAction(input: UpdateAIAgentActionInput, {
|
|
389
|
-
DeleteAIAgentAction(ID: string, options: DeleteOptionsInput, {
|
|
383
|
+
RunAIAgentActionViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
384
|
+
RunAIAgentActionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
385
|
+
RunAIAgentActionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
386
|
+
AIAgentAction(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentAction_ | null>;
|
|
387
|
+
CreateAIAgentAction(input: CreateAIAgentActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
388
|
+
UpdateAIAgentAction(input: UpdateAIAgentActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
389
|
+
DeleteAIAgentAction(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
390
390
|
}
|
|
391
391
|
export declare class AIPrompt_ {
|
|
392
392
|
ID: string;
|
|
@@ -443,14 +443,14 @@ export declare class RunAIPromptViewResult {
|
|
|
443
443
|
Success: boolean;
|
|
444
444
|
}
|
|
445
445
|
export declare class AIPromptResolver extends ResolverBase {
|
|
446
|
-
RunAIPromptViewByID(input: RunViewByIDInput, {
|
|
447
|
-
RunAIPromptViewByName(input: RunViewByNameInput, {
|
|
448
|
-
RunAIPromptDynamicView(input: RunDynamicViewInput, {
|
|
449
|
-
AIPrompt(ID: string, {
|
|
450
|
-
AIResultCache_AIPromptIDArray(aiprompt_: AIPrompt_, {
|
|
451
|
-
CreateAIPrompt(input: CreateAIPromptInput, {
|
|
452
|
-
UpdateAIPrompt(input: UpdateAIPromptInput, {
|
|
453
|
-
DeleteAIPrompt(ID: string, options: DeleteOptionsInput, {
|
|
446
|
+
RunAIPromptViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
447
|
+
RunAIPromptViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
448
|
+
RunAIPromptDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
449
|
+
AIPrompt(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIPrompt_ | null>;
|
|
450
|
+
AIResultCache_AIPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
451
|
+
CreateAIPrompt(input: CreateAIPromptInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
452
|
+
UpdateAIPrompt(input: UpdateAIPromptInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
453
|
+
DeleteAIPrompt(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
454
454
|
}
|
|
455
455
|
export declare class AIResultCache_ {
|
|
456
456
|
ID: string;
|
|
@@ -496,13 +496,13 @@ export declare class RunAIResultCacheViewResult {
|
|
|
496
496
|
Success: boolean;
|
|
497
497
|
}
|
|
498
498
|
export declare class AIResultCacheResolver extends ResolverBase {
|
|
499
|
-
RunAIResultCacheViewByID(input: RunViewByIDInput, {
|
|
500
|
-
RunAIResultCacheViewByName(input: RunViewByNameInput, {
|
|
501
|
-
RunAIResultCacheDynamicView(input: RunDynamicViewInput, {
|
|
502
|
-
AIResultCache(ID: string, {
|
|
503
|
-
CreateAIResultCache(input: CreateAIResultCacheInput, {
|
|
504
|
-
UpdateAIResultCache(input: UpdateAIResultCacheInput, {
|
|
505
|
-
DeleteAIResultCache(ID: string, options: DeleteOptionsInput, {
|
|
499
|
+
RunAIResultCacheViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
500
|
+
RunAIResultCacheViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
501
|
+
RunAIResultCacheDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
502
|
+
AIResultCache(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIResultCache_ | null>;
|
|
503
|
+
CreateAIResultCache(input: CreateAIResultCacheInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
504
|
+
UpdateAIResultCache(input: UpdateAIResultCacheInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
505
|
+
DeleteAIResultCache(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
506
506
|
}
|
|
507
507
|
export declare class AIPromptCategory_ {
|
|
508
508
|
ID: string;
|
|
@@ -537,15 +537,15 @@ export declare class RunAIPromptCategoryViewResult {
|
|
|
537
537
|
Success: boolean;
|
|
538
538
|
}
|
|
539
539
|
export declare class AIPromptCategoryResolver extends ResolverBase {
|
|
540
|
-
RunAIPromptCategoryViewByID(input: RunViewByIDInput, {
|
|
541
|
-
RunAIPromptCategoryViewByName(input: RunViewByNameInput, {
|
|
542
|
-
RunAIPromptCategoryDynamicView(input: RunDynamicViewInput, {
|
|
543
|
-
AIPromptCategory(ID: string, {
|
|
544
|
-
AIPrompts_CategoryIDArray(aipromptcategory_: AIPromptCategory_, {
|
|
545
|
-
AIPromptCategories_ParentIDArray(aipromptcategory_: AIPromptCategory_, {
|
|
546
|
-
CreateAIPromptCategory(input: CreateAIPromptCategoryInput, {
|
|
547
|
-
UpdateAIPromptCategory(input: UpdateAIPromptCategoryInput, {
|
|
548
|
-
DeleteAIPromptCategory(ID: string, options: DeleteOptionsInput, {
|
|
540
|
+
RunAIPromptCategoryViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
541
|
+
RunAIPromptCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
542
|
+
RunAIPromptCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
543
|
+
AIPromptCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIPromptCategory_ | null>;
|
|
544
|
+
AIPrompts_CategoryIDArray(aipromptcategory_: AIPromptCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
545
|
+
AIPromptCategories_ParentIDArray(aipromptcategory_: AIPromptCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
546
|
+
CreateAIPromptCategory(input: CreateAIPromptCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
547
|
+
UpdateAIPromptCategory(input: UpdateAIPromptCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
548
|
+
DeleteAIPromptCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
549
549
|
}
|
|
550
550
|
export declare class AIPromptType_ {
|
|
551
551
|
ID: string;
|
|
@@ -575,14 +575,14 @@ export declare class RunAIPromptTypeViewResult {
|
|
|
575
575
|
Success: boolean;
|
|
576
576
|
}
|
|
577
577
|
export declare class AIPromptTypeResolver extends ResolverBase {
|
|
578
|
-
RunAIPromptTypeViewByID(input: RunViewByIDInput, {
|
|
579
|
-
RunAIPromptTypeViewByName(input: RunViewByNameInput, {
|
|
580
|
-
RunAIPromptTypeDynamicView(input: RunDynamicViewInput, {
|
|
581
|
-
AIPromptType(ID: string, {
|
|
582
|
-
AIPrompts_TypeIDArray(aiprompttype_: AIPromptType_, {
|
|
583
|
-
CreateAIPromptType(input: CreateAIPromptTypeInput, {
|
|
584
|
-
UpdateAIPromptType(input: UpdateAIPromptTypeInput, {
|
|
585
|
-
DeleteAIPromptType(ID: string, options: DeleteOptionsInput, {
|
|
578
|
+
RunAIPromptTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
579
|
+
RunAIPromptTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
580
|
+
RunAIPromptTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
581
|
+
AIPromptType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIPromptType_ | null>;
|
|
582
|
+
AIPrompts_TypeIDArray(aiprompttype_: AIPromptType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
583
|
+
CreateAIPromptType(input: CreateAIPromptTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
584
|
+
UpdateAIPromptType(input: UpdateAIPromptTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
585
|
+
DeleteAIPromptType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
586
586
|
}
|
|
587
587
|
export declare class Company_ {
|
|
588
588
|
ID: string;
|
|
@@ -623,17 +623,17 @@ export declare class RunCompanyViewResult {
|
|
|
623
623
|
Success: boolean;
|
|
624
624
|
}
|
|
625
625
|
export declare class CompanyResolver extends ResolverBase {
|
|
626
|
-
RunCompanyViewByID(input: RunViewByIDInput, {
|
|
627
|
-
RunCompanyViewByName(input: RunViewByNameInput, {
|
|
628
|
-
RunCompanyDynamicView(input: RunDynamicViewInput, {
|
|
629
|
-
Company(ID: string, {
|
|
630
|
-
AllCompanies({
|
|
631
|
-
Workflows_CompanyNameArray(company_: Company_, {
|
|
632
|
-
CompanyIntegrations_CompanyNameArray(company_: Company_, {
|
|
633
|
-
Employees_CompanyIDArray(company_: Company_, {
|
|
634
|
-
CreateCompany(input: CreateCompanyInput, {
|
|
635
|
-
UpdateCompany(input: UpdateCompanyInput, {
|
|
636
|
-
DeleteCompany(ID: string, options: DeleteOptionsInput, {
|
|
626
|
+
RunCompanyViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
627
|
+
RunCompanyViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
628
|
+
RunCompanyDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
629
|
+
Company(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Company_ | null>;
|
|
630
|
+
AllCompanies({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
631
|
+
Workflows_CompanyNameArray(company_: Company_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
632
|
+
CompanyIntegrations_CompanyNameArray(company_: Company_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
633
|
+
Employees_CompanyIDArray(company_: Company_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
634
|
+
CreateCompany(input: CreateCompanyInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
635
|
+
UpdateCompany(input: UpdateCompanyInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
636
|
+
DeleteCompany(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
637
637
|
}
|
|
638
638
|
export declare class Employee_ {
|
|
639
639
|
ID: string;
|
|
@@ -691,19 +691,19 @@ export declare class RunEmployeeViewResult {
|
|
|
691
691
|
Success: boolean;
|
|
692
692
|
}
|
|
693
693
|
export declare class EmployeeResolver extends ResolverBase {
|
|
694
|
-
RunEmployeeViewByID(input: RunViewByIDInput, {
|
|
695
|
-
RunEmployeeViewByName(input: RunViewByNameInput, {
|
|
696
|
-
RunEmployeeDynamicView(input: RunDynamicViewInput, {
|
|
697
|
-
Employee(ID: string, {
|
|
698
|
-
AllEmployees({
|
|
699
|
-
Users_EmployeeIDArray(employee_: Employee_, {
|
|
700
|
-
EmployeeSkills_EmployeeIDArray(employee_: Employee_, {
|
|
701
|
-
EmployeeCompanyIntegrations_EmployeeIDArray(employee_: Employee_, {
|
|
702
|
-
Employees_SupervisorIDArray(employee_: Employee_, {
|
|
703
|
-
EmployeeRoles_EmployeeIDArray(employee_: Employee_, {
|
|
704
|
-
CreateEmployee(input: CreateEmployeeInput, {
|
|
705
|
-
UpdateEmployee(input: UpdateEmployeeInput, {
|
|
706
|
-
DeleteEmployee(ID: string, options: DeleteOptionsInput, {
|
|
694
|
+
RunEmployeeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
695
|
+
RunEmployeeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
696
|
+
RunEmployeeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
697
|
+
Employee(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Employee_ | null>;
|
|
698
|
+
AllEmployees({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
699
|
+
Users_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
700
|
+
EmployeeSkills_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
701
|
+
EmployeeCompanyIntegrations_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
702
|
+
Employees_SupervisorIDArray(employee_: Employee_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
703
|
+
EmployeeRoles_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
704
|
+
CreateEmployee(input: CreateEmployeeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
705
|
+
UpdateEmployee(input: UpdateEmployeeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
706
|
+
DeleteEmployee(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
707
707
|
}
|
|
708
708
|
export declare class UserFavorite_ {
|
|
709
709
|
ID: string;
|
|
@@ -738,13 +738,13 @@ export declare class RunUserFavoriteViewResult {
|
|
|
738
738
|
Success: boolean;
|
|
739
739
|
}
|
|
740
740
|
export declare class UserFavoriteResolverBase extends ResolverBase {
|
|
741
|
-
RunUserFavoriteViewByID(input: RunViewByIDInput, {
|
|
742
|
-
RunUserFavoriteViewByName(input: RunViewByNameInput, {
|
|
743
|
-
RunUserFavoriteDynamicView(input: RunDynamicViewInput, {
|
|
744
|
-
UserFavorite(ID: string, {
|
|
745
|
-
CreateUserFavorite(input: CreateUserFavoriteInput, {
|
|
746
|
-
UpdateUserFavorite(input: UpdateUserFavoriteInput, {
|
|
747
|
-
DeleteUserFavorite(ID: string, options: DeleteOptionsInput, {
|
|
741
|
+
RunUserFavoriteViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
742
|
+
RunUserFavoriteViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
743
|
+
RunUserFavoriteDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
744
|
+
UserFavorite(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserFavorite_ | null>;
|
|
745
|
+
CreateUserFavorite(input: CreateUserFavoriteInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
746
|
+
UpdateUserFavorite(input: UpdateUserFavoriteInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
747
|
+
DeleteUserFavorite(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
748
748
|
}
|
|
749
749
|
export declare class EmployeeCompanyIntegration_ {
|
|
750
750
|
ID: string;
|
|
@@ -773,11 +773,11 @@ export declare class RunEmployeeCompanyIntegrationViewResult {
|
|
|
773
773
|
Success: boolean;
|
|
774
774
|
}
|
|
775
775
|
export declare class EmployeeCompanyIntegrationResolver extends ResolverBase {
|
|
776
|
-
RunEmployeeCompanyIntegrationViewByID(input: RunViewByIDInput, {
|
|
777
|
-
RunEmployeeCompanyIntegrationViewByName(input: RunViewByNameInput, {
|
|
778
|
-
RunEmployeeCompanyIntegrationDynamicView(input: RunDynamicViewInput, {
|
|
779
|
-
EmployeeCompanyIntegration(ID: string, {
|
|
780
|
-
UpdateEmployeeCompanyIntegration(input: UpdateEmployeeCompanyIntegrationInput, {
|
|
776
|
+
RunEmployeeCompanyIntegrationViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
777
|
+
RunEmployeeCompanyIntegrationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
778
|
+
RunEmployeeCompanyIntegrationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
779
|
+
EmployeeCompanyIntegration(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EmployeeCompanyIntegration_ | null>;
|
|
780
|
+
UpdateEmployeeCompanyIntegration(input: UpdateEmployeeCompanyIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
781
781
|
}
|
|
782
782
|
export declare class EmployeeRole_ {
|
|
783
783
|
ID: string;
|
|
@@ -803,12 +803,12 @@ export declare class RunEmployeeRoleViewResult {
|
|
|
803
803
|
Success: boolean;
|
|
804
804
|
}
|
|
805
805
|
export declare class EmployeeRoleResolver extends ResolverBase {
|
|
806
|
-
RunEmployeeRoleViewByID(input: RunViewByIDInput, {
|
|
807
|
-
RunEmployeeRoleViewByName(input: RunViewByNameInput, {
|
|
808
|
-
RunEmployeeRoleDynamicView(input: RunDynamicViewInput, {
|
|
809
|
-
EmployeeRole(ID: string, {
|
|
810
|
-
UpdateEmployeeRole(input: UpdateEmployeeRoleInput, {
|
|
811
|
-
DeleteEmployeeRole(ID: string, options: DeleteOptionsInput, {
|
|
806
|
+
RunEmployeeRoleViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
807
|
+
RunEmployeeRoleViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
808
|
+
RunEmployeeRoleDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
809
|
+
EmployeeRole(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EmployeeRole_ | null>;
|
|
810
|
+
UpdateEmployeeRole(input: UpdateEmployeeRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
811
|
+
DeleteEmployeeRole(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
812
812
|
}
|
|
813
813
|
export declare class EmployeeSkill_ {
|
|
814
814
|
ID: string;
|
|
@@ -834,12 +834,12 @@ export declare class RunEmployeeSkillViewResult {
|
|
|
834
834
|
Success: boolean;
|
|
835
835
|
}
|
|
836
836
|
export declare class EmployeeSkillResolver extends ResolverBase {
|
|
837
|
-
RunEmployeeSkillViewByID(input: RunViewByIDInput, {
|
|
838
|
-
RunEmployeeSkillViewByName(input: RunViewByNameInput, {
|
|
839
|
-
RunEmployeeSkillDynamicView(input: RunDynamicViewInput, {
|
|
840
|
-
EmployeeSkill(ID: string, {
|
|
841
|
-
UpdateEmployeeSkill(input: UpdateEmployeeSkillInput, {
|
|
842
|
-
DeleteEmployeeSkill(ID: string, options: DeleteOptionsInput, {
|
|
837
|
+
RunEmployeeSkillViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
838
|
+
RunEmployeeSkillViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
839
|
+
RunEmployeeSkillDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
840
|
+
EmployeeSkill(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EmployeeSkill_ | null>;
|
|
841
|
+
UpdateEmployeeSkill(input: UpdateEmployeeSkillInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
842
|
+
DeleteEmployeeSkill(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
843
843
|
}
|
|
844
844
|
export declare class Role_ {
|
|
845
845
|
ID: string;
|
|
@@ -880,20 +880,20 @@ export declare class RunRoleViewResult {
|
|
|
880
880
|
Success: boolean;
|
|
881
881
|
}
|
|
882
882
|
export declare class RoleResolver extends ResolverBase {
|
|
883
|
-
RunRoleViewByID(input: RunViewByIDInput, {
|
|
884
|
-
RunRoleViewByName(input: RunViewByNameInput, {
|
|
885
|
-
RunRoleDynamicView(input: RunDynamicViewInput, {
|
|
886
|
-
Role(ID: string, {
|
|
887
|
-
AllRoles({
|
|
888
|
-
UserRoles_RoleNameArray(role_: Role_, {
|
|
889
|
-
AuthorizationRoles_RoleNameArray(role_: Role_, {
|
|
890
|
-
EntityPermissions_RoleNameArray(role_: Role_, {
|
|
891
|
-
QueryPermissions_RoleNameArray(role_: Role_, {
|
|
892
|
-
EmployeeRoles_RoleIDArray(role_: Role_, {
|
|
893
|
-
ResourcePermissions_RoleIDArray(role_: Role_, {
|
|
894
|
-
CreateRole(input: CreateRoleInput, {
|
|
895
|
-
UpdateRole(input: UpdateRoleInput, {
|
|
896
|
-
DeleteRole(ID: string, options: DeleteOptionsInput, {
|
|
883
|
+
RunRoleViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
884
|
+
RunRoleViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
885
|
+
RunRoleDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
886
|
+
Role(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Role_ | null>;
|
|
887
|
+
AllRoles({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
888
|
+
UserRoles_RoleNameArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
889
|
+
AuthorizationRoles_RoleNameArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
890
|
+
EntityPermissions_RoleNameArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
891
|
+
QueryPermissions_RoleNameArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
892
|
+
EmployeeRoles_RoleIDArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
893
|
+
ResourcePermissions_RoleIDArray(role_: Role_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
894
|
+
CreateRole(input: CreateRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
895
|
+
UpdateRole(input: UpdateRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
896
|
+
DeleteRole(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
897
897
|
}
|
|
898
898
|
export declare class Skill_ {
|
|
899
899
|
ID: string;
|
|
@@ -915,13 +915,13 @@ export declare class RunSkillViewResult {
|
|
|
915
915
|
Success: boolean;
|
|
916
916
|
}
|
|
917
917
|
export declare class SkillResolver extends ResolverBase {
|
|
918
|
-
RunSkillViewByID(input: RunViewByIDInput, {
|
|
919
|
-
RunSkillViewByName(input: RunViewByNameInput, {
|
|
920
|
-
RunSkillDynamicView(input: RunDynamicViewInput, {
|
|
921
|
-
Skill(ID: string, {
|
|
922
|
-
AllSkills({
|
|
923
|
-
EmployeeSkills_SkillIDArray(skill_: Skill_, {
|
|
924
|
-
Skills_ParentIDArray(skill_: Skill_, {
|
|
918
|
+
RunSkillViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
919
|
+
RunSkillViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
920
|
+
RunSkillDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
921
|
+
Skill(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Skill_ | null>;
|
|
922
|
+
AllSkills({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
923
|
+
EmployeeSkills_SkillIDArray(skill_: Skill_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
924
|
+
Skills_ParentIDArray(skill_: Skill_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
925
925
|
}
|
|
926
926
|
export declare class IntegrationURLFormat_ {
|
|
927
927
|
ID: string;
|
|
@@ -953,13 +953,13 @@ export declare class RunIntegrationURLFormatViewResult {
|
|
|
953
953
|
Success: boolean;
|
|
954
954
|
}
|
|
955
955
|
export declare class IntegrationURLFormatResolver extends ResolverBase {
|
|
956
|
-
RunIntegrationURLFormatViewByID(input: RunViewByIDInput, {
|
|
957
|
-
RunIntegrationURLFormatViewByName(input: RunViewByNameInput, {
|
|
958
|
-
RunIntegrationURLFormatDynamicView(input: RunDynamicViewInput, {
|
|
959
|
-
IntegrationURLFormat(ID: string, {
|
|
960
|
-
AllIntegrationURLFormats({
|
|
961
|
-
UpdateIntegrationURLFormat(input: UpdateIntegrationURLFormatInput, {
|
|
962
|
-
DeleteIntegrationURLFormat(ID: string, options: DeleteOptionsInput, {
|
|
956
|
+
RunIntegrationURLFormatViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
957
|
+
RunIntegrationURLFormatViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
958
|
+
RunIntegrationURLFormatDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
959
|
+
IntegrationURLFormat(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<IntegrationURLFormat_ | null>;
|
|
960
|
+
AllIntegrationURLFormats({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
961
|
+
UpdateIntegrationURLFormat(input: UpdateIntegrationURLFormatInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
962
|
+
DeleteIntegrationURLFormat(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
963
963
|
}
|
|
964
964
|
export declare class Integration_ {
|
|
965
965
|
Name: string;
|
|
@@ -997,16 +997,16 @@ export declare class RunIntegrationViewResult {
|
|
|
997
997
|
Success: boolean;
|
|
998
998
|
}
|
|
999
999
|
export declare class IntegrationResolver extends ResolverBase {
|
|
1000
|
-
RunIntegrationViewByID(input: RunViewByIDInput, {
|
|
1001
|
-
RunIntegrationViewByName(input: RunViewByNameInput, {
|
|
1002
|
-
RunIntegrationDynamicView(input: RunDynamicViewInput, {
|
|
1003
|
-
Integration(ID: string, {
|
|
1004
|
-
AllIntegrations({
|
|
1005
|
-
IntegrationURLFormats_IntegrationIDArray(integration_: Integration_, {
|
|
1006
|
-
CompanyIntegrations_IntegrationNameArray(integration_: Integration_, {
|
|
1007
|
-
RecordChanges_IntegrationIDArray(integration_: Integration_, {
|
|
1008
|
-
UpdateIntegration(input: UpdateIntegrationInput, {
|
|
1009
|
-
DeleteIntegration(ID: string, options: DeleteOptionsInput, {
|
|
1000
|
+
RunIntegrationViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1001
|
+
RunIntegrationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1002
|
+
RunIntegrationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1003
|
+
Integration(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Integration_ | null>;
|
|
1004
|
+
AllIntegrations({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1005
|
+
IntegrationURLFormats_IntegrationIDArray(integration_: Integration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1006
|
+
CompanyIntegrations_IntegrationNameArray(integration_: Integration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1007
|
+
RecordChanges_IntegrationIDArray(integration_: Integration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1008
|
+
UpdateIntegration(input: UpdateIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1009
|
+
DeleteIntegration(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1010
1010
|
}
|
|
1011
1011
|
export declare class CompanyIntegration_ {
|
|
1012
1012
|
ID: string;
|
|
@@ -1062,16 +1062,16 @@ export declare class RunCompanyIntegrationViewResult {
|
|
|
1062
1062
|
Success: boolean;
|
|
1063
1063
|
}
|
|
1064
1064
|
export declare class CompanyIntegrationResolver extends ResolverBase {
|
|
1065
|
-
RunCompanyIntegrationViewByID(input: RunViewByIDInput, {
|
|
1066
|
-
RunCompanyIntegrationViewByName(input: RunViewByNameInput, {
|
|
1067
|
-
RunCompanyIntegrationDynamicView(input: RunDynamicViewInput, {
|
|
1068
|
-
CompanyIntegration(ID: string, {
|
|
1069
|
-
CompanyIntegrationRecordMaps_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, {
|
|
1070
|
-
Lists_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, {
|
|
1071
|
-
CompanyIntegrationRuns_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, {
|
|
1072
|
-
EmployeeCompanyIntegrations_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, {
|
|
1073
|
-
UpdateCompanyIntegration(input: UpdateCompanyIntegrationInput, {
|
|
1074
|
-
DeleteCompanyIntegration(ID: string, options: DeleteOptionsInput, {
|
|
1065
|
+
RunCompanyIntegrationViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1066
|
+
RunCompanyIntegrationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1067
|
+
RunCompanyIntegrationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1068
|
+
CompanyIntegration(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegration_ | null>;
|
|
1069
|
+
CompanyIntegrationRecordMaps_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1070
|
+
Lists_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1071
|
+
CompanyIntegrationRuns_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1072
|
+
EmployeeCompanyIntegrations_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1073
|
+
UpdateCompanyIntegration(input: UpdateCompanyIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1074
|
+
DeleteCompanyIntegration(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1075
1075
|
}
|
|
1076
1076
|
export declare class EntityField_ {
|
|
1077
1077
|
ID: string;
|
|
@@ -1205,15 +1205,15 @@ export declare class RunEntityFieldViewResult {
|
|
|
1205
1205
|
Success: boolean;
|
|
1206
1206
|
}
|
|
1207
1207
|
export declare class EntityFieldResolver extends ResolverBase {
|
|
1208
|
-
RunEntityFieldViewByID(input: RunViewByIDInput, {
|
|
1209
|
-
RunEntityFieldViewByName(input: RunViewByNameInput, {
|
|
1210
|
-
RunEntityFieldDynamicView(input: RunDynamicViewInput, {
|
|
1211
|
-
EntityField(ID: string, {
|
|
1212
|
-
AllEntityFields({
|
|
1213
|
-
EntityFieldValues_EntityFieldIDArray(entityfield_: EntityField_, {
|
|
1214
|
-
CreateEntityField(input: CreateEntityFieldInput, {
|
|
1215
|
-
UpdateEntityField(input: UpdateEntityFieldInput, {
|
|
1216
|
-
DeleteEntityField(ID: string, options: DeleteOptionsInput, {
|
|
1208
|
+
RunEntityFieldViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1209
|
+
RunEntityFieldViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1210
|
+
RunEntityFieldDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1211
|
+
EntityField(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityField_ | null>;
|
|
1212
|
+
AllEntityFields({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1213
|
+
EntityFieldValues_EntityFieldIDArray(entityfield_: EntityField_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1214
|
+
CreateEntityField(input: CreateEntityFieldInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1215
|
+
UpdateEntityField(input: UpdateEntityFieldInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1216
|
+
DeleteEntityField(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1217
1217
|
}
|
|
1218
1218
|
export declare class Entity_ {
|
|
1219
1219
|
ID: string;
|
|
@@ -1421,50 +1421,50 @@ export declare class RunEntityViewResult {
|
|
|
1421
1421
|
Success: boolean;
|
|
1422
1422
|
}
|
|
1423
1423
|
export declare class EntityResolverBase extends ResolverBase {
|
|
1424
|
-
RunEntityViewByID(input: RunViewByIDInput, {
|
|
1425
|
-
RunEntityViewByName(input: RunViewByNameInput, {
|
|
1426
|
-
RunEntityDynamicView(input: RunDynamicViewInput, {
|
|
1427
|
-
Entity(ID: string, {
|
|
1428
|
-
AllEntities({
|
|
1429
|
-
AuditLogs_EntityIDArray(entity_: Entity_, {
|
|
1430
|
-
TemplateParams_EntityIDArray(entity_: Entity_, {
|
|
1431
|
-
DatasetItems_EntityIDArray(entity_: Entity_, {
|
|
1432
|
-
Users_LinkedEntityIDArray(entity_: Entity_, {
|
|
1433
|
-
CompanyIntegrationRecordMaps_EntityIDArray(entity_: Entity_, {
|
|
1434
|
-
Entities_ParentIDArray(entity_: Entity_, {
|
|
1435
|
-
UserViewCategories_EntityIDArray(entity_: Entity_, {
|
|
1436
|
-
EntityAIActions_EntityIDArray(entity_: Entity_, {
|
|
1437
|
-
EntityActions_EntityIDArray(entity_: Entity_, {
|
|
1438
|
-
Conversations_LinkedEntityIDArray(entity_: Entity_, {
|
|
1439
|
-
DuplicateRuns_EntityIDArray(entity_: Entity_, {
|
|
1440
|
-
TaggedItems_EntityIDArray(entity_: Entity_, {
|
|
1441
|
-
RecordMergeLogs_EntityIDArray(entity_: Entity_, {
|
|
1442
|
-
UserApplicationEntities_EntityIDArray(entity_: Entity_, {
|
|
1443
|
-
QueryFields_SourceEntityIDArray(entity_: Entity_, {
|
|
1444
|
-
UserViews_EntityIDArray(entity_: Entity_, {
|
|
1445
|
-
RecommendationItems_DestinationEntityIDArray(entity_: Entity_, {
|
|
1446
|
-
EntityPermissions_EntityIDArray(entity_: Entity_, {
|
|
1447
|
-
Lists_EntityIDArray(entity_: Entity_, {
|
|
1448
|
-
UserRecordLogs_EntityIDArray(entity_: Entity_, {
|
|
1449
|
-
EntityDocuments_EntityIDArray(entity_: Entity_, {
|
|
1450
|
-
Recommendations_SourceEntityIDArray(entity_: Entity_, {
|
|
1451
|
-
FileEntityRecordLinks_EntityIDArray(entity_: Entity_, {
|
|
1452
|
-
EntitySettings_EntityIDArray(entity_: Entity_, {
|
|
1453
|
-
EntityRelationships_EntityIDArray(entity_: Entity_, {
|
|
1454
|
-
CompanyIntegrationRunDetails_EntityIDArray(entity_: Entity_, {
|
|
1455
|
-
DataContextItems_EntityIDArray(entity_: Entity_, {
|
|
1456
|
-
IntegrationURLFormats_EntityIDArray(entity_: Entity_, {
|
|
1457
|
-
EntityFields_EntityIDArray(entity_: Entity_, {
|
|
1458
|
-
UserFavorites_EntityIDArray(entity_: Entity_, {
|
|
1459
|
-
EntityCommunicationMessageTypes_EntityIDArray(entity_: Entity_, {
|
|
1460
|
-
EntityRecordDocuments_EntityIDArray(entity_: Entity_, {
|
|
1461
|
-
RecordChanges_EntityIDArray(entity_: Entity_, {
|
|
1462
|
-
ApplicationEntities_EntityIDArray(entity_: Entity_, {
|
|
1463
|
-
ResourceTypes_EntityIDArray(entity_: Entity_, {
|
|
1464
|
-
QueryEntities_EntityIDArray(entity_: Entity_, {
|
|
1465
|
-
CreateEntity(input: CreateEntityInput, {
|
|
1466
|
-
UpdateEntity(input: UpdateEntityInput, {
|
|
1467
|
-
DeleteEntity(ID: string, options: DeleteOptionsInput, {
|
|
1424
|
+
RunEntityViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1425
|
+
RunEntityViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1426
|
+
RunEntityDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1427
|
+
Entity(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Entity_ | null>;
|
|
1428
|
+
AllEntities({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1429
|
+
AuditLogs_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1430
|
+
TemplateParams_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1431
|
+
DatasetItems_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1432
|
+
Users_LinkedEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1433
|
+
CompanyIntegrationRecordMaps_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1434
|
+
Entities_ParentIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1435
|
+
UserViewCategories_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1436
|
+
EntityAIActions_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1437
|
+
EntityActions_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1438
|
+
Conversations_LinkedEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1439
|
+
DuplicateRuns_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1440
|
+
TaggedItems_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1441
|
+
RecordMergeLogs_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1442
|
+
UserApplicationEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1443
|
+
QueryFields_SourceEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1444
|
+
UserViews_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1445
|
+
RecommendationItems_DestinationEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1446
|
+
EntityPermissions_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1447
|
+
Lists_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1448
|
+
UserRecordLogs_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1449
|
+
EntityDocuments_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1450
|
+
Recommendations_SourceEntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1451
|
+
FileEntityRecordLinks_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1452
|
+
EntitySettings_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1453
|
+
EntityRelationships_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1454
|
+
CompanyIntegrationRunDetails_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1455
|
+
DataContextItems_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1456
|
+
IntegrationURLFormats_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1457
|
+
EntityFields_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1458
|
+
UserFavorites_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1459
|
+
EntityCommunicationMessageTypes_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1460
|
+
EntityRecordDocuments_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1461
|
+
RecordChanges_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1462
|
+
ApplicationEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1463
|
+
ResourceTypes_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1464
|
+
QueryEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1465
|
+
CreateEntity(input: CreateEntityInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1466
|
+
UpdateEntity(input: UpdateEntityInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1467
|
+
DeleteEntity(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1468
1468
|
}
|
|
1469
1469
|
export declare class User_ {
|
|
1470
1470
|
ID: string;
|
|
@@ -1563,51 +1563,51 @@ export declare class RunUserViewResult {
|
|
|
1563
1563
|
Success: boolean;
|
|
1564
1564
|
}
|
|
1565
1565
|
export declare class UserResolverBase extends ResolverBase {
|
|
1566
|
-
RunUserViewByID(input: RunViewByIDInput, {
|
|
1567
|
-
RunUserViewByName(input: RunViewByNameInput, {
|
|
1568
|
-
RunUserDynamicView(input: RunDynamicViewInput, {
|
|
1569
|
-
User(ID: string, {
|
|
1570
|
-
AllUsers({
|
|
1571
|
-
RecommendationRuns_RunByUserIDArray(user_: User_, {
|
|
1572
|
-
UserApplications_UserIDArray(user_: User_, {
|
|
1573
|
-
Dashboards_UserIDArray(user_: User_, {
|
|
1574
|
-
RecordChanges_UserIDArray(user_: User_, {
|
|
1575
|
-
Reports_UserIDArray(user_: User_, {
|
|
1576
|
-
DashboardCategories_UserIDArray(user_: User_, {
|
|
1577
|
-
Actions_CodeApprovedByUserIDArray(user_: User_, {
|
|
1578
|
-
QueryCategories_UserIDArray(user_: User_, {
|
|
1579
|
-
UserViewCategories_UserIDArray(user_: User_, {
|
|
1580
|
-
DataContexts_UserIDArray(user_: User_, {
|
|
1581
|
-
RecordMergeLogs_InitiatedByUserIDArray(user_: User_, {
|
|
1582
|
-
CompanyIntegrationRuns_RunByUserIDArray(user_: User_, {
|
|
1583
|
-
ReportCategories_UserIDArray(user_: User_, {
|
|
1584
|
-
RecordChangeReplayRuns_UserIDArray(user_: User_, {
|
|
1585
|
-
UserRoles_UserIDArray(user_: User_, {
|
|
1586
|
-
UserViewRuns_RunByUserIDArray(user_: User_, {
|
|
1587
|
-
Workspaces_UserIDArray(user_: User_, {
|
|
1588
|
-
Conversations_UserIDArray(user_: User_, {
|
|
1589
|
-
Lists_UserIDArray(user_: User_, {
|
|
1590
|
-
CommunicationRuns_UserIDArray(user_: User_, {
|
|
1591
|
-
ActionExecutionLogs_UserIDArray(user_: User_, {
|
|
1592
|
-
AuditLogs_UserIDArray(user_: User_, {
|
|
1593
|
-
ReportSnapshots_UserIDArray(user_: User_, {
|
|
1594
|
-
UserViews_UserIDArray(user_: User_, {
|
|
1595
|
-
TemplateCategories_UserIDArray(user_: User_, {
|
|
1596
|
-
DuplicateRuns_StartedByUserIDArray(user_: User_, {
|
|
1597
|
-
UserRecordLogs_UserIDArray(user_: User_, {
|
|
1598
|
-
UserNotifications_UserIDArray(user_: User_, {
|
|
1599
|
-
Templates_UserIDArray(user_: User_, {
|
|
1600
|
-
UserFavorites_UserIDArray(user_: User_, {
|
|
1601
|
-
ListCategories_UserIDArray(user_: User_, {
|
|
1602
|
-
ScheduledActions_CreatedByUserIDArray(user_: User_, {
|
|
1603
|
-
ResourceLinks_UserIDArray(user_: User_, {
|
|
1604
|
-
AIAgentRequests_ResponseByUserIDArray(user_: User_, {
|
|
1605
|
-
AIAgentNotes_UserIDArray(user_: User_, {
|
|
1606
|
-
ResourcePermissions_UserIDArray(user_: User_, {
|
|
1607
|
-
AIAgentRequests_RequestForUserIDArray(user_: User_, {
|
|
1608
|
-
CreateUser(input: CreateUserInput, {
|
|
1609
|
-
UpdateUser(input: UpdateUserInput, {
|
|
1610
|
-
DeleteUser(ID: string, options: DeleteOptionsInput, {
|
|
1566
|
+
RunUserViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1567
|
+
RunUserViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1568
|
+
RunUserDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1569
|
+
User(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<User_ | null>;
|
|
1570
|
+
AllUsers({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1571
|
+
RecommendationRuns_RunByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1572
|
+
UserApplications_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1573
|
+
Dashboards_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1574
|
+
RecordChanges_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1575
|
+
Reports_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1576
|
+
DashboardCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1577
|
+
Actions_CodeApprovedByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1578
|
+
QueryCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1579
|
+
UserViewCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1580
|
+
DataContexts_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1581
|
+
RecordMergeLogs_InitiatedByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1582
|
+
CompanyIntegrationRuns_RunByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1583
|
+
ReportCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1584
|
+
RecordChangeReplayRuns_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1585
|
+
UserRoles_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1586
|
+
UserViewRuns_RunByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1587
|
+
Workspaces_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1588
|
+
Conversations_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1589
|
+
Lists_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1590
|
+
CommunicationRuns_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1591
|
+
ActionExecutionLogs_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1592
|
+
AuditLogs_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1593
|
+
ReportSnapshots_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1594
|
+
UserViews_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1595
|
+
TemplateCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1596
|
+
DuplicateRuns_StartedByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1597
|
+
UserRecordLogs_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1598
|
+
UserNotifications_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1599
|
+
Templates_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1600
|
+
UserFavorites_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1601
|
+
ListCategories_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1602
|
+
ScheduledActions_CreatedByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1603
|
+
ResourceLinks_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1604
|
+
AIAgentRequests_ResponseByUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1605
|
+
AIAgentNotes_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1606
|
+
ResourcePermissions_UserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1607
|
+
AIAgentRequests_RequestForUserIDArray(user_: User_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1608
|
+
CreateUser(input: CreateUserInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1609
|
+
UpdateUser(input: UpdateUserInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1610
|
+
DeleteUser(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1611
1611
|
}
|
|
1612
1612
|
export declare class EntityRelationship_ {
|
|
1613
1613
|
ID: string;
|
|
@@ -1698,14 +1698,14 @@ export declare class RunEntityRelationshipViewResult {
|
|
|
1698
1698
|
Success: boolean;
|
|
1699
1699
|
}
|
|
1700
1700
|
export declare class EntityRelationshipResolver extends ResolverBase {
|
|
1701
|
-
RunEntityRelationshipViewByID(input: RunViewByIDInput, {
|
|
1702
|
-
RunEntityRelationshipViewByName(input: RunViewByNameInput, {
|
|
1703
|
-
RunEntityRelationshipDynamicView(input: RunDynamicViewInput, {
|
|
1704
|
-
EntityRelationship(ID: string, {
|
|
1705
|
-
AllEntityRelationships({
|
|
1706
|
-
CreateEntityRelationship(input: CreateEntityRelationshipInput, {
|
|
1707
|
-
UpdateEntityRelationship(input: UpdateEntityRelationshipInput, {
|
|
1708
|
-
DeleteEntityRelationship(ID: string, options: DeleteOptionsInput, {
|
|
1701
|
+
RunEntityRelationshipViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1702
|
+
RunEntityRelationshipViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1703
|
+
RunEntityRelationshipDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1704
|
+
EntityRelationship(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityRelationship_ | null>;
|
|
1705
|
+
AllEntityRelationships({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1706
|
+
CreateEntityRelationship(input: CreateEntityRelationshipInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1707
|
+
UpdateEntityRelationship(input: UpdateEntityRelationshipInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1708
|
+
DeleteEntityRelationship(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1709
1709
|
}
|
|
1710
1710
|
export declare class UserRecordLog_ {
|
|
1711
1711
|
ID: string;
|
|
@@ -1744,11 +1744,11 @@ export declare class RunUserRecordLogViewResult {
|
|
|
1744
1744
|
Success: boolean;
|
|
1745
1745
|
}
|
|
1746
1746
|
export declare class UserRecordLogResolver extends ResolverBase {
|
|
1747
|
-
RunUserRecordLogViewByID(input: RunViewByIDInput, {
|
|
1748
|
-
RunUserRecordLogViewByName(input: RunViewByNameInput, {
|
|
1749
|
-
RunUserRecordLogDynamicView(input: RunDynamicViewInput, {
|
|
1750
|
-
UserRecordLog(ID: string, {
|
|
1751
|
-
UpdateUserRecordLog(input: UpdateUserRecordLogInput, {
|
|
1747
|
+
RunUserRecordLogViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1748
|
+
RunUserRecordLogViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1749
|
+
RunUserRecordLogDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1750
|
+
UserRecordLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserRecordLog_ | null>;
|
|
1751
|
+
UpdateUserRecordLog(input: UpdateUserRecordLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1752
1752
|
}
|
|
1753
1753
|
export declare class UserView_ {
|
|
1754
1754
|
ID: string;
|
|
@@ -1831,17 +1831,17 @@ export declare class RunUserViewViewResult {
|
|
|
1831
1831
|
Success: boolean;
|
|
1832
1832
|
}
|
|
1833
1833
|
export declare class UserViewResolverBase extends ResolverBase {
|
|
1834
|
-
RunUserViewViewByID(input: RunViewByIDInput, {
|
|
1835
|
-
RunUserViewViewByName(input: RunViewByNameInput, {
|
|
1836
|
-
RunUserViewDynamicView(input: RunDynamicViewInput, {
|
|
1837
|
-
UserView(ID: string, {
|
|
1838
|
-
AllUserViews({
|
|
1839
|
-
DataContextItems_ViewIDArray(userview_: UserView_, {
|
|
1840
|
-
UserViewRuns_UserViewIDArray(userview_: UserView_, {
|
|
1841
|
-
EntityRelationships_DisplayUserViewGUIDArray(userview_: UserView_, {
|
|
1842
|
-
CreateUserView(input: CreateUserViewInput, {
|
|
1843
|
-
UpdateUserView(input: UpdateUserViewInput, {
|
|
1844
|
-
DeleteUserView(ID: string, options: DeleteOptionsInput, {
|
|
1834
|
+
RunUserViewViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1835
|
+
RunUserViewViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1836
|
+
RunUserViewDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1837
|
+
UserView(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserView_ | null>;
|
|
1838
|
+
AllUserViews({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1839
|
+
DataContextItems_ViewIDArray(userview_: UserView_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1840
|
+
UserViewRuns_UserViewIDArray(userview_: UserView_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1841
|
+
EntityRelationships_DisplayUserViewGUIDArray(userview_: UserView_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1842
|
+
CreateUserView(input: CreateUserViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1843
|
+
UpdateUserView(input: UpdateUserViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1844
|
+
DeleteUserView(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1845
1845
|
}
|
|
1846
1846
|
export declare class CompanyIntegrationRun_ {
|
|
1847
1847
|
ID: string;
|
|
@@ -1897,15 +1897,15 @@ export declare class RunCompanyIntegrationRunViewResult {
|
|
|
1897
1897
|
Success: boolean;
|
|
1898
1898
|
}
|
|
1899
1899
|
export declare class CompanyIntegrationRunResolver extends ResolverBase {
|
|
1900
|
-
RunCompanyIntegrationRunViewByID(input: RunViewByIDInput, {
|
|
1901
|
-
RunCompanyIntegrationRunViewByName(input: RunViewByNameInput, {
|
|
1902
|
-
RunCompanyIntegrationRunDynamicView(input: RunDynamicViewInput, {
|
|
1903
|
-
CompanyIntegrationRun(ID: string, {
|
|
1904
|
-
ErrorLogs_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, {
|
|
1905
|
-
CompanyIntegrationRunDetails_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, {
|
|
1906
|
-
CompanyIntegrationRunAPILogs_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, {
|
|
1907
|
-
CreateCompanyIntegrationRun(input: CreateCompanyIntegrationRunInput, {
|
|
1908
|
-
UpdateCompanyIntegrationRun(input: UpdateCompanyIntegrationRunInput, {
|
|
1900
|
+
RunCompanyIntegrationRunViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1901
|
+
RunCompanyIntegrationRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1902
|
+
RunCompanyIntegrationRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1903
|
+
CompanyIntegrationRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRun_ | null>;
|
|
1904
|
+
ErrorLogs_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1905
|
+
CompanyIntegrationRunDetails_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1906
|
+
CompanyIntegrationRunAPILogs_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1907
|
+
CreateCompanyIntegrationRun(input: CreateCompanyIntegrationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1908
|
+
UpdateCompanyIntegrationRun(input: UpdateCompanyIntegrationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1909
1909
|
}
|
|
1910
1910
|
export declare class CompanyIntegrationRunDetail_ {
|
|
1911
1911
|
ID: string;
|
|
@@ -1950,13 +1950,13 @@ export declare class RunCompanyIntegrationRunDetailViewResult {
|
|
|
1950
1950
|
Success: boolean;
|
|
1951
1951
|
}
|
|
1952
1952
|
export declare class CompanyIntegrationRunDetailResolver extends ResolverBase {
|
|
1953
|
-
RunCompanyIntegrationRunDetailViewByID(input: RunViewByIDInput, {
|
|
1954
|
-
RunCompanyIntegrationRunDetailViewByName(input: RunViewByNameInput, {
|
|
1955
|
-
RunCompanyIntegrationRunDetailDynamicView(input: RunDynamicViewInput, {
|
|
1956
|
-
CompanyIntegrationRunDetail(ID: string, {
|
|
1957
|
-
ErrorLogs_CompanyIntegrationRunDetailIDArray(companyintegrationrundetail_: CompanyIntegrationRunDetail_, {
|
|
1958
|
-
CreateCompanyIntegrationRunDetail(input: CreateCompanyIntegrationRunDetailInput, {
|
|
1959
|
-
UpdateCompanyIntegrationRunDetail(input: UpdateCompanyIntegrationRunDetailInput, {
|
|
1953
|
+
RunCompanyIntegrationRunDetailViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1954
|
+
RunCompanyIntegrationRunDetailViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1955
|
+
RunCompanyIntegrationRunDetailDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1956
|
+
CompanyIntegrationRunDetail(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRunDetail_ | null>;
|
|
1957
|
+
ErrorLogs_CompanyIntegrationRunDetailIDArray(companyintegrationrundetail_: CompanyIntegrationRunDetail_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
1958
|
+
CreateCompanyIntegrationRunDetail(input: CreateCompanyIntegrationRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1959
|
+
UpdateCompanyIntegrationRunDetail(input: UpdateCompanyIntegrationRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1960
1960
|
}
|
|
1961
1961
|
export declare class ErrorLog_ {
|
|
1962
1962
|
ID: string;
|
|
@@ -2003,12 +2003,12 @@ export declare class RunErrorLogViewResult {
|
|
|
2003
2003
|
Success: boolean;
|
|
2004
2004
|
}
|
|
2005
2005
|
export declare class ErrorLogResolver extends ResolverBase {
|
|
2006
|
-
RunErrorLogViewByID(input: RunViewByIDInput, {
|
|
2007
|
-
RunErrorLogViewByName(input: RunViewByNameInput, {
|
|
2008
|
-
RunErrorLogDynamicView(input: RunDynamicViewInput, {
|
|
2009
|
-
ErrorLog(ID: string, {
|
|
2010
|
-
CreateErrorLog(input: CreateErrorLogInput, {
|
|
2011
|
-
UpdateErrorLog(input: UpdateErrorLogInput, {
|
|
2006
|
+
RunErrorLogViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2007
|
+
RunErrorLogViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2008
|
+
RunErrorLogDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2009
|
+
ErrorLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ErrorLog_ | null>;
|
|
2010
|
+
CreateErrorLog(input: CreateErrorLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2011
|
+
UpdateErrorLog(input: UpdateErrorLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2012
2012
|
}
|
|
2013
2013
|
export declare class Application_ {
|
|
2014
2014
|
ID: string;
|
|
@@ -2046,17 +2046,17 @@ export declare class RunApplicationViewResult {
|
|
|
2046
2046
|
Success: boolean;
|
|
2047
2047
|
}
|
|
2048
2048
|
export declare class ApplicationResolver extends ResolverBase {
|
|
2049
|
-
RunApplicationViewByID(input: RunViewByIDInput, {
|
|
2050
|
-
RunApplicationViewByName(input: RunViewByNameInput, {
|
|
2051
|
-
RunApplicationDynamicView(input: RunDynamicViewInput, {
|
|
2052
|
-
Application(ID: string, {
|
|
2053
|
-
AllApplications({
|
|
2054
|
-
ApplicationSettings_ApplicationIDArray(application_: Application_, {
|
|
2055
|
-
UserApplications_ApplicationIDArray(application_: Application_, {
|
|
2056
|
-
ApplicationEntities_ApplicationIDArray(application_: Application_, {
|
|
2057
|
-
CreateApplication(input: CreateApplicationInput, {
|
|
2058
|
-
UpdateApplication(input: UpdateApplicationInput, {
|
|
2059
|
-
DeleteApplication(ID: string, options: DeleteOptionsInput, {
|
|
2049
|
+
RunApplicationViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2050
|
+
RunApplicationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2051
|
+
RunApplicationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2052
|
+
Application(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Application_ | null>;
|
|
2053
|
+
AllApplications({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2054
|
+
ApplicationSettings_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2055
|
+
UserApplications_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2056
|
+
ApplicationEntities_ApplicationIDArray(application_: Application_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2057
|
+
CreateApplication(input: CreateApplicationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2058
|
+
UpdateApplication(input: UpdateApplicationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2059
|
+
DeleteApplication(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2060
2060
|
}
|
|
2061
2061
|
export declare class ApplicationEntity_ {
|
|
2062
2062
|
ID: string;
|
|
@@ -2097,13 +2097,13 @@ export declare class RunApplicationEntityViewResult {
|
|
|
2097
2097
|
Success: boolean;
|
|
2098
2098
|
}
|
|
2099
2099
|
export declare class ApplicationEntityResolver extends ResolverBase {
|
|
2100
|
-
RunApplicationEntityViewByID(input: RunViewByIDInput, {
|
|
2101
|
-
RunApplicationEntityViewByName(input: RunViewByNameInput, {
|
|
2102
|
-
RunApplicationEntityDynamicView(input: RunDynamicViewInput, {
|
|
2103
|
-
ApplicationEntity(ID: string, {
|
|
2104
|
-
CreateApplicationEntity(input: CreateApplicationEntityInput, {
|
|
2105
|
-
UpdateApplicationEntity(input: UpdateApplicationEntityInput, {
|
|
2106
|
-
DeleteApplicationEntity(ID: string, options: DeleteOptionsInput, {
|
|
2100
|
+
RunApplicationEntityViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2101
|
+
RunApplicationEntityViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2102
|
+
RunApplicationEntityDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2103
|
+
ApplicationEntity(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ApplicationEntity_ | null>;
|
|
2104
|
+
CreateApplicationEntity(input: CreateApplicationEntityInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2105
|
+
UpdateApplicationEntity(input: UpdateApplicationEntityInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2106
|
+
DeleteApplicationEntity(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2107
2107
|
}
|
|
2108
2108
|
export declare class EntityPermission_ {
|
|
2109
2109
|
ID: string;
|
|
@@ -2163,14 +2163,14 @@ export declare class RunEntityPermissionViewResult {
|
|
|
2163
2163
|
Success: boolean;
|
|
2164
2164
|
}
|
|
2165
2165
|
export declare class EntityPermissionResolver extends ResolverBase {
|
|
2166
|
-
RunEntityPermissionViewByID(input: RunViewByIDInput, {
|
|
2167
|
-
RunEntityPermissionViewByName(input: RunViewByNameInput, {
|
|
2168
|
-
RunEntityPermissionDynamicView(input: RunDynamicViewInput, {
|
|
2169
|
-
EntityPermission(ID: string, {
|
|
2170
|
-
AllEntityPermissions({
|
|
2171
|
-
CreateEntityPermission(input: CreateEntityPermissionInput, {
|
|
2172
|
-
UpdateEntityPermission(input: UpdateEntityPermissionInput, {
|
|
2173
|
-
DeleteEntityPermission(ID: string, options: DeleteOptionsInput, {
|
|
2166
|
+
RunEntityPermissionViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2167
|
+
RunEntityPermissionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2168
|
+
RunEntityPermissionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2169
|
+
EntityPermission(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityPermission_ | null>;
|
|
2170
|
+
AllEntityPermissions({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2171
|
+
CreateEntityPermission(input: CreateEntityPermissionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2172
|
+
UpdateEntityPermission(input: UpdateEntityPermissionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2173
|
+
DeleteEntityPermission(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2174
2174
|
}
|
|
2175
2175
|
export declare class UserApplicationEntity_ {
|
|
2176
2176
|
ID: string;
|
|
@@ -2205,13 +2205,13 @@ export declare class RunUserApplicationEntityViewResult {
|
|
|
2205
2205
|
Success: boolean;
|
|
2206
2206
|
}
|
|
2207
2207
|
export declare class UserApplicationEntityResolver extends ResolverBase {
|
|
2208
|
-
RunUserApplicationEntityViewByID(input: RunViewByIDInput, {
|
|
2209
|
-
RunUserApplicationEntityViewByName(input: RunViewByNameInput, {
|
|
2210
|
-
RunUserApplicationEntityDynamicView(input: RunDynamicViewInput, {
|
|
2211
|
-
UserApplicationEntity(ID: string, {
|
|
2212
|
-
CreateUserApplicationEntity(input: CreateUserApplicationEntityInput, {
|
|
2213
|
-
UpdateUserApplicationEntity(input: UpdateUserApplicationEntityInput, {
|
|
2214
|
-
DeleteUserApplicationEntity(ID: string, options: DeleteOptionsInput, {
|
|
2208
|
+
RunUserApplicationEntityViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2209
|
+
RunUserApplicationEntityViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2210
|
+
RunUserApplicationEntityDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2211
|
+
UserApplicationEntity(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserApplicationEntity_ | null>;
|
|
2212
|
+
CreateUserApplicationEntity(input: CreateUserApplicationEntityInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2213
|
+
UpdateUserApplicationEntity(input: UpdateUserApplicationEntityInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2214
|
+
DeleteUserApplicationEntity(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2215
2215
|
}
|
|
2216
2216
|
export declare class UserApplication_ {
|
|
2217
2217
|
ID: string;
|
|
@@ -2249,14 +2249,14 @@ export declare class RunUserApplicationViewResult {
|
|
|
2249
2249
|
Success: boolean;
|
|
2250
2250
|
}
|
|
2251
2251
|
export declare class UserApplicationResolver extends ResolverBase {
|
|
2252
|
-
RunUserApplicationViewByID(input: RunViewByIDInput, {
|
|
2253
|
-
RunUserApplicationViewByName(input: RunViewByNameInput, {
|
|
2254
|
-
RunUserApplicationDynamicView(input: RunDynamicViewInput, {
|
|
2255
|
-
UserApplication(ID: string, {
|
|
2256
|
-
UserApplicationEntities_UserApplicationIDArray(userapplication_: UserApplication_, {
|
|
2257
|
-
CreateUserApplication(input: CreateUserApplicationInput, {
|
|
2258
|
-
UpdateUserApplication(input: UpdateUserApplicationInput, {
|
|
2259
|
-
DeleteUserApplication(ID: string, options: DeleteOptionsInput, {
|
|
2252
|
+
RunUserApplicationViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2253
|
+
RunUserApplicationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2254
|
+
RunUserApplicationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2255
|
+
UserApplication(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserApplication_ | null>;
|
|
2256
|
+
UserApplicationEntities_UserApplicationIDArray(userapplication_: UserApplication_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2257
|
+
CreateUserApplication(input: CreateUserApplicationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2258
|
+
UpdateUserApplication(input: UpdateUserApplicationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2259
|
+
DeleteUserApplication(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2260
2260
|
}
|
|
2261
2261
|
export declare class CompanyIntegrationRunAPILog_ {
|
|
2262
2262
|
ID: string;
|
|
@@ -2297,12 +2297,12 @@ export declare class RunCompanyIntegrationRunAPILogViewResult {
|
|
|
2297
2297
|
Success: boolean;
|
|
2298
2298
|
}
|
|
2299
2299
|
export declare class CompanyIntegrationRunAPILogResolver extends ResolverBase {
|
|
2300
|
-
RunCompanyIntegrationRunAPILogViewByID(input: RunViewByIDInput, {
|
|
2301
|
-
RunCompanyIntegrationRunAPILogViewByName(input: RunViewByNameInput, {
|
|
2302
|
-
RunCompanyIntegrationRunAPILogDynamicView(input: RunDynamicViewInput, {
|
|
2303
|
-
CompanyIntegrationRunAPILog(ID: string, {
|
|
2304
|
-
CreateCompanyIntegrationRunAPILog(input: CreateCompanyIntegrationRunAPILogInput, {
|
|
2305
|
-
UpdateCompanyIntegrationRunAPILog(input: UpdateCompanyIntegrationRunAPILogInput, {
|
|
2300
|
+
RunCompanyIntegrationRunAPILogViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2301
|
+
RunCompanyIntegrationRunAPILogViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2302
|
+
RunCompanyIntegrationRunAPILogDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2303
|
+
CompanyIntegrationRunAPILog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRunAPILog_ | null>;
|
|
2304
|
+
CreateCompanyIntegrationRunAPILog(input: CreateCompanyIntegrationRunAPILogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2305
|
+
UpdateCompanyIntegrationRunAPILog(input: UpdateCompanyIntegrationRunAPILogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2306
2306
|
}
|
|
2307
2307
|
export declare class List_ {
|
|
2308
2308
|
ID: string;
|
|
@@ -2351,15 +2351,15 @@ export declare class RunListViewResult {
|
|
|
2351
2351
|
Success: boolean;
|
|
2352
2352
|
}
|
|
2353
2353
|
export declare class ListResolver extends ResolverBase {
|
|
2354
|
-
RunListViewByID(input: RunViewByIDInput, {
|
|
2355
|
-
RunListViewByName(input: RunViewByNameInput, {
|
|
2356
|
-
RunListDynamicView(input: RunDynamicViewInput, {
|
|
2357
|
-
List(ID: string, {
|
|
2358
|
-
ListDetails_ListIDArray(list_: List_, {
|
|
2359
|
-
DuplicateRuns_SourceListIDArray(list_: List_, {
|
|
2360
|
-
CreateList(input: CreateListInput, {
|
|
2361
|
-
UpdateList(input: UpdateListInput, {
|
|
2362
|
-
DeleteList(ID: string, options: DeleteOptionsInput, {
|
|
2354
|
+
RunListViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2355
|
+
RunListViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2356
|
+
RunListDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2357
|
+
List(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<List_ | null>;
|
|
2358
|
+
ListDetails_ListIDArray(list_: List_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2359
|
+
DuplicateRuns_SourceListIDArray(list_: List_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2360
|
+
CreateList(input: CreateListInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2361
|
+
UpdateList(input: UpdateListInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2362
|
+
DeleteList(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2363
2363
|
}
|
|
2364
2364
|
export declare class ListDetail_ {
|
|
2365
2365
|
ID: string;
|
|
@@ -2398,13 +2398,13 @@ export declare class RunListDetailViewResult {
|
|
|
2398
2398
|
Success: boolean;
|
|
2399
2399
|
}
|
|
2400
2400
|
export declare class ListDetailResolver extends ResolverBase {
|
|
2401
|
-
RunListDetailViewByID(input: RunViewByIDInput, {
|
|
2402
|
-
RunListDetailViewByName(input: RunViewByNameInput, {
|
|
2403
|
-
RunListDetailDynamicView(input: RunDynamicViewInput, {
|
|
2404
|
-
ListDetail(ID: string, {
|
|
2405
|
-
CreateListDetail(input: CreateListDetailInput, {
|
|
2406
|
-
UpdateListDetail(input: UpdateListDetailInput, {
|
|
2407
|
-
DeleteListDetail(ID: string, options: DeleteOptionsInput, {
|
|
2401
|
+
RunListDetailViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2402
|
+
RunListDetailViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2403
|
+
RunListDetailDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2404
|
+
ListDetail(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ListDetail_ | null>;
|
|
2405
|
+
CreateListDetail(input: CreateListDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2406
|
+
UpdateListDetail(input: UpdateListDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2407
|
+
DeleteListDetail(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2408
2408
|
}
|
|
2409
2409
|
export declare class UserViewRun_ {
|
|
2410
2410
|
ID: string;
|
|
@@ -2439,13 +2439,13 @@ export declare class RunUserViewRunViewResult {
|
|
|
2439
2439
|
Success: boolean;
|
|
2440
2440
|
}
|
|
2441
2441
|
export declare class UserViewRunResolver extends ResolverBase {
|
|
2442
|
-
RunUserViewRunViewByID(input: RunViewByIDInput, {
|
|
2443
|
-
RunUserViewRunViewByName(input: RunViewByNameInput, {
|
|
2444
|
-
RunUserViewRunDynamicView(input: RunDynamicViewInput, {
|
|
2445
|
-
UserViewRun(ID: string, {
|
|
2446
|
-
UserViewRunDetails_UserViewRunIDArray(userviewrun_: UserViewRun_, {
|
|
2447
|
-
CreateUserViewRun(input: CreateUserViewRunInput, {
|
|
2448
|
-
UpdateUserViewRun(input: UpdateUserViewRunInput, {
|
|
2442
|
+
RunUserViewRunViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2443
|
+
RunUserViewRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2444
|
+
RunUserViewRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2445
|
+
UserViewRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserViewRun_ | null>;
|
|
2446
|
+
UserViewRunDetails_UserViewRunIDArray(userviewrun_: UserViewRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2447
|
+
CreateUserViewRun(input: CreateUserViewRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2448
|
+
UpdateUserViewRun(input: UpdateUserViewRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2449
2449
|
}
|
|
2450
2450
|
export declare class UserViewRunDetail_ {
|
|
2451
2451
|
ID: string;
|
|
@@ -2476,12 +2476,12 @@ export declare class RunUserViewRunDetailViewResult {
|
|
|
2476
2476
|
Success: boolean;
|
|
2477
2477
|
}
|
|
2478
2478
|
export declare class UserViewRunDetailResolver extends ResolverBase {
|
|
2479
|
-
RunUserViewRunDetailViewByID(input: RunViewByIDInput, {
|
|
2480
|
-
RunUserViewRunDetailViewByName(input: RunViewByNameInput, {
|
|
2481
|
-
RunUserViewRunDetailDynamicView(input: RunDynamicViewInput, {
|
|
2482
|
-
UserViewRunDetail(ID: string, {
|
|
2483
|
-
CreateUserViewRunDetail(input: CreateUserViewRunDetailInput, {
|
|
2484
|
-
UpdateUserViewRunDetail(input: UpdateUserViewRunDetailInput, {
|
|
2479
|
+
RunUserViewRunDetailViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2480
|
+
RunUserViewRunDetailViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2481
|
+
RunUserViewRunDetailDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2482
|
+
UserViewRunDetail(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserViewRunDetail_ | null>;
|
|
2483
|
+
CreateUserViewRunDetail(input: CreateUserViewRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2484
|
+
UpdateUserViewRunDetail(input: UpdateUserViewRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2485
2485
|
}
|
|
2486
2486
|
export declare class WorkflowRun_ {
|
|
2487
2487
|
ID: string;
|
|
@@ -2516,11 +2516,11 @@ export declare class RunWorkflowRunViewResult {
|
|
|
2516
2516
|
Success: boolean;
|
|
2517
2517
|
}
|
|
2518
2518
|
export declare class WorkflowRunResolver extends ResolverBase {
|
|
2519
|
-
RunWorkflowRunViewByID(input: RunViewByIDInput, {
|
|
2520
|
-
RunWorkflowRunViewByName(input: RunViewByNameInput, {
|
|
2521
|
-
RunWorkflowRunDynamicView(input: RunDynamicViewInput, {
|
|
2522
|
-
WorkflowRun(ID: string, {
|
|
2523
|
-
UpdateWorkflowRun(input: UpdateWorkflowRunInput, {
|
|
2519
|
+
RunWorkflowRunViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2520
|
+
RunWorkflowRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2521
|
+
RunWorkflowRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2522
|
+
WorkflowRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<WorkflowRun_ | null>;
|
|
2523
|
+
UpdateWorkflowRun(input: UpdateWorkflowRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2524
2524
|
}
|
|
2525
2525
|
export declare class Workflow_ {
|
|
2526
2526
|
ID: string;
|
|
@@ -2560,13 +2560,13 @@ export declare class RunWorkflowViewResult {
|
|
|
2560
2560
|
Success: boolean;
|
|
2561
2561
|
}
|
|
2562
2562
|
export declare class WorkflowResolver extends ResolverBase {
|
|
2563
|
-
RunWorkflowViewByID(input: RunViewByIDInput, {
|
|
2564
|
-
RunWorkflowViewByName(input: RunViewByNameInput, {
|
|
2565
|
-
RunWorkflowDynamicView(input: RunDynamicViewInput, {
|
|
2566
|
-
Workflow(ID: string, {
|
|
2567
|
-
Reports_OutputWorkflowIDArray(workflow_: Workflow_, {
|
|
2568
|
-
WorkflowRuns_WorkflowNameArray(workflow_: Workflow_, {
|
|
2569
|
-
UpdateWorkflow(input: UpdateWorkflowInput, {
|
|
2563
|
+
RunWorkflowViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2564
|
+
RunWorkflowViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2565
|
+
RunWorkflowDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2566
|
+
Workflow(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Workflow_ | null>;
|
|
2567
|
+
Reports_OutputWorkflowIDArray(workflow_: Workflow_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2568
|
+
WorkflowRuns_WorkflowNameArray(workflow_: Workflow_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2569
|
+
UpdateWorkflow(input: UpdateWorkflowInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2570
2570
|
}
|
|
2571
2571
|
export declare class WorkflowEngine_ {
|
|
2572
2572
|
ID: string;
|
|
@@ -2596,13 +2596,13 @@ export declare class RunWorkflowEngineViewResult {
|
|
|
2596
2596
|
Success: boolean;
|
|
2597
2597
|
}
|
|
2598
2598
|
export declare class WorkflowEngineResolver extends ResolverBase {
|
|
2599
|
-
RunWorkflowEngineViewByID(input: RunViewByIDInput, {
|
|
2600
|
-
RunWorkflowEngineViewByName(input: RunViewByNameInput, {
|
|
2601
|
-
RunWorkflowEngineDynamicView(input: RunDynamicViewInput, {
|
|
2602
|
-
WorkflowEngine(ID: string, {
|
|
2603
|
-
Workflows_WorkflowEngineNameArray(workflowengine_: WorkflowEngine_, {
|
|
2604
|
-
UpdateWorkflowEngine(input: UpdateWorkflowEngineInput, {
|
|
2605
|
-
DeleteWorkflowEngine(ID: string, options: DeleteOptionsInput, {
|
|
2599
|
+
RunWorkflowEngineViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2600
|
+
RunWorkflowEngineViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2601
|
+
RunWorkflowEngineDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2602
|
+
WorkflowEngine(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<WorkflowEngine_ | null>;
|
|
2603
|
+
Workflows_WorkflowEngineNameArray(workflowengine_: WorkflowEngine_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2604
|
+
UpdateWorkflowEngine(input: UpdateWorkflowEngineInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2605
|
+
DeleteWorkflowEngine(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2606
2606
|
}
|
|
2607
2607
|
export declare class RecordChange_ {
|
|
2608
2608
|
ID: string;
|
|
@@ -2670,12 +2670,12 @@ export declare class RunRecordChangeViewResult {
|
|
|
2670
2670
|
Success: boolean;
|
|
2671
2671
|
}
|
|
2672
2672
|
export declare class RecordChangeResolver extends ResolverBase {
|
|
2673
|
-
RunRecordChangeViewByID(input: RunViewByIDInput, {
|
|
2674
|
-
RunRecordChangeViewByName(input: RunViewByNameInput, {
|
|
2675
|
-
RunRecordChangeDynamicView(input: RunDynamicViewInput, {
|
|
2676
|
-
RecordChange(ID: string, {
|
|
2677
|
-
CreateRecordChange(input: CreateRecordChangeInput, {
|
|
2678
|
-
UpdateRecordChange(input: UpdateRecordChangeInput, {
|
|
2673
|
+
RunRecordChangeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2674
|
+
RunRecordChangeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2675
|
+
RunRecordChangeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2676
|
+
RecordChange(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordChange_ | null>;
|
|
2677
|
+
CreateRecordChange(input: CreateRecordChangeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2678
|
+
UpdateRecordChange(input: UpdateRecordChangeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2679
2679
|
}
|
|
2680
2680
|
export declare class UserRole_ {
|
|
2681
2681
|
ID: string;
|
|
@@ -2700,13 +2700,13 @@ export declare class RunUserRoleViewResult {
|
|
|
2700
2700
|
Success: boolean;
|
|
2701
2701
|
}
|
|
2702
2702
|
export declare class UserRoleResolver extends ResolverBase {
|
|
2703
|
-
RunUserRoleViewByID(input: RunViewByIDInput, {
|
|
2704
|
-
RunUserRoleViewByName(input: RunViewByNameInput, {
|
|
2705
|
-
RunUserRoleDynamicView(input: RunDynamicViewInput, {
|
|
2706
|
-
UserRole(ID: string, {
|
|
2707
|
-
AllUserRoles({
|
|
2708
|
-
CreateUserRole(input: CreateUserRoleInput, {
|
|
2709
|
-
DeleteUserRole(ID: string, options: DeleteOptionsInput, {
|
|
2703
|
+
RunUserRoleViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2704
|
+
RunUserRoleViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2705
|
+
RunUserRoleDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2706
|
+
UserRole(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserRole_ | null>;
|
|
2707
|
+
AllUserRoles({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2708
|
+
CreateUserRole(input: CreateUserRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2709
|
+
DeleteUserRole(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2710
2710
|
}
|
|
2711
2711
|
export declare class RowLevelSecurityFilter_ {
|
|
2712
2712
|
ID: string;
|
|
@@ -2727,12 +2727,12 @@ export declare class RunRowLevelSecurityFilterViewResult {
|
|
|
2727
2727
|
Success: boolean;
|
|
2728
2728
|
}
|
|
2729
2729
|
export declare class RowLevelSecurityFilterResolver extends ResolverBase {
|
|
2730
|
-
RunRowLevelSecurityFilterViewByID(input: RunViewByIDInput, {
|
|
2731
|
-
RunRowLevelSecurityFilterViewByName(input: RunViewByNameInput, {
|
|
2732
|
-
RunRowLevelSecurityFilterDynamicView(input: RunDynamicViewInput, {
|
|
2733
|
-
RowLevelSecurityFilter(ID: string, {
|
|
2734
|
-
AllRowLevelSecurityFilters({
|
|
2735
|
-
EntityPermissions_ReadRLSFilterIDArray(rowlevelsecurityfilter_: RowLevelSecurityFilter_, {
|
|
2730
|
+
RunRowLevelSecurityFilterViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2731
|
+
RunRowLevelSecurityFilterViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2732
|
+
RunRowLevelSecurityFilterDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2733
|
+
RowLevelSecurityFilter(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RowLevelSecurityFilter_ | null>;
|
|
2734
|
+
AllRowLevelSecurityFilters({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2735
|
+
EntityPermissions_ReadRLSFilterIDArray(rowlevelsecurityfilter_: RowLevelSecurityFilter_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2736
2736
|
}
|
|
2737
2737
|
export declare class AuditLog_ {
|
|
2738
2738
|
ID: string;
|
|
@@ -2783,12 +2783,12 @@ export declare class RunAuditLogViewResult {
|
|
|
2783
2783
|
Success: boolean;
|
|
2784
2784
|
}
|
|
2785
2785
|
export declare class AuditLogResolver extends ResolverBase {
|
|
2786
|
-
RunAuditLogViewByID(input: RunViewByIDInput, {
|
|
2787
|
-
RunAuditLogViewByName(input: RunViewByNameInput, {
|
|
2788
|
-
RunAuditLogDynamicView(input: RunDynamicViewInput, {
|
|
2789
|
-
AuditLog(ID: string, {
|
|
2790
|
-
CreateAuditLog(input: CreateAuditLogInput, {
|
|
2791
|
-
UpdateAuditLog(input: UpdateAuditLogInput, {
|
|
2786
|
+
RunAuditLogViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2787
|
+
RunAuditLogViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2788
|
+
RunAuditLogDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2789
|
+
AuditLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AuditLog_ | null>;
|
|
2790
|
+
CreateAuditLog(input: CreateAuditLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2791
|
+
UpdateAuditLog(input: UpdateAuditLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2792
2792
|
}
|
|
2793
2793
|
export declare class Authorization_ {
|
|
2794
2794
|
ID: string;
|
|
@@ -2816,16 +2816,16 @@ export declare class RunAuthorizationViewResult {
|
|
|
2816
2816
|
Success: boolean;
|
|
2817
2817
|
}
|
|
2818
2818
|
export declare class AuthorizationResolver extends ResolverBase {
|
|
2819
|
-
RunAuthorizationViewByID(input: RunViewByIDInput, {
|
|
2820
|
-
RunAuthorizationViewByName(input: RunViewByNameInput, {
|
|
2821
|
-
RunAuthorizationDynamicView(input: RunDynamicViewInput, {
|
|
2822
|
-
Authorization(ID: string, {
|
|
2823
|
-
AllAuthorizations({
|
|
2824
|
-
AuthorizationRoles_AuthorizationIDArray(authorization_: Authorization_, {
|
|
2825
|
-
ActionAuthorizations_AuthorizationIDArray(authorization_: Authorization_, {
|
|
2826
|
-
Authorizations_ParentIDArray(authorization_: Authorization_, {
|
|
2827
|
-
AuditLogs_AuthorizationNameArray(authorization_: Authorization_, {
|
|
2828
|
-
AuditLogTypes_AuthorizationNameArray(authorization_: Authorization_, {
|
|
2819
|
+
RunAuthorizationViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2820
|
+
RunAuthorizationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2821
|
+
RunAuthorizationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2822
|
+
Authorization(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Authorization_ | null>;
|
|
2823
|
+
AllAuthorizations({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2824
|
+
AuthorizationRoles_AuthorizationIDArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2825
|
+
ActionAuthorizations_AuthorizationIDArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2826
|
+
Authorizations_ParentIDArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2827
|
+
AuditLogs_AuthorizationNameArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2828
|
+
AuditLogTypes_AuthorizationNameArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2829
2829
|
}
|
|
2830
2830
|
export declare class AuthorizationRole_ {
|
|
2831
2831
|
ID: string;
|
|
@@ -2847,11 +2847,11 @@ export declare class RunAuthorizationRoleViewResult {
|
|
|
2847
2847
|
Success: boolean;
|
|
2848
2848
|
}
|
|
2849
2849
|
export declare class AuthorizationRoleResolver extends ResolverBase {
|
|
2850
|
-
RunAuthorizationRoleViewByID(input: RunViewByIDInput, {
|
|
2851
|
-
RunAuthorizationRoleViewByName(input: RunViewByNameInput, {
|
|
2852
|
-
RunAuthorizationRoleDynamicView(input: RunDynamicViewInput, {
|
|
2853
|
-
AuthorizationRole(ID: string, {
|
|
2854
|
-
AllAuthorizationRoles({
|
|
2850
|
+
RunAuthorizationRoleViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2851
|
+
RunAuthorizationRoleViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2852
|
+
RunAuthorizationRoleDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2853
|
+
AuthorizationRole(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AuthorizationRole_ | null>;
|
|
2854
|
+
AllAuthorizationRoles({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2855
2855
|
}
|
|
2856
2856
|
export declare class AuditLogType_ {
|
|
2857
2857
|
ID: string;
|
|
@@ -2876,13 +2876,13 @@ export declare class RunAuditLogTypeViewResult {
|
|
|
2876
2876
|
Success: boolean;
|
|
2877
2877
|
}
|
|
2878
2878
|
export declare class AuditLogTypeResolver extends ResolverBase {
|
|
2879
|
-
RunAuditLogTypeViewByID(input: RunViewByIDInput, {
|
|
2880
|
-
RunAuditLogTypeViewByName(input: RunViewByNameInput, {
|
|
2881
|
-
RunAuditLogTypeDynamicView(input: RunDynamicViewInput, {
|
|
2882
|
-
AuditLogType(ID: string, {
|
|
2883
|
-
AllAuditLogTypes({
|
|
2884
|
-
AuditLogTypes_ParentIDArray(auditlogtype_: AuditLogType_, {
|
|
2885
|
-
AuditLogs_AuditLogTypeNameArray(auditlogtype_: AuditLogType_, {
|
|
2879
|
+
RunAuditLogTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2880
|
+
RunAuditLogTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2881
|
+
RunAuditLogTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2882
|
+
AuditLogType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AuditLogType_ | null>;
|
|
2883
|
+
AllAuditLogTypes({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2884
|
+
AuditLogTypes_ParentIDArray(auditlogtype_: AuditLogType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2885
|
+
AuditLogs_AuditLogTypeNameArray(auditlogtype_: AuditLogType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2886
2886
|
}
|
|
2887
2887
|
export declare class EntityFieldValue_ {
|
|
2888
2888
|
ID: string;
|
|
@@ -2916,12 +2916,12 @@ export declare class RunEntityFieldValueViewResult {
|
|
|
2916
2916
|
Success: boolean;
|
|
2917
2917
|
}
|
|
2918
2918
|
export declare class EntityFieldValueResolver extends ResolverBase {
|
|
2919
|
-
RunEntityFieldValueViewByID(input: RunViewByIDInput, {
|
|
2920
|
-
RunEntityFieldValueViewByName(input: RunViewByNameInput, {
|
|
2921
|
-
RunEntityFieldValueDynamicView(input: RunDynamicViewInput, {
|
|
2922
|
-
EntityFieldValue(ID: string, {
|
|
2923
|
-
AllEntityFieldValues({
|
|
2924
|
-
UpdateEntityFieldValue(input: UpdateEntityFieldValueInput, {
|
|
2919
|
+
RunEntityFieldValueViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2920
|
+
RunEntityFieldValueViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2921
|
+
RunEntityFieldValueDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2922
|
+
EntityFieldValue(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityFieldValue_ | null>;
|
|
2923
|
+
AllEntityFieldValues({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
2924
|
+
UpdateEntityFieldValue(input: UpdateEntityFieldValueInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2925
2925
|
}
|
|
2926
2926
|
export declare class AIModel_ {
|
|
2927
2927
|
ID: string;
|
|
@@ -2995,22 +2995,22 @@ export declare class RunAIModelViewResult {
|
|
|
2995
2995
|
Success: boolean;
|
|
2996
2996
|
}
|
|
2997
2997
|
export declare class AIModelResolver extends ResolverBase {
|
|
2998
|
-
RunAIModelViewByID(input: RunViewByIDInput, {
|
|
2999
|
-
RunAIModelViewByName(input: RunViewByNameInput, {
|
|
3000
|
-
RunAIModelDynamicView(input: RunDynamicViewInput, {
|
|
3001
|
-
AIModel(ID: string, {
|
|
3002
|
-
AllAIModels({
|
|
3003
|
-
AIActions_DefaultModelIDArray(aimodel_: AIModel_, {
|
|
3004
|
-
EntityDocuments_AIModelIDArray(aimodel_: AIModel_, {
|
|
3005
|
-
AIModelActions_AIModelIDArray(aimodel_: AIModel_, {
|
|
3006
|
-
VectorIndexes_EmbeddingModelIDArray(aimodel_: AIModel_, {
|
|
3007
|
-
ContentTypes_AIModelIDArray(aimodel_: AIModel_, {
|
|
3008
|
-
AIResultCache_AIModelIDArray(aimodel_: AIModel_, {
|
|
3009
|
-
EntityAIActions_AIModelIDArray(aimodel_: AIModel_, {
|
|
3010
|
-
AIAgentModels_ModelIDArray(aimodel_: AIModel_, {
|
|
3011
|
-
CreateAIModel(input: CreateAIModelInput, {
|
|
3012
|
-
UpdateAIModel(input: UpdateAIModelInput, {
|
|
3013
|
-
DeleteAIModel(ID: string, options: DeleteOptionsInput, {
|
|
2998
|
+
RunAIModelViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2999
|
+
RunAIModelViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3000
|
+
RunAIModelDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3001
|
+
AIModel(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModel_ | null>;
|
|
3002
|
+
AllAIModels({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3003
|
+
AIActions_DefaultModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3004
|
+
EntityDocuments_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3005
|
+
AIModelActions_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3006
|
+
VectorIndexes_EmbeddingModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3007
|
+
ContentTypes_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3008
|
+
AIResultCache_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3009
|
+
EntityAIActions_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3010
|
+
AIAgentModels_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3011
|
+
CreateAIModel(input: CreateAIModelInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3012
|
+
UpdateAIModel(input: UpdateAIModelInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3013
|
+
DeleteAIModel(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3014
3014
|
}
|
|
3015
3015
|
export declare class AIAction_ {
|
|
3016
3016
|
ID: string;
|
|
@@ -3051,16 +3051,16 @@ export declare class RunAIActionViewResult {
|
|
|
3051
3051
|
Success: boolean;
|
|
3052
3052
|
}
|
|
3053
3053
|
export declare class AIActionResolver extends ResolverBase {
|
|
3054
|
-
RunAIActionViewByID(input: RunViewByIDInput, {
|
|
3055
|
-
RunAIActionViewByName(input: RunViewByNameInput, {
|
|
3056
|
-
RunAIActionDynamicView(input: RunDynamicViewInput, {
|
|
3057
|
-
AIAction(ID: string, {
|
|
3058
|
-
AllAIActions({
|
|
3059
|
-
AIModelActions_AIActionIDArray(aiaction_: AIAction_, {
|
|
3060
|
-
EntityAIActions_AIActionIDArray(aiaction_: AIAction_, {
|
|
3061
|
-
CreateAIAction(input: CreateAIActionInput, {
|
|
3062
|
-
UpdateAIAction(input: UpdateAIActionInput, {
|
|
3063
|
-
DeleteAIAction(ID: string, options: DeleteOptionsInput, {
|
|
3054
|
+
RunAIActionViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3055
|
+
RunAIActionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3056
|
+
RunAIActionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3057
|
+
AIAction(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAction_ | null>;
|
|
3058
|
+
AllAIActions({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3059
|
+
AIModelActions_AIActionIDArray(aiaction_: AIAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3060
|
+
EntityAIActions_AIActionIDArray(aiaction_: AIAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3061
|
+
CreateAIAction(input: CreateAIActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3062
|
+
UpdateAIAction(input: UpdateAIActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3063
|
+
DeleteAIAction(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3064
3064
|
}
|
|
3065
3065
|
export declare class AIModelAction_ {
|
|
3066
3066
|
ID: string;
|
|
@@ -3094,14 +3094,14 @@ export declare class RunAIModelActionViewResult {
|
|
|
3094
3094
|
Success: boolean;
|
|
3095
3095
|
}
|
|
3096
3096
|
export declare class AIModelActionResolver extends ResolverBase {
|
|
3097
|
-
RunAIModelActionViewByID(input: RunViewByIDInput, {
|
|
3098
|
-
RunAIModelActionViewByName(input: RunViewByNameInput, {
|
|
3099
|
-
RunAIModelActionDynamicView(input: RunDynamicViewInput, {
|
|
3100
|
-
AIModelAction(ID: string, {
|
|
3101
|
-
AllAIModelActions({
|
|
3102
|
-
CreateAIModelAction(input: CreateAIModelActionInput, {
|
|
3103
|
-
UpdateAIModelAction(input: UpdateAIModelActionInput, {
|
|
3104
|
-
DeleteAIModelAction(ID: string, options: DeleteOptionsInput, {
|
|
3097
|
+
RunAIModelActionViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3098
|
+
RunAIModelActionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3099
|
+
RunAIModelActionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3100
|
+
AIModelAction(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModelAction_ | null>;
|
|
3101
|
+
AllAIModelActions({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3102
|
+
CreateAIModelAction(input: CreateAIModelActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3103
|
+
UpdateAIModelAction(input: UpdateAIModelActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3104
|
+
DeleteAIModelAction(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3105
3105
|
}
|
|
3106
3106
|
export declare class EntityAIAction_ {
|
|
3107
3107
|
ID: string;
|
|
@@ -3164,14 +3164,14 @@ export declare class RunEntityAIActionViewResult {
|
|
|
3164
3164
|
Success: boolean;
|
|
3165
3165
|
}
|
|
3166
3166
|
export declare class EntityAIActionResolver extends ResolverBase {
|
|
3167
|
-
RunEntityAIActionViewByID(input: RunViewByIDInput, {
|
|
3168
|
-
RunEntityAIActionViewByName(input: RunViewByNameInput, {
|
|
3169
|
-
RunEntityAIActionDynamicView(input: RunDynamicViewInput, {
|
|
3170
|
-
EntityAIAction(ID: string, {
|
|
3171
|
-
AllEntityAIActions({
|
|
3172
|
-
CreateEntityAIAction(input: CreateEntityAIActionInput, {
|
|
3173
|
-
UpdateEntityAIAction(input: UpdateEntityAIActionInput, {
|
|
3174
|
-
DeleteEntityAIAction(ID: string, options: DeleteOptionsInput, {
|
|
3167
|
+
RunEntityAIActionViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3168
|
+
RunEntityAIActionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3169
|
+
RunEntityAIActionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3170
|
+
EntityAIAction(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityAIAction_ | null>;
|
|
3171
|
+
AllEntityAIActions({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3172
|
+
CreateEntityAIAction(input: CreateEntityAIActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3173
|
+
UpdateEntityAIAction(input: UpdateEntityAIActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3174
|
+
DeleteEntityAIAction(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3175
3175
|
}
|
|
3176
3176
|
export declare class AIModelType_ {
|
|
3177
3177
|
ID: string;
|
|
@@ -3201,15 +3201,15 @@ export declare class RunAIModelTypeViewResult {
|
|
|
3201
3201
|
Success: boolean;
|
|
3202
3202
|
}
|
|
3203
3203
|
export declare class AIModelTypeResolver extends ResolverBase {
|
|
3204
|
-
RunAIModelTypeViewByID(input: RunViewByIDInput, {
|
|
3205
|
-
RunAIModelTypeViewByName(input: RunViewByNameInput, {
|
|
3206
|
-
RunAIModelTypeDynamicView(input: RunDynamicViewInput, {
|
|
3207
|
-
AIModelType(ID: string, {
|
|
3208
|
-
AllAIModelTypes({
|
|
3209
|
-
AIModels_AIModelTypeIDArray(aimodeltype_: AIModelType_, {
|
|
3210
|
-
CreateAIModelType(input: CreateAIModelTypeInput, {
|
|
3211
|
-
UpdateAIModelType(input: UpdateAIModelTypeInput, {
|
|
3212
|
-
DeleteAIModelType(ID: string, options: DeleteOptionsInput, {
|
|
3204
|
+
RunAIModelTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3205
|
+
RunAIModelTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3206
|
+
RunAIModelTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3207
|
+
AIModelType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIModelType_ | null>;
|
|
3208
|
+
AllAIModelTypes({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3209
|
+
AIModels_AIModelTypeIDArray(aimodeltype_: AIModelType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3210
|
+
CreateAIModelType(input: CreateAIModelTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3211
|
+
UpdateAIModelType(input: UpdateAIModelTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3212
|
+
DeleteAIModelType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3213
3213
|
}
|
|
3214
3214
|
export declare class QueueType_ {
|
|
3215
3215
|
ID: string;
|
|
@@ -3232,11 +3232,11 @@ export declare class RunQueueTypeViewResult {
|
|
|
3232
3232
|
Success: boolean;
|
|
3233
3233
|
}
|
|
3234
3234
|
export declare class QueueTypeResolver extends ResolverBase {
|
|
3235
|
-
RunQueueTypeViewByID(input: RunViewByIDInput, {
|
|
3236
|
-
RunQueueTypeViewByName(input: RunViewByNameInput, {
|
|
3237
|
-
RunQueueTypeDynamicView(input: RunDynamicViewInput, {
|
|
3238
|
-
QueueType(ID: string, {
|
|
3239
|
-
Queues_QueueTypeIDArray(queuetype_: QueueType_, {
|
|
3235
|
+
RunQueueTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3236
|
+
RunQueueTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3237
|
+
RunQueueTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3238
|
+
QueueType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueueType_ | null>;
|
|
3239
|
+
Queues_QueueTypeIDArray(queuetype_: QueueType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3240
3240
|
}
|
|
3241
3241
|
export declare class Queue_ {
|
|
3242
3242
|
ID: string;
|
|
@@ -3309,13 +3309,13 @@ export declare class RunQueueViewResult {
|
|
|
3309
3309
|
Success: boolean;
|
|
3310
3310
|
}
|
|
3311
3311
|
export declare class QueueResolver extends ResolverBase {
|
|
3312
|
-
RunQueueViewByID(input: RunViewByIDInput, {
|
|
3313
|
-
RunQueueViewByName(input: RunViewByNameInput, {
|
|
3314
|
-
RunQueueDynamicView(input: RunDynamicViewInput, {
|
|
3315
|
-
Queue(ID: string, {
|
|
3316
|
-
QueueTasks_QueueIDArray(queue_: Queue_, {
|
|
3317
|
-
CreateQueue(input: CreateQueueInput, {
|
|
3318
|
-
UpdateQueue(input: UpdateQueueInput, {
|
|
3312
|
+
RunQueueViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3313
|
+
RunQueueViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3314
|
+
RunQueueDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3315
|
+
Queue(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Queue_ | null>;
|
|
3316
|
+
QueueTasks_QueueIDArray(queue_: Queue_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3317
|
+
CreateQueue(input: CreateQueueInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3318
|
+
UpdateQueue(input: UpdateQueueInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3319
3319
|
}
|
|
3320
3320
|
export declare class QueueTask_ {
|
|
3321
3321
|
ID: string;
|
|
@@ -3366,12 +3366,12 @@ export declare class RunQueueTaskViewResult {
|
|
|
3366
3366
|
Success: boolean;
|
|
3367
3367
|
}
|
|
3368
3368
|
export declare class QueueTaskResolver extends ResolverBase {
|
|
3369
|
-
RunQueueTaskViewByID(input: RunViewByIDInput, {
|
|
3370
|
-
RunQueueTaskViewByName(input: RunViewByNameInput, {
|
|
3371
|
-
RunQueueTaskDynamicView(input: RunDynamicViewInput, {
|
|
3372
|
-
QueueTask(ID: string, {
|
|
3373
|
-
CreateQueueTask(input: CreateQueueTaskInput, {
|
|
3374
|
-
UpdateQueueTask(input: UpdateQueueTaskInput, {
|
|
3369
|
+
RunQueueTaskViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3370
|
+
RunQueueTaskViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3371
|
+
RunQueueTaskDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3372
|
+
QueueTask(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueueTask_ | null>;
|
|
3373
|
+
CreateQueueTask(input: CreateQueueTaskInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3374
|
+
UpdateQueueTask(input: UpdateQueueTaskInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3375
3375
|
}
|
|
3376
3376
|
export declare class Dashboard_ {
|
|
3377
3377
|
ID: string;
|
|
@@ -3411,13 +3411,13 @@ export declare class RunDashboardViewResult {
|
|
|
3411
3411
|
Success: boolean;
|
|
3412
3412
|
}
|
|
3413
3413
|
export declare class DashboardResolver extends ResolverBase {
|
|
3414
|
-
RunDashboardViewByID(input: RunViewByIDInput, {
|
|
3415
|
-
RunDashboardViewByName(input: RunViewByNameInput, {
|
|
3416
|
-
RunDashboardDynamicView(input: RunDynamicViewInput, {
|
|
3417
|
-
Dashboard(ID: string, {
|
|
3418
|
-
CreateDashboard(input: CreateDashboardInput, {
|
|
3419
|
-
UpdateDashboard(input: UpdateDashboardInput, {
|
|
3420
|
-
DeleteDashboard(ID: string, options: DeleteOptionsInput, {
|
|
3414
|
+
RunDashboardViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3415
|
+
RunDashboardViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3416
|
+
RunDashboardDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3417
|
+
Dashboard(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Dashboard_ | null>;
|
|
3418
|
+
CreateDashboard(input: CreateDashboardInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3419
|
+
UpdateDashboard(input: UpdateDashboardInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3420
|
+
DeleteDashboard(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3421
3421
|
}
|
|
3422
3422
|
export declare class OutputTriggerType_ {
|
|
3423
3423
|
ID: string;
|
|
@@ -3437,11 +3437,11 @@ export declare class RunOutputTriggerTypeViewResult {
|
|
|
3437
3437
|
Success: boolean;
|
|
3438
3438
|
}
|
|
3439
3439
|
export declare class OutputTriggerTypeResolver extends ResolverBase {
|
|
3440
|
-
RunOutputTriggerTypeViewByID(input: RunViewByIDInput, {
|
|
3441
|
-
RunOutputTriggerTypeViewByName(input: RunViewByNameInput, {
|
|
3442
|
-
RunOutputTriggerTypeDynamicView(input: RunDynamicViewInput, {
|
|
3443
|
-
OutputTriggerType(ID: string, {
|
|
3444
|
-
Reports_OutputTriggerTypeIDArray(outputtriggertype_: OutputTriggerType_, {
|
|
3440
|
+
RunOutputTriggerTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3441
|
+
RunOutputTriggerTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3442
|
+
RunOutputTriggerTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3443
|
+
OutputTriggerType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<OutputTriggerType_ | null>;
|
|
3444
|
+
Reports_OutputTriggerTypeIDArray(outputtriggertype_: OutputTriggerType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3445
3445
|
}
|
|
3446
3446
|
export declare class OutputFormatType_ {
|
|
3447
3447
|
ID: string;
|
|
@@ -3462,11 +3462,11 @@ export declare class RunOutputFormatTypeViewResult {
|
|
|
3462
3462
|
Success: boolean;
|
|
3463
3463
|
}
|
|
3464
3464
|
export declare class OutputFormatTypeResolver extends ResolverBase {
|
|
3465
|
-
RunOutputFormatTypeViewByID(input: RunViewByIDInput, {
|
|
3466
|
-
RunOutputFormatTypeViewByName(input: RunViewByNameInput, {
|
|
3467
|
-
RunOutputFormatTypeDynamicView(input: RunDynamicViewInput, {
|
|
3468
|
-
OutputFormatType(ID: string, {
|
|
3469
|
-
Reports_OutputFormatTypeIDArray(outputformattype_: OutputFormatType_, {
|
|
3465
|
+
RunOutputFormatTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3466
|
+
RunOutputFormatTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3467
|
+
RunOutputFormatTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3468
|
+
OutputFormatType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<OutputFormatType_ | null>;
|
|
3469
|
+
Reports_OutputFormatTypeIDArray(outputformattype_: OutputFormatType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3470
3470
|
}
|
|
3471
3471
|
export declare class OutputDeliveryType_ {
|
|
3472
3472
|
ID: string;
|
|
@@ -3486,11 +3486,11 @@ export declare class RunOutputDeliveryTypeViewResult {
|
|
|
3486
3486
|
Success: boolean;
|
|
3487
3487
|
}
|
|
3488
3488
|
export declare class OutputDeliveryTypeResolver extends ResolverBase {
|
|
3489
|
-
RunOutputDeliveryTypeViewByID(input: RunViewByIDInput, {
|
|
3490
|
-
RunOutputDeliveryTypeViewByName(input: RunViewByNameInput, {
|
|
3491
|
-
RunOutputDeliveryTypeDynamicView(input: RunDynamicViewInput, {
|
|
3492
|
-
OutputDeliveryType(ID: string, {
|
|
3493
|
-
Reports_OutputDeliveryTypeIDArray(outputdeliverytype_: OutputDeliveryType_, {
|
|
3489
|
+
RunOutputDeliveryTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3490
|
+
RunOutputDeliveryTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3491
|
+
RunOutputDeliveryTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3492
|
+
OutputDeliveryType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<OutputDeliveryType_ | null>;
|
|
3493
|
+
Reports_OutputDeliveryTypeIDArray(outputdeliverytype_: OutputDeliveryType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3494
3494
|
}
|
|
3495
3495
|
export declare class Report_ {
|
|
3496
3496
|
ID: string;
|
|
@@ -3567,14 +3567,14 @@ export declare class RunReportViewResult {
|
|
|
3567
3567
|
Success: boolean;
|
|
3568
3568
|
}
|
|
3569
3569
|
export declare class ReportResolver extends ResolverBase {
|
|
3570
|
-
RunReportViewByID(input: RunViewByIDInput, {
|
|
3571
|
-
RunReportViewByName(input: RunViewByNameInput, {
|
|
3572
|
-
RunReportDynamicView(input: RunDynamicViewInput, {
|
|
3573
|
-
Report(ID: string, {
|
|
3574
|
-
ReportSnapshots_ReportIDArray(report_: Report_, {
|
|
3575
|
-
CreateReport(input: CreateReportInput, {
|
|
3576
|
-
UpdateReport(input: UpdateReportInput, {
|
|
3577
|
-
DeleteReport(ID: string, options: DeleteOptionsInput, {
|
|
3570
|
+
RunReportViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3571
|
+
RunReportViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3572
|
+
RunReportDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3573
|
+
Report(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Report_ | null>;
|
|
3574
|
+
ReportSnapshots_ReportIDArray(report_: Report_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3575
|
+
CreateReport(input: CreateReportInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3576
|
+
UpdateReport(input: UpdateReportInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3577
|
+
DeleteReport(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3578
3578
|
}
|
|
3579
3579
|
export declare class ReportSnapshot_ {
|
|
3580
3580
|
ID: string;
|
|
@@ -3608,13 +3608,13 @@ export declare class RunReportSnapshotViewResult {
|
|
|
3608
3608
|
Success: boolean;
|
|
3609
3609
|
}
|
|
3610
3610
|
export declare class ReportSnapshotResolver extends ResolverBase {
|
|
3611
|
-
RunReportSnapshotViewByID(input: RunViewByIDInput, {
|
|
3612
|
-
RunReportSnapshotViewByName(input: RunViewByNameInput, {
|
|
3613
|
-
RunReportSnapshotDynamicView(input: RunDynamicViewInput, {
|
|
3614
|
-
ReportSnapshot(ID: string, {
|
|
3615
|
-
CreateReportSnapshot(input: CreateReportSnapshotInput, {
|
|
3616
|
-
UpdateReportSnapshot(input: UpdateReportSnapshotInput, {
|
|
3617
|
-
DeleteReportSnapshot(ID: string, options: DeleteOptionsInput, {
|
|
3611
|
+
RunReportSnapshotViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3612
|
+
RunReportSnapshotViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3613
|
+
RunReportSnapshotDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3614
|
+
ReportSnapshot(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ReportSnapshot_ | null>;
|
|
3615
|
+
CreateReportSnapshot(input: CreateReportSnapshotInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3616
|
+
UpdateReportSnapshot(input: UpdateReportSnapshotInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3617
|
+
DeleteReportSnapshot(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3618
3618
|
}
|
|
3619
3619
|
export declare class ResourceType_ {
|
|
3620
3620
|
ID: string;
|
|
@@ -3643,14 +3643,14 @@ export declare class RunResourceTypeViewResult {
|
|
|
3643
3643
|
Success: boolean;
|
|
3644
3644
|
}
|
|
3645
3645
|
export declare class ResourceTypeResolver extends ResolverBase {
|
|
3646
|
-
RunResourceTypeViewByID(input: RunViewByIDInput, {
|
|
3647
|
-
RunResourceTypeViewByName(input: RunViewByNameInput, {
|
|
3648
|
-
RunResourceTypeDynamicView(input: RunDynamicViewInput, {
|
|
3649
|
-
ResourceType(ID: string, {
|
|
3650
|
-
WorkspaceItems_ResourceTypeIDArray(resourcetype_: ResourceType_, {
|
|
3651
|
-
UserNotifications_ResourceTypeIDArray(resourcetype_: ResourceType_, {
|
|
3652
|
-
ResourceLinks_ResourceTypeIDArray(resourcetype_: ResourceType_, {
|
|
3653
|
-
ResourcePermissions_ResourceTypeIDArray(resourcetype_: ResourceType_, {
|
|
3646
|
+
RunResourceTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3647
|
+
RunResourceTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3648
|
+
RunResourceTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3649
|
+
ResourceType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ResourceType_ | null>;
|
|
3650
|
+
WorkspaceItems_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3651
|
+
UserNotifications_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3652
|
+
ResourceLinks_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3653
|
+
ResourcePermissions_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3654
3654
|
}
|
|
3655
3655
|
export declare class Tag_ {
|
|
3656
3656
|
ID: string;
|
|
@@ -3674,12 +3674,12 @@ export declare class RunTagViewResult {
|
|
|
3674
3674
|
Success: boolean;
|
|
3675
3675
|
}
|
|
3676
3676
|
export declare class TagResolver extends ResolverBase {
|
|
3677
|
-
RunTagViewByID(input: RunViewByIDInput, {
|
|
3678
|
-
RunTagViewByName(input: RunViewByNameInput, {
|
|
3679
|
-
RunTagDynamicView(input: RunDynamicViewInput, {
|
|
3680
|
-
Tag(ID: string, {
|
|
3681
|
-
Tags_ParentIDArray(tag_: Tag_, {
|
|
3682
|
-
TaggedItems_TagIDArray(tag_: Tag_, {
|
|
3677
|
+
RunTagViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3678
|
+
RunTagViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3679
|
+
RunTagDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3680
|
+
Tag(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Tag_ | null>;
|
|
3681
|
+
Tags_ParentIDArray(tag_: Tag_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3682
|
+
TaggedItems_TagIDArray(tag_: Tag_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3683
3683
|
}
|
|
3684
3684
|
export declare class TaggedItem_ {
|
|
3685
3685
|
ID: string;
|
|
@@ -3701,10 +3701,10 @@ export declare class RunTaggedItemViewResult {
|
|
|
3701
3701
|
Success: boolean;
|
|
3702
3702
|
}
|
|
3703
3703
|
export declare class TaggedItemResolver extends ResolverBase {
|
|
3704
|
-
RunTaggedItemViewByID(input: RunViewByIDInput, {
|
|
3705
|
-
RunTaggedItemViewByName(input: RunViewByNameInput, {
|
|
3706
|
-
RunTaggedItemDynamicView(input: RunDynamicViewInput, {
|
|
3707
|
-
TaggedItem(ID: string, {
|
|
3704
|
+
RunTaggedItemViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3705
|
+
RunTaggedItemViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3706
|
+
RunTaggedItemDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3707
|
+
TaggedItem(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<TaggedItem_ | null>;
|
|
3708
3708
|
}
|
|
3709
3709
|
export declare class Workspace_ {
|
|
3710
3710
|
ID: string;
|
|
@@ -3738,14 +3738,14 @@ export declare class RunWorkspaceViewResult {
|
|
|
3738
3738
|
Success: boolean;
|
|
3739
3739
|
}
|
|
3740
3740
|
export declare class WorkspaceResolver extends ResolverBase {
|
|
3741
|
-
RunWorkspaceViewByID(input: RunViewByIDInput, {
|
|
3742
|
-
RunWorkspaceViewByName(input: RunViewByNameInput, {
|
|
3743
|
-
RunWorkspaceDynamicView(input: RunDynamicViewInput, {
|
|
3744
|
-
Workspace(ID: string, {
|
|
3745
|
-
WorkspaceItems_WorkSpaceIDArray(workspace_: Workspace_, {
|
|
3746
|
-
CreateWorkspace(input: CreateWorkspaceInput, {
|
|
3747
|
-
UpdateWorkspace(input: UpdateWorkspaceInput, {
|
|
3748
|
-
DeleteWorkspace(ID: string, options: DeleteOptionsInput, {
|
|
3741
|
+
RunWorkspaceViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3742
|
+
RunWorkspaceViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3743
|
+
RunWorkspaceDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3744
|
+
Workspace(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Workspace_ | null>;
|
|
3745
|
+
WorkspaceItems_WorkSpaceIDArray(workspace_: Workspace_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3746
|
+
CreateWorkspace(input: CreateWorkspaceInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3747
|
+
UpdateWorkspace(input: UpdateWorkspaceInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3748
|
+
DeleteWorkspace(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3749
3749
|
}
|
|
3750
3750
|
export declare class WorkspaceItem_ {
|
|
3751
3751
|
ID: string;
|
|
@@ -3791,13 +3791,13 @@ export declare class RunWorkspaceItemViewResult {
|
|
|
3791
3791
|
Success: boolean;
|
|
3792
3792
|
}
|
|
3793
3793
|
export declare class WorkspaceItemResolver extends ResolverBase {
|
|
3794
|
-
RunWorkspaceItemViewByID(input: RunViewByIDInput, {
|
|
3795
|
-
RunWorkspaceItemViewByName(input: RunViewByNameInput, {
|
|
3796
|
-
RunWorkspaceItemDynamicView(input: RunDynamicViewInput, {
|
|
3797
|
-
WorkspaceItem(ID: string, {
|
|
3798
|
-
CreateWorkspaceItem(input: CreateWorkspaceItemInput, {
|
|
3799
|
-
UpdateWorkspaceItem(input: UpdateWorkspaceItemInput, {
|
|
3800
|
-
DeleteWorkspaceItem(ID: string, options: DeleteOptionsInput, {
|
|
3794
|
+
RunWorkspaceItemViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3795
|
+
RunWorkspaceItemViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3796
|
+
RunWorkspaceItemDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3797
|
+
WorkspaceItem(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<WorkspaceItem_ | null>;
|
|
3798
|
+
CreateWorkspaceItem(input: CreateWorkspaceItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3799
|
+
UpdateWorkspaceItem(input: UpdateWorkspaceItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3800
|
+
DeleteWorkspaceItem(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3801
3801
|
}
|
|
3802
3802
|
export declare class Dataset_ {
|
|
3803
3803
|
ID: string;
|
|
@@ -3817,11 +3817,11 @@ export declare class RunDatasetViewResult {
|
|
|
3817
3817
|
Success: boolean;
|
|
3818
3818
|
}
|
|
3819
3819
|
export declare class DatasetResolver extends ResolverBase {
|
|
3820
|
-
RunDatasetViewByID(input: RunViewByIDInput, {
|
|
3821
|
-
RunDatasetViewByName(input: RunViewByNameInput, {
|
|
3822
|
-
RunDatasetDynamicView(input: RunDynamicViewInput, {
|
|
3823
|
-
Dataset(ID: string, {
|
|
3824
|
-
DatasetItems_DatasetNameArray(dataset_: Dataset_, {
|
|
3820
|
+
RunDatasetViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3821
|
+
RunDatasetViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3822
|
+
RunDatasetDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3823
|
+
Dataset(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Dataset_ | null>;
|
|
3824
|
+
DatasetItems_DatasetNameArray(dataset_: Dataset_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3825
3825
|
}
|
|
3826
3826
|
export declare class DatasetItem_ {
|
|
3827
3827
|
ID: string;
|
|
@@ -3848,10 +3848,10 @@ export declare class RunDatasetItemViewResult {
|
|
|
3848
3848
|
Success: boolean;
|
|
3849
3849
|
}
|
|
3850
3850
|
export declare class DatasetItemResolver extends ResolverBase {
|
|
3851
|
-
RunDatasetItemViewByID(input: RunViewByIDInput, {
|
|
3852
|
-
RunDatasetItemViewByName(input: RunViewByNameInput, {
|
|
3853
|
-
RunDatasetItemDynamicView(input: RunDynamicViewInput, {
|
|
3854
|
-
DatasetItem(ID: string, {
|
|
3851
|
+
RunDatasetItemViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3852
|
+
RunDatasetItemViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3853
|
+
RunDatasetItemDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3854
|
+
DatasetItem(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DatasetItem_ | null>;
|
|
3855
3855
|
}
|
|
3856
3856
|
export declare class ConversationDetail_ {
|
|
3857
3857
|
ID: string;
|
|
@@ -3906,14 +3906,14 @@ export declare class RunConversationDetailViewResult {
|
|
|
3906
3906
|
Success: boolean;
|
|
3907
3907
|
}
|
|
3908
3908
|
export declare class ConversationDetailResolver extends ResolverBase {
|
|
3909
|
-
RunConversationDetailViewByID(input: RunViewByIDInput, {
|
|
3910
|
-
RunConversationDetailViewByName(input: RunViewByNameInput, {
|
|
3911
|
-
RunConversationDetailDynamicView(input: RunDynamicViewInput, {
|
|
3912
|
-
ConversationDetail(ID: string, {
|
|
3913
|
-
Reports_ConversationDetailIDArray(conversationdetail_: ConversationDetail_, {
|
|
3914
|
-
CreateConversationDetail(input: CreateConversationDetailInput, {
|
|
3915
|
-
UpdateConversationDetail(input: UpdateConversationDetailInput, {
|
|
3916
|
-
DeleteConversationDetail(ID: string, options: DeleteOptionsInput, {
|
|
3909
|
+
RunConversationDetailViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3910
|
+
RunConversationDetailViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3911
|
+
RunConversationDetailDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3912
|
+
ConversationDetail(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ConversationDetail_ | null>;
|
|
3913
|
+
Reports_ConversationDetailIDArray(conversationdetail_: ConversationDetail_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3914
|
+
CreateConversationDetail(input: CreateConversationDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3915
|
+
UpdateConversationDetail(input: UpdateConversationDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3916
|
+
DeleteConversationDetail(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3917
3917
|
}
|
|
3918
3918
|
export declare class Conversation_ {
|
|
3919
3919
|
ID: string;
|
|
@@ -3968,15 +3968,15 @@ export declare class RunConversationViewResult {
|
|
|
3968
3968
|
Success: boolean;
|
|
3969
3969
|
}
|
|
3970
3970
|
export declare class ConversationResolver extends ResolverBase {
|
|
3971
|
-
RunConversationViewByID(input: RunViewByIDInput, {
|
|
3972
|
-
RunConversationViewByName(input: RunViewByNameInput, {
|
|
3973
|
-
RunConversationDynamicView(input: RunDynamicViewInput, {
|
|
3974
|
-
Conversation(ID: string, {
|
|
3975
|
-
ConversationDetails_ConversationIDArray(conversation_: Conversation_, {
|
|
3976
|
-
Reports_ConversationIDArray(conversation_: Conversation_, {
|
|
3977
|
-
CreateConversation(input: CreateConversationInput, {
|
|
3978
|
-
UpdateConversation(input: UpdateConversationInput, {
|
|
3979
|
-
DeleteConversation(ID: string, options: DeleteOptionsInput, {
|
|
3971
|
+
RunConversationViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3972
|
+
RunConversationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3973
|
+
RunConversationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3974
|
+
Conversation(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Conversation_ | null>;
|
|
3975
|
+
ConversationDetails_ConversationIDArray(conversation_: Conversation_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3976
|
+
Reports_ConversationIDArray(conversation_: Conversation_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
3977
|
+
CreateConversation(input: CreateConversationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3978
|
+
UpdateConversation(input: UpdateConversationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3979
|
+
DeleteConversation(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3980
3980
|
}
|
|
3981
3981
|
export declare class UserNotification_ {
|
|
3982
3982
|
ID: string;
|
|
@@ -4025,13 +4025,13 @@ export declare class RunUserNotificationViewResult {
|
|
|
4025
4025
|
Success: boolean;
|
|
4026
4026
|
}
|
|
4027
4027
|
export declare class UserNotificationResolver extends ResolverBase {
|
|
4028
|
-
RunUserNotificationViewByID(input: RunViewByIDInput, {
|
|
4029
|
-
RunUserNotificationViewByName(input: RunViewByNameInput, {
|
|
4030
|
-
RunUserNotificationDynamicView(input: RunDynamicViewInput, {
|
|
4031
|
-
UserNotification(ID: string, {
|
|
4032
|
-
CreateUserNotification(input: CreateUserNotificationInput, {
|
|
4033
|
-
UpdateUserNotification(input: UpdateUserNotificationInput, {
|
|
4034
|
-
DeleteUserNotification(ID: string, options: DeleteOptionsInput, {
|
|
4028
|
+
RunUserNotificationViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4029
|
+
RunUserNotificationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4030
|
+
RunUserNotificationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4031
|
+
UserNotification(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserNotification_ | null>;
|
|
4032
|
+
CreateUserNotification(input: CreateUserNotificationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4033
|
+
UpdateUserNotification(input: UpdateUserNotificationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4034
|
+
DeleteUserNotification(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4035
4035
|
}
|
|
4036
4036
|
export declare class SchemaInfo_ {
|
|
4037
4037
|
ID: string;
|
|
@@ -4066,12 +4066,12 @@ export declare class RunSchemaInfoViewResult {
|
|
|
4066
4066
|
Success: boolean;
|
|
4067
4067
|
}
|
|
4068
4068
|
export declare class SchemaInfoResolver extends ResolverBase {
|
|
4069
|
-
RunSchemaInfoViewByID(input: RunViewByIDInput, {
|
|
4070
|
-
RunSchemaInfoViewByName(input: RunViewByNameInput, {
|
|
4071
|
-
RunSchemaInfoDynamicView(input: RunDynamicViewInput, {
|
|
4072
|
-
SchemaInfo(ID: string, {
|
|
4073
|
-
CreateSchemaInfo(input: CreateSchemaInfoInput, {
|
|
4074
|
-
UpdateSchemaInfo(input: UpdateSchemaInfoInput, {
|
|
4069
|
+
RunSchemaInfoViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4070
|
+
RunSchemaInfoViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4071
|
+
RunSchemaInfoDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4072
|
+
SchemaInfo(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<SchemaInfo_ | null>;
|
|
4073
|
+
CreateSchemaInfo(input: CreateSchemaInfoInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4074
|
+
UpdateSchemaInfo(input: UpdateSchemaInfoInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4075
4075
|
}
|
|
4076
4076
|
export declare class CompanyIntegrationRecordMap_ {
|
|
4077
4077
|
ID: string;
|
|
@@ -4107,12 +4107,12 @@ export declare class RunCompanyIntegrationRecordMapViewResult {
|
|
|
4107
4107
|
Success: boolean;
|
|
4108
4108
|
}
|
|
4109
4109
|
export declare class CompanyIntegrationRecordMapResolver extends ResolverBase {
|
|
4110
|
-
RunCompanyIntegrationRecordMapViewByID(input: RunViewByIDInput, {
|
|
4111
|
-
RunCompanyIntegrationRecordMapViewByName(input: RunViewByNameInput, {
|
|
4112
|
-
RunCompanyIntegrationRecordMapDynamicView(input: RunDynamicViewInput, {
|
|
4113
|
-
CompanyIntegrationRecordMap(ID: string, {
|
|
4114
|
-
CreateCompanyIntegrationRecordMap(input: CreateCompanyIntegrationRecordMapInput, {
|
|
4115
|
-
UpdateCompanyIntegrationRecordMap(input: UpdateCompanyIntegrationRecordMapInput, {
|
|
4110
|
+
RunCompanyIntegrationRecordMapViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4111
|
+
RunCompanyIntegrationRecordMapViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4112
|
+
RunCompanyIntegrationRecordMapDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4113
|
+
CompanyIntegrationRecordMap(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRecordMap_ | null>;
|
|
4114
|
+
CreateCompanyIntegrationRecordMap(input: CreateCompanyIntegrationRecordMapInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4115
|
+
UpdateCompanyIntegrationRecordMap(input: UpdateCompanyIntegrationRecordMapInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4116
4116
|
}
|
|
4117
4117
|
export declare class RecordMergeLog_ {
|
|
4118
4118
|
ID: string;
|
|
@@ -4170,14 +4170,14 @@ export declare class RunRecordMergeLogViewResult {
|
|
|
4170
4170
|
Success: boolean;
|
|
4171
4171
|
}
|
|
4172
4172
|
export declare class RecordMergeLogResolver extends ResolverBase {
|
|
4173
|
-
RunRecordMergeLogViewByID(input: RunViewByIDInput, {
|
|
4174
|
-
RunRecordMergeLogViewByName(input: RunViewByNameInput, {
|
|
4175
|
-
RunRecordMergeLogDynamicView(input: RunDynamicViewInput, {
|
|
4176
|
-
RecordMergeLog(ID: string, {
|
|
4177
|
-
RecordMergeDeletionLogs_RecordMergeLogIDArray(recordmergelog_: RecordMergeLog_, {
|
|
4178
|
-
DuplicateRunDetailMatches_RecordMergeLogIDArray(recordmergelog_: RecordMergeLog_, {
|
|
4179
|
-
CreateRecordMergeLog(input: CreateRecordMergeLogInput, {
|
|
4180
|
-
UpdateRecordMergeLog(input: UpdateRecordMergeLogInput, {
|
|
4173
|
+
RunRecordMergeLogViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4174
|
+
RunRecordMergeLogViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4175
|
+
RunRecordMergeLogDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4176
|
+
RecordMergeLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordMergeLog_ | null>;
|
|
4177
|
+
RecordMergeDeletionLogs_RecordMergeLogIDArray(recordmergelog_: RecordMergeLog_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4178
|
+
DuplicateRunDetailMatches_RecordMergeLogIDArray(recordmergelog_: RecordMergeLog_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4179
|
+
CreateRecordMergeLog(input: CreateRecordMergeLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4180
|
+
UpdateRecordMergeLog(input: UpdateRecordMergeLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4181
4181
|
}
|
|
4182
4182
|
export declare class RecordMergeDeletionLog_ {
|
|
4183
4183
|
ID: string;
|
|
@@ -4212,12 +4212,12 @@ export declare class RunRecordMergeDeletionLogViewResult {
|
|
|
4212
4212
|
Success: boolean;
|
|
4213
4213
|
}
|
|
4214
4214
|
export declare class RecordMergeDeletionLogResolver extends ResolverBase {
|
|
4215
|
-
RunRecordMergeDeletionLogViewByID(input: RunViewByIDInput, {
|
|
4216
|
-
RunRecordMergeDeletionLogViewByName(input: RunViewByNameInput, {
|
|
4217
|
-
RunRecordMergeDeletionLogDynamicView(input: RunDynamicViewInput, {
|
|
4218
|
-
RecordMergeDeletionLog(ID: string, {
|
|
4219
|
-
CreateRecordMergeDeletionLog(input: CreateRecordMergeDeletionLogInput, {
|
|
4220
|
-
UpdateRecordMergeDeletionLog(input: UpdateRecordMergeDeletionLogInput, {
|
|
4215
|
+
RunRecordMergeDeletionLogViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4216
|
+
RunRecordMergeDeletionLogViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4217
|
+
RunRecordMergeDeletionLogDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4218
|
+
RecordMergeDeletionLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordMergeDeletionLog_ | null>;
|
|
4219
|
+
CreateRecordMergeDeletionLog(input: CreateRecordMergeDeletionLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4220
|
+
UpdateRecordMergeDeletionLog(input: UpdateRecordMergeDeletionLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4221
4221
|
}
|
|
4222
4222
|
export declare class QueryField_ {
|
|
4223
4223
|
ID: string;
|
|
@@ -4278,13 +4278,13 @@ export declare class RunQueryFieldViewResult {
|
|
|
4278
4278
|
Success: boolean;
|
|
4279
4279
|
}
|
|
4280
4280
|
export declare class QueryFieldResolver extends ResolverBase {
|
|
4281
|
-
RunQueryFieldViewByID(input: RunViewByIDInput, {
|
|
4282
|
-
RunQueryFieldViewByName(input: RunViewByNameInput, {
|
|
4283
|
-
RunQueryFieldDynamicView(input: RunDynamicViewInput, {
|
|
4284
|
-
QueryField(ID: string, {
|
|
4285
|
-
CreateQueryField(input: CreateQueryFieldInput, {
|
|
4286
|
-
UpdateQueryField(input: UpdateQueryFieldInput, {
|
|
4287
|
-
DeleteQueryField(ID: string, options: DeleteOptionsInput, {
|
|
4281
|
+
RunQueryFieldViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4282
|
+
RunQueryFieldViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4283
|
+
RunQueryFieldDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4284
|
+
QueryField(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueryField_ | null>;
|
|
4285
|
+
CreateQueryField(input: CreateQueryFieldInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4286
|
+
UpdateQueryField(input: UpdateQueryFieldInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4287
|
+
DeleteQueryField(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4288
4288
|
}
|
|
4289
4289
|
export declare class QueryCategory_ {
|
|
4290
4290
|
ID: string;
|
|
@@ -4323,15 +4323,15 @@ export declare class RunQueryCategoryViewResult {
|
|
|
4323
4323
|
Success: boolean;
|
|
4324
4324
|
}
|
|
4325
4325
|
export declare class QueryCategoryResolver extends ResolverBase {
|
|
4326
|
-
RunQueryCategoryViewByID(input: RunViewByIDInput, {
|
|
4327
|
-
RunQueryCategoryViewByName(input: RunViewByNameInput, {
|
|
4328
|
-
RunQueryCategoryDynamicView(input: RunDynamicViewInput, {
|
|
4329
|
-
QueryCategory(ID: string, {
|
|
4330
|
-
QueryCategories_ParentIDArray(querycategory_: QueryCategory_, {
|
|
4331
|
-
Queries_CategoryIDArray(querycategory_: QueryCategory_, {
|
|
4332
|
-
CreateQueryCategory(input: CreateQueryCategoryInput, {
|
|
4333
|
-
UpdateQueryCategory(input: UpdateQueryCategoryInput, {
|
|
4334
|
-
DeleteQueryCategory(ID: string, options: DeleteOptionsInput, {
|
|
4326
|
+
RunQueryCategoryViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4327
|
+
RunQueryCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4328
|
+
RunQueryCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4329
|
+
QueryCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueryCategory_ | null>;
|
|
4330
|
+
QueryCategories_ParentIDArray(querycategory_: QueryCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4331
|
+
Queries_CategoryIDArray(querycategory_: QueryCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4332
|
+
CreateQueryCategory(input: CreateQueryCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4333
|
+
UpdateQueryCategory(input: UpdateQueryCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4334
|
+
DeleteQueryCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4335
4335
|
}
|
|
4336
4336
|
export declare class Query_ {
|
|
4337
4337
|
ID: string;
|
|
@@ -4392,17 +4392,17 @@ export declare class RunQueryViewResult {
|
|
|
4392
4392
|
Success: boolean;
|
|
4393
4393
|
}
|
|
4394
4394
|
export declare class QueryResolver extends ResolverBase {
|
|
4395
|
-
RunQueryViewByID(input: RunViewByIDInput, {
|
|
4396
|
-
RunQueryViewByName(input: RunViewByNameInput, {
|
|
4397
|
-
RunQueryDynamicView(input: RunDynamicViewInput, {
|
|
4398
|
-
Query(ID: string, {
|
|
4399
|
-
QueryFields_QueryIDArray(query_: Query_, {
|
|
4400
|
-
DataContextItems_QueryIDArray(query_: Query_, {
|
|
4401
|
-
QueryPermissions_QueryIDArray(query_: Query_, {
|
|
4402
|
-
QueryEntities_QueryIDArray(query_: Query_, {
|
|
4403
|
-
CreateQuery(input: CreateQueryInput, {
|
|
4404
|
-
UpdateQuery(input: UpdateQueryInput, {
|
|
4405
|
-
DeleteQuery(ID: string, options: DeleteOptionsInput, {
|
|
4395
|
+
RunQueryViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4396
|
+
RunQueryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4397
|
+
RunQueryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4398
|
+
Query(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Query_ | null>;
|
|
4399
|
+
QueryFields_QueryIDArray(query_: Query_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4400
|
+
DataContextItems_QueryIDArray(query_: Query_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4401
|
+
QueryPermissions_QueryIDArray(query_: Query_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4402
|
+
QueryEntities_QueryIDArray(query_: Query_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4403
|
+
CreateQuery(input: CreateQueryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4404
|
+
UpdateQuery(input: UpdateQueryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4405
|
+
DeleteQuery(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4406
4406
|
}
|
|
4407
4407
|
export declare class QueryPermission_ {
|
|
4408
4408
|
ID: string;
|
|
@@ -4433,13 +4433,13 @@ export declare class RunQueryPermissionViewResult {
|
|
|
4433
4433
|
Success: boolean;
|
|
4434
4434
|
}
|
|
4435
4435
|
export declare class QueryPermissionResolver extends ResolverBase {
|
|
4436
|
-
RunQueryPermissionViewByID(input: RunViewByIDInput, {
|
|
4437
|
-
RunQueryPermissionViewByName(input: RunViewByNameInput, {
|
|
4438
|
-
RunQueryPermissionDynamicView(input: RunDynamicViewInput, {
|
|
4439
|
-
QueryPermission(ID: string, {
|
|
4440
|
-
CreateQueryPermission(input: CreateQueryPermissionInput, {
|
|
4441
|
-
UpdateQueryPermission(input: UpdateQueryPermissionInput, {
|
|
4442
|
-
DeleteQueryPermission(ID: string, options: DeleteOptionsInput, {
|
|
4436
|
+
RunQueryPermissionViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4437
|
+
RunQueryPermissionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4438
|
+
RunQueryPermissionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4439
|
+
QueryPermission(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueryPermission_ | null>;
|
|
4440
|
+
CreateQueryPermission(input: CreateQueryPermissionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4441
|
+
UpdateQueryPermission(input: UpdateQueryPermissionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4442
|
+
DeleteQueryPermission(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4443
4443
|
}
|
|
4444
4444
|
export declare class VectorIndex_ {
|
|
4445
4445
|
ID: string;
|
|
@@ -4477,14 +4477,14 @@ export declare class RunVectorIndexViewResult {
|
|
|
4477
4477
|
Success: boolean;
|
|
4478
4478
|
}
|
|
4479
4479
|
export declare class VectorIndexResolver extends ResolverBase {
|
|
4480
|
-
RunVectorIndexViewByID(input: RunViewByIDInput, {
|
|
4481
|
-
RunVectorIndexViewByName(input: RunViewByNameInput, {
|
|
4482
|
-
RunVectorIndexDynamicView(input: RunDynamicViewInput, {
|
|
4483
|
-
VectorIndex(ID: string, {
|
|
4484
|
-
EntityRecordDocuments_VectorIndexIDArray(vectorindex_: VectorIndex_, {
|
|
4485
|
-
CreateVectorIndex(input: CreateVectorIndexInput, {
|
|
4486
|
-
UpdateVectorIndex(input: UpdateVectorIndexInput, {
|
|
4487
|
-
DeleteVectorIndex(ID: string, options: DeleteOptionsInput, {
|
|
4480
|
+
RunVectorIndexViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4481
|
+
RunVectorIndexViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4482
|
+
RunVectorIndexDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4483
|
+
VectorIndex(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<VectorIndex_ | null>;
|
|
4484
|
+
EntityRecordDocuments_VectorIndexIDArray(vectorindex_: VectorIndex_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4485
|
+
CreateVectorIndex(input: CreateVectorIndexInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4486
|
+
UpdateVectorIndex(input: UpdateVectorIndexInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4487
|
+
DeleteVectorIndex(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4488
4488
|
}
|
|
4489
4489
|
export declare class EntityDocumentType_ {
|
|
4490
4490
|
ID: string;
|
|
@@ -4514,14 +4514,14 @@ export declare class RunEntityDocumentTypeViewResult {
|
|
|
4514
4514
|
Success: boolean;
|
|
4515
4515
|
}
|
|
4516
4516
|
export declare class EntityDocumentTypeResolver extends ResolverBase {
|
|
4517
|
-
RunEntityDocumentTypeViewByID(input: RunViewByIDInput, {
|
|
4518
|
-
RunEntityDocumentTypeViewByName(input: RunViewByNameInput, {
|
|
4519
|
-
RunEntityDocumentTypeDynamicView(input: RunDynamicViewInput, {
|
|
4520
|
-
EntityDocumentType(ID: string, {
|
|
4521
|
-
EntityDocuments_TypeIDArray(entitydocumenttype_: EntityDocumentType_, {
|
|
4522
|
-
CreateEntityDocumentType(input: CreateEntityDocumentTypeInput, {
|
|
4523
|
-
UpdateEntityDocumentType(input: UpdateEntityDocumentTypeInput, {
|
|
4524
|
-
DeleteEntityDocumentType(ID: string, options: DeleteOptionsInput, {
|
|
4517
|
+
RunEntityDocumentTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4518
|
+
RunEntityDocumentTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4519
|
+
RunEntityDocumentTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4520
|
+
EntityDocumentType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityDocumentType_ | null>;
|
|
4521
|
+
EntityDocuments_TypeIDArray(entitydocumenttype_: EntityDocumentType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4522
|
+
CreateEntityDocumentType(input: CreateEntityDocumentTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4523
|
+
UpdateEntityDocumentType(input: UpdateEntityDocumentTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4524
|
+
DeleteEntityDocumentType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4525
4525
|
}
|
|
4526
4526
|
export declare class EntityDocumentRun_ {
|
|
4527
4527
|
ID: string;
|
|
@@ -4557,12 +4557,12 @@ export declare class RunEntityDocumentRunViewResult {
|
|
|
4557
4557
|
Success: boolean;
|
|
4558
4558
|
}
|
|
4559
4559
|
export declare class EntityDocumentRunResolver extends ResolverBase {
|
|
4560
|
-
RunEntityDocumentRunViewByID(input: RunViewByIDInput, {
|
|
4561
|
-
RunEntityDocumentRunViewByName(input: RunViewByNameInput, {
|
|
4562
|
-
RunEntityDocumentRunDynamicView(input: RunDynamicViewInput, {
|
|
4563
|
-
EntityDocumentRun(ID: string, {
|
|
4564
|
-
CreateEntityDocumentRun(input: CreateEntityDocumentRunInput, {
|
|
4565
|
-
UpdateEntityDocumentRun(input: UpdateEntityDocumentRunInput, {
|
|
4560
|
+
RunEntityDocumentRunViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4561
|
+
RunEntityDocumentRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4562
|
+
RunEntityDocumentRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4563
|
+
EntityDocumentRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityDocumentRun_ | null>;
|
|
4564
|
+
CreateEntityDocumentRun(input: CreateEntityDocumentRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4565
|
+
UpdateEntityDocumentRun(input: UpdateEntityDocumentRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4566
4566
|
}
|
|
4567
4567
|
export declare class VectorDatabase_ {
|
|
4568
4568
|
ID: string;
|
|
@@ -4599,15 +4599,15 @@ export declare class RunVectorDatabaseViewResult {
|
|
|
4599
4599
|
Success: boolean;
|
|
4600
4600
|
}
|
|
4601
4601
|
export declare class VectorDatabaseResolver extends ResolverBase {
|
|
4602
|
-
RunVectorDatabaseViewByID(input: RunViewByIDInput, {
|
|
4603
|
-
RunVectorDatabaseViewByName(input: RunViewByNameInput, {
|
|
4604
|
-
RunVectorDatabaseDynamicView(input: RunDynamicViewInput, {
|
|
4605
|
-
VectorDatabase(ID: string, {
|
|
4606
|
-
EntityDocuments_IDArray(vectordatabase_: VectorDatabase_, {
|
|
4607
|
-
VectorIndexes_VectorDatabaseIDArray(vectordatabase_: VectorDatabase_, {
|
|
4608
|
-
CreateVectorDatabase(input: CreateVectorDatabaseInput, {
|
|
4609
|
-
UpdateVectorDatabase(input: UpdateVectorDatabaseInput, {
|
|
4610
|
-
DeleteVectorDatabase(ID: string, options: DeleteOptionsInput, {
|
|
4602
|
+
RunVectorDatabaseViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4603
|
+
RunVectorDatabaseViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4604
|
+
RunVectorDatabaseDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4605
|
+
VectorDatabase(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<VectorDatabase_ | null>;
|
|
4606
|
+
EntityDocuments_IDArray(vectordatabase_: VectorDatabase_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4607
|
+
VectorIndexes_VectorDatabaseIDArray(vectordatabase_: VectorDatabase_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4608
|
+
CreateVectorDatabase(input: CreateVectorDatabaseInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4609
|
+
UpdateVectorDatabase(input: UpdateVectorDatabaseInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4610
|
+
DeleteVectorDatabase(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4611
4611
|
}
|
|
4612
4612
|
export declare class EntityRecordDocument_ {
|
|
4613
4613
|
ID: string;
|
|
@@ -4657,12 +4657,12 @@ export declare class RunEntityRecordDocumentViewResult {
|
|
|
4657
4657
|
Success: boolean;
|
|
4658
4658
|
}
|
|
4659
4659
|
export declare class EntityRecordDocumentResolver extends ResolverBase {
|
|
4660
|
-
RunEntityRecordDocumentViewByID(input: RunViewByIDInput, {
|
|
4661
|
-
RunEntityRecordDocumentViewByName(input: RunViewByNameInput, {
|
|
4662
|
-
RunEntityRecordDocumentDynamicView(input: RunDynamicViewInput, {
|
|
4663
|
-
EntityRecordDocument(ID: string, {
|
|
4664
|
-
CreateEntityRecordDocument(input: CreateEntityRecordDocumentInput, {
|
|
4665
|
-
UpdateEntityRecordDocument(input: UpdateEntityRecordDocumentInput, {
|
|
4660
|
+
RunEntityRecordDocumentViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4661
|
+
RunEntityRecordDocumentViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4662
|
+
RunEntityRecordDocumentDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4663
|
+
EntityRecordDocument(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityRecordDocument_ | null>;
|
|
4664
|
+
CreateEntityRecordDocument(input: CreateEntityRecordDocumentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4665
|
+
UpdateEntityRecordDocument(input: UpdateEntityRecordDocumentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4666
4666
|
}
|
|
4667
4667
|
export declare class EntityDocument_ {
|
|
4668
4668
|
ID: string;
|
|
@@ -4720,15 +4720,15 @@ export declare class RunEntityDocumentViewResult {
|
|
|
4720
4720
|
Success: boolean;
|
|
4721
4721
|
}
|
|
4722
4722
|
export declare class EntityDocumentResolver extends ResolverBase {
|
|
4723
|
-
RunEntityDocumentViewByID(input: RunViewByIDInput, {
|
|
4724
|
-
RunEntityDocumentViewByName(input: RunViewByNameInput, {
|
|
4725
|
-
RunEntityDocumentDynamicView(input: RunDynamicViewInput, {
|
|
4726
|
-
EntityDocument(ID: string, {
|
|
4727
|
-
EntityDocumentSettings_EntityDocumentIDArray(entitydocument_: EntityDocument_, {
|
|
4728
|
-
EntityDocumentRuns_EntityDocumentIDArray(entitydocument_: EntityDocument_, {
|
|
4729
|
-
EntityRecordDocuments_EntityDocumentIDArray(entitydocument_: EntityDocument_, {
|
|
4730
|
-
CreateEntityDocument(input: CreateEntityDocumentInput, {
|
|
4731
|
-
UpdateEntityDocument(input: UpdateEntityDocumentInput, {
|
|
4723
|
+
RunEntityDocumentViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4724
|
+
RunEntityDocumentViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4725
|
+
RunEntityDocumentDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4726
|
+
EntityDocument(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityDocument_ | null>;
|
|
4727
|
+
EntityDocumentSettings_EntityDocumentIDArray(entitydocument_: EntityDocument_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4728
|
+
EntityDocumentRuns_EntityDocumentIDArray(entitydocument_: EntityDocument_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4729
|
+
EntityRecordDocuments_EntityDocumentIDArray(entitydocument_: EntityDocument_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4730
|
+
CreateEntityDocument(input: CreateEntityDocumentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4731
|
+
UpdateEntityDocument(input: UpdateEntityDocumentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4732
4732
|
}
|
|
4733
4733
|
export declare class DataContextItem_ {
|
|
4734
4734
|
ID: string;
|
|
@@ -4743,6 +4743,7 @@ export declare class DataContextItem_ {
|
|
|
4743
4743
|
LastRefreshedAt?: Date;
|
|
4744
4744
|
_mj__CreatedAt: Date;
|
|
4745
4745
|
_mj__UpdatedAt: Date;
|
|
4746
|
+
Description?: string;
|
|
4746
4747
|
DataContext: string;
|
|
4747
4748
|
View?: string;
|
|
4748
4749
|
Query?: string;
|
|
@@ -4758,6 +4759,7 @@ export declare class CreateDataContextItemInput {
|
|
|
4758
4759
|
SQL?: string;
|
|
4759
4760
|
DataJSON?: string;
|
|
4760
4761
|
LastRefreshedAt?: Date;
|
|
4762
|
+
Description?: string;
|
|
4761
4763
|
}
|
|
4762
4764
|
export declare class UpdateDataContextItemInput {
|
|
4763
4765
|
ID: string;
|
|
@@ -4770,6 +4772,7 @@ export declare class UpdateDataContextItemInput {
|
|
|
4770
4772
|
SQL?: string;
|
|
4771
4773
|
DataJSON?: string;
|
|
4772
4774
|
LastRefreshedAt?: Date;
|
|
4775
|
+
Description?: string;
|
|
4773
4776
|
OldValues___?: KeyValuePairInput[];
|
|
4774
4777
|
}
|
|
4775
4778
|
export declare class RunDataContextItemViewResult {
|
|
@@ -4782,13 +4785,13 @@ export declare class RunDataContextItemViewResult {
|
|
|
4782
4785
|
Success: boolean;
|
|
4783
4786
|
}
|
|
4784
4787
|
export declare class DataContextItemResolver extends ResolverBase {
|
|
4785
|
-
RunDataContextItemViewByID(input: RunViewByIDInput, {
|
|
4786
|
-
RunDataContextItemViewByName(input: RunViewByNameInput, {
|
|
4787
|
-
RunDataContextItemDynamicView(input: RunDynamicViewInput, {
|
|
4788
|
-
DataContextItem(ID: string, {
|
|
4789
|
-
CreateDataContextItem(input: CreateDataContextItemInput, {
|
|
4790
|
-
UpdateDataContextItem(input: UpdateDataContextItemInput, {
|
|
4791
|
-
DeleteDataContextItem(ID: string, options: DeleteOptionsInput, {
|
|
4788
|
+
RunDataContextItemViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4789
|
+
RunDataContextItemViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4790
|
+
RunDataContextItemDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4791
|
+
DataContextItem(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DataContextItem_ | null>;
|
|
4792
|
+
CreateDataContextItem(input: CreateDataContextItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4793
|
+
UpdateDataContextItem(input: UpdateDataContextItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4794
|
+
DeleteDataContextItem(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4792
4795
|
}
|
|
4793
4796
|
export declare class DataContext_ {
|
|
4794
4797
|
ID: string;
|
|
@@ -4827,16 +4830,16 @@ export declare class RunDataContextViewResult {
|
|
|
4827
4830
|
Success: boolean;
|
|
4828
4831
|
}
|
|
4829
4832
|
export declare class DataContextResolver extends ResolverBase {
|
|
4830
|
-
RunDataContextViewByID(input: RunViewByIDInput, {
|
|
4831
|
-
RunDataContextViewByName(input: RunViewByNameInput, {
|
|
4832
|
-
RunDataContextDynamicView(input: RunDynamicViewInput, {
|
|
4833
|
-
DataContext(ID: string, {
|
|
4834
|
-
Reports_DataContextIDArray(datacontext_: DataContext_, {
|
|
4835
|
-
DataContextItems_DataContextIDArray(datacontext_: DataContext_, {
|
|
4836
|
-
Conversations_DataContextIDArray(datacontext_: DataContext_, {
|
|
4837
|
-
CreateDataContext(input: CreateDataContextInput, {
|
|
4838
|
-
UpdateDataContext(input: UpdateDataContextInput, {
|
|
4839
|
-
DeleteDataContext(ID: string, options: DeleteOptionsInput, {
|
|
4833
|
+
RunDataContextViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4834
|
+
RunDataContextViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4835
|
+
RunDataContextDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4836
|
+
DataContext(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DataContext_ | null>;
|
|
4837
|
+
Reports_DataContextIDArray(datacontext_: DataContext_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4838
|
+
DataContextItems_DataContextIDArray(datacontext_: DataContext_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4839
|
+
Conversations_DataContextIDArray(datacontext_: DataContext_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4840
|
+
CreateDataContext(input: CreateDataContextInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4841
|
+
UpdateDataContext(input: UpdateDataContextInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4842
|
+
DeleteDataContext(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4840
4843
|
}
|
|
4841
4844
|
export declare class UserViewCategory_ {
|
|
4842
4845
|
ID: string;
|
|
@@ -4879,15 +4882,15 @@ export declare class RunUserViewCategoryViewResult {
|
|
|
4879
4882
|
Success: boolean;
|
|
4880
4883
|
}
|
|
4881
4884
|
export declare class UserViewCategoryResolver extends ResolverBase {
|
|
4882
|
-
RunUserViewCategoryViewByID(input: RunViewByIDInput, {
|
|
4883
|
-
RunUserViewCategoryViewByName(input: RunViewByNameInput, {
|
|
4884
|
-
RunUserViewCategoryDynamicView(input: RunDynamicViewInput, {
|
|
4885
|
-
UserViewCategory(ID: string, {
|
|
4886
|
-
UserViewCategories_ParentIDArray(userviewcategory_: UserViewCategory_, {
|
|
4887
|
-
UserViews_CategoryIDArray(userviewcategory_: UserViewCategory_, {
|
|
4888
|
-
CreateUserViewCategory(input: CreateUserViewCategoryInput, {
|
|
4889
|
-
UpdateUserViewCategory(input: UpdateUserViewCategoryInput, {
|
|
4890
|
-
DeleteUserViewCategory(ID: string, options: DeleteOptionsInput, {
|
|
4885
|
+
RunUserViewCategoryViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4886
|
+
RunUserViewCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4887
|
+
RunUserViewCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4888
|
+
UserViewCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserViewCategory_ | null>;
|
|
4889
|
+
UserViewCategories_ParentIDArray(userviewcategory_: UserViewCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4890
|
+
UserViews_CategoryIDArray(userviewcategory_: UserViewCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4891
|
+
CreateUserViewCategory(input: CreateUserViewCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4892
|
+
UpdateUserViewCategory(input: UpdateUserViewCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4893
|
+
DeleteUserViewCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4891
4894
|
}
|
|
4892
4895
|
export declare class DashboardCategory_ {
|
|
4893
4896
|
ID: string;
|
|
@@ -4926,15 +4929,15 @@ export declare class RunDashboardCategoryViewResult {
|
|
|
4926
4929
|
Success: boolean;
|
|
4927
4930
|
}
|
|
4928
4931
|
export declare class DashboardCategoryResolver extends ResolverBase {
|
|
4929
|
-
RunDashboardCategoryViewByID(input: RunViewByIDInput, {
|
|
4930
|
-
RunDashboardCategoryViewByName(input: RunViewByNameInput, {
|
|
4931
|
-
RunDashboardCategoryDynamicView(input: RunDynamicViewInput, {
|
|
4932
|
-
DashboardCategory(ID: string, {
|
|
4933
|
-
DashboardCategories_ParentIDArray(dashboardcategory_: DashboardCategory_, {
|
|
4934
|
-
Dashboards_CategoryIDArray(dashboardcategory_: DashboardCategory_, {
|
|
4935
|
-
CreateDashboardCategory(input: CreateDashboardCategoryInput, {
|
|
4936
|
-
UpdateDashboardCategory(input: UpdateDashboardCategoryInput, {
|
|
4937
|
-
DeleteDashboardCategory(ID: string, options: DeleteOptionsInput, {
|
|
4932
|
+
RunDashboardCategoryViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4933
|
+
RunDashboardCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4934
|
+
RunDashboardCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4935
|
+
DashboardCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DashboardCategory_ | null>;
|
|
4936
|
+
DashboardCategories_ParentIDArray(dashboardcategory_: DashboardCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4937
|
+
Dashboards_CategoryIDArray(dashboardcategory_: DashboardCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4938
|
+
CreateDashboardCategory(input: CreateDashboardCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4939
|
+
UpdateDashboardCategory(input: UpdateDashboardCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4940
|
+
DeleteDashboardCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4938
4941
|
}
|
|
4939
4942
|
export declare class ReportCategory_ {
|
|
4940
4943
|
ID: string;
|
|
@@ -4973,15 +4976,15 @@ export declare class RunReportCategoryViewResult {
|
|
|
4973
4976
|
Success: boolean;
|
|
4974
4977
|
}
|
|
4975
4978
|
export declare class ReportCategoryResolver extends ResolverBase {
|
|
4976
|
-
RunReportCategoryViewByID(input: RunViewByIDInput, {
|
|
4977
|
-
RunReportCategoryViewByName(input: RunViewByNameInput, {
|
|
4978
|
-
RunReportCategoryDynamicView(input: RunDynamicViewInput, {
|
|
4979
|
-
ReportCategory(ID: string, {
|
|
4980
|
-
ReportCategories_ParentIDArray(reportcategory_: ReportCategory_, {
|
|
4981
|
-
Reports_CategoryIDArray(reportcategory_: ReportCategory_, {
|
|
4982
|
-
CreateReportCategory(input: CreateReportCategoryInput, {
|
|
4983
|
-
UpdateReportCategory(input: UpdateReportCategoryInput, {
|
|
4984
|
-
DeleteReportCategory(ID: string, options: DeleteOptionsInput, {
|
|
4979
|
+
RunReportCategoryViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4980
|
+
RunReportCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4981
|
+
RunReportCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4982
|
+
ReportCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ReportCategory_ | null>;
|
|
4983
|
+
ReportCategories_ParentIDArray(reportcategory_: ReportCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4984
|
+
Reports_CategoryIDArray(reportcategory_: ReportCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
4985
|
+
CreateReportCategory(input: CreateReportCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4986
|
+
UpdateReportCategory(input: UpdateReportCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4987
|
+
DeleteReportCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4985
4988
|
}
|
|
4986
4989
|
export declare class FileStorageProvider_ {
|
|
4987
4990
|
ID: string;
|
|
@@ -5023,14 +5026,14 @@ export declare class RunFileStorageProviderViewResult {
|
|
|
5023
5026
|
Success: boolean;
|
|
5024
5027
|
}
|
|
5025
5028
|
export declare class FileStorageProviderResolver extends ResolverBase {
|
|
5026
|
-
RunFileStorageProviderViewByID(input: RunViewByIDInput, {
|
|
5027
|
-
RunFileStorageProviderViewByName(input: RunViewByNameInput, {
|
|
5028
|
-
RunFileStorageProviderDynamicView(input: RunDynamicViewInput, {
|
|
5029
|
-
FileStorageProvider(ID: string, {
|
|
5030
|
-
Files_ProviderIDArray(filestorageprovider_: FileStorageProvider_, {
|
|
5031
|
-
CreateFileStorageProvider(input: CreateFileStorageProviderInput, {
|
|
5032
|
-
UpdateFileStorageProvider(input: UpdateFileStorageProviderInput, {
|
|
5033
|
-
DeleteFileStorageProvider(ID: string, options: DeleteOptionsInput, {
|
|
5029
|
+
RunFileStorageProviderViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5030
|
+
RunFileStorageProviderViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5031
|
+
RunFileStorageProviderDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5032
|
+
FileStorageProvider(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<FileStorageProvider_ | null>;
|
|
5033
|
+
Files_ProviderIDArray(filestorageprovider_: FileStorageProvider_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5034
|
+
CreateFileStorageProvider(input: CreateFileStorageProviderInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5035
|
+
UpdateFileStorageProvider(input: UpdateFileStorageProviderInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5036
|
+
DeleteFileStorageProvider(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5034
5037
|
}
|
|
5035
5038
|
export declare class File_ {
|
|
5036
5039
|
ID: string;
|
|
@@ -5077,14 +5080,14 @@ export declare class RunFileViewResult {
|
|
|
5077
5080
|
Success: boolean;
|
|
5078
5081
|
}
|
|
5079
5082
|
export declare class FileResolver extends ResolverBase {
|
|
5080
|
-
RunFileViewByID(input: RunViewByIDInput, {
|
|
5081
|
-
RunFileViewByName(input: RunViewByNameInput, {
|
|
5082
|
-
RunFileDynamicView(input: RunDynamicViewInput, {
|
|
5083
|
-
File(ID: string, {
|
|
5084
|
-
FileEntityRecordLinks_FileIDArray(file_: File_, {
|
|
5085
|
-
CreateFile(input: CreateFileInput, {
|
|
5086
|
-
UpdateFile(input: UpdateFileInput, {
|
|
5087
|
-
DeleteFile(ID: string, options: DeleteOptionsInput, {
|
|
5083
|
+
RunFileViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5084
|
+
RunFileViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5085
|
+
RunFileDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5086
|
+
File(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<File_ | null>;
|
|
5087
|
+
FileEntityRecordLinks_FileIDArray(file_: File_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5088
|
+
CreateFile(input: CreateFileInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5089
|
+
UpdateFile(input: UpdateFileInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5090
|
+
DeleteFile(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5088
5091
|
}
|
|
5089
5092
|
export declare class FileCategory_ {
|
|
5090
5093
|
ID: string;
|
|
@@ -5119,15 +5122,15 @@ export declare class RunFileCategoryViewResult {
|
|
|
5119
5122
|
Success: boolean;
|
|
5120
5123
|
}
|
|
5121
5124
|
export declare class FileCategoryResolver extends ResolverBase {
|
|
5122
|
-
RunFileCategoryViewByID(input: RunViewByIDInput, {
|
|
5123
|
-
RunFileCategoryViewByName(input: RunViewByNameInput, {
|
|
5124
|
-
RunFileCategoryDynamicView(input: RunDynamicViewInput, {
|
|
5125
|
-
FileCategory(ID: string, {
|
|
5126
|
-
Files_CategoryIDArray(filecategory_: FileCategory_, {
|
|
5127
|
-
FileCategories_ParentIDArray(filecategory_: FileCategory_, {
|
|
5128
|
-
CreateFileCategory(input: CreateFileCategoryInput, {
|
|
5129
|
-
UpdateFileCategory(input: UpdateFileCategoryInput, {
|
|
5130
|
-
DeleteFileCategory(ID: string, options: DeleteOptionsInput, {
|
|
5125
|
+
RunFileCategoryViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5126
|
+
RunFileCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5127
|
+
RunFileCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5128
|
+
FileCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<FileCategory_ | null>;
|
|
5129
|
+
Files_CategoryIDArray(filecategory_: FileCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5130
|
+
FileCategories_ParentIDArray(filecategory_: FileCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5131
|
+
CreateFileCategory(input: CreateFileCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5132
|
+
UpdateFileCategory(input: UpdateFileCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5133
|
+
DeleteFileCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5131
5134
|
}
|
|
5132
5135
|
export declare class FileEntityRecordLink_ {
|
|
5133
5136
|
ID: string;
|
|
@@ -5161,13 +5164,13 @@ export declare class RunFileEntityRecordLinkViewResult {
|
|
|
5161
5164
|
Success: boolean;
|
|
5162
5165
|
}
|
|
5163
5166
|
export declare class FileEntityRecordLinkResolver extends ResolverBase {
|
|
5164
|
-
RunFileEntityRecordLinkViewByID(input: RunViewByIDInput, {
|
|
5165
|
-
RunFileEntityRecordLinkViewByName(input: RunViewByNameInput, {
|
|
5166
|
-
RunFileEntityRecordLinkDynamicView(input: RunDynamicViewInput, {
|
|
5167
|
-
FileEntityRecordLink(ID: string, {
|
|
5168
|
-
CreateFileEntityRecordLink(input: CreateFileEntityRecordLinkInput, {
|
|
5169
|
-
UpdateFileEntityRecordLink(input: UpdateFileEntityRecordLinkInput, {
|
|
5170
|
-
DeleteFileEntityRecordLink(ID: string, options: DeleteOptionsInput, {
|
|
5167
|
+
RunFileEntityRecordLinkViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5168
|
+
RunFileEntityRecordLinkViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5169
|
+
RunFileEntityRecordLinkDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5170
|
+
FileEntityRecordLink(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<FileEntityRecordLink_ | null>;
|
|
5171
|
+
CreateFileEntityRecordLink(input: CreateFileEntityRecordLinkInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5172
|
+
UpdateFileEntityRecordLink(input: UpdateFileEntityRecordLinkInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5173
|
+
DeleteFileEntityRecordLink(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5171
5174
|
}
|
|
5172
5175
|
export declare class VersionInstallation_ {
|
|
5173
5176
|
ID: string;
|
|
@@ -5215,12 +5218,12 @@ export declare class RunVersionInstallationViewResult {
|
|
|
5215
5218
|
Success: boolean;
|
|
5216
5219
|
}
|
|
5217
5220
|
export declare class VersionInstallationResolver extends ResolverBase {
|
|
5218
|
-
RunVersionInstallationViewByID(input: RunViewByIDInput, {
|
|
5219
|
-
RunVersionInstallationViewByName(input: RunViewByNameInput, {
|
|
5220
|
-
RunVersionInstallationDynamicView(input: RunDynamicViewInput, {
|
|
5221
|
-
VersionInstallation(ID: string, {
|
|
5222
|
-
CreateVersionInstallation(input: CreateVersionInstallationInput, {
|
|
5223
|
-
UpdateVersionInstallation(input: UpdateVersionInstallationInput, {
|
|
5221
|
+
RunVersionInstallationViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5222
|
+
RunVersionInstallationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5223
|
+
RunVersionInstallationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5224
|
+
VersionInstallation(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<VersionInstallation_ | null>;
|
|
5225
|
+
CreateVersionInstallation(input: CreateVersionInstallationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5226
|
+
UpdateVersionInstallation(input: UpdateVersionInstallationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5224
5227
|
}
|
|
5225
5228
|
export declare class DuplicateRunDetailMatch_ {
|
|
5226
5229
|
ID: string;
|
|
@@ -5273,12 +5276,12 @@ export declare class RunDuplicateRunDetailMatchViewResult {
|
|
|
5273
5276
|
Success: boolean;
|
|
5274
5277
|
}
|
|
5275
5278
|
export declare class DuplicateRunDetailMatchResolver extends ResolverBase {
|
|
5276
|
-
RunDuplicateRunDetailMatchViewByID(input: RunViewByIDInput, {
|
|
5277
|
-
RunDuplicateRunDetailMatchViewByName(input: RunViewByNameInput, {
|
|
5278
|
-
RunDuplicateRunDetailMatchDynamicView(input: RunDynamicViewInput, {
|
|
5279
|
-
DuplicateRunDetailMatch(ID: string, {
|
|
5280
|
-
CreateDuplicateRunDetailMatch(input: CreateDuplicateRunDetailMatchInput, {
|
|
5281
|
-
UpdateDuplicateRunDetailMatch(input: UpdateDuplicateRunDetailMatchInput, {
|
|
5279
|
+
RunDuplicateRunDetailMatchViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5280
|
+
RunDuplicateRunDetailMatchViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5281
|
+
RunDuplicateRunDetailMatchDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5282
|
+
DuplicateRunDetailMatch(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DuplicateRunDetailMatch_ | null>;
|
|
5283
|
+
CreateDuplicateRunDetailMatch(input: CreateDuplicateRunDetailMatchInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5284
|
+
UpdateDuplicateRunDetailMatch(input: UpdateDuplicateRunDetailMatchInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5282
5285
|
}
|
|
5283
5286
|
export declare class EntityDocumentSetting_ {
|
|
5284
5287
|
ID: string;
|
|
@@ -5314,13 +5317,13 @@ export declare class RunEntityDocumentSettingViewResult {
|
|
|
5314
5317
|
Success: boolean;
|
|
5315
5318
|
}
|
|
5316
5319
|
export declare class EntityDocumentSettingResolver extends ResolverBase {
|
|
5317
|
-
RunEntityDocumentSettingViewByID(input: RunViewByIDInput, {
|
|
5318
|
-
RunEntityDocumentSettingViewByName(input: RunViewByNameInput, {
|
|
5319
|
-
RunEntityDocumentSettingDynamicView(input: RunDynamicViewInput, {
|
|
5320
|
-
EntityDocumentSetting(ID: string, {
|
|
5321
|
-
CreateEntityDocumentSetting(input: CreateEntityDocumentSettingInput, {
|
|
5322
|
-
UpdateEntityDocumentSetting(input: UpdateEntityDocumentSettingInput, {
|
|
5323
|
-
DeleteEntityDocumentSetting(ID: string, options: DeleteOptionsInput, {
|
|
5320
|
+
RunEntityDocumentSettingViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5321
|
+
RunEntityDocumentSettingViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5322
|
+
RunEntityDocumentSettingDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5323
|
+
EntityDocumentSetting(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityDocumentSetting_ | null>;
|
|
5324
|
+
CreateEntityDocumentSetting(input: CreateEntityDocumentSettingInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5325
|
+
UpdateEntityDocumentSetting(input: UpdateEntityDocumentSettingInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5326
|
+
DeleteEntityDocumentSetting(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5324
5327
|
}
|
|
5325
5328
|
export declare class EntitySetting_ {
|
|
5326
5329
|
ID: string;
|
|
@@ -5356,13 +5359,13 @@ export declare class RunEntitySettingViewResult {
|
|
|
5356
5359
|
Success: boolean;
|
|
5357
5360
|
}
|
|
5358
5361
|
export declare class EntitySettingResolver extends ResolverBase {
|
|
5359
|
-
RunEntitySettingViewByID(input: RunViewByIDInput, {
|
|
5360
|
-
RunEntitySettingViewByName(input: RunViewByNameInput, {
|
|
5361
|
-
RunEntitySettingDynamicView(input: RunDynamicViewInput, {
|
|
5362
|
-
EntitySetting(ID: string, {
|
|
5363
|
-
CreateEntitySetting(input: CreateEntitySettingInput, {
|
|
5364
|
-
UpdateEntitySetting(input: UpdateEntitySettingInput, {
|
|
5365
|
-
DeleteEntitySetting(ID: string, options: DeleteOptionsInput, {
|
|
5362
|
+
RunEntitySettingViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5363
|
+
RunEntitySettingViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5364
|
+
RunEntitySettingDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5365
|
+
EntitySetting(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntitySetting_ | null>;
|
|
5366
|
+
CreateEntitySetting(input: CreateEntitySettingInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5367
|
+
UpdateEntitySetting(input: UpdateEntitySettingInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5368
|
+
DeleteEntitySetting(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5366
5369
|
}
|
|
5367
5370
|
export declare class DuplicateRun_ {
|
|
5368
5371
|
ID: string;
|
|
@@ -5420,13 +5423,13 @@ export declare class RunDuplicateRunViewResult {
|
|
|
5420
5423
|
Success: boolean;
|
|
5421
5424
|
}
|
|
5422
5425
|
export declare class DuplicateRunResolver extends ResolverBase {
|
|
5423
|
-
RunDuplicateRunViewByID(input: RunViewByIDInput, {
|
|
5424
|
-
RunDuplicateRunViewByName(input: RunViewByNameInput, {
|
|
5425
|
-
RunDuplicateRunDynamicView(input: RunDynamicViewInput, {
|
|
5426
|
-
DuplicateRun(ID: string, {
|
|
5427
|
-
DuplicateRunDetails_DuplicateRunIDArray(duplicaterun_: DuplicateRun_, {
|
|
5428
|
-
CreateDuplicateRun(input: CreateDuplicateRunInput, {
|
|
5429
|
-
UpdateDuplicateRun(input: UpdateDuplicateRunInput, {
|
|
5426
|
+
RunDuplicateRunViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5427
|
+
RunDuplicateRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5428
|
+
RunDuplicateRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5429
|
+
DuplicateRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DuplicateRun_ | null>;
|
|
5430
|
+
DuplicateRunDetails_DuplicateRunIDArray(duplicaterun_: DuplicateRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5431
|
+
CreateDuplicateRun(input: CreateDuplicateRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5432
|
+
UpdateDuplicateRun(input: UpdateDuplicateRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5430
5433
|
}
|
|
5431
5434
|
export declare class DuplicateRunDetail_ {
|
|
5432
5435
|
ID: string;
|
|
@@ -5471,13 +5474,13 @@ export declare class RunDuplicateRunDetailViewResult {
|
|
|
5471
5474
|
Success: boolean;
|
|
5472
5475
|
}
|
|
5473
5476
|
export declare class DuplicateRunDetailResolver extends ResolverBase {
|
|
5474
|
-
RunDuplicateRunDetailViewByID(input: RunViewByIDInput, {
|
|
5475
|
-
RunDuplicateRunDetailViewByName(input: RunViewByNameInput, {
|
|
5476
|
-
RunDuplicateRunDetailDynamicView(input: RunDynamicViewInput, {
|
|
5477
|
-
DuplicateRunDetail(ID: string, {
|
|
5478
|
-
DuplicateRunDetailMatches_DuplicateRunDetailIDArray(duplicaterundetail_: DuplicateRunDetail_, {
|
|
5479
|
-
CreateDuplicateRunDetail(input: CreateDuplicateRunDetailInput, {
|
|
5480
|
-
UpdateDuplicateRunDetail(input: UpdateDuplicateRunDetailInput, {
|
|
5477
|
+
RunDuplicateRunDetailViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5478
|
+
RunDuplicateRunDetailViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5479
|
+
RunDuplicateRunDetailDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5480
|
+
DuplicateRunDetail(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DuplicateRunDetail_ | null>;
|
|
5481
|
+
DuplicateRunDetailMatches_DuplicateRunDetailIDArray(duplicaterundetail_: DuplicateRunDetail_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5482
|
+
CreateDuplicateRunDetail(input: CreateDuplicateRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5483
|
+
UpdateDuplicateRunDetail(input: UpdateDuplicateRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5481
5484
|
}
|
|
5482
5485
|
export declare class ApplicationSetting_ {
|
|
5483
5486
|
ID: string;
|
|
@@ -5513,13 +5516,13 @@ export declare class RunApplicationSettingViewResult {
|
|
|
5513
5516
|
Success: boolean;
|
|
5514
5517
|
}
|
|
5515
5518
|
export declare class ApplicationSettingResolver extends ResolverBase {
|
|
5516
|
-
RunApplicationSettingViewByID(input: RunViewByIDInput, {
|
|
5517
|
-
RunApplicationSettingViewByName(input: RunViewByNameInput, {
|
|
5518
|
-
RunApplicationSettingDynamicView(input: RunDynamicViewInput, {
|
|
5519
|
-
ApplicationSetting(ID: string, {
|
|
5520
|
-
CreateApplicationSetting(input: CreateApplicationSettingInput, {
|
|
5521
|
-
UpdateApplicationSetting(input: UpdateApplicationSettingInput, {
|
|
5522
|
-
DeleteApplicationSetting(ID: string, options: DeleteOptionsInput, {
|
|
5519
|
+
RunApplicationSettingViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5520
|
+
RunApplicationSettingViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5521
|
+
RunApplicationSettingDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5522
|
+
ApplicationSetting(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ApplicationSetting_ | null>;
|
|
5523
|
+
CreateApplicationSetting(input: CreateApplicationSettingInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5524
|
+
UpdateApplicationSetting(input: UpdateApplicationSettingInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5525
|
+
DeleteApplicationSetting(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5523
5526
|
}
|
|
5524
5527
|
export declare class ActionCategory_ {
|
|
5525
5528
|
ID: string;
|
|
@@ -5557,15 +5560,15 @@ export declare class RunActionCategoryViewResult {
|
|
|
5557
5560
|
Success: boolean;
|
|
5558
5561
|
}
|
|
5559
5562
|
export declare class ActionCategoryResolver extends ResolverBase {
|
|
5560
|
-
RunActionCategoryViewByID(input: RunViewByIDInput, {
|
|
5561
|
-
RunActionCategoryViewByName(input: RunViewByNameInput, {
|
|
5562
|
-
RunActionCategoryDynamicView(input: RunDynamicViewInput, {
|
|
5563
|
-
ActionCategory(ID: string, {
|
|
5564
|
-
ActionCategories_ParentIDArray(actioncategory_: ActionCategory_, {
|
|
5565
|
-
Actions_CategoryIDArray(actioncategory_: ActionCategory_, {
|
|
5566
|
-
CreateActionCategory(input: CreateActionCategoryInput, {
|
|
5567
|
-
UpdateActionCategory(input: UpdateActionCategoryInput, {
|
|
5568
|
-
DeleteActionCategory(ID: string, options: DeleteOptionsInput, {
|
|
5563
|
+
RunActionCategoryViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5564
|
+
RunActionCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5565
|
+
RunActionCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5566
|
+
ActionCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionCategory_ | null>;
|
|
5567
|
+
ActionCategories_ParentIDArray(actioncategory_: ActionCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5568
|
+
Actions_CategoryIDArray(actioncategory_: ActionCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5569
|
+
CreateActionCategory(input: CreateActionCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5570
|
+
UpdateActionCategory(input: UpdateActionCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5571
|
+
DeleteActionCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5569
5572
|
}
|
|
5570
5573
|
export declare class EntityAction_ {
|
|
5571
5574
|
EntityID: string;
|
|
@@ -5602,16 +5605,16 @@ export declare class RunEntityActionViewResult {
|
|
|
5602
5605
|
Success: boolean;
|
|
5603
5606
|
}
|
|
5604
5607
|
export declare class EntityActionResolver extends ResolverBase {
|
|
5605
|
-
RunEntityActionViewByID(input: RunViewByIDInput, {
|
|
5606
|
-
RunEntityActionViewByName(input: RunViewByNameInput, {
|
|
5607
|
-
RunEntityActionDynamicView(input: RunDynamicViewInput, {
|
|
5608
|
-
EntityAction(ID: string, {
|
|
5609
|
-
EntityActionInvocations_EntityActionIDArray(entityaction_: EntityAction_, {
|
|
5610
|
-
EntityActionFilters_EntityActionIDArray(entityaction_: EntityAction_, {
|
|
5611
|
-
EntityActionParams_EntityActionIDArray(entityaction_: EntityAction_, {
|
|
5612
|
-
CreateEntityAction(input: CreateEntityActionInput, {
|
|
5613
|
-
UpdateEntityAction(input: UpdateEntityActionInput, {
|
|
5614
|
-
DeleteEntityAction(ID: string, options: DeleteOptionsInput, {
|
|
5608
|
+
RunEntityActionViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5609
|
+
RunEntityActionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5610
|
+
RunEntityActionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5611
|
+
EntityAction(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityAction_ | null>;
|
|
5612
|
+
EntityActionInvocations_EntityActionIDArray(entityaction_: EntityAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5613
|
+
EntityActionFilters_EntityActionIDArray(entityaction_: EntityAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5614
|
+
EntityActionParams_EntityActionIDArray(entityaction_: EntityAction_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5615
|
+
CreateEntityAction(input: CreateEntityActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5616
|
+
UpdateEntityAction(input: UpdateEntityActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5617
|
+
DeleteEntityAction(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5615
5618
|
}
|
|
5616
5619
|
export declare class EntityActionInvocation_ {
|
|
5617
5620
|
ID: string;
|
|
@@ -5644,13 +5647,13 @@ export declare class RunEntityActionInvocationViewResult {
|
|
|
5644
5647
|
Success: boolean;
|
|
5645
5648
|
}
|
|
5646
5649
|
export declare class EntityActionInvocationResolver extends ResolverBase {
|
|
5647
|
-
RunEntityActionInvocationViewByID(input: RunViewByIDInput, {
|
|
5648
|
-
RunEntityActionInvocationViewByName(input: RunViewByNameInput, {
|
|
5649
|
-
RunEntityActionInvocationDynamicView(input: RunDynamicViewInput, {
|
|
5650
|
-
EntityActionInvocation(ID: string, {
|
|
5651
|
-
CreateEntityActionInvocation(input: CreateEntityActionInvocationInput, {
|
|
5652
|
-
UpdateEntityActionInvocation(input: UpdateEntityActionInvocationInput, {
|
|
5653
|
-
DeleteEntityActionInvocation(ID: string, options: DeleteOptionsInput, {
|
|
5650
|
+
RunEntityActionInvocationViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5651
|
+
RunEntityActionInvocationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5652
|
+
RunEntityActionInvocationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5653
|
+
EntityActionInvocation(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityActionInvocation_ | null>;
|
|
5654
|
+
CreateEntityActionInvocation(input: CreateEntityActionInvocationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5655
|
+
UpdateEntityActionInvocation(input: UpdateEntityActionInvocationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5656
|
+
DeleteEntityActionInvocation(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5654
5657
|
}
|
|
5655
5658
|
export declare class ActionAuthorization_ {
|
|
5656
5659
|
ID: string;
|
|
@@ -5684,13 +5687,13 @@ export declare class RunActionAuthorizationViewResult {
|
|
|
5684
5687
|
Success: boolean;
|
|
5685
5688
|
}
|
|
5686
5689
|
export declare class ActionAuthorizationResolver extends ResolverBase {
|
|
5687
|
-
RunActionAuthorizationViewByID(input: RunViewByIDInput, {
|
|
5688
|
-
RunActionAuthorizationViewByName(input: RunViewByNameInput, {
|
|
5689
|
-
RunActionAuthorizationDynamicView(input: RunDynamicViewInput, {
|
|
5690
|
-
ActionAuthorization(ID: string, {
|
|
5691
|
-
CreateActionAuthorization(input: CreateActionAuthorizationInput, {
|
|
5692
|
-
UpdateActionAuthorization(input: UpdateActionAuthorizationInput, {
|
|
5693
|
-
DeleteActionAuthorization(ID: string, options: DeleteOptionsInput, {
|
|
5690
|
+
RunActionAuthorizationViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5691
|
+
RunActionAuthorizationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5692
|
+
RunActionAuthorizationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5693
|
+
ActionAuthorization(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionAuthorization_ | null>;
|
|
5694
|
+
CreateActionAuthorization(input: CreateActionAuthorizationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5695
|
+
UpdateActionAuthorization(input: UpdateActionAuthorizationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5696
|
+
DeleteActionAuthorization(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5694
5697
|
}
|
|
5695
5698
|
export declare class EntityActionInvocationType_ {
|
|
5696
5699
|
ID: string;
|
|
@@ -5723,14 +5726,14 @@ export declare class RunEntityActionInvocationTypeViewResult {
|
|
|
5723
5726
|
Success: boolean;
|
|
5724
5727
|
}
|
|
5725
5728
|
export declare class EntityActionInvocationTypeResolver extends ResolverBase {
|
|
5726
|
-
RunEntityActionInvocationTypeViewByID(input: RunViewByIDInput, {
|
|
5727
|
-
RunEntityActionInvocationTypeViewByName(input: RunViewByNameInput, {
|
|
5728
|
-
RunEntityActionInvocationTypeDynamicView(input: RunDynamicViewInput, {
|
|
5729
|
-
EntityActionInvocationType(ID: string, {
|
|
5730
|
-
EntityActionInvocations_InvocationTypeIDArray(entityactioninvocationtype_: EntityActionInvocationType_, {
|
|
5731
|
-
CreateEntityActionInvocationType(input: CreateEntityActionInvocationTypeInput, {
|
|
5732
|
-
UpdateEntityActionInvocationType(input: UpdateEntityActionInvocationTypeInput, {
|
|
5733
|
-
DeleteEntityActionInvocationType(ID: string, options: DeleteOptionsInput, {
|
|
5729
|
+
RunEntityActionInvocationTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5730
|
+
RunEntityActionInvocationTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5731
|
+
RunEntityActionInvocationTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5732
|
+
EntityActionInvocationType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityActionInvocationType_ | null>;
|
|
5733
|
+
EntityActionInvocations_InvocationTypeIDArray(entityactioninvocationtype_: EntityActionInvocationType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5734
|
+
CreateEntityActionInvocationType(input: CreateEntityActionInvocationTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5735
|
+
UpdateEntityActionInvocationType(input: UpdateEntityActionInvocationTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5736
|
+
DeleteEntityActionInvocationType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5734
5737
|
}
|
|
5735
5738
|
export declare class Action_ {
|
|
5736
5739
|
ID: string;
|
|
@@ -5812,22 +5815,22 @@ export declare class RunActionViewResult {
|
|
|
5812
5815
|
Success: boolean;
|
|
5813
5816
|
}
|
|
5814
5817
|
export declare class ActionResolver extends ResolverBase {
|
|
5815
|
-
RunActionViewByID(input: RunViewByIDInput, {
|
|
5816
|
-
RunActionViewByName(input: RunViewByNameInput, {
|
|
5817
|
-
RunActionDynamicView(input: RunDynamicViewInput, {
|
|
5818
|
-
Action(ID: string, {
|
|
5819
|
-
ActionParams_ActionIDArray(action_: Action_, {
|
|
5820
|
-
ActionLibraries_ActionIDArray(action_: Action_, {
|
|
5821
|
-
ScheduledActions_ActionIDArray(action_: Action_, {
|
|
5822
|
-
ActionResultCodes_ActionIDArray(action_: Action_, {
|
|
5823
|
-
AIAgentActions_ActionIDArray(action_: Action_, {
|
|
5824
|
-
ActionContexts_ActionIDArray(action_: Action_, {
|
|
5825
|
-
EntityActions_ActionIDArray(action_: Action_, {
|
|
5826
|
-
ActionExecutionLogs_ActionIDArray(action_: Action_, {
|
|
5827
|
-
ActionAuthorizations_ActionIDArray(action_: Action_, {
|
|
5828
|
-
CreateAction(input: CreateActionInput, {
|
|
5829
|
-
UpdateAction(input: UpdateActionInput, {
|
|
5830
|
-
DeleteAction(ID: string, options: DeleteOptionsInput, {
|
|
5818
|
+
RunActionViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5819
|
+
RunActionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5820
|
+
RunActionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5821
|
+
Action(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Action_ | null>;
|
|
5822
|
+
ActionParams_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5823
|
+
ActionLibraries_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5824
|
+
ScheduledActions_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5825
|
+
ActionResultCodes_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5826
|
+
AIAgentActions_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5827
|
+
ActionContexts_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5828
|
+
EntityActions_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5829
|
+
ActionExecutionLogs_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5830
|
+
ActionAuthorizations_ActionIDArray(action_: Action_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5831
|
+
CreateAction(input: CreateActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5832
|
+
UpdateAction(input: UpdateActionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5833
|
+
DeleteAction(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5831
5834
|
}
|
|
5832
5835
|
export declare class EntityActionFilter_ {
|
|
5833
5836
|
ID: string;
|
|
@@ -5862,13 +5865,13 @@ export declare class RunEntityActionFilterViewResult {
|
|
|
5862
5865
|
Success: boolean;
|
|
5863
5866
|
}
|
|
5864
5867
|
export declare class EntityActionFilterResolver extends ResolverBase {
|
|
5865
|
-
RunEntityActionFilterViewByID(input: RunViewByIDInput, {
|
|
5866
|
-
RunEntityActionFilterViewByName(input: RunViewByNameInput, {
|
|
5867
|
-
RunEntityActionFilterDynamicView(input: RunDynamicViewInput, {
|
|
5868
|
-
EntityActionFilter(ID: string, {
|
|
5869
|
-
CreateEntityActionFilter(input: CreateEntityActionFilterInput, {
|
|
5870
|
-
UpdateEntityActionFilter(input: UpdateEntityActionFilterInput, {
|
|
5871
|
-
DeleteEntityActionFilter(ID: string, options: DeleteOptionsInput, {
|
|
5868
|
+
RunEntityActionFilterViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5869
|
+
RunEntityActionFilterViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5870
|
+
RunEntityActionFilterDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5871
|
+
EntityActionFilter(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityActionFilter_ | null>;
|
|
5872
|
+
CreateEntityActionFilter(input: CreateEntityActionFilterInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5873
|
+
UpdateEntityActionFilter(input: UpdateEntityActionFilterInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5874
|
+
DeleteEntityActionFilter(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5872
5875
|
}
|
|
5873
5876
|
export declare class ActionFilter_ {
|
|
5874
5877
|
ID: string;
|
|
@@ -5904,14 +5907,14 @@ export declare class RunActionFilterViewResult {
|
|
|
5904
5907
|
Success: boolean;
|
|
5905
5908
|
}
|
|
5906
5909
|
export declare class ActionFilterResolver extends ResolverBase {
|
|
5907
|
-
RunActionFilterViewByID(input: RunViewByIDInput, {
|
|
5908
|
-
RunActionFilterViewByName(input: RunViewByNameInput, {
|
|
5909
|
-
RunActionFilterDynamicView(input: RunDynamicViewInput, {
|
|
5910
|
-
ActionFilter(ID: string, {
|
|
5911
|
-
EntityActionFilters_ActionFilterIDArray(actionfilter_: ActionFilter_, {
|
|
5912
|
-
CreateActionFilter(input: CreateActionFilterInput, {
|
|
5913
|
-
UpdateActionFilter(input: UpdateActionFilterInput, {
|
|
5914
|
-
DeleteActionFilter(ID: string, options: DeleteOptionsInput, {
|
|
5910
|
+
RunActionFilterViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5911
|
+
RunActionFilterViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5912
|
+
RunActionFilterDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5913
|
+
ActionFilter(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionFilter_ | null>;
|
|
5914
|
+
EntityActionFilters_ActionFilterIDArray(actionfilter_: ActionFilter_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5915
|
+
CreateActionFilter(input: CreateActionFilterInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5916
|
+
UpdateActionFilter(input: UpdateActionFilterInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5917
|
+
DeleteActionFilter(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5915
5918
|
}
|
|
5916
5919
|
export declare class ActionContextType_ {
|
|
5917
5920
|
ID: string;
|
|
@@ -5941,14 +5944,14 @@ export declare class RunActionContextTypeViewResult {
|
|
|
5941
5944
|
Success: boolean;
|
|
5942
5945
|
}
|
|
5943
5946
|
export declare class ActionContextTypeResolver extends ResolverBase {
|
|
5944
|
-
RunActionContextTypeViewByID(input: RunViewByIDInput, {
|
|
5945
|
-
RunActionContextTypeViewByName(input: RunViewByNameInput, {
|
|
5946
|
-
RunActionContextTypeDynamicView(input: RunDynamicViewInput, {
|
|
5947
|
-
ActionContextType(ID: string, {
|
|
5948
|
-
ActionContexts_ContextTypeIDArray(actioncontexttype_: ActionContextType_, {
|
|
5949
|
-
CreateActionContextType(input: CreateActionContextTypeInput, {
|
|
5950
|
-
UpdateActionContextType(input: UpdateActionContextTypeInput, {
|
|
5951
|
-
DeleteActionContextType(ID: string, options: DeleteOptionsInput, {
|
|
5947
|
+
RunActionContextTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5948
|
+
RunActionContextTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5949
|
+
RunActionContextTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5950
|
+
ActionContextType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionContextType_ | null>;
|
|
5951
|
+
ActionContexts_ContextTypeIDArray(actioncontexttype_: ActionContextType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
5952
|
+
CreateActionContextType(input: CreateActionContextTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5953
|
+
UpdateActionContextType(input: UpdateActionContextTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5954
|
+
DeleteActionContextType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5952
5955
|
}
|
|
5953
5956
|
export declare class ActionResultCode_ {
|
|
5954
5957
|
ID: string;
|
|
@@ -5984,13 +5987,13 @@ export declare class RunActionResultCodeViewResult {
|
|
|
5984
5987
|
Success: boolean;
|
|
5985
5988
|
}
|
|
5986
5989
|
export declare class ActionResultCodeResolver extends ResolverBase {
|
|
5987
|
-
RunActionResultCodeViewByID(input: RunViewByIDInput, {
|
|
5988
|
-
RunActionResultCodeViewByName(input: RunViewByNameInput, {
|
|
5989
|
-
RunActionResultCodeDynamicView(input: RunDynamicViewInput, {
|
|
5990
|
-
ActionResultCode(ID: string, {
|
|
5991
|
-
CreateActionResultCode(input: CreateActionResultCodeInput, {
|
|
5992
|
-
UpdateActionResultCode(input: UpdateActionResultCodeInput, {
|
|
5993
|
-
DeleteActionResultCode(ID: string, options: DeleteOptionsInput, {
|
|
5990
|
+
RunActionResultCodeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5991
|
+
RunActionResultCodeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5992
|
+
RunActionResultCodeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5993
|
+
ActionResultCode(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionResultCode_ | null>;
|
|
5994
|
+
CreateActionResultCode(input: CreateActionResultCodeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5995
|
+
UpdateActionResultCode(input: UpdateActionResultCodeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5996
|
+
DeleteActionResultCode(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5994
5997
|
}
|
|
5995
5998
|
export declare class ActionContext_ {
|
|
5996
5999
|
ID: string;
|
|
@@ -6024,13 +6027,13 @@ export declare class RunActionContextViewResult {
|
|
|
6024
6027
|
Success: boolean;
|
|
6025
6028
|
}
|
|
6026
6029
|
export declare class ActionContextResolver extends ResolverBase {
|
|
6027
|
-
RunActionContextViewByID(input: RunViewByIDInput, {
|
|
6028
|
-
RunActionContextViewByName(input: RunViewByNameInput, {
|
|
6029
|
-
RunActionContextDynamicView(input: RunDynamicViewInput, {
|
|
6030
|
-
ActionContext(ID: string, {
|
|
6031
|
-
CreateActionContext(input: CreateActionContextInput, {
|
|
6032
|
-
UpdateActionContext(input: UpdateActionContextInput, {
|
|
6033
|
-
DeleteActionContext(ID: string, options: DeleteOptionsInput, {
|
|
6030
|
+
RunActionContextViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6031
|
+
RunActionContextViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6032
|
+
RunActionContextDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6033
|
+
ActionContext(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionContext_ | null>;
|
|
6034
|
+
CreateActionContext(input: CreateActionContextInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6035
|
+
UpdateActionContext(input: UpdateActionContextInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6036
|
+
DeleteActionContext(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6034
6037
|
}
|
|
6035
6038
|
export declare class ActionExecutionLog_ {
|
|
6036
6039
|
ID: string;
|
|
@@ -6076,13 +6079,13 @@ export declare class RunActionExecutionLogViewResult {
|
|
|
6076
6079
|
Success: boolean;
|
|
6077
6080
|
}
|
|
6078
6081
|
export declare class ActionExecutionLogResolver extends ResolverBase {
|
|
6079
|
-
RunActionExecutionLogViewByID(input: RunViewByIDInput, {
|
|
6080
|
-
RunActionExecutionLogViewByName(input: RunViewByNameInput, {
|
|
6081
|
-
RunActionExecutionLogDynamicView(input: RunDynamicViewInput, {
|
|
6082
|
-
ActionExecutionLog(ID: string, {
|
|
6083
|
-
CreateActionExecutionLog(input: CreateActionExecutionLogInput, {
|
|
6084
|
-
UpdateActionExecutionLog(input: UpdateActionExecutionLogInput, {
|
|
6085
|
-
DeleteActionExecutionLog(ID: string, options: DeleteOptionsInput, {
|
|
6082
|
+
RunActionExecutionLogViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6083
|
+
RunActionExecutionLogViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6084
|
+
RunActionExecutionLogDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6085
|
+
ActionExecutionLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionExecutionLog_ | null>;
|
|
6086
|
+
CreateActionExecutionLog(input: CreateActionExecutionLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6087
|
+
UpdateActionExecutionLog(input: UpdateActionExecutionLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6088
|
+
DeleteActionExecutionLog(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6086
6089
|
}
|
|
6087
6090
|
export declare class ActionParam_ {
|
|
6088
6091
|
ID: string;
|
|
@@ -6132,15 +6135,15 @@ export declare class RunActionParamViewResult {
|
|
|
6132
6135
|
Success: boolean;
|
|
6133
6136
|
}
|
|
6134
6137
|
export declare class ActionParamResolver extends ResolverBase {
|
|
6135
|
-
RunActionParamViewByID(input: RunViewByIDInput, {
|
|
6136
|
-
RunActionParamViewByName(input: RunViewByNameInput, {
|
|
6137
|
-
RunActionParamDynamicView(input: RunDynamicViewInput, {
|
|
6138
|
-
ActionParam(ID: string, {
|
|
6139
|
-
EntityActionParams_ActionParamIDArray(actionparam_: ActionParam_, {
|
|
6140
|
-
ScheduledActionParams_ActionParamIDArray(actionparam_: ActionParam_, {
|
|
6141
|
-
CreateActionParam(input: CreateActionParamInput, {
|
|
6142
|
-
UpdateActionParam(input: UpdateActionParamInput, {
|
|
6143
|
-
DeleteActionParam(ID: string, options: DeleteOptionsInput, {
|
|
6138
|
+
RunActionParamViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6139
|
+
RunActionParamViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6140
|
+
RunActionParamDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6141
|
+
ActionParam(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionParam_ | null>;
|
|
6142
|
+
EntityActionParams_ActionParamIDArray(actionparam_: ActionParam_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6143
|
+
ScheduledActionParams_ActionParamIDArray(actionparam_: ActionParam_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6144
|
+
CreateActionParam(input: CreateActionParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6145
|
+
UpdateActionParam(input: UpdateActionParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6146
|
+
DeleteActionParam(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6144
6147
|
}
|
|
6145
6148
|
export declare class ActionLibrary_ {
|
|
6146
6149
|
ID: string;
|
|
@@ -6174,13 +6177,13 @@ export declare class RunActionLibraryViewResult {
|
|
|
6174
6177
|
Success: boolean;
|
|
6175
6178
|
}
|
|
6176
6179
|
export declare class ActionLibraryResolver extends ResolverBase {
|
|
6177
|
-
RunActionLibraryViewByID(input: RunViewByIDInput, {
|
|
6178
|
-
RunActionLibraryViewByName(input: RunViewByNameInput, {
|
|
6179
|
-
RunActionLibraryDynamicView(input: RunDynamicViewInput, {
|
|
6180
|
-
ActionLibrary(ID: string, {
|
|
6181
|
-
CreateActionLibrary(input: CreateActionLibraryInput, {
|
|
6182
|
-
UpdateActionLibrary(input: UpdateActionLibraryInput, {
|
|
6183
|
-
DeleteActionLibrary(ID: string, options: DeleteOptionsInput, {
|
|
6180
|
+
RunActionLibraryViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6181
|
+
RunActionLibraryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6182
|
+
RunActionLibraryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6183
|
+
ActionLibrary(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ActionLibrary_ | null>;
|
|
6184
|
+
CreateActionLibrary(input: CreateActionLibraryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6185
|
+
UpdateActionLibrary(input: UpdateActionLibraryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6186
|
+
DeleteActionLibrary(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6184
6187
|
}
|
|
6185
6188
|
export declare class Library_ {
|
|
6186
6189
|
ID: string;
|
|
@@ -6220,15 +6223,15 @@ export declare class RunLibraryViewResult {
|
|
|
6220
6223
|
Success: boolean;
|
|
6221
6224
|
}
|
|
6222
6225
|
export declare class LibraryResolver extends ResolverBase {
|
|
6223
|
-
RunLibraryViewByID(input: RunViewByIDInput, {
|
|
6224
|
-
RunLibraryViewByName(input: RunViewByNameInput, {
|
|
6225
|
-
RunLibraryDynamicView(input: RunDynamicViewInput, {
|
|
6226
|
-
Library(ID: string, {
|
|
6227
|
-
ActionLibraries_LibraryIDArray(library_: Library_, {
|
|
6228
|
-
LibraryItems_LibraryIDArray(library_: Library_, {
|
|
6229
|
-
CreateLibrary(input: CreateLibraryInput, {
|
|
6230
|
-
UpdateLibrary(input: UpdateLibraryInput, {
|
|
6231
|
-
DeleteLibrary(ID: string, options: DeleteOptionsInput, {
|
|
6226
|
+
RunLibraryViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6227
|
+
RunLibraryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6228
|
+
RunLibraryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6229
|
+
Library(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Library_ | null>;
|
|
6230
|
+
ActionLibraries_LibraryIDArray(library_: Library_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6231
|
+
LibraryItems_LibraryIDArray(library_: Library_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6232
|
+
CreateLibrary(input: CreateLibraryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6233
|
+
UpdateLibrary(input: UpdateLibraryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6234
|
+
DeleteLibrary(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6232
6235
|
}
|
|
6233
6236
|
export declare class ListCategory_ {
|
|
6234
6237
|
ID: string;
|
|
@@ -6267,15 +6270,15 @@ export declare class RunListCategoryViewResult {
|
|
|
6267
6270
|
Success: boolean;
|
|
6268
6271
|
}
|
|
6269
6272
|
export declare class ListCategoryResolver extends ResolverBase {
|
|
6270
|
-
RunListCategoryViewByID(input: RunViewByIDInput, {
|
|
6271
|
-
RunListCategoryViewByName(input: RunViewByNameInput, {
|
|
6272
|
-
RunListCategoryDynamicView(input: RunDynamicViewInput, {
|
|
6273
|
-
ListCategory(ID: string, {
|
|
6274
|
-
ListCategories_ParentIDArray(listcategory_: ListCategory_, {
|
|
6275
|
-
Lists_CategoryIDArray(listcategory_: ListCategory_, {
|
|
6276
|
-
CreateListCategory(input: CreateListCategoryInput, {
|
|
6277
|
-
UpdateListCategory(input: UpdateListCategoryInput, {
|
|
6278
|
-
DeleteListCategory(ID: string, options: DeleteOptionsInput, {
|
|
6273
|
+
RunListCategoryViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6274
|
+
RunListCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6275
|
+
RunListCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6276
|
+
ListCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ListCategory_ | null>;
|
|
6277
|
+
ListCategories_ParentIDArray(listcategory_: ListCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6278
|
+
Lists_CategoryIDArray(listcategory_: ListCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6279
|
+
CreateListCategory(input: CreateListCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6280
|
+
UpdateListCategory(input: UpdateListCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6281
|
+
DeleteListCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6279
6282
|
}
|
|
6280
6283
|
export declare class CommunicationProvider_ {
|
|
6281
6284
|
ID: string;
|
|
@@ -6318,15 +6321,15 @@ export declare class RunCommunicationProviderViewResult {
|
|
|
6318
6321
|
Success: boolean;
|
|
6319
6322
|
}
|
|
6320
6323
|
export declare class CommunicationProviderResolver extends ResolverBase {
|
|
6321
|
-
RunCommunicationProviderViewByID(input: RunViewByIDInput, {
|
|
6322
|
-
RunCommunicationProviderViewByName(input: RunViewByNameInput, {
|
|
6323
|
-
RunCommunicationProviderDynamicView(input: RunDynamicViewInput, {
|
|
6324
|
-
CommunicationProvider(ID: string, {
|
|
6325
|
-
CommunicationLogs_CommunicationProviderIDArray(communicationprovider_: CommunicationProvider_, {
|
|
6326
|
-
CommunicationProviderMessageTypes_CommunicationProviderIDArray(communicationprovider_: CommunicationProvider_, {
|
|
6327
|
-
CreateCommunicationProvider(input: CreateCommunicationProviderInput, {
|
|
6328
|
-
UpdateCommunicationProvider(input: UpdateCommunicationProviderInput, {
|
|
6329
|
-
DeleteCommunicationProvider(ID: string, options: DeleteOptionsInput, {
|
|
6324
|
+
RunCommunicationProviderViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6325
|
+
RunCommunicationProviderViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6326
|
+
RunCommunicationProviderDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6327
|
+
CommunicationProvider(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationProvider_ | null>;
|
|
6328
|
+
CommunicationLogs_CommunicationProviderIDArray(communicationprovider_: CommunicationProvider_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6329
|
+
CommunicationProviderMessageTypes_CommunicationProviderIDArray(communicationprovider_: CommunicationProvider_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6330
|
+
CreateCommunicationProvider(input: CreateCommunicationProviderInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6331
|
+
UpdateCommunicationProvider(input: UpdateCommunicationProviderInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6332
|
+
DeleteCommunicationProvider(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6330
6333
|
}
|
|
6331
6334
|
export declare class CommunicationRun_ {
|
|
6332
6335
|
ID: string;
|
|
@@ -6372,13 +6375,13 @@ export declare class RunCommunicationRunViewResult {
|
|
|
6372
6375
|
Success: boolean;
|
|
6373
6376
|
}
|
|
6374
6377
|
export declare class CommunicationRunResolver extends ResolverBase {
|
|
6375
|
-
RunCommunicationRunViewByID(input: RunViewByIDInput, {
|
|
6376
|
-
RunCommunicationRunViewByName(input: RunViewByNameInput, {
|
|
6377
|
-
RunCommunicationRunDynamicView(input: RunDynamicViewInput, {
|
|
6378
|
-
CommunicationRun(ID: string, {
|
|
6379
|
-
CommunicationLogs_CommunicationRunIDArray(communicationrun_: CommunicationRun_, {
|
|
6380
|
-
CreateCommunicationRun(input: CreateCommunicationRunInput, {
|
|
6381
|
-
UpdateCommunicationRun(input: UpdateCommunicationRunInput, {
|
|
6378
|
+
RunCommunicationRunViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6379
|
+
RunCommunicationRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6380
|
+
RunCommunicationRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6381
|
+
CommunicationRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationRun_ | null>;
|
|
6382
|
+
CommunicationLogs_CommunicationRunIDArray(communicationrun_: CommunicationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6383
|
+
CreateCommunicationRun(input: CreateCommunicationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6384
|
+
UpdateCommunicationRun(input: UpdateCommunicationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6382
6385
|
}
|
|
6383
6386
|
export declare class CommunicationProviderMessageType_ {
|
|
6384
6387
|
ID: string;
|
|
@@ -6419,14 +6422,14 @@ export declare class RunCommunicationProviderMessageTypeViewResult {
|
|
|
6419
6422
|
Success: boolean;
|
|
6420
6423
|
}
|
|
6421
6424
|
export declare class CommunicationProviderMessageTypeResolver extends ResolverBase {
|
|
6422
|
-
RunCommunicationProviderMessageTypeViewByID(input: RunViewByIDInput, {
|
|
6423
|
-
RunCommunicationProviderMessageTypeViewByName(input: RunViewByNameInput, {
|
|
6424
|
-
RunCommunicationProviderMessageTypeDynamicView(input: RunDynamicViewInput, {
|
|
6425
|
-
CommunicationProviderMessageType(ID: string, {
|
|
6426
|
-
CommunicationLogs_CommunicationProviderMessageTypeIDArray(communicationprovidermessagetype_: CommunicationProviderMessageType_, {
|
|
6427
|
-
CreateCommunicationProviderMessageType(input: CreateCommunicationProviderMessageTypeInput, {
|
|
6428
|
-
UpdateCommunicationProviderMessageType(input: UpdateCommunicationProviderMessageTypeInput, {
|
|
6429
|
-
DeleteCommunicationProviderMessageType(ID: string, options: DeleteOptionsInput, {
|
|
6425
|
+
RunCommunicationProviderMessageTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6426
|
+
RunCommunicationProviderMessageTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6427
|
+
RunCommunicationProviderMessageTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6428
|
+
CommunicationProviderMessageType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationProviderMessageType_ | null>;
|
|
6429
|
+
CommunicationLogs_CommunicationProviderMessageTypeIDArray(communicationprovidermessagetype_: CommunicationProviderMessageType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6430
|
+
CreateCommunicationProviderMessageType(input: CreateCommunicationProviderMessageTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6431
|
+
UpdateCommunicationProviderMessageType(input: UpdateCommunicationProviderMessageTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6432
|
+
DeleteCommunicationProviderMessageType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6430
6433
|
}
|
|
6431
6434
|
export declare class CommunicationLog_ {
|
|
6432
6435
|
ID: string;
|
|
@@ -6475,12 +6478,12 @@ export declare class RunCommunicationLogViewResult {
|
|
|
6475
6478
|
Success: boolean;
|
|
6476
6479
|
}
|
|
6477
6480
|
export declare class CommunicationLogResolver extends ResolverBase {
|
|
6478
|
-
RunCommunicationLogViewByID(input: RunViewByIDInput, {
|
|
6479
|
-
RunCommunicationLogViewByName(input: RunViewByNameInput, {
|
|
6480
|
-
RunCommunicationLogDynamicView(input: RunDynamicViewInput, {
|
|
6481
|
-
CommunicationLog(ID: string, {
|
|
6482
|
-
CreateCommunicationLog(input: CreateCommunicationLogInput, {
|
|
6483
|
-
UpdateCommunicationLog(input: UpdateCommunicationLogInput, {
|
|
6481
|
+
RunCommunicationLogViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6482
|
+
RunCommunicationLogViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6483
|
+
RunCommunicationLogDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6484
|
+
CommunicationLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationLog_ | null>;
|
|
6485
|
+
CreateCommunicationLog(input: CreateCommunicationLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6486
|
+
UpdateCommunicationLog(input: UpdateCommunicationLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6484
6487
|
}
|
|
6485
6488
|
export declare class CommunicationBaseMessageType_ {
|
|
6486
6489
|
ID: string;
|
|
@@ -6520,15 +6523,15 @@ export declare class RunCommunicationBaseMessageTypeViewResult {
|
|
|
6520
6523
|
Success: boolean;
|
|
6521
6524
|
}
|
|
6522
6525
|
export declare class CommunicationBaseMessageTypeResolver extends ResolverBase {
|
|
6523
|
-
RunCommunicationBaseMessageTypeViewByID(input: RunViewByIDInput, {
|
|
6524
|
-
RunCommunicationBaseMessageTypeViewByName(input: RunViewByNameInput, {
|
|
6525
|
-
RunCommunicationBaseMessageTypeDynamicView(input: RunDynamicViewInput, {
|
|
6526
|
-
CommunicationBaseMessageType(ID: string, {
|
|
6527
|
-
CommunicationProviderMessageTypes_CommunicationBaseMessageTypeIDArray(communicationbasemessagetype_: CommunicationBaseMessageType_, {
|
|
6528
|
-
EntityCommunicationMessageTypes_BaseMessageTypeIDArray(communicationbasemessagetype_: CommunicationBaseMessageType_, {
|
|
6529
|
-
CreateCommunicationBaseMessageType(input: CreateCommunicationBaseMessageTypeInput, {
|
|
6530
|
-
UpdateCommunicationBaseMessageType(input: UpdateCommunicationBaseMessageTypeInput, {
|
|
6531
|
-
DeleteCommunicationBaseMessageType(ID: string, options: DeleteOptionsInput, {
|
|
6526
|
+
RunCommunicationBaseMessageTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6527
|
+
RunCommunicationBaseMessageTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6528
|
+
RunCommunicationBaseMessageTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6529
|
+
CommunicationBaseMessageType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationBaseMessageType_ | null>;
|
|
6530
|
+
CommunicationProviderMessageTypes_CommunicationBaseMessageTypeIDArray(communicationbasemessagetype_: CommunicationBaseMessageType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6531
|
+
EntityCommunicationMessageTypes_BaseMessageTypeIDArray(communicationbasemessagetype_: CommunicationBaseMessageType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6532
|
+
CreateCommunicationBaseMessageType(input: CreateCommunicationBaseMessageTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6533
|
+
UpdateCommunicationBaseMessageType(input: UpdateCommunicationBaseMessageTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6534
|
+
DeleteCommunicationBaseMessageType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6532
6535
|
}
|
|
6533
6536
|
export declare class Template_ {
|
|
6534
6537
|
ID: string;
|
|
@@ -6581,17 +6584,17 @@ export declare class RunTemplateViewResult {
|
|
|
6581
6584
|
Success: boolean;
|
|
6582
6585
|
}
|
|
6583
6586
|
export declare class TemplateResolver extends ResolverBase {
|
|
6584
|
-
RunTemplateViewByID(input: RunViewByIDInput, {
|
|
6585
|
-
RunTemplateViewByName(input: RunViewByNameInput, {
|
|
6586
|
-
RunTemplateDynamicView(input: RunDynamicViewInput, {
|
|
6587
|
-
Template(ID: string, {
|
|
6588
|
-
TemplateContents_TemplateIDArray(template_: Template_, {
|
|
6589
|
-
TemplateParams_TemplateIDArray(template_: Template_, {
|
|
6590
|
-
AIPrompts_TemplateIDArray(template_: Template_, {
|
|
6591
|
-
EntityDocuments_TemplateIDArray(template_: Template_, {
|
|
6592
|
-
CreateTemplate(input: CreateTemplateInput, {
|
|
6593
|
-
UpdateTemplate(input: UpdateTemplateInput, {
|
|
6594
|
-
DeleteTemplate(ID: string, options: DeleteOptionsInput, {
|
|
6587
|
+
RunTemplateViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6588
|
+
RunTemplateViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6589
|
+
RunTemplateDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6590
|
+
Template(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Template_ | null>;
|
|
6591
|
+
TemplateContents_TemplateIDArray(template_: Template_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6592
|
+
TemplateParams_TemplateIDArray(template_: Template_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6593
|
+
AIPrompts_TemplateIDArray(template_: Template_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6594
|
+
EntityDocuments_TemplateIDArray(template_: Template_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6595
|
+
CreateTemplate(input: CreateTemplateInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6596
|
+
UpdateTemplate(input: UpdateTemplateInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6597
|
+
DeleteTemplate(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6595
6598
|
}
|
|
6596
6599
|
export declare class TemplateCategory_ {
|
|
6597
6600
|
ID: string;
|
|
@@ -6630,15 +6633,15 @@ export declare class RunTemplateCategoryViewResult {
|
|
|
6630
6633
|
Success: boolean;
|
|
6631
6634
|
}
|
|
6632
6635
|
export declare class TemplateCategoryResolver extends ResolverBase {
|
|
6633
|
-
RunTemplateCategoryViewByID(input: RunViewByIDInput, {
|
|
6634
|
-
RunTemplateCategoryViewByName(input: RunViewByNameInput, {
|
|
6635
|
-
RunTemplateCategoryDynamicView(input: RunDynamicViewInput, {
|
|
6636
|
-
TemplateCategory(ID: string, {
|
|
6637
|
-
Templates_CategoryIDArray(templatecategory_: TemplateCategory_, {
|
|
6638
|
-
TemplateCategories_ParentIDArray(templatecategory_: TemplateCategory_, {
|
|
6639
|
-
CreateTemplateCategory(input: CreateTemplateCategoryInput, {
|
|
6640
|
-
UpdateTemplateCategory(input: UpdateTemplateCategoryInput, {
|
|
6641
|
-
DeleteTemplateCategory(ID: string, options: DeleteOptionsInput, {
|
|
6636
|
+
RunTemplateCategoryViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6637
|
+
RunTemplateCategoryViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6638
|
+
RunTemplateCategoryDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6639
|
+
TemplateCategory(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<TemplateCategory_ | null>;
|
|
6640
|
+
Templates_CategoryIDArray(templatecategory_: TemplateCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6641
|
+
TemplateCategories_ParentIDArray(templatecategory_: TemplateCategory_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6642
|
+
CreateTemplateCategory(input: CreateTemplateCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6643
|
+
UpdateTemplateCategory(input: UpdateTemplateCategoryInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6644
|
+
DeleteTemplateCategory(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6642
6645
|
}
|
|
6643
6646
|
export declare class TemplateContent_ {
|
|
6644
6647
|
ID: string;
|
|
@@ -6678,13 +6681,13 @@ export declare class RunTemplateContentViewResult {
|
|
|
6678
6681
|
Success: boolean;
|
|
6679
6682
|
}
|
|
6680
6683
|
export declare class TemplateContentResolver extends ResolverBase {
|
|
6681
|
-
RunTemplateContentViewByID(input: RunViewByIDInput, {
|
|
6682
|
-
RunTemplateContentViewByName(input: RunViewByNameInput, {
|
|
6683
|
-
RunTemplateContentDynamicView(input: RunDynamicViewInput, {
|
|
6684
|
-
TemplateContent(ID: string, {
|
|
6685
|
-
CreateTemplateContent(input: CreateTemplateContentInput, {
|
|
6686
|
-
UpdateTemplateContent(input: UpdateTemplateContentInput, {
|
|
6687
|
-
DeleteTemplateContent(ID: string, options: DeleteOptionsInput, {
|
|
6684
|
+
RunTemplateContentViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6685
|
+
RunTemplateContentViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6686
|
+
RunTemplateContentDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6687
|
+
TemplateContent(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<TemplateContent_ | null>;
|
|
6688
|
+
CreateTemplateContent(input: CreateTemplateContentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6689
|
+
UpdateTemplateContent(input: UpdateTemplateContentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6690
|
+
DeleteTemplateContent(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6688
6691
|
}
|
|
6689
6692
|
export declare class TemplateParam_ {
|
|
6690
6693
|
ID: string;
|
|
@@ -6745,13 +6748,13 @@ export declare class RunTemplateParamViewResult {
|
|
|
6745
6748
|
Success: boolean;
|
|
6746
6749
|
}
|
|
6747
6750
|
export declare class TemplateParamResolver extends ResolverBase {
|
|
6748
|
-
RunTemplateParamViewByID(input: RunViewByIDInput, {
|
|
6749
|
-
RunTemplateParamViewByName(input: RunViewByNameInput, {
|
|
6750
|
-
RunTemplateParamDynamicView(input: RunDynamicViewInput, {
|
|
6751
|
-
TemplateParam(ID: string, {
|
|
6752
|
-
CreateTemplateParam(input: CreateTemplateParamInput, {
|
|
6753
|
-
UpdateTemplateParam(input: UpdateTemplateParamInput, {
|
|
6754
|
-
DeleteTemplateParam(ID: string, options: DeleteOptionsInput, {
|
|
6751
|
+
RunTemplateParamViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6752
|
+
RunTemplateParamViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6753
|
+
RunTemplateParamDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6754
|
+
TemplateParam(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<TemplateParam_ | null>;
|
|
6755
|
+
CreateTemplateParam(input: CreateTemplateParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6756
|
+
UpdateTemplateParam(input: UpdateTemplateParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6757
|
+
DeleteTemplateParam(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6755
6758
|
}
|
|
6756
6759
|
export declare class TemplateContentType_ {
|
|
6757
6760
|
ID: string;
|
|
@@ -6784,14 +6787,14 @@ export declare class RunTemplateContentTypeViewResult {
|
|
|
6784
6787
|
Success: boolean;
|
|
6785
6788
|
}
|
|
6786
6789
|
export declare class TemplateContentTypeResolver extends ResolverBase {
|
|
6787
|
-
RunTemplateContentTypeViewByID(input: RunViewByIDInput, {
|
|
6788
|
-
RunTemplateContentTypeViewByName(input: RunViewByNameInput, {
|
|
6789
|
-
RunTemplateContentTypeDynamicView(input: RunDynamicViewInput, {
|
|
6790
|
-
TemplateContentType(ID: string, {
|
|
6791
|
-
TemplateContents_TypeIDArray(templatecontenttype_: TemplateContentType_, {
|
|
6792
|
-
CreateTemplateContentType(input: CreateTemplateContentTypeInput, {
|
|
6793
|
-
UpdateTemplateContentType(input: UpdateTemplateContentTypeInput, {
|
|
6794
|
-
DeleteTemplateContentType(ID: string, options: DeleteOptionsInput, {
|
|
6790
|
+
RunTemplateContentTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6791
|
+
RunTemplateContentTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6792
|
+
RunTemplateContentTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6793
|
+
TemplateContentType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<TemplateContentType_ | null>;
|
|
6794
|
+
TemplateContents_TypeIDArray(templatecontenttype_: TemplateContentType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6795
|
+
CreateTemplateContentType(input: CreateTemplateContentTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6796
|
+
UpdateTemplateContentType(input: UpdateTemplateContentTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6797
|
+
DeleteTemplateContentType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6795
6798
|
}
|
|
6796
6799
|
export declare class Recommendation_ {
|
|
6797
6800
|
ID: string;
|
|
@@ -6825,13 +6828,13 @@ export declare class RunRecommendationViewResult {
|
|
|
6825
6828
|
Success: boolean;
|
|
6826
6829
|
}
|
|
6827
6830
|
export declare class RecommendationResolver extends ResolverBase {
|
|
6828
|
-
RunRecommendationViewByID(input: RunViewByIDInput, {
|
|
6829
|
-
RunRecommendationViewByName(input: RunViewByNameInput, {
|
|
6830
|
-
RunRecommendationDynamicView(input: RunDynamicViewInput, {
|
|
6831
|
-
Recommendation(ID: string, {
|
|
6832
|
-
RecommendationItems_RecommendationIDArray(recommendation_: Recommendation_, {
|
|
6833
|
-
CreateRecommendation(input: CreateRecommendationInput, {
|
|
6834
|
-
UpdateRecommendation(input: UpdateRecommendationInput, {
|
|
6831
|
+
RunRecommendationViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6832
|
+
RunRecommendationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6833
|
+
RunRecommendationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6834
|
+
Recommendation(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Recommendation_ | null>;
|
|
6835
|
+
RecommendationItems_RecommendationIDArray(recommendation_: Recommendation_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6836
|
+
CreateRecommendation(input: CreateRecommendationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6837
|
+
UpdateRecommendation(input: UpdateRecommendationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6835
6838
|
}
|
|
6836
6839
|
export declare class RecommendationProvider_ {
|
|
6837
6840
|
ID: string;
|
|
@@ -6861,14 +6864,14 @@ export declare class RunRecommendationProviderViewResult {
|
|
|
6861
6864
|
Success: boolean;
|
|
6862
6865
|
}
|
|
6863
6866
|
export declare class RecommendationProviderResolver extends ResolverBase {
|
|
6864
|
-
RunRecommendationProviderViewByID(input: RunViewByIDInput, {
|
|
6865
|
-
RunRecommendationProviderViewByName(input: RunViewByNameInput, {
|
|
6866
|
-
RunRecommendationProviderDynamicView(input: RunDynamicViewInput, {
|
|
6867
|
-
RecommendationProvider(ID: string, {
|
|
6868
|
-
RecommendationRuns_RecommendationProviderIDArray(recommendationprovider_: RecommendationProvider_, {
|
|
6869
|
-
CreateRecommendationProvider(input: CreateRecommendationProviderInput, {
|
|
6870
|
-
UpdateRecommendationProvider(input: UpdateRecommendationProviderInput, {
|
|
6871
|
-
DeleteRecommendationProvider(ID: string, options: DeleteOptionsInput, {
|
|
6867
|
+
RunRecommendationProviderViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6868
|
+
RunRecommendationProviderViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6869
|
+
RunRecommendationProviderDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6870
|
+
RecommendationProvider(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecommendationProvider_ | null>;
|
|
6871
|
+
RecommendationRuns_RecommendationProviderIDArray(recommendationprovider_: RecommendationProvider_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6872
|
+
CreateRecommendationProvider(input: CreateRecommendationProviderInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6873
|
+
UpdateRecommendationProvider(input: UpdateRecommendationProviderInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6874
|
+
DeleteRecommendationProvider(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6872
6875
|
}
|
|
6873
6876
|
export declare class RecommendationRun_ {
|
|
6874
6877
|
ID: string;
|
|
@@ -6912,13 +6915,13 @@ export declare class RunRecommendationRunViewResult {
|
|
|
6912
6915
|
Success: boolean;
|
|
6913
6916
|
}
|
|
6914
6917
|
export declare class RecommendationRunResolver extends ResolverBase {
|
|
6915
|
-
RunRecommendationRunViewByID(input: RunViewByIDInput, {
|
|
6916
|
-
RunRecommendationRunViewByName(input: RunViewByNameInput, {
|
|
6917
|
-
RunRecommendationRunDynamicView(input: RunDynamicViewInput, {
|
|
6918
|
-
RecommendationRun(ID: string, {
|
|
6919
|
-
Recommendations_RecommendationRunIDArray(recommendationrun_: RecommendationRun_, {
|
|
6920
|
-
CreateRecommendationRun(input: CreateRecommendationRunInput, {
|
|
6921
|
-
UpdateRecommendationRun(input: UpdateRecommendationRunInput, {
|
|
6918
|
+
RunRecommendationRunViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6919
|
+
RunRecommendationRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6920
|
+
RunRecommendationRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6921
|
+
RecommendationRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecommendationRun_ | null>;
|
|
6922
|
+
Recommendations_RecommendationRunIDArray(recommendationrun_: RecommendationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
6923
|
+
CreateRecommendationRun(input: CreateRecommendationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6924
|
+
UpdateRecommendationRun(input: UpdateRecommendationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6922
6925
|
}
|
|
6923
6926
|
export declare class RecommendationItem_ {
|
|
6924
6927
|
ID: string;
|
|
@@ -6954,12 +6957,12 @@ export declare class RunRecommendationItemViewResult {
|
|
|
6954
6957
|
Success: boolean;
|
|
6955
6958
|
}
|
|
6956
6959
|
export declare class RecommendationItemResolver extends ResolverBase {
|
|
6957
|
-
RunRecommendationItemViewByID(input: RunViewByIDInput, {
|
|
6958
|
-
RunRecommendationItemViewByName(input: RunViewByNameInput, {
|
|
6959
|
-
RunRecommendationItemDynamicView(input: RunDynamicViewInput, {
|
|
6960
|
-
RecommendationItem(ID: string, {
|
|
6961
|
-
CreateRecommendationItem(input: CreateRecommendationItemInput, {
|
|
6962
|
-
UpdateRecommendationItem(input: UpdateRecommendationItemInput, {
|
|
6960
|
+
RunRecommendationItemViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6961
|
+
RunRecommendationItemViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6962
|
+
RunRecommendationItemDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6963
|
+
RecommendationItem(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecommendationItem_ | null>;
|
|
6964
|
+
CreateRecommendationItem(input: CreateRecommendationItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6965
|
+
UpdateRecommendationItem(input: UpdateRecommendationItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6963
6966
|
}
|
|
6964
6967
|
export declare class EntityCommunicationMessageType_ {
|
|
6965
6968
|
ID: string;
|
|
@@ -6994,14 +6997,14 @@ export declare class RunEntityCommunicationMessageTypeViewResult {
|
|
|
6994
6997
|
Success: boolean;
|
|
6995
6998
|
}
|
|
6996
6999
|
export declare class EntityCommunicationMessageTypeResolver extends ResolverBase {
|
|
6997
|
-
RunEntityCommunicationMessageTypeViewByID(input: RunViewByIDInput, {
|
|
6998
|
-
RunEntityCommunicationMessageTypeViewByName(input: RunViewByNameInput, {
|
|
6999
|
-
RunEntityCommunicationMessageTypeDynamicView(input: RunDynamicViewInput, {
|
|
7000
|
-
EntityCommunicationMessageType(ID: string, {
|
|
7001
|
-
EntityCommunicationFields_EntityCommunicationMessageTypeIDArray(entitycommunicationmessagetype_: EntityCommunicationMessageType_, {
|
|
7002
|
-
CreateEntityCommunicationMessageType(input: CreateEntityCommunicationMessageTypeInput, {
|
|
7003
|
-
UpdateEntityCommunicationMessageType(input: UpdateEntityCommunicationMessageTypeInput, {
|
|
7004
|
-
DeleteEntityCommunicationMessageType(ID: string, options: DeleteOptionsInput, {
|
|
7000
|
+
RunEntityCommunicationMessageTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7001
|
+
RunEntityCommunicationMessageTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7002
|
+
RunEntityCommunicationMessageTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7003
|
+
EntityCommunicationMessageType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityCommunicationMessageType_ | null>;
|
|
7004
|
+
EntityCommunicationFields_EntityCommunicationMessageTypeIDArray(entitycommunicationmessagetype_: EntityCommunicationMessageType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7005
|
+
CreateEntityCommunicationMessageType(input: CreateEntityCommunicationMessageTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7006
|
+
UpdateEntityCommunicationMessageType(input: UpdateEntityCommunicationMessageTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7007
|
+
DeleteEntityCommunicationMessageType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7005
7008
|
}
|
|
7006
7009
|
export declare class EntityCommunicationField_ {
|
|
7007
7010
|
ID: string;
|
|
@@ -7033,13 +7036,13 @@ export declare class RunEntityCommunicationFieldViewResult {
|
|
|
7033
7036
|
Success: boolean;
|
|
7034
7037
|
}
|
|
7035
7038
|
export declare class EntityCommunicationFieldResolver extends ResolverBase {
|
|
7036
|
-
RunEntityCommunicationFieldViewByID(input: RunViewByIDInput, {
|
|
7037
|
-
RunEntityCommunicationFieldViewByName(input: RunViewByNameInput, {
|
|
7038
|
-
RunEntityCommunicationFieldDynamicView(input: RunDynamicViewInput, {
|
|
7039
|
-
EntityCommunicationField(ID: string, {
|
|
7040
|
-
CreateEntityCommunicationField(input: CreateEntityCommunicationFieldInput, {
|
|
7041
|
-
UpdateEntityCommunicationField(input: UpdateEntityCommunicationFieldInput, {
|
|
7042
|
-
DeleteEntityCommunicationField(ID: string, options: DeleteOptionsInput, {
|
|
7039
|
+
RunEntityCommunicationFieldViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7040
|
+
RunEntityCommunicationFieldViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7041
|
+
RunEntityCommunicationFieldDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7042
|
+
EntityCommunicationField(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityCommunicationField_ | null>;
|
|
7043
|
+
CreateEntityCommunicationField(input: CreateEntityCommunicationFieldInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7044
|
+
UpdateEntityCommunicationField(input: UpdateEntityCommunicationFieldInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7045
|
+
DeleteEntityCommunicationField(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7043
7046
|
}
|
|
7044
7047
|
export declare class RecordChangeReplayRun_ {
|
|
7045
7048
|
ID: string;
|
|
@@ -7076,13 +7079,13 @@ export declare class RunRecordChangeReplayRunViewResult {
|
|
|
7076
7079
|
Success: boolean;
|
|
7077
7080
|
}
|
|
7078
7081
|
export declare class RecordChangeReplayRunResolver extends ResolverBase {
|
|
7079
|
-
RunRecordChangeReplayRunViewByID(input: RunViewByIDInput, {
|
|
7080
|
-
RunRecordChangeReplayRunViewByName(input: RunViewByNameInput, {
|
|
7081
|
-
RunRecordChangeReplayRunDynamicView(input: RunDynamicViewInput, {
|
|
7082
|
-
RecordChangeReplayRun(ID: string, {
|
|
7083
|
-
RecordChanges_ReplayRunIDArray(recordchangereplayrun_: RecordChangeReplayRun_, {
|
|
7084
|
-
CreateRecordChangeReplayRun(input: CreateRecordChangeReplayRunInput, {
|
|
7085
|
-
UpdateRecordChangeReplayRun(input: UpdateRecordChangeReplayRunInput, {
|
|
7082
|
+
RunRecordChangeReplayRunViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7083
|
+
RunRecordChangeReplayRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7084
|
+
RunRecordChangeReplayRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7085
|
+
RecordChangeReplayRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordChangeReplayRun_ | null>;
|
|
7086
|
+
RecordChanges_ReplayRunIDArray(recordchangereplayrun_: RecordChangeReplayRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7087
|
+
CreateRecordChangeReplayRun(input: CreateRecordChangeReplayRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7088
|
+
UpdateRecordChangeReplayRun(input: UpdateRecordChangeReplayRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7086
7089
|
}
|
|
7087
7090
|
export declare class LibraryItem_ {
|
|
7088
7091
|
ID: string;
|
|
@@ -7115,13 +7118,13 @@ export declare class RunLibraryItemViewResult {
|
|
|
7115
7118
|
Success: boolean;
|
|
7116
7119
|
}
|
|
7117
7120
|
export declare class LibraryItemResolver extends ResolverBase {
|
|
7118
|
-
RunLibraryItemViewByID(input: RunViewByIDInput, {
|
|
7119
|
-
RunLibraryItemViewByName(input: RunViewByNameInput, {
|
|
7120
|
-
RunLibraryItemDynamicView(input: RunDynamicViewInput, {
|
|
7121
|
-
LibraryItem(ID: string, {
|
|
7122
|
-
CreateLibraryItem(input: CreateLibraryItemInput, {
|
|
7123
|
-
UpdateLibraryItem(input: UpdateLibraryItemInput, {
|
|
7124
|
-
DeleteLibraryItem(ID: string, options: DeleteOptionsInput, {
|
|
7121
|
+
RunLibraryItemViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7122
|
+
RunLibraryItemViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7123
|
+
RunLibraryItemDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7124
|
+
LibraryItem(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<LibraryItem_ | null>;
|
|
7125
|
+
CreateLibraryItem(input: CreateLibraryItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7126
|
+
UpdateLibraryItem(input: UpdateLibraryItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7127
|
+
DeleteLibraryItem(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7125
7128
|
}
|
|
7126
7129
|
export declare class EntityRelationshipDisplayComponent_ {
|
|
7127
7130
|
ID: string;
|
|
@@ -7154,13 +7157,13 @@ export declare class RunEntityRelationshipDisplayComponentViewResult {
|
|
|
7154
7157
|
Success: boolean;
|
|
7155
7158
|
}
|
|
7156
7159
|
export declare class EntityRelationshipDisplayComponentResolver extends ResolverBase {
|
|
7157
|
-
RunEntityRelationshipDisplayComponentViewByID(input: RunViewByIDInput, {
|
|
7158
|
-
RunEntityRelationshipDisplayComponentViewByName(input: RunViewByNameInput, {
|
|
7159
|
-
RunEntityRelationshipDisplayComponentDynamicView(input: RunDynamicViewInput, {
|
|
7160
|
-
EntityRelationshipDisplayComponent(ID: string, {
|
|
7161
|
-
EntityRelationships_DisplayComponentIDArray(entityrelationshipdisplaycomponent_: EntityRelationshipDisplayComponent_, {
|
|
7162
|
-
CreateEntityRelationshipDisplayComponent(input: CreateEntityRelationshipDisplayComponentInput, {
|
|
7163
|
-
UpdateEntityRelationshipDisplayComponent(input: UpdateEntityRelationshipDisplayComponentInput, {
|
|
7160
|
+
RunEntityRelationshipDisplayComponentViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7161
|
+
RunEntityRelationshipDisplayComponentViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7162
|
+
RunEntityRelationshipDisplayComponentDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7163
|
+
EntityRelationshipDisplayComponent(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityRelationshipDisplayComponent_ | null>;
|
|
7164
|
+
EntityRelationships_DisplayComponentIDArray(entityrelationshipdisplaycomponent_: EntityRelationshipDisplayComponent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7165
|
+
CreateEntityRelationshipDisplayComponent(input: CreateEntityRelationshipDisplayComponentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7166
|
+
UpdateEntityRelationshipDisplayComponent(input: UpdateEntityRelationshipDisplayComponentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7164
7167
|
}
|
|
7165
7168
|
export declare class EntityActionParam_ {
|
|
7166
7169
|
ID: string;
|
|
@@ -7199,13 +7202,13 @@ export declare class RunEntityActionParamViewResult {
|
|
|
7199
7202
|
Success: boolean;
|
|
7200
7203
|
}
|
|
7201
7204
|
export declare class EntityActionParamResolver extends ResolverBase {
|
|
7202
|
-
RunEntityActionParamViewByID(input: RunViewByIDInput, {
|
|
7203
|
-
RunEntityActionParamViewByName(input: RunViewByNameInput, {
|
|
7204
|
-
RunEntityActionParamDynamicView(input: RunDynamicViewInput, {
|
|
7205
|
-
EntityActionParam(ID: string, {
|
|
7206
|
-
CreateEntityActionParam(input: CreateEntityActionParamInput, {
|
|
7207
|
-
UpdateEntityActionParam(input: UpdateEntityActionParamInput, {
|
|
7208
|
-
DeleteEntityActionParam(ID: string, options: DeleteOptionsInput, {
|
|
7205
|
+
RunEntityActionParamViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7206
|
+
RunEntityActionParamViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7207
|
+
RunEntityActionParamDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7208
|
+
EntityActionParam(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityActionParam_ | null>;
|
|
7209
|
+
CreateEntityActionParam(input: CreateEntityActionParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7210
|
+
UpdateEntityActionParam(input: UpdateEntityActionParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7211
|
+
DeleteEntityActionParam(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7209
7212
|
}
|
|
7210
7213
|
export declare class ResourcePermission_ {
|
|
7211
7214
|
ID: string;
|
|
@@ -7258,13 +7261,13 @@ export declare class RunResourcePermissionViewResult {
|
|
|
7258
7261
|
Success: boolean;
|
|
7259
7262
|
}
|
|
7260
7263
|
export declare class ResourcePermissionResolver extends ResolverBase {
|
|
7261
|
-
RunResourcePermissionViewByID(input: RunViewByIDInput, {
|
|
7262
|
-
RunResourcePermissionViewByName(input: RunViewByNameInput, {
|
|
7263
|
-
RunResourcePermissionDynamicView(input: RunDynamicViewInput, {
|
|
7264
|
-
ResourcePermission(ID: string, {
|
|
7265
|
-
CreateResourcePermission(input: CreateResourcePermissionInput, {
|
|
7266
|
-
UpdateResourcePermission(input: UpdateResourcePermissionInput, {
|
|
7267
|
-
DeleteResourcePermission(ID: string, options: DeleteOptionsInput, {
|
|
7264
|
+
RunResourcePermissionViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7265
|
+
RunResourcePermissionViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7266
|
+
RunResourcePermissionDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7267
|
+
ResourcePermission(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ResourcePermission_ | null>;
|
|
7268
|
+
CreateResourcePermission(input: CreateResourcePermissionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7269
|
+
UpdateResourcePermission(input: UpdateResourcePermissionInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7270
|
+
DeleteResourcePermission(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7268
7271
|
}
|
|
7269
7272
|
export declare class ResourceLink_ {
|
|
7270
7273
|
ID: string;
|
|
@@ -7301,13 +7304,13 @@ export declare class RunResourceLinkViewResult {
|
|
|
7301
7304
|
Success: boolean;
|
|
7302
7305
|
}
|
|
7303
7306
|
export declare class ResourceLinkResolver extends ResolverBase {
|
|
7304
|
-
RunResourceLinkViewByID(input: RunViewByIDInput, {
|
|
7305
|
-
RunResourceLinkViewByName(input: RunViewByNameInput, {
|
|
7306
|
-
RunResourceLinkDynamicView(input: RunDynamicViewInput, {
|
|
7307
|
-
ResourceLink(ID: string, {
|
|
7308
|
-
CreateResourceLink(input: CreateResourceLinkInput, {
|
|
7309
|
-
UpdateResourceLink(input: UpdateResourceLinkInput, {
|
|
7310
|
-
DeleteResourceLink(ID: string, options: DeleteOptionsInput, {
|
|
7307
|
+
RunResourceLinkViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7308
|
+
RunResourceLinkViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7309
|
+
RunResourceLinkDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7310
|
+
ResourceLink(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ResourceLink_ | null>;
|
|
7311
|
+
CreateResourceLink(input: CreateResourceLinkInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7312
|
+
UpdateResourceLink(input: UpdateResourceLinkInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7313
|
+
DeleteResourceLink(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7311
7314
|
}
|
|
7312
7315
|
export declare class AIAgentRequest_ {
|
|
7313
7316
|
ID: string;
|
|
@@ -7360,13 +7363,13 @@ export declare class RunAIAgentRequestViewResult {
|
|
|
7360
7363
|
Success: boolean;
|
|
7361
7364
|
}
|
|
7362
7365
|
export declare class AIAgentRequestResolver extends ResolverBase {
|
|
7363
|
-
RunAIAgentRequestViewByID(input: RunViewByIDInput, {
|
|
7364
|
-
RunAIAgentRequestViewByName(input: RunViewByNameInput, {
|
|
7365
|
-
RunAIAgentRequestDynamicView(input: RunDynamicViewInput, {
|
|
7366
|
-
AIAgentRequest(ID: string, {
|
|
7367
|
-
CreateAIAgentRequest(input: CreateAIAgentRequestInput, {
|
|
7368
|
-
UpdateAIAgentRequest(input: UpdateAIAgentRequestInput, {
|
|
7369
|
-
DeleteAIAgentRequest(ID: string, options: DeleteOptionsInput, {
|
|
7366
|
+
RunAIAgentRequestViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7367
|
+
RunAIAgentRequestViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7368
|
+
RunAIAgentRequestDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7369
|
+
AIAgentRequest(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentRequest_ | null>;
|
|
7370
|
+
CreateAIAgentRequest(input: CreateAIAgentRequestInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7371
|
+
UpdateAIAgentRequest(input: UpdateAIAgentRequestInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7372
|
+
DeleteAIAgentRequest(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7370
7373
|
}
|
|
7371
7374
|
export declare class QueryEntity_ {
|
|
7372
7375
|
ID: string;
|
|
@@ -7397,13 +7400,13 @@ export declare class RunQueryEntityViewResult {
|
|
|
7397
7400
|
Success: boolean;
|
|
7398
7401
|
}
|
|
7399
7402
|
export declare class QueryEntityResolver extends ResolverBase {
|
|
7400
|
-
RunQueryEntityViewByID(input: RunViewByIDInput, {
|
|
7401
|
-
RunQueryEntityViewByName(input: RunViewByNameInput, {
|
|
7402
|
-
RunQueryEntityDynamicView(input: RunDynamicViewInput, {
|
|
7403
|
-
QueryEntity(ID: string, {
|
|
7404
|
-
CreateQueryEntity(input: CreateQueryEntityInput, {
|
|
7405
|
-
UpdateQueryEntity(input: UpdateQueryEntityInput, {
|
|
7406
|
-
DeleteQueryEntity(ID: string, options: DeleteOptionsInput, {
|
|
7403
|
+
RunQueryEntityViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7404
|
+
RunQueryEntityViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7405
|
+
RunQueryEntityDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7406
|
+
QueryEntity(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueryEntity_ | null>;
|
|
7407
|
+
CreateQueryEntity(input: CreateQueryEntityInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7408
|
+
UpdateQueryEntity(input: UpdateQueryEntityInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7409
|
+
DeleteQueryEntity(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7407
7410
|
}
|
|
7408
7411
|
export declare class flyway_schema_history_ {
|
|
7409
7412
|
installed_rank: number;
|
|
@@ -7454,13 +7457,13 @@ export declare class Runflyway_schema_historyViewResult {
|
|
|
7454
7457
|
Success: boolean;
|
|
7455
7458
|
}
|
|
7456
7459
|
export declare class flyway_schema_historyResolver extends ResolverBase {
|
|
7457
|
-
Runflyway_schema_historyViewByID(input: RunViewByIDInput, {
|
|
7458
|
-
Runflyway_schema_historyViewByName(input: RunViewByNameInput, {
|
|
7459
|
-
Runflyway_schema_historyDynamicView(input: RunDynamicViewInput, {
|
|
7460
|
-
flyway_schema_history(installed_rank: number, {
|
|
7461
|
-
Createflyway_schema_history(input: Createflyway_schema_historyInput, {
|
|
7462
|
-
Updateflyway_schema_history(input: Updateflyway_schema_historyInput, {
|
|
7463
|
-
Deleteflyway_schema_history(installed_rank: number, options: DeleteOptionsInput, {
|
|
7460
|
+
Runflyway_schema_historyViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7461
|
+
Runflyway_schema_historyViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7462
|
+
Runflyway_schema_historyDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7463
|
+
flyway_schema_history(installed_rank: number, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<flyway_schema_history_ | null>;
|
|
7464
|
+
Createflyway_schema_history(input: Createflyway_schema_historyInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7465
|
+
Updateflyway_schema_history(input: Updateflyway_schema_historyInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7466
|
+
Deleteflyway_schema_history(installed_rank: number, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7464
7467
|
}
|
|
7465
7468
|
export declare class ContentProcessRun_ {
|
|
7466
7469
|
ID: string;
|
|
@@ -7499,13 +7502,13 @@ export declare class RunContentProcessRunViewResult {
|
|
|
7499
7502
|
Success: boolean;
|
|
7500
7503
|
}
|
|
7501
7504
|
export declare class ContentProcessRunResolver extends ResolverBase {
|
|
7502
|
-
RunContentProcessRunViewByID(input: RunViewByIDInput, {
|
|
7503
|
-
RunContentProcessRunViewByName(input: RunViewByNameInput, {
|
|
7504
|
-
RunContentProcessRunDynamicView(input: RunDynamicViewInput, {
|
|
7505
|
-
ContentProcessRun(ID: string, {
|
|
7506
|
-
CreateContentProcessRun(input: CreateContentProcessRunInput, {
|
|
7507
|
-
UpdateContentProcessRun(input: UpdateContentProcessRunInput, {
|
|
7508
|
-
DeleteContentProcessRun(ID: string, options: DeleteOptionsInput, {
|
|
7505
|
+
RunContentProcessRunViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7506
|
+
RunContentProcessRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7507
|
+
RunContentProcessRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7508
|
+
ContentProcessRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentProcessRun_ | null>;
|
|
7509
|
+
CreateContentProcessRun(input: CreateContentProcessRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7510
|
+
UpdateContentProcessRun(input: UpdateContentProcessRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7511
|
+
DeleteContentProcessRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7509
7512
|
}
|
|
7510
7513
|
export declare class ContentSource_ {
|
|
7511
7514
|
ID: string;
|
|
@@ -7549,16 +7552,16 @@ export declare class RunContentSourceViewResult {
|
|
|
7549
7552
|
Success: boolean;
|
|
7550
7553
|
}
|
|
7551
7554
|
export declare class ContentSourceResolver extends ResolverBase {
|
|
7552
|
-
RunContentSourceViewByID(input: RunViewByIDInput, {
|
|
7553
|
-
RunContentSourceViewByName(input: RunViewByNameInput, {
|
|
7554
|
-
RunContentSourceDynamicView(input: RunDynamicViewInput, {
|
|
7555
|
-
ContentSource(ID: string, {
|
|
7556
|
-
ContentProcessRuns_SourceIDArray(contentsource_: ContentSource_, {
|
|
7557
|
-
ContentSourceParams_ContentSourceIDArray(contentsource_: ContentSource_, {
|
|
7558
|
-
ContentItems_ContentSourceIDArray(contentsource_: ContentSource_, {
|
|
7559
|
-
CreateContentSource(input: CreateContentSourceInput, {
|
|
7560
|
-
UpdateContentSource(input: UpdateContentSourceInput, {
|
|
7561
|
-
DeleteContentSource(ID: string, options: DeleteOptionsInput, {
|
|
7555
|
+
RunContentSourceViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7556
|
+
RunContentSourceViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7557
|
+
RunContentSourceDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7558
|
+
ContentSource(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentSource_ | null>;
|
|
7559
|
+
ContentProcessRuns_SourceIDArray(contentsource_: ContentSource_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7560
|
+
ContentSourceParams_ContentSourceIDArray(contentsource_: ContentSource_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7561
|
+
ContentItems_ContentSourceIDArray(contentsource_: ContentSource_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7562
|
+
CreateContentSource(input: CreateContentSourceInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7563
|
+
UpdateContentSource(input: UpdateContentSourceInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7564
|
+
DeleteContentSource(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7562
7565
|
}
|
|
7563
7566
|
export declare class ContentSourceParam_ {
|
|
7564
7567
|
ID: string;
|
|
@@ -7591,13 +7594,13 @@ export declare class RunContentSourceParamViewResult {
|
|
|
7591
7594
|
Success: boolean;
|
|
7592
7595
|
}
|
|
7593
7596
|
export declare class ContentSourceParamResolver extends ResolverBase {
|
|
7594
|
-
RunContentSourceParamViewByID(input: RunViewByIDInput, {
|
|
7595
|
-
RunContentSourceParamViewByName(input: RunViewByNameInput, {
|
|
7596
|
-
RunContentSourceParamDynamicView(input: RunDynamicViewInput, {
|
|
7597
|
-
ContentSourceParam(ID: string, {
|
|
7598
|
-
CreateContentSourceParam(input: CreateContentSourceParamInput, {
|
|
7599
|
-
UpdateContentSourceParam(input: UpdateContentSourceParamInput, {
|
|
7600
|
-
DeleteContentSourceParam(ID: string, options: DeleteOptionsInput, {
|
|
7597
|
+
RunContentSourceParamViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7598
|
+
RunContentSourceParamViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7599
|
+
RunContentSourceParamDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7600
|
+
ContentSourceParam(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentSourceParam_ | null>;
|
|
7601
|
+
CreateContentSourceParam(input: CreateContentSourceParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7602
|
+
UpdateContentSourceParam(input: UpdateContentSourceParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7603
|
+
DeleteContentSourceParam(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7601
7604
|
}
|
|
7602
7605
|
export declare class ContentSourceType_ {
|
|
7603
7606
|
ID: string;
|
|
@@ -7628,15 +7631,15 @@ export declare class RunContentSourceTypeViewResult {
|
|
|
7628
7631
|
Success: boolean;
|
|
7629
7632
|
}
|
|
7630
7633
|
export declare class ContentSourceTypeResolver extends ResolverBase {
|
|
7631
|
-
RunContentSourceTypeViewByID(input: RunViewByIDInput, {
|
|
7632
|
-
RunContentSourceTypeViewByName(input: RunViewByNameInput, {
|
|
7633
|
-
RunContentSourceTypeDynamicView(input: RunDynamicViewInput, {
|
|
7634
|
-
ContentSourceType(ID: string, {
|
|
7635
|
-
ContentSources_ContentSourceTypeIDArray(contentsourcetype_: ContentSourceType_, {
|
|
7636
|
-
ContentItems_ContentSourceTypeIDArray(contentsourcetype_: ContentSourceType_, {
|
|
7637
|
-
CreateContentSourceType(input: CreateContentSourceTypeInput, {
|
|
7638
|
-
UpdateContentSourceType(input: UpdateContentSourceTypeInput, {
|
|
7639
|
-
DeleteContentSourceType(ID: string, options: DeleteOptionsInput, {
|
|
7634
|
+
RunContentSourceTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7635
|
+
RunContentSourceTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7636
|
+
RunContentSourceTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7637
|
+
ContentSourceType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentSourceType_ | null>;
|
|
7638
|
+
ContentSources_ContentSourceTypeIDArray(contentsourcetype_: ContentSourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7639
|
+
ContentItems_ContentSourceTypeIDArray(contentsourcetype_: ContentSourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7640
|
+
CreateContentSourceType(input: CreateContentSourceTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7641
|
+
UpdateContentSourceType(input: UpdateContentSourceTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7642
|
+
DeleteContentSourceType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7640
7643
|
}
|
|
7641
7644
|
export declare class ContentSourceTypeParam_ {
|
|
7642
7645
|
ID: string;
|
|
@@ -7674,13 +7677,13 @@ export declare class RunContentSourceTypeParamViewResult {
|
|
|
7674
7677
|
Success: boolean;
|
|
7675
7678
|
}
|
|
7676
7679
|
export declare class ContentSourceTypeParamResolver extends ResolverBase {
|
|
7677
|
-
RunContentSourceTypeParamViewByID(input: RunViewByIDInput, {
|
|
7678
|
-
RunContentSourceTypeParamViewByName(input: RunViewByNameInput, {
|
|
7679
|
-
RunContentSourceTypeParamDynamicView(input: RunDynamicViewInput, {
|
|
7680
|
-
ContentSourceTypeParam(ID: string, {
|
|
7681
|
-
CreateContentSourceTypeParam(input: CreateContentSourceTypeParamInput, {
|
|
7682
|
-
UpdateContentSourceTypeParam(input: UpdateContentSourceTypeParamInput, {
|
|
7683
|
-
DeleteContentSourceTypeParam(ID: string, options: DeleteOptionsInput, {
|
|
7680
|
+
RunContentSourceTypeParamViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7681
|
+
RunContentSourceTypeParamViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7682
|
+
RunContentSourceTypeParamDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7683
|
+
ContentSourceTypeParam(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentSourceTypeParam_ | null>;
|
|
7684
|
+
CreateContentSourceTypeParam(input: CreateContentSourceTypeParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7685
|
+
UpdateContentSourceTypeParam(input: UpdateContentSourceTypeParamInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7686
|
+
DeleteContentSourceTypeParam(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7684
7687
|
}
|
|
7685
7688
|
export declare class ContentType_ {
|
|
7686
7689
|
ID: string;
|
|
@@ -7721,15 +7724,15 @@ export declare class RunContentTypeViewResult {
|
|
|
7721
7724
|
Success: boolean;
|
|
7722
7725
|
}
|
|
7723
7726
|
export declare class ContentTypeResolver extends ResolverBase {
|
|
7724
|
-
RunContentTypeViewByID(input: RunViewByIDInput, {
|
|
7725
|
-
RunContentTypeViewByName(input: RunViewByNameInput, {
|
|
7726
|
-
RunContentTypeDynamicView(input: RunDynamicViewInput, {
|
|
7727
|
-
ContentType(ID: string, {
|
|
7728
|
-
ContentSources_ContentTypeIDArray(contenttype_: ContentType_, {
|
|
7729
|
-
ContentItems_ContentTypeIDArray(contenttype_: ContentType_, {
|
|
7730
|
-
CreateContentType(input: CreateContentTypeInput, {
|
|
7731
|
-
UpdateContentType(input: UpdateContentTypeInput, {
|
|
7732
|
-
DeleteContentType(ID: string, options: DeleteOptionsInput, {
|
|
7727
|
+
RunContentTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7728
|
+
RunContentTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7729
|
+
RunContentTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7730
|
+
ContentType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentType_ | null>;
|
|
7731
|
+
ContentSources_ContentTypeIDArray(contenttype_: ContentType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7732
|
+
ContentItems_ContentTypeIDArray(contenttype_: ContentType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7733
|
+
CreateContentType(input: CreateContentTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7734
|
+
UpdateContentType(input: UpdateContentTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7735
|
+
DeleteContentType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7733
7736
|
}
|
|
7734
7737
|
export declare class ContentTypeAttribute_ {
|
|
7735
7738
|
ID: string;
|
|
@@ -7764,13 +7767,13 @@ export declare class RunContentTypeAttributeViewResult {
|
|
|
7764
7767
|
Success: boolean;
|
|
7765
7768
|
}
|
|
7766
7769
|
export declare class ContentTypeAttributeResolver extends ResolverBase {
|
|
7767
|
-
RunContentTypeAttributeViewByID(input: RunViewByIDInput, {
|
|
7768
|
-
RunContentTypeAttributeViewByName(input: RunViewByNameInput, {
|
|
7769
|
-
RunContentTypeAttributeDynamicView(input: RunDynamicViewInput, {
|
|
7770
|
-
ContentTypeAttribute(ID: string, {
|
|
7771
|
-
CreateContentTypeAttribute(input: CreateContentTypeAttributeInput, {
|
|
7772
|
-
UpdateContentTypeAttribute(input: UpdateContentTypeAttributeInput, {
|
|
7773
|
-
DeleteContentTypeAttribute(ID: string, options: DeleteOptionsInput, {
|
|
7770
|
+
RunContentTypeAttributeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7771
|
+
RunContentTypeAttributeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7772
|
+
RunContentTypeAttributeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7773
|
+
ContentTypeAttribute(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentTypeAttribute_ | null>;
|
|
7774
|
+
CreateContentTypeAttribute(input: CreateContentTypeAttributeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7775
|
+
UpdateContentTypeAttribute(input: UpdateContentTypeAttributeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7776
|
+
DeleteContentTypeAttribute(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7774
7777
|
}
|
|
7775
7778
|
export declare class ContentFileType_ {
|
|
7776
7779
|
ID: string;
|
|
@@ -7801,15 +7804,15 @@ export declare class RunContentFileTypeViewResult {
|
|
|
7801
7804
|
Success: boolean;
|
|
7802
7805
|
}
|
|
7803
7806
|
export declare class ContentFileTypeResolver extends ResolverBase {
|
|
7804
|
-
RunContentFileTypeViewByID(input: RunViewByIDInput, {
|
|
7805
|
-
RunContentFileTypeViewByName(input: RunViewByNameInput, {
|
|
7806
|
-
RunContentFileTypeDynamicView(input: RunDynamicViewInput, {
|
|
7807
|
-
ContentFileType(ID: string, {
|
|
7808
|
-
ContentSources_ContentFileTypeIDArray(contentfiletype_: ContentFileType_, {
|
|
7809
|
-
ContentItems_ContentFileTypeIDArray(contentfiletype_: ContentFileType_, {
|
|
7810
|
-
CreateContentFileType(input: CreateContentFileTypeInput, {
|
|
7811
|
-
UpdateContentFileType(input: UpdateContentFileTypeInput, {
|
|
7812
|
-
DeleteContentFileType(ID: string, options: DeleteOptionsInput, {
|
|
7807
|
+
RunContentFileTypeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7808
|
+
RunContentFileTypeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7809
|
+
RunContentFileTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7810
|
+
ContentFileType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentFileType_ | null>;
|
|
7811
|
+
ContentSources_ContentFileTypeIDArray(contentfiletype_: ContentFileType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7812
|
+
ContentItems_ContentFileTypeIDArray(contentfiletype_: ContentFileType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7813
|
+
CreateContentFileType(input: CreateContentFileTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7814
|
+
UpdateContentFileType(input: UpdateContentFileTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7815
|
+
DeleteContentFileType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7813
7816
|
}
|
|
7814
7817
|
export declare class ContentItem_ {
|
|
7815
7818
|
ID: string;
|
|
@@ -7865,15 +7868,15 @@ export declare class RunContentItemViewResult {
|
|
|
7865
7868
|
Success: boolean;
|
|
7866
7869
|
}
|
|
7867
7870
|
export declare class ContentItemResolver extends ResolverBase {
|
|
7868
|
-
RunContentItemViewByID(input: RunViewByIDInput, {
|
|
7869
|
-
RunContentItemViewByName(input: RunViewByNameInput, {
|
|
7870
|
-
RunContentItemDynamicView(input: RunDynamicViewInput, {
|
|
7871
|
-
ContentItem(ID: string, {
|
|
7872
|
-
ContentItemAttributes_ContentItemIDArray(contentitem_: ContentItem_, {
|
|
7873
|
-
ContentItemTags_ItemIDArray(contentitem_: ContentItem_, {
|
|
7874
|
-
CreateContentItem(input: CreateContentItemInput, {
|
|
7875
|
-
UpdateContentItem(input: UpdateContentItemInput, {
|
|
7876
|
-
DeleteContentItem(ID: string, options: DeleteOptionsInput, {
|
|
7871
|
+
RunContentItemViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7872
|
+
RunContentItemViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7873
|
+
RunContentItemDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7874
|
+
ContentItem(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentItem_ | null>;
|
|
7875
|
+
ContentItemAttributes_ContentItemIDArray(contentitem_: ContentItem_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7876
|
+
ContentItemTags_ItemIDArray(contentitem_: ContentItem_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
|
|
7877
|
+
CreateContentItem(input: CreateContentItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7878
|
+
UpdateContentItem(input: UpdateContentItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7879
|
+
DeleteContentItem(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7877
7880
|
}
|
|
7878
7881
|
export declare class ContentItemAttribute_ {
|
|
7879
7882
|
ID: string;
|
|
@@ -7906,13 +7909,13 @@ export declare class RunContentItemAttributeViewResult {
|
|
|
7906
7909
|
Success: boolean;
|
|
7907
7910
|
}
|
|
7908
7911
|
export declare class ContentItemAttributeResolver extends ResolverBase {
|
|
7909
|
-
RunContentItemAttributeViewByID(input: RunViewByIDInput, {
|
|
7910
|
-
RunContentItemAttributeViewByName(input: RunViewByNameInput, {
|
|
7911
|
-
RunContentItemAttributeDynamicView(input: RunDynamicViewInput, {
|
|
7912
|
-
ContentItemAttribute(ID: string, {
|
|
7913
|
-
CreateContentItemAttribute(input: CreateContentItemAttributeInput, {
|
|
7914
|
-
UpdateContentItemAttribute(input: UpdateContentItemAttributeInput, {
|
|
7915
|
-
DeleteContentItemAttribute(ID: string, options: DeleteOptionsInput, {
|
|
7912
|
+
RunContentItemAttributeViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7913
|
+
RunContentItemAttributeViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7914
|
+
RunContentItemAttributeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7915
|
+
ContentItemAttribute(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentItemAttribute_ | null>;
|
|
7916
|
+
CreateContentItemAttribute(input: CreateContentItemAttributeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7917
|
+
UpdateContentItemAttribute(input: UpdateContentItemAttributeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7918
|
+
DeleteContentItemAttribute(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7916
7919
|
}
|
|
7917
7920
|
export declare class ContentItemTag_ {
|
|
7918
7921
|
ID: string;
|
|
@@ -7942,13 +7945,13 @@ export declare class RunContentItemTagViewResult {
|
|
|
7942
7945
|
Success: boolean;
|
|
7943
7946
|
}
|
|
7944
7947
|
export declare class ContentItemTagResolver extends ResolverBase {
|
|
7945
|
-
RunContentItemTagViewByID(input: RunViewByIDInput, {
|
|
7946
|
-
RunContentItemTagViewByName(input: RunViewByNameInput, {
|
|
7947
|
-
RunContentItemTagDynamicView(input: RunDynamicViewInput, {
|
|
7948
|
-
ContentItemTag(ID: string, {
|
|
7949
|
-
CreateContentItemTag(input: CreateContentItemTagInput, {
|
|
7950
|
-
UpdateContentItemTag(input: UpdateContentItemTagInput, {
|
|
7951
|
-
DeleteContentItemTag(ID: string, options: DeleteOptionsInput, {
|
|
7948
|
+
RunContentItemTagViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7949
|
+
RunContentItemTagViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7950
|
+
RunContentItemTagDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7951
|
+
ContentItemTag(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ContentItemTag_ | null>;
|
|
7952
|
+
CreateContentItemTag(input: CreateContentItemTagInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7953
|
+
UpdateContentItemTag(input: UpdateContentItemTagInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7954
|
+
DeleteContentItemTag(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7952
7955
|
}
|
|
7953
7956
|
export declare class AIAgentLearningCycle_ {
|
|
7954
7957
|
ID: string;
|
|
@@ -7987,12 +7990,12 @@ export declare class RunAIAgentLearningCycleViewResult {
|
|
|
7987
7990
|
Success: boolean;
|
|
7988
7991
|
}
|
|
7989
7992
|
export declare class AIAgentLearningCycleResolver extends ResolverBase {
|
|
7990
|
-
RunAIAgentLearningCycleViewByID(input: RunViewByIDInput, {
|
|
7991
|
-
RunAIAgentLearningCycleViewByName(input: RunViewByNameInput, {
|
|
7992
|
-
RunAIAgentLearningCycleDynamicView(input: RunDynamicViewInput, {
|
|
7993
|
-
AIAgentLearningCycle(ID: string, {
|
|
7994
|
-
CreateAIAgentLearningCycle(input: CreateAIAgentLearningCycleInput, {
|
|
7995
|
-
UpdateAIAgentLearningCycle(input: UpdateAIAgentLearningCycleInput, {
|
|
7996
|
-
DeleteAIAgentLearningCycle(ID: string, options: DeleteOptionsInput, {
|
|
7993
|
+
RunAIAgentLearningCycleViewByID(input: RunViewByIDInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7994
|
+
RunAIAgentLearningCycleViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7995
|
+
RunAIAgentLearningCycleDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7996
|
+
AIAgentLearningCycle(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AIAgentLearningCycle_ | null>;
|
|
7997
|
+
CreateAIAgentLearningCycle(input: CreateAIAgentLearningCycleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7998
|
+
UpdateAIAgentLearningCycle(input: UpdateAIAgentLearningCycleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7999
|
+
DeleteAIAgentLearningCycle(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7997
8000
|
}
|
|
7998
8001
|
//# sourceMappingURL=generated.d.ts.map
|