@mj-biz-apps/common-server 5.36.0 → 5.37.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/custom/log-activity.action.d.ts +19 -0
- package/dist/custom/log-activity.action.d.ts.map +1 -0
- package/dist/custom/log-activity.action.js +87 -0
- package/dist/custom/log-activity.action.js.map +1 -0
- package/dist/custom/sync-activities.action.d.ts +14 -0
- package/dist/custom/sync-activities.action.d.ts.map +1 -0
- package/dist/custom/sync-activities.action.js +67 -0
- package/dist/custom/sync-activities.action.js.map +1 -0
- package/dist/generated/generated.d.ts +3 -1055
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +3 -5839
- package/dist/generated/generated.js.map +1 -1
- package/dist/generated/graphql-schemas/__mj_BizAppsCommon.d.ts +1510 -0
- package/dist/generated/graphql-schemas/__mj_BizAppsCommon.d.ts.map +1 -0
- package/dist/generated/graphql-schemas/__mj_BizAppsCommon.js +7907 -0
- package/dist/generated/graphql-schemas/__mj_BizAppsCommon.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/package.json +7 -4
|
@@ -1,1059 +1,7 @@
|
|
|
1
1
|
/********************************************************************************
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
* >>> DO NOT MODIFY THIS FILE!!!!!!!!!!!!
|
|
6
|
-
* >>> YOUR CHANGES WILL BE OVERWRITTEN
|
|
7
|
-
* >>> THE NEXT TIME THIS FILE IS GENERATED
|
|
2
|
+
* GraphQL server barrel — AUTO GENERATED. Do not edit.
|
|
3
|
+
* Re-exports one file per schema.
|
|
8
4
|
*
|
|
9
5
|
**********************************************************************************/
|
|
10
|
-
|
|
11
|
-
export declare class mjBizAppsCommonActivity_ {
|
|
12
|
-
ID: string;
|
|
13
|
-
ActivityTypeID: string;
|
|
14
|
-
StartedAt: Date;
|
|
15
|
-
EndedAt?: Date;
|
|
16
|
-
Title: string;
|
|
17
|
-
Description?: string;
|
|
18
|
-
Direction: string;
|
|
19
|
-
Status: string;
|
|
20
|
-
Outcome?: string;
|
|
21
|
-
Visibility: string;
|
|
22
|
-
Source: string;
|
|
23
|
-
SourceSystem?: string;
|
|
24
|
-
ExternalID?: string;
|
|
25
|
-
ExternalThreadID?: string;
|
|
26
|
-
ParentActivityID?: string;
|
|
27
|
-
LoggedByUserID: string;
|
|
28
|
-
Location?: string;
|
|
29
|
-
AddressID?: string;
|
|
30
|
-
ActivitySyncConnectionID?: string;
|
|
31
|
-
Details?: string;
|
|
32
|
-
_mj__CreatedAt: Date;
|
|
33
|
-
_mj__UpdatedAt: Date;
|
|
34
|
-
ActivityType: string;
|
|
35
|
-
ParentActivity?: string;
|
|
36
|
-
LoggedByUser: string;
|
|
37
|
-
Address?: string;
|
|
38
|
-
ActivitySyncConnection?: string;
|
|
39
|
-
_mj__Latitude?: number;
|
|
40
|
-
_mj__Longitude?: number;
|
|
41
|
-
RootParentActivityID?: string;
|
|
42
|
-
ParentActivityIDDepth?: number;
|
|
43
|
-
ParentActivityIDPath?: string;
|
|
44
|
-
ParentActivityIDIsLeaf?: boolean;
|
|
45
|
-
ParentActivityIDChildCount?: number;
|
|
46
|
-
mjBizAppsCommonActivities_ParentActivityIDArray: mjBizAppsCommonActivity_[];
|
|
47
|
-
mjBizAppsCommonActivityFiles_ActivityIDArray: mjBizAppsCommonActivityFile_[];
|
|
48
|
-
mjBizAppsCommonActivityLinks_ActivityIDArray: mjBizAppsCommonActivityLink_[];
|
|
49
|
-
}
|
|
50
|
-
export declare class CreatemjBizAppsCommonActivityInput {
|
|
51
|
-
ID?: string;
|
|
52
|
-
ActivityTypeID?: string;
|
|
53
|
-
StartedAt?: Date;
|
|
54
|
-
EndedAt: Date | null;
|
|
55
|
-
Title?: string;
|
|
56
|
-
Description: string | null;
|
|
57
|
-
Direction?: string;
|
|
58
|
-
Status?: string;
|
|
59
|
-
Outcome: string | null;
|
|
60
|
-
Visibility?: string;
|
|
61
|
-
Source?: string;
|
|
62
|
-
SourceSystem: string | null;
|
|
63
|
-
ExternalID: string | null;
|
|
64
|
-
ExternalThreadID: string | null;
|
|
65
|
-
ParentActivityID: string | null;
|
|
66
|
-
LoggedByUserID?: string;
|
|
67
|
-
Location: string | null;
|
|
68
|
-
AddressID: string | null;
|
|
69
|
-
ActivitySyncConnectionID: string | null;
|
|
70
|
-
Details: string | null;
|
|
71
|
-
RestoreContext___?: RestoreContextInput;
|
|
72
|
-
}
|
|
73
|
-
export declare class UpdatemjBizAppsCommonActivityInput {
|
|
74
|
-
ID: string;
|
|
75
|
-
ActivityTypeID?: string;
|
|
76
|
-
StartedAt?: Date;
|
|
77
|
-
EndedAt?: Date | null;
|
|
78
|
-
Title?: string;
|
|
79
|
-
Description?: string | null;
|
|
80
|
-
Direction?: string;
|
|
81
|
-
Status?: string;
|
|
82
|
-
Outcome?: string | null;
|
|
83
|
-
Visibility?: string;
|
|
84
|
-
Source?: string;
|
|
85
|
-
SourceSystem?: string | null;
|
|
86
|
-
ExternalID?: string | null;
|
|
87
|
-
ExternalThreadID?: string | null;
|
|
88
|
-
ParentActivityID?: string | null;
|
|
89
|
-
LoggedByUserID?: string;
|
|
90
|
-
Location?: string | null;
|
|
91
|
-
AddressID?: string | null;
|
|
92
|
-
ActivitySyncConnectionID?: string | null;
|
|
93
|
-
Details?: string | null;
|
|
94
|
-
OldValues___?: KeyValuePairInput[];
|
|
95
|
-
RestoreContext___?: RestoreContextInput;
|
|
96
|
-
}
|
|
97
|
-
export declare class RunmjBizAppsCommonActivityViewResult {
|
|
98
|
-
Results: mjBizAppsCommonActivity_[];
|
|
99
|
-
UserViewRunID?: string;
|
|
100
|
-
RowCount: number;
|
|
101
|
-
TotalRowCount: number;
|
|
102
|
-
ExecutionTime: number;
|
|
103
|
-
ErrorMessage?: string;
|
|
104
|
-
Success: boolean;
|
|
105
|
-
}
|
|
106
|
-
export declare class mjBizAppsCommonActivityResolver extends ResolverBase {
|
|
107
|
-
RunmjBizAppsCommonActivityViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
108
|
-
RunmjBizAppsCommonActivityViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
109
|
-
RunmjBizAppsCommonActivityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
110
|
-
mjBizAppsCommonActivity(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivity_ | null>;
|
|
111
|
-
mjBizAppsCommonActivities_ParentActivityIDArray(mjbizappscommonactivity_: mjBizAppsCommonActivity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
112
|
-
mjBizAppsCommonActivityFiles_ActivityIDArray(mjbizappscommonactivity_: mjBizAppsCommonActivity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
113
|
-
mjBizAppsCommonActivityLinks_ActivityIDArray(mjbizappscommonactivity_: mjBizAppsCommonActivity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
114
|
-
CreatemjBizAppsCommonActivity(input: CreatemjBizAppsCommonActivityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
115
|
-
UpdatemjBizAppsCommonActivity(input: UpdatemjBizAppsCommonActivityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
116
|
-
DeletemjBizAppsCommonActivity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
117
|
-
}
|
|
118
|
-
export declare class mjBizAppsCommonActivityFile_ {
|
|
119
|
-
ID: string;
|
|
120
|
-
ActivityID: string;
|
|
121
|
-
FileID: string;
|
|
122
|
-
Kind: string;
|
|
123
|
-
Sequence: number;
|
|
124
|
-
_mj__CreatedAt: Date;
|
|
125
|
-
_mj__UpdatedAt: Date;
|
|
126
|
-
Activity: string;
|
|
127
|
-
File: string;
|
|
128
|
-
}
|
|
129
|
-
export declare class CreatemjBizAppsCommonActivityFileInput {
|
|
130
|
-
ID?: string;
|
|
131
|
-
ActivityID?: string;
|
|
132
|
-
FileID?: string;
|
|
133
|
-
Kind?: string;
|
|
134
|
-
Sequence?: number;
|
|
135
|
-
RestoreContext___?: RestoreContextInput;
|
|
136
|
-
}
|
|
137
|
-
export declare class UpdatemjBizAppsCommonActivityFileInput {
|
|
138
|
-
ID: string;
|
|
139
|
-
ActivityID?: string;
|
|
140
|
-
FileID?: string;
|
|
141
|
-
Kind?: string;
|
|
142
|
-
Sequence?: number;
|
|
143
|
-
OldValues___?: KeyValuePairInput[];
|
|
144
|
-
RestoreContext___?: RestoreContextInput;
|
|
145
|
-
}
|
|
146
|
-
export declare class RunmjBizAppsCommonActivityFileViewResult {
|
|
147
|
-
Results: mjBizAppsCommonActivityFile_[];
|
|
148
|
-
UserViewRunID?: string;
|
|
149
|
-
RowCount: number;
|
|
150
|
-
TotalRowCount: number;
|
|
151
|
-
ExecutionTime: number;
|
|
152
|
-
ErrorMessage?: string;
|
|
153
|
-
Success: boolean;
|
|
154
|
-
}
|
|
155
|
-
export declare class mjBizAppsCommonActivityFileResolver extends ResolverBase {
|
|
156
|
-
RunmjBizAppsCommonActivityFileViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
157
|
-
RunmjBizAppsCommonActivityFileViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
158
|
-
RunmjBizAppsCommonActivityFileDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
159
|
-
mjBizAppsCommonActivityFile(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivityFile_ | null>;
|
|
160
|
-
CreatemjBizAppsCommonActivityFile(input: CreatemjBizAppsCommonActivityFileInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
161
|
-
UpdatemjBizAppsCommonActivityFile(input: UpdatemjBizAppsCommonActivityFileInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
162
|
-
DeletemjBizAppsCommonActivityFile(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
163
|
-
}
|
|
164
|
-
export declare class mjBizAppsCommonActivityLink_ {
|
|
165
|
-
ID: string;
|
|
166
|
-
ActivityID: string;
|
|
167
|
-
Role: string;
|
|
168
|
-
EntityID?: string;
|
|
169
|
-
RecordID?: string;
|
|
170
|
-
IdentityKind?: string;
|
|
171
|
-
IdentityValue?: string;
|
|
172
|
-
Sequence: number;
|
|
173
|
-
_mj__CreatedAt: Date;
|
|
174
|
-
_mj__UpdatedAt: Date;
|
|
175
|
-
Activity: string;
|
|
176
|
-
Entity?: string;
|
|
177
|
-
}
|
|
178
|
-
export declare class CreatemjBizAppsCommonActivityLinkInput {
|
|
179
|
-
ID?: string;
|
|
180
|
-
ActivityID?: string;
|
|
181
|
-
Role?: string;
|
|
182
|
-
EntityID: string | null;
|
|
183
|
-
RecordID: string | null;
|
|
184
|
-
IdentityKind: string | null;
|
|
185
|
-
IdentityValue: string | null;
|
|
186
|
-
Sequence?: number;
|
|
187
|
-
RestoreContext___?: RestoreContextInput;
|
|
188
|
-
}
|
|
189
|
-
export declare class UpdatemjBizAppsCommonActivityLinkInput {
|
|
190
|
-
ID: string;
|
|
191
|
-
ActivityID?: string;
|
|
192
|
-
Role?: string;
|
|
193
|
-
EntityID?: string | null;
|
|
194
|
-
RecordID?: string | null;
|
|
195
|
-
IdentityKind?: string | null;
|
|
196
|
-
IdentityValue?: string | null;
|
|
197
|
-
Sequence?: number;
|
|
198
|
-
OldValues___?: KeyValuePairInput[];
|
|
199
|
-
RestoreContext___?: RestoreContextInput;
|
|
200
|
-
}
|
|
201
|
-
export declare class RunmjBizAppsCommonActivityLinkViewResult {
|
|
202
|
-
Results: mjBizAppsCommonActivityLink_[];
|
|
203
|
-
UserViewRunID?: string;
|
|
204
|
-
RowCount: number;
|
|
205
|
-
TotalRowCount: number;
|
|
206
|
-
ExecutionTime: number;
|
|
207
|
-
ErrorMessage?: string;
|
|
208
|
-
Success: boolean;
|
|
209
|
-
}
|
|
210
|
-
export declare class mjBizAppsCommonActivityLinkResolver extends ResolverBase {
|
|
211
|
-
RunmjBizAppsCommonActivityLinkViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
212
|
-
RunmjBizAppsCommonActivityLinkViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
213
|
-
RunmjBizAppsCommonActivityLinkDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
214
|
-
mjBizAppsCommonActivityLink(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivityLink_ | null>;
|
|
215
|
-
CreatemjBizAppsCommonActivityLink(input: CreatemjBizAppsCommonActivityLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
216
|
-
UpdatemjBizAppsCommonActivityLink(input: UpdatemjBizAppsCommonActivityLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
217
|
-
DeletemjBizAppsCommonActivityLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
218
|
-
}
|
|
219
|
-
export declare class mjBizAppsCommonActivitySyncConnection_ {
|
|
220
|
-
ID: string;
|
|
221
|
-
Name: string;
|
|
222
|
-
Provider: string;
|
|
223
|
-
Status: string;
|
|
224
|
-
Direction: string;
|
|
225
|
-
OwnerUserID: string;
|
|
226
|
-
CredentialsRef?: string;
|
|
227
|
-
Mailbox?: string;
|
|
228
|
-
LastSyncAt?: Date;
|
|
229
|
-
LastError?: string;
|
|
230
|
-
Settings?: string;
|
|
231
|
-
_mj__CreatedAt: Date;
|
|
232
|
-
_mj__UpdatedAt: Date;
|
|
233
|
-
OwnerUser: string;
|
|
234
|
-
mjBizAppsCommonActivitySyncRules_ActivitySyncConnectionIDArray: mjBizAppsCommonActivitySyncRule_[];
|
|
235
|
-
mjBizAppsCommonActivities_ActivitySyncConnectionIDArray: mjBizAppsCommonActivity_[];
|
|
236
|
-
}
|
|
237
|
-
export declare class CreatemjBizAppsCommonActivitySyncConnectionInput {
|
|
238
|
-
ID?: string;
|
|
239
|
-
Name?: string;
|
|
240
|
-
Provider?: string;
|
|
241
|
-
Status?: string;
|
|
242
|
-
Direction?: string;
|
|
243
|
-
OwnerUserID?: string;
|
|
244
|
-
CredentialsRef: string | null;
|
|
245
|
-
Mailbox: string | null;
|
|
246
|
-
LastSyncAt: Date | null;
|
|
247
|
-
LastError: string | null;
|
|
248
|
-
Settings: string | null;
|
|
249
|
-
RestoreContext___?: RestoreContextInput;
|
|
250
|
-
}
|
|
251
|
-
export declare class UpdatemjBizAppsCommonActivitySyncConnectionInput {
|
|
252
|
-
ID: string;
|
|
253
|
-
Name?: string;
|
|
254
|
-
Provider?: string;
|
|
255
|
-
Status?: string;
|
|
256
|
-
Direction?: string;
|
|
257
|
-
OwnerUserID?: string;
|
|
258
|
-
CredentialsRef?: string | null;
|
|
259
|
-
Mailbox?: string | null;
|
|
260
|
-
LastSyncAt?: Date | null;
|
|
261
|
-
LastError?: string | null;
|
|
262
|
-
Settings?: string | null;
|
|
263
|
-
OldValues___?: KeyValuePairInput[];
|
|
264
|
-
RestoreContext___?: RestoreContextInput;
|
|
265
|
-
}
|
|
266
|
-
export declare class RunmjBizAppsCommonActivitySyncConnectionViewResult {
|
|
267
|
-
Results: mjBizAppsCommonActivitySyncConnection_[];
|
|
268
|
-
UserViewRunID?: string;
|
|
269
|
-
RowCount: number;
|
|
270
|
-
TotalRowCount: number;
|
|
271
|
-
ExecutionTime: number;
|
|
272
|
-
ErrorMessage?: string;
|
|
273
|
-
Success: boolean;
|
|
274
|
-
}
|
|
275
|
-
export declare class mjBizAppsCommonActivitySyncConnectionResolver extends ResolverBase {
|
|
276
|
-
RunmjBizAppsCommonActivitySyncConnectionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
277
|
-
RunmjBizAppsCommonActivitySyncConnectionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
278
|
-
RunmjBizAppsCommonActivitySyncConnectionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
279
|
-
mjBizAppsCommonActivitySyncConnection(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivitySyncConnection_ | null>;
|
|
280
|
-
mjBizAppsCommonActivitySyncRules_ActivitySyncConnectionIDArray(mjbizappscommonactivitysyncconnection_: mjBizAppsCommonActivitySyncConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
281
|
-
mjBizAppsCommonActivities_ActivitySyncConnectionIDArray(mjbizappscommonactivitysyncconnection_: mjBizAppsCommonActivitySyncConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
282
|
-
CreatemjBizAppsCommonActivitySyncConnection(input: CreatemjBizAppsCommonActivitySyncConnectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
283
|
-
UpdatemjBizAppsCommonActivitySyncConnection(input: UpdatemjBizAppsCommonActivitySyncConnectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
284
|
-
DeletemjBizAppsCommonActivitySyncConnection(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
285
|
-
}
|
|
286
|
-
export declare class mjBizAppsCommonActivitySyncRule_ {
|
|
287
|
-
ID: string;
|
|
288
|
-
ActivitySyncConnectionID: string;
|
|
289
|
-
Name: string;
|
|
290
|
-
IsEnabled: boolean;
|
|
291
|
-
Sequence: number;
|
|
292
|
-
Action: string;
|
|
293
|
-
ActivityTypeID?: string;
|
|
294
|
-
Direction?: string;
|
|
295
|
-
DateFrom?: Date;
|
|
296
|
-
DateTo?: Date;
|
|
297
|
-
IncludeAttachments: boolean;
|
|
298
|
-
Filter?: string;
|
|
299
|
-
_mj__CreatedAt: Date;
|
|
300
|
-
_mj__UpdatedAt: Date;
|
|
301
|
-
ActivitySyncConnection: string;
|
|
302
|
-
ActivityType?: string;
|
|
303
|
-
}
|
|
304
|
-
export declare class CreatemjBizAppsCommonActivitySyncRuleInput {
|
|
305
|
-
ID?: string;
|
|
306
|
-
ActivitySyncConnectionID?: string;
|
|
307
|
-
Name?: string;
|
|
308
|
-
IsEnabled?: boolean;
|
|
309
|
-
Sequence?: number;
|
|
310
|
-
Action?: string;
|
|
311
|
-
ActivityTypeID: string | null;
|
|
312
|
-
Direction: string | null;
|
|
313
|
-
DateFrom: Date | null;
|
|
314
|
-
DateTo: Date | null;
|
|
315
|
-
IncludeAttachments?: boolean;
|
|
316
|
-
Filter: string | null;
|
|
317
|
-
RestoreContext___?: RestoreContextInput;
|
|
318
|
-
}
|
|
319
|
-
export declare class UpdatemjBizAppsCommonActivitySyncRuleInput {
|
|
320
|
-
ID: string;
|
|
321
|
-
ActivitySyncConnectionID?: string;
|
|
322
|
-
Name?: string;
|
|
323
|
-
IsEnabled?: boolean;
|
|
324
|
-
Sequence?: number;
|
|
325
|
-
Action?: string;
|
|
326
|
-
ActivityTypeID?: string | null;
|
|
327
|
-
Direction?: string | null;
|
|
328
|
-
DateFrom?: Date | null;
|
|
329
|
-
DateTo?: Date | null;
|
|
330
|
-
IncludeAttachments?: boolean;
|
|
331
|
-
Filter?: string | null;
|
|
332
|
-
OldValues___?: KeyValuePairInput[];
|
|
333
|
-
RestoreContext___?: RestoreContextInput;
|
|
334
|
-
}
|
|
335
|
-
export declare class RunmjBizAppsCommonActivitySyncRuleViewResult {
|
|
336
|
-
Results: mjBizAppsCommonActivitySyncRule_[];
|
|
337
|
-
UserViewRunID?: string;
|
|
338
|
-
RowCount: number;
|
|
339
|
-
TotalRowCount: number;
|
|
340
|
-
ExecutionTime: number;
|
|
341
|
-
ErrorMessage?: string;
|
|
342
|
-
Success: boolean;
|
|
343
|
-
}
|
|
344
|
-
export declare class mjBizAppsCommonActivitySyncRuleResolver extends ResolverBase {
|
|
345
|
-
RunmjBizAppsCommonActivitySyncRuleViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
346
|
-
RunmjBizAppsCommonActivitySyncRuleViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
347
|
-
RunmjBizAppsCommonActivitySyncRuleDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
348
|
-
mjBizAppsCommonActivitySyncRule(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivitySyncRule_ | null>;
|
|
349
|
-
CreatemjBizAppsCommonActivitySyncRule(input: CreatemjBizAppsCommonActivitySyncRuleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
350
|
-
UpdatemjBizAppsCommonActivitySyncRule(input: UpdatemjBizAppsCommonActivitySyncRuleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
351
|
-
DeletemjBizAppsCommonActivitySyncRule(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
352
|
-
}
|
|
353
|
-
export declare class mjBizAppsCommonActivityType_ {
|
|
354
|
-
ID: string;
|
|
355
|
-
Code: string;
|
|
356
|
-
Name: string;
|
|
357
|
-
Description?: string;
|
|
358
|
-
ParentID?: string;
|
|
359
|
-
IconClass?: string;
|
|
360
|
-
Color?: string;
|
|
361
|
-
Sequence: number;
|
|
362
|
-
IsSystem: boolean;
|
|
363
|
-
IsActive: boolean;
|
|
364
|
-
_mj__CreatedAt: Date;
|
|
365
|
-
_mj__UpdatedAt: Date;
|
|
366
|
-
Parent?: string;
|
|
367
|
-
RootParentID?: string;
|
|
368
|
-
ParentIDDepth?: number;
|
|
369
|
-
ParentIDPath?: string;
|
|
370
|
-
ParentIDIsLeaf?: boolean;
|
|
371
|
-
ParentIDChildCount?: number;
|
|
372
|
-
mjBizAppsCommonActivities_ActivityTypeIDArray: mjBizAppsCommonActivity_[];
|
|
373
|
-
mjBizAppsCommonActivitySyncRules_ActivityTypeIDArray: mjBizAppsCommonActivitySyncRule_[];
|
|
374
|
-
mjBizAppsCommonActivityTypes_ParentIDArray: mjBizAppsCommonActivityType_[];
|
|
375
|
-
}
|
|
376
|
-
export declare class CreatemjBizAppsCommonActivityTypeInput {
|
|
377
|
-
ID?: string;
|
|
378
|
-
Code?: string;
|
|
379
|
-
Name?: string;
|
|
380
|
-
Description: string | null;
|
|
381
|
-
ParentID: string | null;
|
|
382
|
-
IconClass: string | null;
|
|
383
|
-
Color: string | null;
|
|
384
|
-
Sequence?: number;
|
|
385
|
-
IsSystem?: boolean;
|
|
386
|
-
IsActive?: boolean;
|
|
387
|
-
RestoreContext___?: RestoreContextInput;
|
|
388
|
-
}
|
|
389
|
-
export declare class UpdatemjBizAppsCommonActivityTypeInput {
|
|
390
|
-
ID: string;
|
|
391
|
-
Code?: string;
|
|
392
|
-
Name?: string;
|
|
393
|
-
Description?: string | null;
|
|
394
|
-
ParentID?: string | null;
|
|
395
|
-
IconClass?: string | null;
|
|
396
|
-
Color?: string | null;
|
|
397
|
-
Sequence?: number;
|
|
398
|
-
IsSystem?: boolean;
|
|
399
|
-
IsActive?: boolean;
|
|
400
|
-
OldValues___?: KeyValuePairInput[];
|
|
401
|
-
RestoreContext___?: RestoreContextInput;
|
|
402
|
-
}
|
|
403
|
-
export declare class RunmjBizAppsCommonActivityTypeViewResult {
|
|
404
|
-
Results: mjBizAppsCommonActivityType_[];
|
|
405
|
-
UserViewRunID?: string;
|
|
406
|
-
RowCount: number;
|
|
407
|
-
TotalRowCount: number;
|
|
408
|
-
ExecutionTime: number;
|
|
409
|
-
ErrorMessage?: string;
|
|
410
|
-
Success: boolean;
|
|
411
|
-
}
|
|
412
|
-
export declare class mjBizAppsCommonActivityTypeResolver extends ResolverBase {
|
|
413
|
-
RunmjBizAppsCommonActivityTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
414
|
-
RunmjBizAppsCommonActivityTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
415
|
-
RunmjBizAppsCommonActivityTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
416
|
-
mjBizAppsCommonActivityType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivityType_ | null>;
|
|
417
|
-
mjBizAppsCommonActivities_ActivityTypeIDArray(mjbizappscommonactivitytype_: mjBizAppsCommonActivityType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
418
|
-
mjBizAppsCommonActivitySyncRules_ActivityTypeIDArray(mjbizappscommonactivitytype_: mjBizAppsCommonActivityType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
419
|
-
mjBizAppsCommonActivityTypes_ParentIDArray(mjbizappscommonactivitytype_: mjBizAppsCommonActivityType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
420
|
-
CreatemjBizAppsCommonActivityType(input: CreatemjBizAppsCommonActivityTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
421
|
-
UpdatemjBizAppsCommonActivityType(input: UpdatemjBizAppsCommonActivityTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
422
|
-
DeletemjBizAppsCommonActivityType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
423
|
-
}
|
|
424
|
-
export declare class mjBizAppsCommonAddressLink_ {
|
|
425
|
-
ID: string;
|
|
426
|
-
AddressID: string;
|
|
427
|
-
EntityID: string;
|
|
428
|
-
RecordID: string;
|
|
429
|
-
AddressTypeID: string;
|
|
430
|
-
IsPrimary: boolean;
|
|
431
|
-
Rank?: number;
|
|
432
|
-
_mj__CreatedAt: Date;
|
|
433
|
-
_mj__UpdatedAt: Date;
|
|
434
|
-
Address: string;
|
|
435
|
-
Entity: string;
|
|
436
|
-
AddressType: string;
|
|
437
|
-
}
|
|
438
|
-
export declare class CreatemjBizAppsCommonAddressLinkInput {
|
|
439
|
-
ID?: string;
|
|
440
|
-
AddressID?: string;
|
|
441
|
-
EntityID?: string;
|
|
442
|
-
RecordID?: string;
|
|
443
|
-
AddressTypeID?: string;
|
|
444
|
-
IsPrimary?: boolean;
|
|
445
|
-
Rank: number | null;
|
|
446
|
-
RestoreContext___?: RestoreContextInput;
|
|
447
|
-
}
|
|
448
|
-
export declare class UpdatemjBizAppsCommonAddressLinkInput {
|
|
449
|
-
ID: string;
|
|
450
|
-
AddressID?: string;
|
|
451
|
-
EntityID?: string;
|
|
452
|
-
RecordID?: string;
|
|
453
|
-
AddressTypeID?: string;
|
|
454
|
-
IsPrimary?: boolean;
|
|
455
|
-
Rank?: number | null;
|
|
456
|
-
OldValues___?: KeyValuePairInput[];
|
|
457
|
-
RestoreContext___?: RestoreContextInput;
|
|
458
|
-
}
|
|
459
|
-
export declare class RunmjBizAppsCommonAddressLinkViewResult {
|
|
460
|
-
Results: mjBizAppsCommonAddressLink_[];
|
|
461
|
-
UserViewRunID?: string;
|
|
462
|
-
RowCount: number;
|
|
463
|
-
TotalRowCount: number;
|
|
464
|
-
ExecutionTime: number;
|
|
465
|
-
ErrorMessage?: string;
|
|
466
|
-
Success: boolean;
|
|
467
|
-
}
|
|
468
|
-
export declare class mjBizAppsCommonAddressLinkResolver extends ResolverBase {
|
|
469
|
-
RunmjBizAppsCommonAddressLinkViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
470
|
-
RunmjBizAppsCommonAddressLinkViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
471
|
-
RunmjBizAppsCommonAddressLinkDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
472
|
-
mjBizAppsCommonAddressLink(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonAddressLink_ | null>;
|
|
473
|
-
CreatemjBizAppsCommonAddressLink(input: CreatemjBizAppsCommonAddressLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
474
|
-
UpdatemjBizAppsCommonAddressLink(input: UpdatemjBizAppsCommonAddressLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
475
|
-
DeletemjBizAppsCommonAddressLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
476
|
-
}
|
|
477
|
-
export declare class mjBizAppsCommonAddressType_ {
|
|
478
|
-
ID: string;
|
|
479
|
-
Name: string;
|
|
480
|
-
Description?: string;
|
|
481
|
-
IconClass?: string;
|
|
482
|
-
DefaultRank: number;
|
|
483
|
-
IsActive: boolean;
|
|
484
|
-
_mj__CreatedAt: Date;
|
|
485
|
-
_mj__UpdatedAt: Date;
|
|
486
|
-
mjBizAppsCommonAddressLinks_AddressTypeIDArray: mjBizAppsCommonAddressLink_[];
|
|
487
|
-
}
|
|
488
|
-
export declare class CreatemjBizAppsCommonAddressTypeInput {
|
|
489
|
-
ID?: string;
|
|
490
|
-
Name?: string;
|
|
491
|
-
Description: string | null;
|
|
492
|
-
IconClass: string | null;
|
|
493
|
-
DefaultRank?: number;
|
|
494
|
-
IsActive?: boolean;
|
|
495
|
-
RestoreContext___?: RestoreContextInput;
|
|
496
|
-
}
|
|
497
|
-
export declare class UpdatemjBizAppsCommonAddressTypeInput {
|
|
498
|
-
ID: string;
|
|
499
|
-
Name?: string;
|
|
500
|
-
Description?: string | null;
|
|
501
|
-
IconClass?: string | null;
|
|
502
|
-
DefaultRank?: number;
|
|
503
|
-
IsActive?: boolean;
|
|
504
|
-
OldValues___?: KeyValuePairInput[];
|
|
505
|
-
RestoreContext___?: RestoreContextInput;
|
|
506
|
-
}
|
|
507
|
-
export declare class RunmjBizAppsCommonAddressTypeViewResult {
|
|
508
|
-
Results: mjBizAppsCommonAddressType_[];
|
|
509
|
-
UserViewRunID?: string;
|
|
510
|
-
RowCount: number;
|
|
511
|
-
TotalRowCount: number;
|
|
512
|
-
ExecutionTime: number;
|
|
513
|
-
ErrorMessage?: string;
|
|
514
|
-
Success: boolean;
|
|
515
|
-
}
|
|
516
|
-
export declare class mjBizAppsCommonAddressTypeResolver extends ResolverBase {
|
|
517
|
-
RunmjBizAppsCommonAddressTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
518
|
-
RunmjBizAppsCommonAddressTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
519
|
-
RunmjBizAppsCommonAddressTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
520
|
-
mjBizAppsCommonAddressType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonAddressType_ | null>;
|
|
521
|
-
mjBizAppsCommonAddressLinks_AddressTypeIDArray(mjbizappscommonaddresstype_: mjBizAppsCommonAddressType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
522
|
-
CreatemjBizAppsCommonAddressType(input: CreatemjBizAppsCommonAddressTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
523
|
-
UpdatemjBizAppsCommonAddressType(input: UpdatemjBizAppsCommonAddressTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
524
|
-
DeletemjBizAppsCommonAddressType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
525
|
-
}
|
|
526
|
-
export declare class mjBizAppsCommonAddress_ {
|
|
527
|
-
ID: string;
|
|
528
|
-
Line1: string;
|
|
529
|
-
Line2?: string;
|
|
530
|
-
Line3?: string;
|
|
531
|
-
City: string;
|
|
532
|
-
StateProvince?: string;
|
|
533
|
-
PostalCode?: string;
|
|
534
|
-
Country: string;
|
|
535
|
-
Latitude?: number;
|
|
536
|
-
Longitude?: number;
|
|
537
|
-
_mj__CreatedAt: Date;
|
|
538
|
-
_mj__UpdatedAt: Date;
|
|
539
|
-
mjBizAppsCommonAddressLinks_AddressIDArray: mjBizAppsCommonAddressLink_[];
|
|
540
|
-
mjBizAppsCommonActivities_AddressIDArray: mjBizAppsCommonActivity_[];
|
|
541
|
-
}
|
|
542
|
-
export declare class CreatemjBizAppsCommonAddressInput {
|
|
543
|
-
ID?: string;
|
|
544
|
-
Line1?: string;
|
|
545
|
-
Line2: string | null;
|
|
546
|
-
Line3: string | null;
|
|
547
|
-
City?: string;
|
|
548
|
-
StateProvince: string | null;
|
|
549
|
-
PostalCode: string | null;
|
|
550
|
-
Country?: string;
|
|
551
|
-
Latitude: number | null;
|
|
552
|
-
Longitude: number | null;
|
|
553
|
-
RestoreContext___?: RestoreContextInput;
|
|
554
|
-
}
|
|
555
|
-
export declare class UpdatemjBizAppsCommonAddressInput {
|
|
556
|
-
ID: string;
|
|
557
|
-
Line1?: string;
|
|
558
|
-
Line2?: string | null;
|
|
559
|
-
Line3?: string | null;
|
|
560
|
-
City?: string;
|
|
561
|
-
StateProvince?: string | null;
|
|
562
|
-
PostalCode?: string | null;
|
|
563
|
-
Country?: string;
|
|
564
|
-
Latitude?: number | null;
|
|
565
|
-
Longitude?: number | null;
|
|
566
|
-
OldValues___?: KeyValuePairInput[];
|
|
567
|
-
RestoreContext___?: RestoreContextInput;
|
|
568
|
-
}
|
|
569
|
-
export declare class RunmjBizAppsCommonAddressViewResult {
|
|
570
|
-
Results: mjBizAppsCommonAddress_[];
|
|
571
|
-
UserViewRunID?: string;
|
|
572
|
-
RowCount: number;
|
|
573
|
-
TotalRowCount: number;
|
|
574
|
-
ExecutionTime: number;
|
|
575
|
-
ErrorMessage?: string;
|
|
576
|
-
Success: boolean;
|
|
577
|
-
}
|
|
578
|
-
export declare class mjBizAppsCommonAddressResolver extends ResolverBase {
|
|
579
|
-
RunmjBizAppsCommonAddressViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
580
|
-
RunmjBizAppsCommonAddressViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
581
|
-
RunmjBizAppsCommonAddressDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
582
|
-
mjBizAppsCommonAddress(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonAddress_ | null>;
|
|
583
|
-
mjBizAppsCommonAddressLinks_AddressIDArray(mjbizappscommonaddress_: mjBizAppsCommonAddress_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
584
|
-
mjBizAppsCommonActivities_AddressIDArray(mjbizappscommonaddress_: mjBizAppsCommonAddress_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
585
|
-
CreatemjBizAppsCommonAddress(input: CreatemjBizAppsCommonAddressInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
586
|
-
UpdatemjBizAppsCommonAddress(input: UpdatemjBizAppsCommonAddressInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
587
|
-
DeletemjBizAppsCommonAddress(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
588
|
-
}
|
|
589
|
-
export declare class mjBizAppsCommonContactMethod_ {
|
|
590
|
-
ID: string;
|
|
591
|
-
PersonID?: string;
|
|
592
|
-
OrganizationID?: string;
|
|
593
|
-
ContactTypeID: string;
|
|
594
|
-
Value: string;
|
|
595
|
-
Label?: string;
|
|
596
|
-
IsPrimary: boolean;
|
|
597
|
-
_mj__CreatedAt: Date;
|
|
598
|
-
_mj__UpdatedAt: Date;
|
|
599
|
-
Person?: string;
|
|
600
|
-
Organization?: string;
|
|
601
|
-
ContactType: string;
|
|
602
|
-
}
|
|
603
|
-
export declare class CreatemjBizAppsCommonContactMethodInput {
|
|
604
|
-
ID?: string;
|
|
605
|
-
PersonID: string | null;
|
|
606
|
-
OrganizationID: string | null;
|
|
607
|
-
ContactTypeID?: string;
|
|
608
|
-
Value?: string;
|
|
609
|
-
Label: string | null;
|
|
610
|
-
IsPrimary?: boolean;
|
|
611
|
-
RestoreContext___?: RestoreContextInput;
|
|
612
|
-
}
|
|
613
|
-
export declare class UpdatemjBizAppsCommonContactMethodInput {
|
|
614
|
-
ID: string;
|
|
615
|
-
PersonID?: string | null;
|
|
616
|
-
OrganizationID?: string | null;
|
|
617
|
-
ContactTypeID?: string;
|
|
618
|
-
Value?: string;
|
|
619
|
-
Label?: string | null;
|
|
620
|
-
IsPrimary?: boolean;
|
|
621
|
-
OldValues___?: KeyValuePairInput[];
|
|
622
|
-
RestoreContext___?: RestoreContextInput;
|
|
623
|
-
}
|
|
624
|
-
export declare class RunmjBizAppsCommonContactMethodViewResult {
|
|
625
|
-
Results: mjBizAppsCommonContactMethod_[];
|
|
626
|
-
UserViewRunID?: string;
|
|
627
|
-
RowCount: number;
|
|
628
|
-
TotalRowCount: number;
|
|
629
|
-
ExecutionTime: number;
|
|
630
|
-
ErrorMessage?: string;
|
|
631
|
-
Success: boolean;
|
|
632
|
-
}
|
|
633
|
-
export declare class mjBizAppsCommonContactMethodResolver extends ResolverBase {
|
|
634
|
-
RunmjBizAppsCommonContactMethodViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
635
|
-
RunmjBizAppsCommonContactMethodViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
636
|
-
RunmjBizAppsCommonContactMethodDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
637
|
-
mjBizAppsCommonContactMethod(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonContactMethod_ | null>;
|
|
638
|
-
CreatemjBizAppsCommonContactMethod(input: CreatemjBizAppsCommonContactMethodInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
639
|
-
UpdatemjBizAppsCommonContactMethod(input: UpdatemjBizAppsCommonContactMethodInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
640
|
-
DeletemjBizAppsCommonContactMethod(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
641
|
-
}
|
|
642
|
-
export declare class mjBizAppsCommonContactType_ {
|
|
643
|
-
ID: string;
|
|
644
|
-
Name: string;
|
|
645
|
-
Description?: string;
|
|
646
|
-
IconClass?: string;
|
|
647
|
-
DisplayRank: number;
|
|
648
|
-
IsActive: boolean;
|
|
649
|
-
_mj__CreatedAt: Date;
|
|
650
|
-
_mj__UpdatedAt: Date;
|
|
651
|
-
mjBizAppsCommonContactMethods_ContactTypeIDArray: mjBizAppsCommonContactMethod_[];
|
|
652
|
-
}
|
|
653
|
-
export declare class CreatemjBizAppsCommonContactTypeInput {
|
|
654
|
-
ID?: string;
|
|
655
|
-
Name?: string;
|
|
656
|
-
Description: string | null;
|
|
657
|
-
IconClass: string | null;
|
|
658
|
-
DisplayRank?: number;
|
|
659
|
-
IsActive?: boolean;
|
|
660
|
-
RestoreContext___?: RestoreContextInput;
|
|
661
|
-
}
|
|
662
|
-
export declare class UpdatemjBizAppsCommonContactTypeInput {
|
|
663
|
-
ID: string;
|
|
664
|
-
Name?: string;
|
|
665
|
-
Description?: string | null;
|
|
666
|
-
IconClass?: string | null;
|
|
667
|
-
DisplayRank?: number;
|
|
668
|
-
IsActive?: boolean;
|
|
669
|
-
OldValues___?: KeyValuePairInput[];
|
|
670
|
-
RestoreContext___?: RestoreContextInput;
|
|
671
|
-
}
|
|
672
|
-
export declare class RunmjBizAppsCommonContactTypeViewResult {
|
|
673
|
-
Results: mjBizAppsCommonContactType_[];
|
|
674
|
-
UserViewRunID?: string;
|
|
675
|
-
RowCount: number;
|
|
676
|
-
TotalRowCount: number;
|
|
677
|
-
ExecutionTime: number;
|
|
678
|
-
ErrorMessage?: string;
|
|
679
|
-
Success: boolean;
|
|
680
|
-
}
|
|
681
|
-
export declare class mjBizAppsCommonContactTypeResolver extends ResolverBase {
|
|
682
|
-
RunmjBizAppsCommonContactTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
683
|
-
RunmjBizAppsCommonContactTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
684
|
-
RunmjBizAppsCommonContactTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
685
|
-
mjBizAppsCommonContactType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonContactType_ | null>;
|
|
686
|
-
mjBizAppsCommonContactMethods_ContactTypeIDArray(mjbizappscommoncontacttype_: mjBizAppsCommonContactType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
687
|
-
CreatemjBizAppsCommonContactType(input: CreatemjBizAppsCommonContactTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
688
|
-
UpdatemjBizAppsCommonContactType(input: UpdatemjBizAppsCommonContactTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
689
|
-
DeletemjBizAppsCommonContactType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
690
|
-
}
|
|
691
|
-
export declare class mjBizAppsCommonOrganizationType_ {
|
|
692
|
-
ID: string;
|
|
693
|
-
Name: string;
|
|
694
|
-
Description?: string;
|
|
695
|
-
IconClass?: string;
|
|
696
|
-
DisplayRank: number;
|
|
697
|
-
IsActive: boolean;
|
|
698
|
-
_mj__CreatedAt: Date;
|
|
699
|
-
_mj__UpdatedAt: Date;
|
|
700
|
-
mjBizAppsCommonOrganizations_OrganizationTypeIDArray: mjBizAppsCommonOrganization_[];
|
|
701
|
-
}
|
|
702
|
-
export declare class CreatemjBizAppsCommonOrganizationTypeInput {
|
|
703
|
-
ID?: string;
|
|
704
|
-
Name?: string;
|
|
705
|
-
Description: string | null;
|
|
706
|
-
IconClass: string | null;
|
|
707
|
-
DisplayRank?: number;
|
|
708
|
-
IsActive?: boolean;
|
|
709
|
-
RestoreContext___?: RestoreContextInput;
|
|
710
|
-
}
|
|
711
|
-
export declare class UpdatemjBizAppsCommonOrganizationTypeInput {
|
|
712
|
-
ID: string;
|
|
713
|
-
Name?: string;
|
|
714
|
-
Description?: string | null;
|
|
715
|
-
IconClass?: string | null;
|
|
716
|
-
DisplayRank?: number;
|
|
717
|
-
IsActive?: boolean;
|
|
718
|
-
OldValues___?: KeyValuePairInput[];
|
|
719
|
-
RestoreContext___?: RestoreContextInput;
|
|
720
|
-
}
|
|
721
|
-
export declare class RunmjBizAppsCommonOrganizationTypeViewResult {
|
|
722
|
-
Results: mjBizAppsCommonOrganizationType_[];
|
|
723
|
-
UserViewRunID?: string;
|
|
724
|
-
RowCount: number;
|
|
725
|
-
TotalRowCount: number;
|
|
726
|
-
ExecutionTime: number;
|
|
727
|
-
ErrorMessage?: string;
|
|
728
|
-
Success: boolean;
|
|
729
|
-
}
|
|
730
|
-
export declare class mjBizAppsCommonOrganizationTypeResolver extends ResolverBase {
|
|
731
|
-
RunmjBizAppsCommonOrganizationTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
732
|
-
RunmjBizAppsCommonOrganizationTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
733
|
-
RunmjBizAppsCommonOrganizationTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
734
|
-
mjBizAppsCommonOrganizationType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonOrganizationType_ | null>;
|
|
735
|
-
mjBizAppsCommonOrganizations_OrganizationTypeIDArray(mjbizappscommonorganizationtype_: mjBizAppsCommonOrganizationType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
736
|
-
CreatemjBizAppsCommonOrganizationType(input: CreatemjBizAppsCommonOrganizationTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
737
|
-
UpdatemjBizAppsCommonOrganizationType(input: UpdatemjBizAppsCommonOrganizationTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
738
|
-
DeletemjBizAppsCommonOrganizationType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
739
|
-
}
|
|
740
|
-
export declare class mjBizAppsCommonOrganization_ {
|
|
741
|
-
ID: string;
|
|
742
|
-
Name: string;
|
|
743
|
-
LegalName?: string;
|
|
744
|
-
OrganizationTypeID?: string;
|
|
745
|
-
ParentID?: string;
|
|
746
|
-
Website?: string;
|
|
747
|
-
LogoURL?: string;
|
|
748
|
-
Description?: string;
|
|
749
|
-
Email?: string;
|
|
750
|
-
Phone?: string;
|
|
751
|
-
FoundedDate?: Date;
|
|
752
|
-
TaxID?: string;
|
|
753
|
-
Status: string;
|
|
754
|
-
_mj__CreatedAt: Date;
|
|
755
|
-
_mj__UpdatedAt: Date;
|
|
756
|
-
OrganizationType?: string;
|
|
757
|
-
Parent?: string;
|
|
758
|
-
_mj__Latitude?: number;
|
|
759
|
-
_mj__Longitude?: number;
|
|
760
|
-
RootParentID?: string;
|
|
761
|
-
ParentIDDepth?: number;
|
|
762
|
-
ParentIDPath?: string;
|
|
763
|
-
ParentIDIsLeaf?: boolean;
|
|
764
|
-
ParentIDChildCount?: number;
|
|
765
|
-
PrimaryAddressLine1?: string;
|
|
766
|
-
PrimaryAddressLine2?: string;
|
|
767
|
-
PrimaryAddressCity?: string;
|
|
768
|
-
PrimaryAddressState?: string;
|
|
769
|
-
PrimaryAddressPostalCode?: string;
|
|
770
|
-
PrimaryAddressCountry?: string;
|
|
771
|
-
PrimaryAddressType?: string;
|
|
772
|
-
PrimaryEmail?: string;
|
|
773
|
-
PrimaryPhone?: string;
|
|
774
|
-
ActivePersonCount?: number;
|
|
775
|
-
ChildOrgCount?: number;
|
|
776
|
-
mjBizAppsCommonOrganizations_ParentIDArray: mjBizAppsCommonOrganization_[];
|
|
777
|
-
mjBizAppsCommonRelationships_ToOrganizationIDArray: mjBizAppsCommonRelationship_[];
|
|
778
|
-
mjBizAppsCommonContactMethods_OrganizationIDArray: mjBizAppsCommonContactMethod_[];
|
|
779
|
-
mjBizAppsCommonRelationships_FromOrganizationIDArray: mjBizAppsCommonRelationship_[];
|
|
780
|
-
}
|
|
781
|
-
export declare class CreatemjBizAppsCommonOrganizationInput {
|
|
782
|
-
ID?: string;
|
|
783
|
-
Name?: string;
|
|
784
|
-
LegalName: string | null;
|
|
785
|
-
OrganizationTypeID: string | null;
|
|
786
|
-
ParentID: string | null;
|
|
787
|
-
Website: string | null;
|
|
788
|
-
LogoURL: string | null;
|
|
789
|
-
Description: string | null;
|
|
790
|
-
Email: string | null;
|
|
791
|
-
Phone: string | null;
|
|
792
|
-
FoundedDate: Date | null;
|
|
793
|
-
TaxID: string | null;
|
|
794
|
-
Status?: string;
|
|
795
|
-
RestoreContext___?: RestoreContextInput;
|
|
796
|
-
}
|
|
797
|
-
export declare class UpdatemjBizAppsCommonOrganizationInput {
|
|
798
|
-
ID: string;
|
|
799
|
-
Name?: string;
|
|
800
|
-
LegalName?: string | null;
|
|
801
|
-
OrganizationTypeID?: string | null;
|
|
802
|
-
ParentID?: string | null;
|
|
803
|
-
Website?: string | null;
|
|
804
|
-
LogoURL?: string | null;
|
|
805
|
-
Description?: string | null;
|
|
806
|
-
Email?: string | null;
|
|
807
|
-
Phone?: string | null;
|
|
808
|
-
FoundedDate?: Date | null;
|
|
809
|
-
TaxID?: string | null;
|
|
810
|
-
Status?: string;
|
|
811
|
-
OldValues___?: KeyValuePairInput[];
|
|
812
|
-
RestoreContext___?: RestoreContextInput;
|
|
813
|
-
}
|
|
814
|
-
export declare class RunmjBizAppsCommonOrganizationViewResult {
|
|
815
|
-
Results: mjBizAppsCommonOrganization_[];
|
|
816
|
-
UserViewRunID?: string;
|
|
817
|
-
RowCount: number;
|
|
818
|
-
TotalRowCount: number;
|
|
819
|
-
ExecutionTime: number;
|
|
820
|
-
ErrorMessage?: string;
|
|
821
|
-
Success: boolean;
|
|
822
|
-
}
|
|
823
|
-
export declare class mjBizAppsCommonOrganizationResolver extends ResolverBase {
|
|
824
|
-
RunmjBizAppsCommonOrganizationViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
825
|
-
RunmjBizAppsCommonOrganizationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
826
|
-
RunmjBizAppsCommonOrganizationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
827
|
-
mjBizAppsCommonOrganization(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonOrganization_ | null>;
|
|
828
|
-
mjBizAppsCommonOrganizations_ParentIDArray(mjbizappscommonorganization_: mjBizAppsCommonOrganization_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
829
|
-
mjBizAppsCommonRelationships_ToOrganizationIDArray(mjbizappscommonorganization_: mjBizAppsCommonOrganization_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
830
|
-
mjBizAppsCommonContactMethods_OrganizationIDArray(mjbizappscommonorganization_: mjBizAppsCommonOrganization_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
831
|
-
mjBizAppsCommonRelationships_FromOrganizationIDArray(mjbizappscommonorganization_: mjBizAppsCommonOrganization_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
832
|
-
CreatemjBizAppsCommonOrganization(input: CreatemjBizAppsCommonOrganizationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
833
|
-
UpdatemjBizAppsCommonOrganization(input: UpdatemjBizAppsCommonOrganizationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
834
|
-
DeletemjBizAppsCommonOrganization(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
835
|
-
}
|
|
836
|
-
export declare class mjBizAppsCommonPerson_ {
|
|
837
|
-
ID: string;
|
|
838
|
-
FirstName: string;
|
|
839
|
-
LastName: string;
|
|
840
|
-
MiddleName?: string;
|
|
841
|
-
Prefix?: string;
|
|
842
|
-
Suffix?: string;
|
|
843
|
-
PreferredName?: string;
|
|
844
|
-
Title?: string;
|
|
845
|
-
Email?: string;
|
|
846
|
-
Phone?: string;
|
|
847
|
-
DateOfBirth?: Date;
|
|
848
|
-
Gender?: string;
|
|
849
|
-
PhotoURL?: string;
|
|
850
|
-
Bio?: string;
|
|
851
|
-
LinkedUserID?: string;
|
|
852
|
-
Status: string;
|
|
853
|
-
_mj__CreatedAt: Date;
|
|
854
|
-
_mj__UpdatedAt: Date;
|
|
855
|
-
DisplayName: string;
|
|
856
|
-
LinkedUser?: string;
|
|
857
|
-
_mj__Latitude?: number;
|
|
858
|
-
_mj__Longitude?: number;
|
|
859
|
-
PrimaryAddressLine1?: string;
|
|
860
|
-
PrimaryAddressLine2?: string;
|
|
861
|
-
PrimaryAddressCity?: string;
|
|
862
|
-
PrimaryAddressState?: string;
|
|
863
|
-
PrimaryAddressPostalCode?: string;
|
|
864
|
-
PrimaryAddressCountry?: string;
|
|
865
|
-
PrimaryAddressLatitude?: number;
|
|
866
|
-
PrimaryAddressLongitude?: number;
|
|
867
|
-
PrimaryAddressType?: string;
|
|
868
|
-
PrimaryEmail?: string;
|
|
869
|
-
PrimaryPhone?: string;
|
|
870
|
-
CurrentOrganizationID?: string;
|
|
871
|
-
CurrentOrganizationName?: string;
|
|
872
|
-
CurrentJobTitle?: string;
|
|
873
|
-
mjBizAppsCommonContactMethods_PersonIDArray: mjBizAppsCommonContactMethod_[];
|
|
874
|
-
mjBizAppsCommonRelationships_ToPersonIDArray: mjBizAppsCommonRelationship_[];
|
|
875
|
-
mjBizAppsCommonRelationships_FromPersonIDArray: mjBizAppsCommonRelationship_[];
|
|
876
|
-
}
|
|
877
|
-
export declare class CreatemjBizAppsCommonPersonInput {
|
|
878
|
-
ID?: string;
|
|
879
|
-
FirstName?: string;
|
|
880
|
-
LastName?: string;
|
|
881
|
-
MiddleName: string | null;
|
|
882
|
-
Prefix: string | null;
|
|
883
|
-
Suffix: string | null;
|
|
884
|
-
PreferredName: string | null;
|
|
885
|
-
Title: string | null;
|
|
886
|
-
Email: string | null;
|
|
887
|
-
Phone: string | null;
|
|
888
|
-
DateOfBirth: Date | null;
|
|
889
|
-
Gender: string | null;
|
|
890
|
-
PhotoURL: string | null;
|
|
891
|
-
Bio: string | null;
|
|
892
|
-
LinkedUserID: string | null;
|
|
893
|
-
Status?: string;
|
|
894
|
-
RestoreContext___?: RestoreContextInput;
|
|
895
|
-
}
|
|
896
|
-
export declare class UpdatemjBizAppsCommonPersonInput {
|
|
897
|
-
ID: string;
|
|
898
|
-
FirstName?: string;
|
|
899
|
-
LastName?: string;
|
|
900
|
-
MiddleName?: string | null;
|
|
901
|
-
Prefix?: string | null;
|
|
902
|
-
Suffix?: string | null;
|
|
903
|
-
PreferredName?: string | null;
|
|
904
|
-
Title?: string | null;
|
|
905
|
-
Email?: string | null;
|
|
906
|
-
Phone?: string | null;
|
|
907
|
-
DateOfBirth?: Date | null;
|
|
908
|
-
Gender?: string | null;
|
|
909
|
-
PhotoURL?: string | null;
|
|
910
|
-
Bio?: string | null;
|
|
911
|
-
LinkedUserID?: string | null;
|
|
912
|
-
Status?: string;
|
|
913
|
-
OldValues___?: KeyValuePairInput[];
|
|
914
|
-
RestoreContext___?: RestoreContextInput;
|
|
915
|
-
}
|
|
916
|
-
export declare class RunmjBizAppsCommonPersonViewResult {
|
|
917
|
-
Results: mjBizAppsCommonPerson_[];
|
|
918
|
-
UserViewRunID?: string;
|
|
919
|
-
RowCount: number;
|
|
920
|
-
TotalRowCount: number;
|
|
921
|
-
ExecutionTime: number;
|
|
922
|
-
ErrorMessage?: string;
|
|
923
|
-
Success: boolean;
|
|
924
|
-
}
|
|
925
|
-
export declare class mjBizAppsCommonPersonResolver extends ResolverBase {
|
|
926
|
-
RunmjBizAppsCommonPersonViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
927
|
-
RunmjBizAppsCommonPersonViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
928
|
-
RunmjBizAppsCommonPersonDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
929
|
-
mjBizAppsCommonPerson(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonPerson_ | null>;
|
|
930
|
-
mjBizAppsCommonContactMethods_PersonIDArray(mjbizappscommonperson_: mjBizAppsCommonPerson_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
931
|
-
mjBizAppsCommonRelationships_ToPersonIDArray(mjbizappscommonperson_: mjBizAppsCommonPerson_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
932
|
-
mjBizAppsCommonRelationships_FromPersonIDArray(mjbizappscommonperson_: mjBizAppsCommonPerson_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
933
|
-
CreatemjBizAppsCommonPerson(input: CreatemjBizAppsCommonPersonInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
934
|
-
UpdatemjBizAppsCommonPerson(input: UpdatemjBizAppsCommonPersonInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
935
|
-
DeletemjBizAppsCommonPerson(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
936
|
-
}
|
|
937
|
-
export declare class mjBizAppsCommonRelationshipType_ {
|
|
938
|
-
ID: string;
|
|
939
|
-
Name: string;
|
|
940
|
-
Description?: string;
|
|
941
|
-
Category: string;
|
|
942
|
-
IsDirectional: boolean;
|
|
943
|
-
ForwardLabel?: string;
|
|
944
|
-
ReverseLabel?: string;
|
|
945
|
-
IsActive: boolean;
|
|
946
|
-
_mj__CreatedAt: Date;
|
|
947
|
-
_mj__UpdatedAt: Date;
|
|
948
|
-
mjBizAppsCommonRelationships_RelationshipTypeIDArray: mjBizAppsCommonRelationship_[];
|
|
949
|
-
}
|
|
950
|
-
export declare class CreatemjBizAppsCommonRelationshipTypeInput {
|
|
951
|
-
ID?: string;
|
|
952
|
-
Name?: string;
|
|
953
|
-
Description: string | null;
|
|
954
|
-
Category?: string;
|
|
955
|
-
IsDirectional?: boolean;
|
|
956
|
-
ForwardLabel: string | null;
|
|
957
|
-
ReverseLabel: string | null;
|
|
958
|
-
IsActive?: boolean;
|
|
959
|
-
RestoreContext___?: RestoreContextInput;
|
|
960
|
-
}
|
|
961
|
-
export declare class UpdatemjBizAppsCommonRelationshipTypeInput {
|
|
962
|
-
ID: string;
|
|
963
|
-
Name?: string;
|
|
964
|
-
Description?: string | null;
|
|
965
|
-
Category?: string;
|
|
966
|
-
IsDirectional?: boolean;
|
|
967
|
-
ForwardLabel?: string | null;
|
|
968
|
-
ReverseLabel?: string | null;
|
|
969
|
-
IsActive?: boolean;
|
|
970
|
-
OldValues___?: KeyValuePairInput[];
|
|
971
|
-
RestoreContext___?: RestoreContextInput;
|
|
972
|
-
}
|
|
973
|
-
export declare class RunmjBizAppsCommonRelationshipTypeViewResult {
|
|
974
|
-
Results: mjBizAppsCommonRelationshipType_[];
|
|
975
|
-
UserViewRunID?: string;
|
|
976
|
-
RowCount: number;
|
|
977
|
-
TotalRowCount: number;
|
|
978
|
-
ExecutionTime: number;
|
|
979
|
-
ErrorMessage?: string;
|
|
980
|
-
Success: boolean;
|
|
981
|
-
}
|
|
982
|
-
export declare class mjBizAppsCommonRelationshipTypeResolver extends ResolverBase {
|
|
983
|
-
RunmjBizAppsCommonRelationshipTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
984
|
-
RunmjBizAppsCommonRelationshipTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
985
|
-
RunmjBizAppsCommonRelationshipTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
986
|
-
mjBizAppsCommonRelationshipType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonRelationshipType_ | null>;
|
|
987
|
-
mjBizAppsCommonRelationships_RelationshipTypeIDArray(mjbizappscommonrelationshiptype_: mjBizAppsCommonRelationshipType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
988
|
-
CreatemjBizAppsCommonRelationshipType(input: CreatemjBizAppsCommonRelationshipTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
989
|
-
UpdatemjBizAppsCommonRelationshipType(input: UpdatemjBizAppsCommonRelationshipTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
990
|
-
DeletemjBizAppsCommonRelationshipType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
991
|
-
}
|
|
992
|
-
export declare class mjBizAppsCommonRelationship_ {
|
|
993
|
-
ID: string;
|
|
994
|
-
RelationshipTypeID: string;
|
|
995
|
-
FromPersonID?: string;
|
|
996
|
-
FromOrganizationID?: string;
|
|
997
|
-
ToPersonID?: string;
|
|
998
|
-
ToOrganizationID?: string;
|
|
999
|
-
Title?: string;
|
|
1000
|
-
StartDate?: Date;
|
|
1001
|
-
EndDate?: Date;
|
|
1002
|
-
Status: string;
|
|
1003
|
-
Notes?: string;
|
|
1004
|
-
_mj__CreatedAt: Date;
|
|
1005
|
-
_mj__UpdatedAt: Date;
|
|
1006
|
-
RelationshipType: string;
|
|
1007
|
-
FromPerson?: string;
|
|
1008
|
-
FromOrganization?: string;
|
|
1009
|
-
ToPerson?: string;
|
|
1010
|
-
ToOrganization?: string;
|
|
1011
|
-
}
|
|
1012
|
-
export declare class CreatemjBizAppsCommonRelationshipInput {
|
|
1013
|
-
ID?: string;
|
|
1014
|
-
RelationshipTypeID?: string;
|
|
1015
|
-
FromPersonID: string | null;
|
|
1016
|
-
FromOrganizationID: string | null;
|
|
1017
|
-
ToPersonID: string | null;
|
|
1018
|
-
ToOrganizationID: string | null;
|
|
1019
|
-
Title: string | null;
|
|
1020
|
-
StartDate: Date | null;
|
|
1021
|
-
EndDate: Date | null;
|
|
1022
|
-
Status?: string;
|
|
1023
|
-
Notes: string | null;
|
|
1024
|
-
RestoreContext___?: RestoreContextInput;
|
|
1025
|
-
}
|
|
1026
|
-
export declare class UpdatemjBizAppsCommonRelationshipInput {
|
|
1027
|
-
ID: string;
|
|
1028
|
-
RelationshipTypeID?: string;
|
|
1029
|
-
FromPersonID?: string | null;
|
|
1030
|
-
FromOrganizationID?: string | null;
|
|
1031
|
-
ToPersonID?: string | null;
|
|
1032
|
-
ToOrganizationID?: string | null;
|
|
1033
|
-
Title?: string | null;
|
|
1034
|
-
StartDate?: Date | null;
|
|
1035
|
-
EndDate?: Date | null;
|
|
1036
|
-
Status?: string;
|
|
1037
|
-
Notes?: string | null;
|
|
1038
|
-
OldValues___?: KeyValuePairInput[];
|
|
1039
|
-
RestoreContext___?: RestoreContextInput;
|
|
1040
|
-
}
|
|
1041
|
-
export declare class RunmjBizAppsCommonRelationshipViewResult {
|
|
1042
|
-
Results: mjBizAppsCommonRelationship_[];
|
|
1043
|
-
UserViewRunID?: string;
|
|
1044
|
-
RowCount: number;
|
|
1045
|
-
TotalRowCount: number;
|
|
1046
|
-
ExecutionTime: number;
|
|
1047
|
-
ErrorMessage?: string;
|
|
1048
|
-
Success: boolean;
|
|
1049
|
-
}
|
|
1050
|
-
export declare class mjBizAppsCommonRelationshipResolver extends ResolverBase {
|
|
1051
|
-
RunmjBizAppsCommonRelationshipViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1052
|
-
RunmjBizAppsCommonRelationshipViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1053
|
-
RunmjBizAppsCommonRelationshipDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1054
|
-
mjBizAppsCommonRelationship(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonRelationship_ | null>;
|
|
1055
|
-
CreatemjBizAppsCommonRelationship(input: CreatemjBizAppsCommonRelationshipInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1056
|
-
UpdatemjBizAppsCommonRelationship(input: UpdatemjBizAppsCommonRelationshipInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1057
|
-
DeletemjBizAppsCommonRelationship(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1058
|
-
}
|
|
6
|
+
export * from './graphql-schemas/__mj_BizAppsCommon.js';
|
|
1059
7
|
//# sourceMappingURL=generated.d.ts.map
|