@mj-biz-apps/sales-server 5.1.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.
@@ -0,0 +1,1396 @@
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 mjBizAppsSalesAccountType_ {
12
+ ID: string;
13
+ Code: string;
14
+ Name: string;
15
+ Description?: string;
16
+ IsCustomer: boolean;
17
+ IsProspect: boolean;
18
+ IsPartner: boolean;
19
+ DisplayRank: number;
20
+ IsActive: boolean;
21
+ _mj__CreatedAt: Date;
22
+ _mj__UpdatedAt: Date;
23
+ }
24
+ export declare class CreatemjBizAppsSalesAccountTypeInput {
25
+ ID?: string;
26
+ Code?: string;
27
+ Name?: string;
28
+ Description: string | null;
29
+ IsCustomer?: boolean;
30
+ IsProspect?: boolean;
31
+ IsPartner?: boolean;
32
+ DisplayRank?: number;
33
+ IsActive?: boolean;
34
+ RestoreContext___?: RestoreContextInput;
35
+ }
36
+ export declare class UpdatemjBizAppsSalesAccountTypeInput {
37
+ ID: string;
38
+ Code?: string;
39
+ Name?: string;
40
+ Description?: string | null;
41
+ IsCustomer?: boolean;
42
+ IsProspect?: boolean;
43
+ IsPartner?: boolean;
44
+ DisplayRank?: number;
45
+ IsActive?: boolean;
46
+ OldValues___?: KeyValuePairInput[];
47
+ RestoreContext___?: RestoreContextInput;
48
+ }
49
+ export declare class RunmjBizAppsSalesAccountTypeViewResult {
50
+ Results: mjBizAppsSalesAccountType_[];
51
+ UserViewRunID?: string;
52
+ RowCount: number;
53
+ TotalRowCount: number;
54
+ ExecutionTime: number;
55
+ ErrorMessage?: string;
56
+ Success: boolean;
57
+ }
58
+ export declare class mjBizAppsSalesAccountTypeResolver extends ResolverBase {
59
+ RunmjBizAppsSalesAccountTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
60
+ RunmjBizAppsSalesAccountTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
61
+ RunmjBizAppsSalesAccountTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
62
+ mjBizAppsSalesAccountType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesAccountType_ | null>;
63
+ CreatemjBizAppsSalesAccountType(input: CreatemjBizAppsSalesAccountTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
64
+ UpdatemjBizAppsSalesAccountType(input: UpdatemjBizAppsSalesAccountTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
65
+ DeletemjBizAppsSalesAccountType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
66
+ }
67
+ export declare class mjBizAppsSalesBuyingRoleType_ {
68
+ ID: string;
69
+ Code: string;
70
+ Name: string;
71
+ Description?: string;
72
+ IsDecisionMaker: boolean;
73
+ IsBlocker: boolean;
74
+ InfluenceWeight?: number;
75
+ DisplayRank: number;
76
+ IsActive: boolean;
77
+ _mj__CreatedAt: Date;
78
+ _mj__UpdatedAt: Date;
79
+ }
80
+ export declare class CreatemjBizAppsSalesBuyingRoleTypeInput {
81
+ ID?: string;
82
+ Code?: string;
83
+ Name?: string;
84
+ Description: string | null;
85
+ IsDecisionMaker?: boolean;
86
+ IsBlocker?: boolean;
87
+ InfluenceWeight: number | null;
88
+ DisplayRank?: number;
89
+ IsActive?: boolean;
90
+ RestoreContext___?: RestoreContextInput;
91
+ }
92
+ export declare class UpdatemjBizAppsSalesBuyingRoleTypeInput {
93
+ ID: string;
94
+ Code?: string;
95
+ Name?: string;
96
+ Description?: string | null;
97
+ IsDecisionMaker?: boolean;
98
+ IsBlocker?: boolean;
99
+ InfluenceWeight?: number | null;
100
+ DisplayRank?: number;
101
+ IsActive?: boolean;
102
+ OldValues___?: KeyValuePairInput[];
103
+ RestoreContext___?: RestoreContextInput;
104
+ }
105
+ export declare class RunmjBizAppsSalesBuyingRoleTypeViewResult {
106
+ Results: mjBizAppsSalesBuyingRoleType_[];
107
+ UserViewRunID?: string;
108
+ RowCount: number;
109
+ TotalRowCount: number;
110
+ ExecutionTime: number;
111
+ ErrorMessage?: string;
112
+ Success: boolean;
113
+ }
114
+ export declare class mjBizAppsSalesBuyingRoleTypeResolver extends ResolverBase {
115
+ RunmjBizAppsSalesBuyingRoleTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
116
+ RunmjBizAppsSalesBuyingRoleTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
117
+ RunmjBizAppsSalesBuyingRoleTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
118
+ mjBizAppsSalesBuyingRoleType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesBuyingRoleType_ | null>;
119
+ CreatemjBizAppsSalesBuyingRoleType(input: CreatemjBizAppsSalesBuyingRoleTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
120
+ UpdatemjBizAppsSalesBuyingRoleType(input: UpdatemjBizAppsSalesBuyingRoleTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
121
+ DeletemjBizAppsSalesBuyingRoleType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
122
+ }
123
+ export declare class mjBizAppsSalesDealContactRole_ {
124
+ ID: string;
125
+ DealID: string;
126
+ SalesContactID: string;
127
+ BuyingRoleTypeID?: string;
128
+ Influence?: number;
129
+ Notes?: string;
130
+ _mj__CreatedAt: Date;
131
+ _mj__UpdatedAt: Date;
132
+ Deal: string;
133
+ BuyingRoleType?: string;
134
+ }
135
+ export declare class CreatemjBizAppsSalesDealContactRoleInput {
136
+ ID?: string;
137
+ DealID?: string;
138
+ SalesContactID?: string;
139
+ BuyingRoleTypeID: string | null;
140
+ Influence: number | null;
141
+ Notes: string | null;
142
+ RestoreContext___?: RestoreContextInput;
143
+ }
144
+ export declare class UpdatemjBizAppsSalesDealContactRoleInput {
145
+ ID: string;
146
+ DealID?: string;
147
+ SalesContactID?: string;
148
+ BuyingRoleTypeID?: string | null;
149
+ Influence?: number | null;
150
+ Notes?: string | null;
151
+ OldValues___?: KeyValuePairInput[];
152
+ RestoreContext___?: RestoreContextInput;
153
+ }
154
+ export declare class RunmjBizAppsSalesDealContactRoleViewResult {
155
+ Results: mjBizAppsSalesDealContactRole_[];
156
+ UserViewRunID?: string;
157
+ RowCount: number;
158
+ TotalRowCount: number;
159
+ ExecutionTime: number;
160
+ ErrorMessage?: string;
161
+ Success: boolean;
162
+ }
163
+ export declare class mjBizAppsSalesDealContactRoleResolver extends ResolverBase {
164
+ RunmjBizAppsSalesDealContactRoleViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
165
+ RunmjBizAppsSalesDealContactRoleViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
166
+ RunmjBizAppsSalesDealContactRoleDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
167
+ mjBizAppsSalesDealContactRole(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesDealContactRole_ | null>;
168
+ CreatemjBizAppsSalesDealContactRole(input: CreatemjBizAppsSalesDealContactRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
169
+ UpdatemjBizAppsSalesDealContactRole(input: UpdatemjBizAppsSalesDealContactRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
170
+ DeletemjBizAppsSalesDealContactRole(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
171
+ }
172
+ export declare class mjBizAppsSalesDealPaymentSchedule_ {
173
+ ID: string;
174
+ DealID: string;
175
+ PaymentDate?: Date;
176
+ Amount?: number;
177
+ Description?: string;
178
+ DisplayOrder: number;
179
+ _mj__CreatedAt: Date;
180
+ _mj__UpdatedAt: Date;
181
+ Deal: string;
182
+ }
183
+ export declare class CreatemjBizAppsSalesDealPaymentScheduleInput {
184
+ ID?: string;
185
+ DealID?: string;
186
+ PaymentDate: Date | null;
187
+ Amount: number | null;
188
+ Description: string | null;
189
+ DisplayOrder?: number;
190
+ RestoreContext___?: RestoreContextInput;
191
+ }
192
+ export declare class UpdatemjBizAppsSalesDealPaymentScheduleInput {
193
+ ID: string;
194
+ DealID?: string;
195
+ PaymentDate?: Date | null;
196
+ Amount?: number | null;
197
+ Description?: string | null;
198
+ DisplayOrder?: number;
199
+ OldValues___?: KeyValuePairInput[];
200
+ RestoreContext___?: RestoreContextInput;
201
+ }
202
+ export declare class RunmjBizAppsSalesDealPaymentScheduleViewResult {
203
+ Results: mjBizAppsSalesDealPaymentSchedule_[];
204
+ UserViewRunID?: string;
205
+ RowCount: number;
206
+ TotalRowCount: number;
207
+ ExecutionTime: number;
208
+ ErrorMessage?: string;
209
+ Success: boolean;
210
+ }
211
+ export declare class mjBizAppsSalesDealPaymentScheduleResolver extends ResolverBase {
212
+ RunmjBizAppsSalesDealPaymentScheduleViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
213
+ RunmjBizAppsSalesDealPaymentScheduleViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
214
+ RunmjBizAppsSalesDealPaymentScheduleDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
215
+ mjBizAppsSalesDealPaymentSchedule(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesDealPaymentSchedule_ | null>;
216
+ CreatemjBizAppsSalesDealPaymentSchedule(input: CreatemjBizAppsSalesDealPaymentScheduleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
217
+ UpdatemjBizAppsSalesDealPaymentSchedule(input: UpdatemjBizAppsSalesDealPaymentScheduleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
218
+ DeletemjBizAppsSalesDealPaymentSchedule(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
219
+ }
220
+ export declare class mjBizAppsSalesDealRole_ {
221
+ ID: string;
222
+ Code: string;
223
+ Name: string;
224
+ Description?: string;
225
+ IsOwnerRole: boolean;
226
+ AllowsMultiplePerDeal: boolean;
227
+ DefaultAttributionPct?: number;
228
+ IsQuotaCarrying: boolean;
229
+ DisplayRank: number;
230
+ IsActive: boolean;
231
+ _mj__CreatedAt: Date;
232
+ _mj__UpdatedAt: Date;
233
+ }
234
+ export declare class CreatemjBizAppsSalesDealRoleInput {
235
+ ID?: string;
236
+ Code?: string;
237
+ Name?: string;
238
+ Description: string | null;
239
+ IsOwnerRole?: boolean;
240
+ AllowsMultiplePerDeal?: boolean;
241
+ DefaultAttributionPct: number | null;
242
+ IsQuotaCarrying?: boolean;
243
+ DisplayRank?: number;
244
+ IsActive?: boolean;
245
+ RestoreContext___?: RestoreContextInput;
246
+ }
247
+ export declare class UpdatemjBizAppsSalesDealRoleInput {
248
+ ID: string;
249
+ Code?: string;
250
+ Name?: string;
251
+ Description?: string | null;
252
+ IsOwnerRole?: boolean;
253
+ AllowsMultiplePerDeal?: boolean;
254
+ DefaultAttributionPct?: number | null;
255
+ IsQuotaCarrying?: boolean;
256
+ DisplayRank?: number;
257
+ IsActive?: boolean;
258
+ OldValues___?: KeyValuePairInput[];
259
+ RestoreContext___?: RestoreContextInput;
260
+ }
261
+ export declare class RunmjBizAppsSalesDealRoleViewResult {
262
+ Results: mjBizAppsSalesDealRole_[];
263
+ UserViewRunID?: string;
264
+ RowCount: number;
265
+ TotalRowCount: number;
266
+ ExecutionTime: number;
267
+ ErrorMessage?: string;
268
+ Success: boolean;
269
+ }
270
+ export declare class mjBizAppsSalesDealRoleResolver extends ResolverBase {
271
+ RunmjBizAppsSalesDealRoleViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
272
+ RunmjBizAppsSalesDealRoleViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
273
+ RunmjBizAppsSalesDealRoleDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
274
+ mjBizAppsSalesDealRole(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesDealRole_ | null>;
275
+ CreatemjBizAppsSalesDealRole(input: CreatemjBizAppsSalesDealRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
276
+ UpdatemjBizAppsSalesDealRole(input: UpdatemjBizAppsSalesDealRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
277
+ DeletemjBizAppsSalesDealRole(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
278
+ }
279
+ export declare class mjBizAppsSalesDealSequence_ {
280
+ ID: number;
281
+ NextSequenceNumber: number;
282
+ _mj__CreatedAt: Date;
283
+ _mj__UpdatedAt: Date;
284
+ }
285
+ export declare class CreatemjBizAppsSalesDealSequenceInput {
286
+ ID?: number;
287
+ NextSequenceNumber?: number;
288
+ RestoreContext___?: RestoreContextInput;
289
+ }
290
+ export declare class UpdatemjBizAppsSalesDealSequenceInput {
291
+ ID: number;
292
+ NextSequenceNumber?: number;
293
+ OldValues___?: KeyValuePairInput[];
294
+ RestoreContext___?: RestoreContextInput;
295
+ }
296
+ export declare class RunmjBizAppsSalesDealSequenceViewResult {
297
+ Results: mjBizAppsSalesDealSequence_[];
298
+ UserViewRunID?: string;
299
+ RowCount: number;
300
+ TotalRowCount: number;
301
+ ExecutionTime: number;
302
+ ErrorMessage?: string;
303
+ Success: boolean;
304
+ }
305
+ export declare class mjBizAppsSalesDealSequenceResolver extends ResolverBase {
306
+ RunmjBizAppsSalesDealSequenceViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
307
+ RunmjBizAppsSalesDealSequenceViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
308
+ RunmjBizAppsSalesDealSequenceDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
309
+ mjBizAppsSalesDealSequence(ID: number, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesDealSequence_ | null>;
310
+ CreatemjBizAppsSalesDealSequence(input: CreatemjBizAppsSalesDealSequenceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
311
+ UpdatemjBizAppsSalesDealSequence(input: UpdatemjBizAppsSalesDealSequenceInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
312
+ DeletemjBizAppsSalesDealSequence(ID: number, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
313
+ }
314
+ export declare class mjBizAppsSalesDealStageEvent_ {
315
+ ID: string;
316
+ DealID: string;
317
+ FromStageID?: string;
318
+ ToStageID?: string;
319
+ FromDealStatusTypeID?: string;
320
+ ToDealStatusTypeID?: string;
321
+ ChangedByUserID?: string;
322
+ ChangedAt: Date;
323
+ DaysInPreviousStage?: number;
324
+ AmountAtTransition?: number;
325
+ ProbabilityAtTransition?: number;
326
+ Notes?: string;
327
+ _mj__CreatedAt: Date;
328
+ _mj__UpdatedAt: Date;
329
+ Deal: string;
330
+ FromStage?: string;
331
+ ToStage?: string;
332
+ FromDealStatusType?: string;
333
+ ToDealStatusType?: string;
334
+ ChangedByUser?: string;
335
+ }
336
+ export declare class CreatemjBizAppsSalesDealStageEventInput {
337
+ ID?: string;
338
+ DealID?: string;
339
+ FromStageID: string | null;
340
+ ToStageID: string | null;
341
+ FromDealStatusTypeID: string | null;
342
+ ToDealStatusTypeID: string | null;
343
+ ChangedByUserID: string | null;
344
+ ChangedAt?: Date;
345
+ DaysInPreviousStage: number | null;
346
+ AmountAtTransition: number | null;
347
+ ProbabilityAtTransition: number | null;
348
+ Notes: string | null;
349
+ RestoreContext___?: RestoreContextInput;
350
+ }
351
+ export declare class UpdatemjBizAppsSalesDealStageEventInput {
352
+ ID: string;
353
+ DealID?: string;
354
+ FromStageID?: string | null;
355
+ ToStageID?: string | null;
356
+ FromDealStatusTypeID?: string | null;
357
+ ToDealStatusTypeID?: string | null;
358
+ ChangedByUserID?: string | null;
359
+ ChangedAt?: Date;
360
+ DaysInPreviousStage?: number | null;
361
+ AmountAtTransition?: number | null;
362
+ ProbabilityAtTransition?: number | null;
363
+ Notes?: string | null;
364
+ OldValues___?: KeyValuePairInput[];
365
+ RestoreContext___?: RestoreContextInput;
366
+ }
367
+ export declare class RunmjBizAppsSalesDealStageEventViewResult {
368
+ Results: mjBizAppsSalesDealStageEvent_[];
369
+ UserViewRunID?: string;
370
+ RowCount: number;
371
+ TotalRowCount: number;
372
+ ExecutionTime: number;
373
+ ErrorMessage?: string;
374
+ Success: boolean;
375
+ }
376
+ export declare class mjBizAppsSalesDealStageEventResolver extends ResolverBase {
377
+ RunmjBizAppsSalesDealStageEventViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
378
+ RunmjBizAppsSalesDealStageEventViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
379
+ RunmjBizAppsSalesDealStageEventDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
380
+ mjBizAppsSalesDealStageEvent(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesDealStageEvent_ | null>;
381
+ CreatemjBizAppsSalesDealStageEvent(input: CreatemjBizAppsSalesDealStageEventInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
382
+ UpdatemjBizAppsSalesDealStageEvent(input: UpdatemjBizAppsSalesDealStageEventInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
383
+ DeletemjBizAppsSalesDealStageEvent(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
384
+ }
385
+ export declare class mjBizAppsSalesDealStatusType_ {
386
+ ID: string;
387
+ Code: string;
388
+ Name: string;
389
+ Description?: string;
390
+ IsOpen: boolean;
391
+ IsClosed: boolean;
392
+ IsWon: boolean;
393
+ IsLost: boolean;
394
+ LocksDeal: boolean;
395
+ DisplayRank: number;
396
+ IsActive: boolean;
397
+ _mj__CreatedAt: Date;
398
+ _mj__UpdatedAt: Date;
399
+ }
400
+ export declare class CreatemjBizAppsSalesDealStatusTypeInput {
401
+ ID?: string;
402
+ Code?: string;
403
+ Name?: string;
404
+ Description: string | null;
405
+ IsOpen?: boolean;
406
+ IsClosed?: boolean;
407
+ IsWon?: boolean;
408
+ IsLost?: boolean;
409
+ LocksDeal?: boolean;
410
+ DisplayRank?: number;
411
+ IsActive?: boolean;
412
+ RestoreContext___?: RestoreContextInput;
413
+ }
414
+ export declare class UpdatemjBizAppsSalesDealStatusTypeInput {
415
+ ID: string;
416
+ Code?: string;
417
+ Name?: string;
418
+ Description?: string | null;
419
+ IsOpen?: boolean;
420
+ IsClosed?: boolean;
421
+ IsWon?: boolean;
422
+ IsLost?: boolean;
423
+ LocksDeal?: boolean;
424
+ DisplayRank?: number;
425
+ IsActive?: boolean;
426
+ OldValues___?: KeyValuePairInput[];
427
+ RestoreContext___?: RestoreContextInput;
428
+ }
429
+ export declare class RunmjBizAppsSalesDealStatusTypeViewResult {
430
+ Results: mjBizAppsSalesDealStatusType_[];
431
+ UserViewRunID?: string;
432
+ RowCount: number;
433
+ TotalRowCount: number;
434
+ ExecutionTime: number;
435
+ ErrorMessage?: string;
436
+ Success: boolean;
437
+ }
438
+ export declare class mjBizAppsSalesDealStatusTypeResolver extends ResolverBase {
439
+ RunmjBizAppsSalesDealStatusTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
440
+ RunmjBizAppsSalesDealStatusTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
441
+ RunmjBizAppsSalesDealStatusTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
442
+ mjBizAppsSalesDealStatusType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesDealStatusType_ | null>;
443
+ CreatemjBizAppsSalesDealStatusType(input: CreatemjBizAppsSalesDealStatusTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
444
+ UpdatemjBizAppsSalesDealStatusType(input: UpdatemjBizAppsSalesDealStatusTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
445
+ DeletemjBizAppsSalesDealStatusType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
446
+ }
447
+ export declare class mjBizAppsSalesDealTeamMember_ {
448
+ ID: string;
449
+ DealID: string;
450
+ EmployeeID?: string;
451
+ PersonID?: string;
452
+ DealRoleID: string;
453
+ AttributionPct?: number;
454
+ StartDate?: Date;
455
+ EndDate?: Date;
456
+ IsActive: boolean;
457
+ Notes?: string;
458
+ _mj__CreatedAt: Date;
459
+ _mj__UpdatedAt: Date;
460
+ Deal: string;
461
+ Employee?: string;
462
+ Person?: string;
463
+ DealRole: string;
464
+ }
465
+ export declare class CreatemjBizAppsSalesDealTeamMemberInput {
466
+ ID?: string;
467
+ DealID?: string;
468
+ EmployeeID: string | null;
469
+ PersonID: string | null;
470
+ DealRoleID?: string;
471
+ AttributionPct: number | null;
472
+ StartDate: Date | null;
473
+ EndDate: Date | null;
474
+ IsActive?: boolean;
475
+ Notes: string | null;
476
+ RestoreContext___?: RestoreContextInput;
477
+ }
478
+ export declare class UpdatemjBizAppsSalesDealTeamMemberInput {
479
+ ID: string;
480
+ DealID?: string;
481
+ EmployeeID?: string | null;
482
+ PersonID?: string | null;
483
+ DealRoleID?: string;
484
+ AttributionPct?: number | null;
485
+ StartDate?: Date | null;
486
+ EndDate?: Date | null;
487
+ IsActive?: boolean;
488
+ Notes?: string | null;
489
+ OldValues___?: KeyValuePairInput[];
490
+ RestoreContext___?: RestoreContextInput;
491
+ }
492
+ export declare class RunmjBizAppsSalesDealTeamMemberViewResult {
493
+ Results: mjBizAppsSalesDealTeamMember_[];
494
+ UserViewRunID?: string;
495
+ RowCount: number;
496
+ TotalRowCount: number;
497
+ ExecutionTime: number;
498
+ ErrorMessage?: string;
499
+ Success: boolean;
500
+ }
501
+ export declare class mjBizAppsSalesDealTeamMemberResolver extends ResolverBase {
502
+ RunmjBizAppsSalesDealTeamMemberViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
503
+ RunmjBizAppsSalesDealTeamMemberViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
504
+ RunmjBizAppsSalesDealTeamMemberDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
505
+ mjBizAppsSalesDealTeamMember(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesDealTeamMember_ | null>;
506
+ CreatemjBizAppsSalesDealTeamMember(input: CreatemjBizAppsSalesDealTeamMemberInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
507
+ UpdatemjBizAppsSalesDealTeamMember(input: UpdatemjBizAppsSalesDealTeamMemberInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
508
+ DeletemjBizAppsSalesDealTeamMember(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
509
+ }
510
+ export declare class mjBizAppsSalesDealType_ {
511
+ ID: string;
512
+ Code: string;
513
+ Name: string;
514
+ Description?: string;
515
+ RequiresContract: boolean;
516
+ RequiresRenewalSource: boolean;
517
+ DefaultPipelineID?: string;
518
+ DisplayRank: number;
519
+ IsActive: boolean;
520
+ _mj__CreatedAt: Date;
521
+ _mj__UpdatedAt: Date;
522
+ DefaultPipeline?: string;
523
+ }
524
+ export declare class CreatemjBizAppsSalesDealTypeInput {
525
+ ID?: string;
526
+ Code?: string;
527
+ Name?: string;
528
+ Description: string | null;
529
+ RequiresContract?: boolean;
530
+ RequiresRenewalSource?: boolean;
531
+ DefaultPipelineID: string | null;
532
+ DisplayRank?: number;
533
+ IsActive?: boolean;
534
+ RestoreContext___?: RestoreContextInput;
535
+ }
536
+ export declare class UpdatemjBizAppsSalesDealTypeInput {
537
+ ID: string;
538
+ Code?: string;
539
+ Name?: string;
540
+ Description?: string | null;
541
+ RequiresContract?: boolean;
542
+ RequiresRenewalSource?: boolean;
543
+ DefaultPipelineID?: string | null;
544
+ DisplayRank?: number;
545
+ IsActive?: boolean;
546
+ OldValues___?: KeyValuePairInput[];
547
+ RestoreContext___?: RestoreContextInput;
548
+ }
549
+ export declare class RunmjBizAppsSalesDealTypeViewResult {
550
+ Results: mjBizAppsSalesDealType_[];
551
+ UserViewRunID?: string;
552
+ RowCount: number;
553
+ TotalRowCount: number;
554
+ ExecutionTime: number;
555
+ ErrorMessage?: string;
556
+ Success: boolean;
557
+ }
558
+ export declare class mjBizAppsSalesDealTypeResolver extends ResolverBase {
559
+ RunmjBizAppsSalesDealTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
560
+ RunmjBizAppsSalesDealTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
561
+ RunmjBizAppsSalesDealTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
562
+ mjBizAppsSalesDealType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesDealType_ | null>;
563
+ CreatemjBizAppsSalesDealType(input: CreatemjBizAppsSalesDealTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
564
+ UpdatemjBizAppsSalesDealType(input: UpdatemjBizAppsSalesDealTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
565
+ DeletemjBizAppsSalesDealType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
566
+ }
567
+ export declare class mjBizAppsSalesDeal_ {
568
+ ID: string;
569
+ DealNumber?: string;
570
+ Name: string;
571
+ PipelineID: string;
572
+ PipelineStageID?: string;
573
+ DealTypeID?: string;
574
+ DealStatusTypeID?: string;
575
+ AccountID?: string;
576
+ PrimaryContactID?: string;
577
+ BillingContactID?: string;
578
+ CompanyID: string;
579
+ OwnerEmployeeID?: string;
580
+ Amount?: number;
581
+ AmountIsComputed: boolean;
582
+ AmountComputedAt?: Date;
583
+ AmountSourceHash?: string;
584
+ CurrencyID?: string;
585
+ MRR?: number;
586
+ ARR?: number;
587
+ TermMonths?: number;
588
+ EstimatedProjectWeeks?: number;
589
+ ExecutionDate?: Date;
590
+ StartDate?: Date;
591
+ ExpectedCloseDate?: Date;
592
+ ActualCloseDate?: Date;
593
+ Probability?: number;
594
+ ForecastCategoryTypeID?: string;
595
+ LossReasonID?: string;
596
+ LossNotes?: string;
597
+ LeadSourceTypeID?: string;
598
+ CampaignID?: string;
599
+ ContractID?: string;
600
+ RenewsContractID?: string;
601
+ AutoRenew: boolean;
602
+ AnnualIncreasePctOverride?: number;
603
+ CancellationNoticeDaysOverride?: number;
604
+ PaymentMethod?: string;
605
+ ContractVariances?: string;
606
+ Description?: string;
607
+ NextStep?: string;
608
+ NextStepDate?: Date;
609
+ ClosedAt?: Date;
610
+ ClosedByUserID?: string;
611
+ _mj__CreatedAt: Date;
612
+ _mj__UpdatedAt: Date;
613
+ OrderID?: string;
614
+ StandardAgreementModified: boolean;
615
+ Pipeline: string;
616
+ PipelineStage?: string;
617
+ DealType?: string;
618
+ DealStatusType?: string;
619
+ Account?: string;
620
+ Company: string;
621
+ OwnerEmployee?: string;
622
+ ForecastCategoryType?: string;
623
+ LossReason?: string;
624
+ LeadSourceType?: string;
625
+ ClosedByUser?: string;
626
+ Order?: string;
627
+ }
628
+ export declare class CreatemjBizAppsSalesDealInput {
629
+ ID?: string;
630
+ DealNumber: string | null;
631
+ Name?: string;
632
+ PipelineID?: string;
633
+ PipelineStageID: string | null;
634
+ DealTypeID: string | null;
635
+ DealStatusTypeID: string | null;
636
+ AccountID: string | null;
637
+ PrimaryContactID: string | null;
638
+ BillingContactID: string | null;
639
+ CompanyID?: string;
640
+ OwnerEmployeeID: string | null;
641
+ Amount: number | null;
642
+ AmountIsComputed?: boolean;
643
+ AmountComputedAt: Date | null;
644
+ AmountSourceHash: string | null;
645
+ CurrencyID: string | null;
646
+ MRR: number | null;
647
+ ARR: number | null;
648
+ TermMonths: number | null;
649
+ EstimatedProjectWeeks: number | null;
650
+ ExecutionDate: Date | null;
651
+ StartDate: Date | null;
652
+ ExpectedCloseDate: Date | null;
653
+ ActualCloseDate: Date | null;
654
+ Probability: number | null;
655
+ ForecastCategoryTypeID: string | null;
656
+ LossReasonID: string | null;
657
+ LossNotes: string | null;
658
+ LeadSourceTypeID: string | null;
659
+ CampaignID: string | null;
660
+ ContractID: string | null;
661
+ RenewsContractID: string | null;
662
+ AutoRenew?: boolean;
663
+ AnnualIncreasePctOverride: number | null;
664
+ CancellationNoticeDaysOverride: number | null;
665
+ PaymentMethod?: string | null;
666
+ ContractVariances: string | null;
667
+ Description: string | null;
668
+ NextStep: string | null;
669
+ NextStepDate: Date | null;
670
+ ClosedAt: Date | null;
671
+ ClosedByUserID: string | null;
672
+ OrderID: string | null;
673
+ StandardAgreementModified?: boolean;
674
+ RestoreContext___?: RestoreContextInput;
675
+ }
676
+ export declare class UpdatemjBizAppsSalesDealInput {
677
+ ID: string;
678
+ DealNumber?: string | null;
679
+ Name?: string;
680
+ PipelineID?: string;
681
+ PipelineStageID?: string | null;
682
+ DealTypeID?: string | null;
683
+ DealStatusTypeID?: string | null;
684
+ AccountID?: string | null;
685
+ PrimaryContactID?: string | null;
686
+ BillingContactID?: string | null;
687
+ CompanyID?: string;
688
+ OwnerEmployeeID?: string | null;
689
+ Amount?: number | null;
690
+ AmountIsComputed?: boolean;
691
+ AmountComputedAt?: Date | null;
692
+ AmountSourceHash?: string | null;
693
+ CurrencyID?: string | null;
694
+ MRR?: number | null;
695
+ ARR?: number | null;
696
+ TermMonths?: number | null;
697
+ EstimatedProjectWeeks?: number | null;
698
+ ExecutionDate?: Date | null;
699
+ StartDate?: Date | null;
700
+ ExpectedCloseDate?: Date | null;
701
+ ActualCloseDate?: Date | null;
702
+ Probability?: number | null;
703
+ ForecastCategoryTypeID?: string | null;
704
+ LossReasonID?: string | null;
705
+ LossNotes?: string | null;
706
+ LeadSourceTypeID?: string | null;
707
+ CampaignID?: string | null;
708
+ ContractID?: string | null;
709
+ RenewsContractID?: string | null;
710
+ AutoRenew?: boolean;
711
+ AnnualIncreasePctOverride?: number | null;
712
+ CancellationNoticeDaysOverride?: number | null;
713
+ PaymentMethod?: string | null;
714
+ ContractVariances?: string | null;
715
+ Description?: string | null;
716
+ NextStep?: string | null;
717
+ NextStepDate?: Date | null;
718
+ ClosedAt?: Date | null;
719
+ ClosedByUserID?: string | null;
720
+ OrderID?: string | null;
721
+ StandardAgreementModified?: boolean;
722
+ OldValues___?: KeyValuePairInput[];
723
+ RestoreContext___?: RestoreContextInput;
724
+ }
725
+ export declare class RunmjBizAppsSalesDealViewResult {
726
+ Results: mjBizAppsSalesDeal_[];
727
+ UserViewRunID?: string;
728
+ RowCount: number;
729
+ TotalRowCount: number;
730
+ ExecutionTime: number;
731
+ ErrorMessage?: string;
732
+ Success: boolean;
733
+ }
734
+ export declare class mjBizAppsSalesDealResolver extends ResolverBase {
735
+ RunmjBizAppsSalesDealViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
736
+ RunmjBizAppsSalesDealViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
737
+ RunmjBizAppsSalesDealDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
738
+ mjBizAppsSalesDeal(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesDeal_ | null>;
739
+ CreatemjBizAppsSalesDeal(input: CreatemjBizAppsSalesDealInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
740
+ UpdatemjBizAppsSalesDeal(input: UpdatemjBizAppsSalesDealInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
741
+ DeletemjBizAppsSalesDeal(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
742
+ }
743
+ export declare class mjBizAppsSalesForecastCategoryType_ {
744
+ ID: string;
745
+ Code: string;
746
+ Name: string;
747
+ Description?: string;
748
+ IncludeInCommit: boolean;
749
+ IncludeInBestCase: boolean;
750
+ IncludeInPipeline: boolean;
751
+ DisplayRank: number;
752
+ IsActive: boolean;
753
+ _mj__CreatedAt: Date;
754
+ _mj__UpdatedAt: Date;
755
+ }
756
+ export declare class CreatemjBizAppsSalesForecastCategoryTypeInput {
757
+ ID?: string;
758
+ Code?: string;
759
+ Name?: string;
760
+ Description: string | null;
761
+ IncludeInCommit?: boolean;
762
+ IncludeInBestCase?: boolean;
763
+ IncludeInPipeline?: boolean;
764
+ DisplayRank?: number;
765
+ IsActive?: boolean;
766
+ RestoreContext___?: RestoreContextInput;
767
+ }
768
+ export declare class UpdatemjBizAppsSalesForecastCategoryTypeInput {
769
+ ID: string;
770
+ Code?: string;
771
+ Name?: string;
772
+ Description?: string | null;
773
+ IncludeInCommit?: boolean;
774
+ IncludeInBestCase?: boolean;
775
+ IncludeInPipeline?: boolean;
776
+ DisplayRank?: number;
777
+ IsActive?: boolean;
778
+ OldValues___?: KeyValuePairInput[];
779
+ RestoreContext___?: RestoreContextInput;
780
+ }
781
+ export declare class RunmjBizAppsSalesForecastCategoryTypeViewResult {
782
+ Results: mjBizAppsSalesForecastCategoryType_[];
783
+ UserViewRunID?: string;
784
+ RowCount: number;
785
+ TotalRowCount: number;
786
+ ExecutionTime: number;
787
+ ErrorMessage?: string;
788
+ Success: boolean;
789
+ }
790
+ export declare class mjBizAppsSalesForecastCategoryTypeResolver extends ResolverBase {
791
+ RunmjBizAppsSalesForecastCategoryTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
792
+ RunmjBizAppsSalesForecastCategoryTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
793
+ RunmjBizAppsSalesForecastCategoryTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
794
+ mjBizAppsSalesForecastCategoryType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesForecastCategoryType_ | null>;
795
+ CreatemjBizAppsSalesForecastCategoryType(input: CreatemjBizAppsSalesForecastCategoryTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
796
+ UpdatemjBizAppsSalesForecastCategoryType(input: UpdatemjBizAppsSalesForecastCategoryTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
797
+ DeletemjBizAppsSalesForecastCategoryType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
798
+ }
799
+ export declare class mjBizAppsSalesForecastSnapshot_ {
800
+ ID: string;
801
+ CompanyID: string;
802
+ PipelineID?: string;
803
+ OwnerEmployeeID?: string;
804
+ PeriodStart: Date;
805
+ PeriodEnd: Date;
806
+ CapturedAt: Date;
807
+ CommitAmount?: number;
808
+ BestCaseAmount?: number;
809
+ PipelineAmount?: number;
810
+ ClosedAmount?: number;
811
+ SnapshotJSON?: string;
812
+ _mj__CreatedAt: Date;
813
+ _mj__UpdatedAt: Date;
814
+ Company: string;
815
+ Pipeline?: string;
816
+ OwnerEmployee?: string;
817
+ }
818
+ export declare class CreatemjBizAppsSalesForecastSnapshotInput {
819
+ ID?: string;
820
+ CompanyID?: string;
821
+ PipelineID: string | null;
822
+ OwnerEmployeeID: string | null;
823
+ PeriodStart?: Date;
824
+ PeriodEnd?: Date;
825
+ CapturedAt?: Date;
826
+ CommitAmount: number | null;
827
+ BestCaseAmount: number | null;
828
+ PipelineAmount: number | null;
829
+ ClosedAmount: number | null;
830
+ SnapshotJSON: string | null;
831
+ RestoreContext___?: RestoreContextInput;
832
+ }
833
+ export declare class UpdatemjBizAppsSalesForecastSnapshotInput {
834
+ ID: string;
835
+ CompanyID?: string;
836
+ PipelineID?: string | null;
837
+ OwnerEmployeeID?: string | null;
838
+ PeriodStart?: Date;
839
+ PeriodEnd?: Date;
840
+ CapturedAt?: Date;
841
+ CommitAmount?: number | null;
842
+ BestCaseAmount?: number | null;
843
+ PipelineAmount?: number | null;
844
+ ClosedAmount?: number | null;
845
+ SnapshotJSON?: string | null;
846
+ OldValues___?: KeyValuePairInput[];
847
+ RestoreContext___?: RestoreContextInput;
848
+ }
849
+ export declare class RunmjBizAppsSalesForecastSnapshotViewResult {
850
+ Results: mjBizAppsSalesForecastSnapshot_[];
851
+ UserViewRunID?: string;
852
+ RowCount: number;
853
+ TotalRowCount: number;
854
+ ExecutionTime: number;
855
+ ErrorMessage?: string;
856
+ Success: boolean;
857
+ }
858
+ export declare class mjBizAppsSalesForecastSnapshotResolver extends ResolverBase {
859
+ RunmjBizAppsSalesForecastSnapshotViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
860
+ RunmjBizAppsSalesForecastSnapshotViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
861
+ RunmjBizAppsSalesForecastSnapshotDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
862
+ mjBizAppsSalesForecastSnapshot(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesForecastSnapshot_ | null>;
863
+ CreatemjBizAppsSalesForecastSnapshot(input: CreatemjBizAppsSalesForecastSnapshotInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
864
+ UpdatemjBizAppsSalesForecastSnapshot(input: UpdatemjBizAppsSalesForecastSnapshotInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
865
+ DeletemjBizAppsSalesForecastSnapshot(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
866
+ }
867
+ export declare class mjBizAppsSalesLeadSourceType_ {
868
+ ID: string;
869
+ Code: string;
870
+ Name: string;
871
+ Description?: string;
872
+ IsInbound: boolean;
873
+ IsPaid: boolean;
874
+ AttributionWindowDays?: number;
875
+ DisplayRank: number;
876
+ IsActive: boolean;
877
+ _mj__CreatedAt: Date;
878
+ _mj__UpdatedAt: Date;
879
+ }
880
+ export declare class CreatemjBizAppsSalesLeadSourceTypeInput {
881
+ ID?: string;
882
+ Code?: string;
883
+ Name?: string;
884
+ Description: string | null;
885
+ IsInbound?: boolean;
886
+ IsPaid?: boolean;
887
+ AttributionWindowDays: number | null;
888
+ DisplayRank?: number;
889
+ IsActive?: boolean;
890
+ RestoreContext___?: RestoreContextInput;
891
+ }
892
+ export declare class UpdatemjBizAppsSalesLeadSourceTypeInput {
893
+ ID: string;
894
+ Code?: string;
895
+ Name?: string;
896
+ Description?: string | null;
897
+ IsInbound?: boolean;
898
+ IsPaid?: boolean;
899
+ AttributionWindowDays?: number | null;
900
+ DisplayRank?: number;
901
+ IsActive?: boolean;
902
+ OldValues___?: KeyValuePairInput[];
903
+ RestoreContext___?: RestoreContextInput;
904
+ }
905
+ export declare class RunmjBizAppsSalesLeadSourceTypeViewResult {
906
+ Results: mjBizAppsSalesLeadSourceType_[];
907
+ UserViewRunID?: string;
908
+ RowCount: number;
909
+ TotalRowCount: number;
910
+ ExecutionTime: number;
911
+ ErrorMessage?: string;
912
+ Success: boolean;
913
+ }
914
+ export declare class mjBizAppsSalesLeadSourceTypeResolver extends ResolverBase {
915
+ RunmjBizAppsSalesLeadSourceTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
916
+ RunmjBizAppsSalesLeadSourceTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
917
+ RunmjBizAppsSalesLeadSourceTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
918
+ mjBizAppsSalesLeadSourceType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesLeadSourceType_ | null>;
919
+ CreatemjBizAppsSalesLeadSourceType(input: CreatemjBizAppsSalesLeadSourceTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
920
+ UpdatemjBizAppsSalesLeadSourceType(input: UpdatemjBizAppsSalesLeadSourceTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
921
+ DeletemjBizAppsSalesLeadSourceType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
922
+ }
923
+ export declare class mjBizAppsSalesLifecycleStageType_ {
924
+ ID: string;
925
+ Code: string;
926
+ Name: string;
927
+ Description?: string;
928
+ IsMarketingQualified: boolean;
929
+ IsSalesQualified: boolean;
930
+ IsCustomer: boolean;
931
+ DisplayRank: number;
932
+ IsActive: boolean;
933
+ _mj__CreatedAt: Date;
934
+ _mj__UpdatedAt: Date;
935
+ }
936
+ export declare class CreatemjBizAppsSalesLifecycleStageTypeInput {
937
+ ID?: string;
938
+ Code?: string;
939
+ Name?: string;
940
+ Description: string | null;
941
+ IsMarketingQualified?: boolean;
942
+ IsSalesQualified?: boolean;
943
+ IsCustomer?: boolean;
944
+ DisplayRank?: number;
945
+ IsActive?: boolean;
946
+ RestoreContext___?: RestoreContextInput;
947
+ }
948
+ export declare class UpdatemjBizAppsSalesLifecycleStageTypeInput {
949
+ ID: string;
950
+ Code?: string;
951
+ Name?: string;
952
+ Description?: string | null;
953
+ IsMarketingQualified?: boolean;
954
+ IsSalesQualified?: boolean;
955
+ IsCustomer?: boolean;
956
+ DisplayRank?: number;
957
+ IsActive?: boolean;
958
+ OldValues___?: KeyValuePairInput[];
959
+ RestoreContext___?: RestoreContextInput;
960
+ }
961
+ export declare class RunmjBizAppsSalesLifecycleStageTypeViewResult {
962
+ Results: mjBizAppsSalesLifecycleStageType_[];
963
+ UserViewRunID?: string;
964
+ RowCount: number;
965
+ TotalRowCount: number;
966
+ ExecutionTime: number;
967
+ ErrorMessage?: string;
968
+ Success: boolean;
969
+ }
970
+ export declare class mjBizAppsSalesLifecycleStageTypeResolver extends ResolverBase {
971
+ RunmjBizAppsSalesLifecycleStageTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
972
+ RunmjBizAppsSalesLifecycleStageTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
973
+ RunmjBizAppsSalesLifecycleStageTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
974
+ mjBizAppsSalesLifecycleStageType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesLifecycleStageType_ | null>;
975
+ CreatemjBizAppsSalesLifecycleStageType(input: CreatemjBizAppsSalesLifecycleStageTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
976
+ UpdatemjBizAppsSalesLifecycleStageType(input: UpdatemjBizAppsSalesLifecycleStageTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
977
+ DeletemjBizAppsSalesLifecycleStageType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
978
+ }
979
+ export declare class mjBizAppsSalesLossReason_ {
980
+ ID: string;
981
+ Code: string;
982
+ Name: string;
983
+ Description?: string;
984
+ Category?: string;
985
+ RequiresNotes: boolean;
986
+ IsCompetitive: boolean;
987
+ DisplayRank: number;
988
+ IsActive: boolean;
989
+ _mj__CreatedAt: Date;
990
+ _mj__UpdatedAt: Date;
991
+ }
992
+ export declare class CreatemjBizAppsSalesLossReasonInput {
993
+ ID?: string;
994
+ Code?: string;
995
+ Name?: string;
996
+ Description: string | null;
997
+ Category: string | null;
998
+ RequiresNotes?: boolean;
999
+ IsCompetitive?: boolean;
1000
+ DisplayRank?: number;
1001
+ IsActive?: boolean;
1002
+ RestoreContext___?: RestoreContextInput;
1003
+ }
1004
+ export declare class UpdatemjBizAppsSalesLossReasonInput {
1005
+ ID: string;
1006
+ Code?: string;
1007
+ Name?: string;
1008
+ Description?: string | null;
1009
+ Category?: string | null;
1010
+ RequiresNotes?: boolean;
1011
+ IsCompetitive?: boolean;
1012
+ DisplayRank?: number;
1013
+ IsActive?: boolean;
1014
+ OldValues___?: KeyValuePairInput[];
1015
+ RestoreContext___?: RestoreContextInput;
1016
+ }
1017
+ export declare class RunmjBizAppsSalesLossReasonViewResult {
1018
+ Results: mjBizAppsSalesLossReason_[];
1019
+ UserViewRunID?: string;
1020
+ RowCount: number;
1021
+ TotalRowCount: number;
1022
+ ExecutionTime: number;
1023
+ ErrorMessage?: string;
1024
+ Success: boolean;
1025
+ }
1026
+ export declare class mjBizAppsSalesLossReasonResolver extends ResolverBase {
1027
+ RunmjBizAppsSalesLossReasonViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
1028
+ RunmjBizAppsSalesLossReasonViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
1029
+ RunmjBizAppsSalesLossReasonDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
1030
+ mjBizAppsSalesLossReason(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesLossReason_ | null>;
1031
+ CreatemjBizAppsSalesLossReason(input: CreatemjBizAppsSalesLossReasonInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
1032
+ UpdatemjBizAppsSalesLossReason(input: UpdatemjBizAppsSalesLossReasonInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
1033
+ DeletemjBizAppsSalesLossReason(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
1034
+ }
1035
+ export declare class mjBizAppsSalesPipelineStage_ {
1036
+ ID: string;
1037
+ PipelineID: string;
1038
+ Name: string;
1039
+ Code: string;
1040
+ DisplayOrder: number;
1041
+ Probability?: number;
1042
+ ForecastCategoryTypeID?: string;
1043
+ DealStatusTypeID?: string;
1044
+ RottingDays?: number;
1045
+ EntryCriteria?: string;
1046
+ ExitCriteria?: string;
1047
+ RequiredFields?: string;
1048
+ GuidanceMarkdown?: string;
1049
+ IsActive: boolean;
1050
+ _mj__CreatedAt: Date;
1051
+ _mj__UpdatedAt: Date;
1052
+ OrderStatusOnEntry?: string;
1053
+ Pipeline: string;
1054
+ ForecastCategoryType?: string;
1055
+ DealStatusType?: string;
1056
+ }
1057
+ export declare class CreatemjBizAppsSalesPipelineStageInput {
1058
+ ID?: string;
1059
+ PipelineID?: string;
1060
+ Name?: string;
1061
+ Code?: string;
1062
+ DisplayOrder?: number;
1063
+ Probability: number | null;
1064
+ ForecastCategoryTypeID: string | null;
1065
+ DealStatusTypeID: string | null;
1066
+ RottingDays: number | null;
1067
+ EntryCriteria: string | null;
1068
+ ExitCriteria: string | null;
1069
+ RequiredFields: string | null;
1070
+ GuidanceMarkdown: string | null;
1071
+ IsActive?: boolean;
1072
+ OrderStatusOnEntry: string | null;
1073
+ RestoreContext___?: RestoreContextInput;
1074
+ }
1075
+ export declare class UpdatemjBizAppsSalesPipelineStageInput {
1076
+ ID: string;
1077
+ PipelineID?: string;
1078
+ Name?: string;
1079
+ Code?: string;
1080
+ DisplayOrder?: number;
1081
+ Probability?: number | null;
1082
+ ForecastCategoryTypeID?: string | null;
1083
+ DealStatusTypeID?: string | null;
1084
+ RottingDays?: number | null;
1085
+ EntryCriteria?: string | null;
1086
+ ExitCriteria?: string | null;
1087
+ RequiredFields?: string | null;
1088
+ GuidanceMarkdown?: string | null;
1089
+ IsActive?: boolean;
1090
+ OrderStatusOnEntry?: string | null;
1091
+ OldValues___?: KeyValuePairInput[];
1092
+ RestoreContext___?: RestoreContextInput;
1093
+ }
1094
+ export declare class RunmjBizAppsSalesPipelineStageViewResult {
1095
+ Results: mjBizAppsSalesPipelineStage_[];
1096
+ UserViewRunID?: string;
1097
+ RowCount: number;
1098
+ TotalRowCount: number;
1099
+ ExecutionTime: number;
1100
+ ErrorMessage?: string;
1101
+ Success: boolean;
1102
+ }
1103
+ export declare class mjBizAppsSalesPipelineStageResolver extends ResolverBase {
1104
+ RunmjBizAppsSalesPipelineStageViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
1105
+ RunmjBizAppsSalesPipelineStageViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
1106
+ RunmjBizAppsSalesPipelineStageDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
1107
+ mjBizAppsSalesPipelineStage(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesPipelineStage_ | null>;
1108
+ CreatemjBizAppsSalesPipelineStage(input: CreatemjBizAppsSalesPipelineStageInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
1109
+ UpdatemjBizAppsSalesPipelineStage(input: UpdatemjBizAppsSalesPipelineStageInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
1110
+ DeletemjBizAppsSalesPipelineStage(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
1111
+ }
1112
+ export declare class mjBizAppsSalesPipeline_ {
1113
+ ID: string;
1114
+ CompanyID: string;
1115
+ Name: string;
1116
+ Code: string;
1117
+ Description?: string;
1118
+ DealTypeID?: string;
1119
+ DefaultForecastCategoryTypeID?: string;
1120
+ RequiresDealLines: boolean;
1121
+ CloseWonPolicy?: string;
1122
+ IsDefault: boolean;
1123
+ DisplayRank: number;
1124
+ IsActive: boolean;
1125
+ _mj__CreatedAt: Date;
1126
+ _mj__UpdatedAt: Date;
1127
+ Company: string;
1128
+ DealType?: string;
1129
+ DefaultForecastCategoryType?: string;
1130
+ }
1131
+ export declare class CreatemjBizAppsSalesPipelineInput {
1132
+ ID?: string;
1133
+ CompanyID?: string;
1134
+ Name?: string;
1135
+ Code?: string;
1136
+ Description: string | null;
1137
+ DealTypeID: string | null;
1138
+ DefaultForecastCategoryTypeID: string | null;
1139
+ RequiresDealLines?: boolean;
1140
+ CloseWonPolicy: string | null;
1141
+ IsDefault?: boolean;
1142
+ DisplayRank?: number;
1143
+ IsActive?: boolean;
1144
+ RestoreContext___?: RestoreContextInput;
1145
+ }
1146
+ export declare class UpdatemjBizAppsSalesPipelineInput {
1147
+ ID: string;
1148
+ CompanyID?: string;
1149
+ Name?: string;
1150
+ Code?: string;
1151
+ Description?: string | null;
1152
+ DealTypeID?: string | null;
1153
+ DefaultForecastCategoryTypeID?: string | null;
1154
+ RequiresDealLines?: boolean;
1155
+ CloseWonPolicy?: string | null;
1156
+ IsDefault?: boolean;
1157
+ DisplayRank?: number;
1158
+ IsActive?: boolean;
1159
+ OldValues___?: KeyValuePairInput[];
1160
+ RestoreContext___?: RestoreContextInput;
1161
+ }
1162
+ export declare class RunmjBizAppsSalesPipelineViewResult {
1163
+ Results: mjBizAppsSalesPipeline_[];
1164
+ UserViewRunID?: string;
1165
+ RowCount: number;
1166
+ TotalRowCount: number;
1167
+ ExecutionTime: number;
1168
+ ErrorMessage?: string;
1169
+ Success: boolean;
1170
+ }
1171
+ export declare class mjBizAppsSalesPipelineResolver extends ResolverBase {
1172
+ RunmjBizAppsSalesPipelineViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
1173
+ RunmjBizAppsSalesPipelineViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
1174
+ RunmjBizAppsSalesPipelineDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
1175
+ mjBizAppsSalesPipeline(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesPipeline_ | null>;
1176
+ CreatemjBizAppsSalesPipeline(input: CreatemjBizAppsSalesPipelineInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
1177
+ UpdatemjBizAppsSalesPipeline(input: UpdatemjBizAppsSalesPipelineInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
1178
+ DeletemjBizAppsSalesPipeline(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
1179
+ }
1180
+ export declare class mjBizAppsSalesSalesAccount_ {
1181
+ ID: string;
1182
+ OwnerEmployeeID?: string;
1183
+ AccountTypeID?: string;
1184
+ LifecycleStageTypeID?: string;
1185
+ LeadSourceTypeID?: string;
1186
+ Territory?: string;
1187
+ Tier?: string;
1188
+ ICPFitScore?: number;
1189
+ IndustryCode?: string;
1190
+ EmployeeCountBand?: string;
1191
+ AnnualRevenueBand?: string;
1192
+ HealthStatus?: string;
1193
+ FirstClosedWonDate?: Date;
1194
+ IsActive: boolean;
1195
+ _mj__CreatedAt: Date;
1196
+ _mj__UpdatedAt: Date;
1197
+ Name: string;
1198
+ LegalName?: string;
1199
+ OrganizationTypeID?: string;
1200
+ ParentID?: string;
1201
+ Website?: string;
1202
+ LogoURL?: string;
1203
+ Description?: string;
1204
+ Email?: string;
1205
+ Phone?: string;
1206
+ FoundedDate?: Date;
1207
+ TaxID?: string;
1208
+ Status: string;
1209
+ OwnerEmployee?: string;
1210
+ AccountType?: string;
1211
+ LifecycleStageType?: string;
1212
+ LeadSourceType?: string;
1213
+ }
1214
+ export declare class CreatemjBizAppsSalesSalesAccountInput {
1215
+ ID?: string;
1216
+ OwnerEmployeeID: string | null;
1217
+ AccountTypeID: string | null;
1218
+ LifecycleStageTypeID: string | null;
1219
+ LeadSourceTypeID: string | null;
1220
+ Territory: string | null;
1221
+ Tier: string | null;
1222
+ ICPFitScore: number | null;
1223
+ IndustryCode: string | null;
1224
+ EmployeeCountBand: string | null;
1225
+ AnnualRevenueBand: string | null;
1226
+ HealthStatus: string | null;
1227
+ FirstClosedWonDate: Date | null;
1228
+ IsActive?: boolean;
1229
+ Name?: string;
1230
+ LegalName: string | null;
1231
+ OrganizationTypeID: string | null;
1232
+ ParentID: string | null;
1233
+ Website: string | null;
1234
+ LogoURL: string | null;
1235
+ Description: string | null;
1236
+ Email: string | null;
1237
+ Phone: string | null;
1238
+ FoundedDate: Date | null;
1239
+ TaxID: string | null;
1240
+ Status?: string;
1241
+ RestoreContext___?: RestoreContextInput;
1242
+ }
1243
+ export declare class UpdatemjBizAppsSalesSalesAccountInput {
1244
+ ID: string;
1245
+ OwnerEmployeeID?: string | null;
1246
+ AccountTypeID?: string | null;
1247
+ LifecycleStageTypeID?: string | null;
1248
+ LeadSourceTypeID?: string | null;
1249
+ Territory?: string | null;
1250
+ Tier?: string | null;
1251
+ ICPFitScore?: number | null;
1252
+ IndustryCode?: string | null;
1253
+ EmployeeCountBand?: string | null;
1254
+ AnnualRevenueBand?: string | null;
1255
+ HealthStatus?: string | null;
1256
+ FirstClosedWonDate?: Date | null;
1257
+ IsActive?: boolean;
1258
+ Name?: string;
1259
+ LegalName?: string | null;
1260
+ OrganizationTypeID?: string | null;
1261
+ ParentID?: string | null;
1262
+ Website?: string | null;
1263
+ LogoURL?: string | null;
1264
+ Description?: string | null;
1265
+ Email?: string | null;
1266
+ Phone?: string | null;
1267
+ FoundedDate?: Date | null;
1268
+ TaxID?: string | null;
1269
+ Status?: string;
1270
+ OldValues___?: KeyValuePairInput[];
1271
+ RestoreContext___?: RestoreContextInput;
1272
+ }
1273
+ export declare class RunmjBizAppsSalesSalesAccountViewResult {
1274
+ Results: mjBizAppsSalesSalesAccount_[];
1275
+ UserViewRunID?: string;
1276
+ RowCount: number;
1277
+ TotalRowCount: number;
1278
+ ExecutionTime: number;
1279
+ ErrorMessage?: string;
1280
+ Success: boolean;
1281
+ }
1282
+ export declare class mjBizAppsSalesSalesAccountResolver extends ResolverBase {
1283
+ RunmjBizAppsSalesSalesAccountViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
1284
+ RunmjBizAppsSalesSalesAccountViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
1285
+ RunmjBizAppsSalesSalesAccountDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
1286
+ mjBizAppsSalesSalesAccount(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesSalesAccount_ | null>;
1287
+ CreatemjBizAppsSalesSalesAccount(input: CreatemjBizAppsSalesSalesAccountInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
1288
+ UpdatemjBizAppsSalesSalesAccount(input: UpdatemjBizAppsSalesSalesAccountInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
1289
+ DeletemjBizAppsSalesSalesAccount(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
1290
+ }
1291
+ export declare class mjBizAppsSalesSalesContact_ {
1292
+ ID: string;
1293
+ OwnerEmployeeID?: string;
1294
+ LifecycleStageTypeID?: string;
1295
+ BuyingRoleTypeID?: string;
1296
+ LeadSourceTypeID?: string;
1297
+ Seniority?: string;
1298
+ OptedOutOfOutreach: boolean;
1299
+ DoNotContactReason?: string;
1300
+ LastEngagedAt?: Date;
1301
+ _mj__CreatedAt: Date;
1302
+ _mj__UpdatedAt: Date;
1303
+ FirstName: string;
1304
+ LastName: string;
1305
+ MiddleName?: string;
1306
+ Prefix?: string;
1307
+ Suffix?: string;
1308
+ PreferredName?: string;
1309
+ Title?: string;
1310
+ Email?: string;
1311
+ Phone?: string;
1312
+ DateOfBirth?: Date;
1313
+ Gender?: string;
1314
+ PhotoURL?: string;
1315
+ Bio?: string;
1316
+ LinkedUserID?: string;
1317
+ Status: string;
1318
+ OwnerEmployee?: string;
1319
+ LifecycleStageType?: string;
1320
+ BuyingRoleType?: string;
1321
+ LeadSourceType?: string;
1322
+ }
1323
+ export declare class CreatemjBizAppsSalesSalesContactInput {
1324
+ ID?: string;
1325
+ OwnerEmployeeID: string | null;
1326
+ LifecycleStageTypeID: string | null;
1327
+ BuyingRoleTypeID: string | null;
1328
+ LeadSourceTypeID: string | null;
1329
+ Seniority: string | null;
1330
+ OptedOutOfOutreach?: boolean;
1331
+ DoNotContactReason: string | null;
1332
+ LastEngagedAt: Date | null;
1333
+ FirstName?: string;
1334
+ LastName?: string;
1335
+ MiddleName: string | null;
1336
+ Prefix: string | null;
1337
+ Suffix: string | null;
1338
+ PreferredName: string | null;
1339
+ Title: string | null;
1340
+ Email: string | null;
1341
+ Phone: string | null;
1342
+ DateOfBirth: Date | null;
1343
+ Gender: string | null;
1344
+ PhotoURL: string | null;
1345
+ Bio: string | null;
1346
+ LinkedUserID: string | null;
1347
+ Status?: string;
1348
+ RestoreContext___?: RestoreContextInput;
1349
+ }
1350
+ export declare class UpdatemjBizAppsSalesSalesContactInput {
1351
+ ID: string;
1352
+ OwnerEmployeeID?: string | null;
1353
+ LifecycleStageTypeID?: string | null;
1354
+ BuyingRoleTypeID?: string | null;
1355
+ LeadSourceTypeID?: string | null;
1356
+ Seniority?: string | null;
1357
+ OptedOutOfOutreach?: boolean;
1358
+ DoNotContactReason?: string | null;
1359
+ LastEngagedAt?: Date | null;
1360
+ FirstName?: string;
1361
+ LastName?: string;
1362
+ MiddleName?: string | null;
1363
+ Prefix?: string | null;
1364
+ Suffix?: string | null;
1365
+ PreferredName?: string | null;
1366
+ Title?: string | null;
1367
+ Email?: string | null;
1368
+ Phone?: string | null;
1369
+ DateOfBirth?: Date | null;
1370
+ Gender?: string | null;
1371
+ PhotoURL?: string | null;
1372
+ Bio?: string | null;
1373
+ LinkedUserID?: string | null;
1374
+ Status?: string;
1375
+ OldValues___?: KeyValuePairInput[];
1376
+ RestoreContext___?: RestoreContextInput;
1377
+ }
1378
+ export declare class RunmjBizAppsSalesSalesContactViewResult {
1379
+ Results: mjBizAppsSalesSalesContact_[];
1380
+ UserViewRunID?: string;
1381
+ RowCount: number;
1382
+ TotalRowCount: number;
1383
+ ExecutionTime: number;
1384
+ ErrorMessage?: string;
1385
+ Success: boolean;
1386
+ }
1387
+ export declare class mjBizAppsSalesSalesContactResolver extends ResolverBase {
1388
+ RunmjBizAppsSalesSalesContactViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
1389
+ RunmjBizAppsSalesSalesContactViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
1390
+ RunmjBizAppsSalesSalesContactDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
1391
+ mjBizAppsSalesSalesContact(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<mjBizAppsSalesSalesContact_ | null>;
1392
+ CreatemjBizAppsSalesSalesContact(input: CreatemjBizAppsSalesSalesContactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
1393
+ UpdatemjBizAppsSalesSalesContact(input: UpdatemjBizAppsSalesSalesContactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
1394
+ DeletemjBizAppsSalesSalesContact(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
1395
+ }
1396
+ //# sourceMappingURL=generated.d.ts.map