@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
|
@@ -0,0 +1,1510 @@
|
|
|
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 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
|
+
}
|
|
47
|
+
export declare class CreatemjBizAppsCommonActivityInput {
|
|
48
|
+
ID?: string;
|
|
49
|
+
ActivityTypeID?: string;
|
|
50
|
+
StartedAt?: Date;
|
|
51
|
+
EndedAt: Date | null;
|
|
52
|
+
Title?: string;
|
|
53
|
+
Description: string | null;
|
|
54
|
+
Direction?: string;
|
|
55
|
+
Status?: string;
|
|
56
|
+
Outcome: string | null;
|
|
57
|
+
Visibility?: string;
|
|
58
|
+
Source?: string;
|
|
59
|
+
SourceSystem: string | null;
|
|
60
|
+
ExternalID: string | null;
|
|
61
|
+
ExternalThreadID: string | null;
|
|
62
|
+
ParentActivityID: string | null;
|
|
63
|
+
LoggedByUserID?: string;
|
|
64
|
+
Location: string | null;
|
|
65
|
+
AddressID: string | null;
|
|
66
|
+
ActivitySyncConnectionID: string | null;
|
|
67
|
+
Details: string | null;
|
|
68
|
+
RestoreContext___?: RestoreContextInput;
|
|
69
|
+
}
|
|
70
|
+
export declare class UpdatemjBizAppsCommonActivityInput {
|
|
71
|
+
ID: string;
|
|
72
|
+
ActivityTypeID?: string;
|
|
73
|
+
StartedAt?: Date;
|
|
74
|
+
EndedAt?: Date | null;
|
|
75
|
+
Title?: string;
|
|
76
|
+
Description?: string | null;
|
|
77
|
+
Direction?: string;
|
|
78
|
+
Status?: string;
|
|
79
|
+
Outcome?: string | null;
|
|
80
|
+
Visibility?: string;
|
|
81
|
+
Source?: string;
|
|
82
|
+
SourceSystem?: string | null;
|
|
83
|
+
ExternalID?: string | null;
|
|
84
|
+
ExternalThreadID?: string | null;
|
|
85
|
+
ParentActivityID?: string | null;
|
|
86
|
+
LoggedByUserID?: string;
|
|
87
|
+
Location?: string | null;
|
|
88
|
+
AddressID?: string | null;
|
|
89
|
+
ActivitySyncConnectionID?: string | null;
|
|
90
|
+
Details?: string | null;
|
|
91
|
+
OldValues___?: KeyValuePairInput[];
|
|
92
|
+
RestoreContext___?: RestoreContextInput;
|
|
93
|
+
}
|
|
94
|
+
export declare class RunmjBizAppsCommonActivityViewResult {
|
|
95
|
+
Results: mjBizAppsCommonActivity_[];
|
|
96
|
+
UserViewRunID?: string;
|
|
97
|
+
RowCount: number;
|
|
98
|
+
TotalRowCount: number;
|
|
99
|
+
ExecutionTime: number;
|
|
100
|
+
ErrorMessage?: string;
|
|
101
|
+
Success: boolean;
|
|
102
|
+
}
|
|
103
|
+
export declare class mjBizAppsCommonActivityResolver extends ResolverBase {
|
|
104
|
+
RunmjBizAppsCommonActivityViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
105
|
+
RunmjBizAppsCommonActivityViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
106
|
+
RunmjBizAppsCommonActivityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
107
|
+
mjBizAppsCommonActivity(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivity_ | null>;
|
|
108
|
+
CreatemjBizAppsCommonActivity(input: CreatemjBizAppsCommonActivityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
109
|
+
UpdatemjBizAppsCommonActivity(input: UpdatemjBizAppsCommonActivityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
110
|
+
DeletemjBizAppsCommonActivity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
111
|
+
}
|
|
112
|
+
export declare class mjBizAppsCommonActivityFile_ {
|
|
113
|
+
ID: string;
|
|
114
|
+
ActivityID: string;
|
|
115
|
+
FileID: string;
|
|
116
|
+
Kind: string;
|
|
117
|
+
Sequence: number;
|
|
118
|
+
_mj__CreatedAt: Date;
|
|
119
|
+
_mj__UpdatedAt: Date;
|
|
120
|
+
Activity: string;
|
|
121
|
+
File: string;
|
|
122
|
+
}
|
|
123
|
+
export declare class CreatemjBizAppsCommonActivityFileInput {
|
|
124
|
+
ID?: string;
|
|
125
|
+
ActivityID?: string;
|
|
126
|
+
FileID?: string;
|
|
127
|
+
Kind?: string;
|
|
128
|
+
Sequence?: number;
|
|
129
|
+
RestoreContext___?: RestoreContextInput;
|
|
130
|
+
}
|
|
131
|
+
export declare class UpdatemjBizAppsCommonActivityFileInput {
|
|
132
|
+
ID: string;
|
|
133
|
+
ActivityID?: string;
|
|
134
|
+
FileID?: string;
|
|
135
|
+
Kind?: string;
|
|
136
|
+
Sequence?: number;
|
|
137
|
+
OldValues___?: KeyValuePairInput[];
|
|
138
|
+
RestoreContext___?: RestoreContextInput;
|
|
139
|
+
}
|
|
140
|
+
export declare class RunmjBizAppsCommonActivityFileViewResult {
|
|
141
|
+
Results: mjBizAppsCommonActivityFile_[];
|
|
142
|
+
UserViewRunID?: string;
|
|
143
|
+
RowCount: number;
|
|
144
|
+
TotalRowCount: number;
|
|
145
|
+
ExecutionTime: number;
|
|
146
|
+
ErrorMessage?: string;
|
|
147
|
+
Success: boolean;
|
|
148
|
+
}
|
|
149
|
+
export declare class mjBizAppsCommonActivityFileResolver extends ResolverBase {
|
|
150
|
+
RunmjBizAppsCommonActivityFileViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
151
|
+
RunmjBizAppsCommonActivityFileViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
152
|
+
RunmjBizAppsCommonActivityFileDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
153
|
+
mjBizAppsCommonActivityFile(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivityFile_ | null>;
|
|
154
|
+
CreatemjBizAppsCommonActivityFile(input: CreatemjBizAppsCommonActivityFileInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
155
|
+
UpdatemjBizAppsCommonActivityFile(input: UpdatemjBizAppsCommonActivityFileInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
156
|
+
DeletemjBizAppsCommonActivityFile(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
157
|
+
}
|
|
158
|
+
export declare class mjBizAppsCommonActivityLink_ {
|
|
159
|
+
ID: string;
|
|
160
|
+
ActivityID: string;
|
|
161
|
+
Role: string;
|
|
162
|
+
EntityID?: string;
|
|
163
|
+
RecordID?: string;
|
|
164
|
+
IdentityKind?: string;
|
|
165
|
+
IdentityValue?: string;
|
|
166
|
+
Sequence: number;
|
|
167
|
+
_mj__CreatedAt: Date;
|
|
168
|
+
_mj__UpdatedAt: Date;
|
|
169
|
+
Activity: string;
|
|
170
|
+
Entity?: string;
|
|
171
|
+
}
|
|
172
|
+
export declare class CreatemjBizAppsCommonActivityLinkInput {
|
|
173
|
+
ID?: string;
|
|
174
|
+
ActivityID?: string;
|
|
175
|
+
Role?: string;
|
|
176
|
+
EntityID: string | null;
|
|
177
|
+
RecordID: string | null;
|
|
178
|
+
IdentityKind: string | null;
|
|
179
|
+
IdentityValue: string | null;
|
|
180
|
+
Sequence?: number;
|
|
181
|
+
RestoreContext___?: RestoreContextInput;
|
|
182
|
+
}
|
|
183
|
+
export declare class UpdatemjBizAppsCommonActivityLinkInput {
|
|
184
|
+
ID: string;
|
|
185
|
+
ActivityID?: string;
|
|
186
|
+
Role?: string;
|
|
187
|
+
EntityID?: string | null;
|
|
188
|
+
RecordID?: string | null;
|
|
189
|
+
IdentityKind?: string | null;
|
|
190
|
+
IdentityValue?: string | null;
|
|
191
|
+
Sequence?: number;
|
|
192
|
+
OldValues___?: KeyValuePairInput[];
|
|
193
|
+
RestoreContext___?: RestoreContextInput;
|
|
194
|
+
}
|
|
195
|
+
export declare class RunmjBizAppsCommonActivityLinkViewResult {
|
|
196
|
+
Results: mjBizAppsCommonActivityLink_[];
|
|
197
|
+
UserViewRunID?: string;
|
|
198
|
+
RowCount: number;
|
|
199
|
+
TotalRowCount: number;
|
|
200
|
+
ExecutionTime: number;
|
|
201
|
+
ErrorMessage?: string;
|
|
202
|
+
Success: boolean;
|
|
203
|
+
}
|
|
204
|
+
export declare class mjBizAppsCommonActivityLinkResolver extends ResolverBase {
|
|
205
|
+
RunmjBizAppsCommonActivityLinkViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
206
|
+
RunmjBizAppsCommonActivityLinkViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
207
|
+
RunmjBizAppsCommonActivityLinkDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
208
|
+
mjBizAppsCommonActivityLink(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivityLink_ | null>;
|
|
209
|
+
CreatemjBizAppsCommonActivityLink(input: CreatemjBizAppsCommonActivityLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
210
|
+
UpdatemjBizAppsCommonActivityLink(input: UpdatemjBizAppsCommonActivityLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
211
|
+
DeletemjBizAppsCommonActivityLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
212
|
+
}
|
|
213
|
+
export declare class mjBizAppsCommonActivitySyncConnectionRuleSet_ {
|
|
214
|
+
ID: string;
|
|
215
|
+
ActivitySyncConnectionID: string;
|
|
216
|
+
ActivitySyncRuleSetID: string;
|
|
217
|
+
Sequence: number;
|
|
218
|
+
IsEnabled: boolean;
|
|
219
|
+
_mj__CreatedAt: Date;
|
|
220
|
+
_mj__UpdatedAt: Date;
|
|
221
|
+
ActivitySyncConnection: string;
|
|
222
|
+
ActivitySyncRuleSet: string;
|
|
223
|
+
}
|
|
224
|
+
export declare class CreatemjBizAppsCommonActivitySyncConnectionRuleSetInput {
|
|
225
|
+
ID?: string;
|
|
226
|
+
ActivitySyncConnectionID?: string;
|
|
227
|
+
ActivitySyncRuleSetID?: string;
|
|
228
|
+
Sequence?: number;
|
|
229
|
+
IsEnabled?: boolean;
|
|
230
|
+
RestoreContext___?: RestoreContextInput;
|
|
231
|
+
}
|
|
232
|
+
export declare class UpdatemjBizAppsCommonActivitySyncConnectionRuleSetInput {
|
|
233
|
+
ID: string;
|
|
234
|
+
ActivitySyncConnectionID?: string;
|
|
235
|
+
ActivitySyncRuleSetID?: string;
|
|
236
|
+
Sequence?: number;
|
|
237
|
+
IsEnabled?: boolean;
|
|
238
|
+
OldValues___?: KeyValuePairInput[];
|
|
239
|
+
RestoreContext___?: RestoreContextInput;
|
|
240
|
+
}
|
|
241
|
+
export declare class RunmjBizAppsCommonActivitySyncConnectionRuleSetViewResult {
|
|
242
|
+
Results: mjBizAppsCommonActivitySyncConnectionRuleSet_[];
|
|
243
|
+
UserViewRunID?: string;
|
|
244
|
+
RowCount: number;
|
|
245
|
+
TotalRowCount: number;
|
|
246
|
+
ExecutionTime: number;
|
|
247
|
+
ErrorMessage?: string;
|
|
248
|
+
Success: boolean;
|
|
249
|
+
}
|
|
250
|
+
export declare class mjBizAppsCommonActivitySyncConnectionRuleSetResolver extends ResolverBase {
|
|
251
|
+
RunmjBizAppsCommonActivitySyncConnectionRuleSetViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
252
|
+
RunmjBizAppsCommonActivitySyncConnectionRuleSetViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
253
|
+
RunmjBizAppsCommonActivitySyncConnectionRuleSetDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
254
|
+
mjBizAppsCommonActivitySyncConnectionRuleSet(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivitySyncConnectionRuleSet_ | null>;
|
|
255
|
+
CreatemjBizAppsCommonActivitySyncConnectionRuleSet(input: CreatemjBizAppsCommonActivitySyncConnectionRuleSetInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
256
|
+
UpdatemjBizAppsCommonActivitySyncConnectionRuleSet(input: UpdatemjBizAppsCommonActivitySyncConnectionRuleSetInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
257
|
+
DeletemjBizAppsCommonActivitySyncConnectionRuleSet(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
258
|
+
}
|
|
259
|
+
export declare class mjBizAppsCommonActivitySyncConnection_ {
|
|
260
|
+
ID: string;
|
|
261
|
+
Name: string;
|
|
262
|
+
Provider?: string;
|
|
263
|
+
Status: string;
|
|
264
|
+
Direction: string;
|
|
265
|
+
OwnerUserID: string;
|
|
266
|
+
CredentialsRef?: string;
|
|
267
|
+
Mailbox?: string;
|
|
268
|
+
LastSyncAt?: Date;
|
|
269
|
+
LastError?: string;
|
|
270
|
+
Settings?: string;
|
|
271
|
+
_mj__CreatedAt: Date;
|
|
272
|
+
_mj__UpdatedAt: Date;
|
|
273
|
+
ActivitySyncProviderTypeID?: string;
|
|
274
|
+
StartAt?: Date;
|
|
275
|
+
EndAt?: Date;
|
|
276
|
+
SkippedContentPolicy?: string;
|
|
277
|
+
EncryptionKeyID?: string;
|
|
278
|
+
StorageProviderID?: string;
|
|
279
|
+
MaxAttachmentBytes?: number;
|
|
280
|
+
OwnerUser: string;
|
|
281
|
+
ActivitySyncProviderType?: string;
|
|
282
|
+
EncryptionKey?: string;
|
|
283
|
+
StorageProvider?: string;
|
|
284
|
+
}
|
|
285
|
+
export declare class CreatemjBizAppsCommonActivitySyncConnectionInput {
|
|
286
|
+
ID?: string;
|
|
287
|
+
Name?: string;
|
|
288
|
+
Provider: string | null;
|
|
289
|
+
Status?: string;
|
|
290
|
+
Direction?: string;
|
|
291
|
+
OwnerUserID?: string;
|
|
292
|
+
CredentialsRef: string | null;
|
|
293
|
+
Mailbox: string | null;
|
|
294
|
+
LastSyncAt: Date | null;
|
|
295
|
+
LastError: string | null;
|
|
296
|
+
Settings: string | null;
|
|
297
|
+
ActivitySyncProviderTypeID: string | null;
|
|
298
|
+
StartAt: Date | null;
|
|
299
|
+
EndAt: Date | null;
|
|
300
|
+
SkippedContentPolicy: string | null;
|
|
301
|
+
EncryptionKeyID: string | null;
|
|
302
|
+
StorageProviderID: string | null;
|
|
303
|
+
MaxAttachmentBytes: number | null;
|
|
304
|
+
RestoreContext___?: RestoreContextInput;
|
|
305
|
+
}
|
|
306
|
+
export declare class UpdatemjBizAppsCommonActivitySyncConnectionInput {
|
|
307
|
+
ID: string;
|
|
308
|
+
Name?: string;
|
|
309
|
+
Provider?: string | null;
|
|
310
|
+
Status?: string;
|
|
311
|
+
Direction?: string;
|
|
312
|
+
OwnerUserID?: string;
|
|
313
|
+
CredentialsRef?: string | null;
|
|
314
|
+
Mailbox?: string | null;
|
|
315
|
+
LastSyncAt?: Date | null;
|
|
316
|
+
LastError?: string | null;
|
|
317
|
+
Settings?: string | null;
|
|
318
|
+
ActivitySyncProviderTypeID?: string | null;
|
|
319
|
+
StartAt?: Date | null;
|
|
320
|
+
EndAt?: Date | null;
|
|
321
|
+
SkippedContentPolicy?: string | null;
|
|
322
|
+
EncryptionKeyID?: string | null;
|
|
323
|
+
StorageProviderID?: string | null;
|
|
324
|
+
MaxAttachmentBytes?: number | null;
|
|
325
|
+
OldValues___?: KeyValuePairInput[];
|
|
326
|
+
RestoreContext___?: RestoreContextInput;
|
|
327
|
+
}
|
|
328
|
+
export declare class RunmjBizAppsCommonActivitySyncConnectionViewResult {
|
|
329
|
+
Results: mjBizAppsCommonActivitySyncConnection_[];
|
|
330
|
+
UserViewRunID?: string;
|
|
331
|
+
RowCount: number;
|
|
332
|
+
TotalRowCount: number;
|
|
333
|
+
ExecutionTime: number;
|
|
334
|
+
ErrorMessage?: string;
|
|
335
|
+
Success: boolean;
|
|
336
|
+
}
|
|
337
|
+
export declare class mjBizAppsCommonActivitySyncConnectionResolver extends ResolverBase {
|
|
338
|
+
RunmjBizAppsCommonActivitySyncConnectionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
339
|
+
RunmjBizAppsCommonActivitySyncConnectionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
340
|
+
RunmjBizAppsCommonActivitySyncConnectionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
341
|
+
mjBizAppsCommonActivitySyncConnection(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivitySyncConnection_ | null>;
|
|
342
|
+
CreatemjBizAppsCommonActivitySyncConnection(input: CreatemjBizAppsCommonActivitySyncConnectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
343
|
+
UpdatemjBizAppsCommonActivitySyncConnection(input: UpdatemjBizAppsCommonActivitySyncConnectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
344
|
+
DeletemjBizAppsCommonActivitySyncConnection(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
345
|
+
}
|
|
346
|
+
export declare class mjBizAppsCommonActivitySyncExclusion_ {
|
|
347
|
+
ID: string;
|
|
348
|
+
ActivitySyncRuleSetID?: string;
|
|
349
|
+
IdentityKind: string;
|
|
350
|
+
IdentityValue: string;
|
|
351
|
+
PersonID?: string;
|
|
352
|
+
Reason?: string;
|
|
353
|
+
EffectiveFrom?: Date;
|
|
354
|
+
EffectiveTo?: Date;
|
|
355
|
+
IsEnabled: boolean;
|
|
356
|
+
_mj__CreatedAt: Date;
|
|
357
|
+
_mj__UpdatedAt: Date;
|
|
358
|
+
ActivitySyncRuleSet?: string;
|
|
359
|
+
Person?: string;
|
|
360
|
+
}
|
|
361
|
+
export declare class CreatemjBizAppsCommonActivitySyncExclusionInput {
|
|
362
|
+
ID?: string;
|
|
363
|
+
ActivitySyncRuleSetID: string | null;
|
|
364
|
+
IdentityKind?: string;
|
|
365
|
+
IdentityValue?: string;
|
|
366
|
+
PersonID: string | null;
|
|
367
|
+
Reason: string | null;
|
|
368
|
+
EffectiveFrom: Date | null;
|
|
369
|
+
EffectiveTo: Date | null;
|
|
370
|
+
IsEnabled?: boolean;
|
|
371
|
+
RestoreContext___?: RestoreContextInput;
|
|
372
|
+
}
|
|
373
|
+
export declare class UpdatemjBizAppsCommonActivitySyncExclusionInput {
|
|
374
|
+
ID: string;
|
|
375
|
+
ActivitySyncRuleSetID?: string | null;
|
|
376
|
+
IdentityKind?: string;
|
|
377
|
+
IdentityValue?: string;
|
|
378
|
+
PersonID?: string | null;
|
|
379
|
+
Reason?: string | null;
|
|
380
|
+
EffectiveFrom?: Date | null;
|
|
381
|
+
EffectiveTo?: Date | null;
|
|
382
|
+
IsEnabled?: boolean;
|
|
383
|
+
OldValues___?: KeyValuePairInput[];
|
|
384
|
+
RestoreContext___?: RestoreContextInput;
|
|
385
|
+
}
|
|
386
|
+
export declare class RunmjBizAppsCommonActivitySyncExclusionViewResult {
|
|
387
|
+
Results: mjBizAppsCommonActivitySyncExclusion_[];
|
|
388
|
+
UserViewRunID?: string;
|
|
389
|
+
RowCount: number;
|
|
390
|
+
TotalRowCount: number;
|
|
391
|
+
ExecutionTime: number;
|
|
392
|
+
ErrorMessage?: string;
|
|
393
|
+
Success: boolean;
|
|
394
|
+
}
|
|
395
|
+
export declare class mjBizAppsCommonActivitySyncExclusionResolver extends ResolverBase {
|
|
396
|
+
RunmjBizAppsCommonActivitySyncExclusionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
397
|
+
RunmjBizAppsCommonActivitySyncExclusionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
398
|
+
RunmjBizAppsCommonActivitySyncExclusionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
399
|
+
mjBizAppsCommonActivitySyncExclusion(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivitySyncExclusion_ | null>;
|
|
400
|
+
CreatemjBizAppsCommonActivitySyncExclusion(input: CreatemjBizAppsCommonActivitySyncExclusionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
401
|
+
UpdatemjBizAppsCommonActivitySyncExclusion(input: UpdatemjBizAppsCommonActivitySyncExclusionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
402
|
+
DeletemjBizAppsCommonActivitySyncExclusion(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
403
|
+
}
|
|
404
|
+
export declare class mjBizAppsCommonActivitySyncExtension_ {
|
|
405
|
+
ID: string;
|
|
406
|
+
Name: string;
|
|
407
|
+
Description?: string;
|
|
408
|
+
DriverClass: string;
|
|
409
|
+
ActivitySyncConnectionID?: string;
|
|
410
|
+
ActivitySyncProviderTypeID?: string;
|
|
411
|
+
Sequence: number;
|
|
412
|
+
FailurePolicy: string;
|
|
413
|
+
TimeoutMS: number;
|
|
414
|
+
IsEnabled: boolean;
|
|
415
|
+
LastRunAt?: Date;
|
|
416
|
+
LastError?: string;
|
|
417
|
+
_mj__CreatedAt: Date;
|
|
418
|
+
_mj__UpdatedAt: Date;
|
|
419
|
+
ActivitySyncConnection?: string;
|
|
420
|
+
ActivitySyncProviderType?: string;
|
|
421
|
+
}
|
|
422
|
+
export declare class CreatemjBizAppsCommonActivitySyncExtensionInput {
|
|
423
|
+
ID?: string;
|
|
424
|
+
Name?: string;
|
|
425
|
+
Description: string | null;
|
|
426
|
+
DriverClass?: string;
|
|
427
|
+
ActivitySyncConnectionID: string | null;
|
|
428
|
+
ActivitySyncProviderTypeID: string | null;
|
|
429
|
+
Sequence?: number;
|
|
430
|
+
FailurePolicy?: string;
|
|
431
|
+
TimeoutMS?: number;
|
|
432
|
+
IsEnabled?: boolean;
|
|
433
|
+
LastRunAt: Date | null;
|
|
434
|
+
LastError: string | null;
|
|
435
|
+
RestoreContext___?: RestoreContextInput;
|
|
436
|
+
}
|
|
437
|
+
export declare class UpdatemjBizAppsCommonActivitySyncExtensionInput {
|
|
438
|
+
ID: string;
|
|
439
|
+
Name?: string;
|
|
440
|
+
Description?: string | null;
|
|
441
|
+
DriverClass?: string;
|
|
442
|
+
ActivitySyncConnectionID?: string | null;
|
|
443
|
+
ActivitySyncProviderTypeID?: string | null;
|
|
444
|
+
Sequence?: number;
|
|
445
|
+
FailurePolicy?: string;
|
|
446
|
+
TimeoutMS?: number;
|
|
447
|
+
IsEnabled?: boolean;
|
|
448
|
+
LastRunAt?: Date | null;
|
|
449
|
+
LastError?: string | null;
|
|
450
|
+
OldValues___?: KeyValuePairInput[];
|
|
451
|
+
RestoreContext___?: RestoreContextInput;
|
|
452
|
+
}
|
|
453
|
+
export declare class RunmjBizAppsCommonActivitySyncExtensionViewResult {
|
|
454
|
+
Results: mjBizAppsCommonActivitySyncExtension_[];
|
|
455
|
+
UserViewRunID?: string;
|
|
456
|
+
RowCount: number;
|
|
457
|
+
TotalRowCount: number;
|
|
458
|
+
ExecutionTime: number;
|
|
459
|
+
ErrorMessage?: string;
|
|
460
|
+
Success: boolean;
|
|
461
|
+
}
|
|
462
|
+
export declare class mjBizAppsCommonActivitySyncExtensionResolver extends ResolverBase {
|
|
463
|
+
RunmjBizAppsCommonActivitySyncExtensionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
464
|
+
RunmjBizAppsCommonActivitySyncExtensionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
465
|
+
RunmjBizAppsCommonActivitySyncExtensionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
466
|
+
mjBizAppsCommonActivitySyncExtension(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivitySyncExtension_ | null>;
|
|
467
|
+
CreatemjBizAppsCommonActivitySyncExtension(input: CreatemjBizAppsCommonActivitySyncExtensionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
468
|
+
UpdatemjBizAppsCommonActivitySyncExtension(input: UpdatemjBizAppsCommonActivitySyncExtensionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
469
|
+
DeletemjBizAppsCommonActivitySyncExtension(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
470
|
+
}
|
|
471
|
+
export declare class mjBizAppsCommonActivitySyncProviderType_ {
|
|
472
|
+
ID: string;
|
|
473
|
+
Code: string;
|
|
474
|
+
Name: string;
|
|
475
|
+
Description?: string;
|
|
476
|
+
DriverClass?: string;
|
|
477
|
+
IconClass?: string;
|
|
478
|
+
SupportedKinds?: string;
|
|
479
|
+
DefaultQualificationPolicy: string;
|
|
480
|
+
DefaultSkippedContentPolicy: string;
|
|
481
|
+
DefaultEncryptionKeyID?: string;
|
|
482
|
+
DefaultStorageProviderID?: string;
|
|
483
|
+
DefaultMaxAttachmentBytes?: number;
|
|
484
|
+
Sequence: number;
|
|
485
|
+
IsSystem: boolean;
|
|
486
|
+
IsActive: boolean;
|
|
487
|
+
_mj__CreatedAt: Date;
|
|
488
|
+
_mj__UpdatedAt: Date;
|
|
489
|
+
CalendarDriverClass?: string;
|
|
490
|
+
DefaultEncryptionKey?: string;
|
|
491
|
+
DefaultStorageProvider?: string;
|
|
492
|
+
}
|
|
493
|
+
export declare class CreatemjBizAppsCommonActivitySyncProviderTypeInput {
|
|
494
|
+
ID?: string;
|
|
495
|
+
Code?: string;
|
|
496
|
+
Name?: string;
|
|
497
|
+
Description: string | null;
|
|
498
|
+
DriverClass: string | null;
|
|
499
|
+
IconClass: string | null;
|
|
500
|
+
SupportedKinds: string | null;
|
|
501
|
+
DefaultQualificationPolicy?: string;
|
|
502
|
+
DefaultSkippedContentPolicy?: string;
|
|
503
|
+
DefaultEncryptionKeyID: string | null;
|
|
504
|
+
DefaultStorageProviderID: string | null;
|
|
505
|
+
DefaultMaxAttachmentBytes: number | null;
|
|
506
|
+
Sequence?: number;
|
|
507
|
+
IsSystem?: boolean;
|
|
508
|
+
IsActive?: boolean;
|
|
509
|
+
CalendarDriverClass: string | null;
|
|
510
|
+
RestoreContext___?: RestoreContextInput;
|
|
511
|
+
}
|
|
512
|
+
export declare class UpdatemjBizAppsCommonActivitySyncProviderTypeInput {
|
|
513
|
+
ID: string;
|
|
514
|
+
Code?: string;
|
|
515
|
+
Name?: string;
|
|
516
|
+
Description?: string | null;
|
|
517
|
+
DriverClass?: string | null;
|
|
518
|
+
IconClass?: string | null;
|
|
519
|
+
SupportedKinds?: string | null;
|
|
520
|
+
DefaultQualificationPolicy?: string;
|
|
521
|
+
DefaultSkippedContentPolicy?: string;
|
|
522
|
+
DefaultEncryptionKeyID?: string | null;
|
|
523
|
+
DefaultStorageProviderID?: string | null;
|
|
524
|
+
DefaultMaxAttachmentBytes?: number | null;
|
|
525
|
+
Sequence?: number;
|
|
526
|
+
IsSystem?: boolean;
|
|
527
|
+
IsActive?: boolean;
|
|
528
|
+
CalendarDriverClass?: string | null;
|
|
529
|
+
OldValues___?: KeyValuePairInput[];
|
|
530
|
+
RestoreContext___?: RestoreContextInput;
|
|
531
|
+
}
|
|
532
|
+
export declare class RunmjBizAppsCommonActivitySyncProviderTypeViewResult {
|
|
533
|
+
Results: mjBizAppsCommonActivitySyncProviderType_[];
|
|
534
|
+
UserViewRunID?: string;
|
|
535
|
+
RowCount: number;
|
|
536
|
+
TotalRowCount: number;
|
|
537
|
+
ExecutionTime: number;
|
|
538
|
+
ErrorMessage?: string;
|
|
539
|
+
Success: boolean;
|
|
540
|
+
}
|
|
541
|
+
export declare class mjBizAppsCommonActivitySyncProviderTypeResolver extends ResolverBase {
|
|
542
|
+
RunmjBizAppsCommonActivitySyncProviderTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
543
|
+
RunmjBizAppsCommonActivitySyncProviderTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
544
|
+
RunmjBizAppsCommonActivitySyncProviderTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
545
|
+
mjBizAppsCommonActivitySyncProviderType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivitySyncProviderType_ | null>;
|
|
546
|
+
CreatemjBizAppsCommonActivitySyncProviderType(input: CreatemjBizAppsCommonActivitySyncProviderTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
547
|
+
UpdatemjBizAppsCommonActivitySyncProviderType(input: UpdatemjBizAppsCommonActivitySyncProviderTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
548
|
+
DeletemjBizAppsCommonActivitySyncProviderType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
549
|
+
}
|
|
550
|
+
export declare class mjBizAppsCommonActivitySyncRuleSet_ {
|
|
551
|
+
ID: string;
|
|
552
|
+
Name: string;
|
|
553
|
+
Description?: string;
|
|
554
|
+
ActivitySyncProviderTypeID?: string;
|
|
555
|
+
InternalDomains?: string;
|
|
556
|
+
Sequence: number;
|
|
557
|
+
IsEnabled: boolean;
|
|
558
|
+
IsSystem: boolean;
|
|
559
|
+
_mj__CreatedAt: Date;
|
|
560
|
+
_mj__UpdatedAt: Date;
|
|
561
|
+
ActivitySyncProviderType?: string;
|
|
562
|
+
}
|
|
563
|
+
export declare class CreatemjBizAppsCommonActivitySyncRuleSetInput {
|
|
564
|
+
ID?: string;
|
|
565
|
+
Name?: string;
|
|
566
|
+
Description: string | null;
|
|
567
|
+
ActivitySyncProviderTypeID: string | null;
|
|
568
|
+
InternalDomains: string | null;
|
|
569
|
+
Sequence?: number;
|
|
570
|
+
IsEnabled?: boolean;
|
|
571
|
+
IsSystem?: boolean;
|
|
572
|
+
RestoreContext___?: RestoreContextInput;
|
|
573
|
+
}
|
|
574
|
+
export declare class UpdatemjBizAppsCommonActivitySyncRuleSetInput {
|
|
575
|
+
ID: string;
|
|
576
|
+
Name?: string;
|
|
577
|
+
Description?: string | null;
|
|
578
|
+
ActivitySyncProviderTypeID?: string | null;
|
|
579
|
+
InternalDomains?: string | null;
|
|
580
|
+
Sequence?: number;
|
|
581
|
+
IsEnabled?: boolean;
|
|
582
|
+
IsSystem?: boolean;
|
|
583
|
+
OldValues___?: KeyValuePairInput[];
|
|
584
|
+
RestoreContext___?: RestoreContextInput;
|
|
585
|
+
}
|
|
586
|
+
export declare class RunmjBizAppsCommonActivitySyncRuleSetViewResult {
|
|
587
|
+
Results: mjBizAppsCommonActivitySyncRuleSet_[];
|
|
588
|
+
UserViewRunID?: string;
|
|
589
|
+
RowCount: number;
|
|
590
|
+
TotalRowCount: number;
|
|
591
|
+
ExecutionTime: number;
|
|
592
|
+
ErrorMessage?: string;
|
|
593
|
+
Success: boolean;
|
|
594
|
+
}
|
|
595
|
+
export declare class mjBizAppsCommonActivitySyncRuleSetResolver extends ResolverBase {
|
|
596
|
+
RunmjBizAppsCommonActivitySyncRuleSetViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
597
|
+
RunmjBizAppsCommonActivitySyncRuleSetViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
598
|
+
RunmjBizAppsCommonActivitySyncRuleSetDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
599
|
+
mjBizAppsCommonActivitySyncRuleSet(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivitySyncRuleSet_ | null>;
|
|
600
|
+
CreatemjBizAppsCommonActivitySyncRuleSet(input: CreatemjBizAppsCommonActivitySyncRuleSetInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
601
|
+
UpdatemjBizAppsCommonActivitySyncRuleSet(input: UpdatemjBizAppsCommonActivitySyncRuleSetInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
602
|
+
DeletemjBizAppsCommonActivitySyncRuleSet(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
603
|
+
}
|
|
604
|
+
export declare class mjBizAppsCommonActivitySyncRule_ {
|
|
605
|
+
ID: string;
|
|
606
|
+
ActivitySyncConnectionID?: string;
|
|
607
|
+
Name: string;
|
|
608
|
+
IsEnabled: boolean;
|
|
609
|
+
Sequence: number;
|
|
610
|
+
Action: string;
|
|
611
|
+
ActivityTypeID?: string;
|
|
612
|
+
Direction?: string;
|
|
613
|
+
DateFrom?: Date;
|
|
614
|
+
DateTo?: Date;
|
|
615
|
+
IncludeAttachments: boolean;
|
|
616
|
+
Filter?: string;
|
|
617
|
+
_mj__CreatedAt: Date;
|
|
618
|
+
_mj__UpdatedAt: Date;
|
|
619
|
+
ActivitySyncRuleSetID?: string;
|
|
620
|
+
ParticipantScope?: string;
|
|
621
|
+
MaxAttachmentBytes?: number;
|
|
622
|
+
ActivitySyncConnection?: string;
|
|
623
|
+
ActivityType?: string;
|
|
624
|
+
ActivitySyncRuleSet?: string;
|
|
625
|
+
}
|
|
626
|
+
export declare class CreatemjBizAppsCommonActivitySyncRuleInput {
|
|
627
|
+
ID?: string;
|
|
628
|
+
ActivitySyncConnectionID: string | null;
|
|
629
|
+
Name?: string;
|
|
630
|
+
IsEnabled?: boolean;
|
|
631
|
+
Sequence?: number;
|
|
632
|
+
Action?: string;
|
|
633
|
+
ActivityTypeID: string | null;
|
|
634
|
+
Direction: string | null;
|
|
635
|
+
DateFrom: Date | null;
|
|
636
|
+
DateTo: Date | null;
|
|
637
|
+
IncludeAttachments?: boolean;
|
|
638
|
+
Filter: string | null;
|
|
639
|
+
ActivitySyncRuleSetID: string | null;
|
|
640
|
+
ParticipantScope: string | null;
|
|
641
|
+
MaxAttachmentBytes: number | null;
|
|
642
|
+
RestoreContext___?: RestoreContextInput;
|
|
643
|
+
}
|
|
644
|
+
export declare class UpdatemjBizAppsCommonActivitySyncRuleInput {
|
|
645
|
+
ID: string;
|
|
646
|
+
ActivitySyncConnectionID?: string | null;
|
|
647
|
+
Name?: string;
|
|
648
|
+
IsEnabled?: boolean;
|
|
649
|
+
Sequence?: number;
|
|
650
|
+
Action?: string;
|
|
651
|
+
ActivityTypeID?: string | null;
|
|
652
|
+
Direction?: string | null;
|
|
653
|
+
DateFrom?: Date | null;
|
|
654
|
+
DateTo?: Date | null;
|
|
655
|
+
IncludeAttachments?: boolean;
|
|
656
|
+
Filter?: string | null;
|
|
657
|
+
ActivitySyncRuleSetID?: string | null;
|
|
658
|
+
ParticipantScope?: string | null;
|
|
659
|
+
MaxAttachmentBytes?: number | null;
|
|
660
|
+
OldValues___?: KeyValuePairInput[];
|
|
661
|
+
RestoreContext___?: RestoreContextInput;
|
|
662
|
+
}
|
|
663
|
+
export declare class RunmjBizAppsCommonActivitySyncRuleViewResult {
|
|
664
|
+
Results: mjBizAppsCommonActivitySyncRule_[];
|
|
665
|
+
UserViewRunID?: string;
|
|
666
|
+
RowCount: number;
|
|
667
|
+
TotalRowCount: number;
|
|
668
|
+
ExecutionTime: number;
|
|
669
|
+
ErrorMessage?: string;
|
|
670
|
+
Success: boolean;
|
|
671
|
+
}
|
|
672
|
+
export declare class mjBizAppsCommonActivitySyncRuleResolver extends ResolverBase {
|
|
673
|
+
RunmjBizAppsCommonActivitySyncRuleViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
674
|
+
RunmjBizAppsCommonActivitySyncRuleViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
675
|
+
RunmjBizAppsCommonActivitySyncRuleDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
676
|
+
mjBizAppsCommonActivitySyncRule(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivitySyncRule_ | null>;
|
|
677
|
+
CreatemjBizAppsCommonActivitySyncRule(input: CreatemjBizAppsCommonActivitySyncRuleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
678
|
+
UpdatemjBizAppsCommonActivitySyncRule(input: UpdatemjBizAppsCommonActivitySyncRuleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
679
|
+
DeletemjBizAppsCommonActivitySyncRule(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
680
|
+
}
|
|
681
|
+
export declare class mjBizAppsCommonActivitySyncRunDetail_ {
|
|
682
|
+
ID: string;
|
|
683
|
+
ActivitySyncRunID: string;
|
|
684
|
+
ExternalID: string;
|
|
685
|
+
ExternalThreadID?: string;
|
|
686
|
+
OccurredAt?: Date;
|
|
687
|
+
Decision: string;
|
|
688
|
+
DecidedByStage?: string;
|
|
689
|
+
ActivitySyncRuleID?: string;
|
|
690
|
+
ActivitySyncExclusionID?: string;
|
|
691
|
+
Reason?: string;
|
|
692
|
+
Confidence?: number;
|
|
693
|
+
AIPromptRunID?: string;
|
|
694
|
+
ActivityID?: string;
|
|
695
|
+
CapturedContent?: string;
|
|
696
|
+
EncryptionKeyID?: string;
|
|
697
|
+
_mj__CreatedAt: Date;
|
|
698
|
+
_mj__UpdatedAt: Date;
|
|
699
|
+
ActivitySyncRule?: string;
|
|
700
|
+
Activity?: string;
|
|
701
|
+
EncryptionKey?: string;
|
|
702
|
+
}
|
|
703
|
+
export declare class CreatemjBizAppsCommonActivitySyncRunDetailInput {
|
|
704
|
+
ID?: string;
|
|
705
|
+
ActivitySyncRunID?: string;
|
|
706
|
+
ExternalID?: string;
|
|
707
|
+
ExternalThreadID: string | null;
|
|
708
|
+
OccurredAt: Date | null;
|
|
709
|
+
Decision?: string;
|
|
710
|
+
DecidedByStage: string | null;
|
|
711
|
+
ActivitySyncRuleID: string | null;
|
|
712
|
+
ActivitySyncExclusionID: string | null;
|
|
713
|
+
Reason: string | null;
|
|
714
|
+
Confidence: number | null;
|
|
715
|
+
AIPromptRunID: string | null;
|
|
716
|
+
ActivityID: string | null;
|
|
717
|
+
CapturedContent: string | null;
|
|
718
|
+
EncryptionKeyID: string | null;
|
|
719
|
+
RestoreContext___?: RestoreContextInput;
|
|
720
|
+
}
|
|
721
|
+
export declare class UpdatemjBizAppsCommonActivitySyncRunDetailInput {
|
|
722
|
+
ID: string;
|
|
723
|
+
ActivitySyncRunID?: string;
|
|
724
|
+
ExternalID?: string;
|
|
725
|
+
ExternalThreadID?: string | null;
|
|
726
|
+
OccurredAt?: Date | null;
|
|
727
|
+
Decision?: string;
|
|
728
|
+
DecidedByStage?: string | null;
|
|
729
|
+
ActivitySyncRuleID?: string | null;
|
|
730
|
+
ActivitySyncExclusionID?: string | null;
|
|
731
|
+
Reason?: string | null;
|
|
732
|
+
Confidence?: number | null;
|
|
733
|
+
AIPromptRunID?: string | null;
|
|
734
|
+
ActivityID?: string | null;
|
|
735
|
+
CapturedContent?: string | null;
|
|
736
|
+
EncryptionKeyID?: string | null;
|
|
737
|
+
OldValues___?: KeyValuePairInput[];
|
|
738
|
+
RestoreContext___?: RestoreContextInput;
|
|
739
|
+
}
|
|
740
|
+
export declare class RunmjBizAppsCommonActivitySyncRunDetailViewResult {
|
|
741
|
+
Results: mjBizAppsCommonActivitySyncRunDetail_[];
|
|
742
|
+
UserViewRunID?: string;
|
|
743
|
+
RowCount: number;
|
|
744
|
+
TotalRowCount: number;
|
|
745
|
+
ExecutionTime: number;
|
|
746
|
+
ErrorMessage?: string;
|
|
747
|
+
Success: boolean;
|
|
748
|
+
}
|
|
749
|
+
export declare class mjBizAppsCommonActivitySyncRunDetailResolver extends ResolverBase {
|
|
750
|
+
RunmjBizAppsCommonActivitySyncRunDetailViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
751
|
+
RunmjBizAppsCommonActivitySyncRunDetailViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
752
|
+
RunmjBizAppsCommonActivitySyncRunDetailDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
753
|
+
mjBizAppsCommonActivitySyncRunDetail(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivitySyncRunDetail_ | null>;
|
|
754
|
+
CreatemjBizAppsCommonActivitySyncRunDetail(input: CreatemjBizAppsCommonActivitySyncRunDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
755
|
+
UpdatemjBizAppsCommonActivitySyncRunDetail(input: UpdatemjBizAppsCommonActivitySyncRunDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
756
|
+
DeletemjBizAppsCommonActivitySyncRunDetail(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
757
|
+
}
|
|
758
|
+
export declare class mjBizAppsCommonActivitySyncRun_ {
|
|
759
|
+
ID: string;
|
|
760
|
+
ActivitySyncConnectionID: string;
|
|
761
|
+
StartedAt: Date;
|
|
762
|
+
EndedAt?: Date;
|
|
763
|
+
Status: string;
|
|
764
|
+
TriggerType: string;
|
|
765
|
+
IsDryRun: boolean;
|
|
766
|
+
Fetched: number;
|
|
767
|
+
Included: number;
|
|
768
|
+
Excluded: number;
|
|
769
|
+
Duplicates: number;
|
|
770
|
+
Failed: number;
|
|
771
|
+
ExtensionErrors: number;
|
|
772
|
+
WatermarkBefore?: Date;
|
|
773
|
+
WatermarkAfter?: Date;
|
|
774
|
+
ErrorMessage?: string;
|
|
775
|
+
_mj__CreatedAt: Date;
|
|
776
|
+
_mj__UpdatedAt: Date;
|
|
777
|
+
ActivitySyncConnection: string;
|
|
778
|
+
}
|
|
779
|
+
export declare class CreatemjBizAppsCommonActivitySyncRunInput {
|
|
780
|
+
ID?: string;
|
|
781
|
+
ActivitySyncConnectionID?: string;
|
|
782
|
+
StartedAt?: Date;
|
|
783
|
+
EndedAt: Date | null;
|
|
784
|
+
Status?: string;
|
|
785
|
+
TriggerType?: string;
|
|
786
|
+
IsDryRun?: boolean;
|
|
787
|
+
Fetched?: number;
|
|
788
|
+
Included?: number;
|
|
789
|
+
Excluded?: number;
|
|
790
|
+
Duplicates?: number;
|
|
791
|
+
Failed?: number;
|
|
792
|
+
ExtensionErrors?: number;
|
|
793
|
+
WatermarkBefore: Date | null;
|
|
794
|
+
WatermarkAfter: Date | null;
|
|
795
|
+
ErrorMessage: string | null;
|
|
796
|
+
RestoreContext___?: RestoreContextInput;
|
|
797
|
+
}
|
|
798
|
+
export declare class UpdatemjBizAppsCommonActivitySyncRunInput {
|
|
799
|
+
ID: string;
|
|
800
|
+
ActivitySyncConnectionID?: string;
|
|
801
|
+
StartedAt?: Date;
|
|
802
|
+
EndedAt?: Date | null;
|
|
803
|
+
Status?: string;
|
|
804
|
+
TriggerType?: string;
|
|
805
|
+
IsDryRun?: boolean;
|
|
806
|
+
Fetched?: number;
|
|
807
|
+
Included?: number;
|
|
808
|
+
Excluded?: number;
|
|
809
|
+
Duplicates?: number;
|
|
810
|
+
Failed?: number;
|
|
811
|
+
ExtensionErrors?: number;
|
|
812
|
+
WatermarkBefore?: Date | null;
|
|
813
|
+
WatermarkAfter?: Date | null;
|
|
814
|
+
ErrorMessage?: string | null;
|
|
815
|
+
OldValues___?: KeyValuePairInput[];
|
|
816
|
+
RestoreContext___?: RestoreContextInput;
|
|
817
|
+
}
|
|
818
|
+
export declare class RunmjBizAppsCommonActivitySyncRunViewResult {
|
|
819
|
+
Results: mjBizAppsCommonActivitySyncRun_[];
|
|
820
|
+
UserViewRunID?: string;
|
|
821
|
+
RowCount: number;
|
|
822
|
+
TotalRowCount: number;
|
|
823
|
+
ExecutionTime: number;
|
|
824
|
+
ErrorMessage?: string;
|
|
825
|
+
Success: boolean;
|
|
826
|
+
}
|
|
827
|
+
export declare class mjBizAppsCommonActivitySyncRunResolver extends ResolverBase {
|
|
828
|
+
RunmjBizAppsCommonActivitySyncRunViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
829
|
+
RunmjBizAppsCommonActivitySyncRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
830
|
+
RunmjBizAppsCommonActivitySyncRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
831
|
+
mjBizAppsCommonActivitySyncRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivitySyncRun_ | null>;
|
|
832
|
+
CreatemjBizAppsCommonActivitySyncRun(input: CreatemjBizAppsCommonActivitySyncRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
833
|
+
UpdatemjBizAppsCommonActivitySyncRun(input: UpdatemjBizAppsCommonActivitySyncRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
834
|
+
DeletemjBizAppsCommonActivitySyncRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
835
|
+
}
|
|
836
|
+
export declare class mjBizAppsCommonActivityType_ {
|
|
837
|
+
ID: string;
|
|
838
|
+
Code: string;
|
|
839
|
+
Name: string;
|
|
840
|
+
Description?: string;
|
|
841
|
+
ParentID?: string;
|
|
842
|
+
IconClass?: string;
|
|
843
|
+
Color?: string;
|
|
844
|
+
Sequence: number;
|
|
845
|
+
IsSystem: boolean;
|
|
846
|
+
IsActive: boolean;
|
|
847
|
+
_mj__CreatedAt: Date;
|
|
848
|
+
_mj__UpdatedAt: Date;
|
|
849
|
+
Parent?: string;
|
|
850
|
+
RootParentID?: string;
|
|
851
|
+
ParentIDDepth?: number;
|
|
852
|
+
ParentIDPath?: string;
|
|
853
|
+
ParentIDIsLeaf?: boolean;
|
|
854
|
+
ParentIDChildCount?: number;
|
|
855
|
+
}
|
|
856
|
+
export declare class CreatemjBizAppsCommonActivityTypeInput {
|
|
857
|
+
ID?: string;
|
|
858
|
+
Code?: string;
|
|
859
|
+
Name?: string;
|
|
860
|
+
Description: string | null;
|
|
861
|
+
ParentID: string | null;
|
|
862
|
+
IconClass: string | null;
|
|
863
|
+
Color: string | null;
|
|
864
|
+
Sequence?: number;
|
|
865
|
+
IsSystem?: boolean;
|
|
866
|
+
IsActive?: boolean;
|
|
867
|
+
RestoreContext___?: RestoreContextInput;
|
|
868
|
+
}
|
|
869
|
+
export declare class UpdatemjBizAppsCommonActivityTypeInput {
|
|
870
|
+
ID: string;
|
|
871
|
+
Code?: string;
|
|
872
|
+
Name?: string;
|
|
873
|
+
Description?: string | null;
|
|
874
|
+
ParentID?: string | null;
|
|
875
|
+
IconClass?: string | null;
|
|
876
|
+
Color?: string | null;
|
|
877
|
+
Sequence?: number;
|
|
878
|
+
IsSystem?: boolean;
|
|
879
|
+
IsActive?: boolean;
|
|
880
|
+
OldValues___?: KeyValuePairInput[];
|
|
881
|
+
RestoreContext___?: RestoreContextInput;
|
|
882
|
+
}
|
|
883
|
+
export declare class RunmjBizAppsCommonActivityTypeViewResult {
|
|
884
|
+
Results: mjBizAppsCommonActivityType_[];
|
|
885
|
+
UserViewRunID?: string;
|
|
886
|
+
RowCount: number;
|
|
887
|
+
TotalRowCount: number;
|
|
888
|
+
ExecutionTime: number;
|
|
889
|
+
ErrorMessage?: string;
|
|
890
|
+
Success: boolean;
|
|
891
|
+
}
|
|
892
|
+
export declare class mjBizAppsCommonActivityTypeResolver extends ResolverBase {
|
|
893
|
+
RunmjBizAppsCommonActivityTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
894
|
+
RunmjBizAppsCommonActivityTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
895
|
+
RunmjBizAppsCommonActivityTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
896
|
+
mjBizAppsCommonActivityType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonActivityType_ | null>;
|
|
897
|
+
CreatemjBizAppsCommonActivityType(input: CreatemjBizAppsCommonActivityTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
898
|
+
UpdatemjBizAppsCommonActivityType(input: UpdatemjBizAppsCommonActivityTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
899
|
+
DeletemjBizAppsCommonActivityType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
900
|
+
}
|
|
901
|
+
export declare class mjBizAppsCommonAddressLink_ {
|
|
902
|
+
ID: string;
|
|
903
|
+
AddressID: string;
|
|
904
|
+
EntityID: string;
|
|
905
|
+
RecordID: string;
|
|
906
|
+
AddressTypeID: string;
|
|
907
|
+
IsPrimary: boolean;
|
|
908
|
+
Rank?: number;
|
|
909
|
+
_mj__CreatedAt: Date;
|
|
910
|
+
_mj__UpdatedAt: Date;
|
|
911
|
+
Address: string;
|
|
912
|
+
Entity: string;
|
|
913
|
+
AddressType: string;
|
|
914
|
+
}
|
|
915
|
+
export declare class CreatemjBizAppsCommonAddressLinkInput {
|
|
916
|
+
ID?: string;
|
|
917
|
+
AddressID?: string;
|
|
918
|
+
EntityID?: string;
|
|
919
|
+
RecordID?: string;
|
|
920
|
+
AddressTypeID?: string;
|
|
921
|
+
IsPrimary?: boolean;
|
|
922
|
+
Rank: number | null;
|
|
923
|
+
RestoreContext___?: RestoreContextInput;
|
|
924
|
+
}
|
|
925
|
+
export declare class UpdatemjBizAppsCommonAddressLinkInput {
|
|
926
|
+
ID: string;
|
|
927
|
+
AddressID?: string;
|
|
928
|
+
EntityID?: string;
|
|
929
|
+
RecordID?: string;
|
|
930
|
+
AddressTypeID?: string;
|
|
931
|
+
IsPrimary?: boolean;
|
|
932
|
+
Rank?: number | null;
|
|
933
|
+
OldValues___?: KeyValuePairInput[];
|
|
934
|
+
RestoreContext___?: RestoreContextInput;
|
|
935
|
+
}
|
|
936
|
+
export declare class RunmjBizAppsCommonAddressLinkViewResult {
|
|
937
|
+
Results: mjBizAppsCommonAddressLink_[];
|
|
938
|
+
UserViewRunID?: string;
|
|
939
|
+
RowCount: number;
|
|
940
|
+
TotalRowCount: number;
|
|
941
|
+
ExecutionTime: number;
|
|
942
|
+
ErrorMessage?: string;
|
|
943
|
+
Success: boolean;
|
|
944
|
+
}
|
|
945
|
+
export declare class mjBizAppsCommonAddressLinkResolver extends ResolverBase {
|
|
946
|
+
RunmjBizAppsCommonAddressLinkViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
947
|
+
RunmjBizAppsCommonAddressLinkViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
948
|
+
RunmjBizAppsCommonAddressLinkDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
949
|
+
mjBizAppsCommonAddressLink(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonAddressLink_ | null>;
|
|
950
|
+
CreatemjBizAppsCommonAddressLink(input: CreatemjBizAppsCommonAddressLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
951
|
+
UpdatemjBizAppsCommonAddressLink(input: UpdatemjBizAppsCommonAddressLinkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
952
|
+
DeletemjBizAppsCommonAddressLink(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
953
|
+
}
|
|
954
|
+
export declare class mjBizAppsCommonAddressType_ {
|
|
955
|
+
ID: string;
|
|
956
|
+
Name: string;
|
|
957
|
+
Description?: string;
|
|
958
|
+
IconClass?: string;
|
|
959
|
+
DefaultRank: number;
|
|
960
|
+
IsActive: boolean;
|
|
961
|
+
_mj__CreatedAt: Date;
|
|
962
|
+
_mj__UpdatedAt: Date;
|
|
963
|
+
}
|
|
964
|
+
export declare class CreatemjBizAppsCommonAddressTypeInput {
|
|
965
|
+
ID?: string;
|
|
966
|
+
Name?: string;
|
|
967
|
+
Description: string | null;
|
|
968
|
+
IconClass: string | null;
|
|
969
|
+
DefaultRank?: number;
|
|
970
|
+
IsActive?: boolean;
|
|
971
|
+
RestoreContext___?: RestoreContextInput;
|
|
972
|
+
}
|
|
973
|
+
export declare class UpdatemjBizAppsCommonAddressTypeInput {
|
|
974
|
+
ID: string;
|
|
975
|
+
Name?: string;
|
|
976
|
+
Description?: string | null;
|
|
977
|
+
IconClass?: string | null;
|
|
978
|
+
DefaultRank?: number;
|
|
979
|
+
IsActive?: boolean;
|
|
980
|
+
OldValues___?: KeyValuePairInput[];
|
|
981
|
+
RestoreContext___?: RestoreContextInput;
|
|
982
|
+
}
|
|
983
|
+
export declare class RunmjBizAppsCommonAddressTypeViewResult {
|
|
984
|
+
Results: mjBizAppsCommonAddressType_[];
|
|
985
|
+
UserViewRunID?: string;
|
|
986
|
+
RowCount: number;
|
|
987
|
+
TotalRowCount: number;
|
|
988
|
+
ExecutionTime: number;
|
|
989
|
+
ErrorMessage?: string;
|
|
990
|
+
Success: boolean;
|
|
991
|
+
}
|
|
992
|
+
export declare class mjBizAppsCommonAddressTypeResolver extends ResolverBase {
|
|
993
|
+
RunmjBizAppsCommonAddressTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
994
|
+
RunmjBizAppsCommonAddressTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
995
|
+
RunmjBizAppsCommonAddressTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
996
|
+
mjBizAppsCommonAddressType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonAddressType_ | null>;
|
|
997
|
+
CreatemjBizAppsCommonAddressType(input: CreatemjBizAppsCommonAddressTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
998
|
+
UpdatemjBizAppsCommonAddressType(input: UpdatemjBizAppsCommonAddressTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
999
|
+
DeletemjBizAppsCommonAddressType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1000
|
+
}
|
|
1001
|
+
export declare class mjBizAppsCommonAddress_ {
|
|
1002
|
+
ID: string;
|
|
1003
|
+
Line1: string;
|
|
1004
|
+
Line2?: string;
|
|
1005
|
+
Line3?: string;
|
|
1006
|
+
City: string;
|
|
1007
|
+
StateProvince?: string;
|
|
1008
|
+
PostalCode?: string;
|
|
1009
|
+
Country: string;
|
|
1010
|
+
Latitude?: number;
|
|
1011
|
+
Longitude?: number;
|
|
1012
|
+
_mj__CreatedAt: Date;
|
|
1013
|
+
_mj__UpdatedAt: Date;
|
|
1014
|
+
}
|
|
1015
|
+
export declare class CreatemjBizAppsCommonAddressInput {
|
|
1016
|
+
ID?: string;
|
|
1017
|
+
Line1?: string;
|
|
1018
|
+
Line2: string | null;
|
|
1019
|
+
Line3: string | null;
|
|
1020
|
+
City?: string;
|
|
1021
|
+
StateProvince: string | null;
|
|
1022
|
+
PostalCode: string | null;
|
|
1023
|
+
Country?: string;
|
|
1024
|
+
Latitude: number | null;
|
|
1025
|
+
Longitude: number | null;
|
|
1026
|
+
RestoreContext___?: RestoreContextInput;
|
|
1027
|
+
}
|
|
1028
|
+
export declare class UpdatemjBizAppsCommonAddressInput {
|
|
1029
|
+
ID: string;
|
|
1030
|
+
Line1?: string;
|
|
1031
|
+
Line2?: string | null;
|
|
1032
|
+
Line3?: string | null;
|
|
1033
|
+
City?: string;
|
|
1034
|
+
StateProvince?: string | null;
|
|
1035
|
+
PostalCode?: string | null;
|
|
1036
|
+
Country?: string;
|
|
1037
|
+
Latitude?: number | null;
|
|
1038
|
+
Longitude?: number | null;
|
|
1039
|
+
OldValues___?: KeyValuePairInput[];
|
|
1040
|
+
RestoreContext___?: RestoreContextInput;
|
|
1041
|
+
}
|
|
1042
|
+
export declare class RunmjBizAppsCommonAddressViewResult {
|
|
1043
|
+
Results: mjBizAppsCommonAddress_[];
|
|
1044
|
+
UserViewRunID?: string;
|
|
1045
|
+
RowCount: number;
|
|
1046
|
+
TotalRowCount: number;
|
|
1047
|
+
ExecutionTime: number;
|
|
1048
|
+
ErrorMessage?: string;
|
|
1049
|
+
Success: boolean;
|
|
1050
|
+
}
|
|
1051
|
+
export declare class mjBizAppsCommonAddressResolver extends ResolverBase {
|
|
1052
|
+
RunmjBizAppsCommonAddressViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1053
|
+
RunmjBizAppsCommonAddressViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1054
|
+
RunmjBizAppsCommonAddressDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1055
|
+
mjBizAppsCommonAddress(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonAddress_ | null>;
|
|
1056
|
+
CreatemjBizAppsCommonAddress(input: CreatemjBizAppsCommonAddressInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1057
|
+
UpdatemjBizAppsCommonAddress(input: UpdatemjBizAppsCommonAddressInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1058
|
+
DeletemjBizAppsCommonAddress(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1059
|
+
}
|
|
1060
|
+
export declare class mjBizAppsCommonContactMethod_ {
|
|
1061
|
+
ID: string;
|
|
1062
|
+
PersonID?: string;
|
|
1063
|
+
OrganizationID?: string;
|
|
1064
|
+
ContactTypeID: string;
|
|
1065
|
+
Value: string;
|
|
1066
|
+
Label?: string;
|
|
1067
|
+
IsPrimary: boolean;
|
|
1068
|
+
_mj__CreatedAt: Date;
|
|
1069
|
+
_mj__UpdatedAt: Date;
|
|
1070
|
+
Person?: string;
|
|
1071
|
+
Organization?: string;
|
|
1072
|
+
ContactType: string;
|
|
1073
|
+
}
|
|
1074
|
+
export declare class CreatemjBizAppsCommonContactMethodInput {
|
|
1075
|
+
ID?: string;
|
|
1076
|
+
PersonID: string | null;
|
|
1077
|
+
OrganizationID: string | null;
|
|
1078
|
+
ContactTypeID?: string;
|
|
1079
|
+
Value?: string;
|
|
1080
|
+
Label: string | null;
|
|
1081
|
+
IsPrimary?: boolean;
|
|
1082
|
+
RestoreContext___?: RestoreContextInput;
|
|
1083
|
+
}
|
|
1084
|
+
export declare class UpdatemjBizAppsCommonContactMethodInput {
|
|
1085
|
+
ID: string;
|
|
1086
|
+
PersonID?: string | null;
|
|
1087
|
+
OrganizationID?: string | null;
|
|
1088
|
+
ContactTypeID?: string;
|
|
1089
|
+
Value?: string;
|
|
1090
|
+
Label?: string | null;
|
|
1091
|
+
IsPrimary?: boolean;
|
|
1092
|
+
OldValues___?: KeyValuePairInput[];
|
|
1093
|
+
RestoreContext___?: RestoreContextInput;
|
|
1094
|
+
}
|
|
1095
|
+
export declare class RunmjBizAppsCommonContactMethodViewResult {
|
|
1096
|
+
Results: mjBizAppsCommonContactMethod_[];
|
|
1097
|
+
UserViewRunID?: string;
|
|
1098
|
+
RowCount: number;
|
|
1099
|
+
TotalRowCount: number;
|
|
1100
|
+
ExecutionTime: number;
|
|
1101
|
+
ErrorMessage?: string;
|
|
1102
|
+
Success: boolean;
|
|
1103
|
+
}
|
|
1104
|
+
export declare class mjBizAppsCommonContactMethodResolver extends ResolverBase {
|
|
1105
|
+
RunmjBizAppsCommonContactMethodViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1106
|
+
RunmjBizAppsCommonContactMethodViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1107
|
+
RunmjBizAppsCommonContactMethodDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1108
|
+
mjBizAppsCommonContactMethod(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonContactMethod_ | null>;
|
|
1109
|
+
CreatemjBizAppsCommonContactMethod(input: CreatemjBizAppsCommonContactMethodInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1110
|
+
UpdatemjBizAppsCommonContactMethod(input: UpdatemjBizAppsCommonContactMethodInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1111
|
+
DeletemjBizAppsCommonContactMethod(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1112
|
+
}
|
|
1113
|
+
export declare class mjBizAppsCommonContactType_ {
|
|
1114
|
+
ID: string;
|
|
1115
|
+
Name: string;
|
|
1116
|
+
Description?: string;
|
|
1117
|
+
IconClass?: string;
|
|
1118
|
+
DisplayRank: number;
|
|
1119
|
+
IsActive: boolean;
|
|
1120
|
+
_mj__CreatedAt: Date;
|
|
1121
|
+
_mj__UpdatedAt: Date;
|
|
1122
|
+
}
|
|
1123
|
+
export declare class CreatemjBizAppsCommonContactTypeInput {
|
|
1124
|
+
ID?: string;
|
|
1125
|
+
Name?: string;
|
|
1126
|
+
Description: string | null;
|
|
1127
|
+
IconClass: string | null;
|
|
1128
|
+
DisplayRank?: number;
|
|
1129
|
+
IsActive?: boolean;
|
|
1130
|
+
RestoreContext___?: RestoreContextInput;
|
|
1131
|
+
}
|
|
1132
|
+
export declare class UpdatemjBizAppsCommonContactTypeInput {
|
|
1133
|
+
ID: string;
|
|
1134
|
+
Name?: string;
|
|
1135
|
+
Description?: string | null;
|
|
1136
|
+
IconClass?: string | null;
|
|
1137
|
+
DisplayRank?: number;
|
|
1138
|
+
IsActive?: boolean;
|
|
1139
|
+
OldValues___?: KeyValuePairInput[];
|
|
1140
|
+
RestoreContext___?: RestoreContextInput;
|
|
1141
|
+
}
|
|
1142
|
+
export declare class RunmjBizAppsCommonContactTypeViewResult {
|
|
1143
|
+
Results: mjBizAppsCommonContactType_[];
|
|
1144
|
+
UserViewRunID?: string;
|
|
1145
|
+
RowCount: number;
|
|
1146
|
+
TotalRowCount: number;
|
|
1147
|
+
ExecutionTime: number;
|
|
1148
|
+
ErrorMessage?: string;
|
|
1149
|
+
Success: boolean;
|
|
1150
|
+
}
|
|
1151
|
+
export declare class mjBizAppsCommonContactTypeResolver extends ResolverBase {
|
|
1152
|
+
RunmjBizAppsCommonContactTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1153
|
+
RunmjBizAppsCommonContactTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1154
|
+
RunmjBizAppsCommonContactTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1155
|
+
mjBizAppsCommonContactType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonContactType_ | null>;
|
|
1156
|
+
CreatemjBizAppsCommonContactType(input: CreatemjBizAppsCommonContactTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1157
|
+
UpdatemjBizAppsCommonContactType(input: UpdatemjBizAppsCommonContactTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1158
|
+
DeletemjBizAppsCommonContactType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1159
|
+
}
|
|
1160
|
+
export declare class mjBizAppsCommonOrganizationType_ {
|
|
1161
|
+
ID: string;
|
|
1162
|
+
Name: string;
|
|
1163
|
+
Description?: string;
|
|
1164
|
+
IconClass?: string;
|
|
1165
|
+
DisplayRank: number;
|
|
1166
|
+
IsActive: boolean;
|
|
1167
|
+
_mj__CreatedAt: Date;
|
|
1168
|
+
_mj__UpdatedAt: Date;
|
|
1169
|
+
}
|
|
1170
|
+
export declare class CreatemjBizAppsCommonOrganizationTypeInput {
|
|
1171
|
+
ID?: string;
|
|
1172
|
+
Name?: string;
|
|
1173
|
+
Description: string | null;
|
|
1174
|
+
IconClass: string | null;
|
|
1175
|
+
DisplayRank?: number;
|
|
1176
|
+
IsActive?: boolean;
|
|
1177
|
+
RestoreContext___?: RestoreContextInput;
|
|
1178
|
+
}
|
|
1179
|
+
export declare class UpdatemjBizAppsCommonOrganizationTypeInput {
|
|
1180
|
+
ID: string;
|
|
1181
|
+
Name?: string;
|
|
1182
|
+
Description?: string | null;
|
|
1183
|
+
IconClass?: string | null;
|
|
1184
|
+
DisplayRank?: number;
|
|
1185
|
+
IsActive?: boolean;
|
|
1186
|
+
OldValues___?: KeyValuePairInput[];
|
|
1187
|
+
RestoreContext___?: RestoreContextInput;
|
|
1188
|
+
}
|
|
1189
|
+
export declare class RunmjBizAppsCommonOrganizationTypeViewResult {
|
|
1190
|
+
Results: mjBizAppsCommonOrganizationType_[];
|
|
1191
|
+
UserViewRunID?: string;
|
|
1192
|
+
RowCount: number;
|
|
1193
|
+
TotalRowCount: number;
|
|
1194
|
+
ExecutionTime: number;
|
|
1195
|
+
ErrorMessage?: string;
|
|
1196
|
+
Success: boolean;
|
|
1197
|
+
}
|
|
1198
|
+
export declare class mjBizAppsCommonOrganizationTypeResolver extends ResolverBase {
|
|
1199
|
+
RunmjBizAppsCommonOrganizationTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1200
|
+
RunmjBizAppsCommonOrganizationTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1201
|
+
RunmjBizAppsCommonOrganizationTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1202
|
+
mjBizAppsCommonOrganizationType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonOrganizationType_ | null>;
|
|
1203
|
+
CreatemjBizAppsCommonOrganizationType(input: CreatemjBizAppsCommonOrganizationTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1204
|
+
UpdatemjBizAppsCommonOrganizationType(input: UpdatemjBizAppsCommonOrganizationTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1205
|
+
DeletemjBizAppsCommonOrganizationType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1206
|
+
}
|
|
1207
|
+
export declare class mjBizAppsCommonOrganization_ {
|
|
1208
|
+
ID: string;
|
|
1209
|
+
Name: string;
|
|
1210
|
+
LegalName?: string;
|
|
1211
|
+
OrganizationTypeID?: string;
|
|
1212
|
+
ParentID?: string;
|
|
1213
|
+
Website?: string;
|
|
1214
|
+
LogoURL?: string;
|
|
1215
|
+
Description?: string;
|
|
1216
|
+
Email?: string;
|
|
1217
|
+
Phone?: string;
|
|
1218
|
+
FoundedDate?: Date;
|
|
1219
|
+
TaxID?: string;
|
|
1220
|
+
Status: string;
|
|
1221
|
+
_mj__CreatedAt: Date;
|
|
1222
|
+
_mj__UpdatedAt: Date;
|
|
1223
|
+
OrganizationType?: string;
|
|
1224
|
+
Parent?: string;
|
|
1225
|
+
_mj__Latitude?: number;
|
|
1226
|
+
_mj__Longitude?: number;
|
|
1227
|
+
RootParentID?: string;
|
|
1228
|
+
ParentIDDepth?: number;
|
|
1229
|
+
ParentIDPath?: string;
|
|
1230
|
+
ParentIDIsLeaf?: boolean;
|
|
1231
|
+
ParentIDChildCount?: number;
|
|
1232
|
+
PrimaryAddressLine1?: string;
|
|
1233
|
+
PrimaryAddressLine2?: string;
|
|
1234
|
+
PrimaryAddressCity?: string;
|
|
1235
|
+
PrimaryAddressState?: string;
|
|
1236
|
+
PrimaryAddressPostalCode?: string;
|
|
1237
|
+
PrimaryAddressCountry?: string;
|
|
1238
|
+
PrimaryAddressType?: string;
|
|
1239
|
+
PrimaryEmail?: string;
|
|
1240
|
+
PrimaryPhone?: string;
|
|
1241
|
+
ActivePersonCount?: number;
|
|
1242
|
+
ChildOrgCount?: number;
|
|
1243
|
+
}
|
|
1244
|
+
export declare class CreatemjBizAppsCommonOrganizationInput {
|
|
1245
|
+
ID?: string;
|
|
1246
|
+
Name?: string;
|
|
1247
|
+
LegalName: string | null;
|
|
1248
|
+
OrganizationTypeID: string | null;
|
|
1249
|
+
ParentID: string | null;
|
|
1250
|
+
Website: string | null;
|
|
1251
|
+
LogoURL: string | null;
|
|
1252
|
+
Description: string | null;
|
|
1253
|
+
Email: string | null;
|
|
1254
|
+
Phone: string | null;
|
|
1255
|
+
FoundedDate: Date | null;
|
|
1256
|
+
TaxID: string | null;
|
|
1257
|
+
Status?: string;
|
|
1258
|
+
RestoreContext___?: RestoreContextInput;
|
|
1259
|
+
}
|
|
1260
|
+
export declare class UpdatemjBizAppsCommonOrganizationInput {
|
|
1261
|
+
ID: string;
|
|
1262
|
+
Name?: string;
|
|
1263
|
+
LegalName?: string | null;
|
|
1264
|
+
OrganizationTypeID?: string | null;
|
|
1265
|
+
ParentID?: string | null;
|
|
1266
|
+
Website?: string | null;
|
|
1267
|
+
LogoURL?: string | null;
|
|
1268
|
+
Description?: string | null;
|
|
1269
|
+
Email?: string | null;
|
|
1270
|
+
Phone?: string | null;
|
|
1271
|
+
FoundedDate?: Date | null;
|
|
1272
|
+
TaxID?: string | null;
|
|
1273
|
+
Status?: string;
|
|
1274
|
+
OldValues___?: KeyValuePairInput[];
|
|
1275
|
+
RestoreContext___?: RestoreContextInput;
|
|
1276
|
+
}
|
|
1277
|
+
export declare class RunmjBizAppsCommonOrganizationViewResult {
|
|
1278
|
+
Results: mjBizAppsCommonOrganization_[];
|
|
1279
|
+
UserViewRunID?: string;
|
|
1280
|
+
RowCount: number;
|
|
1281
|
+
TotalRowCount: number;
|
|
1282
|
+
ExecutionTime: number;
|
|
1283
|
+
ErrorMessage?: string;
|
|
1284
|
+
Success: boolean;
|
|
1285
|
+
}
|
|
1286
|
+
export declare class mjBizAppsCommonOrganizationResolver extends ResolverBase {
|
|
1287
|
+
RunmjBizAppsCommonOrganizationViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1288
|
+
RunmjBizAppsCommonOrganizationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1289
|
+
RunmjBizAppsCommonOrganizationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1290
|
+
mjBizAppsCommonOrganization(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonOrganization_ | null>;
|
|
1291
|
+
CreatemjBizAppsCommonOrganization(input: CreatemjBizAppsCommonOrganizationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1292
|
+
UpdatemjBizAppsCommonOrganization(input: UpdatemjBizAppsCommonOrganizationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1293
|
+
DeletemjBizAppsCommonOrganization(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1294
|
+
}
|
|
1295
|
+
export declare class mjBizAppsCommonPerson_ {
|
|
1296
|
+
ID: string;
|
|
1297
|
+
FirstName: string;
|
|
1298
|
+
LastName: string;
|
|
1299
|
+
MiddleName?: string;
|
|
1300
|
+
Prefix?: string;
|
|
1301
|
+
Suffix?: string;
|
|
1302
|
+
PreferredName?: string;
|
|
1303
|
+
Title?: string;
|
|
1304
|
+
Email?: string;
|
|
1305
|
+
Phone?: string;
|
|
1306
|
+
DateOfBirth?: Date;
|
|
1307
|
+
Gender?: string;
|
|
1308
|
+
PhotoURL?: string;
|
|
1309
|
+
Bio?: string;
|
|
1310
|
+
LinkedUserID?: string;
|
|
1311
|
+
Status: string;
|
|
1312
|
+
_mj__CreatedAt: Date;
|
|
1313
|
+
_mj__UpdatedAt: Date;
|
|
1314
|
+
DisplayName: string;
|
|
1315
|
+
LinkedUser?: string;
|
|
1316
|
+
_mj__Latitude?: number;
|
|
1317
|
+
_mj__Longitude?: number;
|
|
1318
|
+
PrimaryAddressLine1?: string;
|
|
1319
|
+
PrimaryAddressLine2?: string;
|
|
1320
|
+
PrimaryAddressCity?: string;
|
|
1321
|
+
PrimaryAddressState?: string;
|
|
1322
|
+
PrimaryAddressPostalCode?: string;
|
|
1323
|
+
PrimaryAddressCountry?: string;
|
|
1324
|
+
PrimaryAddressLatitude?: number;
|
|
1325
|
+
PrimaryAddressLongitude?: number;
|
|
1326
|
+
PrimaryAddressType?: string;
|
|
1327
|
+
PrimaryEmail?: string;
|
|
1328
|
+
PrimaryPhone?: string;
|
|
1329
|
+
CurrentOrganizationID?: string;
|
|
1330
|
+
CurrentOrganizationName?: string;
|
|
1331
|
+
CurrentJobTitle?: string;
|
|
1332
|
+
}
|
|
1333
|
+
export declare class CreatemjBizAppsCommonPersonInput {
|
|
1334
|
+
ID?: string;
|
|
1335
|
+
FirstName?: string;
|
|
1336
|
+
LastName?: string;
|
|
1337
|
+
MiddleName: string | null;
|
|
1338
|
+
Prefix: string | null;
|
|
1339
|
+
Suffix: string | null;
|
|
1340
|
+
PreferredName: string | null;
|
|
1341
|
+
Title: string | null;
|
|
1342
|
+
Email: string | null;
|
|
1343
|
+
Phone: string | null;
|
|
1344
|
+
DateOfBirth: Date | null;
|
|
1345
|
+
Gender: string | null;
|
|
1346
|
+
PhotoURL: string | null;
|
|
1347
|
+
Bio: string | null;
|
|
1348
|
+
LinkedUserID: string | null;
|
|
1349
|
+
Status?: string;
|
|
1350
|
+
RestoreContext___?: RestoreContextInput;
|
|
1351
|
+
}
|
|
1352
|
+
export declare class UpdatemjBizAppsCommonPersonInput {
|
|
1353
|
+
ID: string;
|
|
1354
|
+
FirstName?: string;
|
|
1355
|
+
LastName?: string;
|
|
1356
|
+
MiddleName?: string | null;
|
|
1357
|
+
Prefix?: string | null;
|
|
1358
|
+
Suffix?: string | null;
|
|
1359
|
+
PreferredName?: string | null;
|
|
1360
|
+
Title?: string | null;
|
|
1361
|
+
Email?: string | null;
|
|
1362
|
+
Phone?: string | null;
|
|
1363
|
+
DateOfBirth?: Date | null;
|
|
1364
|
+
Gender?: string | null;
|
|
1365
|
+
PhotoURL?: string | null;
|
|
1366
|
+
Bio?: string | null;
|
|
1367
|
+
LinkedUserID?: string | null;
|
|
1368
|
+
Status?: string;
|
|
1369
|
+
OldValues___?: KeyValuePairInput[];
|
|
1370
|
+
RestoreContext___?: RestoreContextInput;
|
|
1371
|
+
}
|
|
1372
|
+
export declare class RunmjBizAppsCommonPersonViewResult {
|
|
1373
|
+
Results: mjBizAppsCommonPerson_[];
|
|
1374
|
+
UserViewRunID?: string;
|
|
1375
|
+
RowCount: number;
|
|
1376
|
+
TotalRowCount: number;
|
|
1377
|
+
ExecutionTime: number;
|
|
1378
|
+
ErrorMessage?: string;
|
|
1379
|
+
Success: boolean;
|
|
1380
|
+
}
|
|
1381
|
+
export declare class mjBizAppsCommonPersonResolver extends ResolverBase {
|
|
1382
|
+
RunmjBizAppsCommonPersonViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1383
|
+
RunmjBizAppsCommonPersonViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1384
|
+
RunmjBizAppsCommonPersonDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1385
|
+
mjBizAppsCommonPerson(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonPerson_ | null>;
|
|
1386
|
+
CreatemjBizAppsCommonPerson(input: CreatemjBizAppsCommonPersonInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1387
|
+
UpdatemjBizAppsCommonPerson(input: UpdatemjBizAppsCommonPersonInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1388
|
+
DeletemjBizAppsCommonPerson(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1389
|
+
}
|
|
1390
|
+
export declare class mjBizAppsCommonRelationshipType_ {
|
|
1391
|
+
ID: string;
|
|
1392
|
+
Name: string;
|
|
1393
|
+
Description?: string;
|
|
1394
|
+
Category: string;
|
|
1395
|
+
IsDirectional: boolean;
|
|
1396
|
+
ForwardLabel?: string;
|
|
1397
|
+
ReverseLabel?: string;
|
|
1398
|
+
IsActive: boolean;
|
|
1399
|
+
_mj__CreatedAt: Date;
|
|
1400
|
+
_mj__UpdatedAt: Date;
|
|
1401
|
+
}
|
|
1402
|
+
export declare class CreatemjBizAppsCommonRelationshipTypeInput {
|
|
1403
|
+
ID?: string;
|
|
1404
|
+
Name?: string;
|
|
1405
|
+
Description: string | null;
|
|
1406
|
+
Category?: string;
|
|
1407
|
+
IsDirectional?: boolean;
|
|
1408
|
+
ForwardLabel: string | null;
|
|
1409
|
+
ReverseLabel: string | null;
|
|
1410
|
+
IsActive?: boolean;
|
|
1411
|
+
RestoreContext___?: RestoreContextInput;
|
|
1412
|
+
}
|
|
1413
|
+
export declare class UpdatemjBizAppsCommonRelationshipTypeInput {
|
|
1414
|
+
ID: string;
|
|
1415
|
+
Name?: string;
|
|
1416
|
+
Description?: string | null;
|
|
1417
|
+
Category?: string;
|
|
1418
|
+
IsDirectional?: boolean;
|
|
1419
|
+
ForwardLabel?: string | null;
|
|
1420
|
+
ReverseLabel?: string | null;
|
|
1421
|
+
IsActive?: boolean;
|
|
1422
|
+
OldValues___?: KeyValuePairInput[];
|
|
1423
|
+
RestoreContext___?: RestoreContextInput;
|
|
1424
|
+
}
|
|
1425
|
+
export declare class RunmjBizAppsCommonRelationshipTypeViewResult {
|
|
1426
|
+
Results: mjBizAppsCommonRelationshipType_[];
|
|
1427
|
+
UserViewRunID?: string;
|
|
1428
|
+
RowCount: number;
|
|
1429
|
+
TotalRowCount: number;
|
|
1430
|
+
ExecutionTime: number;
|
|
1431
|
+
ErrorMessage?: string;
|
|
1432
|
+
Success: boolean;
|
|
1433
|
+
}
|
|
1434
|
+
export declare class mjBizAppsCommonRelationshipTypeResolver extends ResolverBase {
|
|
1435
|
+
RunmjBizAppsCommonRelationshipTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1436
|
+
RunmjBizAppsCommonRelationshipTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1437
|
+
RunmjBizAppsCommonRelationshipTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1438
|
+
mjBizAppsCommonRelationshipType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonRelationshipType_ | null>;
|
|
1439
|
+
CreatemjBizAppsCommonRelationshipType(input: CreatemjBizAppsCommonRelationshipTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1440
|
+
UpdatemjBizAppsCommonRelationshipType(input: UpdatemjBizAppsCommonRelationshipTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1441
|
+
DeletemjBizAppsCommonRelationshipType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1442
|
+
}
|
|
1443
|
+
export declare class mjBizAppsCommonRelationship_ {
|
|
1444
|
+
ID: string;
|
|
1445
|
+
RelationshipTypeID: string;
|
|
1446
|
+
FromPersonID?: string;
|
|
1447
|
+
FromOrganizationID?: string;
|
|
1448
|
+
ToPersonID?: string;
|
|
1449
|
+
ToOrganizationID?: string;
|
|
1450
|
+
Title?: string;
|
|
1451
|
+
StartDate?: Date;
|
|
1452
|
+
EndDate?: Date;
|
|
1453
|
+
Status: string;
|
|
1454
|
+
Notes?: string;
|
|
1455
|
+
_mj__CreatedAt: Date;
|
|
1456
|
+
_mj__UpdatedAt: Date;
|
|
1457
|
+
RelationshipType: string;
|
|
1458
|
+
FromPerson?: string;
|
|
1459
|
+
FromOrganization?: string;
|
|
1460
|
+
ToPerson?: string;
|
|
1461
|
+
ToOrganization?: string;
|
|
1462
|
+
}
|
|
1463
|
+
export declare class CreatemjBizAppsCommonRelationshipInput {
|
|
1464
|
+
ID?: string;
|
|
1465
|
+
RelationshipTypeID?: string;
|
|
1466
|
+
FromPersonID: string | null;
|
|
1467
|
+
FromOrganizationID: string | null;
|
|
1468
|
+
ToPersonID: string | null;
|
|
1469
|
+
ToOrganizationID: string | null;
|
|
1470
|
+
Title: string | null;
|
|
1471
|
+
StartDate: Date | null;
|
|
1472
|
+
EndDate: Date | null;
|
|
1473
|
+
Status?: string;
|
|
1474
|
+
Notes: string | null;
|
|
1475
|
+
RestoreContext___?: RestoreContextInput;
|
|
1476
|
+
}
|
|
1477
|
+
export declare class UpdatemjBizAppsCommonRelationshipInput {
|
|
1478
|
+
ID: string;
|
|
1479
|
+
RelationshipTypeID?: string;
|
|
1480
|
+
FromPersonID?: string | null;
|
|
1481
|
+
FromOrganizationID?: string | null;
|
|
1482
|
+
ToPersonID?: string | null;
|
|
1483
|
+
ToOrganizationID?: string | null;
|
|
1484
|
+
Title?: string | null;
|
|
1485
|
+
StartDate?: Date | null;
|
|
1486
|
+
EndDate?: Date | null;
|
|
1487
|
+
Status?: string;
|
|
1488
|
+
Notes?: string | null;
|
|
1489
|
+
OldValues___?: KeyValuePairInput[];
|
|
1490
|
+
RestoreContext___?: RestoreContextInput;
|
|
1491
|
+
}
|
|
1492
|
+
export declare class RunmjBizAppsCommonRelationshipViewResult {
|
|
1493
|
+
Results: mjBizAppsCommonRelationship_[];
|
|
1494
|
+
UserViewRunID?: string;
|
|
1495
|
+
RowCount: number;
|
|
1496
|
+
TotalRowCount: number;
|
|
1497
|
+
ExecutionTime: number;
|
|
1498
|
+
ErrorMessage?: string;
|
|
1499
|
+
Success: boolean;
|
|
1500
|
+
}
|
|
1501
|
+
export declare class mjBizAppsCommonRelationshipResolver extends ResolverBase {
|
|
1502
|
+
RunmjBizAppsCommonRelationshipViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1503
|
+
RunmjBizAppsCommonRelationshipViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1504
|
+
RunmjBizAppsCommonRelationshipDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1505
|
+
mjBizAppsCommonRelationship(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsCommonRelationship_ | null>;
|
|
1506
|
+
CreatemjBizAppsCommonRelationship(input: CreatemjBizAppsCommonRelationshipInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1507
|
+
UpdatemjBizAppsCommonRelationship(input: UpdatemjBizAppsCommonRelationshipInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1508
|
+
DeletemjBizAppsCommonRelationship(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1509
|
+
}
|
|
1510
|
+
//# sourceMappingURL=__mj_BizAppsCommon.d.ts.map
|