commit_hash stringlengths 40 40 | input stringlengths 13 7.99k | output stringlengths 5 155 | full_message stringlengths 6 8.96k |
|---|---|---|---|
0abc4bc02ed2bd2573269de8f419331307c65b4f | --- ReactotronConfig.d.ts
@@ -0,0 +1,8 @@
+export default reactotron;
+declare const reactotron: import("reactotron-react-native").ReactotronReactNative & {
+ createEnhancer: (skipSettingStore?: boolean | undefined) => (createStore: any) => (reducer: any, ...args: any[]) => any;
+ setReduxStore: (store: any) => v... | fix(ui): update the tsconfig to exclude reactotron | fix(ui): update the tsconfig to exclude reactotron
|
def9cf86bfb283b2ff922e991f960d2ec76f6414 | --- src/redux/reducer.tsx
@@ -17,6 +17,7 @@ export const textingSlice = createSlice({
isReceivingPTT: false,
unreadChannelsCount: 0,
unreadMessagesCount: 0,
+ searchText: '',
},
reducers: {
UPDATE_SAS_TOKEN: (state, action: PayloadAction<string>) => {
@@ -37,6 +38,9 @@ export const textingS... | addition of selectors for search text | addition of selectors for search text
|
6b8efc49c49c889b3d8ad18c3945725af9c24da9 | --- src/notification.ts
@@ -11,7 +11,7 @@ export const backgroundPushNotificationHandler = (event?: SumoPushEvent) => {
//TODO: Remove these two lines when API is ready to pass audio field
const mockRemoteURL =
'/directedvoice/ptt/v1/azure/us-100/recording-dbdc6908-9af0-453c-b8ac-1309f7e1a314.m4a';
- ... | working audio and text message push notifications | working audio and text message push notifications
|
60ed1ed1897bb9a8d03e4cc59f7a5b2e4cd6cf30 | --- package-lock.json
@@ -82,7 +82,7 @@
"@walmart/settings-mini-app": "1.12.0",
"@walmart/shelfavailability-mini-app": "1.5.11",
"@walmart/taskit-mini-app": "0.49.6",
- "@walmart/time-clock-mini-app": "2.10.0",
+ "@walmart/time-clock-mini-app": "2.11.0",
"@walmart/ui-co... | Updated time clock to 2.11.0 | Updated time clock to 2.11.0
|
96c43d477526324051f11eb472b518706e8f4a28 | --- package.json
@@ -1,6 +1,6 @@
{
"name": "allspark-main",
- "version": "1.2.1",
+ "version": "1.2.0",
"private": true,
"scripts": {
"firebase:dev": "cp ./ios/GoogleService-Info-Dev.plist ./ios/GoogleService-Info.plist && cp ./android/app/google-services-dev.json ./android/app/google-services.json",
| Update package.json to 1.2.0 | Update package.json to 1.2.0 |
4ca6ba1b9861af9b82bcf71a26dc39fbeb0fd05e | --- graphql.yml
@@ -12,7 +12,7 @@ applications:
- name: "stg"
persistedQueries:
- name: "businessUnitByCountryAndNumber"
- hash: "bfdbc7593742ef521e903505a26748f8f08b3f5ce28f65698946de494b6c7918"
+ hash: "dc5adc0197a2bfd29b0ecc4ec5a255f44f8e0700a8a6916a834ec745574ab54d"
... | feat(query): adding timezone id and standard to businessunitbycountryandnumber query | feat(query): adding timezone id and standard to businessunitbycountryandnumber query
|
63c2a4cd0dbe9c67e38cc587152776d242f8d9c0 | --- package-lock.json
@@ -84,7 +84,7 @@
"@walmart/returns-mini-app": "3.13.0",
"@walmart/schedule-mini-app": "0.63.0",
"@walmart/shelfavailability-mini-app": "1.5.18",
- "@walmart/store-feature-orders": "1.23.0",
+ "@walmart/store-feature-orders": "1.24.0",
"@walmart/ta... | calander issue fix | calander issue fix
|
d02b7e7e3a551a27f151fdad0e60f7ab9ab89c04 | --- android/app/build.gradle
@@ -96,8 +96,8 @@ android {
applicationId "com.walmart.stores.allspark.beta"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 924
- versionName "1.18.11"
+ versionCode 925
+ ver... | v1.18.12 | v1.18.12
|
c0c240936e0ec8fc28c9913320cafadd7fdee4b7 | --- package.json
@@ -92,7 +92,7 @@
"@walmart/inbox-mini-app": "0.40.0-inbox3.33",
"@walmart/iteminfo-mini-app": "5.0.3",
"@walmart/manager-approvals-miniapp": "0.0.62",
- "@walmart/me-field-mini-app": "^1.1.11",
+ "@walmart/me-field-mini-app": "1.1.11",
"@walmart/metrics-mini-app": "0.9.5",
... | removed ^ | removed ^
|
6133afae76969579a13fb9bad1b0722a1ae7b134 | --- .looper.multibranch.yml
@@ -587,8 +587,6 @@ flows:
text: "*Looper job* ${env} #:<${BUILD_URL}|${BUILD_NUMBER}>"
- type: mrkdwn
text: "*Github Repo:* <${GITHUB_BRANCH_URL}|URL>"
- - type: mrkdwn
- text: "*Download binary... | remove download binary link | remove download binary link
|
af889c89d1061e2aa5313279fa2772cf43733ca5 | --- packages/allspark-foundation-hub/src/HubFeature/BottomSheet/BottomSheetContext.tsx
@@ -0,0 +1,20 @@
+import React, { createContext, useCallback, useContext, useState } from 'react';
+
+const BottomSheetContext = createContext<any>({});
+
+export const useBottomSheetContext = () => useContext(BottomSheetContext);
+
... | Update the navigation | Update the navigation
|
a53bb4dfd0abfd8d44aa511ee7d1b3762fbed388 | --- android/app/src/main/res/values/styles.xml
@@ -13,4 +13,4 @@
<item name="android:windowBackground">@drawable/background_splash</item>
<item name="android:statusBarColor">@color/blue</item>
</style>
-</resources>
+</resources>
\ No newline at end of file
| chore: remove blank line from android strings xml | chore: remove blank line from android strings xml
|
9c1754ec6a9d45faf8c1b855d50441236c526db4 | --- package.json
@@ -94,7 +94,7 @@
"@walmart/react-native-shared-navigation": "6.1.4",
"@walmart/react-native-sumo-sdk": "2.7.4",
"@walmart/redux-store": "6.3.29",
- "@walmart/roster-mini-app": "2.35.0",
+ "@walmart/roster-mini-app": "2.36.0",
"@walmart/ui-components": "1.15.1",
"@walmart... | updating roster and wmconnect version | updating roster and wmconnect version
|
c5f42be31d8c9d454680975c8b2f401a704a3e75 | --- package.json
@@ -156,7 +156,7 @@
"@walmart/time-clock-mini-app": "3.19.2",
"@walmart/time-clock-mini-app-next": "3.0.0",
"@walmart/topstock-mini-app": "1.25.4",
- "@walmart/translator-mini-app": "1.6.4",
+ "@walmart/translator-mini-app": "1.6.9",
"@walmart/ui-components": "patch:@walmart/u... | fix(ui): ADEDS-19791 - Rendering API endpoints from CCM (#4428) | fix(ui): ADEDS-19791 - Rendering API endpoints from CCM (#4428)
* fix: rendering api endpoints from ccm
* fix(impersonation): add env to impersonation cache key and update tests (#4467)
* fix(impersonation): add env to impersonation cache key and update tests
* chore(impersonation): reduce duplication
* Re... |
0571a917149819d8de467a2ec776220001540d4d | --- __tests__/settings/sideButton/__snapshots__/SideButtonPermissionBottomSheetTest.tsx.snap
@@ -69,7 +69,7 @@ exports[`Side button permission bottom sheet tests matches snapshot 1`] = `
"bottom": 0,
"height": 1334,
"left": 0,
- "opacity": 0.00011425836668732536,
+ "opacity": 0,... | fixing failed snapshot | fixing failed snapshot
|
0078c4b51731d0d75988e1bd6f3a7b54f2e8e38a | --- packages/expo-config-plugins/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.1.6](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/expo-config-plugins@0.... | chore(version): updating package version | chore(version): updating package version
- @walmart/expo-config-plugins@0.1.6
|
de921745f0d0568aacd208b4d1e1528656b3d189 | --- .husky/pre-commit
@@ -92,17 +92,17 @@ if [ -n "$STAGED_SRC_FILES" ] || [ -n "$STAGED_TEST_FILES" ]; then
if [ -n "$ALL_TEST_FILES" ]; then
echo "Running tests: $ALL_TEST_FILES"
- # Run specific test files with coverage only for changed source files
- yarn jest $ALL_TEST_FILES --config=je... | feat(ui): ensure global coverage is still respected #SMDV-8174 | feat(ui): ensure global coverage is still respected #SMDV-8174
|
63958f1e986e020055b78e9de126de06bbb5bf8e | --- src/channels/provider.tsx
@@ -26,6 +26,7 @@ import {normalizeChannelSnapshot} from './transforms';
import {fetchChannelName, fetchChannelLastMessage} from './services';
import {logger} from '../logger/Logger';
import {textingSlice} from '../redux/reducer';
+import {SEVEN_DAYS_AGO_TIMESTAMP} from '../constants';
... | fix: fixing query for message and channels to only query last 7 days worth of data | fix: fixing query for message and channels to only query last 7 days worth of data
|
34bf841fd05b59d5ce19e0b4e3cd92a1661445e6 | --- packages/celebration-mini-app-graphql/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [1.24.0](https://gecgithub01.walmart.com/smdv/celebration-mini-app/compare/@walmart/celeb... | chore(version): updating package version | chore(version): updating package version
- @walmart/celebration-mini-app@1.33.0
- @walmart/celebration-mini-app-graphql@1.24.0
|
cf69e23ac042b6047be5c85336a1b190c106b0a6 | --- packages/me-at-walmart-container/src/services/telemetry.ts
@@ -90,7 +90,10 @@ export class TelemetryClient {
return this._analytics.logEvent(fullEvent, fullParams);
};
- public logScreenView = (screen: string) => {
+ public logScreenView = (
+ screen: string,
+ params?: Record<string, string | und... | fix: add correct feature id tagging to screen view telemetry | fix: add correct feature id tagging to screen view telemetry
|
954706f1c2caaad46484562373719b0ff6ba5ee3 | --- package-lock.json
@@ -4253,9 +4253,9 @@
"integrity": "sha512-0M7ySb3F2lKlIfwBosm+Slx3kJvdoEHm5haaZ05WKCJ1hctu0F0CzTGDSbZciXWX92HJBmxvsvr8yi2H435R8g=="
},
"@walmart/ims-print-services-ui": {
- "version": "0.1.18",
- "resolved": "https://npme.walmart.com/@walmart/ims-print-services-ui/-/ims... | Item Info multiple fixes found in beta testing | Item Info multiple fixes found in beta testing
|
ba15472edda90c6ce154d7104766a7e45c50a694 | --- package.json
@@ -162,7 +162,7 @@
"@walmart/sidekick-mini-app": "4.231.0",
"@walmart/store-feature-orders": "1.34.7",
"@walmart/talent-preboarding-mini-app": "1.0.48",
- "@walmart/taskit-mini-app": "5.42.33",
+ "@walmart/taskit-mini-app": "5.42.35",
"@walmart/time-clock-mini-app": "3.19.6",... | feat(fixing few issues'): fixing few issues' | feat(fixing few issues'): fixing few issues'
|
55c96359413002f14f235c2c72fbbd7392a41f56 | --- scripts/mini-app-scan/scan-walmart-packages.sh
@@ -30,6 +30,7 @@ else
done
fi
+violation_found=0
for package_name in "${packages_to_scan[@]}"; do
package_dir="./node_modules/@walmart/$package_name"
if [ ! -d "$package_dir" ]; then
@@ -68,6 +69,7 @@ for package_name in "${packages_to_scan[@]}"; do... | fix: scan script did not error out after finding violations | fix: scan script did not error out after finding violations
|
5947fa7edf4d6fe851537cd64513ff24183c10fb | --- yarn.lock
@@ -6749,7 +6749,7 @@ __metadata:
"@walmart/roster-mini-app": "npm:2.4.0"
"@walmart/schedule-mini-app": "npm:0.114.2"
"@walmart/shelfavailability-mini-app": "npm:1.5.26"
- "@walmart/shop-gnfr-mini-app": "npm:1.0.47"
+ "@walmart/shop-gnfr-mini-app": "npm:1.0.52"
"@walmart/store-fe... | Added yarn lock file to fix build | Added yarn lock file to fix build
|
11504e237035a500bb7c47948ad6af2f4ab9cc6c | --- ios/Podfile.lock
@@ -404,8 +404,6 @@ PODS:
- React-Core
- react-native-image-picker (4.7.3):
- React-Core
- - react-native-in-app-review (4.1.1):
- - React
- react-native-logger (1.29.0):
- React
- react-native-loudness (2.0.0):
@@ -434,6 +432,8 @@ PODS:
- React
- react-native-we... | add wm module | add wm module
|
9ebb3c708b722b82ec332aa558383c2b15e3838e | --- __tests__/navConfig/NavConfigSagasTest.ts
@@ -188,6 +188,9 @@ describe('nav config sagas', () => {
expect(iterator.next(data).value).toEqual(
put(NavConfigActionCreators.navConfigSuccess(data)),
);
+ expect(iterator.next().value).toEqual(
+ call(GlobalNavConfig.addListener, onConf... | Fixing nav config adding listener | Fixing nav config adding listener
|
f131759c6a6c5a8911f83b4539283a0500343865 | --- ios/Podfile.lock
@@ -1467,7 +1467,7 @@ PODS:
- FirebaseMessaging (<= 10.1.0)
- StructuredLogAssistantIOS (= 0.0.7)
- TOCropViewController (2.6.1)
- - topstock-mini-app (1.3.0):
+ - topstock-mini-app (1.3.1):
- React
- VisionCamera (2.16.2):
- React
@@ -2065,7 +2065,7 @@ SPEC CHECKSUMS:
... | fix(crash): fix android crash VS-2655 | fix(crash): fix android crash VS-2655
|
11a2820b7177f61f6578e4f1e84f705de977021f | --- ios/Podfile.lock
@@ -582,7 +582,7 @@ PODS:
- AppAuth
- Starscream (3.0.6)
- StructuredLogAssistantIOS (0.0.6)
- - SumoSDK (2.1.0):
+ - SumoSDK (2.2.0):
- Apollo (= 0.42.0)
- Apollo/SQLite (= 0.42.0)
- Firebase/Messaging (~> 8.4)
@@ -592,9 +592,9 @@ PODS:
- SwiftProtobuf
- VisionC... | pod updates. | pod updates.
|
6d5053bca18037b97439ec44ec490796e2df39b7 | --- package-lock.json
@@ -39,7 +39,7 @@
"@walmart/attendance-mini-app": "0.190.2",
"@walmart/compass-sdk-rn": "4.0.0",
"@walmart/config-components": "4.1.0-rc.4",
- "@walmart/copilot-mini-app": "^1.62.2",
+ "@walmart/copilot-mini-app": "^1.63.0",
"@walmart/core-services... | chore: bump copilot app | chore: bump copilot app
|
85cebf474629e8f21dcbf6ab939f87b91767ca97 | --- packages/allspark-foundation/src/User/selectors.ts
@@ -299,6 +299,15 @@ const OriginalUserPreferenceSelectors = {
),
};
+/**
+ * A collection of utilities for working with user data.
+ */
+export const UserUtils = {
+ getNameFromUser,
+ getFirstNameFromUser,
+ getInitialsFromUser,
+};
+
/**
* A collecti... | feat: expose common user utilities | feat: expose common user utilities
|
f45e56c2bd1fd63cbe160fe147a6305cf75f1de2 | --- jest.config.js
@@ -12,7 +12,7 @@ module.exports = {
},
},
transformIgnorePatterns: [
- '<rootDir>/node_modules/(?!(react-native|@react-native|react-native-reanimated|@walmart/gtp-shared-components|@walmart/gtp-shared-icons|@react-native-community/picker|@walmart/redux-store|@react-native-firebase|reac... | adding missing transformIgnore patterns to support walmart apollo library | adding missing transformIgnore patterns to support walmart apollo library
|
8356b0384045f8ae8c84cc058d63212b337b17c8 | --- .looper.multibranch.yml
@@ -514,7 +514,6 @@ flows:
then:
- echo "Skipping uploading AppStore/PlayStore builds to MS App Center and publishing to Slack."
else:
- - echo "Uploading builds to App Center"
- call: setup-fastlane
- call: appcenter-upload
@@ -524,7... | code cleanup | code cleanup
|
47a0b980327a23b6686b9d29ac8df3b89c279157 | --- package-lock.json
@@ -13735,9 +13735,9 @@
}
},
"node_modules/fbjs": {
- "version": "3.0.4",
- "resolved": "https://npme.walmart.com/fbjs/-/fbjs-3.0.4.tgz",
- "integrity": "sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==",
+ "version": "3.0.5",
+ "r... | chore: update after bootstrap | chore: update after bootstrap
|
15fea12d9905e557755286d8ed69424c3ae73728 | --- src/navigation/index.tsx
@@ -18,9 +18,6 @@ export * from './types';
export const MyTeamMiniApp = () => {
const navigation = useNavigation();
- // SMDV-8921: Ensure header title is set to "Team" when screen gains focus
- // This fixes the bug where header shows "Work" instead of "Team" after
- // navigating... | chore: remove unnecessary inline comment | chore: remove unnecessary inline comment
|
5d69dc202b48816c7ce016aa81126ef0da0a4636 | --- targets/US/ios/BuildSupport/AppStore.keychain-db
Binary files /dev/null and b/targets/US/ios/BuildSupport/AppStore.keychain-db differ
| keychain update | keychain update |
0205930270cfdab9f0d5b4ddc4806dc251801ba1 | --- .looper-pr.yml
@@ -15,6 +15,13 @@ flows:
- npm run env:dev
- npm run lint
- npm run coverage
+ - call: notify-pr-via-slack
+
+ notify-pr-via-slack:
+ - try:
+ - (name Slack PR notify) sh scripts/slackWorkflow.sh 2>&1
+ catch:
+ - warn('Failed to notify GitHub PR to Slack')
... | Chore/slack GitHub PR workflow (#87) | Chore/slack GitHub PR workflow (#87)
* PR workflow added to publish message PR on Slack
|
887bcc5cc2b2bbc2c7ba79b20014af8f7c1be942 | --- yarn.lock
@@ -22604,16 +22604,6 @@ __metadata:
languageName: node
linkType: hard
-"react-native-flipper@npm:^0.212.0":
- version: 0.212.0
- resolution: "react-native-flipper@npm:0.212.0::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2Freact-native-flipp... | chore: update lock file broken by another PR | chore: update lock file broken by another PR
|
4ee3b44a71b83c143f1dc6d3040213dc0c1214b7 | --- packages/allspark-foundation/src/Components/TeamOnboarding/Constants/TeamSelectionConstants.ts
@@ -0,0 +1,7 @@
+export const HeaderTitle = 'Personalize your hubs';
+export const HeaderSubText =
+ 'Your primary team is automatically selected. Choose additional teams to view on your Team and Work hubs.';
+export con... | Adding Constants for all local strings | Adding Constants for all local strings
|
322a02c554ccc34df8efbc1831f4135affecde88 | --- src/containers/ChatInput/index.tsx
@@ -122,7 +122,9 @@ export const ChatInput = (props: {
const [text, setText] = useState('');
const [collapsed, setCollpased] = useState(false);
const [capturingAudio, setCapturingAudio] = useState(false);
- const [audioDetails, setAudioDetails] = useState<RecordingDetail... | SMBLV-3995: Audio recording to disable send button until it's recorded | SMBLV-3995: Audio recording to disable send button until it's recorded
|
7e64df32bca267b3b2397ce49cee1c8629e7c0d3 | --- package-lock.json
@@ -76,7 +76,7 @@
"@walmart/me-at-walmart-athena-queries": "6.0.7",
"@walmart/me-at-walmart-common": "6.0.7",
"@walmart/me-at-walmart-container": "6.0.7",
- "@walmart/metrics-mini-app": "0.20.8",
+ "@walmart/metrics-mini-app": "0.21.1",
"@walmart/m... | Bumping metrics version for Drop 21 | Bumping metrics version for Drop 21
|
245876362edaca7d784fda3ca29f088adc84dd5c | --- __tests__/core/httpClientInitTest.ts
@@ -275,7 +275,7 @@ describe('getCorrelationId', () => {
});
const id = getCorrelationId();
- expect(id).toEqual(mockSessionId);
+ expect(id).toEqual(`US-${mockSessionId}`);
expect(mockGetStore).toHaveBeenCalled();
expect(mockGetState).toHaveBeenCalle... | Test fix | Test fix
|
6d978d8b8b72672c474f09201dc659b40a53abad | --- packages/allspark-foundation/src/Config/selectors.ts
@@ -9,6 +9,9 @@ const getContainerConfig = createSelector(
(data) => data?.container || data?.core
);
+const createFeatureConfigSelector = (featureId: string) =>
+ createSelector([GeneratedSelectors.getData], (data) => data?.[featureId]);
+
/**
* A coll... | feat(config): add utilities for easier config selector creation | feat(config): add utilities for easier config selector creation
|
88e49593c460227550a10fbcc46a5eca40999350 | --- android/app/build.gradle
@@ -134,7 +134,7 @@ android {
applicationId "com.walmart.stores.allspark.beta"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 75
+ versionCode 76
versionName "1.0.5"
}
sp... | Incrementing build number | Incrementing build number
|
3ac81bdddf157589722f04563c0a359a57940415 | --- packages/allspark-foundation-hub/src/HubFeature/Hub/Container/styles.ts
@@ -22,5 +22,5 @@ export default StyleSheet.create({
marginBottom: 8,
width: 'auto',
},
- floatingButtonStyle: { position: 'absolute', bottom: 20, right: 10 },
+ floatingButtonStyle: { position: 'absolute', bottom: 16, right: 4 }... | Remove the cancel button from the Team selection screen | Remove the cancel button from the Team selection screen
|
a30565fe1ace0720f77e00365f1e5ebb51300917 | --- src/index.tsx
@@ -2,7 +2,7 @@ import React from 'react';
import {firebase} from '@react-native-firebase/app-check';
import {TeamHub, TextingNavigation} from './navigation';
-import {initi18n} from './translations';
+import {initi18n, MY_TEAM_I18N_NAMESPACE} from './translations';
import {SafeAreaProvider} from... | added floating button and header to create | added floating button and header to create
|
cc43d909af6ec5de78165c746de724343c10421c | --- core/__tests__/core/__snapshots__/ClockOutGuardTest.tsx.snap
@@ -10,6 +10,7 @@ exports[`ClockOutGuard matches snapshot when clocked out; navigates home on butt
<ClockOutOverlay
buttonTitle="clockOutGuard.action"
content="clockOutGuard.content"
+ onButtonPress={[MockFunction]}
title="clockOutGuard.title"
... | updated broken snapshot | updated broken snapshot
|
245769012674b27a99acec092655654469b217d6 | --- package.json
@@ -302,7 +302,7 @@
}
},
"transformIgnorePatterns": [
- "<rootDir>/node_modules/(?!(react-native|@walmart/core-utils|@walmart/core-services|@walmart/core-services-allspark|@walmart/gtp-shared-components|@react-native-community/picker|@walmart/redux-store|@react-native-firebase|rea... | chore: looper fix | chore: looper fix
|
9b8c02bd9ac9d6d347594ec91f1cee0facceb034 | --- packages/allspark-foundation/__tests__/Clock/saga.test.ts
@@ -95,12 +95,6 @@ describe('waitForClockInit and waitForClockFetch Saga', () => {
});
it('should handle errors from fetch service', () => {
- const selectorGetLoading = jest.fn(() => false);
- const selectorGetLoaded = jest.fn(() => false);
... | pr fix clock saga | pr fix clock saga
|
0a7f912025cf0dd3b0adb3e10e9cc4bff46f285d | --- ios/Podfile.lock
@@ -508,14 +508,14 @@ PODS:
- RNWMSSOLibrary (1.1.0):
- AppAuth
- React
- - SSO (= 1.3.6)
+ - SSO (= 1.3.9)
- SDWebImage (5.11.0):
- SDWebImage/Core (= 5.11.0)
- SDWebImage/Core (5.11.0)
- SDWebImageWebPCoder (0.6.1):
- libwebp (~> 1.0)
- SDWebImage/Core (... | package lock and podfile lock | package lock and podfile lock
|
b249e83a60b53d1579fbd0c976db7947fa4c6237 | --- packages/me-at-walmart-container/__tests__/services/navConfig.test.ts
@@ -14,7 +14,7 @@ import {
fetch,
addChangeListener
} from '../../src/services/navConfig';
-import { navConfig, transformedNavConfig } from '../utils/navConfig';
+import { navConfig, transformedNavConfig } from '../utils/mockNavConfigData'... | renamed packages/me-at-walmart-container/tests/utils/navConfig.js to packages/me-at-walmart-container/tests/utils/mockNavConfigData.js | renamed packages/me-at-walmart-container/tests/utils/navConfig.js to packages/me-at-walmart-container/tests/utils/mockNavConfigData.js
|
c6b23436ad2c4ea6054f40c40012c8e4b53b4ce1 | --- package-lock.json
@@ -3319,9 +3319,9 @@
}
},
"@walmart/config-components": {
- "version": "1.0.33",
- "resolved": "https://npme.walmart.com/@walmart/config-components/-/config-components-1.0.33.tgz",
- "integrity": "sha512-hvSeIypkkOswVscxg7izoW1UVUXvEcGICCUY6VIH3COjKvv1WnJRhrqFC7Bs8... | SSMP-2486 | SSMP-2486
|
44214b9eed3a8500565224ae9ded3932475b7b0b | --- packages/celebration-mini-app-graphql/src/components/Widget/HubCelebrationWidget.tsx
@@ -44,7 +44,7 @@
import React, {useEffect, useMemo, useState, useCallback} from 'react';
import {View, AccessibilityInfo} from 'react-native';
import {Body, Divider} from '@walmart/gtp-shared-components';
-import {HubWidgetV2} ... | feat(ui): resolve merge conflicts | feat(ui): resolve merge conflicts
|
013398702c8fb18da3cc2d59103c2cca36fcbda5 | --- fastlane/Fastfile
@@ -51,14 +51,6 @@ lane :set_build do
)
end
-before_all do |lane, options|
- # ...
-end
-
-before_each do |lane, options|
- # ...
-end
-
desc "Upload IPA and APK to App Center"
lane :submit_to_appcenter do |options|
@@ -67,6 +59,7 @@ lane :submit_to_appcenter do |options|
if options... | added release notes to AppCenter build | added release notes to AppCenter build
|
110e48f955c09885e5fce6e09fcd186993e1d7e0 | --- package.json
@@ -99,9 +99,9 @@
"@walmart/react-native-shared-navigation": "6.1.4",
"@walmart/react-native-sumo-sdk": "2.6.0",
"@walmart/redux-store": "3.7.0",
- "@walmart/roster-mini-app": "2.25.0",
+ "@walmart/roster-mini-app": "2.25.2",
"@walmart/ui-components": "1.15.1",
- "@walmart/... | fix(ui): update modal for roster and womconnect screens | fix(ui): update modal for roster and womconnect screens
|
03774234c7da01d87348006af8af170de5ecb65b | --- package-lock.json
@@ -67,7 +67,7 @@
"@walmart/react-native-sumo-sdk": "2.6.0",
"@walmart/redux-store": "3.7.0",
"@walmart/ui-components": "1.15.1",
- "@walmart/wmconnect-mini-app": "1.1.6",
+ "@walmart/wmconnect-mini-app": "1.2.0",
"babel-jest": "^29.2.1",
... | feat(ui): updating package version smdv-5695 | feat(ui): updating package version smdv-5695
|
bff74242dee2508c110a92c75aed23710b853813 | --- package-lock.json
@@ -3159,9 +3159,9 @@
}
},
"@walmart/push-to-talk-mini-app": {
- "version": "0.3.29-rc.3",
- "resolved": "https://npme.walmart.com/@walmart/push-to-talk-mini-app/-/push-to-talk-mini-app-0.3.29-rc.3.tgz",
- "integrity": "sha512-2fHNeC6VS78QH07OIpF+r6SDIqZm72jSUNf6bKF... | PTT Mini app version update to v0.3.31 (#461) | PTT Mini app version update to v0.3.31 (#461)
* PTT Mini app version update to v0.3.30
* PTT Version bump
Co-authored-by: Ernesto Ruano Mamud <ernesto.ruanomamud@walmart.com>
Co-authored-by: Savankumar Akbari - sakbari <sakbari@m-c02rv0v4g8wl.homeoffice.wal-mart.com> |
d9cd7219655ee833597444b2a9e277483687ce81 | --- __tests__/__mocks__/@walmart/associate-listening-mini-app.js
@@ -0,0 +1,4 @@
+module.exports = {
+ AesSurveyCard: 'AesSurveyCard',
+ AvailableSurveysNav: 'AvailableSurveysNav',
+};
--- __tests__/navigation/AssociateHallwayNav/__snapshots__/MainStackNavTest.tsx.snap
@@ -150,6 +150,10 @@ exports[`AssociateHallway... | feat: aes survey integration | feat: aes survey integration
|
47ac28744e0a3d48bf78da27cecf7a72fc20c474 | --- package.json
@@ -72,7 +72,7 @@
"@walmart/gtp-shared-components": "^0.2.2",
"@walmart/impersonation-mini-app": "1.0.15",
"@walmart/inbox-mini-app": "0.0.92",
- "@walmart/ItemInfo": "0.1.123",
+ "@walmart/ItemInfo": "0.1.124",
"@walmart/moment-walmart": "1.0.4",
"@walmart/push-to-talk-m... | iteminfo 124 | iteminfo 124
|
abcbb825a7a408aef997d6239c6f1dbd249436d8 | --- package.json
@@ -89,7 +89,7 @@
"@walmart/exception-mini-app": "0.42.1",
"@walmart/facilities-management-miniapp": "0.2.2",
"@walmart/feedback-all-spark-miniapp": "0.6.0",
- "@walmart/financial-wellbeing-feature-app": "1.0.22",
+ "@walmart/financial-wellbeing-feature-app": "1.0.23",
"@walma... | financial-wellbeing-feature-app - v1.0.23 | financial-wellbeing-feature-app - v1.0.23
|
9a024a91c45cab9dbcbf128ded4fb23ecdb72b28 | --- package-lock.json
@@ -4475,9 +4475,9 @@
}
},
"@walmart/taskit-mini-app": {
- "version": "0.254.0-rc.0",
- "resolved": "https://npme.walmart.com/@walmart/taskit-mini-app/-/taskit-mini-app-0.254.0-rc.0.tgz",
- "integrity": "sha512-Eznjvw57SWVzjaQAqYdouEeXKmQbQdRMtTS2azj2hxKIsRhmE4BH5KI... | upgrading taskit version | upgrading taskit version
|
86cfbab16964bb396ea9e6ac3c1cd1059723270f | --- package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@walmart/myteam-mini-app",
- "version": "1.0.12",
+ "version": "1.0.13",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@walmart/myteam-mini-app",
- "version": "1.0.12",
+ "version": "1.0.13",
"hasInstal... | Update version | Update version
|
380e147f7ad4ef114a9add134b26978a9f9e47f4 | --- package-lock.json
@@ -79,7 +79,7 @@
"@walmart/schedule-mini-app": "0.33.0",
"@walmart/settings-mini-app": "1.17.0",
"@walmart/shelfavailability-mini-app": "1.5.13",
- "@walmart/taskit-mini-app": "2.24.2",
+ "@walmart/taskit-mini-app": "2.24.4",
"@walmart/time-clock-... | Updating taskIt version | Updating taskIt version
|
83a3abc046d4f0b13c289006d43f021094d4aaac | --- lerna.json
@@ -1,5 +1,5 @@
{
- "version": "6.24.1-alpha.0",
+ "version": "6.25.0",
"npmClient": "yarn",
"changelogPreset": "angular",
"command": {
--- packages/core-services-allspark/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/core-services-allspark",
- "version": "6.24.1-alpha.0",
+ "versi... | chore: revert package version for publish | chore: revert package version for publish
|
bcaaaf115dd02e551dd71476ca5add725d8cbed5 | --- package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@walmart/myteam-mini-app",
- "version": "1.0.10",
+ "version": "1.0.11",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@walmart/myteam-mini-app",
- "version": "1.0.10",
+ "version": "1.0.11",
"hasInstal... | Update version | Update version
|
4e28cb7111f20a53674fd4cd7f2528bcf3526ec7 | --- packages/me-at-walmart-container/__tests__/redux/user.test.ts
@@ -24,7 +24,7 @@ import {fetchNavConfig} from '../../src/redux/navConfig';
import {registerNotification} from '../../src/redux/notification';
import {initializeClockService} from '../../src/redux/clock';
import {isNewCandidateMode} from '../../src/ht... | fix(firebase): added ccm checks for firebase auth services | fix(firebase): added ccm checks for firebase auth services
|
98f195cb37e1f8c310805bfdd7ddb11775b5b26f | --- packages/allspark-foundation-hub/src/HubFeature/SupplyChain/Components/ModalHeader.tsx
@@ -38,5 +38,6 @@ const styles = StyleSheet.create({
alignItems: 'center',
backgroundColor: colors.white,
},
- title: { flex: 1, textAlign: 'center', fontSize: 20 },
+ title: { flex: 1, textAlign: 'center', fontSiz... | Adding update modal updates | Adding update modal updates
|
f94af76ee37d189d44e112b3e28544b47a34f2fc | --- package.json
@@ -90,7 +90,7 @@
"@walmart/exception-mini-app": "0.43.1",
"@walmart/facilities-management-miniapp": "0.3.26",
"@walmart/feedback-all-spark-miniapp": "0.9.0",
- "@walmart/financial-wellbeing-feature-app": "1.0.29",
+ "@walmart/financial-wellbeing-feature-app": "1.0.56",
"@walm... | bumped financial-wellbeing-feature-app to 1.0.56 | bumped financial-wellbeing-feature-app to 1.0.56
|
a02acee1c48ab82ac9f23c35eb883634f157cf4a | --- package-lock.json
@@ -3162,9 +3162,9 @@
"integrity": "sha512-BAt1o+HxymOArDQgOizPt7B2itxi3LOwWFVS2+HH5Izat3wwqIsAZIOVEiOUkJtYALMlzm5uvAlteQLcUWhr+Q=="
},
"@walmart/time-clock-mini-app": {
- "version": "0.1.16",
- "resolved": "https://npme.walmart.com/@walmart/time-clock-mini-app/-/time-cl... | Splunk events and fixes (#296) | Splunk events and fixes (#296)
* Bump time clock mini app
* Updated package-lock.json |
7387c748f9007d57101db33cf881480805827c4f | --- .looper.multibranch.yml
@@ -5,6 +5,11 @@ tools:
flavor: azul
version: 17
+triggers:
+ - manual:
+ name: Publish Changed
+ call: publishFromChanges
+
flows:
prepare-npm-project:
- (name Yarn Install) corepack enable
@@ -22,3 +27,7 @@ flows:
- call: set-build-number
else:
... | feat: add publish flow to looper yml | feat: add publish flow to looper yml
|
502d0fac2ea732e44b8838f11ccd455e3bbb3769 | --- android/app/build.gradle
@@ -134,7 +134,7 @@ android {
applicationId "com.walmart.stores.allspark.beta"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 59
+ versionCode 60
versionName "1.0.4"
}
sp... | Incrementing build number | Incrementing build number
|
1f27db8cdd1942753eb77a50a0ae358fe832f6ef | --- .looper-pr.yml
@@ -5,10 +5,10 @@ envs:
variables:
APP_NAME: roster-miniapp
STAGES_TO_RUN:
- LINT: false
- UNITTEST: false
+ LINT: true
+ UNITTEST: true
BUILD: true
- SONAR_SCAN: false
+ SONAR_SCAN: true
ARTIFACT_PUBLISH: true
AU... | fix(ui): sonar property update SMDV-5648 | fix(ui): sonar property update SMDV-5648
|
5e75ac684ffc7baeb10d67dd7e5b3d0d1cc9502b | --- sonar-project.properties
@@ -4,7 +4,7 @@ sonar.projectVersion=1.0.0
sonar.host.url=http://sonar.looper.prod.walmartlabs.com
sonar.sources=targets/US/src,core/src, packages/me-at-walmart-container/src, packages/me-at-walmart-common/src, scripts/dependencies-map
-sonar.tests=targets/US/__tests__,core/__tests__, p... | fix: wildcards not supported by sonar | fix: wildcards not supported by sonar
|
1997328d8381bf3ea54be58e78b3a65c4a731192 | --- src/components/HorizontalLine.tsx
@@ -1,6 +1,9 @@
import React from 'react';
-import {StyleSheet, View} from 'react-native';
+import {StyleSheet, View, ViewStyle} from 'react-native';
+type Props = {
+ style: ViewStyle;
+};
const styles = StyleSheet.create({
lineStyle: {
width: '100%',
@@ -9,4 +12,6 @@... | more lint fixes | more lint fixes
|
bbde4662428222a2696cee72cdcc020067372b5c | --- package-lock.json
@@ -4208,9 +4208,9 @@
"integrity": "sha512-uhePNwmz7vU5/Os9WS8w2BBZvrCzRGgk+AtLcxkQcQdq/5eC48iWL6tuHXRVTUF2eVTggaPqIxEA9ZOBsmwK1Q=="
},
"@walmart/feedback-all-spark-miniapp": {
- "version": "0.1.29",
- "resolved": "https://npme.walmart.com/@walmart/feedback-all-spark-min... | feedback miniapp version update | feedback miniapp version update
|
2879592ea9ffc4fb918f610e1f5f584067abba4b | --- packages/allspark-foundation-hub/__tests__/TeamOnboarding/TeamSelection.test.tsx
@@ -116,7 +116,7 @@ describe('Team selection render tests', () => {
});
it('Renders the screen when loading', () => {
- (useTeamsByStore as jest.fn).mockImplementation(() => ({
+ (useTeamsByStore as jest.Mock).mockImpleme... | fixed mock cast | fixed mock cast
|
151e1e8988412515858550fc7c044c101c8e374a | --- packages/allspark-foundation/__tests__/cli/linkUtils.test.ts
@@ -0,0 +1,29 @@
+import { mergeDeep } from '@apollo/client/utilities';
+import { isObject } from '@walmart/gtp-shared-components/dist/next/utils';
+
+describe('isObject', () => {
+ it('should return true if the passed argument is an object', () => {
+ ... | test(foundation): unit tests for link utils | test(foundation): unit tests for link utils
|
3ae73f647729f7c9317035be919b185bc960942e | --- packages/core-services-allspark/src/graphql/provider.tsx
@@ -45,7 +45,8 @@ export const AllsparkGraphqlProvider = (props: PropsWithChildren<{}>) => {
const defaultLinks = [contentTypeHeaderLink, typeRemappingLink, loggerLink];
if (!useShadowGateway) {
- return defaultLinks.unshift(athenaUriLink);
+... | chore: type fix | chore: type fix
|
29fbed2a5d207ca88b724b001f27087bb12f55d2 | --- package-lock.json
@@ -3629,9 +3629,9 @@
}
},
"@walmart/welcomeme-mini-app": {
- "version": "0.29.1",
- "resolved": "https://npme.walmart.com/@walmart/welcomeme-mini-app/-/welcomeme-mini-app-0.29.1.tgz",
- "integrity": "sha512-/+97dklmc3PIfSoBgmrbBn/EvpOY85b1o3kOZpUU74c3oafchPSpcw+ywL... | version bump | version bump
|
dbde2d7934ad49fd997a5d4da17c835151492037 | --- packages/allspark-foundation/src/Feature/AllsparkFeatureModule.tsx
@@ -182,6 +182,27 @@ export class AllsparkFeatureModule<
return screens?.[screen];
};
+ public buildScreenComponent = <
+ K extends InferRecordKey<InferCapabilityType<Module['screens']>>,
+ >(
+ screen: K
+ ) => {
+ const confi... | feat(feature): add build screen component method to feature module | feat(feature): add build screen component method to feature module
|
dc21c8b76397f57a80bca8b4692e80666119eb5e | --- package-lock.json
@@ -74,7 +74,7 @@
"@walmart/onewalmart-miniapp": "1.0.16",
"@walmart/pay-stub-miniapp": "0.15.2",
"@walmart/payrollsolution_miniapp": "0.135.3",
- "@walmart/price-changes-mini-app": "1.10.3",
+ "@walmart/price-changes-mini-app": "1.10.4",
"@walmart... | Bump price changes mini app | Bump price changes mini app
|
ad08311597f392666b722c4d1b6c87cfcffc06eb | --- package.json
@@ -141,7 +141,7 @@
"@walmart/returns-mini-app": "4.6.0",
"@walmart/rfid-scan-mini-app": "2.3.10",
"@walmart/roster-mini-app": "1.1.7",
- "@walmart/schedule-mini-app": "0.108.0",
+ "@walmart/schedule-mini-app": "^0.114.2",
"@walmart/shelfavailability-mini-app": "1.5.23",
... | Adding Schedule-mini-app for Drop22 | Adding Schedule-mini-app for Drop22
|
7a2a652b62f353a96d14dfd17a8968d0de4a3f0a | --- package.json
@@ -107,7 +107,7 @@
"@walmart/global-vpi-mini-app": "1.1.14",
"@walmart/gta-react-native-calendars": "0.7.0",
"@walmart/gtp-shared-components": "2.2.7-rc.0",
- "@walmart/ims-print-services-ui": "2.18.0",
+ "@walmart/ims-print-services-ui": "2.18.1",
"@walmart/inbox-mini-app": ... | Bump Print UI to v2.18.1 | Bump Print UI to v2.18.1
|
400ee72ae533a9a080bb9ef3aa1135f8f9b17e26 | --- package.json
@@ -111,7 +111,7 @@
"@walmart/feedback-all-spark-miniapp": "patch:@walmart/feedback-all-spark-miniapp@npm%3A0.9.75#~/.yarn/patches/@walmart-feedback-all-spark-miniapp-npm-0.9.75-733d2d347a.patch",
"@walmart/financial-wellbeing-feature-app": "1.29.10",
"@walmart/functional-components": "~... | feat: global VPI v1.1.36 Drop34 INTMOBL-99043 (#4618) | feat: global VPI v1.1.36 Drop34 INTMOBL-99043 (#4618)
* feat: global vpi v1.1.36
* feat: upgrade version global vpi 1.1.40
* chore: update app name in setting section
---------
Co-authored-by: Aroushi Sharma - a0s11tw <Aroushi.Sharma@walmart.com> |
20e45f4aebc340ebb0602234ba2b935bf54fa66a | --- packages/allspark-foundation-hub/src/HubFeature/Hub/TeamSwitcher/index.tsx
@@ -209,6 +209,14 @@ export const TeamSwitcher = ({
placeholder={Images[item.teamId ?? item.teamLabel]?.blurhash}
testID={`team-image-${item.teamLabel}`}
resizeMode='contain'
+ onErro... | Adding logs for TeamOnboarding image | Adding logs for TeamOnboarding image
|
780bf4a7b54f819c7b4b9c5043ef413ba629112a | --- package.json
@@ -95,7 +95,7 @@
"@walmart/react-native-sumo-sdk": "2.7.4",
"@walmart/redux-store": "6.3.29",
"@walmart/ui-components": "1.15.1",
- "@walmart/wmconnect-mini-app": "2.35.0",
+ "@walmart/wmconnect-mini-app": "2.35.1",
"babel-jest": "^29.6.3",
"chance": "^1.1.11",
"cry... | Updating wmconnect version | Updating wmconnect version
|
092bc034260820d6362f1ed992726ee162da5e9b | --- __tests__/__mocks__/@react-native-firebase/firestore.js
@@ -1,4 +1,4 @@
-import {store100Collection} from '../../harness/firestore/data/store100';
+import {store100Collection} from '../../harness/firestore/data/stores';
import {generateCreatedAt as mockGenerateCreatedAt} from '../../harness/firestore/data/timestam... | resolve mock method | resolve mock method
|
39e4b19ca07d4ecb1af44af1385c72ab4e49cdf6 | --- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/roster-mini-app",
- "version": "2.12.1-alpha.10",
+ "version": "2.12.1-alpha.11",
"main": "dist/index.js",
"files": [
"dist"
@@ -104,7 +104,7 @@
"@walmart/react-native-sumo-sdk": "2.6.0",
"@walmart/redux-store": "6.1.4",
"@walmart/ui-c... | Update roster mini app version | Update roster mini app version
|
407ca7d14b67ef8b7edf0f7f877280edc78df12c | --- targets/US/ios/Podfile.lock
@@ -2177,7 +2177,7 @@ PODS:
- React-Core
- RNFS (2.20.0):
- React-Core
- - RNGestureHandler (2.18.1):
+ - RNGestureHandler (2.16.0):
- glog
- RCT-Folly (= 2022.05.16.00)
- React-Core
--- targets/US/package.json
@@ -90,7 +90,7 @@
"@walmart/avp-feature-... | reverted some changes | reverted some changes
|
f610a5cda053949e19ed9f6f8c453fe61705f817 | --- packages/allspark-foundation/src/Redux/client.ts
@@ -5,6 +5,8 @@ import {
ReducersMapObject,
EnhancedStore,
DevToolsEnhancerOptions,
+ createListenerMiddleware,
+ ListenerMiddlewareInstance,
} from '@reduxjs/toolkit';
import createSagaMiddleware, { Saga, SagaMiddleware } from 'redux-saga';
@@ -28,7 +... | feat: add listener middleware from redux toolkit. added methods to redux client to interface | feat: add listener middleware from redux toolkit. added methods to redux client to interface
|
9a2255dd99437fe447e709e3dcc58051b28c6436 | --- package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@walmart/myteam-mini-app",
- "version": "1.0.16-alpha-6",
+ "version": "1.0.16-alpha-7",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@walmart/myteam-mini-app",
- "version": "1.0.16-alpha-6",
+ "version": "1.... | Update version | Update version
|
2281be1920fb3bd4d854114acee6f2ca360ccb82 | --- packages/associate-exp-hub-mini-app/src/components/team-switcher/MyWalmartTeamSwitcherFilter.tsx
@@ -75,7 +75,7 @@ export interface TeamSwitcherProps {
/**
* Hook to detect if this component instance should be active
- *
+ *
* @returns boolean - true if component is focused and app is in foreground
*/
co... | feat(ui): fix the loader issue | feat(ui): fix the loader issue
|
084b3f545b19ad22d1e798c49fa00b0ecfa5c530 | --- packages/allspark-foundation-hub/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.25.27](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-foundat... | chore(version): updating package version | chore(version): updating package version
- @walmart/allspark-foundation@7.17.7
- @walmart/allspark-foundation-hub@1.25.27
- @walmart/my-walmart-hub@1.9.3
|
4095717225293e949a4c776df78d987cf3072cfc | --- ios/BuildSupport/AppStore.keychain-db
Binary files a/ios/BuildSupport/AppStore.keychain-db and b/ios/BuildSupport/AppStore.keychain-db differ
| BUILD: AppStore cert regen | BUILD: AppStore cert regen
|
fb1355341322a784be21ebfd2fcbcb80b6e61308 | --- package-lock.json
@@ -54,7 +54,7 @@
"@walmart/gtp-shared-components": "^2.0.1",
"@walmart/impersonation-mini-app": "1.11.0",
"@walmart/ims-print-services-ui": "1.2.0",
- "@walmart/inbox-mini-app": "0.81.7-395-de7e577",
+ "@walmart/inbox-mini-app": "0.81.9",
"@walmar... | wmWeekFix in inbox | wmWeekFix in inbox
|
1b04be1a58e65a40e5531703d38b109ceab784bf | --- packages/allspark-foundation-hub/__tests__/supplyChain/Screens/__snapshots__/OnboardingScreen.test.tsx.snap
@@ -8,6 +8,7 @@ exports[`OnboardingScreen renders OnboardingScreen screen component 1`] = `
"backgroundColor": "#fff",
}
}
+ testID="onboarding-screen"
>
<View>
<View
| Updating snapshot | Updating snapshot
|
42802b9e2dd3cf53dd76470c7d1fed0cb1ff2bee | --- .gitignore
@@ -50,9 +50,4 @@ ios/
#Yarn
install-state.gz
-build.context.json
-
-# AI and development tools
-.context-registry/
-CLAUDE.md
-.ai-team-workspace/
\ No newline at end of file
+build.context.json
\ No newline at end of file
--- package.json
@@ -1,10 +1,11 @@
{
"name": "@walmart/wmconnect-mini-a... | feat(compensable): SMDV-8430 code cleanup | feat(compensable): SMDV-8430 code cleanup
|
ea5f3092697ee3353a9946b63dff2bd0a9fc1444 | --- packages/allspark-foundation-hub/src/Store/Modules/TeamSwitcher/index.tsx
@@ -296,7 +296,8 @@ export const TeamSwitcher = ({
};
const renderTeamItem = ({ item }: { item: TeamSwitcherTypes }) => {
- const isSelected = item?.teamLabel === selectedTeam;
+ const isSelected =
+ item?.teamLabel === (se... | resolved conflicts | resolved conflicts
|
15327612a63680aaae9c03f7106f2e3ff6807e10 | --- package-lock.json
@@ -83,7 +83,7 @@
"@walmart/redux-store": "3.7.0",
"@walmart/returns-mini-app": "3.13.0",
"@walmart/schedule-mini-app": "0.63.0",
- "@walmart/shelfavailability-mini-app": "1.5.18",
+ "@walmart/shelfavailability-mini-app": "1.5.19",
"@walmart/store-... | Upgrade Shelf Availability mini-app to v1.5.19 | Upgrade Shelf Availability mini-app to v1.5.19
|
99a205bd9caf071ea2ddeb410d401b7d7a7f671d | --- .gitignore
@@ -18,7 +18,7 @@ yarn-error.log
# generated by bob
lib/
-packages/allspark-foundation/cli/
+packages/allspark-foundation/cli/*
# jest
coverage
| chore: update git ignore for foundation cli | chore: update git ignore for foundation cli
|
9f722ead46c967a15a117824091fa202d05ed224 | --- __tests__/__mocks__/@walmart/me-at-walmart-athena-queries.js
@@ -1,3 +1,4 @@
module.exports = {
+ useGetTeamByIdHomeQuery: jest.fn(),
useGetTeamByIdHomeLazyQuery: jest.fn(),
};
--- __tests__/home/components/TaskCard/TaskClockStatusTeamCard2Test.tsx
@@ -4,7 +4,7 @@ import {act, create, ReactTestRenderer} fro... | chore: fix tests for task team card changes | chore: fix tests for task team card changes
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.