Skip to content

Commit ad52a8b

Browse files
committed
Merge branch 'main' of github.com-mkzie2:mkzie2/App into mkzie2-issue/63691
2 parents a18e12b + 5715b45 commit ad52a8b

45 files changed

Lines changed: 960 additions & 308 deletions

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 1009016802
118-
versionName "9.1.68-2"
117+
versionCode 1009016803
118+
versionName "9.1.68-3"
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"

ios/NewExpensify/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</dict>
4545
</array>
4646
<key>CFBundleVersion</key>
47-
<string>9.1.68.2</string>
47+
<string>9.1.68.3</string>
4848
<key>FullStory</key>
4949
<dict>
5050
<key>OrgId</key>

ios/NotificationServiceExtension/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleShortVersionString</key>
1414
<string>9.1.68</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.1.68.2</string>
16+
<string>9.1.68.3</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionPointIdentifier</key>

ios/ShareViewController/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleShortVersionString</key>
1414
<string>9.1.68</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.1.68.2</string>
16+
<string>9.1.68.3</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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.expensify",
3-
"version": "9.1.68-2",
3+
"version": "9.1.68-3",
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.",

src/CONST/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6655,6 +6655,8 @@ const CONST = {
66556655
GROUP_BY: 'groupBy',
66566656
},
66576657
SYNTAX_FILTER_KEYS: {
6658+
TYPE: 'type',
6659+
STATUS: 'status',
66586660
DATE: 'date',
66596661
AMOUNT: 'amount',
66606662
EXPENSE_TYPE: 'expenseType',

src/ROUTES.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ const ROUTES = {
5151
getRoute: ({name, jsonQuery}: {name: string; jsonQuery: SearchQueryString}) => `search/saved-search/rename?name=${name}&q=${jsonQuery}` as const,
5252
},
5353
SEARCH_ADVANCED_FILTERS: 'search/filters',
54+
SEARCH_ADVANCED_FILTERS_TYPE: 'search/filters/type',
55+
SEARCH_ADVANCED_FILTERS_STATUS: 'search/filters/status',
5456
SEARCH_ADVANCED_FILTERS_DATE: 'search/filters/date',
5557
SEARCH_ADVANCED_FILTERS_CURRENCY: 'search/filters/currency',
5658
SEARCH_ADVANCED_FILTERS_MERCHANT: 'search/filters/merchant',

src/SCREENS.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ const SCREENS = {
4343
MONEY_REQUEST_REPORT_HOLD_TRANSACTIONS: 'Search_Money_Request_Report_Hold_Transactions',
4444
REPORT_RHP: 'Search_Report_RHP',
4545
ADVANCED_FILTERS_RHP: 'Search_Advanced_Filters_RHP',
46+
ADVANCED_FILTERS_TYPE_RHP: 'Search_Advanced_Filters_Type_RHP',
47+
ADVANCED_FILTERS_STATUS_RHP: 'Search_Advanced_Filters_Status_RHP',
4648
ADVANCED_FILTERS_DATE_RHP: 'Search_Advanced_Filters_Date_RHP',
4749
ADVANCED_FILTERS_SUBMITTED_RHP: 'Search_Advanced_Filters_Submitted_RHP',
4850
ADVANCED_FILTERS_APPROVED_RHP: 'Search_Advanced_Filters_Approved_RHP',

0 commit comments

Comments
 (0)