commit_hash stringlengths 40 40 | input stringlengths 13 7.99k | output stringlengths 5 155 | full_message stringlengths 6 8.96k |
|---|---|---|---|
7cd85b3e9c25afbf4a223c6f516a27f921cd44b2 | --- android/app/src/main/assets/fonts/icomoon.ttf
Binary files a/android/app/src/main/assets/fonts/icomoon.ttf and b/android/app/src/main/assets/fonts/icomoon.ttf differ
--- ios/icomoon.ttf
Binary files a/ios/icomoon.ttf and b/ios/icomoon.ttf differ
--- package-lock.json
@@ -4263,9 +4263,9 @@
"integrity": "s... | Item info drop 6 changes part 1 | Item info drop 6 changes part 1
|
47c7762d9c1736b209de2a2ee7b184b34df69b02 | --- ios/AllSpark/Info.plist
@@ -60,8 +60,6 @@
<true/>
<key>NSAppTransportSecurity</key>
<dict>
- <key>NSAllowsArbitraryLoads</key>
- <true/>
<key>NSExceptionDomains</key>
<dict>
<key>i5.walmartimages.com</key>
--- package-lock.json
@@ -104,7 +104,7 @@
"@walmart/schedule-mini-app": "0.94.1",... | Updated taskit version | Updated taskit version
|
646ded0a7e4668bd4c7c75117211a636083ca790 | --- docs/CHANGELOG.md
@@ -1,3 +1,12 @@
+# [3.5.0](https://gecgithub01.walmart.com/smdv/wmconnect-miniapp/compare/v3.4.0...v3.5.0) (2025-09-05)
+
+
+### Features
+
+* **ui:** firestore instance update ([04451c8](https://gecgithub01.walmart.com/smdv/wmconnect-miniapp/commit/04451c8d059d2412d9219208a103a2950ef804aa))
+* *... | chore(release): 3.5.0 [skip ci] | chore(release): 3.5.0 [skip ci]
# [3.5.0](https://gecgithub01.walmart.com/smdv/wmconnect-miniapp/compare/v3.4.0...v3.5.0) (2025-09-05)
### Features
* **ui:** firestore instance update ([04451c8](https://gecgithub01.walmart.com/smdv/wmconnect-miniapp/commit/04451c8d059d2412d9219208a103a2950ef804aa))
* **ui:** reverti... |
b2ec8bb8df2b1766f700da8f6f3300da49843aa3 | --- packages/me-at-walmart-athena-queries/src/schema.graphql
@@ -2814,15 +2814,6 @@ type CourseProgress {
storeNum: Int
version: Int
- """
- Role of associate
- """
- role: RosterRole
- rosterType: VIEW_TYPE
- storeEntity: StoreEntity
- storeNum: Int
- version: Int
-
"""
Vi... | Adding upsertSupplyChainAssociatePreference query | Adding upsertSupplyChainAssociatePreference query
|
db654759ff4288953263a2991fcb25d0f298cbce | --- ios/Podfile.lock
@@ -515,7 +515,7 @@ PODS:
- React-Core
- react-native-image-resizer (1.4.5):
- React-Core
- - react-native-logger (1.33.0):
+ - react-native-logger (1.34.4):
- React
- react-native-loudness (2.0.0):
- React
@@ -556,7 +556,7 @@ PODS:
- React-Core
- react-native-wm... | build(pod): update podfile | build(pod): update podfile
|
1353fa7d4fad967594339fa10ce1443860d391c9 | --- src/hooks/user.ts
@@ -0,0 +1,10 @@
+import {useSelector} from 'react-redux';
+import {UserSelectors, User} from '@walmart/redux-store';
+
+export const useIsSalariedOrTeamLead = () => {
+ const user: User = useSelector(UserSelectors.getUser);
+ const payType = user.employeeType as 'H' | 'S';
+ const jobDescripti... | adding hook for is salaried or team lead check | adding hook for is salaried or team lead check
|
51b7b3bb85b500d02ae94d2155f7bd6e99de4004 | --- android/app/src/main/assets/fonts/icomoon.ttf
Binary files a/android/app/src/main/assets/fonts/icomoon.ttf and b/android/app/src/main/assets/fonts/icomoon.ttf differ
--- ios/icomoon.ttf
Binary files a/ios/icomoon.ttf and b/ios/icomoon.ttf differ
--- package-lock.json
@@ -4435,9 +4435,9 @@
}
},
... | version bump | version bump
|
c3af1c0e039b6cb15d8b5005f9dafb19c4c7291e | --- package.json
@@ -153,7 +153,7 @@
"@walmart/taskit-mini-app": "5.34.9",
"@walmart/time-clock-mini-app": "2.462.1",
"@walmart/time-clock-mini-app-next": "2.812.1",
- "@walmart/topstock-mini-app": "1.22.3",
+ "@walmart/topstock-mini-app": "1.23.4",
"@walmart/translator-mini-app": "1.4.5",
... | Topstock Drop/30 (#4134) | Topstock Drop/30 (#4134)
* fix: VS-2581 ADA bug fix
* fix: VS-9019 updated topstock version
* fix: VS-9089 ui fix
* fix: VS-9089 ui fixes
---------
Co-authored-by: Pavan Lingamallu - p0l04ug <Pavan.Lingamallu@walmart.com> |
75da3d5e00f73d1fa9f1587ef36ff744894cfef8 | --- packages/allspark-foundation/src/GlobalElements/context.tsx
@@ -177,10 +177,13 @@ export const createGlobalElement = (
const reverse = useRef<GlobalElementConfig>(element);
useFocusEffect(
useCallback(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
update(co... | fix: clear timeout to avoid memory leaks | fix: clear timeout to avoid memory leaks
|
16ae6e9f576c5f2a1c0959f53e25789dcb346f00 | --- src/components/RosterFiltersAndInfo/types.ts
@@ -6,8 +6,8 @@ export interface RosterFiltersAndInfoProps {
associates?: Associate[];
filterChips: FilterChipProps[];
selectedFilter?: FilterValue;
- selectedShift?: ShiftType;
- onShiftChange: (shift: ShiftType) => void;
+selectedShift: ShiftType | null = nu... | Update src/components/RosterFiltersAndInfo/types.ts | Update src/components/RosterFiltersAndInfo/types.ts
Co-authored-by: AI Code Assistant <AI-Code-Assistant@email.wal-mart.com> |
102f7e29bf59a1885ea669fe17fa5e0b73b01dbe | --- package-lock.json
@@ -45,8 +45,8 @@
"@walmart/counts-component-miniapp": "0.1.2",
"@walmart/emergency-mini-app": "1.23.2",
"@walmart/exception-mini-app": "1.2.4",
- "@walmart/facilities-management-miniapp": "0.6.6",
- "@walmart/feedback-all-spark-miniapp": "0.9.10",
+ ... | Upadting the facilities-management-miniapp to 0.6.7 | Upadting the facilities-management-miniapp to 0.6.7
|
78149a3a3ff59dc83bc0c4a3ca9cc9a4eaf1da21 | --- package-lock.json
@@ -40,7 +40,7 @@
"@walmart/amp-mini-app": "1.1.48",
"@walmart/ask-sam-chat-components": "^0.2.7",
"@walmart/ask-sam-mini-app": "1.13.4",
- "@walmart/attendance-mini-app": "1.29.0",
+ "@walmart/attendance-mini-app": "1.31.0",
"@walmart/compass-sdk-... | ama v1.31.0 | ama v1.31.0
|
b1cd0a70058a14ac26847c7948a478457390f349 | --- packages/allspark-foundation-hub/src/HubFeature/Hub/Container/Screens/HubDashboard.tsx
@@ -118,6 +118,7 @@ export const HubDashboard = ({
// After changing store, reload all the hub widgets with new store data.
useEffect(() => {
if (currentSiteId !== parentSiteID.current) {
+ hideOnboardingFlow();
... | Update manager experience | Update manager experience
|
31d90789a6b528a5b347d6067779cff768ac73ae | --- package.json
@@ -245,7 +245,7 @@
"react-native-wm-telemetry": "6.3.17",
"react-native-wm-voice-text": "1.0.4",
"react-redux": "^8.1.3",
- "realm": "12.14.0",
+ "realm": "12.8.1",
"redux": "^4.2.1",
"redux-saga": "^1.2.3",
"redux-thunk": "^2.4.0",
--- yarn.lock
@@ -6822,7 +6822,... | fix: downgrade realm to fix memory allocation error on install | fix: downgrade realm to fix memory allocation error on install
|
5bad0f2682a67650cf21f432b75c2173d165078b | --- index.js
@@ -1,6 +1,6 @@
import 'react-native-get-random-values';
import {AppRegistry, LogBox} from 'react-native';
-import App from './container';
+import MeAtWalmart from './container';
import {name as appName} from './app.json';
LogBox.ignoreAllLogs(true);
-AppRegistry.registerComponent(appName, () => App);
... | Update index file to fix the rendering | Update index file to fix the rendering
|
1b33777a5362523f991ce9b2d9f2113ac5f813f9 | --- 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.12.1-alpha.5",
+ "@walmart/roster-mini-app": "2.12.1-alpha.6",
"@walmart/ui-components": "1.15.1",... | Update my team mini app version | Update my team mini app version
|
8cb1c4d347f68b7b3fc8c85ff701bcdad75d29bb | --- 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.24.10](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-foundat... | chore(version): updating package version | chore(version): updating package version
- @walmart/allspark-foundation@7.14.1
- @walmart/allspark-foundation-hub@1.24.10
- @walmart/ax-components@1.2.1
- @walmart/me-at-walmart-geolocation@1.4.13
- @walmart/me-at-walmart-location@1.2.13
- @walmart/my-walmart-hub@1.4.10
|
a81c3036e37822e3f9e2f1de141cbbf07760f83a | --- core/__tests__/home/components/CelebrationCard/indexTest.tsx
@@ -178,7 +178,7 @@ describe('CelebrationCard', () => {
component.update(<CelebrationCard {...baseProps} />);
expect(component.toJSON()).toBe(null);
});
- xit('does render the card when associate is clocked in', () => {
+ it('does render th... | reverted the change added to create teh build | reverted the change added to create teh build
|
c62890aa33bd63ba05101f3141d516e82c6cde28 | --- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/roster-mini-app",
- "version": "2.12.17",
+ "version": "2.12.18",
"main": "dist/index.js",
"files": [
"dist"
--- src/components/AssociateList/AssociateListItem.tsx
@@ -14,7 +14,6 @@ import {
transformWfmSchedule,
} from '../../utils';
import {... | Update roster mini app version | Update roster mini app version
|
ac43acf4f29ac8b5bb23239f5bf4793de81e644e | --- targets/US/package.json
@@ -113,7 +113,7 @@
"@walmart/ims-print-services-ui": "2.16.4",
"@walmart/inbox-mini-app": "0.97.13",
"@walmart/invue-react-native-sdk": "0.1.26-beta.3-w2",
- "@walmart/iteminfo-mini-app": "8.1.0",
+ "@walmart/iteminfo-mini-app": "8.1.1",
"@walmart/learning-mini-app... | Chore: Item Information bump to 8.1.1 | Chore: Item Information bump to 8.1.1
|
a855cd72caec4319ac516c8687e8271f7eb74f3e | --- targets/US/package.json
@@ -123,7 +123,7 @@
"@walmart/myteam-mini-app": "1.12.0",
"@walmart/native-rfid-scanner": "3.10.10",
"@walmart/onewalmart-miniapp": "1.0.24",
- "@walmart/pay-stub-miniapp": "0.15.3",
+ "@walmart/pay-stub-miniapp": "0.15.4",
"@walmart/payrollsolution_miniapp": "0.141... | bump version | bump version
|
fe923578520e7ef209abffa586b2987296e10bcd | --- package-lock.json
@@ -80,7 +80,7 @@
"@walmart/schedule-mini-app": "0.37.0",
"@walmart/settings-mini-app": "1.18.1",
"@walmart/shelfavailability-mini-app": "1.5.16",
- "@walmart/taskit-mini-app": "2.39.0",
+ "@walmart/taskit-mini-app": "2.34.6",
"@walmart/time-clock-... | review comment | review comment
|
2bc428396eb8f4766c0a1dbc1574e2402ce0028a | --- lerna.json
@@ -7,7 +7,8 @@
"conventionalCommits": true,
"conventionalPrerelease": true,
"message": "chore(publish): publish package",
- "verifyAccess": false
+ "verifyAccess": false,
+ "registry": "https://npme.walmart.com"
},
"version": {
"message": "chore(versi... | chore: lerna fix | chore: lerna fix
|
3588df58a2354d4a02ce18c0effef0b88528d383 | --- packages/allspark-utils/src/createGlobal.ts
@@ -24,7 +24,7 @@ export const valueToProxyPromise = (value: any) => {
export const createGlobalInstance = <T extends Record<string | symbol, any>>(
fallback: Promisify<Required<T>>,
ref: {
- readonly current: T | null;
+ readonly current: T | undefined | nul... | feat: add render on change hook and integrated to registry hook | feat: add render on change hook and integrated to registry hook
|
48cf275173fb8a20267bb89c7c50d017eae6a204 | --- ios/AllSpark/AppDelegate.mm
@@ -28,28 +28,28 @@
@end
#endif
-// #ifdef FB_SONARKIT_ENABLED
-// #import <FlipperKit/FlipperClient.h>
-// #import <FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h>
-// #import <FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h>
-// #import <FlipperKitReactPlugin/FlipperKitReactPl... | Removing flipper from non-debug build on IOS | Removing flipper from non-debug build on IOS
|
b6c905bbf08219902b2cc53a54dd4d804ec95609 | --- 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.60.1",
+ "@walmart/copilot-mini-app": "^1.62.1",
"@walmart/core-services... | chore: bump copilot@1.62.1 | chore: bump copilot@1.62.1
|
087cd9ac878b62b266966e367c935521bd0a3f79 | --- src/index.tsx
@@ -4,7 +4,7 @@ import {useSelector, useDispatch} from 'react-redux';
import {ThunkDispatch} from '@reduxjs/toolkit';
import {firebase} from '@react-native-firebase/app-check';
-import {SiteSelectors, reducerManager} from '@walmart/redux-store';
+import {SiteSelectors, reducerManager, addSagas} fr... | adding original algo | adding original algo
|
af520f32b28af6b5cf85c88e043252f3b908efc8 | --- package.json
@@ -85,7 +85,7 @@
"@walmart/allspark-utils": "6.1.4",
"@walmart/amp-mini-app": "1.1.80",
"@walmart/ask-sam-chat-components": "^0.2.7",
- "@walmart/ask-sam-mini-app": "1.22.2",
+ "@walmart/ask-sam-mini-app": "1.22.3",
"@walmart/attendance-mini-app": "3.44.0",
"@walmart/avp... | ask sam - added missing expo files | ask sam - added missing expo files
|
a4893f1b0799ba7eb27390635cd4005307590cea | --- package-lock.json
@@ -4198,9 +4198,9 @@
"integrity": "sha512-EcUV5UbnNZBvacqLesY18XKO/o3G6/k61ocI/ydIIPOhLXRgkiztQqMBE75bYxU7lQkRYtqgxcK3SzvAKP0RoQ=="
},
"@walmart/counts-component-miniapp": {
- "version": "0.0.32",
- "resolved": "https://npme.walmart.com/@walmart/counts-component-miniapp... | Counts version bump | Counts version bump
|
41595fde5c167565e5ec0366e8026b3b99bcaa2e | --- package-lock.json
@@ -5027,8 +5027,8 @@
},
"@walmart/OneWalmart-MiniApp": {
"version": "1.0.12",
- "resolved": "https://npme.walmart.com/@walmart/OneWalmart-MiniApp/-/OneWalmart-MiniApp-1.0.11.tgz",
- "integrity": "sha512-+4z1KqCaKdstCSQNd5SVWz/7gWU7IZHSgboWHf8WFJxGM7habDHtGV322q+4HwEdnNw... | lock file update | lock file update
|
c2d5b312e2b8edd35e1891d806c33047f1078570 | --- package-lock.json
@@ -5332,9 +5332,9 @@
"integrity": "sha512-7d62eBeJoUnnl5KOoDe+aOxU7C6VpkCM7Bl5iRgg1TMMqmUDM8iI2YDPRppU7hBr134Zbl5aVEGyR/IBQrPRxA=="
},
"@walmart/me-field-mini-app": {
- "version": "1.1.25",
- "resolved": "https://npme.walmart.com/@walmart/me-field-mini-app/-/me-field-mi... | feat: :package: Bump learning mini app version | feat: :package: Bump learning mini app version
|
10b4f897698a6ecad7c70e66c13c18a0a4a3692a | --- .looper.multibranch.yml
@@ -492,9 +492,9 @@ flows:
# @param buildOutput - output file from build
# @param betacrashUrl - url for this build
# @param betacrashPIN - pin for this build
+ # @param BUILD_NUMBER - the build number / version code of the build
slack-success:
- exposeVars(./betacrash.json... | added comments | added comments
|
2bc7983daf60a60e3c77b5fb72295dd2f16008f9 | --- android/app/build.gradle
@@ -118,7 +118,6 @@ def enableProguardInReleaseBuilds = false
* this variant is about 6MiB larger per architecture than default.
*/
def jscFlavor = 'org.webkit:android-jsc:+'
-def useIntlJsc = false
/**
* Whether to enable the Hermes VM.
@@ -260,14 +259,9 @@ dependencies {
... | exclude some dependency | exclude some dependency
|
34f97419e22d629acb57b63ea823a83e65f5ddbe | --- package-lock.json
@@ -4952,22 +4952,26 @@
}
},
"node_modules/@walmart/feedback-all-spark-miniapp": {
- "version": "0.9.0",
+ "version": "0.9.6",
+ "resolved": "https://npme.walmart.com/@walmart/feedback-all-spark-miniapp/-/feedback-all-spark-miniapp-0.9.6.tgz",
+ "integrity": "s... | Updated react native version to 70 and added peer dependency keyboard aware scrollview | Updated react native version to 70 and added peer dependency keyboard aware scrollview
|
da2ff19c7d3c6d65fb7a914c9d946acd48bb6a36 | --- app.config.US.ts
@@ -43,19 +43,13 @@ const CONFIG: ExpoConfig = {
adaptiveIcon: {
foregroundImage: AppVariant.select({
prod: `${__dirname}/assets/images/adaptive-icon-foreground.png`,
- beta: `${__dirname}/assets/images/adaptive-icon-foreground-beta.png`,
- teflon: `${__dirname}/a... | feat: add nonprod icons and replace with previous (#4631) | feat: add nonprod icons and replace with previous (#4631)
|
c1c45bebac25d1865b8032a65f7e2c941502735d | --- docs/docs/components/allspark foundation/services/foundation-location.md
@@ -1,118 +0,0 @@
----
-sidebar_position: 9
-title: Location Service
-custom_edit_url: null
----
-
-# Location Service
-
-The Allspark Location Service is a dynamic container service, meaning it's defined by the container app. It provides a se... | Deleting location service docs. | Deleting location service docs.
|
62cf28e56fd73ec683045e55fec4f16cf6076434 | --- .looper-pr.yml
@@ -31,3 +31,4 @@ envs:
AUTHOR: temp
SLACK_CHANNEL: "smdv-miniapp"
+
| feat(ui): update looper | feat(ui): update looper
|
7ad9f1db123673693b8a886146c496d195f18fe5 | --- package-lock.json
@@ -4702,9 +4702,9 @@
"integrity": "sha512-kGPI7/o+3DiIAhMTyPco72J7ftlJLPO/Eh+W2aCnFEHlH6ngKIOUrX3xSK8Lm9rBVWL3q2ZGzqCqsJXjwJW5ww=="
},
"@walmart/inbox-mini-app": {
- "version": "0.39.0",
- "resolved": "https://npme.walmart.com/@walmart/inbox-mini-app/-/inbox-mini-app-0.... | Badge issue fix for inbox | Badge issue fix for inbox
|
ccdaefc3be7b6cc7e58fa6251253a1a5ff6c843a | --- packages/allspark-foundation/src/User/types.ts
@@ -36,6 +36,7 @@ export interface User {
upn?: string;
teams?: Team[];
preferences?: Record<string, string | number | boolean>;
+ shift?: Record<string, string | number>;
// ??
displayName?: string;
emailId?: string;
| chore: update user type to include shift | chore: update user type to include shift
|
06c857ebe59984c89d0bd9f96a5a96ded0680a92 | --- packages/associate-exp-hub-hub/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.
+# [2.21.0](https://gecgithub01.walmart.com/allspark/associate-exp-hub-mini-app/compare/@walmart/as... | chore(version): updating package version | chore(version): updating package version
- @walmart/associate-exp-hub-hub@2.21.0
- @walmart/associate-exp-hub-mini-app@1.13.3
- @walmart/associate-exp-hub-team-switcher@2.23.0
|
fd629799045f5d07c6a247053353e8ab888c13d8 | --- src/containers/Message/index.tsx
@@ -23,11 +23,13 @@ const styles = StyleSheet.create({
message: {
maxWidth: MESSAGE_WIDTH,
},
- deletedMessageStyles: {
- color: '#74767C', // TODO - we have to use colors from the gtp-shared-components library
- fontSize: 12,
- lineHeight: 16,
- },
+ // TODO ... | Saving as is | Saving as is
|
1333f4eba0bb03ffb9481bcbe5d4c3be45dc7fa2 | --- ios/Podfile
@@ -22,16 +22,6 @@ source 'https://github.com/CocoaPods/Specs.git'
Pod::UI.puts "Flipper enabed: #{ENV['NO_FLIPPER'] == '1' ? 'false' : 'true'}"
# production = ENV["PRODUCTION"] == "1"
-def fix_hermes(app_name)
- path = "Pods/Target Support Files/Pods-" + app_name + "/Pods-" + app_name + "-framewor... | second commit | second commit
|
18f7fc793db4bb20cbd8a93dc50d504ac7fe2be7 | --- package.json
@@ -90,9 +90,9 @@
"@walmart/react-native-logger": "1.35.0",
"@walmart/react-native-scanner-3.0": "0.10.4",
"@walmart/react-native-sumo-sdk": "2.8.0",
- "@walmart/roster-mini-app": "3.11.0",
+ "@walmart/roster-mini-app": "3.16.0",
"@walmart/ui-components": "1.15.1",
- "@walm... | feat(ui): bumped roster and wmconnect versions | feat(ui): bumped roster and wmconnect versions
|
842bd7cb415bfa8178356ffca2e2a232f0a41745 | --- packages/expo-config-plugins/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.
+## [0.11.3](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.11.3
|
2ac31cc74b6e1a63138da2e9c15ba6ac5ae7a03e | --- __tests__/AppTest.tsx
@@ -13,9 +13,6 @@ jest.mock('../env', () => ({
jest.mock('../src/core/Auth', () => ({
AuthRef: {current: {}},
}));
-// jest.mock('../src/core/Logger', () => ({
-// CoreLoggerProvider: 'CoreLoggerProvider',
-// }));
jest.mock('../src/core/Telemetry', () => ({
TelemetryRef: {current: ... | cleanup | cleanup
|
e60e4ecd2cbc68dde9edd2bb3eb27db843dab701 | --- src/queries/schema.types.ts
@@ -2055,6 +2055,7 @@ export type Event = {
type?: Maybe<Scalars['String']>;
};
+// eslint-disable-next-line no-shadow
export enum EventType {
// eslint-disable-next-line no-shadow
Birthday = 'BIRTHDAY',
@@ -4649,6 +4650,7 @@ export type RelocationAreasResult = {
total?: ... | suppress remaining lint warnings | suppress remaining lint warnings
|
4666eec4bae5c345b100eacd4ca242f8ff5700fe | --- package-lock.json
@@ -80,7 +80,7 @@
"@walmart/schedule-mini-app": "0.35.0",
"@walmart/settings-mini-app": "1.18.1",
"@walmart/shelfavailability-mini-app": "1.5.13",
- "@walmart/taskit-mini-app": "2.34.5",
+ "@walmart/taskit-mini-app": "2.34.6",
"@walmart/time-clock-... | updated taskit version | updated taskit version
|
47819331e1ca89b4464dcf9ccb81039351352b42 | --- __tests__/PinAccess/PinAccessScreenTest.tsx
@@ -122,18 +122,6 @@ describe('PinAccess', () => {
expect(setStoredPin).toHaveBeenCalledWith(pinCode);
});
- it('renders as a Modal for PinScreenModal component', async () => {
- defaultStateMock();
-
- let component: ReactTestRenderer;
- await act(asy... | Removing uneeded test | Removing uneeded test
|
9bb78260169cffc56e9d8300bdcb537b9629d725 | --- .looper.multibranch.yml
@@ -60,7 +60,7 @@ flows:
pr:
- call: mini-pr
- call: sonar-scan-pr
- - (name Scanning Walmart Packages) npm run scan:changed-walmart-libs
+ - (name Scanning Walmart Packages) ./scripts/mini-app-scan/scan-changed-walmart-libs.sh ${GITHUB_PR_TARGET_BRANCH}
- call: slack... | fix: scan script was not detecting changes due to no branch specified for comparison | fix: scan script was not detecting changes due to no branch specified for comparison
|
500b4874eee2d603e4d89b6504e876136735e021 | --- container/i18nInit.ts
@@ -1,18 +0,0 @@
-import i18n from 'i18next';
-import {initReactI18next} from 'react-i18next';
-import 'intl-pluralrules'
-import {enUS} from "../src/translations/en-US";
-import {esMX} from "../src/translations/es-MX";
-
-export const initI18n = () => {
- i18n.use(initReactI18next).init({
... | fixing language toggle | fixing language toggle
|
8160a60dd08970e4fe690881671297fa8bb30cd7 | --- packages/me-at-walmart-common/__tests__/redux/selectorsTest.ts
@@ -82,3 +82,9 @@ describe('Selector', () => {
})
});
+describe('ImageBaseUrl', () => {
+ it('should return the image base URL from the ImageBaseUrl constant', () => {
+ const result = IMAGE_BASE_URL;
+ expect(result).toBe('https://i5-me.wa... | test: ImageBaseUrl constant | test: ImageBaseUrl constant
|
5f5e62bb44fad95d499b2181910263f9e95e9181 | --- packages/allspark-foundation/__tests__/FeatureRunner/screens/__snapshots__/SideMenu.test.tsx.snap
@@ -39,7 +39,7 @@ exports[`SideMenu.tsx should render snapshot 1`] = `
}
size="small"
>
- An AllsparkFeature can interact with the Drawer using 'AllsparkDrawer' from
+ An Allspark... | fix(feature runner): developer menu link and close drawer was broken | fix(feature runner): developer menu link and close drawer was broken
|
1db8c4a5dac923489d35594f536e311784af9caf | --- example/src/teamHub/screens/screen.tsx
@@ -60,7 +60,8 @@ export const HomeScreen = TeamHub.createScreen(
]}
selectedTeams={[]}
primaryArea="Management"
- handleChange={() => {}}
+ handleSelectSingle={() => {}}
+ handleSelectAll={() => {}}
/>
... | feat: added select single and select all props | feat: added select single and select all props
|
f1329d2142b55fe4a0dcd2245dab999eda689f1a | --- patches/@walmart+ask-sam-mini-app+1.2.95.patch
@@ -1,3 +1,58 @@
+diff --git a/node_modules/@walmart/ask-sam-mini-app/dist/containers/ChatFooter/index.js b/node_modules/@walmart/ask-sam-mini-app/dist/containers/ChatFooter/index.js
+index e988fc5..425fc10 100644
+--- a/node_modules/@walmart/ask-sam-mini-app/dist/cont... | fix: add more to ask sam patch | fix: add more to ask sam patch
|
df80da9a596b853540003e1b1a30c812d52f0b91 | --- packages/allspark-foundation-hub/src/HubFeature/Store/Hub/Container/Screens/HubDashboard.tsx
@@ -274,7 +274,12 @@ export const HubDashboard = ({
<AllsparkComponentContainers.Component
container={name}
id={componentOverrides.FloatingButton.id}
- props={... | Add the teamids for floating button | Add the teamids for floating button
|
b32292e32f7531a672a006c3670f375863358b00 | --- src/components/ChatInput.tsx
--- src/components/MessagesHeader.tsx
@@ -1,8 +1,8 @@
-import {useNavigation} from '@react-navigation/native';
-import {Body, CloseIcon, colors} from '@walmart/gtp-shared-components/dist';
import React from 'react';
import {TouchableOpacity, View, StyleSheet} from 'react-native';
-i... | fix: moving non container component to components folder | fix: moving non container component to components folder
|
dde8d3dc8dba2647f4c6274829f5a5675a66d286 | --- .looper.multibranch.yml
@@ -158,7 +158,7 @@ envs:
variables:
releaseType: "hotfix"
releaseTypeDesc: "build from hotfix branch; meant for wider testing"
- slackIcon: ":hotsprings:"
+ slackIcon: ":hotsprings"
slackChannel: "allspark-builds-developer"
buildType: "SNAPSHOT"
... | multibranch file fix | multibranch file fix
|
a1533723ffcb616411cba02842719dba3024f4b5 | --- patches/@walmart+ui-components+1.5.0.patch
@@ -1,14 +0,0 @@
-diff --git a/node_modules/@walmart/ui-components/components/DataSaverCard/DataSaverCard.js b/node_modules/@walmart/ui-components/components/DataSaverCard/DataSaverCard.js
-index eb4ea3c..987cf97 100644
---- a/node_modules/@walmart/ui-components/components... | chore: remove ui components patch file | chore: remove ui components patch file
|
2b0c58039ffce98c3e20e3c690283ff4a35e86f3 | --- android/app/build.gradle
@@ -134,7 +134,7 @@ android {
applicationId "com.walmart.stores.allspark.beta"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 83
+ versionCode 84
versionName "1.0.6"
}
sp... | Incrementing build number | Incrementing build number
|
607c4e7b87b4e9b0c5c71fabe51c68dcba5b23f0 | --- package-lock.json
@@ -4291,9 +4291,9 @@
"integrity": "sha512-6cO57SnVFT8MhLIajydD87lM7tLyNjS2N71It4x2ae8hCpyjHX+z8Bk7VrFqDAO/kGLyz8gA1C0xdm/MzpiMOw=="
},
"@walmart/ims-print-services-ui": {
- "version": "0.1.28",
- "resolved": "https://npme.walmart.com/@walmart/ims-print-services-ui/-/ims... | release: price changes drop 7 | release: price changes drop 7
|
35375ef6c6b08bdd54939ecc08835d104576cf12 | --- __tests__/navigation/AssociateHallwayNav/__snapshots__/SideMenuContentTest.tsx.snap
@@ -18,10 +18,10 @@ exports[`SideMenuContent matches snapshot for undefined user info, and can imper
developersText="impersonation.developers"
deviceType="PERSONAL"
displayName="Sam Walton"
- displayPttAlert={0}
- ... | change flag name | change flag name
(cherry picked from commit cd4c5ef0ac35d1a7035e57df697233c69fafbee7)
|
14891a419cbc8c4f55657d819672a7ec0a22cd53 | --- ios/Podfile.lock
@@ -1591,7 +1591,7 @@ PODS:
- TOCropViewController (2.6.1)
- topstock-mini-app (1.4.8):
- React
- - VisionCamera (3.0.0):
+ - VisionCamera (3.6.13):
- React
- React-callinvoker
- React-Core
@@ -2206,7 +2206,7 @@ SPEC CHECKSUMS:
SumoSDK: 95c692d2e6644ca3c2cd1a856aa823e... | Updated podfile | Updated podfile
|
7cd4f8ae7497e62c89ea52e21e79f6f057a342d1 | --- src/home/components/GreetingRowV2/ClockComponent.tsx
@@ -19,6 +19,7 @@ const styles = StyleSheet.create({
backgroundColor: '#004F9A',
borderWidth: 1,
borderColor: '#2E2F32',
+ height: 48,
},
clockIconContainer: {
justifyContent: 'center',
| fix(header): clock component | fix(header): clock component
|
d1fb4ad071a3c2495c2b49e2b44ec6f4a1c9bd9a | --- packages/my-walmart-hub/src/HubFramework/Core/Hub.tsx
@@ -180,6 +180,25 @@ const HubContentState = React.memo((props: HubContentStateProps) => {
const { refreshOptions } = config;
+ // State to control visibility of refresh time indicator
+ const [showRefreshTime, setShowRefreshTime] = useState(false);
+
+... | feat(ui): added timer to alert (#531) | feat(ui): added timer to alert (#531)
* feat(ui): added timer to alert
* feat(ui): added comment |
046fc68987309ca74dc3500258d3dbf00b3db332 | --- .looper-pr.yml
@@ -22,7 +22,7 @@ envs:
LINT: true
UNITTEST: false
BUILD: true
- SONAR_SCAN: true
+ SONAR_SCAN: false
ARTIFACT_PUBLISH: true
AUTO_PR_MONO: false
JIRAPREFIX: SSMP
| feat(ui): update the roster message button condition for total store and team | feat(ui): update the roster message button condition for total store and team
|
e4d29560b45a326da8ab1676170c156725c4c2fd | --- example/src/feature3/README.md
@@ -1,3 +1,3 @@
-# Feature 2
+# Feature 3
-Feature 2 is a repo where an AllsparkFeature is created and configured. It is managed as a seperate repo and published as its own npm module so multiple container apps are able to use it. Only 1 AllsparkFeature should be created per feature... | Addressing PR comments | Addressing PR comments
|
1bc29483e84a4e34197cc11f2457d81a58fae495 | --- .yarn/patches/@walmart-ui-components-npm-1.18.7-9e23294b76.patch
@@ -1,79 +0,0 @@
-diff --git a/components/DrawerButton/index.js b/components/DrawerButton/index.js
-index 60301993d95e862c7bafcb74519609f031a81d03..d574b234eca634b75473817e5a7d8c1ee9a05454 100644
---- a/components/DrawerButton/index.js
-+++ b/componen... | feat: ui-components patch for selected menu item | feat: ui-components patch for selected menu item
|
f841f1d1c461bb36f595f853ee45c35c5dae0182 | --- ios/Podfile.lock
@@ -178,10 +178,10 @@ PODS:
- RNPermissions
- PromisesObjC (2.1.0)
- Protobuf (3.21.1)
- - PTT (0.7.16-rc.1):
+ - PTT (0.7.17-rc.2):
- BinaryCodable (~> 0.2.1)
- CocoaAsyncSocket (~> 7.6.3)
- - RealmSwift (= 10.15.0)
+ - RealmSwift (= 10.25.1)
- Starscream (~> 3.0.... | ptt drop 7 updates | ptt drop 7 updates
|
9df26a9ff64e306749704497833c33f3cab0e9d8 | --- targets/US/package.json
@@ -121,7 +121,7 @@
"@walmart/mod-flex-mini-app": "1.24.5",
"@walmart/moment-walmart": "1.0.4",
"@walmart/money-auth-shared-components": "2.3.4",
- "@walmart/myteam-mini-app": "1.17.1",
+ "@walmart/myteam-mini-app": "1.18.0",
"@walmart/native-rfid-scanner": "3.12.1"... | feat(ui): update the myteam and roster mini app version | feat(ui): update the myteam and roster mini app version
|
f0287be6a891997c0928520550f284557842e1fc | --- targets/US/package.json
@@ -150,7 +150,7 @@
"@walmart/taskit-mini-app": "4.25.8",
"@walmart/time-clock-mini-app": "2.419.0",
"@walmart/topstock-mini-app": "1.17.11",
- "@walmart/translator-mini-app": "1.3.5",
+ "@walmart/translator-mini-app": "1.3.6",
"@walmart/ui-components": "patch:@walm... | version bump | version bump
|
4e7a06891de184016ed33fd7e8d3931bcac7aac8 | --- ios/Podfile.lock
@@ -427,7 +427,7 @@ PODS:
- React
- react-native-safe-area-context (3.3.2):
- React-Core
- - react-native-scanner-3.0 (0.1.16):
+ - react-native-scanner-3.0 (0.1.18):
- Firebase/Analytics
- React
- ScanditBarcodeCapture (= 6.14.0)
@@ -1005,7 +1005,7 @@ SPEC CHECKSUMS:
... | Scanner3: Put in wakelock on android | Scanner3: Put in wakelock on android
|
6ff87b56d97535fe1910ad50f24a89f7be68bafd | --- ios/BuildSupport/MeAtWMBeta_InHouse_Provision.mobileprovision
Binary files a/ios/BuildSupport/MeAtWMBeta_InHouse_Provision.mobileprovision and b/ios/BuildSupport/MeAtWMBeta_InHouse_Provision.mobileprovision differ
| added updated provisioning profile (#511) | added updated provisioning profile (#511)
Co-authored-by: Hitesh Arora <> |
19cb818dcb323ee49cbcad477c48408da980d27e | --- src/components/AssociateRosterItem/index.tsx
@@ -19,6 +19,7 @@ import {
associateDisplayName,
associateIsClockedIn,
encryptUserId,
+ formatSchedule,
} from '../../utils';
import {
useIsSalariedOrTeamLead,
@@ -120,6 +121,9 @@ export const AssociateRosterItem = React.memo((props: AssociateItemProps) =>... | succesfully displaying store schedule data | succesfully displaying store schedule data
|
fb77ecb19f14371f0b1357467740b7523494817e | --- src/components/TeamList.tsx
@@ -239,9 +239,10 @@ const StoreTeamItem = (props: {style?: StyleProp<ViewStyle>}) => {
})}
leading={<Image style={styles.imageStyle} source={Images.totalStore} />}
trailing={
- <View testID='totalStoreMessageButton' style={styles.buttonsStyle}>
+ <View... | latest comment is resolved | latest comment is resolved
|
48af38035574ea5b8dcd9eb9bd9d76a8319f8055 | --- .github/pull_request_template.md
@@ -0,0 +1,33 @@
+## Links to JIRA tickets:
+
+## Acceptance Criteria
+
+## Screenshots (if any):
+
+# Checklist
+- [ ] Have you written unit tests for this? If so, add the screenshots for the test coverage.
+- [ ] Has this been tested in the example app?
+- [ ] Telemetry Covered? ... | chore(ui): Update pr guidelines | chore(ui): Update pr guidelines
|
2948a1eaab5fb995eb381073ffd5e3d6011beade | --- __tests__/screens/RosterScreenTest.tsx
@@ -16,9 +16,8 @@ describe('RosterScreen', () => {
/>,
);
screen.getByText('Show teams');
- //TODO: Need to mock getTeams Response for below assertions
- // screen.getByText('Stocking ON');
- // screen.getByRole('button', {name: 'Message'});
+ scre... | fix render teams list test | fix render teams list test
|
872f578919e67ac861fd2b2a4dcec80e717a122f | --- package.json
@@ -112,7 +112,7 @@
"@walmart/ims-print-services-ui": "2.11.3",
"@walmart/inbox-mini-app": "0.94.6",
"@walmart/iteminfo-mini-app": "7.13.2",
- "@walmart/learning-mini-app": "20.0.29",
+ "@walmart/learning-mini-app": "20.0.30",
"@walmart/manager-approvals-miniapp": "0.2.4",
... | feat: :sparkles: Bump learning mini app version to 20.0.30 | feat: :sparkles: Bump learning mini app version to 20.0.30
|
2fa35dba216b043691f1a79c98e3fc03c6ff926f | --- src/index.tsx
@@ -1,8 +1,6 @@
-import React, {useMemo} from 'react';
+import React from 'react';
import {firebase} from '@react-native-firebase/app-check';
-import {useEnvironment} from '@walmart/core-services/Environment';
import {LoggerCloneProvider} from '@walmart/core-services/Logger';
-import {HttpClientClon... | Update associate clocked in for salaried associates | Update associate clocked in for salaried associates
|
9e158ca7398d10f30638ae02ece687512d814221 | --- ios/Podfile.lock
@@ -263,7 +263,7 @@ PODS:
- Permission-Notifications (3.6.1):
- RNPermissions
- PromisesObjC (2.1.1)
- - PTT (1.8.3):
+ - PTT (1.8.4):
- BinaryCodable (~> 0.2.1)
- CocoaAsyncSocket (~> 7.6.3)
- RealmSwift (= 10.32.3)
@@ -530,8 +530,8 @@ PODS:
- React-Core
- react... | update lockfile | update lockfile
|
c021ac8c078f49abb86c390656f35c2b5d9774e7 | --- package-lock.json
@@ -62,7 +62,7 @@
"@walmart/mod-flex-mini-app": "1.3.15",
"@walmart/moment-walmart": "1.0.4",
"@walmart/OneWalmart-MiniApp": "1.0.12",
- "@walmart/pay-stub-miniapp": "0.9.22",
+ "@walmart/pay-stub-miniapp": "0.9.24",
"@walmart/payrollsolution_minia... | bump version | bump version
|
91a73c3a19c221a81a96c20af8f94d990007b4ad | --- core/src/appReview/sagas.ts
@@ -40,7 +40,7 @@ export function* checkAppReviewRequest(appReviewConfig: FeatureConfig) {
STORAGE_KEY,
);
if (lastDateAppReviewPrompted) {
- const currentDate: any = new Date();
+ const currentDate = new Date();
const timeSinceLastPrompted = Math.abs(
... | Update core/src/appReview/sagas.ts | Update core/src/appReview/sagas.ts
Co-authored-by: Dylan Lane - rlane1 <Russell.Lane@walmart.com> |
15d74e8615dde432e97fa6a74f9cbaa324e24c6d | --- src/services/PushNotificationApi.ts
@@ -45,7 +45,7 @@ export const PushNotificationApi: IPushNotificationApi = {
recipients: recipients,
storeNumber: storeNumber,
channelId: channelId,
- imageUrl: imageUrl,
+ image: imageUrl,
},
});
},
--- src/services/PushN... | changing name of image field | changing name of image field
|
799dfdb464af60fdd71d88e07b7e936347e10d6e | --- package.json
@@ -92,14 +92,14 @@
"@walmart/calling-mini-app": "0.7.35",
"@walmart/checkout-mini-app": "4.8.12",
"@walmart/compass-sdk-rn": "6.2.2",
- "@walmart/config-components": "4.7.1",
+ "@walmart/config-components": "4.8.1",
"@walmart/core-services": "~6.5.2",
"@walmart/core-serv... | fix(pkgs): SSMP-10385 updated mini-apps version to latest (#4153) | fix(pkgs): SSMP-10385 updated mini-apps version to latest (#4153)
* fix: SSMP-10385 updated mini-apps version to latest
* fix: SSMP-10565 updated config-component version
* fix(config-component): SSMP-10565 update version
* fix: SSMP-10536 updated emergency and inbox version
* fix: SSMP-10536 moved config-... |
9ec2438d688cf947a12bcdfd83f22595a37d978d | --- packages/me-at-walmart-container/src/redux/site.ts
@@ -3,6 +3,7 @@ import { SiteSelectors, Site } from '@walmart/allspark-foundation/Site';
import {
UserSelectors,
USER_CHANGED_ACTIONS,
+ UserActionTypes,
} from '@walmart/allspark-foundation/User';
import { MeAtWalmartSiteService } from '../services/site'... | fix: site info not fetched on user update action | fix: site info not fetched on user update action
|
d8a5da9a9749cadb782cdb2c26bd5f32d4e70fe4 | --- src/hooks/roster.ts
@@ -62,6 +62,10 @@ export const useIsWeeklyScheduleLinkVisible = () => {
const RMAViewPermission = 'VIEW';
const user: any = useSelector(UserSelectors.getUser);
const teamLeadJobDescriptions = useSelector(teamLeadJobDescriptionsSelector);
+ const isUserSalaried = toUpper(user?.employee... | update rma fallback value | update rma fallback value
|
6af50a103b554cafc1d705d12093ccea25602393 | --- packages/expo-config-plugins/src/index.ts
@@ -73,6 +73,7 @@ export default function getPlugins(additionalPlugins?: additionalPlugins[]) {
moduleBasePath + 'withWifiStoreLocator',
moduleBasePath + 'withWorkManagerInitializer',
moduleBasePath + 'withRuler',
+ moduleBasePath + 'withPodfileBuildOptimi... | chore(plugin): added new plugin for pods optimization | chore(plugin): added new plugin for pods optimization
|
7bb3c6866b1121b4c884fe2dac779157719d8753 | --- .looper.yml
@@ -2,6 +2,7 @@ inherit: 'job:///metropolis/metroloop/metroloop-parent'
tools:
nodejs: 20.10.0
+ npm: 10.9.2
jdk:
flavor: azul
version: 17
--- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/roster-mini-app",
- "version": "2.38.1",
+ "version": "2.47.0",
"main": "dist/ind... | fix: SMDV-8203 update version to 2.47.0 | fix: SMDV-8203 update version to 2.47.0
|
f53edb6245aef14786770ad900e6dd9a18170132 | --- src/home/components/GreetingRow/SiteInfo.tsx
@@ -8,7 +8,6 @@ import {useNavigation} from '@react-navigation/native';
import {useHomeAppConfig} from '../../../hooks/useAppConfig';
-
const styles = StyleSheet.create({
container: {
flexDirection: 'row',
| chore: lint fix | chore: lint fix
|
80eb045b34eecb551220d724837ff57319bed5ab | --- package.json
@@ -107,7 +107,7 @@
"@walmart/financial-wellbeing-feature-app": "1.23.2",
"@walmart/functional-components": "6.0.12",
"@walmart/gta-react-native-calendars": "0.6.0",
- "@walmart/gtp-shared-components": "2.1.10",
+ "@walmart/gtp-shared-components": "2.2.1-rc.0",
"@walmart/imper... | Upgraded GTP to 2.2.1-rc.0 | Upgraded GTP to 2.2.1-rc.0
|
c3227107f52fdc92dccf681fd834ea769c8d003c | --- package.json
@@ -467,7 +467,8 @@
"typescript": "~5.8.3",
"uuid": "^3.3.2",
"wfm-allspark-data-library": "^7.0.0",
- "pretty-format/react-is": "19.0.0"
+ "pretty-format/react-is": "19.0.0",
+ "react-server-dom-webpack": "~19.0.1"
},
"config": {
"commitizen": {
--- yarn.lock
@@ -2... | fix(ci): added transient dep version to fix build issues | fix(ci): added transient dep version to fix build issues
|
e296a3b20ba5c1c8275a9a4b0be46d7f9e51d486 | --- packages/myteam-mini-app/jest.config.js
@@ -12,10 +12,16 @@ module.exports = {
'<rootDir>/src/**/*.{js,jsx,ts,tsx}',
'!<rootDir>/src/queries/*',
'!<rootDir>/src/mocks/*',
- '!<rootDir>/src/**/index.{ts,tsx}',
- '!<rootDir>/src/**/types.{ts,tsx}',
'!<rootDir>/src/**/*.d.ts',
],
+ covera... | chore: 100% test coverage reached | chore: 100% test coverage reached
|
2ea7065002e954cb6ae137732887702f625f628a | --- lerna.json
@@ -21,13 +21,7 @@
"**/__tests__/**"
],
"packages": [
- "packages/allspark-http-client",
- "packages/allspark-graphql-client",
"packages/allspark-utils",
- "packages/core-services",
- "packages/core-services-allspark",
- "packages/core-utils",
- "packages/core-widget-reg... | chore: update dependencies | chore: update dependencies
|
f8852a284cc59c854173fd78687efb588a40a00c | --- .looper.multibranch.yml
@@ -54,10 +54,10 @@ flows:
app-build-init:
- call: initialize
- - (name Set NPM Env) yarn run env:${ENV} # added to run before set-build-number
# - call: initialize-fastlane
- withcache('yarn-cache'):
- call: yarn-steps
+ - (name Set NPM Env) yarn run env:$... | chore: looper fix | chore: looper fix
|
23cefc99243a9f5b124d31d2a3b8c7003c1a5882 | --- .looper.yml
@@ -22,4 +22,4 @@ flows:
- (name Yarn Version) yarn --version
- yarn install
- yarn run lint
- - yarn run coverage
\ No newline at end of file
+ # - yarn run coverage
\ No newline at end of file
--- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/myteam-mini-app",
- "version... | feat(ui): update texting and roster | feat(ui): update texting and roster
|
76d5924a1e1bc05213fdec59dacb2f2b05e9e1cf | --- test-noninteractive.js
@@ -1,23 +0,0 @@
-#!/usr/bin/env node
-
-// Simple test to validate non-interactive mode detection
-const isNonInteractive = process.env.CI === 'true' ||
- process.env.NODE_ENV === 'test' ||
- !process.stdin.isTTY ||
- pr... | feat(ui): update associate hub exp integration | feat(ui): update associate hub exp integration
|
b597d8f26bbda0695ba9d86839392da34082bc99 | --- .yarn/patches/react-native-npm-0.72.12-e28f3b183e.patch
@@ -0,0 +1,13 @@
+diff --git a/third-party-podspecs/boost.podspec b/third-party-podspecs/boost.podspec
+index bbbb7380e51a12d1b2994c8ab8e8f682c5e6d83d..3d9331c95d1217682a0b820a0d9440fdff074ae0 100644
+--- a/third-party-podspecs/boost.podspec
++++ b/third-party... | chore: patch react native for boost ios build fix | chore: patch react native for boost ios build fix
|
d01d466bb23dbacdbcc899e00d46f13f1b75c3c8 | --- packages/allspark-graphql-client/CHANGELOG.md
@@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [0.1.0](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-graphql-cl... | chore(version): updating package version | chore(version): updating package version
- @walmart/allspark-graphql-client@0.1.0
- @walmart/allspark-http-client@2.0.5
- @walmart/allspark-redux-store@1.1.0
|
83f629436d3edb80329e4b80270a58a7e6e23ebc | --- packages/allspark-foundation-hub/src/Shared/Components/PageHeader/style.ts
@@ -12,7 +12,7 @@ export default (
container: {
width: '100%',
paddingTop: 16,
- paddingLeft: 10,
+ paddingLeft: 16,
paddingBottom: subText ? 10 : 8,
display: 'flex',
flexDirection: 'row',
| Updating styles | Updating styles
|
848ab355de0ad3d5a69677c45048855ef4c428a9 | --- package-lock.json
@@ -36,7 +36,7 @@
"@walmart/allspark-neon-core": "0.1.31",
"@walmart/amp-mini-app": "1.1.30",
"@walmart/ask-sam-chat-components": "^0.2.7",
- "@walmart/ask-sam-mini-app": "1.12.2",
+ "@walmart/ask-sam-mini-app": "1.13.4",
"@walmart/attendance-mini-... | Updated askSam by removing ptt references | Updated askSam by removing ptt references
|
4c576d5e7d50566bd51bbac18e705775cb4dc612 | --- packages/components-library/components/Icon/__snapshots__/Icon.test.tsx.snap
@@ -5,7 +5,7 @@ exports[`Icon Component matches snapshot with default props 1`] = `
accessibilityLabel="shuffle"
accessibilityRole="image"
accessible={true}
- color="black"
+ color="#000"
name="shuffle"
size={24}
testID... | fix: snapshots updated | fix: snapshots updated
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.