Skip to content

Commit fdf7590

Browse files
merge: pull latest main
# Conflicts: # src/components/LHNOptionsList/OptionRowLHN.tsx
2 parents 32f8b07 + 188fc4d commit fdf7590

47 files changed

Lines changed: 910 additions & 382 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
@@ -111,8 +111,8 @@ android {
111111
minSdkVersion rootProject.ext.minSdkVersion
112112
targetSdkVersion rootProject.ext.targetSdkVersion
113113
multiDexEnabled rootProject.ext.multiDexEnabled
114-
versionCode 1009036400
115-
versionName "9.3.64-0"
114+
versionCode 1009036401
115+
versionName "9.3.64-1"
116116
// Supported language variants must be declared here to avoid from being removed during the compilation.
117117
// This also helps us to not include unnecessary language variants in the APK.
118118
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.3.64.0</string>
47+
<string>9.3.64.1</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.3.64</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.3.64.0</string>
16+
<string>9.3.64.1</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.3.64</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.3.64.0</string>
16+
<string>9.3.64.1</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.3.64-0",
3+
"version": "9.3.64-1",
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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9314,6 +9314,7 @@ const CONST = {
93149314
PLAN_TYPE: 'WorkspaceOverview-PlanType',
93159315
SHARE: 'WorkspaceOverview-Share',
93169316
CUSTOM_RULES: 'WorkspaceOverview-CustomRules',
9317+
RULES_DOCUMENT: 'WorkspaceOverview-RulesDocument',
93179318
INVITE_BUTTON: 'WorkspaceOverview-InviteButton',
93189319
MORE_DROPDOWN: 'WorkspaceOverview-MoreDropdown',
93199320
},

src/ROUTES.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2138,6 +2138,10 @@ const ROUTES = {
21382138
route: 'workspaces/:policyID/avatar',
21392139
getRoute: (policyID: string, fallbackLetter?: UpperCaseCharacters) => `workspaces/${policyID}/avatar${fallbackLetter ? `?letter=${fallbackLetter}` : ''}` as const,
21402140
},
2141+
WORKSPACE_DOCUMENT: {
2142+
route: 'workspaces/:policyID/document',
2143+
getRoute: (policyID: string) => `workspaces/${policyID}/document` as const,
2144+
},
21412145
WORKSPACE_JOIN_USER: {
21422146
route: 'workspaces/:policyID/join',
21432147
getRoute: (policyID: string, inviterEmail: string) => `workspaces/${policyID}/join?email=${inviterEmail}` as const,

src/SCREENS.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ const SCREENS = {
1919
REPORT: 'Report',
2020
PROFILE_AVATAR: 'ProfileAvatar',
2121
WORKSPACE_AVATAR: 'WorkspaceAvatar',
22+
WORKSPACE_DOCUMENT: 'WorkspaceDocument',
2223
REPORT_AVATAR: 'ReportAvatar',
2324
NOT_FOUND: 'not-found',
2425
TRANSITION_BETWEEN_APPS: 'TransitionBetweenApps',

0 commit comments

Comments
 (0)