Skip to content

Commit d80456b

Browse files
committed
Merge branch 'main' into remove-onyx-connect-in-EmojiUtils
2 parents 3c5bbfe + a7ed0bc commit d80456b

115 files changed

Lines changed: 4265 additions & 500 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Mobile-Expensify

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ android {
114114
minSdkVersion rootProject.ext.minSdkVersion
115115
targetSdkVersion rootProject.ext.targetSdkVersion
116116
multiDexEnabled rootProject.ext.multiDexEnabled
117-
versionCode 1009019006
118-
versionName "9.1.90-6"
117+
versionCode 1009019100
118+
versionName "9.1.91-0"
119119
// Supported language variants must be declared here to avoid from being removed during the compilation.
120120
// This also helps us to not include unnecessary language variants in the APK.
121121
resConfigs "en", "es"

assets/images/simple-illustrations/simple-illustration__empty-shelves.svg

Lines changed: 194 additions & 0 deletions
Loading

cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"ADDCOMMENT",
99
"Addendums",
1010
"ADFS",
11+
"aeiou",
1112
"Aeroplan",
1213
"águero",
1314
"Aircall",

ios/NewExpensify/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<key>CFBundlePackageType</key>
2424
<string>APPL</string>
2525
<key>CFBundleShortVersionString</key>
26-
<string>9.1.90</string>
26+
<string>9.1.91</string>
2727
<key>CFBundleSignature</key>
2828
<string>????</string>
2929
<key>CFBundleURLTypes</key>
@@ -44,7 +44,7 @@
4444
</dict>
4545
</array>
4646
<key>CFBundleVersion</key>
47-
<string>9.1.90.6</string>
47+
<string>9.1.91.0</string>
4848
<key>FullStory</key>
4949
<dict>
5050
<key>OrgId</key>

ios/NotificationServiceExtension/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
<key>CFBundleName</key>
1212
<string>$(PRODUCT_NAME)</string>
1313
<key>CFBundleShortVersionString</key>
14-
<string>9.1.90</string>
14+
<string>9.1.91</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.1.90.6</string>
16+
<string>9.1.91.0</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionPointIdentifier</key>

ios/ShareViewController/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
<key>CFBundleName</key>
1212
<string>$(PRODUCT_NAME)</string>
1313
<key>CFBundleShortVersionString</key>
14-
<string>9.1.90</string>
14+
<string>9.1.91</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.1.90.6</string>
16+
<string>9.1.91.0</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionAttributes</key>

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.expensify",
3-
"version": "9.1.90-6",
3+
"version": "9.1.91-0",
44
"author": "Expensify, Inc.",
55
"homepage": "https://new.expensify.com",
66
"description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",
@@ -46,7 +46,7 @@
4646
"test:debug": "TZ=utc NODE_OPTIONS='--inspect-brk --experimental-vm-modules' jest --runInBand",
4747
"perf-test": "NODE_OPTIONS=--experimental-vm-modules npx reassure",
4848
"typecheck": "NODE_OPTIONS=--max_old_space_size=8192 tsc",
49-
"lint": "NODE_OPTIONS=--max_old_space_size=8192 eslint . --max-warnings=294 --cache --cache-location=node_modules/.cache/eslint",
49+
"lint": "NODE_OPTIONS=--max_old_space_size=8192 eslint . --max-warnings=290 --cache --cache-location=node_modules/.cache/eslint",
5050
"lint-changed": "NODE_OPTIONS=--max_old_space_size=8192 ./scripts/lintChanged.sh",
5151
"lint-watch": "npx eslint-watch --watch --changed",
5252
"shellcheck": "./scripts/shellCheck.sh",

src/CONST/index.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -676,6 +676,7 @@ const CONST = {
676676
TRACK_FLOWS: 'trackFlows',
677677
EUR_BILLING: 'eurBilling',
678678
MANUAL_DISTANCE: 'manualDistance',
679+
NO_OPTIMISTIC_TRANSACTION_THREADS: 'noOptimisticTransactionThreads',
679680
VACATION_DELEGATE: 'vacationDelegate',
680681
UBER_FOR_BUSINESS: 'uberForBusiness',
681682
},
@@ -1085,6 +1086,7 @@ const CONST = {
10851086
REOPEN: 'reopen',
10861087
EXPORT: 'export',
10871088
PAY: 'pay',
1089+
MERGE: 'merge',
10881090
},
10891091
PRIMARY_ACTIONS: {
10901092
SUBMIT: 'submit',
@@ -1116,6 +1118,7 @@ const CONST = {
11161118
SPLIT: 'split',
11171119
VIEW_DETAILS: 'viewDetails',
11181120
DELETE: 'delete',
1121+
MERGE: 'merge',
11191122
},
11201123
ADD_EXPENSE_OPTIONS: {
11211124
CREATE_NEW_EXPENSE: 'createNewExpense',
@@ -1128,7 +1131,6 @@ const CONST = {
11281131
ACTIONABLE_ADD_PAYMENT_CARD: 'ACTIONABLEADDPAYMENTCARD',
11291132
ACTIONABLE_JOIN_REQUEST: 'ACTIONABLEJOINREQUEST',
11301133
ACTIONABLE_MENTION_WHISPER: 'ACTIONABLEMENTIONWHISPER',
1131-
ACTIONABLE_MENTION_INVITE_TO_SUBMIT_EXPENSE_CONFIRM_WHISPER: 'ACTIONABLEMENTIONINVITETOSUBMITEXPENSECONFIRMWHISPER',
11321134
ACTIONABLE_REPORT_MENTION_WHISPER: 'ACTIONABLEREPORTMENTIONWHISPER',
11331135
ACTIONABLE_TRACK_EXPENSE_WHISPER: 'ACTIONABLETRACKEXPENSEWHISPER',
11341136
POLICY_EXPENSE_CHAT_WELCOME_WHISPER: 'POLICYEXPENSECHATWELCOMEWHISPER',
@@ -1312,12 +1314,8 @@ const CONST = {
13121314
},
13131315
ACTIONABLE_MENTION_WHISPER_RESOLUTION: {
13141316
INVITE: 'invited',
1315-
INVITE_TO_SUBMIT_EXPENSE: 'inviteToSubmitExpense',
13161317
NOTHING: 'nothing',
13171318
},
1318-
ACTIONABLE_MENTION_INVITE_TO_SUBMIT_EXPENSE_CONFIRM_WHISPER: {
1319-
DONE: 'done',
1320-
},
13211319
ACTIONABLE_TRACK_EXPENSE_WHISPER_RESOLUTION: {
13221320
NOTHING: 'nothing',
13231321
},
@@ -3097,6 +3095,7 @@ const CONST = {
30973095
FinancialForce: 'https://help.expensify.com/articles/expensify-classic/connections/certinia/Connect-To-Certinia',
30983096
'Sage Intacct': 'https://help.expensify.com/articles/new-expensify/connections/sage-intacct/Configure-Sage-Intacct',
30993097
Certinia: 'https://help.expensify.com/articles/expensify-classic/connections/certinia/Connect-To-Certinia',
3098+
MERGE_EXPENSES: 'https://help.expensify.com/articles/new-expensify/reports-and-expenses/Merging-expenses',
31003099
},
31013100

31023101
CUSTOM_UNITS: {

0 commit comments

Comments
 (0)