@mj-biz-apps/tasks-server 0.0.1 → 1.0.1
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/event-handlers/TaskNotificationHandler.d.ts +6 -0
- package/dist/event-handlers/TaskNotificationHandler.d.ts.map +1 -0
- package/dist/event-handlers/TaskNotificationHandler.js +363 -0
- package/dist/event-handlers/TaskNotificationHandler.js.map +1 -0
- package/dist/generated/generated.d.ts +930 -0
- package/dist/generated/generated.d.ts.map +1 -0
- package/dist/generated/generated.js +5354 -0
- package/dist/generated/generated.js.map +1 -0
- package/dist/index.d.ts +19 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +42 -0
- package/dist/index.js.map +1 -0
- package/dist/scheduled-jobs/OverdueTaskNotificationJob.d.ts +45 -0
- package/dist/scheduled-jobs/OverdueTaskNotificationJob.d.ts.map +1 -0
- package/dist/scheduled-jobs/OverdueTaskNotificationJob.js +305 -0
- package/dist/scheduled-jobs/OverdueTaskNotificationJob.js.map +1 -0
- package/package.json +41 -7
- package/README.md +0 -45
|
@@ -0,0 +1,930 @@
|
|
|
1
|
+
/********************************************************************************
|
|
2
|
+
* ALL ENTITIES - TypeGraphQL Type Class Definition - AUTO GENERATED FILE
|
|
3
|
+
* Generated Entities and Resolvers for Server
|
|
4
|
+
*
|
|
5
|
+
* >>> DO NOT MODIFY THIS FILE!!!!!!!!!!!!
|
|
6
|
+
* >>> YOUR CHANGES WILL BE OVERWRITTEN
|
|
7
|
+
* >>> THE NEXT TIME THIS FILE IS GENERATED
|
|
8
|
+
*
|
|
9
|
+
**********************************************************************************/
|
|
10
|
+
import { PubSubEngine, ResolverBase, RunViewByIDInput, RunViewByNameInput, RunDynamicViewInput, AppContext, KeyValuePairInput, DeleteOptionsInput, RestoreContextInput } from '@memberjunction/server';
|
|
11
|
+
export declare class mjBizAppsTasksTaskActivity_ {
|
|
12
|
+
ID: string;
|
|
13
|
+
TaskID: string;
|
|
14
|
+
PersonID?: string;
|
|
15
|
+
ActivityType: string;
|
|
16
|
+
PreviousValue?: string;
|
|
17
|
+
NewValue?: string;
|
|
18
|
+
Description?: string;
|
|
19
|
+
_mj__CreatedAt: Date;
|
|
20
|
+
_mj__UpdatedAt: Date;
|
|
21
|
+
Task: string;
|
|
22
|
+
Person?: string;
|
|
23
|
+
}
|
|
24
|
+
export declare class CreatemjBizAppsTasksTaskActivityInput {
|
|
25
|
+
ID?: string;
|
|
26
|
+
TaskID?: string;
|
|
27
|
+
PersonID: string | null;
|
|
28
|
+
ActivityType?: string;
|
|
29
|
+
PreviousValue: string | null;
|
|
30
|
+
NewValue: string | null;
|
|
31
|
+
Description: string | null;
|
|
32
|
+
RestoreContext___?: RestoreContextInput;
|
|
33
|
+
}
|
|
34
|
+
export declare class UpdatemjBizAppsTasksTaskActivityInput {
|
|
35
|
+
ID: string;
|
|
36
|
+
TaskID?: string;
|
|
37
|
+
PersonID?: string | null;
|
|
38
|
+
ActivityType?: string;
|
|
39
|
+
PreviousValue?: string | null;
|
|
40
|
+
NewValue?: string | null;
|
|
41
|
+
Description?: string | null;
|
|
42
|
+
OldValues___?: KeyValuePairInput[];
|
|
43
|
+
RestoreContext___?: RestoreContextInput;
|
|
44
|
+
}
|
|
45
|
+
export declare class RunmjBizAppsTasksTaskActivityViewResult {
|
|
46
|
+
Results: mjBizAppsTasksTaskActivity_[];
|
|
47
|
+
UserViewRunID?: string;
|
|
48
|
+
RowCount: number;
|
|
49
|
+
TotalRowCount: number;
|
|
50
|
+
ExecutionTime: number;
|
|
51
|
+
ErrorMessage?: string;
|
|
52
|
+
Success: boolean;
|
|
53
|
+
}
|
|
54
|
+
export declare class mjBizAppsTasksTaskActivityResolver extends ResolverBase {
|
|
55
|
+
RunmjBizAppsTasksTaskActivityViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
56
|
+
RunmjBizAppsTasksTaskActivityViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
57
|
+
RunmjBizAppsTasksTaskActivityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
58
|
+
mjBizAppsTasksTaskActivity(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskActivity_ | null>;
|
|
59
|
+
CreatemjBizAppsTasksTaskActivity(input: CreatemjBizAppsTasksTaskActivityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
60
|
+
UpdatemjBizAppsTasksTaskActivity(input: UpdatemjBizAppsTasksTaskActivityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
61
|
+
DeletemjBizAppsTasksTaskActivity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
62
|
+
}
|
|
63
|
+
export declare class mjBizAppsTasksTaskAssignment_ {
|
|
64
|
+
ID: string;
|
|
65
|
+
TaskID: string;
|
|
66
|
+
AssigneeEntityID: string;
|
|
67
|
+
AssigneeRecordID: string;
|
|
68
|
+
RoleID?: string;
|
|
69
|
+
RoleNotes?: string;
|
|
70
|
+
Status: string;
|
|
71
|
+
AssignedByPersonID?: string;
|
|
72
|
+
AssignedAt: Date;
|
|
73
|
+
_mj__CreatedAt: Date;
|
|
74
|
+
_mj__UpdatedAt: Date;
|
|
75
|
+
Task: string;
|
|
76
|
+
AssigneeEntity: string;
|
|
77
|
+
Role?: string;
|
|
78
|
+
AssignedByPerson?: string;
|
|
79
|
+
}
|
|
80
|
+
export declare class CreatemjBizAppsTasksTaskAssignmentInput {
|
|
81
|
+
ID?: string;
|
|
82
|
+
TaskID?: string;
|
|
83
|
+
AssigneeEntityID?: string;
|
|
84
|
+
AssigneeRecordID?: string;
|
|
85
|
+
RoleID: string | null;
|
|
86
|
+
RoleNotes: string | null;
|
|
87
|
+
Status?: string;
|
|
88
|
+
AssignedByPersonID: string | null;
|
|
89
|
+
AssignedAt?: Date;
|
|
90
|
+
RestoreContext___?: RestoreContextInput;
|
|
91
|
+
}
|
|
92
|
+
export declare class UpdatemjBizAppsTasksTaskAssignmentInput {
|
|
93
|
+
ID: string;
|
|
94
|
+
TaskID?: string;
|
|
95
|
+
AssigneeEntityID?: string;
|
|
96
|
+
AssigneeRecordID?: string;
|
|
97
|
+
RoleID?: string | null;
|
|
98
|
+
RoleNotes?: string | null;
|
|
99
|
+
Status?: string;
|
|
100
|
+
AssignedByPersonID?: string | null;
|
|
101
|
+
AssignedAt?: Date;
|
|
102
|
+
OldValues___?: KeyValuePairInput[];
|
|
103
|
+
RestoreContext___?: RestoreContextInput;
|
|
104
|
+
}
|
|
105
|
+
export declare class RunmjBizAppsTasksTaskAssignmentViewResult {
|
|
106
|
+
Results: mjBizAppsTasksTaskAssignment_[];
|
|
107
|
+
UserViewRunID?: string;
|
|
108
|
+
RowCount: number;
|
|
109
|
+
TotalRowCount: number;
|
|
110
|
+
ExecutionTime: number;
|
|
111
|
+
ErrorMessage?: string;
|
|
112
|
+
Success: boolean;
|
|
113
|
+
}
|
|
114
|
+
export declare class mjBizAppsTasksTaskAssignmentResolver extends ResolverBase {
|
|
115
|
+
RunmjBizAppsTasksTaskAssignmentViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
116
|
+
RunmjBizAppsTasksTaskAssignmentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
117
|
+
RunmjBizAppsTasksTaskAssignmentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
118
|
+
mjBizAppsTasksTaskAssignment(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskAssignment_ | null>;
|
|
119
|
+
CreatemjBizAppsTasksTaskAssignment(input: CreatemjBizAppsTasksTaskAssignmentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
120
|
+
UpdatemjBizAppsTasksTaskAssignment(input: UpdatemjBizAppsTasksTaskAssignmentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
121
|
+
DeletemjBizAppsTasksTaskAssignment(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
122
|
+
}
|
|
123
|
+
export declare class mjBizAppsTasksTaskCategory_ {
|
|
124
|
+
ID: string;
|
|
125
|
+
Name: string;
|
|
126
|
+
Description?: string;
|
|
127
|
+
ParentID?: string;
|
|
128
|
+
ColorCode?: string;
|
|
129
|
+
Sequence: number;
|
|
130
|
+
IsActive: boolean;
|
|
131
|
+
_mj__CreatedAt: Date;
|
|
132
|
+
_mj__UpdatedAt: Date;
|
|
133
|
+
Parent?: string;
|
|
134
|
+
RootParentID?: string;
|
|
135
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplates_CategoryIDArray: mjBizAppsTasksTaskTemplate_[];
|
|
136
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskCategories_ParentIDArray: mjBizAppsTasksTaskCategory_[];
|
|
137
|
+
mjBizAppsTasksMJ_BizApps_Tasks_Tasks_CategoryIDArray: mjBizAppsTasksTask_[];
|
|
138
|
+
}
|
|
139
|
+
export declare class CreatemjBizAppsTasksTaskCategoryInput {
|
|
140
|
+
ID?: string;
|
|
141
|
+
Name?: string;
|
|
142
|
+
Description: string | null;
|
|
143
|
+
ParentID: string | null;
|
|
144
|
+
ColorCode: string | null;
|
|
145
|
+
Sequence?: number;
|
|
146
|
+
IsActive?: boolean;
|
|
147
|
+
RestoreContext___?: RestoreContextInput;
|
|
148
|
+
}
|
|
149
|
+
export declare class UpdatemjBizAppsTasksTaskCategoryInput {
|
|
150
|
+
ID: string;
|
|
151
|
+
Name?: string;
|
|
152
|
+
Description?: string | null;
|
|
153
|
+
ParentID?: string | null;
|
|
154
|
+
ColorCode?: string | null;
|
|
155
|
+
Sequence?: number;
|
|
156
|
+
IsActive?: boolean;
|
|
157
|
+
OldValues___?: KeyValuePairInput[];
|
|
158
|
+
RestoreContext___?: RestoreContextInput;
|
|
159
|
+
}
|
|
160
|
+
export declare class RunmjBizAppsTasksTaskCategoryViewResult {
|
|
161
|
+
Results: mjBizAppsTasksTaskCategory_[];
|
|
162
|
+
UserViewRunID?: string;
|
|
163
|
+
RowCount: number;
|
|
164
|
+
TotalRowCount: number;
|
|
165
|
+
ExecutionTime: number;
|
|
166
|
+
ErrorMessage?: string;
|
|
167
|
+
Success: boolean;
|
|
168
|
+
}
|
|
169
|
+
export declare class mjBizAppsTasksTaskCategoryResolver extends ResolverBase {
|
|
170
|
+
RunmjBizAppsTasksTaskCategoryViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
171
|
+
RunmjBizAppsTasksTaskCategoryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
172
|
+
RunmjBizAppsTasksTaskCategoryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
173
|
+
mjBizAppsTasksTaskCategory(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskCategory_ | null>;
|
|
174
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplates_CategoryIDArray(mjbizappstaskstaskcategory_: mjBizAppsTasksTaskCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
175
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskCategories_ParentIDArray(mjbizappstaskstaskcategory_: mjBizAppsTasksTaskCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
176
|
+
mjBizAppsTasksMJ_BizApps_Tasks_Tasks_CategoryIDArray(mjbizappstaskstaskcategory_: mjBizAppsTasksTaskCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
177
|
+
CreatemjBizAppsTasksTaskCategory(input: CreatemjBizAppsTasksTaskCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
178
|
+
UpdatemjBizAppsTasksTaskCategory(input: UpdatemjBizAppsTasksTaskCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
179
|
+
DeletemjBizAppsTasksTaskCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
180
|
+
}
|
|
181
|
+
export declare class mjBizAppsTasksTaskComment_ {
|
|
182
|
+
ID: string;
|
|
183
|
+
TaskID: string;
|
|
184
|
+
ParentID?: string;
|
|
185
|
+
PersonID: string;
|
|
186
|
+
Content: string;
|
|
187
|
+
IsEdited: boolean;
|
|
188
|
+
_mj__CreatedAt: Date;
|
|
189
|
+
_mj__UpdatedAt: Date;
|
|
190
|
+
Task: string;
|
|
191
|
+
Person: string;
|
|
192
|
+
RootParentID?: string;
|
|
193
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskComments_ParentIDArray: mjBizAppsTasksTaskComment_[];
|
|
194
|
+
}
|
|
195
|
+
export declare class CreatemjBizAppsTasksTaskCommentInput {
|
|
196
|
+
ID?: string;
|
|
197
|
+
TaskID?: string;
|
|
198
|
+
ParentID: string | null;
|
|
199
|
+
PersonID?: string;
|
|
200
|
+
Content?: string;
|
|
201
|
+
IsEdited?: boolean;
|
|
202
|
+
RestoreContext___?: RestoreContextInput;
|
|
203
|
+
}
|
|
204
|
+
export declare class UpdatemjBizAppsTasksTaskCommentInput {
|
|
205
|
+
ID: string;
|
|
206
|
+
TaskID?: string;
|
|
207
|
+
ParentID?: string | null;
|
|
208
|
+
PersonID?: string;
|
|
209
|
+
Content?: string;
|
|
210
|
+
IsEdited?: boolean;
|
|
211
|
+
OldValues___?: KeyValuePairInput[];
|
|
212
|
+
RestoreContext___?: RestoreContextInput;
|
|
213
|
+
}
|
|
214
|
+
export declare class RunmjBizAppsTasksTaskCommentViewResult {
|
|
215
|
+
Results: mjBizAppsTasksTaskComment_[];
|
|
216
|
+
UserViewRunID?: string;
|
|
217
|
+
RowCount: number;
|
|
218
|
+
TotalRowCount: number;
|
|
219
|
+
ExecutionTime: number;
|
|
220
|
+
ErrorMessage?: string;
|
|
221
|
+
Success: boolean;
|
|
222
|
+
}
|
|
223
|
+
export declare class mjBizAppsTasksTaskCommentResolver extends ResolverBase {
|
|
224
|
+
RunmjBizAppsTasksTaskCommentViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
225
|
+
RunmjBizAppsTasksTaskCommentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
226
|
+
RunmjBizAppsTasksTaskCommentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
227
|
+
mjBizAppsTasksTaskComment(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskComment_ | null>;
|
|
228
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskComments_ParentIDArray(mjbizappstaskstaskcomment_: mjBizAppsTasksTaskComment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
229
|
+
CreatemjBizAppsTasksTaskComment(input: CreatemjBizAppsTasksTaskCommentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
230
|
+
UpdatemjBizAppsTasksTaskComment(input: UpdatemjBizAppsTasksTaskCommentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
231
|
+
DeletemjBizAppsTasksTaskComment(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
232
|
+
}
|
|
233
|
+
export declare class mjBizAppsTasksTaskDependency_ {
|
|
234
|
+
ID: string;
|
|
235
|
+
TaskID: string;
|
|
236
|
+
DependsOnTaskID: string;
|
|
237
|
+
DependencyType: string;
|
|
238
|
+
_mj__CreatedAt: Date;
|
|
239
|
+
_mj__UpdatedAt: Date;
|
|
240
|
+
Task: string;
|
|
241
|
+
DependsOnTask: string;
|
|
242
|
+
}
|
|
243
|
+
export declare class CreatemjBizAppsTasksTaskDependencyInput {
|
|
244
|
+
ID?: string;
|
|
245
|
+
TaskID?: string;
|
|
246
|
+
DependsOnTaskID?: string;
|
|
247
|
+
DependencyType?: string;
|
|
248
|
+
RestoreContext___?: RestoreContextInput;
|
|
249
|
+
}
|
|
250
|
+
export declare class UpdatemjBizAppsTasksTaskDependencyInput {
|
|
251
|
+
ID: string;
|
|
252
|
+
TaskID?: string;
|
|
253
|
+
DependsOnTaskID?: string;
|
|
254
|
+
DependencyType?: string;
|
|
255
|
+
OldValues___?: KeyValuePairInput[];
|
|
256
|
+
RestoreContext___?: RestoreContextInput;
|
|
257
|
+
}
|
|
258
|
+
export declare class RunmjBizAppsTasksTaskDependencyViewResult {
|
|
259
|
+
Results: mjBizAppsTasksTaskDependency_[];
|
|
260
|
+
UserViewRunID?: string;
|
|
261
|
+
RowCount: number;
|
|
262
|
+
TotalRowCount: number;
|
|
263
|
+
ExecutionTime: number;
|
|
264
|
+
ErrorMessage?: string;
|
|
265
|
+
Success: boolean;
|
|
266
|
+
}
|
|
267
|
+
export declare class mjBizAppsTasksTaskDependencyResolver extends ResolverBase {
|
|
268
|
+
RunmjBizAppsTasksTaskDependencyViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
269
|
+
RunmjBizAppsTasksTaskDependencyViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
270
|
+
RunmjBizAppsTasksTaskDependencyDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
271
|
+
mjBizAppsTasksTaskDependency(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskDependency_ | null>;
|
|
272
|
+
CreatemjBizAppsTasksTaskDependency(input: CreatemjBizAppsTasksTaskDependencyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
273
|
+
UpdatemjBizAppsTasksTaskDependency(input: UpdatemjBizAppsTasksTaskDependencyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
274
|
+
DeletemjBizAppsTasksTaskDependency(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
275
|
+
}
|
|
276
|
+
export declare class mjBizAppsTasksTaskLink_ {
|
|
277
|
+
ID: string;
|
|
278
|
+
TaskID: string;
|
|
279
|
+
EntityID: string;
|
|
280
|
+
RecordID: string;
|
|
281
|
+
Description?: string;
|
|
282
|
+
_mj__CreatedAt: Date;
|
|
283
|
+
_mj__UpdatedAt: Date;
|
|
284
|
+
Task: string;
|
|
285
|
+
Entity: string;
|
|
286
|
+
}
|
|
287
|
+
export declare class CreatemjBizAppsTasksTaskLinkInput {
|
|
288
|
+
ID?: string;
|
|
289
|
+
TaskID?: string;
|
|
290
|
+
EntityID?: string;
|
|
291
|
+
RecordID?: string;
|
|
292
|
+
Description: string | null;
|
|
293
|
+
RestoreContext___?: RestoreContextInput;
|
|
294
|
+
}
|
|
295
|
+
export declare class UpdatemjBizAppsTasksTaskLinkInput {
|
|
296
|
+
ID: string;
|
|
297
|
+
TaskID?: string;
|
|
298
|
+
EntityID?: string;
|
|
299
|
+
RecordID?: string;
|
|
300
|
+
Description?: string | null;
|
|
301
|
+
OldValues___?: KeyValuePairInput[];
|
|
302
|
+
RestoreContext___?: RestoreContextInput;
|
|
303
|
+
}
|
|
304
|
+
export declare class RunmjBizAppsTasksTaskLinkViewResult {
|
|
305
|
+
Results: mjBizAppsTasksTaskLink_[];
|
|
306
|
+
UserViewRunID?: string;
|
|
307
|
+
RowCount: number;
|
|
308
|
+
TotalRowCount: number;
|
|
309
|
+
ExecutionTime: number;
|
|
310
|
+
ErrorMessage?: string;
|
|
311
|
+
Success: boolean;
|
|
312
|
+
}
|
|
313
|
+
export declare class mjBizAppsTasksTaskLinkResolver extends ResolverBase {
|
|
314
|
+
RunmjBizAppsTasksTaskLinkViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
315
|
+
RunmjBizAppsTasksTaskLinkViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
316
|
+
RunmjBizAppsTasksTaskLinkDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
317
|
+
mjBizAppsTasksTaskLink(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskLink_ | null>;
|
|
318
|
+
CreatemjBizAppsTasksTaskLink(input: CreatemjBizAppsTasksTaskLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
319
|
+
UpdatemjBizAppsTasksTaskLink(input: UpdatemjBizAppsTasksTaskLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
320
|
+
DeletemjBizAppsTasksTaskLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
321
|
+
}
|
|
322
|
+
export declare class mjBizAppsTasksTaskNotificationConfig_ {
|
|
323
|
+
ID: string;
|
|
324
|
+
TaskTypeID?: string;
|
|
325
|
+
OverdueNotificationsEnabled: boolean;
|
|
326
|
+
OverdueGracePeriodHours: number;
|
|
327
|
+
OverdueRepeatIntervalHours?: number;
|
|
328
|
+
NotifyAssignees: boolean;
|
|
329
|
+
NotifyCreator: boolean;
|
|
330
|
+
OverdueActionID?: string;
|
|
331
|
+
_mj__CreatedAt: Date;
|
|
332
|
+
_mj__UpdatedAt: Date;
|
|
333
|
+
TaskType?: string;
|
|
334
|
+
OverdueAction?: string;
|
|
335
|
+
}
|
|
336
|
+
export declare class CreatemjBizAppsTasksTaskNotificationConfigInput {
|
|
337
|
+
ID?: string;
|
|
338
|
+
TaskTypeID: string | null;
|
|
339
|
+
OverdueNotificationsEnabled?: boolean;
|
|
340
|
+
OverdueGracePeriodHours?: number;
|
|
341
|
+
OverdueRepeatIntervalHours: number | null;
|
|
342
|
+
NotifyAssignees?: boolean;
|
|
343
|
+
NotifyCreator?: boolean;
|
|
344
|
+
OverdueActionID: string | null;
|
|
345
|
+
RestoreContext___?: RestoreContextInput;
|
|
346
|
+
}
|
|
347
|
+
export declare class UpdatemjBizAppsTasksTaskNotificationConfigInput {
|
|
348
|
+
ID: string;
|
|
349
|
+
TaskTypeID?: string | null;
|
|
350
|
+
OverdueNotificationsEnabled?: boolean;
|
|
351
|
+
OverdueGracePeriodHours?: number;
|
|
352
|
+
OverdueRepeatIntervalHours?: number | null;
|
|
353
|
+
NotifyAssignees?: boolean;
|
|
354
|
+
NotifyCreator?: boolean;
|
|
355
|
+
OverdueActionID?: string | null;
|
|
356
|
+
OldValues___?: KeyValuePairInput[];
|
|
357
|
+
RestoreContext___?: RestoreContextInput;
|
|
358
|
+
}
|
|
359
|
+
export declare class RunmjBizAppsTasksTaskNotificationConfigViewResult {
|
|
360
|
+
Results: mjBizAppsTasksTaskNotificationConfig_[];
|
|
361
|
+
UserViewRunID?: string;
|
|
362
|
+
RowCount: number;
|
|
363
|
+
TotalRowCount: number;
|
|
364
|
+
ExecutionTime: number;
|
|
365
|
+
ErrorMessage?: string;
|
|
366
|
+
Success: boolean;
|
|
367
|
+
}
|
|
368
|
+
export declare class mjBizAppsTasksTaskNotificationConfigResolver extends ResolverBase {
|
|
369
|
+
RunmjBizAppsTasksTaskNotificationConfigViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
370
|
+
RunmjBizAppsTasksTaskNotificationConfigViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
371
|
+
RunmjBizAppsTasksTaskNotificationConfigDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
372
|
+
mjBizAppsTasksTaskNotificationConfig(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskNotificationConfig_ | null>;
|
|
373
|
+
CreatemjBizAppsTasksTaskNotificationConfig(input: CreatemjBizAppsTasksTaskNotificationConfigInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
374
|
+
UpdatemjBizAppsTasksTaskNotificationConfig(input: UpdatemjBizAppsTasksTaskNotificationConfigInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
375
|
+
DeletemjBizAppsTasksTaskNotificationConfig(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
376
|
+
}
|
|
377
|
+
export declare class mjBizAppsTasksTaskNotificationLog_ {
|
|
378
|
+
ID: string;
|
|
379
|
+
TaskID: string;
|
|
380
|
+
NotificationType: string;
|
|
381
|
+
NotifiedUserID: string;
|
|
382
|
+
NotifiedAt: Date;
|
|
383
|
+
_mj__CreatedAt: Date;
|
|
384
|
+
_mj__UpdatedAt: Date;
|
|
385
|
+
Task: string;
|
|
386
|
+
NotifiedUser: string;
|
|
387
|
+
}
|
|
388
|
+
export declare class CreatemjBizAppsTasksTaskNotificationLogInput {
|
|
389
|
+
ID?: string;
|
|
390
|
+
TaskID?: string;
|
|
391
|
+
NotificationType?: string;
|
|
392
|
+
NotifiedUserID?: string;
|
|
393
|
+
NotifiedAt?: Date;
|
|
394
|
+
RestoreContext___?: RestoreContextInput;
|
|
395
|
+
}
|
|
396
|
+
export declare class UpdatemjBizAppsTasksTaskNotificationLogInput {
|
|
397
|
+
ID: string;
|
|
398
|
+
TaskID?: string;
|
|
399
|
+
NotificationType?: string;
|
|
400
|
+
NotifiedUserID?: string;
|
|
401
|
+
NotifiedAt?: Date;
|
|
402
|
+
OldValues___?: KeyValuePairInput[];
|
|
403
|
+
RestoreContext___?: RestoreContextInput;
|
|
404
|
+
}
|
|
405
|
+
export declare class RunmjBizAppsTasksTaskNotificationLogViewResult {
|
|
406
|
+
Results: mjBizAppsTasksTaskNotificationLog_[];
|
|
407
|
+
UserViewRunID?: string;
|
|
408
|
+
RowCount: number;
|
|
409
|
+
TotalRowCount: number;
|
|
410
|
+
ExecutionTime: number;
|
|
411
|
+
ErrorMessage?: string;
|
|
412
|
+
Success: boolean;
|
|
413
|
+
}
|
|
414
|
+
export declare class mjBizAppsTasksTaskNotificationLogResolver extends ResolverBase {
|
|
415
|
+
RunmjBizAppsTasksTaskNotificationLogViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
416
|
+
RunmjBizAppsTasksTaskNotificationLogViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
417
|
+
RunmjBizAppsTasksTaskNotificationLogDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
418
|
+
mjBizAppsTasksTaskNotificationLog(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskNotificationLog_ | null>;
|
|
419
|
+
CreatemjBizAppsTasksTaskNotificationLog(input: CreatemjBizAppsTasksTaskNotificationLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
420
|
+
UpdatemjBizAppsTasksTaskNotificationLog(input: UpdatemjBizAppsTasksTaskNotificationLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
421
|
+
DeletemjBizAppsTasksTaskNotificationLog(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
422
|
+
}
|
|
423
|
+
export declare class mjBizAppsTasksTaskRole_ {
|
|
424
|
+
ID: string;
|
|
425
|
+
Name: string;
|
|
426
|
+
Description?: string;
|
|
427
|
+
Sequence: number;
|
|
428
|
+
_mj__CreatedAt: Date;
|
|
429
|
+
_mj__UpdatedAt: Date;
|
|
430
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplateItemRoles_RoleIDArray: mjBizAppsTasksTaskTemplateItemRole_[];
|
|
431
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskAssignments_RoleIDArray: mjBizAppsTasksTaskAssignment_[];
|
|
432
|
+
}
|
|
433
|
+
export declare class CreatemjBizAppsTasksTaskRoleInput {
|
|
434
|
+
ID?: string;
|
|
435
|
+
Name?: string;
|
|
436
|
+
Description: string | null;
|
|
437
|
+
Sequence?: number;
|
|
438
|
+
RestoreContext___?: RestoreContextInput;
|
|
439
|
+
}
|
|
440
|
+
export declare class UpdatemjBizAppsTasksTaskRoleInput {
|
|
441
|
+
ID: string;
|
|
442
|
+
Name?: string;
|
|
443
|
+
Description?: string | null;
|
|
444
|
+
Sequence?: number;
|
|
445
|
+
OldValues___?: KeyValuePairInput[];
|
|
446
|
+
RestoreContext___?: RestoreContextInput;
|
|
447
|
+
}
|
|
448
|
+
export declare class RunmjBizAppsTasksTaskRoleViewResult {
|
|
449
|
+
Results: mjBizAppsTasksTaskRole_[];
|
|
450
|
+
UserViewRunID?: string;
|
|
451
|
+
RowCount: number;
|
|
452
|
+
TotalRowCount: number;
|
|
453
|
+
ExecutionTime: number;
|
|
454
|
+
ErrorMessage?: string;
|
|
455
|
+
Success: boolean;
|
|
456
|
+
}
|
|
457
|
+
export declare class mjBizAppsTasksTaskRoleResolver extends ResolverBase {
|
|
458
|
+
RunmjBizAppsTasksTaskRoleViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
459
|
+
RunmjBizAppsTasksTaskRoleViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
460
|
+
RunmjBizAppsTasksTaskRoleDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
461
|
+
mjBizAppsTasksTaskRole(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskRole_ | null>;
|
|
462
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplateItemRoles_RoleIDArray(mjbizappstaskstaskrole_: mjBizAppsTasksTaskRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
463
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskAssignments_RoleIDArray(mjbizappstaskstaskrole_: mjBizAppsTasksTaskRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
464
|
+
CreatemjBizAppsTasksTaskRole(input: CreatemjBizAppsTasksTaskRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
465
|
+
UpdatemjBizAppsTasksTaskRole(input: UpdatemjBizAppsTasksTaskRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
466
|
+
DeletemjBizAppsTasksTaskRole(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
467
|
+
}
|
|
468
|
+
export declare class mjBizAppsTasksTaskTagLink_ {
|
|
469
|
+
ID: string;
|
|
470
|
+
TaskID: string;
|
|
471
|
+
TagID: string;
|
|
472
|
+
_mj__CreatedAt: Date;
|
|
473
|
+
_mj__UpdatedAt: Date;
|
|
474
|
+
Task: string;
|
|
475
|
+
Tag: string;
|
|
476
|
+
}
|
|
477
|
+
export declare class CreatemjBizAppsTasksTaskTagLinkInput {
|
|
478
|
+
ID?: string;
|
|
479
|
+
TaskID?: string;
|
|
480
|
+
TagID?: string;
|
|
481
|
+
RestoreContext___?: RestoreContextInput;
|
|
482
|
+
}
|
|
483
|
+
export declare class UpdatemjBizAppsTasksTaskTagLinkInput {
|
|
484
|
+
ID: string;
|
|
485
|
+
TaskID?: string;
|
|
486
|
+
TagID?: string;
|
|
487
|
+
OldValues___?: KeyValuePairInput[];
|
|
488
|
+
RestoreContext___?: RestoreContextInput;
|
|
489
|
+
}
|
|
490
|
+
export declare class RunmjBizAppsTasksTaskTagLinkViewResult {
|
|
491
|
+
Results: mjBizAppsTasksTaskTagLink_[];
|
|
492
|
+
UserViewRunID?: string;
|
|
493
|
+
RowCount: number;
|
|
494
|
+
TotalRowCount: number;
|
|
495
|
+
ExecutionTime: number;
|
|
496
|
+
ErrorMessage?: string;
|
|
497
|
+
Success: boolean;
|
|
498
|
+
}
|
|
499
|
+
export declare class mjBizAppsTasksTaskTagLinkResolver extends ResolverBase {
|
|
500
|
+
RunmjBizAppsTasksTaskTagLinkViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
501
|
+
RunmjBizAppsTasksTaskTagLinkViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
502
|
+
RunmjBizAppsTasksTaskTagLinkDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
503
|
+
mjBizAppsTasksTaskTagLink(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskTagLink_ | null>;
|
|
504
|
+
CreatemjBizAppsTasksTaskTagLink(input: CreatemjBizAppsTasksTaskTagLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
505
|
+
UpdatemjBizAppsTasksTaskTagLink(input: UpdatemjBizAppsTasksTaskTagLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
506
|
+
DeletemjBizAppsTasksTaskTagLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
507
|
+
}
|
|
508
|
+
export declare class mjBizAppsTasksTaskTag_ {
|
|
509
|
+
ID: string;
|
|
510
|
+
Name: string;
|
|
511
|
+
ColorCode?: string;
|
|
512
|
+
Description?: string;
|
|
513
|
+
_mj__CreatedAt: Date;
|
|
514
|
+
_mj__UpdatedAt: Date;
|
|
515
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTagLinks_TagIDArray: mjBizAppsTasksTaskTagLink_[];
|
|
516
|
+
}
|
|
517
|
+
export declare class CreatemjBizAppsTasksTaskTagInput {
|
|
518
|
+
ID?: string;
|
|
519
|
+
Name?: string;
|
|
520
|
+
ColorCode: string | null;
|
|
521
|
+
Description: string | null;
|
|
522
|
+
RestoreContext___?: RestoreContextInput;
|
|
523
|
+
}
|
|
524
|
+
export declare class UpdatemjBizAppsTasksTaskTagInput {
|
|
525
|
+
ID: string;
|
|
526
|
+
Name?: string;
|
|
527
|
+
ColorCode?: string | null;
|
|
528
|
+
Description?: string | null;
|
|
529
|
+
OldValues___?: KeyValuePairInput[];
|
|
530
|
+
RestoreContext___?: RestoreContextInput;
|
|
531
|
+
}
|
|
532
|
+
export declare class RunmjBizAppsTasksTaskTagViewResult {
|
|
533
|
+
Results: mjBizAppsTasksTaskTag_[];
|
|
534
|
+
UserViewRunID?: string;
|
|
535
|
+
RowCount: number;
|
|
536
|
+
TotalRowCount: number;
|
|
537
|
+
ExecutionTime: number;
|
|
538
|
+
ErrorMessage?: string;
|
|
539
|
+
Success: boolean;
|
|
540
|
+
}
|
|
541
|
+
export declare class mjBizAppsTasksTaskTagResolver extends ResolverBase {
|
|
542
|
+
RunmjBizAppsTasksTaskTagViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
543
|
+
RunmjBizAppsTasksTaskTagViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
544
|
+
RunmjBizAppsTasksTaskTagDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
545
|
+
mjBizAppsTasksTaskTag(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskTag_ | null>;
|
|
546
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTagLinks_TagIDArray(mjbizappstaskstasktag_: mjBizAppsTasksTaskTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
547
|
+
CreatemjBizAppsTasksTaskTag(input: CreatemjBizAppsTasksTaskTagInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
548
|
+
UpdatemjBizAppsTasksTaskTag(input: UpdatemjBizAppsTasksTaskTagInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
549
|
+
DeletemjBizAppsTasksTaskTag(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
550
|
+
}
|
|
551
|
+
export declare class mjBizAppsTasksTaskTemplateItemDependency_ {
|
|
552
|
+
ID: string;
|
|
553
|
+
ItemID: string;
|
|
554
|
+
DependsOnItemID: string;
|
|
555
|
+
DependencyType: string;
|
|
556
|
+
_mj__CreatedAt: Date;
|
|
557
|
+
_mj__UpdatedAt: Date;
|
|
558
|
+
Item: string;
|
|
559
|
+
DependsOnItem: string;
|
|
560
|
+
}
|
|
561
|
+
export declare class CreatemjBizAppsTasksTaskTemplateItemDependencyInput {
|
|
562
|
+
ID?: string;
|
|
563
|
+
ItemID?: string;
|
|
564
|
+
DependsOnItemID?: string;
|
|
565
|
+
DependencyType?: string;
|
|
566
|
+
RestoreContext___?: RestoreContextInput;
|
|
567
|
+
}
|
|
568
|
+
export declare class UpdatemjBizAppsTasksTaskTemplateItemDependencyInput {
|
|
569
|
+
ID: string;
|
|
570
|
+
ItemID?: string;
|
|
571
|
+
DependsOnItemID?: string;
|
|
572
|
+
DependencyType?: string;
|
|
573
|
+
OldValues___?: KeyValuePairInput[];
|
|
574
|
+
RestoreContext___?: RestoreContextInput;
|
|
575
|
+
}
|
|
576
|
+
export declare class RunmjBizAppsTasksTaskTemplateItemDependencyViewResult {
|
|
577
|
+
Results: mjBizAppsTasksTaskTemplateItemDependency_[];
|
|
578
|
+
UserViewRunID?: string;
|
|
579
|
+
RowCount: number;
|
|
580
|
+
TotalRowCount: number;
|
|
581
|
+
ExecutionTime: number;
|
|
582
|
+
ErrorMessage?: string;
|
|
583
|
+
Success: boolean;
|
|
584
|
+
}
|
|
585
|
+
export declare class mjBizAppsTasksTaskTemplateItemDependencyResolver extends ResolverBase {
|
|
586
|
+
RunmjBizAppsTasksTaskTemplateItemDependencyViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
587
|
+
RunmjBizAppsTasksTaskTemplateItemDependencyViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
588
|
+
RunmjBizAppsTasksTaskTemplateItemDependencyDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
589
|
+
mjBizAppsTasksTaskTemplateItemDependency(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskTemplateItemDependency_ | null>;
|
|
590
|
+
CreatemjBizAppsTasksTaskTemplateItemDependency(input: CreatemjBizAppsTasksTaskTemplateItemDependencyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
591
|
+
UpdatemjBizAppsTasksTaskTemplateItemDependency(input: UpdatemjBizAppsTasksTaskTemplateItemDependencyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
592
|
+
DeletemjBizAppsTasksTaskTemplateItemDependency(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
593
|
+
}
|
|
594
|
+
export declare class mjBizAppsTasksTaskTemplateItemRole_ {
|
|
595
|
+
ID: string;
|
|
596
|
+
ItemID: string;
|
|
597
|
+
RoleID: string;
|
|
598
|
+
_mj__CreatedAt: Date;
|
|
599
|
+
_mj__UpdatedAt: Date;
|
|
600
|
+
Item: string;
|
|
601
|
+
Role: string;
|
|
602
|
+
}
|
|
603
|
+
export declare class CreatemjBizAppsTasksTaskTemplateItemRoleInput {
|
|
604
|
+
ID?: string;
|
|
605
|
+
ItemID?: string;
|
|
606
|
+
RoleID?: string;
|
|
607
|
+
RestoreContext___?: RestoreContextInput;
|
|
608
|
+
}
|
|
609
|
+
export declare class UpdatemjBizAppsTasksTaskTemplateItemRoleInput {
|
|
610
|
+
ID: string;
|
|
611
|
+
ItemID?: string;
|
|
612
|
+
RoleID?: string;
|
|
613
|
+
OldValues___?: KeyValuePairInput[];
|
|
614
|
+
RestoreContext___?: RestoreContextInput;
|
|
615
|
+
}
|
|
616
|
+
export declare class RunmjBizAppsTasksTaskTemplateItemRoleViewResult {
|
|
617
|
+
Results: mjBizAppsTasksTaskTemplateItemRole_[];
|
|
618
|
+
UserViewRunID?: string;
|
|
619
|
+
RowCount: number;
|
|
620
|
+
TotalRowCount: number;
|
|
621
|
+
ExecutionTime: number;
|
|
622
|
+
ErrorMessage?: string;
|
|
623
|
+
Success: boolean;
|
|
624
|
+
}
|
|
625
|
+
export declare class mjBizAppsTasksTaskTemplateItemRoleResolver extends ResolverBase {
|
|
626
|
+
RunmjBizAppsTasksTaskTemplateItemRoleViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
627
|
+
RunmjBizAppsTasksTaskTemplateItemRoleViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
628
|
+
RunmjBizAppsTasksTaskTemplateItemRoleDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
629
|
+
mjBizAppsTasksTaskTemplateItemRole(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskTemplateItemRole_ | null>;
|
|
630
|
+
CreatemjBizAppsTasksTaskTemplateItemRole(input: CreatemjBizAppsTasksTaskTemplateItemRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
631
|
+
UpdatemjBizAppsTasksTaskTemplateItemRole(input: UpdatemjBizAppsTasksTaskTemplateItemRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
632
|
+
DeletemjBizAppsTasksTaskTemplateItemRole(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
633
|
+
}
|
|
634
|
+
export declare class mjBizAppsTasksTaskTemplateItem_ {
|
|
635
|
+
ID: string;
|
|
636
|
+
TemplateID: string;
|
|
637
|
+
Name: string;
|
|
638
|
+
Description?: string;
|
|
639
|
+
ParentItemID?: string;
|
|
640
|
+
Priority: string;
|
|
641
|
+
DaysFromStart?: number;
|
|
642
|
+
HoursEstimated?: number;
|
|
643
|
+
Sequence: number;
|
|
644
|
+
_mj__CreatedAt: Date;
|
|
645
|
+
_mj__UpdatedAt: Date;
|
|
646
|
+
Template: string;
|
|
647
|
+
ParentItem?: string;
|
|
648
|
+
RootParentItemID?: string;
|
|
649
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplateItems_ParentItemIDArray: mjBizAppsTasksTaskTemplateItem_[];
|
|
650
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplateItemRoles_ItemIDArray: mjBizAppsTasksTaskTemplateItemRole_[];
|
|
651
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplateItemDependencies_DependsOnItemIDArray: mjBizAppsTasksTaskTemplateItemDependency_[];
|
|
652
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplateItemDependencies_ItemIDArray: mjBizAppsTasksTaskTemplateItemDependency_[];
|
|
653
|
+
}
|
|
654
|
+
export declare class CreatemjBizAppsTasksTaskTemplateItemInput {
|
|
655
|
+
ID?: string;
|
|
656
|
+
TemplateID?: string;
|
|
657
|
+
Name?: string;
|
|
658
|
+
Description: string | null;
|
|
659
|
+
ParentItemID: string | null;
|
|
660
|
+
Priority?: string;
|
|
661
|
+
DaysFromStart: number | null;
|
|
662
|
+
HoursEstimated: number | null;
|
|
663
|
+
Sequence?: number;
|
|
664
|
+
RestoreContext___?: RestoreContextInput;
|
|
665
|
+
}
|
|
666
|
+
export declare class UpdatemjBizAppsTasksTaskTemplateItemInput {
|
|
667
|
+
ID: string;
|
|
668
|
+
TemplateID?: string;
|
|
669
|
+
Name?: string;
|
|
670
|
+
Description?: string | null;
|
|
671
|
+
ParentItemID?: string | null;
|
|
672
|
+
Priority?: string;
|
|
673
|
+
DaysFromStart?: number | null;
|
|
674
|
+
HoursEstimated?: number | null;
|
|
675
|
+
Sequence?: number;
|
|
676
|
+
OldValues___?: KeyValuePairInput[];
|
|
677
|
+
RestoreContext___?: RestoreContextInput;
|
|
678
|
+
}
|
|
679
|
+
export declare class RunmjBizAppsTasksTaskTemplateItemViewResult {
|
|
680
|
+
Results: mjBizAppsTasksTaskTemplateItem_[];
|
|
681
|
+
UserViewRunID?: string;
|
|
682
|
+
RowCount: number;
|
|
683
|
+
TotalRowCount: number;
|
|
684
|
+
ExecutionTime: number;
|
|
685
|
+
ErrorMessage?: string;
|
|
686
|
+
Success: boolean;
|
|
687
|
+
}
|
|
688
|
+
export declare class mjBizAppsTasksTaskTemplateItemResolver extends ResolverBase {
|
|
689
|
+
RunmjBizAppsTasksTaskTemplateItemViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
690
|
+
RunmjBizAppsTasksTaskTemplateItemViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
691
|
+
RunmjBizAppsTasksTaskTemplateItemDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
692
|
+
mjBizAppsTasksTaskTemplateItem(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskTemplateItem_ | null>;
|
|
693
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplateItems_ParentItemIDArray(mjbizappstaskstasktemplateitem_: mjBizAppsTasksTaskTemplateItem_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
694
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplateItemRoles_ItemIDArray(mjbizappstaskstasktemplateitem_: mjBizAppsTasksTaskTemplateItem_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
695
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplateItemDependencies_DependsOnItemIDArray(mjbizappstaskstasktemplateitem_: mjBizAppsTasksTaskTemplateItem_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
696
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplateItemDependencies_ItemIDArray(mjbizappstaskstasktemplateitem_: mjBizAppsTasksTaskTemplateItem_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
697
|
+
CreatemjBizAppsTasksTaskTemplateItem(input: CreatemjBizAppsTasksTaskTemplateItemInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
698
|
+
UpdatemjBizAppsTasksTaskTemplateItem(input: UpdatemjBizAppsTasksTaskTemplateItemInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
699
|
+
DeletemjBizAppsTasksTaskTemplateItem(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
700
|
+
}
|
|
701
|
+
export declare class mjBizAppsTasksTaskTemplate_ {
|
|
702
|
+
ID: string;
|
|
703
|
+
Name: string;
|
|
704
|
+
Description?: string;
|
|
705
|
+
CategoryID?: string;
|
|
706
|
+
TypeID?: string;
|
|
707
|
+
IsActive: boolean;
|
|
708
|
+
_mj__CreatedAt: Date;
|
|
709
|
+
_mj__UpdatedAt: Date;
|
|
710
|
+
Category?: string;
|
|
711
|
+
Type?: string;
|
|
712
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplateItems_TemplateIDArray: mjBizAppsTasksTaskTemplateItem_[];
|
|
713
|
+
}
|
|
714
|
+
export declare class CreatemjBizAppsTasksTaskTemplateInput {
|
|
715
|
+
ID?: string;
|
|
716
|
+
Name?: string;
|
|
717
|
+
Description: string | null;
|
|
718
|
+
CategoryID: string | null;
|
|
719
|
+
TypeID: string | null;
|
|
720
|
+
IsActive?: boolean;
|
|
721
|
+
RestoreContext___?: RestoreContextInput;
|
|
722
|
+
}
|
|
723
|
+
export declare class UpdatemjBizAppsTasksTaskTemplateInput {
|
|
724
|
+
ID: string;
|
|
725
|
+
Name?: string;
|
|
726
|
+
Description?: string | null;
|
|
727
|
+
CategoryID?: string | null;
|
|
728
|
+
TypeID?: string | null;
|
|
729
|
+
IsActive?: boolean;
|
|
730
|
+
OldValues___?: KeyValuePairInput[];
|
|
731
|
+
RestoreContext___?: RestoreContextInput;
|
|
732
|
+
}
|
|
733
|
+
export declare class RunmjBizAppsTasksTaskTemplateViewResult {
|
|
734
|
+
Results: mjBizAppsTasksTaskTemplate_[];
|
|
735
|
+
UserViewRunID?: string;
|
|
736
|
+
RowCount: number;
|
|
737
|
+
TotalRowCount: number;
|
|
738
|
+
ExecutionTime: number;
|
|
739
|
+
ErrorMessage?: string;
|
|
740
|
+
Success: boolean;
|
|
741
|
+
}
|
|
742
|
+
export declare class mjBizAppsTasksTaskTemplateResolver extends ResolverBase {
|
|
743
|
+
RunmjBizAppsTasksTaskTemplateViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
744
|
+
RunmjBizAppsTasksTaskTemplateViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
745
|
+
RunmjBizAppsTasksTaskTemplateDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
746
|
+
mjBizAppsTasksTaskTemplate(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskTemplate_ | null>;
|
|
747
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplateItems_TemplateIDArray(mjbizappstaskstasktemplate_: mjBizAppsTasksTaskTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
748
|
+
CreatemjBizAppsTasksTaskTemplate(input: CreatemjBizAppsTasksTaskTemplateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
749
|
+
UpdatemjBizAppsTasksTaskTemplate(input: UpdatemjBizAppsTasksTaskTemplateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
750
|
+
DeletemjBizAppsTasksTaskTemplate(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
751
|
+
}
|
|
752
|
+
export declare class mjBizAppsTasksTaskType_ {
|
|
753
|
+
ID: string;
|
|
754
|
+
Name: string;
|
|
755
|
+
Description?: string;
|
|
756
|
+
IconClass?: string;
|
|
757
|
+
DefaultPriority: string;
|
|
758
|
+
OnAssignActionID?: string;
|
|
759
|
+
OnCompleteActionID?: string;
|
|
760
|
+
OnOverdueActionID?: string;
|
|
761
|
+
OnPercentChangeActionID?: string;
|
|
762
|
+
IsActive: boolean;
|
|
763
|
+
_mj__CreatedAt: Date;
|
|
764
|
+
_mj__UpdatedAt: Date;
|
|
765
|
+
OnAssignAction?: string;
|
|
766
|
+
OnCompleteAction?: string;
|
|
767
|
+
OnOverdueAction?: string;
|
|
768
|
+
OnPercentChangeAction?: string;
|
|
769
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskNotificationConfigs_TaskTypeIDArray: mjBizAppsTasksTaskNotificationConfig_[];
|
|
770
|
+
mjBizAppsTasksMJ_BizApps_Tasks_Tasks_TypeIDArray: mjBizAppsTasksTask_[];
|
|
771
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplates_TypeIDArray: mjBizAppsTasksTaskTemplate_[];
|
|
772
|
+
}
|
|
773
|
+
export declare class CreatemjBizAppsTasksTaskTypeInput {
|
|
774
|
+
ID?: string;
|
|
775
|
+
Name?: string;
|
|
776
|
+
Description: string | null;
|
|
777
|
+
IconClass: string | null;
|
|
778
|
+
DefaultPriority?: string;
|
|
779
|
+
OnAssignActionID: string | null;
|
|
780
|
+
OnCompleteActionID: string | null;
|
|
781
|
+
OnOverdueActionID: string | null;
|
|
782
|
+
OnPercentChangeActionID: string | null;
|
|
783
|
+
IsActive?: boolean;
|
|
784
|
+
RestoreContext___?: RestoreContextInput;
|
|
785
|
+
}
|
|
786
|
+
export declare class UpdatemjBizAppsTasksTaskTypeInput {
|
|
787
|
+
ID: string;
|
|
788
|
+
Name?: string;
|
|
789
|
+
Description?: string | null;
|
|
790
|
+
IconClass?: string | null;
|
|
791
|
+
DefaultPriority?: string;
|
|
792
|
+
OnAssignActionID?: string | null;
|
|
793
|
+
OnCompleteActionID?: string | null;
|
|
794
|
+
OnOverdueActionID?: string | null;
|
|
795
|
+
OnPercentChangeActionID?: string | null;
|
|
796
|
+
IsActive?: boolean;
|
|
797
|
+
OldValues___?: KeyValuePairInput[];
|
|
798
|
+
RestoreContext___?: RestoreContextInput;
|
|
799
|
+
}
|
|
800
|
+
export declare class RunmjBizAppsTasksTaskTypeViewResult {
|
|
801
|
+
Results: mjBizAppsTasksTaskType_[];
|
|
802
|
+
UserViewRunID?: string;
|
|
803
|
+
RowCount: number;
|
|
804
|
+
TotalRowCount: number;
|
|
805
|
+
ExecutionTime: number;
|
|
806
|
+
ErrorMessage?: string;
|
|
807
|
+
Success: boolean;
|
|
808
|
+
}
|
|
809
|
+
export declare class mjBizAppsTasksTaskTypeResolver extends ResolverBase {
|
|
810
|
+
RunmjBizAppsTasksTaskTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
811
|
+
RunmjBizAppsTasksTaskTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
812
|
+
RunmjBizAppsTasksTaskTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
813
|
+
mjBizAppsTasksTaskType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTaskType_ | null>;
|
|
814
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskNotificationConfigs_TaskTypeIDArray(mjbizappstaskstasktype_: mjBizAppsTasksTaskType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
815
|
+
mjBizAppsTasksMJ_BizApps_Tasks_Tasks_TypeIDArray(mjbizappstaskstasktype_: mjBizAppsTasksTaskType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
816
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTemplates_TypeIDArray(mjbizappstaskstasktype_: mjBizAppsTasksTaskType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
817
|
+
CreatemjBizAppsTasksTaskType(input: CreatemjBizAppsTasksTaskTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
818
|
+
UpdatemjBizAppsTasksTaskType(input: UpdatemjBizAppsTasksTaskTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
819
|
+
DeletemjBizAppsTasksTaskType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
820
|
+
}
|
|
821
|
+
export declare class mjBizAppsTasksTask_ {
|
|
822
|
+
ID: string;
|
|
823
|
+
Name: string;
|
|
824
|
+
Description?: string;
|
|
825
|
+
TypeID: string;
|
|
826
|
+
CategoryID?: string;
|
|
827
|
+
ParentID?: string;
|
|
828
|
+
Status: string;
|
|
829
|
+
Priority: string;
|
|
830
|
+
StartedAt?: Date;
|
|
831
|
+
DueAt?: Date;
|
|
832
|
+
CompletedAt?: Date;
|
|
833
|
+
HoursEstimated?: number;
|
|
834
|
+
HoursActual?: number;
|
|
835
|
+
PercentComplete: number;
|
|
836
|
+
Sequence: number;
|
|
837
|
+
BlockedReason?: string;
|
|
838
|
+
CompletionNotes?: string;
|
|
839
|
+
CreatedByPersonID?: string;
|
|
840
|
+
OverdueNotifiedAt?: Date;
|
|
841
|
+
_mj__CreatedAt: Date;
|
|
842
|
+
_mj__UpdatedAt: Date;
|
|
843
|
+
Type: string;
|
|
844
|
+
Category?: string;
|
|
845
|
+
Parent?: string;
|
|
846
|
+
CreatedByPerson?: string;
|
|
847
|
+
RootParentID?: string;
|
|
848
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskDependencies_DependsOnTaskIDArray: mjBizAppsTasksTaskDependency_[];
|
|
849
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskDependencies_TaskIDArray: mjBizAppsTasksTaskDependency_[];
|
|
850
|
+
mjBizAppsTasksMJ_BizApps_Tasks_Tasks_ParentIDArray: mjBizAppsTasksTask_[];
|
|
851
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskAssignments_TaskIDArray: mjBizAppsTasksTaskAssignment_[];
|
|
852
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskLinks_TaskIDArray: mjBizAppsTasksTaskLink_[];
|
|
853
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskComments_TaskIDArray: mjBizAppsTasksTaskComment_[];
|
|
854
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskActivities_TaskIDArray: mjBizAppsTasksTaskActivity_[];
|
|
855
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTagLinks_TaskIDArray: mjBizAppsTasksTaskTagLink_[];
|
|
856
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskNotificationLogs_TaskIDArray: mjBizAppsTasksTaskNotificationLog_[];
|
|
857
|
+
}
|
|
858
|
+
export declare class CreatemjBizAppsTasksTaskInput {
|
|
859
|
+
ID?: string;
|
|
860
|
+
Name?: string;
|
|
861
|
+
Description: string | null;
|
|
862
|
+
TypeID?: string;
|
|
863
|
+
CategoryID: string | null;
|
|
864
|
+
ParentID: string | null;
|
|
865
|
+
Status?: string;
|
|
866
|
+
Priority?: string;
|
|
867
|
+
StartedAt: Date | null;
|
|
868
|
+
DueAt: Date | null;
|
|
869
|
+
CompletedAt: Date | null;
|
|
870
|
+
HoursEstimated: number | null;
|
|
871
|
+
HoursActual: number | null;
|
|
872
|
+
PercentComplete?: number;
|
|
873
|
+
Sequence?: number;
|
|
874
|
+
BlockedReason: string | null;
|
|
875
|
+
CompletionNotes: string | null;
|
|
876
|
+
CreatedByPersonID: string | null;
|
|
877
|
+
OverdueNotifiedAt: Date | null;
|
|
878
|
+
RestoreContext___?: RestoreContextInput;
|
|
879
|
+
}
|
|
880
|
+
export declare class UpdatemjBizAppsTasksTaskInput {
|
|
881
|
+
ID: string;
|
|
882
|
+
Name?: string;
|
|
883
|
+
Description?: string | null;
|
|
884
|
+
TypeID?: string;
|
|
885
|
+
CategoryID?: string | null;
|
|
886
|
+
ParentID?: string | null;
|
|
887
|
+
Status?: string;
|
|
888
|
+
Priority?: string;
|
|
889
|
+
StartedAt?: Date | null;
|
|
890
|
+
DueAt?: Date | null;
|
|
891
|
+
CompletedAt?: Date | null;
|
|
892
|
+
HoursEstimated?: number | null;
|
|
893
|
+
HoursActual?: number | null;
|
|
894
|
+
PercentComplete?: number;
|
|
895
|
+
Sequence?: number;
|
|
896
|
+
BlockedReason?: string | null;
|
|
897
|
+
CompletionNotes?: string | null;
|
|
898
|
+
CreatedByPersonID?: string | null;
|
|
899
|
+
OverdueNotifiedAt?: Date | null;
|
|
900
|
+
OldValues___?: KeyValuePairInput[];
|
|
901
|
+
RestoreContext___?: RestoreContextInput;
|
|
902
|
+
}
|
|
903
|
+
export declare class RunmjBizAppsTasksTaskViewResult {
|
|
904
|
+
Results: mjBizAppsTasksTask_[];
|
|
905
|
+
UserViewRunID?: string;
|
|
906
|
+
RowCount: number;
|
|
907
|
+
TotalRowCount: number;
|
|
908
|
+
ExecutionTime: number;
|
|
909
|
+
ErrorMessage?: string;
|
|
910
|
+
Success: boolean;
|
|
911
|
+
}
|
|
912
|
+
export declare class mjBizAppsTasksTaskResolver extends ResolverBase {
|
|
913
|
+
RunmjBizAppsTasksTaskViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
914
|
+
RunmjBizAppsTasksTaskViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
915
|
+
RunmjBizAppsTasksTaskDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
916
|
+
mjBizAppsTasksTask(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsTasksTask_ | null>;
|
|
917
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskDependencies_DependsOnTaskIDArray(mjbizappstaskstask_: mjBizAppsTasksTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
918
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskDependencies_TaskIDArray(mjbizappstaskstask_: mjBizAppsTasksTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
919
|
+
mjBizAppsTasksMJ_BizApps_Tasks_Tasks_ParentIDArray(mjbizappstaskstask_: mjBizAppsTasksTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
920
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskAssignments_TaskIDArray(mjbizappstaskstask_: mjBizAppsTasksTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
921
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskLinks_TaskIDArray(mjbizappstaskstask_: mjBizAppsTasksTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
922
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskComments_TaskIDArray(mjbizappstaskstask_: mjBizAppsTasksTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
923
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskActivities_TaskIDArray(mjbizappstaskstask_: mjBizAppsTasksTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
924
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskTagLinks_TaskIDArray(mjbizappstaskstask_: mjBizAppsTasksTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
925
|
+
mjBizAppsTasksMJ_BizApps_Tasks_TaskNotificationLogs_TaskIDArray(mjbizappstaskstask_: mjBizAppsTasksTask_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
926
|
+
CreatemjBizAppsTasksTask(input: CreatemjBizAppsTasksTaskInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
927
|
+
UpdatemjBizAppsTasksTask(input: UpdatemjBizAppsTasksTaskInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
928
|
+
DeletemjBizAppsTasksTask(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
929
|
+
}
|
|
930
|
+
//# sourceMappingURL=generated.d.ts.map
|