-
Notifications
You must be signed in to change notification settings - Fork 3.1k
/
Copy pathOriginalMessage.ts
637 lines (495 loc) · 19 KB
/
OriginalMessage.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
import type {ValueOf} from 'type-fest';
import type CONST from '@src/CONST';
import type DeepValueOf from '@src/types/utils/DeepValueOf';
import type {OldDotOriginalMessageMap} from './OldDotAction';
import type ReportActionName from './ReportActionName';
/** Types of join workspace resolutions */
type JoinWorkspaceResolution = ValueOf<typeof CONST.REPORT.ACTIONABLE_MENTION_JOIN_WORKSPACE_RESOLUTION>;
/** Types of payments methods */
type PaymentMethodType = DeepValueOf<typeof CONST.IOU.PAYMENT_TYPE | typeof CONST.IOU.REPORT_ACTION_TYPE | typeof CONST.WALLET.TRANSFER_METHOD_TYPE>;
/** Types of sources of original message */
type OriginalMessageSource = 'Chronos' | 'email' | 'ios' | 'android' | 'web' | '';
/** Details provided when sending money */
type IOUDetails = {
/** How much was sent */
amount: number;
/** Optional comment */
comment: string;
/** Currency of the money sent */
currency: string;
};
/** Model of `IOU` report action */
type OriginalMessageIOU = {
/** The ID of the `IOU` transaction */
IOUTransactionID?: string;
/** ID of the `IOU` report */
IOUReportID?: string;
/** ID of the expense report */
expenseReportID?: string;
/** How much was transactioned */
amount: number;
/** Was the action created automatically, not by a human */
automaticAction?: boolean;
/** Optional comment */
comment?: string;
/** Currency of the transactioned money */
currency: string;
/** When was the `IOU` last modified */
lastModified?: string;
/** Who participated in the transaction, by accountID */
participantAccountIDs?: number[];
/** Type of `IOU` report action */
type: ValueOf<typeof CONST.IOU.REPORT_ACTION_TYPE>;
/** If the action was cancelled, this is the reason for the cancellation */
cancellationReason?: string;
/** Type of payment method used in transaction */
paymentType?: PaymentMethodType;
/** Timestamp of when the `IOU` report action was deleted */
deleted?: string;
/** Only exists when we are sending money */
IOUDetails?: IOUDetails;
/** Collection of accountIDs of users mentioned in message */
whisperedTo?: number[];
};
/** Names of moderation decisions */
type DecisionName = ValueOf<
Pick<
typeof CONST.MODERATION,
'MODERATOR_DECISION_PENDING' | 'MODERATOR_DECISION_PENDING_HIDE' | 'MODERATOR_DECISION_PENDING_REMOVE' | 'MODERATOR_DECISION_APPROVED' | 'MODERATOR_DECISION_HIDDEN'
>
>;
/** Model of moderator decision */
type Decision = {
/** Name of the decision */
decision: DecisionName;
/** When was the decision made */
timestamp?: string;
};
/** Model of user reaction */
type User = {
/** Account ID of the user that reacted to the comment */
accountID: number;
/** What's the skin tone of the user reaction */
skinTone: number;
};
/** Model of comment reaction */
type Reaction = {
/** Which emoji was used to react to the comment */
emoji: string;
/** Which users reacted with this emoji */
users: User[];
};
/** Model of `add comment` report action */
type OriginalMessageAddComment = {
/** HTML content of the comment */
html: string;
/** Origin of the comment */
source?: OriginalMessageSource;
/** When was the comment last modified */
lastModified?: string;
/** ID of the task report */
taskReportID?: string;
/** Collection of accountIDs of users mentioned in message */
whisperedTo: number[];
/** List accountIDs are mentioned in message */
mentionedAccountIDs?: number[];
};
/** Model of `actionable mention whisper` report action */
type OriginalMessageActionableMentionWhisper = {
/** Account IDs of users that aren't members of the room */
inviteeAccountIDs: number[];
/** Decision on whether to invite users that were mentioned but aren't members or do nothing */
resolution?: ValueOf<typeof CONST.REPORT.ACTIONABLE_MENTION_WHISPER_RESOLUTION> | null;
/** Collection of accountIDs of users mentioned in message */
whisperedTo?: number[];
};
/** Model of `actionable report mention whisper` report action */
type OriginalMessageActionableReportMentionWhisper = {
/** Decision on whether to create a report that were mentioned but doesn't exist or do nothing */
resolution?: ValueOf<typeof CONST.REPORT.ACTIONABLE_REPORT_MENTION_WHISPER_RESOLUTION> | null;
/** Collection of accountIDs of users mentioned in message */
whisperedTo?: number[];
};
/** Model of `submitted` report action */
type OriginalMessageSubmitted = {
/** Approved expense amount */
amount: number;
/** Currency of the approved expense amount */
currency: string;
/** Report ID of the expense */
expenseReportID: string;
/** Was the report submitted via harvesting (delayed submit) */
harvesting?: boolean;
};
/** Model of `closed` report action */
type OriginalMessageClosed = {
/** Name of the policy */
policyName: string;
/** What was the reason to close the report */
reason: ValueOf<typeof CONST.REPORT.ARCHIVE_REASON>;
/** When was the message last modified */
lastModified?: string;
/** If the report was closed because accounts got merged, then this is the new account ID */
newAccountID?: number;
/** If the report was closed because accounts got merged, then this is the old account ID */
oldAccountID?: number;
/** Name of the invoice receiver's policy */
receiverPolicyName?: string;
};
/** Model of `renamed` report action, created when chat rooms get renamed */
type OriginalMessageRenamed = {
/** Renamed room comment */
html: string;
/** When was report action last modified */
lastModified: string;
/** Old room name */
oldName: string;
/** New room name */
newName: string;
};
/** Model of Chronos OOO Timestamp */
type ChronosOOOTimestamp = {
/** Date timestamp */
date: string;
};
/** Model of Chronos OOO Event */
type ChronosOOOEvent = {
/** ID of the OOO event */
id: string;
/** How many days will the user be OOO */
lengthInDays: number;
/** Description of the OOO state */
summary: string;
/** When will the OOO state start */
start: ChronosOOOTimestamp;
/** When will the OOO state end */
end: ChronosOOOTimestamp;
};
/** Model of `Chronos OOO List` report action */
type OriginalMessageChronosOOOList = {
/** Collection of OOO events to show in report action */
events: ChronosOOOEvent[];
};
/** Model of `report preview` report action */
type OriginalMessageReportPreview = {
/** ID of the report to be previewed */
linkedReportID: string;
/** Collection of accountIDs of users mentioned in report */
whisperedTo?: number[];
};
/** Model of change log */
type OriginalMessageChangeLog = {
/** Account IDs of users that either got invited or removed from the room */
targetAccountIDs?: number[];
/** Name of the chat room */
roomName?: string;
/** Description of the chat room */
description?: string;
/** ID of the report */
reportID?: number;
/** Old name of the workspace */
oldName?: string;
/** New name of the workspace */
newName?: string;
/** Email of user */
email?: string;
/** Role of user */
role?: string;
/** When was it last modified */
lastModified?: string;
/** New role of user */
newValue?: string;
/** Old role of user */
oldValue?: string;
};
/** Model of `join policy changelog` report action */
type OriginalMessageJoinPolicyChangeLog = {
/** What was the invited user decision */
choice: JoinWorkspaceResolution;
/** ID of the affected policy */
policyID: string;
};
/** Model of `modified expense` report action */
type OriginalMessageModifiedExpense = {
/** Old content of the comment */
oldComment?: string;
/** Edited content of the comment */
newComment?: string;
/** Edited merchant name */
merchant?: string;
/** Old creation date timestamp */
oldCreated?: string;
/** Edited creation date timestamp */
created?: string;
/** Old merchant name */
oldMerchant?: string;
/** Old expense amount */
oldAmount?: number;
/** Edited expense amount */
amount?: number;
/** Old expense amount currency */
oldCurrency?: string;
/** Edited expense amount currency */
currency?: string;
/** Edited expense category */
category?: string;
/** Old expense category */
oldCategory?: string;
/** Edited expense tag */
tag?: string;
/** Old expense tag */
oldTag?: string;
/** Edited billable */
billable?: string;
/** Old billable */
oldBillable?: string;
/** Old expense tag amount */
oldTaxAmount?: number;
/** Edited expense tax amount */
taxAmount?: number;
/** Edited expense tax rate */
taxRate?: string;
/** Old expense tax rate */
oldTaxRate?: string;
/** Edited expense reimbursable */
reimbursable?: string;
/** Old expense reimbursable */
oldReimbursable?: string;
/** Collection of accountIDs of users mentioned in expense report */
whisperedTo?: number[];
/** The ID of moved report */
movedToReportID?: string;
};
/** Model of `reimbursement queued` report action */
type OriginalMessageReimbursementQueued = {
/** How is the payment getting reimbursed */
paymentType: DeepValueOf<typeof CONST.IOU.PAYMENT_TYPE>;
};
/** Model of `actionable tracked expense whisper` report action */
type OriginalMessageActionableTrackedExpenseWhisper = {
/** ID of the transaction */
transactionID: string;
/** When was the tracked expense whisper last modified */
lastModified: string;
/** What was the decision of the user */
resolution?: ValueOf<typeof CONST.REPORT.ACTIONABLE_TRACK_EXPENSE_WHISPER_RESOLUTION>;
};
/** Model of `reimbursement dequeued` report action */
type OriginalMessageReimbursementDequeued = {
/** Why the reimbursement was cancelled */
cancellationReason: ValueOf<typeof CONST.REPORT.CANCEL_PAYMENT_REASONS>;
/** ID of the `expense` report */
expenseReportID?: string;
/** Amount that wasn't reimbursed */
amount: number;
/** Currency of the money that wasn't reimbursed */
currency: string;
};
/** Model of `moved` report action */
type OriginalMessageMoved = {
/** ID of the old policy */
fromPolicyID: string;
/** ID of the new policy */
toPolicyID: string;
/** ID of the new parent report */
newParentReportID: string;
/** ID of the moved report */
movedReportID: string;
};
/** Model of `dismissed violation` report action */
type OriginalMessageDismissedViolation = {
/** Why the violation was dismissed */
reason: string;
/** Name of the violation */
violationName: string;
};
/** Model of `trip room preview` report action */
type OriginalMessageTripRoomPreview = {
/** ID of the report to be previewed */
linkedReportID: string;
/** When was report action last modified */
lastModified?: string;
/** Collection of accountIDs of users mentioned in report */
whisperedTo?: number[];
};
/** Model of `approved` report action */
type OriginalMessageApproved = {
/** Approved expense amount */
amount: number;
/** Currency of the approved expense amount */
currency: string;
/** Report ID of the expense */
expenseReportID: string;
};
/** Model of `forwarded` report action */
type OriginalMessageForwarded = {
/** Forwarded expense amount */
amount: number;
/** Currency of the forwarded expense amount */
currency: string;
/** Report ID of the expense */
expenseReportID: string;
};
/**
*
*/
type OriginalMessageExportIntegration = {
/**
* Whether the export was done via an automation
*/
automaticAction: false;
/**
* The integration that was exported to (display text)
*/
label: string;
/**
*
*/
lastModified: string;
/**
* Whether the report was manually marked as exported
*/
markedManually: boolean;
/**
* An list of URLs to the report in the integration for company card expenses
*/
nonReimbursableUrls?: string[];
/**
* An list of URLs to the report in the integration for out of pocket expenses
*/
reimbursableUrls?: string[];
};
/** Model of `unapproved` report action */
type OriginalMessageUnapproved = {
/** Unapproved expense amount */
amount: number;
/** Currency of the unapproved expense amount */
currency: string;
/** Report ID of the expense */
expenseReportID: string;
};
/** Model of `Removed From Approval Chain` report action */
type OriginalMessageRemovedFromApprovalChain = {
/** The submitter IDs whose approval chains changed such that the approver was removed from their approval chains */
submittersAccountIDs: number[];
/** The accountID of the approver who was removed from the submitter's approval chain */
whisperedTo: number[];
};
/**
* Model of `Add payment card` report action
*/
type OriginalMessageAddPaymentCard = Record<string, never>;
/**
* Original message for INTEGRATIONSYNCFAILED actions
*/
type OriginalMessageIntegrationSyncFailed = {
/** The user friendly connection name */
label: string;
/** The source of the connection sync */
source: string;
/** The error message from Integration Server */
errorMessage: string;
};
/**
* Model of CARD_ISSUED, CARD_MISSING_ADDRESS, and CARD_ISSUED_VIRTUAL actions
*/
type OriginalMessageExpensifyCard = {
/** The id of the user the card was assigned to */
assigneeAccountID: number;
};
/**
* Original message for CARD_ISSUED, CARD_MISSING_ADDRESS, and CARD_ISSUED_VIRTUAL actions
*/
type IssueNewCardOriginalMessage = OriginalMessage<
typeof CONST.REPORT.ACTIONS.TYPE.CARD_MISSING_ADDRESS | typeof CONST.REPORT.ACTIONS.TYPE.CARD_ISSUED | typeof CONST.REPORT.ACTIONS.TYPE.CARD_ISSUED_VIRTUAL
>;
/** The map type of original message */
/* eslint-disable jsdoc/require-jsdoc */
type OriginalMessageMap = {
[CONST.REPORT.ACTIONS.TYPE.ACTIONABLE_ADD_PAYMENT_CARD]: OriginalMessageAddPaymentCard;
[CONST.REPORT.ACTIONS.TYPE.ACTIONABLE_JOIN_REQUEST]: OriginalMessageJoinPolicyChangeLog;
[CONST.REPORT.ACTIONS.TYPE.ACTIONABLE_MENTION_WHISPER]: OriginalMessageActionableMentionWhisper;
[CONST.REPORT.ACTIONS.TYPE.ACTIONABLE_REPORT_MENTION_WHISPER]: OriginalMessageActionableReportMentionWhisper;
[CONST.REPORT.ACTIONS.TYPE.ACTIONABLE_TRACK_EXPENSE_WHISPER]: OriginalMessageActionableTrackedExpenseWhisper;
[CONST.REPORT.ACTIONS.TYPE.ADD_COMMENT]: OriginalMessageAddComment;
[CONST.REPORT.ACTIONS.TYPE.APPROVED]: OriginalMessageApproved;
[CONST.REPORT.ACTIONS.TYPE.CHANGE_FIELD]: never;
[CONST.REPORT.ACTIONS.TYPE.CHANGE_POLICY]: never;
[CONST.REPORT.ACTIONS.TYPE.CHANGE_TYPE]: never;
[CONST.REPORT.ACTIONS.TYPE.CHRONOS_OOO_LIST]: OriginalMessageChronosOOOList;
[CONST.REPORT.ACTIONS.TYPE.CLOSED]: OriginalMessageClosed;
[CONST.REPORT.ACTIONS.TYPE.CREATED]: never;
[CONST.REPORT.ACTIONS.TYPE.DELEGATE_SUBMIT]: never;
[CONST.REPORT.ACTIONS.TYPE.DISMISSED_VIOLATION]: OriginalMessageDismissedViolation;
[CONST.REPORT.ACTIONS.TYPE.EXPORTED_TO_CSV]: never;
[CONST.REPORT.ACTIONS.TYPE.EXPORTED_TO_INTEGRATION]: OriginalMessageExportIntegration;
[CONST.REPORT.ACTIONS.TYPE.FORWARDED]: OriginalMessageForwarded;
[CONST.REPORT.ACTIONS.TYPE.HOLD]: never;
[CONST.REPORT.ACTIONS.TYPE.HOLD_COMMENT]: never;
[CONST.REPORT.ACTIONS.TYPE.INTEGRATIONS_MESSAGE]: never;
[CONST.REPORT.ACTIONS.TYPE.IOU]: OriginalMessageIOU;
[CONST.REPORT.ACTIONS.TYPE.MANAGER_ATTACH_RECEIPT]: never;
[CONST.REPORT.ACTIONS.TYPE.MANAGER_DETACH_RECEIPT]: never;
[CONST.REPORT.ACTIONS.TYPE.MARK_REIMBURSED_FROM_INTEGRATION]: never;
[CONST.REPORT.ACTIONS.TYPE.MARKED_REIMBURSED]: never;
[CONST.REPORT.ACTIONS.TYPE.MERGED_WITH_CASH_TRANSACTION]: never;
[CONST.REPORT.ACTIONS.TYPE.MODIFIED_EXPENSE]: OriginalMessageModifiedExpense;
[CONST.REPORT.ACTIONS.TYPE.MOVED]: OriginalMessageMoved;
[CONST.REPORT.ACTIONS.TYPE.OUTDATED_BANK_ACCOUNT]: never;
[CONST.REPORT.ACTIONS.TYPE.REIMBURSEMENT_ACH_BOUNCE]: never;
[CONST.REPORT.ACTIONS.TYPE.REIMBURSEMENT_ACH_CANCELLED]: never;
[CONST.REPORT.ACTIONS.TYPE.REIMBURSEMENT_ACCOUNT_CHANGED]: never;
[CONST.REPORT.ACTIONS.TYPE.REIMBURSEMENT_DEQUEUED]: OriginalMessageReimbursementDequeued;
[CONST.REPORT.ACTIONS.TYPE.REIMBURSEMENT_DELAYED]: never;
[CONST.REPORT.ACTIONS.TYPE.REIMBURSEMENT_QUEUED]: OriginalMessageReimbursementQueued;
[CONST.REPORT.ACTIONS.TYPE.REJECTED]: never;
[CONST.REPORT.ACTIONS.TYPE.REMOVED_FROM_APPROVAL_CHAIN]: OriginalMessageRemovedFromApprovalChain;
[CONST.REPORT.ACTIONS.TYPE.RENAMED]: OriginalMessageRenamed;
[CONST.REPORT.ACTIONS.TYPE.REPORT_PREVIEW]: OriginalMessageReportPreview;
[CONST.REPORT.ACTIONS.TYPE.SELECTED_FOR_RANDOM_AUDIT]: never;
[CONST.REPORT.ACTIONS.TYPE.SHARE]: never;
[CONST.REPORT.ACTIONS.TYPE.STRIPE_PAID]: never;
[CONST.REPORT.ACTIONS.TYPE.SUBMITTED]: OriginalMessageSubmitted;
[CONST.REPORT.ACTIONS.TYPE.TASK_CANCELLED]: never;
[CONST.REPORT.ACTIONS.TYPE.TASK_COMPLETED]: never;
[CONST.REPORT.ACTIONS.TYPE.TASK_EDITED]: never;
[CONST.REPORT.ACTIONS.TYPE.TASK_REOPENED]: never;
[CONST.REPORT.ACTIONS.TYPE.TAKE_CONTROL]: never;
[CONST.REPORT.ACTIONS.TYPE.UNAPPROVED]: OriginalMessageUnapproved;
[CONST.REPORT.ACTIONS.TYPE.UNHOLD]: never;
[CONST.REPORT.ACTIONS.TYPE.UNSHARE]: never;
[CONST.REPORT.ACTIONS.TYPE.UPDATE_GROUP_CHAT_MEMBER_ROLE]: never;
[CONST.REPORT.ACTIONS.TYPE.TRIPPREVIEW]: OriginalMessageTripRoomPreview;
[CONST.REPORT.ACTIONS.TYPE.REIMBURSEMENT_REQUESTED]: never;
[CONST.REPORT.ACTIONS.TYPE.REIMBURSEMENT_SETUP]: never;
[CONST.REPORT.ACTIONS.TYPE.EXPORTED_TO_QUICK_BOOKS]: never;
[CONST.REPORT.ACTIONS.TYPE.DONATION]: never;
[CONST.REPORT.ACTIONS.TYPE.DELETED_ACCOUNT]: never;
[CONST.REPORT.ACTIONS.TYPE.REIMBURSEMENT_REQUESTED]: never;
[CONST.REPORT.ACTIONS.TYPE.REIMBURSEMENT_SETUP]: never;
[CONST.REPORT.ACTIONS.TYPE.REIMBURSEMENT_SETUP_REQUESTED]: never;
[CONST.REPORT.ACTIONS.TYPE.CARD_ISSUED]: OriginalMessageExpensifyCard;
[CONST.REPORT.ACTIONS.TYPE.CARD_MISSING_ADDRESS]: OriginalMessageExpensifyCard;
[CONST.REPORT.ACTIONS.TYPE.CARD_ISSUED_VIRTUAL]: OriginalMessageExpensifyCard;
[CONST.REPORT.ACTIONS.TYPE.INTEGRATION_SYNC_FAILED]: OriginalMessageIntegrationSyncFailed;
} & OldDotOriginalMessageMap & {
[T in ValueOf<typeof CONST.REPORT.ACTIONS.TYPE.POLICY_CHANGE_LOG>]: OriginalMessageChangeLog;
} & {
[T in ValueOf<typeof CONST.REPORT.ACTIONS.TYPE.ROOM_CHANGE_LOG>]: OriginalMessageChangeLog;
};
type OriginalMessage<T extends ReportActionName> = OriginalMessageMap[T];
export default OriginalMessage;
export type {
DecisionName,
OriginalMessageIOU,
ChronosOOOEvent,
PaymentMethodType,
OriginalMessageSource,
Reaction,
Decision,
OriginalMessageChangeLog,
JoinWorkspaceResolution,
OriginalMessageModifiedExpense,
OriginalMessageExportIntegration,
IssueNewCardOriginalMessage,
};