@@ -3053,10 +3053,10 @@ const performSeed: () => Promise<void> = async () => {
30533053 thomasEmrax ,
30543054 ner ,
30553055 daysFromNow ( 30 ) ,
3056- 'notes... ' ,
3056+ 'Send Google mid-year impact report with project highlights ' ,
30573057 sponsor . sponsorId ,
3058- daysAgo ( 60 ) ,
3059- thomasEmrax . userId
3058+ daysFromNow ( 20 ) ,
3059+ superman . userId
30603060 ) ;
30613061
30623062 const altiumSponsor = await FinanceServices . createSponsor (
@@ -3242,7 +3242,7 @@ const performSeed: () => Promise<void> = async () => {
32423242 highlightThresholdDays : 14 ,
32433243 status : 'IN_PROGRESS' ,
32443244 firstContactMethod : 'OUTBOUND_EMAIL' ,
3245- contactorUserId : thomasEmrax . userId ,
3245+ contactorUserId : lexLuther . userId ,
32463246 contactId : prospectiveContact1 . sponsorContactId ,
32473247 notes : 'Reached out about potential parts sponsorship for battery systems'
32483248 }
@@ -3256,7 +3256,7 @@ const performSeed: () => Promise<void> = async () => {
32563256 highlightThresholdDays : 10 ,
32573257 status : 'NO_RESPONSE' ,
32583258 firstContactMethod : 'OUTBOUND_EMAIL' ,
3259- contactorUserId : thomasEmrax . userId ,
3259+ contactorUserId : wonderwoman . userId ,
32603260 contactId : prospectiveContact2 . sponsorContactId ,
32613261 notes : 'Sent initial sponsorship proposal, no reply yet'
32623262 }
@@ -3270,7 +3270,7 @@ const performSeed: () => Promise<void> = async () => {
32703270 highlightThresholdDays : 7 ,
32713271 status : 'IN_PROGRESS' ,
32723272 firstContactMethod : 'INBOUND_EMAIL' ,
3273- contactorUserId : thomasEmrax . userId ,
3273+ contactorUserId : flash . userId ,
32743274 contactId : prospectiveContact3 . sponsorContactId ,
32753275 notes : 'They reached out offering software licenses for the team'
32763276 }
@@ -3284,7 +3284,7 @@ const performSeed: () => Promise<void> = async () => {
32843284 highlightThresholdDays : 10 ,
32853285 status : 'IN_PROGRESS' ,
32863286 firstContactMethod : 'INBOUND_FORM' ,
3287- contactorUserId : thomasEmrax . userId ,
3287+ contactorUserId : aquaman . userId ,
32883288 contactId : prospectiveContact4 . sponsorContactId ,
32893289 notes : 'Filled out our sponsorship interest form, interested in providing microcontrollers and dev boards'
32903290 }
@@ -3312,7 +3312,7 @@ const performSeed: () => Promise<void> = async () => {
33123312 highlightThresholdDays : 10 ,
33133313 status : 'IN_PROGRESS' ,
33143314 firstContactMethod : 'OTHER' ,
3315- contactorUserId : thomasEmrax . userId ,
3315+ contactorUserId : batman . userId ,
33163316 contactId : prospectiveContact6 . sponsorContactId ,
33173317 notes : 'Met at local manufacturing expo, interested in providing machining services at reduced cost'
33183318 }
@@ -3326,7 +3326,7 @@ const performSeed: () => Promise<void> = async () => {
33263326 highlightThresholdDays : 14 ,
33273327 status : 'DECLINED' ,
33283328 firstContactMethod : 'OUTBOUND_EMAIL' ,
3329- contactorUserId : thomasEmrax . userId ,
3329+ contactorUserId : superman . userId ,
33303330 contactId : prospectiveContact7 . sponsorContactId ,
33313331 notes : 'Declined for this year, suggested we reapply next fiscal year in September'
33323332 }
@@ -3340,7 +3340,7 @@ const performSeed: () => Promise<void> = async () => {
33403340 highlightThresholdDays : 7 ,
33413341 status : 'IN_PROGRESS' ,
33423342 firstContactMethod : 'INBOUND_EMAIL' ,
3343- contactorUserId : thomasEmrax . userId ,
3343+ contactorUserId : lexLuther . userId ,
33443344 contactId : prospectiveContact8 . sponsorContactId ,
33453345 notes : 'Interested in providing MATLAB/Simulink licenses, scheduling a call next week'
33463346 }
@@ -3363,7 +3363,8 @@ const performSeed: () => Promise<void> = async () => {
33633363 daysFromNow ( 60 ) ,
33643364 'Send McMaster-Carr updated parts list for spring semester' ,
33653365 mcmasterSponsor . sponsorId ,
3366- daysFromNow ( 45 )
3366+ daysFromNow ( 45 ) ,
3367+ lexLuther . userId
33673368 ) ;
33683369
33693370 await FinanceServices . createSponsorTask (
@@ -3373,7 +3374,7 @@ const performSeed: () => Promise<void> = async () => {
33733374 'Submit Bose quarterly progress report' ,
33743375 boseSponsor . sponsorId ,
33753376 daysAgo ( 10 ) ,
3376- thomasEmrax . userId
3377+ wonderwoman . userId
33773378 ) ;
33783379
33793380 await FinanceServices . createSponsorTask (
@@ -3383,15 +3384,17 @@ const performSeed: () => Promise<void> = async () => {
33833384 'Prepare annual sponsorship renewal presentation for NEU COE' ,
33843385 neuSponsor . sponsorId ,
33853386 daysFromNow ( 60 ) ,
3386- thomasEmrax . userId
3387+ batman . userId
33873388 ) ;
33883389
33893390 await FinanceServices . createSponsorTask (
33903391 thomasEmrax ,
33913392 ner ,
33923393 daysFromNow ( 7 ) ,
33933394 'Send thank-you letter and team photo to Bose' ,
3394- boseSponsor . sponsorId
3395+ boseSponsor . sponsorId ,
3396+ undefined ,
3397+ aquaman . userId
33953398 ) ;
33963399
33973400 // Prospective sponsor tasks
@@ -3401,7 +3404,7 @@ const performSeed: () => Promise<void> = async () => {
34013404 notes : 'Follow up email with Tesla partnership proposal PDF' ,
34023405 prospectiveSponsorId : teslaProsSpons . prospectiveSponsorId ,
34033406 notifyDate : daysFromNow ( 1 ) ,
3404- assigneeUserId : thomasEmrax . userId
3407+ assigneeUserId : lexLuther . userId
34053408 }
34063409 } ) ;
34073410
@@ -3410,7 +3413,7 @@ const performSeed: () => Promise<void> = async () => {
34103413 dueDate : daysFromNow ( 10 ) ,
34113414 notes : 'Schedule demo call with SolidWorks academic team' ,
34123415 prospectiveSponsorId : solidworksProsSpons . prospectiveSponsorId ,
3413- assigneeUserId : thomasEmrax . userId
3416+ assigneeUserId : flash . userId
34143417 }
34153418 } ) ;
34163419
@@ -3420,7 +3423,7 @@ const performSeed: () => Promise<void> = async () => {
34203423 notes : 'Send TI the team roster for university program enrollment' ,
34213424 prospectiveSponsorId : tiProsSpons . prospectiveSponsorId ,
34223425 notifyDate : daysAgo ( 5 ) ,
3423- assigneeUserId : thomasEmrax . userId ,
3426+ assigneeUserId : aquaman . userId ,
34243427 done : true
34253428 }
34263429 } ) ;
@@ -3430,7 +3433,8 @@ const performSeed: () => Promise<void> = async () => {
34303433 dueDate : daysFromNow ( 5 ) ,
34313434 notes : 'Prepare MathWorks sponsorship tier options document' ,
34323435 prospectiveSponsorId : mathworksProsSpons . prospectiveSponsorId ,
3433- notifyDate : daysFromNow ( 2 )
3436+ notifyDate : daysFromNow ( 2 ) ,
3437+ assigneeUserId : lexLuther . userId
34343438 }
34353439 } ) ;
34363440
@@ -3439,7 +3443,7 @@ const performSeed: () => Promise<void> = async () => {
34393443 dueDate : daysFromNow ( 14 ) ,
34403444 notes : 'Draft MATLAB workshop proposal to show value of partnership' ,
34413445 prospectiveSponsorId : mathworksProsSpons . prospectiveSponsorId ,
3442- assigneeUserId : thomasEmrax . userId
3446+ assigneeUserId : wonderwoman . userId
34433447 }
34443448 } ) ;
34453449
0 commit comments