Skip to content

Commit 03a0f5c

Browse files
committed
Merge branch 'main' into feat/migrate-category-selector-to-navigation
2 parents e095e07 + 4c52779 commit 03a0f5c

46 files changed

Lines changed: 912 additions & 53 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
@@ -111,8 +111,8 @@ android {
111111
minSdkVersion rootProject.ext.minSdkVersion
112112
targetSdkVersion rootProject.ext.targetSdkVersion
113113
multiDexEnabled rootProject.ext.multiDexEnabled
114-
versionCode 1009036103
115-
versionName "9.3.61-3"
114+
versionCode 1009036104
115+
versionName "9.3.61-4"
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.61.3</string>
47+
<string>9.3.61.4</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.61</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.3.61.3</string>
16+
<string>9.3.61.4</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.61</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.3.61.3</string>
16+
<string>9.3.61.4</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.61-3",
3+
"version": "9.3.61-4",
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/ONYXKEYS.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1085,6 +1085,8 @@ const ONYXKEYS = {
10851085
ADD_DOMAIN_MEMBER_FORM_DRAFT: 'addDomainMemberFormDraft',
10861086
ADD_WORK_EMAIL_FORM: 'addWorkEmailForm',
10871087
ADD_WORK_EMAIL_FORM_DRAFT: 'addWorkEmailFormDraft',
1088+
EDIT_DOMAIN_GROUP_NAME_FORM: 'editDomainGroupNameForm',
1089+
EDIT_DOMAIN_GROUP_NAME_FORM_DRAFT: 'editDomainGroupNameFormDraft',
10881090
},
10891091
DERIVED: {
10901092
REPORT_ATTRIBUTES: 'reportAttributes',
@@ -1229,6 +1231,7 @@ type OnyxFormValuesMapping = {
12291231
[ONYXKEYS.FORMS.SPEND_RULE_FORM]: FormTypes.SpendRuleForm;
12301232
[ONYXKEYS.FORMS.ADD_DOMAIN_MEMBER_FORM]: FormTypes.AddDomainMemberForm;
12311233
[ONYXKEYS.FORMS.ADD_WORK_EMAIL_FORM]: FormTypes.AddWorkEmailForm;
1234+
[ONYXKEYS.FORMS.EDIT_DOMAIN_GROUP_NAME_FORM]: FormTypes.DomainGroupEditNameForm;
12321235
};
12331236

12341237
type OnyxFormDraftValuesMapping = {

src/ROUTES.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4100,6 +4100,16 @@ const ROUTES = {
41004100
route: 'domain/:domainAccountID/members/:accountID/lock-account',
41014101
getRoute: (domainAccountID: number, accountID: number) => `domain/${domainAccountID}/members/${accountID}/lock-account` as const,
41024102
},
4103+
4104+
DOMAIN_GROUP_DETAILS: {
4105+
route: 'domain/:domainAccountID/groups/:groupID',
4106+
getRoute: (domainAccountID: number, groupID: string) => `domain/${domainAccountID}/groups/${groupID}` as const,
4107+
},
4108+
4109+
DOMAIN_GROUP_EDIT_NAME: {
4110+
route: 'domain/:domainAccountID/groups/:groupID/name',
4111+
getRoute: (domainAccountID: number, groupID: string) => `domain/${domainAccountID}/groups/${groupID}/name` as const,
4112+
},
41034113
} as const;
41044114

41054115
/**

src/SCREENS.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1010,6 +1010,8 @@ const SCREENS = {
10101010
MEMBER_FORCE_TWO_FACTOR_AUTH: 'Member_Force_Two_Factor_Auth',
10111011
MEMBER_LOCK_ACCOUNT: 'Member_Lock_Account',
10121012
MEMBERS_MOVE_TO_GROUP: 'Members_Move_To_Group',
1013+
GROUP_DETAILS: 'Domain_Group_Details',
1014+
GROUP_EDIT_NAME: 'Domain_Group_Edit_Name',
10131015
},
10141016
MULTIFACTOR_AUTHENTICATION: {
10151017
MAGIC_CODE: 'Multifactor_Authentication_Magic_Code',

0 commit comments

Comments
 (0)