-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
193 changed files
with
2,241 additions
and
1,241 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
20.9.0 | ||
20.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
type AcceptWalletTermsParams = { | ||
hasAcceptedTerms: boolean; | ||
reportID: string; | ||
}; | ||
|
||
export default AcceptWalletTermsParams; |
5 changes: 5 additions & 0 deletions
5
src/libs/API/parameters/ActivatePhysicalExpensifyCardParams.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
type ActivatePhysicalExpensifyCardParams = { | ||
cardLastFourDigits: string; | ||
cardID: number; | ||
}; | ||
export default ActivatePhysicalExpensifyCardParams; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
type AddCommentOrAttachementParams = { | ||
reportID: string; | ||
reportActionID?: string; | ||
commentReportActionID?: string | null; | ||
reportComment?: string; | ||
file?: File; | ||
timezone?: string; | ||
shouldAllowActionableMentionWhispers?: boolean; | ||
clientCreatedTime?: string; | ||
isOldDotConciergeChat?: boolean; | ||
}; | ||
|
||
export default AddCommentOrAttachementParams; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
type AddEmojiReactionParams = { | ||
reportID: string; | ||
skinTone: string | number; | ||
emojiCode: string; | ||
reportActionID: string; | ||
createdAt: string; | ||
useEmojiReactions: boolean; | ||
}; | ||
|
||
export default AddEmojiReactionParams; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
type AddMembersToWorkspaceParams = { | ||
employees: string; | ||
welcomeNote: string; | ||
policyID: string; | ||
reportCreationData?: string; | ||
}; | ||
|
||
export default AddMembersToWorkspaceParams; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
type AddNewContactMethodParams = {partnerUserID: string}; | ||
|
||
export default AddNewContactMethodParams; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import type {ValueOf} from 'type-fest'; | ||
import type CONST from '@src/CONST'; | ||
|
||
type AddPaymentCardParams = { | ||
cardNumber: string; | ||
cardYear: string; | ||
cardMonth: string; | ||
cardCVV: string; | ||
addressName: string; | ||
addressZip: string; | ||
currency: ValueOf<typeof CONST.CURRENCY>; | ||
isP2PDebitCard: boolean; | ||
}; | ||
export default AddPaymentCardParams; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
type AddPersonalBankAccountParams = { | ||
addressName: string; | ||
routingNumber: string; | ||
accountNumber: string; | ||
isSavings: boolean; | ||
setupType: string; | ||
bank?: string; | ||
plaidAccountID: string; | ||
plaidAccessToken: string; | ||
}; | ||
|
||
export default AddPersonalBankAccountParams; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
type AddSchoolPrincipalParams = { | ||
firstName: string; | ||
lastName: string; | ||
partnerUserID: string; | ||
policyID: string; | ||
reportCreationData: string; | ||
}; | ||
|
||
export default AddSchoolPrincipalParams; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import type {ValueOf} from 'type-fest'; | ||
import type CONST from '@src/CONST'; | ||
import type {WriteCapability} from '@src/types/onyx/Report'; | ||
|
||
type AddWorkspaceRoomParams = { | ||
reportID: string; | ||
createdReportActionID: string; | ||
policyID?: string; | ||
reportName?: string; | ||
visibility?: ValueOf<typeof CONST.REPORT.VISIBILITY>; | ||
writeCapability?: WriteCapability; | ||
welcomeMessage?: string; | ||
}; | ||
|
||
export default AddWorkspaceRoomParams; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
type AnswerQuestionsForWalletParams = { | ||
idologyAnswers: string; | ||
idNumber: string; | ||
}; | ||
|
||
export default AnswerQuestionsForWalletParams; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
type AuthenticatePusherParams = { | ||
// eslint-disable-next-line @typescript-eslint/naming-convention | ||
socket_id: string; | ||
// eslint-disable-next-line @typescript-eslint/naming-convention | ||
channel_name: string; | ||
shouldRetry: boolean; | ||
forceNetworkRequest: boolean; | ||
}; | ||
|
||
export default AuthenticatePusherParams; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
type BankAccountHandlePlaidErrorParams = { | ||
bankAccountID: number; | ||
error: string; | ||
errorDescription: string; | ||
plaidRequestID: string; | ||
}; | ||
export default BankAccountHandlePlaidErrorParams; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import type {ValueOf} from 'type-fest'; | ||
import type CONST from '@src/CONST'; | ||
|
||
type BeginAppleSignInParams = { | ||
idToken: string | undefined | null; | ||
preferredLocale: ValueOf<typeof CONST.LOCALES> | null; | ||
}; | ||
|
||
export default BeginAppleSignInParams; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import type {ValueOf} from 'type-fest'; | ||
import type CONST from '@src/CONST'; | ||
|
||
type BeginGoogleSignInParams = { | ||
token: string | null; | ||
preferredLocale: ValueOf<typeof CONST.LOCALES> | null; | ||
}; | ||
|
||
export default BeginGoogleSignInParams; |
Oops, something went wrong.