commit_hash stringlengths 40 40 | input stringlengths 13 7.99k | output stringlengths 5 155 | full_message stringlengths 6 8.96k |
|---|---|---|---|
c6fa91f82c3450ccda1f844de15c2a2e8daac728 | --- __tests__/PinAccess/PinAccessScreenTest.tsx
@@ -140,7 +140,9 @@ describe('PinAccess', () => {
expect(WmTelemetry.logEvent).toHaveBeenCalledWith(
'pin_access',
'pin_entered_successful',
- {},
+ {
+ pin_access_method: 'pin',
+ },
);
});
});
--- __tests__/biometrics/BiometricSagasTest.tsx
@@ -54,7 +54,8 @@ describe('handleBiometricPrompt', () => {
put(BiometricActionCreators.biometricPromptSuccess()),
);
expect(iterator.next().value).toEqual(
- call(WmTelemetry.logEvent, 'biometrics', 'entered_successfully', {
+ call(WmTelemetry.logEvent, 'pin_access', 'pin_entered_successful', {
+ pin_access_method: 'biometric',
biometric,
}),
);
--- src/PinAccess/PinAccess.tsx
@@ -203,7 +203,9 @@ export const PinAccess: FC<StackScreenProps<any>> = (props) => {
const onPasscodeMatch = () => {
dispatch(PinAccessActionCreators.passcodeMatch());
- WmTelemetry.logEvent('pin_access', 'pin_entered_successful', {});
+ WmTelemetry.logEvent('pin_access', 'pin_entered_successful', {
+ pin_access_method: 'pin',
+ });
};
const handleBackdropClose = () => {
--- src/biometrics/BiometricSagas.ts
@@ -25,14 +25,10 @@ export function* handleBiometricPrompt(): any {
if (success) {
yield put(BiometricActionCreators.biometricPromptSuccess());
- yield call(
- WmTelemetry.logEvent,
- BIOMETRICS_LOG_KEY,
- 'entered_successfully',
- {
- biometric,
- },
- );
+ yield call(WmTelemetry.logEvent, 'pin_access', 'pin_entered_successful', {
+ pin_access_method: 'biometric',
+ biometric,
+ });
} else {
yield call(WmTelemetry.logEvent, BIOMETRICS_LOG_KEY, 'entered_error', {
biometric,
| changed pin telemetry for pin and biometric | changed pin telemetry for pin and biometric
|
dd99581e54052f4ae3101fa823e566e5550c18fb | --- packages/allspark-foundation/__tests__/LocalStorage/client.test.tsx
@@ -23,6 +23,15 @@ describe('LocalStorageClient', () => {
expect(result).toBe('testValue');
});
+ test('should get an item with backwards compatibility', async () => {
+ (AsyncStorage.getItem as jest.Mock).mockResolvedValue(
+ JSON.stringify('testValue2')
+ );
+ const result = await client.get('testKey');
+ expect(AsyncStorage.getItem).toHaveBeenCalledWith('testId_testKey');
+ expect(result).toBe('testValue2');
+ });
+
test('should set an item', async () => {
await client.set('testKey', 'testValue');
expect(AsyncStorage.setItem).toHaveBeenCalledWith(
--- packages/allspark-foundation/src/LocalStorage/client.ts
@@ -79,7 +79,7 @@ export class LocalStorageClient {
return null;
}
}
- return parsedStoredData.value;
+ return parsedStoredData.value ?? parsedStoredData;
} catch (e) {
// possible JSON parse error
return null;
| fix: ALLSPARK-4998 | fix: ALLSPARK-4998
|
118faef61b37f4743cf5f1b3c29e1ebff0da148d | --- package.json
@@ -150,7 +150,7 @@
"@walmart/shop-gnfr-mini-app": "1.0.302",
"@walmart/sidekick-mini-app": "4.199.7",
"@walmart/store-feature-orders": "1.29.5",
- "@walmart/taskit-mini-app": "5.34.9",
+ "@walmart/taskit-mini-app": "5.38.2",
"@walmart/time-clock-mini-app": "3.19.2",
"@walmart/time-clock-mini-app-next": "3.0.0",
"@walmart/topstock-mini-app": "1.24.2",
--- yarn.lock
@@ -8793,7 +8793,7 @@ __metadata:
"@walmart/shop-gnfr-mini-app": "npm:1.0.302"
"@walmart/sidekick-mini-app": "npm:4.199.7"
"@walmart/store-feature-orders": "npm:1.29.5"
- "@walmart/taskit-mini-app": "npm:5.34.9"
+ "@walmart/taskit-mini-app": "npm:5.38.2"
"@walmart/time-clock-mini-app": "npm:3.19.2"
"@walmart/time-clock-mini-app-next": "npm:3.0.0"
"@walmart/topstock-mini-app": "npm:1.24.2"
@@ -9626,12 +9626,12 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/taskit-mini-app@npm:5.34.9":
- version: 5.34.9
- resolution: "@walmart/taskit-mini-app@npm:5.34.9::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Ftaskit-mini-app%2F-%2F%40walmart%2Ftaskit-mini-app-5.34.9.tgz"
+"@walmart/taskit-mini-app@npm:5.38.2":
+ version: 5.38.2
+ resolution: "@walmart/taskit-mini-app@npm:5.38.2"
peerDependencies:
"@walmart/allspark-foundation": "*"
- checksum: 10c0/106412b0c7e04b29a62a2a584c220474f8a341ff4217c23062d8f602fdc985933ad96ca773fad58572112438ddbeaa52f19f7d3ba0d5821279ee75366ce19d1b
+ checksum: 10c0/3f15779162d4abd9c847dc497a3a6117d70ec0f0a7662aa0636fc8622726a920c029ad98ec1d5433065e7bb7ef308b85c526ea8dad105ff74c6b1bfdfe68952c
languageName: node
linkType: hard
| feat(notes): TASKIT-5804 drop 31 enhancements (#4251) | feat(notes): TASKIT-5804 drop 31 enhancements (#4251)
* chore: TASKIT-6265 bump taskit version
* fix: TASKIT-5804 updated yarn.lock
---------
Co-authored-by: Savankumar Akbari - sakbari <sakbari@m-c02rv0v4g8wl.homeoffice.wal-mart.com> |
2fc3fa48c3877235a23b1883d90f5218bd99db30 | --- package-lock.json
@@ -66,7 +66,7 @@
"@walmart/payrollsolution_miniapp": "0.130.23",
"@walmart/price-changes-mini-app": "1.6.10",
"@walmart/profile-feature-app": "0.76.0",
- "@walmart/push-to-talk-mini-app": "1.9.9",
+ "@walmart/push-to-talk-mini-app": "1.9.10",
"@walmart/react-native-encrypted-storage": "1.1.3",
"@walmart/react-native-env": "0.2.0",
"@walmart/react-native-logger": "1.31.0-rc.1",
@@ -5734,24 +5734,21 @@
}
},
"node_modules/@walmart/push-to-talk-mini-app": {
- "version": "1.9.9",
- "resolved": "https://npme.walmart.com/@walmart/push-to-talk-mini-app/-/push-to-talk-mini-app-1.9.9.tgz",
- "integrity": "sha512-f8xyzyU/BvmMUKiHqhZLIVe1F+KGK1qAOWC0QSYZDvxZMeJlx3l+r4jDY1+GtIMgW12KmvfiCBj9Pl31talWqg==",
+ "version": "1.9.10",
+ "resolved": "https://npme.walmart.com/@walmart/push-to-talk-mini-app/-/push-to-talk-mini-app-1.9.10.tgz",
+ "integrity": "sha512-5Q+xEiCR0pR6Omt0Dtabz5fCeptmhnhKFMAlER2STlhUZdJo8NjMWU1XnOBmfbQU8oxJLjpKpxJueid3CHTkbA==",
"license": "UNLICENSED",
"peerDependencies": {
"@react-native-community/async-storage": "^1.11.0",
- "@react-native-community/datetimepicker": "^3.0.9",
"@react-native-community/netinfo": "^5.9.9",
- "@react-navigation/material-top-tabs": "^6.1.0",
- "@react-navigation/native": "^6.0.0",
"@sharcoux/slider": "^5.2.1",
- "@walmart/functional-components": "^2.0.6",
- "@walmart/gtp-shared-components": "^2.0.0-rc.1",
+ "@walmart/functional-components": "^1.0.34",
+ "@walmart/gtp-shared-components": "^1.2.0",
"@walmart/react-native-logger": "^1.28.0",
"@walmart/react-native-shared-navigation": "^0.4.0",
"@walmart/react-native-sumo-sdk": "^2.1.0",
- "@walmart/redux-store": "3.1.3",
- "@walmart/ui-components": "1.5.0-rc.1",
+ "@walmart/redux-store": "^2.0.4",
+ "@walmart/ui-components": "^1.1.72",
"apisauce": "^1.1.2",
"javascript-time-ago": ">=2.3.4",
"lodash": "^4.17.19",
@@ -5763,16 +5760,12 @@
"react-native-get-random-values": "^1.5.1",
"react-native-haptic-feedback": "^1.10.0",
"react-native-hyperlink": ">=0.0.19",
- "react-native-image-picker": "4.8.5",
+ "react-native-image-picker": "^4.0.6",
"react-native-loudness": "^2.0.0",
- "react-native-pager-view": "^5.4.9",
- "react-native-ptt-module": "1.8.14",
- "react-native-reanimated": "2.12.0",
- "react-native-safe-area-context": "^3.3.0",
- "react-native-screens": "^3.10.0",
+ "react-native-ptt-module": "1.8.7",
+ "react-native-reanimated": "^1.13.4",
"react-native-sha256": "^1.4.7",
"react-native-ssmp-sso-allspark": "^1.2.3",
- "react-native-tab-view": "^3.1.1",
"react-native-wm-network": "^0.1.0",
"react-native-wm-notification": "^2.0.0",
"react-redux": "^7.2.1",
@@ -5780,7 +5773,7 @@
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0",
"reduxsauce": "^1.2.0",
- "reselect": "^4.0.0"
+ "reselect": "^4.1.0"
}
},
"node_modules/@walmart/react-native-encrypted-storage": {
@@ -25334,9 +25327,9 @@
"integrity": "sha512-P4fXm0HihY3jsOkUX7ZVICRiLOUIDo16FVOZHeie7o611ZmslNScFNWwuzEcFulKsLRq4jSU+XQKrOlUqQlW2g=="
},
"@walmart/push-to-talk-mini-app": {
- "version": "1.9.9",
- "resolved": "https://npme.walmart.com/@walmart/push-to-talk-mini-app/-/push-to-talk-mini-app-1.9.9.tgz",
- "integrity": "sha512-f8xyzyU/BvmMUKiHqhZLIVe1F+KGK1qAOWC0QSYZDvxZMeJlx3l+r4jDY1+GtIMgW12KmvfiCBj9Pl31talWqg=="
+ "version": "1.9.10",
+ "resolved": "https://npme.walmart.com/@walmart/push-to-talk-mini-app/-/push-to-talk-mini-app-1.9.10.tgz",
+ "integrity": "sha512-5Q+xEiCR0pR6Omt0Dtabz5fCeptmhnhKFMAlER2STlhUZdJo8NjMWU1XnOBmfbQU8oxJLjpKpxJueid3CHTkbA=="
},
"@walmart/react-native-encrypted-storage": {
"version": "1.1.3",
--- package.json
@@ -108,7 +108,7 @@
"@walmart/payrollsolution_miniapp": "0.130.23",
"@walmart/price-changes-mini-app": "1.6.10",
"@walmart/profile-feature-app": "0.76.0",
- "@walmart/push-to-talk-mini-app": "1.9.9",
+ "@walmart/push-to-talk-mini-app": "1.9.10",
"@walmart/react-native-encrypted-storage": "1.1.3",
"@walmart/react-native-env": "0.2.0",
"@walmart/react-native-logger": "1.31.0-rc.1",
| use drop8.3 as performance baseline | use drop8.3 as performance baseline
|
5879decc00c4a6338e242fe89d3c33ed75d51794 | --- __tests__/Hooks/useGetTeamsByStore.test.ts
@@ -55,7 +55,7 @@ const mockUseGetTeamsByStoreQuery =
describe('useGetTeamsByStore', () => {
beforeEach(() => {
jest.clearAllMocks();
-
+
// Setup default mock return values using mockImplementation
let callCount = 0;
mockUseSelector.mockImplementation(() => {
@@ -244,7 +244,7 @@ describe('useGetTeamsByStore', () => {
it('should handle empty string values for siteId and countryCode', () => {
// Test empty strings vs undefined values
jest.clearAllMocks();
-
+
let callCount = 0;
mockUseSelector.mockImplementation(() => {
const values = ['', '', '1.0.0']; // empty siteId, empty countryCode, appVersion
@@ -263,7 +263,7 @@ describe('useGetTeamsByStore', () => {
stopPolling: jest.fn(),
subscribeToMore: jest.fn(),
} as any;
-
+
mockUseGetTeamsByStoreQuery.mockReturnValue(mockQueryResult);
renderHook(() => useGetTeamsByStore());
@@ -290,7 +290,7 @@ describe('useGetTeamsByStore', () => {
it('should handle undefined appVersion', () => {
// Test undefined appVersion
jest.clearAllMocks();
-
+
let callCount = 0;
mockUseSelector.mockImplementation(() => {
const values = ['100', 'US', undefined]; // siteId, countryCode, undefined appVersion
@@ -309,7 +309,7 @@ describe('useGetTeamsByStore', () => {
stopPolling: jest.fn(),
subscribeToMore: jest.fn(),
} as any;
-
+
mockUseGetTeamsByStoreQuery.mockReturnValue(mockQueryResult);
renderHook(() => useGetTeamsByStore());
@@ -338,8 +338,9 @@ describe('useGetTeamsByStore', () => {
const mockGetCurrent = jest.fn(() => ({
consumerId: 'different-consumer-id',
}));
-
- require('@walmart/allspark-foundation/Environment').AllsparkEnvironment.getCurrent = mockGetCurrent;
+
+ require('@walmart/allspark-foundation/Environment').AllsparkEnvironment.getCurrent =
+ mockGetCurrent;
const mockQueryResult = {
loading: false,
@@ -353,7 +354,7 @@ describe('useGetTeamsByStore', () => {
stopPolling: jest.fn(),
subscribeToMore: jest.fn(),
} as any;
-
+
mockUseGetTeamsByStoreQuery.mockReturnValue(mockQueryResult);
renderHook(() => useGetTeamsByStore());
@@ -420,7 +421,7 @@ describe('useGetTeamsByStore', () => {
it('should handle network errors', () => {
const networkError = new Error('Network error');
networkError.name = 'NetworkError';
-
+
const mockQueryResult = {
loading: false,
data: undefined,
| feat(ui): add 100% coverage for useGetTeamsByStore hook #SMDV-8074 | feat(ui): add 100% coverage for useGetTeamsByStore hook #SMDV-8074
|
457decd3c143d9acba133c21b6eebbfccd83fbfa | --- 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.16.0](https://gecgithub01.walmart.com/allspark/associate-exp-hub-mini-app/compare/@walmart/associate-exp-hub-hub@2.15.0...@walmart/associate-exp-hub-hub@2.16.0) (2025-11-28)
+
+### Features
+
+- **ui:** fix lint errors ([c5918e2](https://gecgithub01.walmart.com/allspark/associate-exp-hub-mini-app/commit/c5918e234beda422491a1789e44fce5c7f355745))
+
# [2.15.0](https://gecgithub01.walmart.com/allspark/associate-exp-hub-mini-app/compare/@walmart/associate-exp-hub-hub@2.14.0...@walmart/associate-exp-hub-hub@2.15.0) (2025-11-28)
### Features
--- packages/associate-exp-hub-hub/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/associate-exp-hub-hub",
- "version": "2.15.0",
+ "version": "2.16.0",
"description": "Hub Framework module for Associate Experience Hub - can be moved to @walmart/my-walmart-hub",
"packageManager": "yarn@4.6.0",
"engines": {
--- packages/associate-exp-hub-mini-app/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.9.1](https://gecgithub01.walmart.com/smdv/associate-exp-hub-mini-app/compare/@walmart/associate-exp-hub-mini-app@1.9.0...@walmart/associate-exp-hub-mini-app@1.9.1) (2025-11-28)
+
+**Note:** Version bump only for package @walmart/associate-exp-hub-mini-app
+
# [1.9.0](https://gecgithub01.walmart.com/smdv/associate-exp-hub-mini-app/compare/@walmart/associate-exp-hub-mini-app@1.8.0...@walmart/associate-exp-hub-mini-app@1.9.0) (2025-11-28)
### Features
--- packages/associate-exp-hub-mini-app/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/associate-exp-hub-mini-app",
- "version": "1.9.0",
+ "version": "1.9.1",
"packageManager": "yarn@4.6.0",
"engines": {
"node": ">=18"
| chore(version): updating package version | chore(version): updating package version
- @walmart/associate-exp-hub-hub@2.16.0
- @walmart/associate-exp-hub-mini-app@1.9.1
|
cde806e10367a1ef9adf8419bd79c27da5268e0a | --- src/screens/AllTeamsScreen/AllTeamsScreen.tsx
@@ -66,11 +66,12 @@ export const AllTeamsScreen = () => {
});
const lastUpdatedTimeout = useRef<any>();
- const stopRefreshing = () =>
+ const stopRefreshing = useCallback(() => {
setState((prev) => ({
...prev,
refreshing: false,
}));
+ }, []);
const RefreshingBlock = () => {
return (
| fix: review comments | fix: review comments
|
a171f8c79392e1503b8002e0cda263b4227b8ce8 | --- patches/@walmart+me-field-mini-app+1.1.37.patch
@@ -0,0 +1,14 @@
+diff --git a/node_modules/@walmart/me-field-mini-app/dist/components/Home/HomeMenu/index.js b/node_modules/@walmart/me-field-mini-app/dist/components/Home/HomeMenu/index.js
+index af9e8a8..fd12927 100644
+--- a/node_modules/@walmart/me-field-mini-app/dist/components/Home/HomeMenu/index.js
++++ b/node_modules/@walmart/me-field-mini-app/dist/components/Home/HomeMenu/index.js
+@@ -5,8 +5,7 @@ import { useTranslation } from 'react-i18next';
+ import { useNavigation, useRoute } from '@react-navigation/native';
+ import { MenuItem } from '../../Common';
+ import { translationKeys } from '../../../constants/TranslationKeys';
+-import ArticleIcon from '@walmart/gtp-shared-components/dist/icons/article-icon';
+-import AssociateIcon from '@walmart/gtp-shared-components/dist/icons/associate-icon';
++import { ArticleIcon, AssociateIcon } from '@walmart/gtp-shared-components';
+ import { colors } from '../../../theme/colors';
+ import { useSelector } from 'react-redux';
+ import { CcmSelectors } from '../../../redux/Ccm/selectors';
| 📦 Feat: bump learning mini app version for drop 9 | 📦 Feat: bump learning mini app version for drop 9
|
b04726230dd7ef7523e8a8e7e643e530b9f5a74c | --- graphql.yml
@@ -103,50 +103,50 @@ applications:
queryTemplate: "src/common/queries/upsertSupplyChainAssociatePreference.graphql"
tags:
- "v1"
- # - name: "prod"
- # persistedQueries:
- # - name: "getStoreAssociateTeamPreference"
- # hash: "11ec652dd0d72a1112b8e8c4c7632fcdda40c4e3579fda6dfbe84438a2fdc568"
- # queryTemplate: "src/common/queries/getStoreAssociateTeamPreference.graphql"
- # tags:
- # - "v1"
- # - name: "getSupplyChainAssociateTeamPreference"
- # hash: "f791b78f4a290a25a523e50d76e0ee3dcb44508a6824b111e15aeecc63ac0052"
- # queryTemplate: "src/common/queries/getSupplyChainAssociateTeamPreference.graphql"
- # tags:
- # - "v1"
- # - name: "getSupplyChainShifts"
- # hash: "9e0e9437569e9f80611fa57786bb96d34f753c3cf0fdfa0ba1f6f22a21c2383b"
- # queryTemplate: "src/common/queries/getSupplyChainShifts.graphql"
- # tags:
- # - "v1"
- # - name: "getSupplyChainTeamById"
- # hash: "d32776219afbb11ff8a4b74a179a1ce6374e50758ed1d081481ca3db5bc56bb1"
- # queryTemplate: "src/common/queries/getSupplyChainTeamById.graphql"
- # tags:
- # - "v1"
- # - name: "getSupplyChainTeamsBySite"
- # hash: "2952687fc08ad7426c329b19272b75b387d7237a5dda898f337b4b48d8958cf5"
- # queryTemplate: "src/common/queries/getSupplyChainTeamsBySite.graphql"
- # tags:
- # - "v1"
- # - name: "getStoreTeamById"
- # hash: "3d72aa00de7767143a2d6c50dd586f685ad1ad038556574a99a944ed4290ae28"
- # queryTemplate: "src/common/queries/getTeamById.graphql"
- # tags:
- # - "v1"
- # - name: "getTeamsByStore"
- # hash: "175371bf5e48cf64c9d66fd32d1ab69b1550d124972da0028660d1eb012b8ff7"
- # queryTemplate: "src/common/queries/getTeamsByStore.graphql"
- # tags:
- # - "v1"
- # - name: "upsertStoreAssociatePreference"
- # hash: "226eed0bafd2e216574d2517b0f6acd2ac0634b883cd56d4217f03f3f0c482e9"
- # queryTemplate: "src/common/queries/upsertStoreAssociatePreference.graphql"
- # tags:
- # - "v1"
- # - name: "upsertSupplyChainAssociatePreference"
- # hash: "39c45936c3b4d0020c6192b629c29860a30a5f2f70c5297c9e34dcffbaa0c7b0"
- # queryTemplate: "src/common/queries/upsertSupplyChainAssociatePreference.graphql"
- # tags:
- # - "v1"
+ - name: "prod"
+ persistedQueries:
+ - name: "getStoreAssociateTeamPreference"
+ hash: "11ec652dd0d72a1112b8e8c4c7632fcdda40c4e3579fda6dfbe84438a2fdc568"
+ queryTemplate: "src/common/queries/getStoreAssociateTeamPreference.graphql"
+ tags:
+ - "v1"
+ - name: "getSupplyChainAssociateTeamPreference"
+ hash: "f791b78f4a290a25a523e50d76e0ee3dcb44508a6824b111e15aeecc63ac0052"
+ queryTemplate: "src/common/queries/getSupplyChainAssociateTeamPreference.graphql"
+ tags:
+ - "v1"
+ - name: "getSupplyChainShifts"
+ hash: "9e0e9437569e9f80611fa57786bb96d34f753c3cf0fdfa0ba1f6f22a21c2383b"
+ queryTemplate: "src/common/queries/getSupplyChainShifts.graphql"
+ tags:
+ - "v1"
+ - name: "getSupplyChainTeamById"
+ hash: "d32776219afbb11ff8a4b74a179a1ce6374e50758ed1d081481ca3db5bc56bb1"
+ queryTemplate: "src/common/queries/getSupplyChainTeamById.graphql"
+ tags:
+ - "v1"
+ - name: "getSupplyChainTeamsBySite"
+ hash: "2952687fc08ad7426c329b19272b75b387d7237a5dda898f337b4b48d8958cf5"
+ queryTemplate: "src/common/queries/getSupplyChainTeamsBySite.graphql"
+ tags:
+ - "v1"
+ - name: "getStoreTeamById"
+ hash: "3d72aa00de7767143a2d6c50dd586f685ad1ad038556574a99a944ed4290ae28"
+ queryTemplate: "src/common/queries/getTeamById.graphql"
+ tags:
+ - "v1"
+ - name: "getTeamsByStore"
+ hash: "175371bf5e48cf64c9d66fd32d1ab69b1550d124972da0028660d1eb012b8ff7"
+ queryTemplate: "src/common/queries/getTeamsByStore.graphql"
+ tags:
+ - "v1"
+ - name: "upsertStoreAssociatePreference"
+ hash: "226eed0bafd2e216574d2517b0f6acd2ac0634b883cd56d4217f03f3f0c482e9"
+ queryTemplate: "src/common/queries/upsertStoreAssociatePreference.graphql"
+ tags:
+ - "v1"
+ - name: "upsertSupplyChainAssociatePreference"
+ hash: "39c45936c3b4d0020c6192b629c29860a30a5f2f70c5297c9e34dcffbaa0c7b0"
+ queryTemplate: "src/common/queries/upsertSupplyChainAssociatePreference.graphql"
+ tags:
+ - "v1"
| feat(ui): update prod queries | feat(ui): update prod queries
|
685e076714868818e99fbce3a7bb41b364a7ae1c | --- packages/components-library/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.1.2](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-components-library@1.1.1...@walmart/allspark-components-library@1.1.2) (2025-08-25)
+
+### Bug Fixes
+
+- **components:** qe bugfixes set 1 ([6e4f3a0](https://gecgithub01.walmart.com/allspark/allspark/commit/6e4f3a0151adb3f3b0baa82bf03df0ed6f39c365))
+
## [1.1.1](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-components-library@1.1.0...@walmart/allspark-components-library@1.1.1) (2025-08-19)
### Bug Fixes
--- packages/components-library/package.json
@@ -63,7 +63,7 @@
"test:watch": "jest --watch",
"test:update": "jest --updateSnapshot"
},
- "version": "1.1.1",
+ "version": "1.1.2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"name": "@walmart/allspark-components-library",
| chore(version): updating package version | chore(version): updating package version
- @walmart/allspark-components-library@1.1.2
|
a150b30dd255575f70850c11b705610834ed5772 | --- .looper.multibranch.yml
@@ -4,7 +4,7 @@ inherit: "job:///metropolis/metroloop/metroloop-parent"
## Whenever you update the nodes, please update it at the two-place, below line & the global variable LOOPER_NODES
##
-node: (osx||stable_osx)
+node: ((osx||stable_osx)&&!MAC-LAB-MINI20&&!MAC-LAB-MINI36)
tools:
android:
@@ -47,7 +47,7 @@ envs:
global:
variables:
CI: true
- LOOPER_NODES: "((osx||stable_osx)"
+ LOOPER_NODES: "((osx||stable_osx)&&!MAC-LAB-MINI20&&!MAC-LAB-MINI36)"
GITHUB_TOKEN: "%{credentials.secret('GITHUB_TOKEN')}"
TMPDIR: /tmp
| removing bad nodes | removing bad nodes
|
ab198fcd5851b702cdba323c054b4076991d9ab2 | --- package.json
@@ -145,7 +145,7 @@
"@walmart/shelfavailability-mini-app": "1.5.26",
"@walmart/store-feature-orders": "1.26.9",
"@walmart/taskit-mini-app": "3.0.1",
- "@walmart/time-clock-mini-app": "2.389.0",
+ "@walmart/time-clock-mini-app": "2.393.0",
"@walmart/topstock-mini-app": "patch:@walmart/topstock-mini-app@npm%3A1.9.7#~/.yarn/patches/@walmart-topstock-mini-app-npm-1.9.7-e6400c510e.patch",
"@walmart/ui-components": "patch:@walmart/ui-components@npm%3A1.15.14#~/.yarn/patches/@walmart-ui-components-npm-1.15.14-a6f67304be.patch",
"@walmart/welcomeme-mini-app": "0.94.0",
--- yarn.lock
@@ -7121,9 +7121,9 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/time-clock-mini-app@npm:2.389.0":
- version: 2.389.0
- resolution: "@walmart/time-clock-mini-app@npm:2.389.0"
+"@walmart/time-clock-mini-app@npm:2.393.0":
+ version: 2.393.0
+ resolution: "@walmart/time-clock-mini-app@npm:2.393.0"
dependencies:
"@react-navigation/elements": "npm:^1.3.1"
moment-timezone: "npm:0.5.33"
@@ -7166,7 +7166,7 @@ __metadata:
uuid: ^3.3.2
wifi-store-locator: ^1.4.0
xdate: ^0.8.2
- checksum: 10c0/45cf4d91fda71f2b0324c3090034d941a09e93fc1dec8529c3896731d59e40e8780b9cd2fd113ba56e30e4dfc905affa4805594f414ce43b5426dd7136cdb2d4
+ checksum: 10c0/c58795707e37348e66e2648e27a37f8f4bd88fe880d554afc8e8b2e968da45967a204460764f3cb91a5f146896b20b7e26a91abcf9d6ed79cbd72b5a518cd501
languageName: node
linkType: hard
@@ -7762,7 +7762,7 @@ __metadata:
"@walmart/shelfavailability-mini-app": "npm:1.5.26"
"@walmart/store-feature-orders": "npm:1.26.9"
"@walmart/taskit-mini-app": "npm:3.0.1"
- "@walmart/time-clock-mini-app": "npm:2.389.0"
+ "@walmart/time-clock-mini-app": "npm:2.393.0"
"@walmart/topstock-mini-app": "patch:@walmart/topstock-mini-app@npm%3A1.9.7#~/.yarn/patches/@walmart-topstock-mini-app-npm-1.9.7-e6400c510e.patch"
"@walmart/ui-components": "patch:@walmart/ui-components@npm%3A1.15.14#~/.yarn/patches/@walmart-ui-components-npm-1.15.14-a6f67304be.patch"
"@walmart/welcomeme-mini-app": "npm:0.94.0"
| Update TCMA to 2.393.0 | Update TCMA to 2.393.0
|
9f93f9d49cd4871fafb190673e91afde8c87786f | --- ReactotronConfig.js
@@ -1,6 +1,6 @@
import {
- AllsparkGraphQLClient,
- AllsparkReduxStore,
+ GraphQLModule,
+ ReduxModule,
} from '@walmart/allspark-foundation';
import Reactotron from 'reactotron-react-native';
import {reactotronRedux} from 'reactotron-redux';
@@ -11,7 +11,7 @@ const reactotron = Reactotron.configure() // controls connection & communication
.connect(); // let's connect!
// Add Reactotron enhancer for redux integration
-AllsparkReduxStore.addEnhancers([reactotron.createEnhancer()]);
+ReduxModule.manager.addEnhancers([reactotron.createEnhancer()]);
// Custom Command to print Apollo Cache
Reactotron.onCustomCommand({
@@ -22,7 +22,7 @@ Reactotron.onCustomCommand({
Reactotron.display({
name: 'Apollo Cache',
preview: 'Cache Snapshot',
- value: AllsparkGraphQLClient.cache.extract(),
+ value: GraphQLModule.client.cache.extract(),
});
},
});
--- __tests__/__mocks__/@walmart/allspark-foundation/Redux/AllsparkReduxStore.js
@@ -1,8 +1,8 @@
module.exports = {
...jest.requireActual('@walmart/allspark-foundation/Redux'),
- AllsparkReduxStore: {
+ ReduxModule: {
...jest.requireActual('@walmart/allspark-foundation/Redux')
- .AllsparkReduxStore,
+ .ReduxModule,
select: jest.fn(),
dispatch: jest.fn(),
},
--- __tests__/harness/index.tsx
@@ -15,11 +15,11 @@ import i18n from 'i18next';
import {enUS} from '../../src/translations/en-US';
import {EnvironmentType as EnvType} from '@walmart/allspark-foundation/Environment/types';
import {set} from 'lodash';
-import {AllsparkReduxStore} from '@walmart/allspark-foundation/Redux';
+import {ReduxModule} from '@walmart/allspark-foundation/Redux';
const {initialStateMock} = require('./redux/mockState');
// eslint-disable-next-line
-const rootReducer = AllsparkReduxStore.reducer;
+const rootReducer = ReduxModule.manager.reducer;
export type AppStore = ReturnType<typeof setupStore>;
export type RootState = ReturnType<typeof rootReducer>;
@@ -32,10 +32,10 @@ interface ExtendedRenderOptions extends Omit<RenderOptions, 'queries'> {
export const setupStore = (preloadedState) => {
const store = configureStore({
preloadedState,
- reducer: (_, type) => AllsparkReduxStore.reducer(preloadedState, type),
+ reducer: rootReducer,
});
//@ts-ignore
- AllsparkReduxStore._store = store;
+ ReduxModule._store = store;
return store;
};
@@ -57,7 +57,7 @@ export const renderWithProviders: typeof render = (
...renderOptions
}: ExtendedRenderOptions = {},
) => {
- jest.spyOn(AllsparkReduxStore, 'dispatch');
+ jest.spyOn(ReduxModule.manager, 'dispatch');
function Wrapper({children}: PropsWithChildren<{}>): React.ReactElement {
return (
<ReduxProvider store={store}>
--- containers/plugins/menu-plugin.ts
@@ -1,4 +1,4 @@
-import {AllsparkNavigationClient} from '@walmart/allspark-foundation';
+import {NavigationModule} from '@walmart/allspark-foundation';
export const ExampleMenuPlugin = {
name: 'menu-option-plugin',
@@ -6,7 +6,7 @@ export const ExampleMenuPlugin = {
title: 'Plugin 1 Menu Option',
description: 'Open Plugin 1',
onPress: () => {
- AllsparkNavigationClient.navigate('screen-plugin');
+ NavigationModule.manager.navigate('screen-plugin');
},
},
};
--- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/myteam-mini-app",
- "version": "3.6.0-beta.4",
+ "version": "3.6.0-beta.5",
"main": "dist/index.js",
"files": [
"dist",
@@ -92,9 +92,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.8.0-beta.5",
+ "@walmart/roster-mini-app": "3.8.0-beta.6",
"@walmart/ui-components": "1.15.1",
- "@walmart/wmconnect-mini-app": "3.7.0-beta.2",
+ "@walmart/wmconnect-mini-app": "3.7.0-beta.3",
"babel-jest": "^29.6.3",
"chance": "^1.1.11",
"crypto-js": "~4.2.0",
--- yarn.lock
@@ -8034,9 +8034,9 @@ __metadata:
"@walmart/react-native-logger": "npm:1.35.0"
"@walmart/react-native-scanner-3.0": "npm:0.10.4"
"@walmart/react-native-sumo-sdk": "npm:2.8.0"
- "@walmart/roster-mini-app": "npm:3.8.0-beta.5"
+ "@walmart/roster-mini-app": "npm:3.8.0-beta.6"
"@walmart/ui-components": "npm:1.15.1"
- "@walmart/wmconnect-mini-app": "npm:3.7.0-beta.2"
+ "@walmart/wmconnect-mini-app": "npm:3.7.0-beta.3"
babel-jest: "npm:^29.6.3"
chance: "npm:^1.1.11"
crypto-js: "npm:~4.2.0"
@@ -8144,9 +8144,9 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/roster-mini-app@npm:3.8.0-beta.5":
- version: 3.8.0-beta.5
- resolution: "@walmart/roster-mini-app@npm:3.8.0-beta.5::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Froster-mini-app%2F-%2F%40walmart%2Froster-mini-app-3.8.0-beta.5.tgz"
+"@walmart/roster-mini-app@npm:3.8.0-beta.6":
+ version: 3.8.0-beta.6
+ resolution: "@walmart/roster-mini-app@npm:3.8.0-beta.6::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Froster-mini-app%2F-%2F%40walmart%2Froster-mini-app-3.8.0-beta.6.tgz"
dependencies:
expo: "npm:~52.0.46"
react: "npm:18.3.1"
@@ -8162,7 +8162,7 @@ __metadata:
dependenciesMeta:
"@walmart/me-at-walmart":
built: false
- checksum: 10c0/939f5c1575fcd34ef5abdb6290df825298f4827e1d69715de79e2393094ecbb11b1304129447afe870f1b30f5ea1875c80f288777822470d99bdc0d5c732a32e
+ checksum: 10c0/8628e85def54980e56883bbccf6ceebf6a19404f5f85be57642b5e6a9923df848741bfb6a8269068c686867b19aebf286baca91319736d623111be65f9a21982
languageName: node
linkType: hard
@@ -8186,9 +8186,9 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/wmconnect-mini-app@npm:3.7.0-beta.2":
- version: 3.7.0-beta.2
- resolution: "@walmart/wmconnect-mini-app@npm:3.7.0-beta.2::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Fwmconnect-mini-app%2F-%2F%40walmart%2Fwmconnect-mini-app-3.7.0-beta.2.tgz"
+"@walmart/wmconnect-mini-app@npm:3.7.0-beta.3":
+ version: 3.7.0-beta.3
+ resolution: "@walmart/wmconnect-mini-app@npm:3.7.0-beta.3::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Fwmconnect-mini-app%2F-%2F%40walmart%2Fwmconnect-mini-app-3.7.0-beta.3.tgz"
peerDependencies:
"@walmart/allspark-foundation": ">=7.12.0"
"@walmart/gtp-shared-components": ^2.3.0-rc.0
@@ -8200,7 +8200,7 @@ __metadata:
dependenciesMeta:
"@walmart/me-at-walmart":
built: false
- checksum: 10c0/3a951c35f04062e13c1888bcefb0c6b6451f7c37de9b31a6c80ccf3a442a9f414061644bb376a4e30100f043180a217b8083ea137f129014c8df856c80941e11
+ checksum: 10c0/921c7749582b668954c721c9cf250b2d498b4c0dfad1c3a72b9a9f008ba6250bc465bd02977e21b836759f8c2619e9f9d8899e106ca9097e64c2705e8d9d6018
languageName: node
linkType: hard
| fix: update packages and tests | fix: update packages and tests
|
cfbe06e799c9daa218407664b94044b642c5d716 | --- package.json
@@ -89,7 +89,7 @@
"@walmart/counts-component-miniapp": "0.0.42",
"@walmart/emergency-mini-app": "1.15.0",
"@walmart/exception-mini-app": "1.0.14",
- "@walmart/facilities-management-miniapp": "0.4.2-beta43",
+ "@walmart/facilities-management-miniapp": "0.4.2-beta45",
"@walmart/feedback-all-spark-miniapp": "0.9.9",
"@walmart/financial-wellbeing-feature-app": "1.0.64",
"@walmart/functional-components": "2.0.6",
| Update package.json | Update package.json |
b5de51fa51fda640e0b10d021c9060888e96f2b5 | --- src/utils/queryDataCheck.ts
@@ -0,0 +1,23 @@
+export const isMoreThan50PercentNull = (obj: any) => {
+ const totalFields = obj.length;
+ let nullFields: number = 0;
+ obj.forEach((item: any) => {
+ if (item === null) {
+ nullFields++;
+ }
+ });
+ const percentage = (nullFields / totalFields) * 100;
+ return percentage > 50;
+};
+
+export const isMoreThan50PercentUnknown = (obj: any) => {
+ const totalFields = obj.length;
+ let unknownFields: number = 0;
+ obj.forEach((associate: any) => {
+ if (associate?.punch?.clockStatus === 'unknown') {
+ unknownFields++;
+ }
+ });
+ const percentage = (unknownFields / totalFields) * 100;
+ return percentage > 50;
+};
--- src/utils/user.ts
@@ -3,12 +3,23 @@ import CryptoJS from 'crypto-js';
import {ClockStatusEnum} from './ClockStatusEnum';
import moment from 'moment';
import {isNil} from 'lodash';
-import {GetAssociateNameQuery} from '../queries/getAssociateName';
+import {
+ GetAssociateNameQuery,
+ useGetAssociateNameQuery,
+} from '../queries/getAssociateName';
import {Associate, WFMSchedule} from '../types';
import {logger} from '../logger/Logger';
+import {
+ isMoreThan50PercentNull,
+ isMoreThan50PercentUnknown,
+} from '../utils/queryDataCheck';
const OBFUSCATION_KEY = 'texting-mini-app'; //Do not change this
const OBFUSCATION_PARSE_KEY = OBFUSCATION_KEY.padStart(64, '0');
+//eslint-disable-next-line
+const {data: associateData} = useGetAssociateNameQuery({});
+const isNullData = isMoreThan50PercentNull(associateData);
+const isUnknownData = isMoreThan50PercentUnknown(associateData);
export const encryptUserId = (userId: string) =>
baseEncryptUserId(userId, OBFUSCATION_KEY).replace(/\//g, '\\');
@@ -45,6 +56,11 @@ export const associateIsTardy = (associate?: Associate) =>
associate?.absentData?.absenceTypeCode === 2;
export const associateIsClockedIn = (associate?: Associate) => {
+ if (isUnknownData) {
+ logger.info('Unknown Data in associateIsClockedIn', {
+ message: 'GetAssociateNameQuery punch data is more than 50% unknown',
+ });
+ }
return ClockStatusEnum.clockedOut !== Number(associate?.punch?.clockStatus);
};
@@ -132,6 +148,11 @@ export const associateDisplayName = (
associate?: Associate | GetAssociateNameQuery['getAssociateById'],
) => {
try {
+ if (isNullData) {
+ logger.info('Null Data in associateDisplayName', {
+ message: 'GetAssociateNameQuery data is more than 50% null',
+ });
+ }
const preferredFullName =
(!isNil(associate?.preferredFirstName) ||
!isNil(associate?.preferredLastName)) &&
| splunk loggin for null and unknown | splunk loggin for null and unknown
|
e4f7a0f7e91ff895b013c0ea0515ba59a872eca6 | --- ios/AllSpark.xcodeproj/project.pbxproj
@@ -230,7 +230,6 @@
buildPhases = (
53D455D8D940558DAEDE5BA8 /* [CP] Check Pods Manifest.lock */,
FD10A7F022414F080027D42C /* Start Packager */,
- C18683108AECE7D722DBD9B1 /* [CP] Prepare Artifacts */,
13B07F871A680F5B00A75B9A /* Sources */,
13B07F8C1A680F5B00A75B9A /* Frameworks */,
13B07F8E1A680F5B00A75B9A /* Resources */,
@@ -402,7 +401,7 @@
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
- "${PODS_ROOT}/../../node_modules/react-native-wm-barcode/ios/WMBarcodeScanner/WMBarcodeScanner/assets/AVScannerViewController.xib",
+ "${BUILT_PRODUCTS_DIR}/react-native-wm-barcode/react_native_wm_barcode.framework/AVScannerViewController.nib",
"${PODS_ROOT}/../../node_modules/react-native-wm-barcode/ios/WMBarcodeScanner/WMBarcodeScanner/assets/scanbeep.wav",
"${PODS_ROOT}/../../node_modules/react-native-wm-barcode/ios/WMBarcodeScanner/WMBarcodeScanner/assets/DIGIMark-custom.ttf",
"${PODS_ROOT}/../../node_modules/react-native-wm-voice-text/ios/state-change_confirm-down.wav",
@@ -448,34 +447,17 @@
);
inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-AllSpark/Pods-AllSpark-frameworks.sh",
- "${BUILT_PRODUCTS_DIR}/cocoapods-artifacts-${CONFIGURATION}.txt",
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/DMSDK/DMSDK.framework/DMSDK",
);
name = "[CP] Embed Pods Frameworks";
outputPaths = (
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DMSDK.framework",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AllSpark/Pods-AllSpark-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
- C18683108AECE7D722DBD9B1 /* [CP] Prepare Artifacts */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-AllSpark/Pods-AllSpark-artifacts.sh",
- "${PODS_ROOT}/../../node_modules/react-native-wm-barcode/Frameworks/DMSDK.xcframework",
- );
- name = "[CP] Prepare Artifacts";
- outputPaths = (
- "${BUILT_PRODUCTS_DIR}/cocoapods-artifacts-${CONFIGURATION}.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AllSpark/Pods-AllSpark-artifacts.sh\"\n";
- showEnvVarsInLog = 0;
- };
FD10A7F022414F080027D42C /* Start Packager */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
--- ios/Podfile.lock
@@ -356,7 +356,7 @@ PODS:
- React
- react-native-webview (10.10.0):
- React-Core
- - react-native-wm-barcode (2.29.0):
+ - react-native-wm-barcode (2.25.0):
- React
- react-native-wm-voice-text (0.4.1):
- React
@@ -814,7 +814,7 @@ SPEC CHECKSUMS:
react-native-video: 8d97379f3c2322a569f1e27542ad1a646cad9444
react-native-view-shot: 08c46c9e8e92f6681e8f2ffa55ac3d06e7e99070
react-native-webview: 2e330b109bfd610e9818bf7865d1979f898960a7
- react-native-wm-barcode: 881d483f23fba207961884289c00ff79cd1fac94
+ react-native-wm-barcode: eeee6215ce0f2969b7648fee8015745d175269ce
react-native-wm-voice-text: 80c0b59ff0fab4daf179ee430e4ea285181e3891
React-RCTActionSheet: 910163b6b09685a35c4ebbc52b66d1bfbbe39fc5
React-RCTAnimation: 9a883bbe1e9d2e158d4fb53765ed64c8dc2200c6
@@ -861,4 +861,4 @@ SPEC CHECKSUMS:
PODFILE CHECKSUM: 567b62a30f7dd8da9c40b835f39a00c574423a67
-COCOAPODS: 1.9.3
+COCOAPODS: 1.10.1
--- package-lock.json
@@ -12920,9 +12920,9 @@
}
},
"react-native-wm-barcode": {
- "version": "2.29.0",
- "resolved": "https://npme.walmart.com/react-native-wm-barcode/-/react-native-wm-barcode-2.29.0.tgz",
- "integrity": "sha512-xXs/c6oyhcDIqTxwVt+H9FegeYYNZ1fF5WfatNA/k9oSfUsbEGEALIxJNc/wJDnra51SeEAm+XAO9SI+mmjOCw=="
+ "version": "2.28.0",
+ "resolved": "https://npme.walmart.com/react-native-wm-barcode/-/react-native-wm-barcode-2.28.0.tgz",
+ "integrity": "sha512-vtYsT6w93kjbBfQgFsP32M2WvMjalwLZnv7x7qpu8weOxaZ+cwsJruPV+sbJbwCBDMJVmQSq/KDqNb9DAjgITQ=="
},
"react-native-wm-config": {
"version": "0.1.1",
--- package.json
@@ -142,7 +142,7 @@
"react-native-video": "^5.1.0-alpha8",
"react-native-view-shot": "^3.1.2",
"react-native-webview": "^10.7.0",
- "react-native-wm-barcode": "2.29.0",
+ "react-native-wm-barcode": "2.28.0",
"react-native-wm-config": "^0.1.1",
"react-native-wm-network": "^0.1.0",
"react-native-wm-notification": "^1.0.0",
| Revert "updated scanner version" | Revert "updated scanner version"
This reverts commit e3e5e29f1e7a897d129f233b3792b83bc8085f5c.
|
4d645fc628a45cad6b9068152a08851c20e2bc4c | --- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/roster-mini-app",
- "version": "3.3.0-alpha.2",
+ "version": "3.3.0-alpha.3",
"main": "dist/index.js",
"files": [
"dist",
@@ -89,7 +89,7 @@
"@walmart/react-native-scanner-3.0": "0.10.4",
"@walmart/react-native-sumo-sdk": "2.8.0",
"@walmart/ui-components": "1.15.1",
- "@walmart/wmconnect-mini-app": "3.2.0-alpha.2",
+ "@walmart/wmconnect-mini-app": "3.2.0-alpha.3",
"babel-jest": "^29.6.3",
"chance": "^1.1.11",
"crypto-js": "~4.2.0",
--- yarn.lock
@@ -6368,7 +6368,7 @@ __metadata:
"@walmart/react-native-scanner-3.0": "npm:0.10.4"
"@walmart/react-native-sumo-sdk": "npm:2.8.0"
"@walmart/ui-components": "npm:1.15.1"
- "@walmart/wmconnect-mini-app": "npm:3.2.0-alpha.2"
+ "@walmart/wmconnect-mini-app": "npm:3.2.0-alpha.3"
babel-jest: "npm:^29.6.3"
chance: "npm:^1.1.11"
crypto-js: "npm:~4.2.0"
@@ -6451,9 +6451,9 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/wmconnect-mini-app@npm:3.2.0-alpha.2":
- version: 3.2.0-alpha.2
- resolution: "@walmart/wmconnect-mini-app@npm:3.2.0-alpha.2::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Fwmconnect-mini-app%2F-%2F%40walmart%2Fwmconnect-mini-app-3.2.0-alpha.2.tgz"
+"@walmart/wmconnect-mini-app@npm:3.2.0-alpha.3":
+ version: 3.2.0-alpha.3
+ resolution: "@walmart/wmconnect-mini-app@npm:3.2.0-alpha.3::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Fwmconnect-mini-app%2F-%2F%40walmart%2Fwmconnect-mini-app-3.2.0-alpha.3.tgz"
peerDependencies:
"@walmart/allspark-foundation": ">=6.32.0"
expo: ~52.0.46
@@ -6464,7 +6464,7 @@ __metadata:
dependenciesMeta:
"@walmart/me-at-walmart":
built: false
- checksum: 10c0/ee6450ecd9c7885fa315a00ba45f7a69a449c1f3c9effcbed906d176a1d8cffae14d70c264851599fd4f4bba3d38f0139b085c8d06523355d14a5d86aa2ab997
+ checksum: 10c0/0fd5dd299abe3b0a05996c5ce71d8e092969a5243abc9d57f22e78ff8d84021c536d38cbce4db2d5e57471f20f598268aec9749e8f52674254c6bdf5132218fc
languageName: node
linkType: hard
| feat(ui): creating new roster version | feat(ui): creating new roster version
|
79231191a675233e99dd5a9b6c947831c3f362c3 | --- package-lock.json
@@ -37,7 +37,7 @@
"@terrylinla/react-native-sketch-canvas": "0.8.0",
"@walmart/allspark-graphql-client": "^1.4.5",
"@walmart/allspark-neon-core": "0.1.31",
- "@walmart/amp-mini-app": "1.1.67",
+ "@walmart/amp-mini-app": "1.1.68",
"@walmart/ask-sam-chat-components": "^0.2.7",
"@walmart/ask-sam-mini-app": "1.15.4",
"@walmart/attendance-mini-app": "1.62.13",
@@ -8362,13 +8362,10 @@
}
},
"node_modules/@walmart/amp-mini-app": {
- "version": "1.1.67",
- "resolved": "https://npme.walmart.com/@walmart/amp-mini-app/-/amp-mini-app-1.1.67.tgz",
- "integrity": "sha512-PypRUyPGQ78SgGBCRKrrE4Xd/c60ebM1faOsEujTG/uMxbl0Xmv8b885DRmsGCyYcO6xe7pzswnPoJbW8c7Q5A==",
+ "version": "1.1.68",
+ "resolved": "https://npme.walmart.com/@walmart/amp-mini-app/-/amp-mini-app-1.1.68.tgz",
+ "integrity": "sha512-GxB3j9H+V54aL9BohPBrQMUKZrSnJypK+NqPiIpWLiEXicOcpV7rfSK9XGKggMk0TXothUOEMqUKJT6SBVnitg==",
"hasInstallScript": true,
- "dependencies": {
- "react-native-drop-shadow": "^1.0.0"
- },
"peerDependencies": {
"@react-navigation/native": "^6.0.0",
"@react-navigation/stack": "^6.1.0",
@@ -8376,7 +8373,8 @@
"@walmart/gtp-shared-components": "^2.0.9",
"@walmart/redux-store": "^3.1.3",
"react": "^18.2.0",
- "react-native": "~0.70.5"
+ "react-native": "~0.70.5",
+ "react-native-drop-shadow": "^1.0.0"
}
},
"node_modules/@walmart/ask-sam-chat-components": {
@@ -33095,12 +33093,9 @@
}
},
"@walmart/amp-mini-app": {
- "version": "1.1.67",
- "resolved": "https://npme.walmart.com/@walmart/amp-mini-app/-/amp-mini-app-1.1.67.tgz",
- "integrity": "sha512-PypRUyPGQ78SgGBCRKrrE4Xd/c60ebM1faOsEujTG/uMxbl0Xmv8b885DRmsGCyYcO6xe7pzswnPoJbW8c7Q5A==",
- "requires": {
- "react-native-drop-shadow": "^1.0.0"
- }
+ "version": "1.1.68",
+ "resolved": "https://npme.walmart.com/@walmart/amp-mini-app/-/amp-mini-app-1.1.68.tgz",
+ "integrity": "sha512-GxB3j9H+V54aL9BohPBrQMUKZrSnJypK+NqPiIpWLiEXicOcpV7rfSK9XGKggMk0TXothUOEMqUKJT6SBVnitg=="
},
"@walmart/ask-sam-chat-components": {
"version": "0.2.13",
--- package.json
@@ -78,7 +78,7 @@
"@terrylinla/react-native-sketch-canvas": "0.8.0",
"@walmart/allspark-graphql-client": "^1.4.5",
"@walmart/allspark-neon-core": "0.1.31",
- "@walmart/amp-mini-app": "1.1.67",
+ "@walmart/amp-mini-app": "1.1.68",
"@walmart/ask-sam-chat-components": "^0.2.7",
"@walmart/ask-sam-mini-app": "1.15.4",
"@walmart/attendance-mini-app": "1.62.13",
| Package added to peerDependies | Package added to peerDependies
|
6a46463d2c6c87c66e422754c13457aa1796ce65 | --- packages/allspark-foundation/__tests__/Navigation/client.test.tsx
@@ -134,7 +134,6 @@ describe('NavigationClient', () => {
});
it('add a screen change listener when handler is a function', () => {
const mockHandler = jest.fn();
- console.log(typeof mockHandler);
navigationClient.addScreenChangeListener(mockHandler);
expect(mockEventManager.addListener).toHaveBeenCalledWith('screenChange', mockHandler);
});
| fix: removing console log | fix: removing console log
|
1663d68369a07a59c06fea26f69152a8f36732d2 | --- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/me-at-walmart",
- "version": "1.33.3",
+ "version": "1.33.4",
"main": "index.js",
"private": true,
"workspaces": [
| chore(fix): bump patch to 1.33.4 (#4769) | chore(fix): bump patch to 1.33.4 (#4769)
Co-authored-by: Maksym Novakh <maksym.novakh@walmart.com> |
f21f9e8f867b8b0931d661872da70a561b7292e3 | --- fastlane/Pluginfile
@@ -5,4 +5,4 @@
gem 'fastlane-plugin-versioning_android'
gem 'fastlane-plugin-versioning_ios'
gem 'fastlane-plugin-json'
-gem 'fastlane-plugin-appcenter'
+gem 'fastlane-plugin-appcenter', '~> 2.0'
| fix plugin issue | fix plugin issue
|
dea73603195bea096755fc333edd7905763be8b7 | --- package.json
@@ -99,7 +99,7 @@
"@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.16.0",
+ "@walmart/roster-mini-app": "2.17.0",
"@walmart/ui-components": "1.15.1",
"@walmart/wmconnect-mini-app": "2.12.3",
"babel-jest": "^29.2.1",
--- yarn.lock
@@ -6428,7 +6428,7 @@ __metadata:
"@walmart/react-native-shared-navigation": "npm:6.1.4"
"@walmart/react-native-sumo-sdk": "npm:2.6.0"
"@walmart/redux-store": "npm:3.7.0"
- "@walmart/roster-mini-app": "npm:2.16.0"
+ "@walmart/roster-mini-app": "npm:2.17.0"
"@walmart/ui-components": "npm:1.15.1"
"@walmart/wmconnect-mini-app": "npm:2.12.3"
babel-jest: "npm:^29.2.1"
@@ -6610,9 +6610,9 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/roster-mini-app@npm:2.16.0":
- version: 2.16.0
- resolution: "@walmart/roster-mini-app@npm:2.16.0::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Froster-mini-app%2F-%2Froster-mini-app-2.16.0.tgz"
+"@walmart/roster-mini-app@npm:2.17.0":
+ version: 2.17.0
+ resolution: "@walmart/roster-mini-app@npm:2.17.0::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Froster-mini-app%2F-%2Froster-mini-app-2.17.0.tgz"
peerDependencies:
"@react-native-async-storage/async-storage": ^1.21.0
"@react-native-community/netinfo": ^11.0.1
@@ -6654,7 +6654,7 @@ __metadata:
redux: ^4.2.1
redux-saga: ^1.2.3
wifi-store-locator: 1.4.1
- checksum: 10c0/f2b2c442e69c175df15b029f298f928a60d12ea65ef7dc81187df1799c26a3d7175ef61865047442baaf64a6d8814ebbc99a0f019bc63fda3b6baa2d47a9b1af
+ checksum: 10c0/3f35a6fe1fdbdbcd64834eeefae8a741d0162834f7d39346dc2e0483b9add23c04d17a822d06e99a7e519ca626606a83fd3a161f584b00c9c819b51dd75c7e22
languageName: node
linkType: hard
| feat(ui): update myteam mini app version | feat(ui): update myteam mini app version
|
6e27441060c637b677c2fd3f1792fe99f67a7e64 | --- ios/Podfile.lock
@@ -263,7 +263,7 @@ PODS:
- Permission-Notifications (3.6.1):
- RNPermissions
- PromisesObjC (2.1.1)
- - PTT (1.8.6):
+ - PTT (1.8.3):
- BinaryCodable (~> 0.2.1)
- CocoaAsyncSocket (~> 7.6.3)
- RealmSwift (= 10.32.3)
@@ -530,8 +530,8 @@ PODS:
- React-Core
- react-native-pdf (6.6.2):
- React-Core
- - react-native-ptt-module (1.8.13):
- - PTT (= 1.8.6)
+ - react-native-ptt-module (1.8.12):
+ - PTT (= 1.8.3)
- React
- react-native-render-html (6.3.4):
- React-Core
@@ -1187,7 +1187,7 @@ SPEC CHECKSUMS:
Permission-LocationWhenInUse: 3ba99e45c852763f730eabecec2870c2382b7bd4
Permission-Notifications: 150484ae586eb9be4e32217582a78350a9bb31c3
PromisesObjC: ab77feca74fa2823e7af4249b8326368e61014cb
- PTT: fa3706ddb417a5f3226f1c5fd86cd8764830a55f
+ PTT: ea5f9187d0be3094633434cbed7e227f50a7a061
RCT-Folly: 0080d0a6ebf2577475bda044aa59e2ca1f909cda
RCTRequired: 21229f84411088e5d8538f21212de49e46cc83e2
RCTTypeSafety: 62eed57a32924b09edaaf170a548d1fc96223086
@@ -1220,7 +1220,7 @@ SPEC CHECKSUMS:
react-native-netinfo: f80db8cac2151405633324cb645c60af098ee461
react-native-pager-view: 592421df0259bf7a7a4fe85b74c24f3f39905605
react-native-pdf: 33c622cbdf776a649929e8b9d1ce2d313347c4fa
- react-native-ptt-module: 6936355bcd222c2cdbc74247c68c0d62b423009a
+ react-native-ptt-module: aa0e823fe255aa402af72b48a0ad825e51ad80df
react-native-render-html: 984dfe2294163d04bf5fe25d7c9f122e60e05ebe
react-native-safe-area-context: 6c12e3859b6f27b25de4fee8201cfb858432d8de
react-native-scanner-3.0: e144733a1c98596d7cd53c3d6384785273b81aab
--- package-lock.json
@@ -136,7 +136,7 @@
"react-native-pdf": "^6.6.2",
"react-native-permissions": "3.6.1",
"react-native-popup-menu": "^0.16.0",
- "react-native-ptt-module": "1.8.13",
+ "react-native-ptt-module": "1.8.12",
"react-native-qrcode-svg": "^6.1.2",
"react-native-reanimated": "2.12.0",
"react-native-render-html": "^6.3.4",
@@ -17938,9 +17938,9 @@
"license": "ISC"
},
"node_modules/react-native-ptt-module": {
- "version": "1.8.13",
- "resolved": "https://npme.walmart.com/react-native-ptt-module/-/react-native-ptt-module-1.8.13.tgz",
- "integrity": "sha512-OEuqqsBhdQQVgfY/zQspf7OGCbKW1X8jq5Ej4xlMtyHjC5ZV7N5sgiKS1P6hH4ITw4aCXAb62r9Yx48orWhBww==",
+ "version": "1.8.12",
+ "resolved": "https://npme.walmart.com/react-native-ptt-module/-/react-native-ptt-module-1.8.12.tgz",
+ "integrity": "sha512-cXh1sIEN0mruSXC9T8jat8cjNzK0/N2JnBvTuCuVhcskFgyVDu9CdLe861mZqdzrQnsYhOUilaBR+v0w1HvcEw==",
"license": "MIT"
},
"node_modules/react-native-qrcode-svg": {
@@ -33092,9 +33092,9 @@
"version": "0.16.1"
},
"react-native-ptt-module": {
- "version": "1.8.13",
- "resolved": "https://npme.walmart.com/react-native-ptt-module/-/react-native-ptt-module-1.8.13.tgz",
- "integrity": "sha512-OEuqqsBhdQQVgfY/zQspf7OGCbKW1X8jq5Ej4xlMtyHjC5ZV7N5sgiKS1P6hH4ITw4aCXAb62r9Yx48orWhBww=="
+ "version": "1.8.12",
+ "resolved": "https://npme.walmart.com/react-native-ptt-module/-/react-native-ptt-module-1.8.12.tgz",
+ "integrity": "sha512-cXh1sIEN0mruSXC9T8jat8cjNzK0/N2JnBvTuCuVhcskFgyVDu9CdLe861mZqdzrQnsYhOUilaBR+v0w1HvcEw=="
},
"react-native-qrcode-svg": {
"version": "6.1.2",
--- package.json
@@ -178,7 +178,7 @@
"react-native-pdf": "^6.6.2",
"react-native-permissions": "3.6.1",
"react-native-popup-menu": "^0.16.0",
- "react-native-ptt-module": "1.8.13",
+ "react-native-ptt-module": "1.8.12",
"react-native-qrcode-svg": "^6.1.2",
"react-native-reanimated": "2.12.0",
"react-native-render-html": "^6.3.4",
| downgrade PTT iOS version to ptt module 1.8.12 | downgrade PTT iOS version to ptt module 1.8.12
|
ef87711250a9e4cbaad972ed89866e7e634dae1e | --- src/common/ccmFallbacks.ts
@@ -1,4 +1,5 @@
export const CCMFallbacks = {
+ showTeamHub: true,
shouldDisplayWarningBanner: false,
warningMessageContent:
'All users must be on the most recent version of Me@ to send and receive messages.',
--- src/hooks/user.ts
@@ -1,13 +1,17 @@
import {useSelector} from 'react-redux';
import {UserSelectors} from '@walmart/allspark-foundation/User';
import {UserDomain} from '@walmart/me-at-walmart-common';
+import {showManagerTeamsHub} from '../redux/selectors';
export const useUserCanSeeTeamHub = () => {
+ const showTeamHub: boolean = useSelector(showManagerTeamsHub);
const isPeopleLead: boolean = useSelector(UserSelectors.getIsUserPeopleLead);
const isTeamLead: boolean = useSelector(UserSelectors.getIsUserTeamLead);
const isSalaried: boolean = useSelector(UserSelectors.getIsUserSalaried);
const userDomain: string | undefined = useSelector(UserSelectors.getDomain);
const isHomeOffice: boolean =
userDomain?.toLowerCase() === UserDomain.homeoffice;
- return isTeamLead || isSalaried || isPeopleLead || isHomeOffice;
+ return (
+ showTeamHub && (isTeamLead || isSalaried || isPeopleLead || isHomeOffice)
+ );
};
--- src/redux/selectors.ts
@@ -22,6 +22,11 @@ export const warningMessageContent = createSelector(
CCMFallbacks.warningMessageContent,
);
+export const showManagerTeamsHub = createSelector(
+ [getMyTeamConfigData],
+ (state) => getCCMBooleanStr(state?.showTeamHub, CCMFallbacks.showTeamHub),
+);
+
export const shouldDisplayWarningBanner = createSelector(
[getMyTeamConfigData],
(state) =>
| Add manager experience team hub feature flag | Add manager experience team hub feature flag
|
aa9b6ab8c714406c32f85d3e50ed2bff27b4012c | --- packages/core-services-allspark/src/graphql/links.ts
@@ -34,6 +34,16 @@ const handleDailyRoster = (associates: MewAssociate[]) => {
});
};
+export const contentTypeHeaderLink = new ApolloLink((operation, forward) => {
+ operation.setContext((context: DefaultContext) => ({
+ headers: {
+ ...context.headers,
+ 'Content-Type': 'application/json',
+ },
+ }));
+ return forward(operation);
+});
+
export const typeRemappingLink = new ApolloLink((operation, forward) => {
return forward(operation).map((data) => {
if (data?.data?.getDailyRoster) {
@@ -43,18 +53,9 @@ export const typeRemappingLink = new ApolloLink((operation, forward) => {
});
});
-export const athenaRequestLink = new ApolloLink((operation, forward) => {
- operation.setContext((context: DefaultContext) => ({
+export const athenaUriLink = new ApolloLink((operation, forward) => {
+ operation.setContext({
uri: `/${operation.operationName}/${generateQueryHash(operation.query)}`,
- headers: {
- ...context.headers,
- 'Content-Type': 'application/json',
- },
- }));
+ });
return forward(operation);
});
-
-export const AllsparkLinks: ApolloLink[] = [
- typeRemappingLink,
- athenaRequestLink,
-];
--- packages/core-services-allspark/src/graphql/provider.tsx
@@ -1,11 +1,15 @@
-import React, { PropsWithChildren } from 'react';
+import React, { PropsWithChildren, useMemo } from 'react';
import { AllsparkGraphQLProvider } from '@walmart/allspark-graphql-client';
import { useHttpClientClone } from '@walmart/allspark-http-client';
import { useEnvironment } from '@walmart/core-services/Environment';
import { IAllsparkEnvConfig } from '../types';
import { ATHENA_SVC_NAME, ATHENA_HTTP_CLIENT_NAME } from './constants';
-import { AllsparkLinks } from './links';
+import {
+ contentTypeHeaderLink,
+ typeRemappingLink,
+ athenaUriLink,
+} from './links';
import { AllsparkCache } from './cache';
export const AllsparkGraphqlProvider = (props: PropsWithChildren<{}>) => {
@@ -17,17 +21,25 @@ export const AllsparkGraphqlProvider = (props: PropsWithChildren<{}>) => {
baseURL: env.graphqlUrl,
headers: {
'WM_SVC.NAME': ATHENA_SVC_NAME,
- 'WM_SVC.ENV': env.env === 'prod' ? 'prod' : 'stage',
+ 'WM_SVC.ENV': env.env,
},
},
ATHENA_HTTP_CLIENT_NAME
);
+ const links = useMemo(() => {
+ if (env.env === 'dev') {
+ return [contentTypeHeaderLink, typeRemappingLink];
+ }
+ return [contentTypeHeaderLink, athenaUriLink, typeRemappingLink];
+ // eslint-disable-next-line react-hooks/exhaustive-deps
+ }, []);
+
return (
<AllsparkGraphQLProvider
httpClient={httpClient}
cache={AllsparkCache}
- links={AllsparkLinks}
+ links={links}
>
{children}
</AllsparkGraphQLProvider>
--- packages/core-services-allspark/src/types/index.ts
@@ -27,8 +27,8 @@ export type OpenIdConfig = {
};
export type IAllsparkEnvConfig = EnvConfig & {
- env: 'dev' | 'teflon' | 'prod';
- deployment: 'dev' | 'teflon' | 'prod' | 'beta';
+ env: 'dev' | 'teflon' | 'stage' | 'prod';
+ deployment: 'dev' | 'teflon' | 'stage' | 'prod' | 'beta';
appConsumerId: string;
consumerId: string;
internalUrl: string;
| fix: change graphql config per environment. add stage env name option | fix: change graphql config per environment. add stage env name option
|
e4873bc2335933c5ba2ee4bc0de18d37668aadce | --- packages/me-at-walmart-container/src/services/telemetry.ts
@@ -28,12 +28,12 @@ export class TelemetryClient {
constructor(id: string, config?: TelemetryConfig) {
this._id = id;
- this._prefix = config?.usePrefix ? config.prefix || id : '';
this._config = config;
+ this._prefix = config?.usePrefix === false ? '' : config?.prefix || id;
}
public logEvent = (event: string, params?: Record<string, string>) => {
- let fullEvent = `${this._prefix}_${event}`;
+ let fullEvent = this._prefix ? `${this._prefix}_${event}` : event;
let featureParams = {
...(this._config?.fields || {}),
| fix: telemetry service did not default to include prefix | fix: telemetry service did not default to include prefix
|
b271b108bfb49a3ffb3b99aa9933d8b35479f147 | --- package-lock.json
@@ -9754,9 +9754,9 @@
}
},
"node_modules/@walmart/store-feature-orders": {
- "version": "1.23.0",
- "resolved": "https://npme.walmart.com/@walmart/store-feature-orders/-/store-feature-orders-1.23.0.tgz",
- "integrity": "sha512-yUGfrUJxc1nOTxfHsFhMFfF+9vRY9m5V8tSzhD8ISRXDZTCaAIp9XpjGaTOe6iY/5/gpNN9oISFsEO9LMfx5Iw==",
+ "version": "1.24.0",
+ "resolved": "https://npme.walmart.com/@walmart/store-feature-orders/-/store-feature-orders-1.24.0.tgz",
+ "integrity": "sha512-6opFXMOFCSdQMSgscCRSoOYwh9BLbm3IQZ1bCjDW7YFLZU+UNwl41u1jCOrygr3UAuUsJFK7Bi7CAqkZQ7Zd2w==",
"hasInstallScript": true,
"peerDependencies": {
"@react-navigation/native": "^6.0.0",
@@ -29422,7 +29422,7 @@
"requires": {
"mv": "~2",
"safe-json-stringify": "~1",
- "uuid": "^3.3.2"
+ "uuid": "^8.0.0"
}
},
"@expo/cli": {
@@ -30112,7 +30112,7 @@
"md5": "^2.2.1",
"node-fetch": "^2.6.1",
"remove-trailing-slash": "^0.1.0",
- "uuid": "^3.3.2"
+ "uuid": "^8.3.2"
}
},
"@expo/sdk-runtime-versions": {
@@ -33573,9 +33573,9 @@
"integrity": "sha512-XCQBKME/ee2yJDYX+XVtNin3Fvz8zIJTXy3qSGit3ufUcRvaZv2aRN/fR4oK0gyvOTb7p548SS47DZydK/EYlg=="
},
"@walmart/store-feature-orders": {
- "version": "1.23.0",
- "resolved": "https://npme.walmart.com/@walmart/store-feature-orders/-/store-feature-orders-1.23.0.tgz",
- "integrity": "sha512-yUGfrUJxc1nOTxfHsFhMFfF+9vRY9m5V8tSzhD8ISRXDZTCaAIp9XpjGaTOe6iY/5/gpNN9oISFsEO9LMfx5Iw=="
+ "version": "1.24.0",
+ "resolved": "https://npme.walmart.com/@walmart/store-feature-orders/-/store-feature-orders-1.24.0.tgz",
+ "integrity": "sha512-6opFXMOFCSdQMSgscCRSoOYwh9BLbm3IQZ1bCjDW7YFLZU+UNwl41u1jCOrygr3UAuUsJFK7Bi7CAqkZQ7Zd2w=="
},
"@walmart/taskit-mini-app": {
"version": "2.49.7",
@@ -37067,7 +37067,7 @@
"version": "2.1.6",
"dev": true,
"requires": {
- "axios": "~1.2.6"
+ "axios": "^0.21.4"
}
},
"chalk": {
| Updated file commit after npm install | Updated file commit after npm install
|
430b5ba86340d242b0e644812ea76e04266434ce | --- ios/admin_build.sh
@@ -22,6 +22,6 @@ export XC_TARGET='AllSpark'
export http_proxy=http://sysproxy.wal-mart.com:8080
export https_proxy=http://sysproxy.wal-mart.com:8080
-export no_proxy=localhost,*.wal-mart.com,*.walmart.com
+export no_proxy=localhost,*.wal-mart.com,*.walmart.com, chromium.googlesource.com
./BuildSupport/build-archive.sh
| added chromium to no_proxy | added chromium to no_proxy
|
a5ce11c88505f9fd65fcc0669520c13f226d5f47 | --- core/__tests__/impersonation/impersonationScreenTest.tsx
@@ -31,7 +31,7 @@ describe('ImpersonationScreen', () => {
await clearImpersonationCache()
expect(ImpersonationStorage.remove).toHaveBeenCalledWith('impersonation');
});
- it('test error logs for the component', async () => {
+ it('test error logs for the component', () => {
const data = {
impersonatee: { userId: 'userId', siteId: 'siteId' },
impersonator: { token: 'token' }
| code cleanup | code cleanup
|
29b5b82821d39a0c2dab626ba9f72918b2c73df2 | --- .looper.multibranch.yml
@@ -651,7 +651,7 @@ flows:
- type: mrkdwn
text: "*Looper job* ${env} #:<${BUILD_URL}|${BUILD_NUMBER}>"
- type: mrkdwn
- text: "*Github Repo:* <${GITHUB_BRANCH_URL}|URL> - FS: ${FILE_SIZE} - BT: ${MINUTES}m ${SECONDS}s"
+ text: "*Github Repo:* <${GITHUB_BRANCH_URL}|URL> - FS: ${FILE_SIZE} - BT: ${MINUTES}m${SECONDS}s"
- type: divider
# send failure message to slack
| Update .looper.multibranch.yml | Update .looper.multibranch.yml
|
d03406a93a4ff272b5db0b96d7399e4dfdf5dcb8 | --- core/src/settings/LanguageSettings.tsx
@@ -1,5 +1,5 @@
import React, {useEffect, useState} from 'react';
-import {StyleSheet, View} from 'react-native';
+import {Platform, StyleSheet, View} from 'react-native';
import {useTranslation} from 'react-i18next';
import {StackScreenProps} from '@react-navigation/stack';
@@ -61,15 +61,18 @@ export const LanguageSettings = (
const locale = AllsparkTranslationClient.getLocaleConfig(language);
const checked = i18n.language === language;
const onSelect = () => onLanguageSelect(language);
+ const label = locale?.descriptor || language.toUpperCase()
return (
<Radio
key={language}
- label={locale?.descriptor || language.toUpperCase()}
+ label={label}
onPress={onSelect}
checked={checked}
testID={language}
UNSAFE_style={styles.radioItem}
+ // In RN73, a bug prevents the radio role from being read on iOS
+ accessibilityLabel={Platform.OS === 'ios' ? label + ' Radio': label}
/>
);
};
--- core/src/settings/SettingsHome.tsx
@@ -94,7 +94,8 @@ export const SettingItem = (props: {
onPress={onSettingPress}
style={styles.settingsItem}
testID={`menu_${setting.id}`}
- key={setting.id}>
+ key={setting.id}
+ accessibilityRole={setting.type === 'link' ? 'link' : 'button'}>
{setting.primaryIcon && (
<FontIcon size={24} name={setting.primaryIcon} color={colors.black} />
)}
| feat: button or link roles added to settings options, workaround for RN bug for radio role | feat: button or link roles added to settings options, workaround for RN bug for radio role
|
46762172b01bda007a4927bcb6e06ef4633450ae | --- package.json
@@ -89,7 +89,7 @@
"@walmart/avp-feature-app": "0.16.8",
"@walmart/avp-shared-library": "0.10.7",
"@walmart/backroom-mini-app": "1.10.5",
- "@walmart/calling-mini-app": "0.7.34",
+ "@walmart/calling-mini-app": "0.7.35",
"@walmart/checkout-mini-app": "4.8.0",
"@walmart/compass-sdk-rn": "6.2.1",
"@walmart/config-components": "4.7.1",
--- yarn.lock
@@ -6522,9 +6522,9 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/calling-mini-app@npm:0.7.34":
- version: 0.7.34
- resolution: "@walmart/calling-mini-app@npm:0.7.34::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Fcalling-mini-app%2F-%2F%40walmart%2Fcalling-mini-app-0.7.34.tgz"
+"@walmart/calling-mini-app@npm:0.7.35":
+ version: 0.7.35
+ resolution: "@walmart/calling-mini-app@npm:0.7.35::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Fcalling-mini-app%2F-%2F%40walmart%2Fcalling-mini-app-0.7.35.tgz"
peerDependencies:
"@react-native-community/datetimepicker": ">=5"
"@react-navigation/native": ">=6"
@@ -6573,7 +6573,7 @@ __metadata:
dependenciesMeta:
"@walmart/wmconnect-mini-app":
built: false
- checksum: 10c0/1f4b522c35bf51db6f210993b257fa38f3d07a0190766b46d2a303456056aea7adaf86fd81fa2d5e3689206be5c2d0e619e817d02037516174fab1b2034081a4
+ checksum: 10c0/ee7e6b74d0f0914ed040e318e6a89e814ff09a7a41dc055ec4a1527353ba330f63d8c965d82ab1264c9fef599a8dcdb5c9c570b37720278b64fc99acc8c78c0e
languageName: node
linkType: hard
@@ -7309,7 +7309,7 @@ __metadata:
"@walmart/avp-feature-app": "npm:0.16.8"
"@walmart/avp-shared-library": "npm:0.10.7"
"@walmart/backroom-mini-app": "npm:1.10.5"
- "@walmart/calling-mini-app": "npm:0.7.34"
+ "@walmart/calling-mini-app": "npm:0.7.35"
"@walmart/checkout-mini-app": "npm:4.8.0"
"@walmart/compass-sdk-rn": "npm:6.2.1"
"@walmart/config-components": "npm:4.7.1"
| fix: CONAS-1853 Ensuring calling mini app is under CCM check (#4119) | fix: CONAS-1853 Ensuring calling mini app is under CCM check (#4119)
|
73231a2dfefa0de5492bfedd0735cacf2b6119dc | --- __tests__/biometrics/BiometricSagasTest.tsx
@@ -21,6 +21,7 @@ import {
import {logger} from '../../src/services/logger';
import {getShouldPromptOnCheckError} from '../../src/biometrics/utils';
import {getBiometricsEnabled} from '../../src/redux/SharedSelectors';
+import {AppStateTypes} from '../../src/appState/AppStateRedux';
jest.mock('../../src/redux/CreateRestartableSagas', () => ({
createRestartableSaga: jest.fn((saga) => saga),
@@ -205,6 +206,11 @@ describe('promptBiometric', () => {
it('does nothing when app state is not active', () => {
AppState.currentState = 'background';
const iterator = promptBiometric();
+ expect(iterator.next().value).toEqual(take(AppStateTypes.ACTIVE));
+ expect(iterator.next({type: AppStateTypes.ACTIVE}).value).toEqual(
+ call(checkBiometricsAvailable),
+ );
+ expect(iterator.next(true).value).toEqual(call(handleBiometricPrompt));
expect(iterator.next().done).toEqual(true);
});
});
--- src/biometrics/BiometricSagas.ts
@@ -1,3 +1,4 @@
+/* eslint-disable curly */
import {AppState} from 'react-native';
import {call, take, put, takeLatest, select} from 'redux-saga/effects';
import Biometrics from 'react-native-biometrics';
@@ -16,6 +17,7 @@ import {
} from './BiometricRedux';
import {getBiometricsEnabled} from '../redux/SharedSelectors';
import {getShouldPromptOnCheckError, BIOMETRICS_LOG_KEY} from './utils';
+import {AppStateTypes} from '../appState/AppStateRedux';
export function* handleBiometricPrompt(): any {
const biometric = yield select(getBiometricType);
@@ -83,12 +85,12 @@ export function* checkBiometricsAvailable(): any {
}
export function* promptBiometric(): any {
- if (AppState.currentState === 'active') {
- const available = yield call(checkBiometricsAvailable);
+ if (AppState.currentState !== 'active') yield take(AppStateTypes.ACTIVE);
- if (available) {
- yield call(handleBiometricPrompt);
- }
+ const available = yield call(checkBiometricsAvailable);
+
+ if (available) {
+ yield call(handleBiometricPrompt);
}
}
| Biometric fix | Biometric fix
|
36fb478d74d29202361678b348146738b34328b0 | --- __tests__/navigation/AssociateHallwayNav/__snapshots__/SideMenuContentTest.tsx.snap
@@ -4,6 +4,7 @@ exports[`SideMenuContent matches snapshot for undefined user info, and can imper
<SafeAreaView
style={
Object {
+ "backgroundColor": "#002d58",
"flex": 1,
"overflow": "hidden",
}
@@ -83,6 +84,7 @@ exports[`SideMenuContent matches snapshot with not user/clockstatus data; sets b
<SafeAreaView
style={
Object {
+ "backgroundColor": "#002d58",
"flex": 1,
"overflow": "hidden",
}
@@ -162,6 +164,7 @@ exports[`SideMenuContent matches snapshot with user/clockstatus data; sets bar s
<SafeAreaView
style={
Object {
+ "backgroundColor": "#002d58",
"flex": 1,
"overflow": "hidden",
}
--- package-lock.json
@@ -4532,9 +4532,9 @@
}
},
"@walmart/ui-components": {
- "version": "1.2.0-beta.4",
- "resolved": "https://npme.walmart.com/@walmart/ui-components/-/ui-components-1.2.0-beta.4.tgz",
- "integrity": "sha512-yHgIEGXSjlcQwaYjQ6kzoAVsOdBBnALPvwG2BqXiXs8YwMjOrODmfyO52VaXnzpA4LZyUJdwRY0PtiFhhb8h5w==",
+ "version": "1.2.0-beta.6",
+ "resolved": "https://npme.walmart.com/@walmart/ui-components/-/ui-components-1.2.0-beta.6.tgz",
+ "integrity": "sha512-WIBhwQBkzxRywPPK2PrqQGy4sA8x0a86TxigrY5uj8zugQUayJ9amNU5qasQCvpWhhhdtUOLWvnyowy6oqEqng==",
"requires": {
"react-native-calendars": "1.299.0"
}
--- package.json
@@ -98,7 +98,7 @@
"@walmart/settings-mini-app": "1.3.9",
"@walmart/shelfavailability-mini-app": "0.5.0",
"@walmart/time-clock-mini-app": "0.4.24",
- "@walmart/ui-components": "1.2.0-beta.4",
+ "@walmart/ui-components": "1.2.0-beta.6",
"@walmart/welcomeme-mini-app": "0.30.4",
"@walmart/wfm-ui": "^0.1.50",
"@walmart/taskit-mini-app": "0.0.77-rc.0",
--- src/navigation/AssociateHallwayNav/SideMenuContent.tsx
@@ -28,6 +28,7 @@ import {
getSideMenuNavConfig,
NavConfigActionCreators,
} from '../../navConfig/NavConfigRedux';
+import colors from '../../themes/Colors';
const activityName = 'MainActivity';
@@ -35,6 +36,7 @@ const styles = StyleSheet.create({
globalNavContainer: {
flex: 1,
overflow: 'hidden',
+ backgroundColor: colors.underlayBlue,
},
});
| version bump | version bump
|
fe3deefb89e7b879c5f4628f22ba95c7817f0ecc | --- package-lock.json
@@ -4203,9 +4203,9 @@
"integrity": "sha512-AymRaP39YXybYN3VHLVNFMoA8J4XYZbd9JUT+bQOuc5KGf5SQQFMOhrqSd9UENvnbqnTRrfDbBhn/ua7/E54WA=="
},
"@walmart/exception-mini-app": {
- "version": "0.38.1",
- "resolved": "https://npme.walmart.com/@walmart/exception-mini-app/-/exception-mini-app-0.38.1.tgz",
- "integrity": "sha512-ppHmGeLmROMI8bji9txjodeqetklJIUIVf7eioPug8ZtS0YJrWBdnty8kbVZp+fQm+nLsDG0aqUOPDgZzzDd9A=="
+ "version": "0.38.12",
+ "resolved": "https://npme.walmart.com/@walmart/exception-mini-app/-/exception-mini-app-0.38.12.tgz",
+ "integrity": "sha512-SXb6ZJLwlOxcWgmlfWbt/nNdyNY3Xcq1/LApNeMQ4hJfIJUnJn6ShLB3YiuDZ+1xV77fV7+HIESDac40PSaNtw=="
},
"@walmart/feedback-all-spark-miniapp": {
"version": "0.1.18",
--- package.json
@@ -77,7 +77,7 @@
"@walmart/ask-sam-mini-app": "0.40.4",
"@walmart/config-components": "1.0.35",
"@walmart/counts-component-miniapp": "0.0.32",
- "@walmart/exception-mini-app": "0.38.1",
+ "@walmart/exception-mini-app": "0.38.12",
"@walmart/feedback-all-spark-miniapp": "0.1.18",
"@walmart/functional-components": "1.0.34",
"@walmart/gta-react-native-calendars": "0.0.15",
| pinpoint/drop-6: bump version to 0.38.12 | pinpoint/drop-6: bump version to 0.38.12
|
2be41e3cd17c704c5213c55011e2b674a73d0fe8 | --- package-lock.json
@@ -5435,9 +5435,9 @@
"integrity": "sha512-kXnxC7X1ly3Mwl0m18cFiJ91Ybcnw34BcB5F8wF6xbXZrHXdpsaFBqLrnruDwBO/2vvPonYe/Y8otpuIWUXlvQ=="
},
"@walmart/taskit-mini-app": {
- "version": "0.32.0-beta.3",
- "resolved": "https://npme.walmart.com/@walmart/taskit-mini-app/-/taskit-mini-app-0.32.0-beta.3.tgz",
- "integrity": "sha512-g/FFueD/SCWhmqx/iW2yKrUAMVCw80JNNLoVIN8iEzNbKoQSozcyIIXhXjrxYhgEjuRFwIQELhDHCBjSEbn7kg=="
+ "version": "0.32.0-beta.4",
+ "resolved": "https://npme.walmart.com/@walmart/taskit-mini-app/-/taskit-mini-app-0.32.0-beta.4.tgz",
+ "integrity": "sha512-DrOLpCrk+UjJna7sG26/2ud0RMaZ/9b/0Bq0wkUKn5y1Qt9/7Ae64u8nkMQXJSyvmhcm2GEYabP/JJgM60rAHQ=="
},
"@walmart/time-clock-mini-app": {
"version": "0.5.8",
--- package.json
@@ -107,7 +107,7 @@
"@walmart/schedule-mini-app": "0.18.0",
"@walmart/settings-mini-app": "1.6.0",
"@walmart/shelfavailability-mini-app": "1.0.0",
- "@walmart/taskit-mini-app": "0.32.0-beta.3",
+ "@walmart/taskit-mini-app": "0.32.0-beta.4",
"@walmart/time-clock-mini-app": "0.5.8",
"@walmart/ui-components": "1.4.0-rc.0",
"@walmart/welcomeme-mini-app": "0.69.0",
| Updating taskIt version | Updating taskIt version
|
217bc67cb1e8d1745d569385e206a8e07e95073f | --- ios/Podfile.lock
@@ -486,14 +486,14 @@ PODS:
- RNWMSSOLibrary (1.1.0):
- AppAuth
- React
- - SSO (= 1.1.6-alpha)
+ - SSO (= 1.3.3)
- SDWebImage (5.11.0):
- SDWebImage/Core (= 5.11.0)
- SDWebImage/Core (5.11.0)
- SDWebImageWebPCoder (0.6.1):
- libwebp (~> 1.0)
- SDWebImage/Core (~> 5.7)
- - SSO (1.1.6-alpha):
+ - SSO (1.3.3):
- AppAuth
- Starscream (3.0.6)
- Yoga (1.14.0)
@@ -846,10 +846,10 @@ SPEC CHECKSUMS:
RNSketchCanvas: 6939b18677cd1794151cc3d8eb5a0a2158a4a05b
RNSVG: ce9d996113475209013317e48b05c21ee988d42e
RNVectorIcons: bc69e6a278b14842063605de32bec61f0b251a59
- RNWMSSOLibrary: 325266962bfd18b9f18e26281da07eef27246387
+ RNWMSSOLibrary: cae03f288b7b8fd5fb77f0029906a828d9962550
SDWebImage: 7acbb57630ac7db4a495547fb73916ff3e432f6b
SDWebImageWebPCoder: d0dac55073088d24b2ac1b191a71a8f8d0adac21
- SSO: e84846945c235e08745fd2031cf7a2580609951d
+ SSO: b5011634576e580e95c905aa78a8685f5b39ea66
Starscream: ef3ece99d765eeccb67de105bfa143f929026cf5
Yoga: 7740b94929bbacbddda59bf115b5317e9a161598
--- package-lock.json
@@ -12361,9 +12361,9 @@
"integrity": "sha512-Ls9qiNZzW/OLFoI25wfjjAcrf2DZ975hn2vr6U9gyuxi2nooVbzQeFoQS5vQcbCt9QX5NY8ASEEAtlLdIa6KVg=="
},
"react-native-ssmp-sso-allspark": {
- "version": "0.1.0-alpha",
- "resolved": "https://npme.walmart.com/react-native-ssmp-sso-allspark/-/react-native-ssmp-sso-allspark-0.1.0-alpha.tgz",
- "integrity": "sha512-Zp9yc6fxH0Er6vRu5yTZsJnIvA0vKJNiBmbhwDdrWL7Fo+HlB/0FfFL1xobxEqexhf//NvPKJCuJMlaPpibFdQ=="
+ "version": "1.1.1",
+ "resolved": "https://npme.walmart.com/react-native-ssmp-sso-allspark/-/react-native-ssmp-sso-allspark-1.1.1.tgz",
+ "integrity": "sha512-yP567yRqPBoJV6CMl5oVCQCJSbyd8oHtT9B4ImoWg4papzCkW6PRRYgVnEOJVn3/dunydl5fbDc7XfUMFK8sfg=="
},
"react-native-sumo-sdk": {
"version": "2.7.4-rc.9",
--- package.json
@@ -118,7 +118,7 @@
"react-native-screens": "^2.10.1",
"react-native-sha256": "^1.3.6",
"react-native-splash-screen": "^3.2.0",
- "react-native-ssmp-sso-allspark": "0.1.0-alpha",
+ "react-native-ssmp-sso-allspark": "1.1.1",
"react-native-sumo-sdk": "^2.7.4-rc.9",
"react-native-svg": "^12.1.0",
"react-native-tab-view": "^2.15.2",
| updated SSO version v1.1.1 | updated SSO version v1.1.1
|
8186cb1849dc1dd7ddd93c9b25819f20e169851c | --- env.beta.js
@@ -25,4 +25,5 @@ export default {
allsparkService:
'https://developer.api.walmart.com/api-proxy/service/allspark/api/v1',
rbacAppId: '55fa784a-f748-4fe3-91a8-4019e102772c',
+ RMA_MEGA_NAV_ID: '01d285d7-6ec4-45e1-96a5-74365d3b8a6d',
};
--- env.dev.js
@@ -25,4 +25,5 @@ export default {
allsparkService:
'https://developer.api.stg.walmart.com/api-proxy/service/allspark/api/v1',
rbacAppId: 'ec9f5c40-88be-4e90-8807-a4f15f11e84c',
+ RMA_MEGA_NAV_ID: '01d285d7-6ec4-45e1-96a5-74365d3b8a6d',
};
--- env.prod.js
@@ -25,4 +25,5 @@ export default {
allsparkService:
'https://developer.api.walmart.com/api-proxy/service/allspark/api/v1',
rbacAppId: '55fa784a-f748-4fe3-91a8-4019e102772c',
+ RMA_MEGA_NAV_ID: '01d285d7-6ec4-45e1-96a5-74365d3b8a6d',
};
--- env.teflon.js
@@ -25,5 +25,6 @@ export default {
allsparkService:
'https://developer.api.stg.walmart.com/api-proxy/service/allspark/api/v1',
rbacAppId: 'ec9f5c40-88be-4e90-8807-a4f15f11e84c',
+ RMA_MEGA_NAV_ID: '01d285d7-6ec4-45e1-96a5-74365d3b8a6d',
};
--- src/rbacConfig/DataSelector.tsx
@@ -3,7 +3,6 @@ import {GlobalState} from '@walmart/redux-store';
import {RbacConfigState} from './types';
import {NavConfigState} from '../navConfig/types';
-export const RMA_APP_ID = '01d285d7-6ec4-45e1-96a5-74365d3b8a6d';
export const getRbacData = (state: GlobalState): RbacConfigState => state?.rbac;
export const getMeganavData = (state: GlobalState): NavConfigState =>
state?.navConfig;
--- src/rbacConfig/utility/updateMeganavData.tsx
@@ -1,4 +1,4 @@
-import {RMA_APP_ID} from '../DataSelector';
+import Config from '../../../env'
import {RbacConfigState} from '../types';
export const compareData = (
@@ -87,7 +87,7 @@ export const levelOrder = (
// false DENY false
const updateMeganavData = (rbacData: RbacConfigState, meganavData: any) => {
- let rbacExpression = rbacData.data[RMA_APP_ID].permissions;
+ let rbacExpression = rbacData.data[Config.RMA_MEGA_NAV_ID].permissions;
let lenOfRbacData = rbacExpression.length;
for (let index = 0; index < lenOfRbacData; index++) {
let RbacPolicy = rbacExpression[index].rn;
| env variable added for rma meganav | env variable added for rma meganav
|
4313845dbdbebee869714dca3109e12e60473592 | --- src/presence/service.ts
@@ -7,12 +7,18 @@ import {logger} from '../logger/Logger';
const LAST_OFFLINE_CACHE_KEY = `${LOCAL_STORAGE_KEY_PREFIX}_dnd_last_offline`;
-//TODO: Clear value from asyncStorage here
export const goOnlineForUser = (storeId: string, userId: string) => {
const userDocument = createUserDocumentPath(storeId, userId);
firestore()
.doc(userDocument)
.set(FIRESTORE_ONLINE_DATA, {merge: true})
+ .then(() => {
+ clearLastOfflineTimeForAsyncStorage().catch((e: Error) => {
+ logger.error('unable to clear last offline time in async storage', {
+ message: e.message,
+ });
+ });
+ })
.catch((e: any) => {
logger.error('Could not set user online status in firestore', {
message: e.toString(),
@@ -47,6 +53,10 @@ export const setLastOfflineTimeForAsyncStorage = async () => {
);
};
+export const clearLastOfflineTimeForAsyncStorage = async () => {
+ await AsyncStorage.setItem(LAST_OFFLINE_CACHE_KEY, '');
+};
+
export const goOnlineForUserIfOfflineTimeExpired = async (
storeId: string,
userId: string,
@@ -57,11 +67,12 @@ export const goOnlineForUserIfOfflineTimeExpired = async (
const rawLastOfflineTime = await AsyncStorage.getItem(
LAST_OFFLINE_CACHE_KEY,
);
- const lastOfflineTime: string | null =
- rawLastOfflineTime && JSON.parse(rawLastOfflineTime);
+ const lastOfflineTime: number | null = rawLastOfflineTime
+ ? parseInt(JSON.parse(rawLastOfflineTime), 10)
+ : null;
if (lastOfflineTime) {
let currentTime = Math.round(Date.now() / 1000);
- let timeSpentOffline = Math.round(currentTime - Number(lastOfflineTime));
+ let timeSpentOffline = Math.round(currentTime - lastOfflineTime);
const timeRemaining = dndOfflineTimeLimit - timeSpentOffline;
if (timeSpentOffline >= dndOfflineTimeLimit) {
goOnlineForUser(storeId, userId);
--- src/presence/service.ts
@@ -7,12 +7,18 @@ import {logger} from '../logger/Logger';
const LAST_OFFLINE_CACHE_KEY = `${LOCAL_STORAGE_KEY_PREFIX}_dnd_last_offline`;
-//TODO: Clear value from asyncStorage here
export const goOnlineForUser = (storeId: string, userId: string) => {
const userDocument = createUserDocumentPath(storeId, userId);
firestore()
.doc(userDocument)
.set(FIRESTORE_ONLINE_DATA, {merge: true})
+ .then(() => {
+ clearLastOfflineTimeForAsyncStorage().catch((e: Error) => {
+ logger.error('unable to clear last offline time in async storage', {
+ message: e.message,
+ });
+ });
+ })
.catch((e: any) => {
logger.error('Could not set user online status in firestore', {
message: e.toString(),
@@ -47,6 +53,10 @@ export const setLastOfflineTimeForAsyncStorage = async () => {
);
};
+export const clearLastOfflineTimeForAsyncStorage = async () => {
+ await AsyncStorage.setItem(LAST_OFFLINE_CACHE_KEY, '');
+};
+
export const goOnlineForUserIfOfflineTimeExpired = async (
storeId: string,
userId: string,
@@ -57,11 +67,12 @@ export const goOnlineForUserIfOfflineTimeExpired = async (
const rawLastOfflineTime = await AsyncStorage.getItem(
LAST_OFFLINE_CACHE_KEY,
);
- const lastOfflineTime: string | null =
- rawLastOfflineTime && JSON.parse(rawLastOfflineTime);
+ const lastOfflineTime: number | null = rawLastOfflineTime
+ ? parseInt(JSON.parse(rawLastOfflineTime), 10)
+ : null;
if (lastOfflineTime) {
let currentTime = Math.round(Date.now() / 1000);
- let timeSpentOffline = Math.round(currentTime - Number(lastOfflineTime));
+ let timeSpentOffline = Math.round(currentTime - lastOfflineTime);
const timeRemaining = dndOfflineTimeLimit - timeSpentOffline;
if (timeSpentOffline >= dndOfflineTimeLimit) {
goOnlineForUser(storeId, userId);
| clear storage when going offline | clear storage when going offline
|
44ecae39ed6dde750102febdfcb1c4be833d87ad | --- packages/allspark-foundation-hub/src/HubFeature/SupplyChain/translation.ts
@@ -71,6 +71,13 @@ export const enUS = {
cancel: 'Cancel',
},
},
+ updateTeamsModal: {
+ title: 'Update teams',
+ button: {
+ apply: 'Apply',
+ cancel: 'Cancel',
+ },
+ },
};
export const esMX: typeof enUS = {
@@ -147,4 +154,11 @@ export const esMX: typeof enUS = {
cancel: 'Cancel',
},
},
+ updateTeamsModal: {
+ title: 'Update teams',
+ button: {
+ apply: 'Apply',
+ cancel: 'Cancel',
+ },
+ },
};
| feat(ui): cleanup and other enhancements | feat(ui): cleanup and other enhancements
|
e09264267d345aec91b2996fb7069f6a2e55a863 | --- package.json
@@ -99,7 +99,7 @@
"@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.14.2",
+ "@walmart/roster-mini-app": "2.15.0",
"@walmart/ui-components": "1.15.1",
"@walmart/wmconnect-mini-app": "2.12.3",
"babel-jest": "^29.2.1",
--- yarn.lock
@@ -6428,7 +6428,7 @@ __metadata:
"@walmart/react-native-shared-navigation": "npm:6.1.4"
"@walmart/react-native-sumo-sdk": "npm:2.6.0"
"@walmart/redux-store": "npm:3.7.0"
- "@walmart/roster-mini-app": "npm:2.14.2"
+ "@walmart/roster-mini-app": "npm:2.15.0"
"@walmart/ui-components": "npm:1.15.1"
"@walmart/wmconnect-mini-app": "npm:2.12.3"
babel-jest: "npm:^29.2.1"
@@ -6610,9 +6610,9 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/roster-mini-app@npm:2.14.2":
- version: 2.14.2
- resolution: "@walmart/roster-mini-app@npm:2.14.2::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Froster-mini-app%2F-%2F%40walmart%2Froster-mini-app-2.14.2.tgz"
+"@walmart/roster-mini-app@npm:2.15.0":
+ version: 2.15.0
+ resolution: "@walmart/roster-mini-app@npm:2.15.0::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Froster-mini-app%2F-%2Froster-mini-app-2.15.0.tgz"
peerDependencies:
"@react-native-async-storage/async-storage": ^1.21.0
"@react-native-community/netinfo": ^11.0.1
@@ -6654,7 +6654,7 @@ __metadata:
redux: ^4.2.1
redux-saga: ^1.2.3
wifi-store-locator: 1.4.1
- checksum: 10c0/c911fdee81f98cfc3d8d6ef27b163093675ae7fa004baa77e37416e190f99fa5c4851485295f2cb4e8666026c44990c327d6778e0e2f1aef54ae6fac84580f06
+ checksum: 10c0/0ccb050b17af15929a2eb567a68ccffa21434c35b48fa30294a64bfb10b223b25b4adad8208855f716fc363ffbf4c1274cb08a2e6806e590cdfb7258cf713884
languageName: node
linkType: hard
| feat(ui): update myteam mini app version for roster | feat(ui): update myteam mini app version for roster
|
8f3e03ce315a7fd969f027754077af36b447bdc6 | --- core/src/features/inbox.tsx
@@ -46,7 +46,6 @@ export const createInboxHeaderRight =
const {showBadge} = useBadgeCount();
const enabled = useSelector(getInboxHeaderEnabled);
const oneClick = useOneClick(MINI_APPS.INBOX);
- console.log('🚀 ~ oneClick:', oneClick);
const isInboxEnabled = enabled && oneClick.enable;
const onPress = () => {
| test fixes | test fixes
|
efb99820404c2a82fa688172204a61e3d799f75e | --- src/home/components/TaskCard/TaskStatusDetails.tsx
@@ -15,7 +15,6 @@ export const TaskStatusDetails = (props: TaskStatusDetailsProps) => {
viewRosterText,
teamImage,
} = props;
- console.log('sva', teamImage);
return (
<View style={styles.taskInnerContainerStyle}>
<View style={styles.departmentDescStyle}>
| chore: remove console log | chore: remove console log |
2731590207eb452c3dbf535e0c6cd6e01cb43ec8 | --- __tests__/core/httpClientInitTest.ts
@@ -182,4 +182,18 @@ describe('createRefreshTokenCallback', () => {
expect(connectedSSO.getFreshAccessToken).toHaveBeenCalled();
expect(connectedSSO.signOut).toHaveBeenCalled();
});
+
+ it('will not call sign out if user is not still available', async () => {
+ const err = 'opps';
+ mockGetUser.mockClear();
+ (connectedSSO.signOut as jest.Mock).mockClear();
+ mockGetUser.mockResolvedValueOnce(user);
+ mockGetUser.mockResolvedValueOnce(null);
+ mockGetFreshAccessToken.mockRejectedValue(err);
+ const callback = createRefreshTokenCallback(connectedSSO);
+ await callback(request);
+
+ expect(connectedSSO.getFreshAccessToken).toHaveBeenCalled();
+ expect(connectedSSO.signOut).not.toHaveBeenCalled();
+ });
});
--- src/core/httpClientInit.ts
@@ -56,7 +56,10 @@ export const createRefreshTokenCallback = (sso: ConnectedSSO) => async (
DefaultLogger.warn('Error while refreshing token', {
errorMessage: err.message,
});
- sso.signOut('MainActivity', true);
+ const userStillAvailable = await isUserAvailable();
+ if (userStillAvailable) {
+ sso.signOut('MainActivity', false);
+ }
}
} else {
return new Promise((resolve) => {
| do not start sign in after sign out (#170) | do not start sign in after sign out (#170)
Co-authored-by: Savankumar Akbari - sakbari <sakbari@m-c02rv0v4g8wl.homeoffice.wal-mart.com> |
852b4b6b896c431cf79565be9409ba51ea073bfa | --- packages/allspark-foundation-hub/src/Store/Modules/Hub/HubDashboard.tsx
@@ -196,10 +196,13 @@ export const HubDashboard = ({
});
};
- useFocusEffect(
- useCallback(() => {
- scrollViewRef.current?.scrollTo({ y: 0, animated: false });
- }, [allowedWidgetsList])
+useFocusEffect(
+ useCallback(() => {
+ if (scrollViewRef.current) {
+ scrollViewRef.current.scrollTo({ y: 0, animated: false });
+ }
+ }, [allowedWidgetsList])
+);
);
useEffect(() => {
| Update packages/allspark-foundation-hub/src/Store/Modules/Hub/HubDashboard.tsx | Update packages/allspark-foundation-hub/src/Store/Modules/Hub/HubDashboard.tsx
Co-authored-by: AI Code Assistant <AI-Code-Assistant@email.wal-mart.com> |
598dbbed635be10f4c04d548d1caa38557cc882c | --- __tests__/setup.ts
@@ -1,3 +1,9 @@
+import i18n from 'i18next';
+import 'react-native-gesture-handler/jestSetup';
+import {initReactI18next} from 'react-i18next';
+import {enUS} from '../src/translations/en-US';
+import {esMX} from '../src/translations/es-MX';
+
jest.mock('react-native/Libraries/EventEmitter/NativeEventEmitter');
jest.mock('@walmart/functional-components', () => {
const mockHttpClient = {
@@ -13,10 +19,22 @@ jest.mock('@walmart/functional-components', () => {
});
// ------ React Navigator Related Mocks: https://reactnavigation.org/docs/testing/ ----- //
-import 'react-native-gesture-handler/jestSetup';
jest.mock('react-native-reanimated', () => {
const Reanimated = require('react-native-reanimated/mock');
Reanimated.default.call = () => {};
return Reanimated;
});
jest.mock('react-native/Libraries/Animated/NativeAnimatedHelper');
+// ------ End
+
+// ------ Setup Internationalization
+i18n.use(initReactI18next).init({
+ lng: 'en-US',
+ fallbackLng: 'en-US',
+ ns: ['common'],
+ defaultNS: 'common',
+ resources: {
+ 'en-US': enUS,
+ 'es-MX': esMX,
+ },
+});
--- __tests__/setup.ts
@@ -1,3 +1,9 @@
+import i18n from 'i18next';
+import 'react-native-gesture-handler/jestSetup';
+import {initReactI18next} from 'react-i18next';
+import {enUS} from '../src/translations/en-US';
+import {esMX} from '../src/translations/es-MX';
+
jest.mock('react-native/Libraries/EventEmitter/NativeEventEmitter');
jest.mock('@walmart/functional-components', () => {
const mockHttpClient = {
@@ -13,10 +19,22 @@ jest.mock('@walmart/functional-components', () => {
});
// ------ React Navigator Related Mocks: https://reactnavigation.org/docs/testing/ ----- //
-import 'react-native-gesture-handler/jestSetup';
jest.mock('react-native-reanimated', () => {
const Reanimated = require('react-native-reanimated/mock');
Reanimated.default.call = () => {};
return Reanimated;
});
jest.mock('react-native/Libraries/Animated/NativeAnimatedHelper');
+// ------ End
+
+// ------ Setup Internationalization
+i18n.use(initReactI18next).init({
+ lng: 'en-US',
+ fallbackLng: 'en-US',
+ ns: ['common'],
+ defaultNS: 'common',
+ resources: {
+ 'en-US': enUS,
+ 'es-MX': esMX,
+ },
+});
| adding i18n to translation | adding i18n to translation
|
e33a285f30535446e3ea71bb2bcb47a126a0102a | --- package-lock.json
@@ -72,7 +72,7 @@
"@walmart/ims-print-services-ui": "2.10.3",
"@walmart/inbox-mini-app": "0.92.10",
"@walmart/iteminfo-mini-app": "7.10.13",
- "@walmart/learning-mini-app": "20.0.18",
+ "@walmart/learning-mini-app": "20.0.19",
"@walmart/manager-approvals-miniapp": "0.2.4",
"@walmart/me-at-walmart-athena-queries": "6.0.16",
"@walmart/me-at-walmart-common": "6.0.16",
@@ -11734,9 +11734,9 @@
}
},
"node_modules/@walmart/learning-mini-app": {
- "version": "20.0.18",
- "resolved": "https://npme.walmart.com/@walmart/learning-mini-app/-/learning-mini-app-20.0.18.tgz",
- "integrity": "sha512-Kizrki3GbkxTOSTt0TNcQTqIlGFcwW2OeMtQ+Hapyl5q337Ap4y5JaatJgiwgf85z2o6ZSF6S3FTPtLVcJOMIQ==",
+ "version": "20.0.19",
+ "resolved": "https://npme.walmart.com/@walmart/learning-mini-app/-/learning-mini-app-20.0.19.tgz",
+ "integrity": "sha512-ifDiU0OWkG6MhwQcY3TJYGL9699rbGC1qYPMvTQnIpn348ajcQ4CefKkvCGDsSff0rm/wkGizcqnCr0PBTKHDw==",
"hasInstallScript": true,
"peerDependencies": {
"@atmt/feedback-component-native": "^8.0.0",
@@ -11766,7 +11766,7 @@
"@walmart/react-native-sumo-sdk": "^2.6.0",
"@walmart/redux-store": "~3.1.3",
"@walmart/time-clock-mini-app": "2.175.2",
- "@walmart/ui-components": "1.15.6",
+ "@walmart/ui-components": "1.15.11",
"@walmart/wfm-ui": "0.2.25",
"base-64": "^1.0.0",
"expo": "49.0.13",
@@ -11793,7 +11793,7 @@
"react-native-permissions": "3.0.0",
"react-native-safe-area-context": "^4.7.2",
"react-native-screens": "^3.25.0",
- "react-native-sha256": "^1.3.6",
+ "react-native-sha256": "^1.4.10",
"react-native-svg": "^12.1.1",
"react-native-svg-transformer": "^1.0.0",
"react-native-tab-view": "^3.1.1",
--- package.json
@@ -113,7 +113,7 @@
"@walmart/ims-print-services-ui": "2.10.3",
"@walmart/inbox-mini-app": "0.92.10",
"@walmart/iteminfo-mini-app": "7.10.13",
- "@walmart/learning-mini-app": "20.0.18",
+ "@walmart/learning-mini-app": "20.0.19",
"@walmart/manager-approvals-miniapp": "0.2.4",
"@walmart/me-at-walmart-athena-queries": "6.0.16",
"@walmart/me-at-walmart-common": "6.0.16",
@@ -378,7 +378,7 @@
"@walmart/ims-print-services-ui": "2.10.3",
"@walmart/inbox-mini-app": "0.92.10",
"@walmart/iteminfo-mini-app": "7.10.13",
- "@walmart/learning-mini-app": "20.0.18",
+ "@walmart/learning-mini-app": "20.0.19",
"@walmart/manager-approvals-miniapp": "0.2.4",
"@walmart/me-at-walmart-athena-queries": "6.0.16",
"@walmart/me-at-walmart-common": "6.0.16",
| feat: :sparkles: Bump learning mini app version to 20.0.19 | feat: :sparkles: Bump learning mini app version to 20.0.19
|
c10b9866e5869938b8b49c83fb8dd67febc1679d | --- package-lock.json
@@ -3328,9 +3328,9 @@
"integrity": "sha512-25jOl+Jh0tHbfjXVwBc6ckMs/e0gQPeHQufIXxEZoqfHdCio7804wVD8mtkkKXPtyISi8fOXy1TIfwKoxEFYIw=="
},
"@walmart/exception-mini-app": {
- "version": "0.32.0",
- "resolved": "https://npme.walmart.com/@walmart/exception-mini-app/-/exception-mini-app-0.32.0.tgz",
- "integrity": "sha512-lzkbSrug1ZoL9NlsAZUaQxcJ5tLEV2ui/VScq4eGhYJYHATEKAJaLZaUS6kKwBdWQWcOK/F9YWiI5Q/E3TzWhw=="
+ "version": "0.33.0",
+ "resolved": "https://npme.walmart.com/@walmart/exception-mini-app/-/exception-mini-app-0.33.0.tgz",
+ "integrity": "sha512-SdHj4JD8W/fM5WToenYYGps2Zw5RJF6pgBGhTcy0Q0MAsUl6M4j8gngPmm0XxApixNKPrGsQWAeCi/7s6PTQRQ=="
},
"@walmart/feedback-all-spark-miniapp": {
"version": "0.0.58",
@@ -3606,7 +3606,7 @@
"wfm-allspark-data-library": {
"version": "0.0.19",
"resolved": "https://npme.walmart.com/wfm-allspark-data-library/-/wfm-allspark-data-library-0.0.19.tgz",
- "integrity": "sha512-oSOCmyqrck/dJBNhry3TvzVgjBOhFTvW/hr46SGL5dV6EPSdlDPoAvMPfn2sk1bYGNC3T8KR/NQLS7vy1wh37w==",
+ "integrity": "sha1-m7vgBO4/FPNOk2I/by5gR9NGNd0=",
"requires": {
"azure-storage": "2.10.3",
"crypto-js": "^3.3.0",
--- package.json
@@ -76,7 +76,7 @@
"@walmart/ask-sam-mini-app": "0.30.12",
"@walmart/config-components": "^1.0.28",
"@walmart/counts-component-miniapp": "0.0.18",
- "@walmart/exception-mini-app": "0.32.0",
+ "@walmart/exception-mini-app": "0.33.0",
"@walmart/feedback-all-spark-miniapp": "0.0.58",
"@walmart/functional-components": "1.0.31",
"@walmart/gtp-shared-components": "^1.2.0",
| pinpoint version bump | pinpoint version bump
|
197572477ece378cd8ddea612da6c4e00336080c | --- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/roster-mini-app",
- "version": "3.2.0-alpha.0",
+ "version": "3.2.0-alpha.1",
"main": "dist/index.js",
"files": [
"dist",
--- tsconfig.json
@@ -6,7 +6,7 @@
"compilerOptions": {
"strict": true,
"baseUrl": ".",
- "rootDir": ".",
+ "rootDir": "./src",
"outDir": "./dist",
/* Basic Options */
| chore(ui): tsconfig update | chore(ui): tsconfig update
|
ffeda14e3a6baff6c1c3e659fe068ae5e26267ef | --- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/myteam-mini-app",
- "version": "3.6.0-beta.5",
+ "version": "3.6.0-beta.6",
"main": "dist/index.js",
"files": [
"dist",
@@ -92,9 +92,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.8.0-beta.6",
+ "@walmart/roster-mini-app": "3.8.0-beta.7",
"@walmart/ui-components": "1.15.1",
- "@walmart/wmconnect-mini-app": "3.7.0-beta.3",
+ "@walmart/wmconnect-mini-app": "3.7.0-beta.4",
"babel-jest": "^29.6.3",
"chance": "^1.1.11",
"crypto-js": "~4.2.0",
--- yarn.lock
@@ -8034,9 +8034,9 @@ __metadata:
"@walmart/react-native-logger": "npm:1.35.0"
"@walmart/react-native-scanner-3.0": "npm:0.10.4"
"@walmart/react-native-sumo-sdk": "npm:2.8.0"
- "@walmart/roster-mini-app": "npm:3.8.0-beta.6"
+ "@walmart/roster-mini-app": "npm:3.8.0-beta.7"
"@walmart/ui-components": "npm:1.15.1"
- "@walmart/wmconnect-mini-app": "npm:3.7.0-beta.3"
+ "@walmart/wmconnect-mini-app": "npm:3.7.0-beta.4"
babel-jest: "npm:^29.6.3"
chance: "npm:^1.1.11"
crypto-js: "npm:~4.2.0"
@@ -8144,9 +8144,9 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/roster-mini-app@npm:3.8.0-beta.6":
- version: 3.8.0-beta.6
- resolution: "@walmart/roster-mini-app@npm:3.8.0-beta.6::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Froster-mini-app%2F-%2F%40walmart%2Froster-mini-app-3.8.0-beta.6.tgz"
+"@walmart/roster-mini-app@npm:3.8.0-beta.7":
+ version: 3.8.0-beta.7
+ resolution: "@walmart/roster-mini-app@npm:3.8.0-beta.7::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Froster-mini-app%2F-%2F%40walmart%2Froster-mini-app-3.8.0-beta.7.tgz"
dependencies:
expo: "npm:~52.0.46"
react: "npm:18.3.1"
@@ -8162,7 +8162,7 @@ __metadata:
dependenciesMeta:
"@walmart/me-at-walmart":
built: false
- checksum: 10c0/8628e85def54980e56883bbccf6ceebf6a19404f5f85be57642b5e6a9923df848741bfb6a8269068c686867b19aebf286baca91319736d623111be65f9a21982
+ checksum: 10c0/6593c3ab98a2b9fd0acd29839a38db0e2086116cc35d52ad6c8f992a880d77dfc5ec7070843ffa646e64d6443a5a01c4da8f5a631b468c38e77d81530b99eb4a
languageName: node
linkType: hard
@@ -8186,9 +8186,9 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/wmconnect-mini-app@npm:3.7.0-beta.3":
- version: 3.7.0-beta.3
- resolution: "@walmart/wmconnect-mini-app@npm:3.7.0-beta.3::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Fwmconnect-mini-app%2F-%2F%40walmart%2Fwmconnect-mini-app-3.7.0-beta.3.tgz"
+"@walmart/wmconnect-mini-app@npm:3.7.0-beta.4":
+ version: 3.7.0-beta.4
+ resolution: "@walmart/wmconnect-mini-app@npm:3.7.0-beta.4::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Fwmconnect-mini-app%2F-%2F%40walmart%2Fwmconnect-mini-app-3.7.0-beta.4.tgz"
peerDependencies:
"@walmart/allspark-foundation": ">=7.12.0"
"@walmart/gtp-shared-components": ^2.3.0-rc.0
@@ -8200,7 +8200,7 @@ __metadata:
dependenciesMeta:
"@walmart/me-at-walmart":
built: false
- checksum: 10c0/921c7749582b668954c721c9cf250b2d498b4c0dfad1c3a72b9a9f008ba6250bc465bd02977e21b836759f8c2619e9f9d8899e106ca9097e64c2705e8d9d6018
+ checksum: 10c0/ba3d10cf05100344a12850fc3271b87ba1dbfc4c3f3fc5452c09a9d459d834da49dc15448cc6d41438cb1268db41b882a30793356d85a28ad82fdc0fb60d40b9
languageName: node
linkType: hard
| fix: update packages and tests | fix: update packages and tests
|
fa261cecc43116e24750bfbebf0f884119a6d399 | --- package.json
@@ -162,7 +162,7 @@
"@walmart/taskit-mini-app": "5.42.0",
"@walmart/time-clock-mini-app": "3.19.6",
"@walmart/time-clock-mini-app-next": "3.0.0",
- "@walmart/topstock-mini-app": "1.26.7",
+ "@walmart/topstock-mini-app": "1.27.1",
"@walmart/translator-mini-app": "1.7.17",
"@walmart/ui-components": "patch:@walmart/ui-components@npm%3A1.25.2#~/.yarn/patches/@walmart-ui-components-npm-1.25.2-68606d814b.patch",
"@walmart/walmart-fiscal-week": "^0.3.6",
--- yarn.lock
@@ -8751,7 +8751,7 @@ __metadata:
"@walmart/taskit-mini-app": "npm:5.42.0"
"@walmart/time-clock-mini-app": "npm:3.19.6"
"@walmart/time-clock-mini-app-next": "npm:3.0.0"
- "@walmart/topstock-mini-app": "npm:1.26.7"
+ "@walmart/topstock-mini-app": "npm:1.27.1"
"@walmart/translator-mini-app": "npm:1.7.17"
"@walmart/ui-components": "patch:@walmart/ui-components@npm%3A1.25.2#~/.yarn/patches/@walmart-ui-components-npm-1.25.2-68606d814b.patch"
"@walmart/walmart-fiscal-week": "npm:^0.3.6"
@@ -9760,9 +9760,9 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/topstock-mini-app@npm:1.26.7":
- version: 1.26.7
- resolution: "@walmart/topstock-mini-app@npm:1.26.7::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Ftopstock-mini-app%2F-%2F%40walmart%2Ftopstock-mini-app-1.26.7.tgz"
+"@walmart/topstock-mini-app@npm:1.27.1":
+ version: 1.27.1
+ resolution: "@walmart/topstock-mini-app@npm:1.27.1::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Ftopstock-mini-app%2F-%2F%40walmart%2Ftopstock-mini-app-1.27.1.tgz"
peerDependencies:
"@react-navigation/native": ">=5.8.10"
"@react-navigation/stack": ">=5.12.8"
@@ -9774,7 +9774,7 @@ __metadata:
react-i18next: ">=11.7.3"
react-native-vector-icons: ">=6.6.0"
react-redux: ">=7.2.0"
- checksum: 10c0/b190ca3ddaffc17b6dd368b95dc2e08b9ce51ada28055c53e0c9398f9e51310f1dcf576ea38559a4c19744e9bf3d395f0930cfff003b7069e28b26a53061a5b9
+ checksum: 10c0/27da4f37042fba7e5a7d2846c5ddd7beb6d06236c678eafdebf5bc740e8f5610dba4a0a5edb36619ebbfdf019d534a0c34368d57a4cbea54f942cf912db7149e
languageName: node
linkType: hard
| fix(topstock): topstock drop34 (#4698) | fix(topstock): topstock drop34 (#4698)
Co-authored-by: Talia Andrews - t0a07tn <Talia.Andrews@walmart.com> |
83ed796d5e750a5f45cbb1a54a56778b4ddb31d5 | --- targets/US/package.json
@@ -142,7 +142,7 @@
"@walmart/roster-mini-app": "2.4.0",
"@walmart/schedule-mini-app": "0.114.2",
"@walmart/shelfavailability-mini-app": "1.5.26",
- "@walmart/shop-gnfr-mini-app": "1.0.60",
+ "@walmart/shop-gnfr-mini-app": "1.0.66",
"@walmart/store-feature-orders": "1.26.9",
"@walmart/taskit-mini-app": "patch:@walmart/taskit-mini-app@npm%3A3.0.2#~/.yarn/patches/@walmart-taskit-mini-app-npm-3.0.2-4cbd5b8e6d.patch",
"@walmart/time-clock-mini-app": "2.395.0",
--- 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.60"
+ "@walmart/shop-gnfr-mini-app": "npm:1.0.66"
"@walmart/store-feature-orders": "npm:1.26.9"
"@walmart/taskit-mini-app": "patch:@walmart/taskit-mini-app@npm%3A3.0.2#~/.yarn/patches/@walmart-taskit-mini-app-npm-3.0.2-4cbd5b8e6d.patch"
"@walmart/time-clock-mini-app": "npm:2.395.0"
@@ -7590,9 +7590,9 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/shop-gnfr-mini-app@npm:1.0.60":
- version: 1.0.60
- resolution: "@walmart/shop-gnfr-mini-app@npm:1.0.60"
+"@walmart/shop-gnfr-mini-app@npm:1.0.66":
+ version: 1.0.66
+ resolution: "@walmart/shop-gnfr-mini-app@npm:1.0.66"
dependencies:
"@testing-library/react-native": "npm:^12.5.1"
react-native-drop-shadow: "npm:^1.0.0"
@@ -7606,7 +7606,7 @@ __metadata:
"@walmart/gtp-shared-components": ^2.0.0
react: ^18.2.0
react-native: ~0.70.5
- checksum: 10c0/ef46a46a40c64db90e2d821137a9c8e95ca5390527d07330c98c098e2cb90904e7fa658cc28df905f9a6567d6bb81884aa8d5be75dbfcafb11b1c83774053189
+ checksum: 10c0/9e0124b792c545261b213c91f0f4840c85f1d77ebd6c22737fd7a5d1e09a3507a0802eea1d8e32e85756c6b36c40ab2bc05fefeedb151552c26ff3db2ab5239f
languageName: node
linkType: hard
| Version bump to 1.0.66 | Version bump to 1.0.66
|
fc1dbd2b99a89c941c20d08d58a9af594d416076 | --- __tests__/components/RosterFiltersAndInfo.test.tsx
@@ -179,7 +179,14 @@ describe('RosterFiltersAndInfo Component', () => {
handleFilter: jest.fn(),
totalScheduleCount: 0,
isPrimaryTeam: false,
- onShiftChange: jest.fn(),
+const onShiftChange = jest.fn();
+const newProps: RosterFiltersAndInfoProps = {
+ headerText: `Today's roster`,
+ handleFilter: jest.fn(),
+ totalScheduleCount: 0,
+ isPrimaryTeam: false,
+ onShiftChange,
+};
};
jest.spyOn(hooks, 'useRbacConfigWithJobCode').mockReturnValue(false);
jest.spyOn(hooks, 'useRbacConfigWithJobCode').mockReturnValue(false);
| Update __tests__/components/RosterFiltersAndInfo.test.tsx | Update __tests__/components/RosterFiltersAndInfo.test.tsx
Co-authored-by: AI Code Assistant <AI-Code-Assistant@email.wal-mart.com> |
6749fa6a649325b7fd706a8087f56e822a850cba | --- src/notification.ts
@@ -2,8 +2,17 @@ import WmNotification, {
SumoPushEvent,
SumoPushEventTypes,
} from 'react-native-wm-notification';
-import {navigate} from '@walmart/react-native-shared-navigation';
import {createChannelPath} from './channels';
+import {fetchResource} from './services/blob';
+import {Audio} from 'expo-av';
+
+async function playSound(filePath: string) {
+ console.log('Loading Sound');
+ const {sound} = await Audio.Sound.createAsync({uri: filePath});
+
+ console.log('Playing Sound');
+ await sound.playAsync();
+}
export const onTextMessageNotification = (event?: SumoPushEvent) => {
let handled = false;
@@ -16,19 +25,34 @@ export const onTextMessageNotification = (event?: SumoPushEvent) => {
const mockRemoteURL =
'/directedvoice/ptt/v1/azure/us-100/recording-b1ecfc63-92eb-47d8-8e6c-39d0591c465a.m4a';
+ //TODO: Replace with audio uri from custom data response
+ if (mockRemoteURL) {
+ //TODO: May need to set app to foreground first before playing the sound
+
+ console.log('fetching resource in order to play sound...');
+ fetchResource(mockRemoteURL)
+ .then((audioFileURI) => {
+ playSound(audioFileURI);
+ })
+ .catch((e) => {
+ //TODO: Log audio playback error to splunk
+ console.log(e);
+ });
+ }
+
//TODO: conditionally set audio autoplay by checking for audio data in response payload
- navigate(rootContainerScreen, {
- // @ts-ignore
- screen: appContainerRootScreen,
- params: {
- screen: messagesScreen,
- params: {
- channelPath: channelPath,
- audioMessageForAutoplay: mockRemoteURL,
- },
- },
- });
- handled = true;
+ // navigate(rootContainerScreen, {
+ // // @ts-ignore
+ // screen: appContainerRootScreen,
+ // params: {
+ // screen: messagesScreen,
+ // params: {
+ // channelPath: channelPath,
+ // audioMessageForAutoplay: mockRemoteURL,
+ // },
+ // },
+ // });
+ // handled = true;
}
return handled;
--- src/notification.ts
@@ -2,8 +2,17 @@ import WmNotification, {
SumoPushEvent,
SumoPushEventTypes,
} from 'react-native-wm-notification';
-import {navigate} from '@walmart/react-native-shared-navigation';
import {createChannelPath} from './channels';
+import {fetchResource} from './services/blob';
+import {Audio} from 'expo-av';
+
+async function playSound(filePath: string) {
+ console.log('Loading Sound');
+ const {sound} = await Audio.Sound.createAsync({uri: filePath});
+
+ console.log('Playing Sound');
+ await sound.playAsync();
+}
export const onTextMessageNotification = (event?: SumoPushEvent) => {
let handled = false;
@@ -16,19 +25,34 @@ export const onTextMessageNotification = (event?: SumoPushEvent) => {
const mockRemoteURL =
'/directedvoice/ptt/v1/azure/us-100/recording-b1ecfc63-92eb-47d8-8e6c-39d0591c465a.m4a';
+ //TODO: Replace with audio uri from custom data response
+ if (mockRemoteURL) {
+ //TODO: May need to set app to foreground first before playing the sound
+
+ console.log('fetching resource in order to play sound...');
+ fetchResource(mockRemoteURL)
+ .then((audioFileURI) => {
+ playSound(audioFileURI);
+ })
+ .catch((e) => {
+ //TODO: Log audio playback error to splunk
+ console.log(e);
+ });
+ }
+
//TODO: conditionally set audio autoplay by checking for audio data in response payload
- navigate(rootContainerScreen, {
- // @ts-ignore
- screen: appContainerRootScreen,
- params: {
- screen: messagesScreen,
- params: {
- channelPath: channelPath,
- audioMessageForAutoplay: mockRemoteURL,
- },
- },
- });
- handled = true;
+ // navigate(rootContainerScreen, {
+ // // @ts-ignore
+ // screen: appContainerRootScreen,
+ // params: {
+ // screen: messagesScreen,
+ // params: {
+ // channelPath: channelPath,
+ // audioMessageForAutoplay: mockRemoteURL,
+ // },
+ // },
+ // });
+ // handled = true;
}
return handled;
| adding logic to play a sound | adding logic to play a sound
|
b5ab2586362b1c72f067958e09dc646b8539f0c8 | --- package-lock.json
@@ -4806,9 +4806,9 @@
}
},
"@walmart/payrollsolution_miniapp": {
- "version": "0.122.5",
- "resolved": "https://npme.walmart.com/@walmart/payrollsolution_miniapp/-/payrollsolution_miniapp-0.122.5.tgz",
- "integrity": "sha512-x2XK1RPnpamiplT7OsNHx1JJ7eiJRFiUaEnUye92S+ZGnfOED4BTqKD+BdUfNgYOL0ysXwDl8yHgaMqsUzJU3w=="
+ "version": "0.123.0",
+ "resolved": "https://npme.walmart.com/@walmart/payrollsolution_miniapp/-/payrollsolution_miniapp-0.123.0.tgz",
+ "integrity": "sha512-7pbhUKjg0q5B5h2B2rP/IVGvq/Ey6Od9baePuQZZse+U84tXjVwgE/HftzHvdVeqc3xku0UlFpmAceXV5jmHKA=="
},
"@walmart/price-changes-mini-app": {
"version": "1.2.3",
--- package.json
@@ -91,7 +91,7 @@
"@walmart/manager-approvals-miniapp": "0.0.60",
"@walmart/metrics-mini-app": "0.8.1",
"@walmart/moment-walmart": "1.0.4",
- "@walmart/payrollsolution_miniapp": "^0.122.5",
+ "@walmart/payrollsolution_miniapp": "^0.123.0",
"@walmart/price-changes-mini-app": "1.2.3",
"@walmart/profile-feature-app": "0.0.34",
"@walmart/push-to-talk-mini-app": "1.7.12",
| bump version | bump version
|
5adceeaca4230553c9982f65dbb0cd273f8b9bc4 | --- package-lock.json
@@ -92,7 +92,7 @@
"@walmart/schedule-mini-app": "0.93.0",
"@walmart/shelfavailability-mini-app": "1.5.20",
"@walmart/store-feature-orders": "1.26.3",
- "@walmart/taskit-mini-app": "2.64.6",
+ "@walmart/taskit-mini-app": "2.64.8",
"@walmart/time-clock-mini-app": "2.338.1",
"@walmart/topstock-mini-app": "1.7.1",
"@walmart/ui-components": "1.15.9",
@@ -9843,9 +9843,9 @@
}
},
"node_modules/@walmart/taskit-mini-app": {
- "version": "2.64.6",
- "resolved": "https://npme.walmart.com/@walmart/taskit-mini-app/-/taskit-mini-app-2.64.6.tgz",
- "integrity": "sha512-VnrZn3BhtwljR1K9HfD7BAAKkIDbtZCF36OWWdHG+P3Me/OG7rCleSTrAEFxHwvF9Y77TAkDuDjPg+u69oAIKA==",
+ "version": "2.64.8",
+ "resolved": "https://npme.walmart.com/@walmart/taskit-mini-app/-/taskit-mini-app-2.64.8.tgz",
+ "integrity": "sha512-4tWlR5ffA8Wj2iNGxqxABlYe6PihOUtcYWewNRs45WvTZdeJGsBTei2Pq/qVwxDH7pbmrWjfg5rGKmgx1hTPgw==",
"peerDependencies": {
"@terrylinla/react-native-sketch-canvas": "^0.8.0",
"@types/lodash": ">=4.14.176",
@@ -33530,9 +33530,9 @@
"integrity": "sha512-jnAsIoL/X/qtXPA1WHdziTjadPajgfzpdmoScMfTFoi3CTjpcnJ/4JCIPbWAawLNbHMDGBXE6J7Xj9wt/eqcww=="
},
"@walmart/taskit-mini-app": {
- "version": "2.64.6",
- "resolved": "https://npme.walmart.com/@walmart/taskit-mini-app/-/taskit-mini-app-2.64.6.tgz",
- "integrity": "sha512-VnrZn3BhtwljR1K9HfD7BAAKkIDbtZCF36OWWdHG+P3Me/OG7rCleSTrAEFxHwvF9Y77TAkDuDjPg+u69oAIKA=="
+ "version": "2.64.8",
+ "resolved": "https://npme.walmart.com/@walmart/taskit-mini-app/-/taskit-mini-app-2.64.8.tgz",
+ "integrity": "sha512-4tWlR5ffA8Wj2iNGxqxABlYe6PihOUtcYWewNRs45WvTZdeJGsBTei2Pq/qVwxDH7pbmrWjfg5rGKmgx1hTPgw=="
},
"@walmart/tcnumber": {
"version": "2.3.3",
--- package.json
@@ -133,7 +133,7 @@
"@walmart/schedule-mini-app": "0.93.0",
"@walmart/shelfavailability-mini-app": "1.5.20",
"@walmart/store-feature-orders": "1.26.3",
- "@walmart/taskit-mini-app": "2.64.6",
+ "@walmart/taskit-mini-app": "2.64.8",
"@walmart/time-clock-mini-app": "2.338.1",
"@walmart/topstock-mini-app": "1.7.1",
"@walmart/ui-components": "1.15.9",
| Updated taskit version | Updated taskit version
|
167e3ee1824e018a53d99883762ce4a6480b241a | --- packages/allspark-graphql-client/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.1.6](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-graphql-client@1.1.5...@walmart/allspark-graphql-client@1.1.6) (2023-01-26)
+
+**Note:** Version bump only for package @walmart/allspark-graphql-client
+
+
+
+
+
## [1.1.5](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-graphql-client@1.1.4...@walmart/allspark-graphql-client@1.1.5) (2023-01-26)
**Note:** Version bump only for package @walmart/allspark-graphql-client
--- packages/allspark-graphql-client/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/allspark-graphql-client",
- "version": "1.1.5",
+ "version": "1.1.6",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
--- packages/allspark-graphql-client/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/allspark-graphql-client",
- "version": "1.1.5",
+ "version": "1.1.6",
"description": "> TODO: description",
"license": "ISC",
"main": "lib/index.js",
@@ -33,7 +33,7 @@
"dependencies": {
"@apollo/client": "^3.7.3",
"@lifeomic/axios-fetch": "3.0.1",
- "@walmart/allspark-http-client": "^2.2.5",
+ "@walmart/allspark-http-client": "^2.2.6",
"crypto-js": "~4.1.1",
"graphql": "^16.6.0"
},
--- packages/allspark-http-client/CHANGELOG.md
@@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.2.6](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-http-client@2.2.5...@walmart/allspark-http-client@2.2.6) (2023-01-26)
+
+
+### Bug Fixes
+
+* fix handling of interceptors on clone ([6cca61b](https://gecgithub01.walmart.com/allspark/allspark/commit/6cca61b43fc928b5675c02a82d3200df9bab859b))
+
+
+
+
+
## [2.2.5](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-http-client@2.2.4...@walmart/allspark-http-client@2.2.5) (2023-01-26)
--- packages/allspark-http-client/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/allspark-http-client",
- "version": "2.2.5",
+ "version": "2.2.6",
"lockfileVersion": 2,
"requires": true,
"packages": {
--- packages/allspark-http-client/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/allspark-http-client",
- "version": "2.2.5",
+ "version": "2.2.6",
"description": "",
"author": "rlane1 <russell.lane@walmart.com>",
"license": "ISC",
--- packages/core-services-allspark/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.2.6](https://gecgithub01.walmart.com/allspark/allspark-core-services/compare/@walmart/core-services-allspark@2.2.5...@walmart/core-services-allspark@2.2.6) (2023-01-26)
+
+**Note:** Version bump only for package @walmart/core-services-allspark
+
+
+
+
+
## [2.2.5](https://gecgithub01.walmart.com/allspark/allspark-core-services/compare/@walmart/core-services-allspark@2.2.4...@walmart/core-services-allspark@2.2.5) (2023-01-26)
**Note:** Version bump only for package @walmart/core-services-allspark
--- packages/core-services-allspark/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/core-services-allspark",
- "version": "2.2.5",
+ "version": "2.2.6",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
--- packages/core-services-allspark/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/core-services-allspark",
- "version": "2.2.5",
+ "version": "2.2.6",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
@@ -23,9 +23,9 @@
"author": "",
"license": "ISC",
"dependencies": {
- "@walmart/allspark-graphql-client": "^1.1.5",
- "@walmart/allspark-http-client": "^2.2.5",
- "@walmart/core-services": "^2.0.2",
+ "@walmart/allspark-graphql-client": "^1.1.6",
+ "@walmart/allspark-http-client": "^2.2.6",
+ "@walmart/core-services": "^2.0.3",
"@walmart/core-utils": "^1.3.0",
"crypto-js": "~4.1.1",
"jwt-decode": "^3.1.2",
--- packages/core-services/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.0.3](https://gecgithub01.walmart.com/allspark/allspark-core-services/compare/@walmart/core-services@2.0.2...@walmart/core-services@2.0.3) (2023-01-26)
+
+**Note:** Version bump only for package @walmart/core-services
+
+
+
+
+
## [2.0.2](https://gecgithub01.walmart.com/allspark/allspark-core-services/compare/@walmart/core-services@2.0.1...@walmart/core-services@2.0.2) (2023-01-26)
**Note:** Version bump only for package @walmart/core-services
--- packages/core-services/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/core-services",
- "version": "2.0.2",
+ "version": "2.0.3",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
--- packages/core-services/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/core-services",
- "version": "2.0.2",
+ "version": "2.0.3",
"description": "",
"main": "index.js",
"types": "index.d.ts",
@@ -19,7 +19,7 @@
"author": "",
"license": "ISC",
"dependencies": {
- "@walmart/allspark-http-client": "^2.2.5",
+ "@walmart/allspark-http-client": "^2.2.6",
"@walmart/core-utils": "^1.3.0",
"@walmart/redux-store": "3.1.2",
"reduxsauce": "^1.2.1",
| chore(version): updating package version | chore(version): updating package version
- @walmart/allspark-graphql-client@1.1.6
- @walmart/allspark-http-client@2.2.6
- @walmart/core-services@2.0.3
- @walmart/core-services-allspark@2.2.6
|
4957810833b2a2853b4d8f59fc9fbc6554d6b218 | --- packages/associate-exp-hub-mini-app/src/Translations/locales/en-US.json
@@ -10,3 +10,4 @@
"hub.title": "Associate Experience",
"screen.title": "Associate Experience"
}
+
| feat: update translations | feat: update translations
|
3b80a87e89cc3aca3e3b742c674263ae9cf48d16 | --- packages/allspark-foundation/src/GlobalElements/context.tsx
@@ -225,10 +225,16 @@ export const createGlobalElement = (
// Apply minimum insets if provided
const insetStyle = {
- marginTop: Math.max(insets?.top || 0, minInsets?.top || 0) + safeAreaInsets.top,
- marginBottom: Math.max(insets?.bottom || 0, minInsets?.bottom || 0) + safeAreaInsets.bottom,
- marginLeft: Math.max(insets?.left || 0, minInsets?.left || 0) + safeAreaInsets.left,
- marginRight: Math.max(insets?.right || 0, minInsets?.right || 0) + safeAreaInsets.right,
+ marginTop:
+ Math.max(insets?.top || 0, minInsets?.top || 0) + safeAreaInsets.top,
+ marginBottom:
+ Math.max(insets?.bottom || 0, minInsets?.bottom || 0) +
+ safeAreaInsets.bottom,
+ marginLeft:
+ Math.max(insets?.left || 0, minInsets?.left || 0) + safeAreaInsets.left,
+ marginRight:
+ Math.max(insets?.right || 0, minInsets?.right || 0) +
+ safeAreaInsets.right,
};
// Split style properties - position-related properties go to outer component
| chore: lint | chore: lint
|
5742279baef13029efc73cef091c6d4ec3370da2 | --- packages/allspark-foundation/__tests__/Feature/AllsparkFeature.test.tsx
@@ -1,11 +1,6 @@
import { AllsparkFeature } from '../../src/Feature/AllsparkFeature';
import { AllsparkHttpClient } from '../../src/HTTP';
-jest.mock('../../HTTP');
-jest.mock('../../GraphQL');
-jest.mock('../../Logger');
-jest.mock('../../Translation');
-
describe('AllsparkFeature', () => {
let feature: AllsparkFeature<'testFeature'>;
@@ -17,7 +12,7 @@ describe('AllsparkFeature', () => {
jest.clearAllMocks();
});
- it('should create an HTTP client', () => {
+ it('create an HTTP client', () => {
const config = { baseURL: 'https://api.com' };
const createFeatureClientMock = jest.fn();
AllsparkHttpClient.createFeatureClient = createFeatureClientMock;
@@ -25,7 +20,7 @@ describe('AllsparkFeature', () => {
expect(createFeatureClientMock).toHaveBeenCalledWith('testFeature', config);
});
- it('should create a GraphQL client', () => {
+ it('create a GraphQL client', () => {
const config = { uri: 'https://graphql.com' };
const results = feature.createGraphQLClient(config);
expect(results.featureId).toBe('testFeature');
@@ -48,13 +43,13 @@ describe('AllsparkFeature', () => {
}),
});
});
- it('should create a reducer from a function', () => {
+ it('create a reducer from a function', () => {
const reducer = jest.fn();
const createdReducer = feature.createReducer(reducer);
expect(createdReducer).toBe(reducer);
});
- it('should create a reducer from a map of reducers', () => {
+ it('create a reducer from a map of reducers', () => {
const slice1Reducer = jest.fn();
const slice2Reducer = jest.fn();
const reducersMap = {
@@ -65,25 +60,25 @@ describe('AllsparkFeature', () => {
expect(typeof combinedReducer).toBe('function');
});
- it('should create a saga function', () => {
+ it('create a saga function', () => {
const saga = jest.fn();
const createdSaga = feature.createSaga(saga);
expect(typeof createdSaga).toBe('function');
});
- it('should handle an empty array of sagas', () => {
+ it('handle an empty array of sagas', () => {
const createdSaga = feature.createSaga([]);
const generator = createdSaga();
expect(generator).toBeInstanceOf(Object);
expect(generator.next().done).toBe(false);
expect(generator.next().value).toBeUndefined();
});
- it('should create a module once and return the same instance', () => {
+ it('create a module once and return the same instance', () => {
const config = { modals: {}, screens: {} };
const module1 = feature.createModule(config);
const module2 = feature.createModule(config);
expect(module1).toBe(module2);
});
- it('should log a warning if createModule is called multiple times', () => {
+ it('log a warning if createModule is called multiple times', () => {
const config = { modals: {}, screens: {} };
const warnSpy = jest.spyOn(console, 'warn').mockImplementation(() => {});
feature.createModule(config);
@@ -92,7 +87,7 @@ describe('AllsparkFeature', () => {
`AllsparkFeature(testFeature).createModule called multiple times. A feature module shoud only be created once. All subsequent calls will be ignored.`
);
});
- it('should create a screen with the provided component and config', () => {
+ it('create a screen with the provided component and config', () => {
const mockComponent = jest.fn() as unknown as AllsparkScreenComponent<any, any>;
const mockConfig = { optionA: true, optionB: false };
const result = feature.createScreen(mockComponent, mockConfig);
@@ -103,7 +98,7 @@ describe('AllsparkFeature', () => {
expect(result.getComponent()).toBe(mockComponent);
});
- it('should create a screen with only the provided component if config is not passed', () => {
+ it('create a screen with only the provided component if config is not passed', () => {
const mockComponent = jest.fn() as unknown as AllsparkScreenComponent<any, any>;
const result = feature.createScreen(mockComponent);
expect(result).toEqual({
| code cleanup | code cleanup
|
61d3bc24743098e6ecbcb2a70f45b6f9c85d3071 | --- ios/AllSpark.xcodeproj/project.pbxproj
@@ -540,7 +540,7 @@
isa = XCBuildConfiguration;
baseConfigurationReference = D994751F557438D6B85DBCC2 /* Pods-AllSpark.debug.xcconfig */;
buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-Dev";
+ ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-Teflon";
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = AllSpark/AllSpark.entitlements;
@@ -586,7 +586,7 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 99D7C873A014A98046591001 /* Pods-AllSpark.release.xcconfig */;
buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-Dev";
+ ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-Teflon";
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = AllSpark/AllSpark.entitlements;
--- ios/AllSpark/Info.plist
@@ -134,7 +134,7 @@
<string>remote-notification</string>
</array>
<key>UILaunchStoryboardName</key>
- <string>LaunchScreen-Dev</string>
+ <string>LaunchScreen-Teflon</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
| Adding teflon UI launchscreen | Adding teflon UI launchscreen
|
bc44fe2d76d0311c26f1133c737a8acbd318b4e6 | --- package.json
@@ -136,7 +136,7 @@
"@walmart/react-native-store-map": "0.3.7",
"@walmart/react-native-sumo-sdk": "2.7.0",
"@walmart/react-native-webex-sdk": "0.2.11",
- "@walmart/receipt-check-miniapp": "1.23.3",
+ "@walmart/receipt-check-miniapp": "1.23.4",
"@walmart/redux-store": "6.1.4",
"@walmart/returns-mini-app": "4.6.0",
"@walmart/rfid-scan-mini-app": "2.3.16",
--- yarn.lock
@@ -6971,9 +6971,9 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/receipt-check-miniapp@npm:1.23.3":
- version: 1.23.3
- resolution: "@walmart/receipt-check-miniapp@npm:1.23.3"
+"@walmart/receipt-check-miniapp@npm:1.23.4":
+ version: 1.23.4
+ resolution: "@walmart/receipt-check-miniapp@npm:1.23.4"
dependencies:
"@walmart/tcnumber": "npm:^2.3.3"
"@xstate/react": "npm:^3.0.1"
@@ -6984,7 +6984,7 @@ __metadata:
xstate: "npm:^4.32.1"
peerDependencies:
"@walmart/allspark-foundation": "*"
- checksum: 10c0/c775536f8bede0bcdc643e16f982fae9152c266b7bc1c1f9fc022785dd33dd1defbca5dfa876bcb28498aedb9dd5255d3fd64eccc23947a4c2e330f90a7e3bfe
+ checksum: 10c0/e83837597fa6a0d13d2fa20f9c64137f52f2174fd7f0aa8babaa2f798e13897ce433f098c43cb21a64c4e643e052df9fe1acd4b2a2b085338dd6bfc0c3193b7d
languageName: node
linkType: hard
@@ -7874,7 +7874,7 @@ __metadata:
"@walmart/react-native-store-map": "npm:0.3.7"
"@walmart/react-native-sumo-sdk": "npm:2.7.0"
"@walmart/react-native-webex-sdk": "npm:0.2.11"
- "@walmart/receipt-check-miniapp": "npm:1.23.3"
+ "@walmart/receipt-check-miniapp": "npm:1.23.4"
"@walmart/redux-store": "npm:6.1.4"
"@walmart/returns-mini-app": "npm:4.6.0"
"@walmart/rfid-scan-mini-app": "npm:2.3.16"
| update | update
|
fae916551b66b7ac889c5bd99b4d41070a0c95df | --- README.md
@@ -89,7 +89,7 @@ yarn run:android
Variant and Target are specified through the process variables `APP_VARIANT` and `TARGET`:
```bash
-EXPO_PUBLIC_APP_VARIANT=dev TARGET=US yarn run <command>
+yarn run prebuild --> <select app varient you want to run> ; yarn run:android or yarn run:ios
```
Predefined commands will prompt for these values when required. Once these variables are set they are stored locally in a `build.context.json` file for use in subsequent commands.
--- package.json
@@ -134,7 +134,7 @@
"@walmart/react-native-barcode-builder": "^1.0.1",
"@walmart/react-native-cookies": "1.0.1",
"@walmart/react-native-encrypted-storage": "~1.1.3",
- "@walmart/react-native-logger": "1.37.0",
+ "@walmart/react-native-logger": "1.38.0",
"@walmart/react-native-scanner-3.0": "0.14.10",
"@walmart/react-native-shared-navigation": "~6.3.28",
"@walmart/react-native-store-map": "0.3.7",
--- yarn.lock
@@ -7475,7 +7475,7 @@ __metadata:
"@walmart/react-native-barcode-builder": "npm:^1.0.1"
"@walmart/react-native-cookies": "npm:1.0.1"
"@walmart/react-native-encrypted-storage": "npm:~1.1.3"
- "@walmart/react-native-logger": "npm:1.37.0"
+ "@walmart/react-native-logger": "npm:1.38.0"
"@walmart/react-native-scanner-3.0": "npm:0.14.10"
"@walmart/react-native-shared-navigation": "npm:~6.3.28"
"@walmart/react-native-store-map": "npm:0.3.7"
@@ -7963,14 +7963,14 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/react-native-logger@npm:1.37.0":
- version: 1.37.0
- resolution: "@walmart/react-native-logger@npm:1.37.0::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Freact-native-logger%2F-%2F%40walmart%2Freact-native-logger-1.37.0.tgz"
+"@walmart/react-native-logger@npm:1.38.0":
+ version: 1.38.0
+ resolution: "@walmart/react-native-logger@npm:1.38.0::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Freact-native-logger%2F-%2F%40walmart%2Freact-native-logger-1.38.0.tgz"
peerDependencies:
lodash: ^4.17.21
react: "*"
react-native: "*"
- checksum: 10c0/53b7d17c41f22549287254785295d6a5eb303af58d31f1bbeac3822b5a7d0de13438068d92bfaabbe0782761700d555835935340181aaef63655cd6d0d6372c6
+ checksum: 10c0/9ab2c67704672c4b8fe7f4dbb4d655279e3a45352611644fa72a9851108d47dff7e9c434dea72c3e7ca01e0454b0a1b4923a21bd6e0838181687a26a41436e92
languageName: node
linkType: hard
| fix: update RN logger version and README.md (#4372) | fix: update RN logger version and README.md (#4372)
|
e7a6dcf51bf392193b465d40020a74d261c808df | --- __tests__/navigation/AssociateHallwayNav/SideMenuContentTest.tsx
@@ -60,12 +60,22 @@ const clockState: ClockStatusState = {
loaded: false,
error: false,
};
-
+// TODO: revert - same as develop branch
const navConfig = [
+ {
+ menuType: 'SUBMENU',
+ icon: 'barcode',
+ title: 'menu.itemInfo',
+ enabled: true,
+ action: {
+ type: 'NAVIGATE',
+ value: 'itemInfo',
+ },
+ },
{
menuType: 'SUBMENU',
icon: 'settings',
- title: 'Settings',
+ title: 'menu.settings',
enabled: true,
action: {
type: 'NAVIGATE',
@@ -75,13 +85,23 @@ const navConfig = [
{
menuType: 'SUBMENU',
icon: 'feedback',
- title: 'Give feedback',
+ title: 'menu.feedback',
enabled: true,
action: {
type: 'NAVIGATE',
value: 'Feedback',
},
},
+ {
+ menuType: 'SUBMENU',
+ icon: 'rocket',
+ title: 'menu.whatsNew',
+ enabled: true,
+ action: {
+ type: 'NAVIGATE',
+ value: 'WhatsNew',
+ },
+ },
];
const setShowDialog = jest.fn();
--- __tests__/navigation/AssociateHallwayNav/__snapshots__/SideMenuContentTest.tsx.snap
@@ -17,6 +17,16 @@ exports[`SideMenuContent matches snapshot for undefined user info, and can imper
enableDevelopersOption={true}
globalNavConfig={
Array [
+ Object {
+ "action": Object {
+ "type": "NAVIGATE",
+ "value": "itemInfo",
+ },
+ "enabled": true,
+ "icon": "barcode",
+ "menuType": "SUBMENU",
+ "title": "menu.itemInfo",
+ },
Object {
"action": Object {
"type": "NAVIGATE",
@@ -25,7 +35,7 @@ exports[`SideMenuContent matches snapshot for undefined user info, and can imper
"enabled": true,
"icon": "settings",
"menuType": "SUBMENU",
- "title": "Settings",
+ "title": "menu.settings",
},
Object {
"action": Object {
@@ -35,7 +45,17 @@ exports[`SideMenuContent matches snapshot for undefined user info, and can imper
"enabled": true,
"icon": "feedback",
"menuType": "SUBMENU",
- "title": "Give feedback",
+ "title": "menu.feedback",
+ },
+ Object {
+ "action": Object {
+ "type": "NAVIGATE",
+ "value": "WhatsNew",
+ },
+ "enabled": true,
+ "icon": "rocket",
+ "menuType": "SUBMENU",
+ "title": "menu.whatsNew",
},
]
}
| revert to default | revert to default
|
a304f5d07280450afbe109f2b54aa10faa3d3de5 | --- package-lock.json
@@ -76,7 +76,7 @@
"@walmart/react-native-sumo-sdk": "2.5.1",
"@walmart/receipt-check-miniapp": "1.13.5",
"@walmart/redux-store": "3.3.1",
- "@walmart/returns-mini-app": "1.5.0",
+ "@walmart/returns-mini-app": "1.7.0",
"@walmart/schedule-mini-app": "0.37.0",
"@walmart/settings-mini-app": "1.18.1",
"@walmart/shelfavailability-mini-app": "1.5.16",
@@ -5856,7 +5856,9 @@
}
},
"node_modules/@walmart/returns-mini-app": {
- "version": "1.5.0",
+ "version": "1.7.0",
+ "resolved": "https://npme.walmart.com/@walmart/returns-mini-app/-/returns-mini-app-1.7.0.tgz",
+ "integrity": "sha512-5y+LANAovCVHUDbMnA9e56qpHXuuCfCH/4g2iV+lyVaz8y3HzGU6A7+TsbDRajdk/+GPlQa6mSNiATBgF8cceA==",
"hasInstallScript": true,
"dependencies": {
"@walmart/common-utilities-js": "^1.2.10",
@@ -5864,16 +5866,17 @@
"react-native-html-parser": "^0.1.0"
},
"peerDependencies": {
- "@react-native-community/async-storage": "^1.11.0",
+ "@react-native-async-storage/async-storage": "$@react-native-async-storage/async-storage",
"@react-navigation/native": "^5.7.3",
"@react-navigation/stack": "^5.9.0",
- "@walmart/core-services": "0.1.34",
+ "@walmart/core-services": "$@walmart/core-services",
+ "@walmart/core-services-allspark": "$@walmart/core-services-allspark",
"@walmart/functional-components": "^1.0.27",
"@walmart/gtp-shared-components": "^2.0.6",
"@walmart/react-native-logger": "1.31.0-rc.1",
- "@walmart/react-native-scanner-3.0": "0.1.24",
+ "@walmart/react-native-scanner-3.0": "0.3.0",
"@walmart/react-native-shared-navigation": "^0.2.0",
- "@walmart/redux-store": "^2.0.4",
+ "@walmart/redux-store": "$@walmart/redux-store",
"big-integer": "^1.6.51",
"cpc-input": "^1.7.28",
"promise.allsettled": "^1.0.6",
@@ -25353,7 +25356,9 @@
}
},
"@walmart/returns-mini-app": {
- "version": "1.5.0",
+ "version": "1.7.0",
+ "resolved": "https://npme.walmart.com/@walmart/returns-mini-app/-/returns-mini-app-1.7.0.tgz",
+ "integrity": "sha512-5y+LANAovCVHUDbMnA9e56qpHXuuCfCH/4g2iV+lyVaz8y3HzGU6A7+TsbDRajdk/+GPlQa6mSNiATBgF8cceA==",
"requires": {
"@walmart/common-utilities-js": "^1.2.10",
"@walmart/virtual-zpl-printer-model": "^0.2.11",
--- package.json
@@ -118,7 +118,7 @@
"@walmart/react-native-sumo-sdk": "2.5.1",
"@walmart/receipt-check-miniapp": "1.13.5",
"@walmart/redux-store": "3.3.1",
- "@walmart/returns-mini-app": "1.5.0",
+ "@walmart/returns-mini-app": "1.7.0",
"@walmart/schedule-mini-app": "0.37.0",
"@walmart/settings-mini-app": "1.18.1",
"@walmart/shelfavailability-mini-app": "1.5.16",
| Update to returns-mini-app 1.7.0 | Update to returns-mini-app 1.7.0
|
7556d842310a9481a2b12a1826825d433f8313f6 | --- .looper.multibranch.yml
@@ -24,7 +24,7 @@ envs:
ANDROID_BASE_PATH: targets/US/android
branches:
- - spec: feature/drop24
+ - spec: feature/TimeClockDrop24
triggers:
- manual:
name: Publish Packages (Pre-Release)
| Update looper to find our branch | Update looper to find our branch
|
191ae06a9d55c6590f0aec3b28b4a890535b91b3 | --- packages/celebration-mini-app/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.19.0](https://gecgithub01.walmart.com/smdv/celebration-mini-app/compare/@walmart/celebration-mini-app@1.18.0...@walmart/celebration-mini-app@1.19.0) (2025-11-04)
+
+### Features
+
+- **ui:** update the react native, LD 3.5 packages ([e1aaad8](https://gecgithub01.walmart.com/smdv/celebration-mini-app/commit/e1aaad807d7965e4f67c081b1a022dcdd28051cc))
+
# [1.18.0](https://gecgithub01.walmart.com/smdv/celebration-mini-app/compare/@walmart/celebration-mini-app@1.17.0...@walmart/celebration-mini-app@1.18.0) (2025-11-04)
### Features
--- packages/celebration-mini-app/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/celebration-mini-app",
- "version": "1.18.0",
+ "version": "1.19.0",
"packageManager": "yarn@4.6.0",
"engines": {
"node": ">=18"
| chore(version): updating package version | chore(version): updating package version
- @walmart/celebration-mini-app@1.19.0
|
c694b92e65ce9259d3ca2f729a8141d83173c652 | --- packages/allspark-foundation/src/HTTP/client.ts
@@ -404,9 +404,13 @@ export class HttpClient extends Axios {
public useLazyRequest = <D extends any>(
config: HttpClientRequestConfig<D>
) => {
- return useLazyAsync((c: HttpClientRequestConfig<D>) =>
- this.request<D>(c || config)
- );
+ return useLazyAsync((c: HttpClientRequestConfig<D>) => {
+ const mergedConfig =
+ c && typeof c === 'object' && typeof config === 'object'
+ ? { ...config, ...c }
+ : c || config;
+ return this.request<D>(mergedConfig);
+ });
};
/**
--- packages/allspark-utils/src/hooks/useAsync.ts
@@ -138,7 +138,16 @@ export const useAsync = <
const [fetch, state] = useLazyAsync<P, A, T>(promise);
const reload = useCallback(
- (param: A) => fetch(param || initialParams),
+ (param: A) => {
+ const mergedParams =
+ typeof initialParams === 'object' &&
+ typeof param === 'object' &&
+ initialParams !== null &&
+ param !== null
+ ? ({ ...initialParams, ...param } as A)
+ : param || initialParams;
+ return fetch(mergedParams);
+ },
// eslint-disable-next-line react-hooks/exhaustive-deps
[]
);
| fix: merge config | fix: merge config
|
9c702805101bcf2add66ced31f4f7c06cd1e539f | --- src/components/modals/hoc/UpdateModal.tsx
@@ -130,6 +130,7 @@ const UpdateModal = AssociateExpHubFeature.createModal(
);
// Effect to set the primary team in savedTeamSelection if nothing is selected
+ // TODO: this is upserting on each render, logic needs to be reworked
useEffect(() => {
if (
!selectedSavedTeamItem &&
| feat(ui): added todo to a useeffect call #SMDV-8130 | feat(ui): added todo to a useeffect call #SMDV-8130
|
e4b59f413fdff3821f66f9a4cf55a3c319b12f78 | --- src/screens/RosterDetailScreen/SupplyChainRosterDetailScreen.tsx
@@ -8,7 +8,6 @@ import {
TOTAL_SITE_TEAM_LABEL,
TOTAL_SITE_TEAM_ID,
useUserCanSeeHub,
- useGetSupplyChainShifts,
} from '@walmart/allspark-foundation-hub';
import {RosterDetailPageHeader} from '../../components/RosterDetailPageHeader';
import {RosterFiltersAndInfo} from '../../components/RosterFiltersAndInfo';
@@ -167,7 +166,6 @@ export const SupplyChainRosterDetailScreen = ({
error: shiftsError,
refetch: refetchShifts,
} = useSupplyChainShifts();
- const {allShifts} = useGetSupplyChainShifts();
const {data: allTeamsData} = useSupplyChainTeamsByBusinessUnit();
const dataLoading = teamLoading || rosterLoading || shiftsLoading;
| Update navigation changes | Update navigation changes
|
9379fe8f4c4d85866a4692f06d2737c02686dd04 | --- .looper.yml
@@ -16,11 +16,8 @@ flows:
default:
- call: pr
- yarn run build
- - yarn publish
- - sonar("Sonar"):
- - (name Sonar Scanner) sonar-scanner -Dproject.settings=sonar-project.properties
- - (name Publish Hygieia to Sonar) hygieia.publishSonar()
- - (name Hygieia Publish Build) hygieia.publishBuild()
+ - (name Publish All) HUSKY=0 npx lerna publish --registry ${REPOSOLNS_NPM_REPO} --yes --force-publish
+
pr:
- (name Corepack enable) corepack enable
| feat(ui): update associate exp hub version | feat(ui): update associate exp hub version
|
b4611fdad0b5fb74e7f7362b3bdc7ed0017a68af | --- packages/celebration-mini-app-graphql/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.28.5](https://gecgithub01.walmart.com/smdv/celebration-mini-app/compare/@walmart/celebration-mini-app-graphql@1.28.4...@walmart/celebration-mini-app-graphql@1.28.5) (2025-12-19)
+
+**Note:** Version bump only for package @walmart/celebration-mini-app-graphql
+
## [1.28.4](https://gecgithub01.walmart.com/smdv/celebration-mini-app/compare/@walmart/celebration-mini-app-graphql@1.28.3...@walmart/celebration-mini-app-graphql@1.28.4) (2025-12-19)
**Note:** Version bump only for package @walmart/celebration-mini-app-graphql
--- packages/celebration-mini-app-graphql/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/celebration-mini-app-graphql",
- "version": "1.28.4",
+ "version": "1.28.5",
"packageManager": "yarn@4.6.0",
"engines": {
"node": ">=18"
--- packages/celebration-mini-app/CHANGELOG.md
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [1.40.0](https://gecgithub01.walmart.com/smdv/celebration-mini-app/compare/@walmart/celebration-mini-app@1.39.1...@walmart/celebration-mini-app@1.40.0) (2025-12-19)
+
+### Features
+
+- **ui:** update timeout changes for celebration query ([efbdb6b](https://gecgithub01.walmart.com/smdv/celebration-mini-app/commit/efbdb6b23c96d737f13d1b3026878428fda42ea9))
+- **ui:** update timeout changes for celebration query ([2f6378b](https://gecgithub01.walmart.com/smdv/celebration-mini-app/commit/2f6378bb220d22edd63586210b44dff9ac6024b9))
+
## [1.39.1](https://gecgithub01.walmart.com/smdv/celebration-mini-app/compare/@walmart/celebration-mini-app@1.39.0...@walmart/celebration-mini-app@1.39.1) (2025-12-19)
**Note:** Version bump only for package @walmart/celebration-mini-app
--- packages/celebration-mini-app/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/celebration-mini-app",
- "version": "1.39.1",
+ "version": "1.40.0",
"packageManager": "yarn@4.6.0",
"engines": {
"node": ">=18"
| chore(version): updating package version | chore(version): updating package version
- @walmart/celebration-mini-app@1.40.0
- @walmart/celebration-mini-app-graphql@1.28.5
|
15581e32afc4b71e12d9886804bb9df5ec162ce1 | --- __tests__/rbacConfig/RbacSagasTest.tsx
@@ -95,7 +95,7 @@ describe('onRbacRequest', () => {
it('watchForRbacRequest', () => {
const iterator = watchForRbacRequest();
expect(iterator.next().value).toEqual(
- all([takeLatest(['POLICY_LOADED'], onRbacRequest)]),
+ all([takeLatest(['POLICY_SUCCESS'], onRbacRequest)]),
);
expect(iterator.next().done).toEqual(true);
});
--- src/rbacConfig/RbacSagas.tsx
@@ -8,6 +8,7 @@ import {createRestartableSagas, getRbacEnabledApps} from '../redux';
export function* onRbacRequest(): any {
try {
+ //rbacEnabledApps data from ccm
const rbacEnabledApps = yield select(getRbacEnabledApps);
//rbac data from rma
@@ -32,7 +33,7 @@ export function* onRbacRequest(): any {
export function* watchForRbacRequest() {
yield all(
- createRestartableSagas([takeLatest(['POLICY_LOADED'], onRbacRequest)]),
+ createRestartableSagas([takeLatest(['POLICY_SUCCESS'], onRbacRequest)]),
);
}
| Action name changed from POLIC_LOADED to POLICY_SUCCESS | Action name changed from POLIC_LOADED to POLICY_SUCCESS
|
0f91ea6a8e4d670aca69e575942b4092e5ca2735 | --- __tests__/core/storeConfigInitTest.ts
@@ -1,15 +1,11 @@
-import {all, call, select, takeLatest} from 'redux-saga/effects';
+import {all, call, select, takeLeading} from 'redux-saga/effects';
import {
onUserChanged,
storeSagas,
initStoreConfig,
} from '../../src/core/storeConfigInit';
-import {
- getOriginalSite,
- getSiteConfigId,
- USER_CHANGED_ACTIONS,
-} from '../../src/redux';
+import {getOriginalSite, USER_CHANGED_ACTIONS} from '../../src/redux';
jest.mock('@walmart/config-components', () => ({
StoreConfig: {
@@ -78,20 +74,11 @@ describe('onUserChanged', () => {
expect(iterator.next(originalSite).done).toBe(true);
});
- it('handles siteid matching current site config', () => {
- originalSite = '100';
- const iterator = onUserChanged();
- expect(iterator.next().value).toEqual(select(getOriginalSite));
- expect(iterator.next(originalSite).value).toEqual(select(getSiteConfigId));
- expect(iterator.next(originalSite).done).toBe(true);
- });
-
it('handles success', () => {
originalSite = '100';
const iterator = onUserChanged();
expect(iterator.next().value).toEqual(select(getOriginalSite));
- expect(iterator.next(originalSite).value).toEqual(select(getSiteConfigId));
- expect(iterator.next(undefined).value).toEqual(
+ expect(iterator.next(originalSite).value).toEqual(
call(storeConfigActions.storeConfigProgress),
);
expect(iterator.next().value).toEqual(call(StoreConfig.get, originalSite));
@@ -105,8 +92,7 @@ describe('onUserChanged', () => {
originalSite = '100';
const iterator = onUserChanged();
expect(iterator.next().value).toEqual(select(getOriginalSite));
- expect(iterator.next(originalSite).value).toEqual(select(getSiteConfigId));
- expect(iterator.next('').value).toEqual(
+ expect(iterator.next(originalSite).value).toEqual(
call(storeConfigActions.storeConfigProgress),
);
expect(iterator.next().value).toEqual(call(StoreConfig.get, originalSite));
@@ -122,7 +108,7 @@ describe('storeSagas', () => {
it('sets up watchers and otherwise inits sagas', () => {
const iterator = storeSagas();
expect(iterator.next().value).toEqual(
- all([takeLatest(USER_CHANGED_ACTIONS, onUserChanged)]),
+ all([takeLeading(USER_CHANGED_ACTIONS, onUserChanged)]),
);
expect(iterator.next().done).toEqual(true);
});
--- __tests__/redux/SharedSelectorsTest.ts
@@ -8,7 +8,6 @@ import {
getSiteConfig,
getSiteConfigLoaded,
getSiteConfigData,
- getSiteConfigId,
getSiteConfigCountry,
getSiteConfigDivision,
getSiteConfigDivisonCode,
@@ -203,18 +202,6 @@ describe('shared selelctors', () => {
});
});
- describe('getSiteConfigId', () => {
- it('returns expected value', () => {
- const siteId = getSiteConfigId(appState);
- expect(siteId).toEqual(siteConfigState.data.siteId);
- });
-
- it('handles undefined data', () => {
- const siteId = getSiteConfigId(nullSiteStateData);
- expect(siteId).toEqual(undefined);
- });
- });
-
describe('getSiteConfigDivision', () => {
it('returns expected value', () => {
const division = getSiteConfigDivision(appState);
--- src/core/storeConfigInit.ts
@@ -1,14 +1,14 @@
-import {takeLatest, all, call, select} from 'redux-saga/effects';
+import {all, call, select, takeLeading} from 'redux-saga/effects';
import {StoreConfig} from '@walmart/config-components';
import {addSagas, Site, storeConfigActions} from '@walmart/redux-store';
import env from '../../env';
import {
createRestartableSagas,
getOriginalSite,
- getSiteConfigId,
USER_CHANGED_ACTIONS,
} from '../redux';
+console.log('INIT STORE CONFIG');
StoreConfig.initialize({
baseURL: `${env.externalBffUrl}${env.bffService}`,
timeout: 5000,
@@ -21,25 +21,20 @@ export function* onUserChanged() {
const originalSite: string = yield select(getOriginalSite);
if (originalSite && parseInt(originalSite, 10)) {
- const currentSite: number = yield select(getSiteConfigId);
- if (originalSite !== String(currentSite)) {
- yield call(storeConfigActions.storeConfigProgress);
- try {
- const storeConfig: Site = yield call(
- StoreConfig.get,
- `${originalSite}`,
- );
- yield call(storeConfigActions.storeConfigSuccess, storeConfig);
- } catch (err) {
- yield call(storeConfigActions.storeConfigError, err);
- }
+ yield call(storeConfigActions.storeConfigProgress);
+ try {
+ console.log('FETCHING STORE CONFIG', originalSite);
+ const storeConfig: Site = yield call(StoreConfig.get, `${originalSite}`);
+ yield call(storeConfigActions.storeConfigSuccess, storeConfig);
+ } catch (err) {
+ yield call(storeConfigActions.storeConfigError, err);
}
}
}
export function* storeSagas() {
yield all(
- createRestartableSagas([takeLatest(USER_CHANGED_ACTIONS, onUserChanged)]),
+ createRestartableSagas([takeLeading(USER_CHANGED_ACTIONS, onUserChanged)]),
);
}
--- src/redux/SharedSelectors.ts
@@ -66,11 +66,6 @@ export const getSiteConfigData = createSelector(
(state) => state.data,
);
-export const getSiteConfigId = createSelector(
- [getSiteConfigData],
- (data) => data?.siteId,
-);
-
export const getSiteConfigCountry = createSelector(
[getSiteConfigData],
(data) => data?.country || '',
| Updating store config fetch logic | Updating store config fetch logic
|
c8e189b2158f5c5fb891b9d8bad1488e1fb43dd5 | --- __tests__/components/NewMessageHeader.test.tsx
@@ -1,5 +1,4 @@
import {fireEvent, render} from '@testing-library/react-native';
-import {NavigationModule} from '@walmart/allspark-foundation';
import React from 'react';
import {MessagesHeader, NewMessageHeader} from '../../src/components';
import {analytics} from '../../src/logger/Analytics';
--- src/hooks/useModalGuard.ts
@@ -38,8 +38,8 @@ export const useModalGuard = (modalName?: string, cooldownMs: number = 500) => {
const guardedOpenModal = useCallback(
(openModalFn: () => void) => {
const guardKey = modalName || 'default';
- const isGuarded = modalName
- ? modalGuards.get(guardKey)
+ const isGuarded = modalName
+ ? modalGuards.get(guardKey)
: componentGuardRef.current;
if (isGuarded) {
--- src/navigation/utils.ts
@@ -74,7 +74,7 @@ export const navigateToMessageScreen = (
// Check if we're currently in a MessageScreen modal
const currentRoute = NavigationModule.manager.getCurrentRouteName();
const isInMessageScreen = currentRoute === 'wmConnect.MessageScreen';
-
+
const openNewMessageScreen = () => {
hideParentScreenAccessibility();
NavigationModule.manager.openModal('wmConnect.MessageScreen' as any, {
@@ -96,7 +96,7 @@ export const navigateToMessageScreen = (
openNewMessageScreen();
}
};
-
+
if (guardedOpenModal) {
guardedOpenModal(openModal);
} else {
| feat(ui): update tests and lint changes | feat(ui): update tests and lint changes
|
6438872e92ad9301df38abb455ca6681527d5e70 | --- packages/allspark-foundation/src/Feature/AllsparkFeatureModule.tsx
@@ -427,7 +427,7 @@ export class AllsparkFeatureModule<
this._connectedMap.translations = true;
Object.keys(translations).forEach((language) => {
- AllsparkTranslationClient.addResources(
+ AllsparkTranslationClient.addResourceBundle(
language,
this.id,
translations[language]
| fix: feature used add resources rather than add resource bundle method for translations | fix: feature used add resources rather than add resource bundle method for translations
|
16caae64b0c4b0ee2b0cd310a4285cc30eaa3195 | --- docs/docs/components/hub framework/hub-intro.md
@@ -51,6 +51,11 @@ npm install --save @walmart/allspark-foundation-hub
There are no dependencies required. The above are the only steps required to get going.
+### Current version
+```bash
+"@walmart/allspark-foundation-hub": "1.0.1-beta.4"
+```
+
### For Hub GateKeepers
Before diving into the setup process, it's essential to understand the underlying concepts that power our hub framework. Take some time to review the [Hub Concepts](./hub-concepts.md) documentation to ensure you have a solid grasp of the framework's capabilities.
--- docs/docs/components/hub framework/hub-team-switcher.md
@@ -93,10 +93,12 @@ To interact with these actions and selectors, you can use the following function
- `ManagerExperienceSelectors.updateSelectedTeamPreference`: Updates associate team preference in the
store. + **Note:** This action is private and should not be accessed directly by
other modules.
-- `ManagerExperienceSelectors.updateSelectedTeamData`: Updates the Redux store with selected team
- data. + **Note:** This action is also private to ensure consistency in team
+- `ManagerExperienceSelectors.updateSelectedTeamIDs`: Updates the Redux store with selected team
+ ids. + **Note:** This action is also private to ensure consistency in team
switcher behavior.
- `ManagerExperienceSelectors.getSelectedTeamPreference`: Retrieves the currently selected team. + **Public selector:** Accessible for use by other modules and
components.
+ - `ManagerExperienceSelectors.getSelectedTeamIDs`: Retrieves the currently selected team ids. + **Public selector:** Accessible for use by other modules and
+ components.
This documentation outlines the Team Switcher component's functionality, error handling, features, properties, methods, and redux operations. The Team Switcher provides a flexible and context-aware solution for managing team preferences across mini-apps.
| Update the components for doc | Update the components for doc
|
e73fe9a3b169a165912c29f2b56b79db9c466668 | --- packages/allspark-foundation-hub/src/SupplyChain/Utils/utils.ts
@@ -22,8 +22,6 @@ export const customSorter = <T>(objA: T, objB: T, key: keyof T): number => {
}
};
export const trimToFortyCharacters = (text: string | null | undefined) => {
- if (!text) {
- return '';
- }
+return text?.slice(0, 40) || '';
return text.slice(0, 40);
};
| Update packages/allspark-foundation-hub/src/SupplyChain/Utils/utils.ts | Update packages/allspark-foundation-hub/src/SupplyChain/Utils/utils.ts
Co-authored-by: AI Code Assistant <AI-Code-Assistant@email.wal-mart.com> |
a602167755b1eb8d3d0359dd54252a517ab102e4 | --- packages/celebration-mini-app-graphql/CHANGELOG.md
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [1.22.0](https://gecgithub01.walmart.com/smdv/celebration-mini-app/compare/@walmart/celebration-mini-app-graphql@1.21.0...@walmart/celebration-mini-app-graphql@1.22.0) (2025-11-28)
+
+### Features
+
+- **ui:** lint fixes ([a7fb811](https://gecgithub01.walmart.com/smdv/celebration-mini-app/commit/a7fb811bf70fdb5ac67d38e0bee1441c1006a2b2))
+- **ui:** update tests ([5438305](https://gecgithub01.walmart.com/smdv/celebration-mini-app/commit/54383051fb145e2fec855ddbb979d2afca024b70))
+
# [1.21.0](https://gecgithub01.walmart.com/smdv/celebration-mini-app/compare/@walmart/celebration-mini-app-graphql@1.20.0...@walmart/celebration-mini-app-graphql@1.21.0) (2025-11-28)
### Features
--- packages/celebration-mini-app-graphql/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/celebration-mini-app-graphql",
- "version": "1.21.0",
+ "version": "1.22.0",
"packageManager": "yarn@4.6.0",
"engines": {
"node": ">=18"
--- packages/celebration-mini-app/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.31.1](https://gecgithub01.walmart.com/smdv/celebration-mini-app/compare/@walmart/celebration-mini-app@1.31.0...@walmart/celebration-mini-app@1.31.1) (2025-11-28)
+
+**Note:** Version bump only for package @walmart/celebration-mini-app
+
# [1.31.0](https://gecgithub01.walmart.com/smdv/celebration-mini-app/compare/@walmart/celebration-mini-app@1.30.1...@walmart/celebration-mini-app@1.31.0) (2025-11-28)
### Features
--- packages/celebration-mini-app/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/celebration-mini-app",
- "version": "1.31.0",
+ "version": "1.31.1",
"packageManager": "yarn@4.6.0",
"engines": {
"node": ">=18"
| chore(version): updating package version | chore(version): updating package version
- @walmart/celebration-mini-app@1.31.1
- @walmart/celebration-mini-app-graphql@1.22.0
|
847bdcb1837987eb0cb4111aa531379b0f7e8cc7 | --- packages/me-at-walmart-common/src/index.ts
@@ -1,5 +1,6 @@
export * from './components';
export * from './environment';
+export * from './navigation';
export * from './queries';
export * from './redux';
export * from './types';
--- packages/me-at-walmart-common/src/navigation.ts
@@ -0,0 +1,26 @@
+/**
+ * Used by Me@Walmart to identify features that should be connected
+ * at different points of the app lifecycle
+ * root - Connected at the root of the app
+ * associate - Connected after auth and startup, once associate type is determined
+ */
+export const FeatureTags = {
+ root: 'root',
+ associate: 'associate',
+};
+
+/**
+ * Used by Me@Walmart to identify where feature screens should be rendered in the navigation heirarchy
+ * RootStack - At the root of the app, befor auth. Same level as login, permissions, etc.
+ * AssociateStack - At top level stack of associate hallway. After auth, where most feature screens are.
+ * HomeTab - The stack within the home tab.
+ * ProfileTab - The stack within the profile tab.
+ * MyTeamTab - The stack within the my team tab.
+ */
+export const ScreenTags = {
+ RootStack: 'RootStack',
+ AssociateStack: 'AssociateStack',
+ HomeTab: 'AssociateStack.HomeTab',
+ ProfileTab: 'AssociateStack.ProfileTab',
+ MyTeamTab: 'AssociateStack.MyTeamTab',
+};
| feat: expose feature and screen tags for feature module use | feat: expose feature and screen tags for feature module use
|
47afae7df29b0847f89557b66b804c6593252bf3 | --- package.json
@@ -155,7 +155,7 @@
"expo": "^51.0.0",
"expo-image": "~1.13.0",
"react": "*",
- "react-native": "~0.75.4",
+ "react-native": "*",
"react-native-wm-config": "0.1.1"
},
"dependenciesMeta": {
--- yarn.lock
@@ -6655,7 +6655,7 @@ __metadata:
expo: ^51.0.0
expo-image: ~1.13.0
react: "*"
- react-native: ~0.75.4
+ react-native: "*"
react-native-wm-config: 0.1.1
dependenciesMeta:
"@walmart/me-at-walmart":
| Addressing comments | Addressing comments
|
bb03a9a45a0a6eea0e5373ff2797be9632c70c1c | --- package.json
@@ -81,7 +81,7 @@
"@terrylinla/react-native-sketch-canvas": "patch:@terrylinla/react-native-sketch-canvas@npm%3A0.8.0#~/.yarn/patches/@terrylinla-react-native-sketch-canvas-npm-0.8.0-c7b2afd4cd.patch",
"@walmart/allspark-authentication": "6.4.10",
"@walmart/allspark-cope-key-listener": "0.0.18",
- "@walmart/allspark-foundation": "7.12.0",
+ "@walmart/allspark-foundation": "7.13.0",
"@walmart/allspark-foundation-hub": "1.20.1",
"@walmart/allspark-graphql-client": "~6.3.28",
"@walmart/allspark-http-client": "~6.3.28",
--- yarn.lock
@@ -8132,7 +8132,7 @@ __metadata:
"@types/react-native-vector-icons": "npm:6.4.18"
"@walmart/allspark-authentication": "npm:6.4.10"
"@walmart/allspark-cope-key-listener": "npm:0.0.18"
- "@walmart/allspark-foundation": "npm:7.12.0"
+ "@walmart/allspark-foundation": "npm:7.13.0"
"@walmart/allspark-foundation-hub": "npm:1.20.1"
"@walmart/allspark-graphql-client": "npm:~6.3.28"
"@walmart/allspark-http-client": "npm:~6.3.28"
| feat(foundation): update version | feat(foundation): update version
|
ca97f10b99b8163773399c01a4c5ac4d6c047a56 | --- packages/allspark-foundation-hub/src/HubFeature/Hub/Container/Screens/HubDashboard.tsx
@@ -128,6 +128,12 @@ export const HubDashboard = ({ name, widgets }: HubDashboardProps) => {
return myTeams;
} catch (error: any) {
loggerRef.current.error('Error:', error);
+ teamSwitcherTelemetryRef.current.logEvent(
+ 'preference_data_error_event',
+ {
+ message: 'Onboarding failed',
+ }
+ );
throw error;
}
};
@@ -171,6 +177,9 @@ export const HubDashboard = ({ name, widgets }: HubDashboardProps) => {
loggerRef.current.info(
`SiteId changed from ${parentSiteID.current} to ${currentSiteId}`
);
+ teamSwitcherTelemetryRef.current.logEvent('siteChange_event', {
+ message: 'Site change triggered',
+ });
parentSiteID.current = currentSiteId;
onRefresh();
}
--- packages/allspark-foundation-hub/src/HubFeature/Onboarding/TeamSelection/Screens/TeamSelection.tsx
@@ -14,7 +14,7 @@ import { UserSelectors } from '@walmart/allspark-foundation/User';
import { useGetAssociatePreferencesQuery } from '@walmart/me-at-walmart-athena-queries';
import { Team } from '@walmart/me-at-walmart-athena-queries/src/schema.types';
import { LoggerService } from '@walmart/allspark-foundation/Logger';
-
+import { useTelemetryService } from '@walmart/allspark-foundation/Telemetry';
import { useTeamsByStore } from './Hooks/useTeamsByStore';
export const TeamSelection = () => {
@@ -32,6 +32,7 @@ export const TeamSelection = () => {
const primaryTeam = useGetViewersPrimaryTeamName();
const primaryTeamData = primaryTeam?.[0] as TeamType;
const logger = LoggerService.getContainerInstance();
+ const teamSelectionTelemetry = useTelemetryService();
const site: string | undefined = useSelector(UserSelectors.getWorkingSite);
const win: string | undefined = useSelector(UserSelectors.getWin);
const [selectedTeams, setSelectedTeams] = useState<any[]>([]);
@@ -170,6 +171,9 @@ export const TeamSelection = () => {
logger.info('Select all teams', {
message: 'Selected all teams from team selection',
});
+ teamSelectionTelemetry.logEvent('selectAll_event', {
+ message: 'Selected all teams',
+ });
} else {
setSelectedTeams([primaryTeamData?.teamName]);
}
| Adding remaining telemetries | Adding remaining telemetries
|
a73534ad903536556d510cd37bdbfc662705850f | --- src/managerExperience/components/AssociateListItem/AssociateListItem.tsx
@@ -99,6 +99,7 @@ export const AssociateListItem = ({
<AssociateAvatar
associateName={associateName}
isClockedIn={isClockedIn}
+ //TODO: pass actual profile url if it exists
profileImageUrl={null}
/>
<View style={styles.associateInfoContainer}>
| feat: added todo | feat: added todo
|
82e68de9773ec0805625ab6c17e2a5864217f04f | --- __tests__/navigation/AssociateHallwayNav/__snapshots__/MainStackNavTest.tsx.snap
@@ -93,7 +93,7 @@ exports[`AssociateHallwayNav matches snapshot; handles mount and unmount effects
options={{}}
/>
<Screen
- component="InboxScreen"
+ component="InboxMiniApp"
name="inbox"
/>
<Screen
@@ -488,7 +488,7 @@ exports[`AssociateHallwayNav matches snapshot; handles mount and unmount effects
options={{}}
/>
<Screen
- component="InboxScreen"
+ component="InboxMiniApp"
name="inbox"
/>
<Screen
| fix unit test | fix unit test
|
8a6d7d0d35041fb5a59a87acf354be1f2f885887 | --- package.json
@@ -123,7 +123,7 @@
"@walmart/gta-react-native-calendars": "0.7.0",
"@walmart/gtp-shared-components": "2.3.0-rc.0",
"@walmart/gtp-shared-components-3": "npm:@walmart/gtp-shared-components@3.0.0-beta.11",
- "@walmart/ims-print-services-ui": "2.23.0",
+ "@walmart/ims-print-services-ui": "2.24.1",
"@walmart/inbox-mini-app": "0.105.3",
"@walmart/invue-react-native-sdk": "0.1.26-alpha.14",
"@walmart/iteminfo-mini-app": "8.8.11",
--- src/manifest.ts
@@ -118,6 +118,7 @@ export const getAssociateFeatures = (): AllsparkFeatureModule[] => {
require('@walmart/shop-gnfr-mini-app').default,
require('@walmart/profile-feature-app').UPV2FeatureModule,
require('@walmart/backroom-mini-app').default,
+ require('@walmart/ims-print-services-ui').default,
require('@walmart/beneficiary-online-mini-app').default
);
}
--- yarn.lock
@@ -8134,15 +8134,16 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/ims-print-services-ui@npm:2.23.0":
- version: 2.23.0
- resolution: "@walmart/ims-print-services-ui@npm:2.23.0::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Fims-print-services-ui%2F-%2F%40walmart%2Fims-print-services-ui-2.23.0.tgz"
- peerDependencies:
- "@react-native-firebase/analytics": ">=21.5.0"
- "@react-native-firebase/app": ">=21.5.0"
- "@react-native-firebase/crashlytics": ">=21.5.0"
- "@react-native-firebase/firestore": ">=21.5.0"
- "@react-native-firebase/perf": ">=21.5.0"
+"@walmart/ims-print-services-ui@npm:2.24.1":
+ version: 2.24.1
+ resolution: "@walmart/ims-print-services-ui@npm:2.24.1::__archiveUrl=https%3A%2F%2Fnpm.ci.artifacts.walmart.com%3A443%2Fartifactory%2Fapi%2Fnpm%2Fnpme-npm%2F%40walmart%2Fims-print-services-ui%2F-%2F%40walmart%2Fims-print-services-ui-2.24.1.tgz"
+ peerDependencies:
+ "@react-native-firebase/analytics": ">=22.4.0"
+ "@react-native-firebase/app": ">=22.4.0"
+ "@react-native-firebase/crashlytics": ">=22.4.0"
+ "@react-native-firebase/firestore": ">=22.4.0"
+ "@react-native-firebase/perf": ">=22.4.0"
+ "@react-native-segmented-control/segmented-control": ">=2.5.7"
"@react-navigation/native": ">=6.0.0"
"@walmart/allspark-foundation": "*"
"@walmart/gtp-shared-components": ">=2.0.6"
@@ -8156,7 +8157,7 @@ __metadata:
react-native: "*"
react-native-wm-telemetry: ">=0.2.0"
uuid: ">=3.3.2"
- checksum: 10c0/81ae339e862541e8688f09089f6c50ca439faa7e4ba3fb4025ac3b23a93a79634dad892eb990c0c1bbdb1690bffdb7de45d63c41550ed014ba602b6048d74c34
+ checksum: 10c0/df55e4942828b369034a54a96f3d085f2d165d2b3594ec0fc2f5bd087e53456c5e2de13b16a13ecb9400d1b27d2d780501fe12785337fe3ff660a0c550b43bea
languageName: node
linkType: hard
@@ -8542,7 +8543,7 @@ __metadata:
"@walmart/gta-react-native-calendars": "npm:0.7.0"
"@walmart/gtp-shared-components": "npm:2.3.0-rc.0"
"@walmart/gtp-shared-components-3": "npm:@walmart/gtp-shared-components@3.0.0-beta.11"
- "@walmart/ims-print-services-ui": "npm:2.23.0"
+ "@walmart/ims-print-services-ui": "npm:2.24.1"
"@walmart/inbox-mini-app": "npm:0.105.3"
"@walmart/invue-react-native-sdk": "npm:0.1.26-alpha.14"
"@walmart/iteminfo-mini-app": "npm:8.8.11"
| feat(print): SSLS-11732 Bump Print to v2.24.1 (#4979) | feat(print): SSLS-11732 Bump Print to v2.24.1 (#4979)
Co-authored-by: Alex Heydorn - a0h070s <Alex.Heydorn@walmart.com>
Co-authored-by: Hariharan Sundaram <121838+h0s0em0@users.noreply.gecgithub01.walmart.com> |
0df5494f0f153b8603bf9546277f2bc476418153 | --- packages/associate-exp-hub-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.
+## [2.21.5](https://gecgithub01.walmart.com/allspark/associate-exp-hub-mini-app/compare/@walmart/associate-exp-hub-hub@2.21.4...@walmart/associate-exp-hub-hub@2.21.5) (2026-01-13)
+
+**Note:** Version bump only for package @walmart/associate-exp-hub-hub
+
## [2.21.4](https://gecgithub01.walmart.com/allspark/associate-exp-hub-mini-app/compare/@walmart/associate-exp-hub-hub@2.21.3...@walmart/associate-exp-hub-hub@2.21.4) (2025-12-22)
**Note:** Version bump only for package @walmart/associate-exp-hub-hub
--- packages/associate-exp-hub-hub/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/associate-exp-hub-hub",
- "version": "2.21.4",
+ "version": "2.21.5",
"description": "Hub Framework module for Associate Experience Hub - can be moved to @walmart/my-walmart-hub",
"packageManager": "yarn@4.6.0",
"engines": {
--- packages/associate-exp-hub-mini-app/CHANGELOG.md
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.14.3](https://gecgithub01.walmart.com/smdv/associate-exp-hub-mini-app/compare/@walmart/associate-exp-hub-mini-app@1.14.2...@walmart/associate-exp-hub-mini-app@1.14.3) (2026-01-13)
+
+### Bug Fixes
+
+- test failure ([0f10ca1](https://gecgithub01.walmart.com/smdv/associate-exp-hub-mini-app/commit/0f10ca1f64e3bb3f9812dc0ab4075ed228c86496))
+- **ui:** improve team icon loading and error handling ([52ec426](https://gecgithub01.walmart.com/smdv/associate-exp-hub-mini-app/commit/52ec426556cd6dd7856cd81d480a6d15a4d0b01f))
+
## [1.14.2](https://gecgithub01.walmart.com/smdv/associate-exp-hub-mini-app/compare/@walmart/associate-exp-hub-mini-app@1.14.1...@walmart/associate-exp-hub-mini-app@1.14.2) (2025-12-22)
**Note:** Version bump only for package @walmart/associate-exp-hub-mini-app
--- packages/associate-exp-hub-mini-app/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/associate-exp-hub-mini-app",
- "version": "1.14.2",
+ "version": "1.14.3",
"packageManager": "yarn@4.6.0",
"engines": {
"node": ">=18"
--- packages/associate-exp-hub-team-switcher/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.25.1](https://gecgithub01.walmart.com/allspark/associate-exp-hub-mini-app/compare/@walmart/associate-exp-hub-team-switcher@2.25.0...@walmart/associate-exp-hub-team-switcher@2.25.1) (2026-01-13)
+
+### Bug Fixes
+
+- **ui:** improve team icon loading and error handling ([52ec426](https://gecgithub01.walmart.com/allspark/associate-exp-hub-mini-app/commit/52ec426556cd6dd7856cd81d480a6d15a4d0b01f))
+
# [2.25.0](https://gecgithub01.walmart.com/allspark/associate-exp-hub-mini-app/compare/@walmart/associate-exp-hub-team-switcher@2.24.1...@walmart/associate-exp-hub-team-switcher@2.25.0) (2025-12-22)
### Features
--- packages/associate-exp-hub-team-switcher/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/associate-exp-hub-team-switcher",
- "version": "2.25.0",
+ "version": "2.25.1",
"description": "Team Switcher module for Associate Experience Hub",
"packageManager": "yarn@4.6.0",
"engines": {
| chore(version): updating package version | chore(version): updating package version
- @walmart/associate-exp-hub-hub@2.21.5
- @walmart/associate-exp-hub-mini-app@1.14.3
- @walmart/associate-exp-hub-team-switcher@2.25.1
|
32814ab7bce22179f44ea08db69c189485fa250d | --- packages/allspark-foundation/allspark.config.js
@@ -2,15 +2,22 @@ module.exports = {
link: {
react: {
dependencies: {
+ // GTP Components
+ '@react-native-community/datetimepicker': {},
'@react-native-community/netinfo': {},
- // @todo - Required by Scanner, can we remove?
+ // Scanner - can we remove?
'@react-native-firebase/app': {},
+ // Scanner - can we remove?
'@react-native-firebase/analytics': {},
- // ------ //
+ // GTP Components
+ '@react-native-picker/picker': {},
'@react-navigation/native': {},
'@react-navigation/stack': {},
'@walmart/react-native-scanner-3.0': {},
'@walmart/react-native-sumo-sdk': {},
+ 'react-native-device-info': {},
+ // GTP Components
+ 'react-native-drop-shadow': {},
'react-native-flipper': {},
'react-native-gesture-handler': {},
'react-native-get-random-values': {},
--- packages/allspark-http-client/src/index.tsx
@@ -65,7 +65,7 @@ const HttpClientCloneProvider = forwardRef<
const { children, id, config } = props;
const value = useMemo(
- () => AllsparkHttpClient.createFeatureClient(id, config),
+ () => AllsparkHttpClient.createFeatureClient(id, config) as HttpClient,
// eslint-disable-next-line react-hooks/exhaustive-deps
[]
);
--- packages/core-services/HttpClient/index.tsx
@@ -142,8 +142,9 @@ export const HttpClientCloneProvider = forwardRef<
>((props, ref) => {
const { children, id, config } = props;
- useImperativeHandle(ref, () =>
- AllsparkHttpClient.createFeatureClient(id, config)
+ useImperativeHandle(
+ ref,
+ () => AllsparkHttpClient.createFeatureClient(id, config) as HttpClient
);
return <>{children}</>;
| fix: fix legacy package typing. add gtp native dependencies to allspark config. | fix: fix legacy package typing. add gtp native dependencies to allspark config.
|
7ca89838a4352a65f98a23e0242b5ab8a9f53d7e | --- package-lock.json
@@ -58,7 +58,7 @@
"@walmart/manager-approvals-miniapp": "0.1.2",
"@walmart/me-field-mini-app": "1.1.35",
"@walmart/metrics-mini-app": "0.9.33",
- "@walmart/mod-flex-mini-app": "1.3.11",
+ "@walmart/mod-flex-mini-app": "1.3.12",
"@walmart/moment-walmart": "1.0.4",
"@walmart/OneWalmart-MiniApp": "1.0.12",
"@walmart/pay-stub-miniapp": "0.9.7",
@@ -5413,9 +5413,9 @@
"license": "MIT"
},
"node_modules/@walmart/mod-flex-mini-app": {
- "version": "1.3.11",
- "resolved": "https://npme.walmart.com/@walmart/mod-flex-mini-app/-/mod-flex-mini-app-1.3.11.tgz",
- "integrity": "sha512-lxuUoaibzzbDBU9EYlcbN04271UliWDC7+P/9dTEmqT3qoCMteHeXttPwp5Jn1LB3YF/TuevKIsV5nTFPhR/SA==",
+ "version": "1.3.12",
+ "resolved": "https://npme.walmart.com/@walmart/mod-flex-mini-app/-/mod-flex-mini-app-1.3.12.tgz",
+ "integrity": "sha512-FLiy31nPUVSH/o7eULUr3N7sHc31QJyp4q2CWj+jIUjiJ2DyW3bsuvQDsY1BeU9FWk6GB8ln7LOrWeFs0fx8Tw==",
"peerDependencies": {
"@react-native-community/async-storage": "^1.11.0",
"@react-native-picker/picker": "^2.4.2",
@@ -24937,9 +24937,9 @@
}
},
"@walmart/mod-flex-mini-app": {
- "version": "1.3.11",
- "resolved": "https://npme.walmart.com/@walmart/mod-flex-mini-app/-/mod-flex-mini-app-1.3.11.tgz",
- "integrity": "sha512-lxuUoaibzzbDBU9EYlcbN04271UliWDC7+P/9dTEmqT3qoCMteHeXttPwp5Jn1LB3YF/TuevKIsV5nTFPhR/SA=="
+ "version": "1.3.12",
+ "resolved": "https://npme.walmart.com/@walmart/mod-flex-mini-app/-/mod-flex-mini-app-1.3.12.tgz",
+ "integrity": "sha512-FLiy31nPUVSH/o7eULUr3N7sHc31QJyp4q2CWj+jIUjiJ2DyW3bsuvQDsY1BeU9FWk6GB8ln7LOrWeFs0fx8Tw=="
},
"@walmart/moment-walmart": {
"version": "1.0.4",
--- package.json
@@ -101,7 +101,7 @@
"@walmart/manager-approvals-miniapp": "0.1.2",
"@walmart/me-field-mini-app": "1.1.35",
"@walmart/metrics-mini-app": "0.9.33",
- "@walmart/mod-flex-mini-app": "1.3.11",
+ "@walmart/mod-flex-mini-app": "1.3.12",
"@walmart/moment-walmart": "1.0.4",
"@walmart/pay-stub-miniapp": "0.9.7",
"@walmart/payrollsolution_miniapp": "0.130.6",
| upgrading modflex to 1.3.12 | upgrading modflex to 1.3.12
|
f74d30e07a55d53f978f02bf14d08343b9413989 | --- packages/allspark-foundation-hub/src/HubFeature/TeamSelection/Component/SelectionBannerFooterButtons.tsx
@@ -2,15 +2,11 @@ import React from 'react';
import { View } from 'react-native';
import { Button } from '@walmart/gtp-shared-components';
import { FooterButtons } from '../types';
-import {
- CancelButton,
- SaveTeamsButton,
-} from '../Constants/TeamSelectionConstants';
+import { SaveTeamsButton } from '../Constants/TeamSelectionConstants';
import { FooterButtonComponentStyle as styles } from '../styles';
import { useAllsparkTranslation } from '@walmart/allspark-foundation/Translation';
export const SelectionBannerFooterButtons = ({
- onCancelButtonPress,
onSaveButtonPress,
isLoading,
}: FooterButtons) => {
@@ -18,7 +14,7 @@ export const SelectionBannerFooterButtons = ({
return (
<View style={styles.buttonContainer}>
- <View>
+ {/* <View>
<Button
variant='tertiary'
size='small'
@@ -32,7 +28,7 @@ export const SelectionBannerFooterButtons = ({
>
{t('teamSelection.cancel')}
</Button>
- </View>
+ </View> */}
<View style={styles.saveTeamButtons}>
<Button
variant='primary'
--- packages/allspark-foundation-hub/src/HubFeature/TeamSelection/styles.ts
@@ -110,11 +110,8 @@ export const FooterButtonComponentStyle = StyleSheet.create({
buttonContainer: {
width: '100%',
height: 72,
- gap: 24,
- flexDirection: 'row',
backgroundColor: colors.white,
padding: 16,
- justifyContent: 'space-between',
alignItems: 'center',
},
saveTeamButtons: {
--- packages/allspark-foundation-hub/src/HubFeature/TeamSelection/types.ts
@@ -78,7 +78,6 @@ export type selectionBannerType = {
selectedTeams: number;
};
export interface FooterButtons {
- onCancelButtonPress: () => void;
onSaveButtonPress: () => void;
isLoading: boolean;
}
| Remove the cancel button from the Team selection screen | Remove the cancel button from the Team selection screen
|
a49e58286a86128c0e351ec271984eca08fea704 | --- core/__tests__/navigation/USHallway/AssociateHallwayNav/MainStackNavTest.tsx
@@ -17,7 +17,7 @@ jest.mock(
);
describe('AssociateHallwayNav', () => {
- it('matches snapshot; handles mount and unmount effects', () => {
+ it.skip('matches snapshot; handles mount and unmount effects', () => {
let component: ReactTestRenderer;
act(() => {
component = create(<MainStackNav />);
@@ -25,7 +25,7 @@ describe('AssociateHallwayNav', () => {
expect(component.toJSON()).toMatchSnapshot();
});
- it('matches snapshot; handles mount and unmount effects - attendanceMiniApp false', () => {
+ it.skip('matches snapshot; handles mount and unmount effects - attendanceMiniApp false', () => {
let component: ReactTestRenderer;
act(() => {
component = create(<MainStackNav />);
--- core/__tests__/navigation/USHallway/AssociateHallwayNav/Tabs/HomeStackNavTest.tsx
@@ -7,7 +7,7 @@ import {HomeStackNav} from '../../../../../src/navigation/USHallway/AssociateHal
const mockUseSelector = useSelector as jest.Mock;
describe('HomeStackNav', () => {
- it('has expected behavior', () => {
+ it.skip('has expected behavior', () => {
// Inbox Header Enabled & User Present
mockUseSelector.mockReturnValueOnce(true); // inbox header enabled
mockUseSelector.mockReturnValueOnce({userId: 'swalton3'}); //user
--- core/__tests__/navigation/__snapshots__/RootStackTest.tsx.snap
@@ -25,6 +25,207 @@ exports[`RootNav matches snapshot when app accessible 1`] = `
}
}
/>
+ <Screen
+ getComponent={[Function]}
+ listeners={
+ {
+ "focus": undefined,
+ }
+ }
+ name="Core.ErrorScreen"
+ options={
+ {
+ "header": [Function],
+ "headerBackImage": [Function],
+ "headerShown": true,
+ "headerTintColor": "white",
+ "headerTransparent": false,
+ "presentation": "transparentModal",
+ }
+ }
+ tags={
+ [
+ "RootStack",
+ ]
+ }
+ />
+ <Screen
+ getComponent={[Function]}
+ name="Core.ErrorTwoFactorGuideScreen"
+ options={
+ {
+ "header": [Function],
+ "headerShown": true,
+ "headerTintColor": "white",
+ "headerTransparent": false,
+ "title": "",
+ }
+ }
+ tags={
+ [
+ "RootStack",
+ ]
+ }
+ />
+ <Screen
+ getComponent={[Function]}
+ name="Core.Toast"
+ options={
+ {
+ "cardStyleInterpolator": undefined,
+ "presentation": "transparentModal",
+ }
+ }
+ tags={
+ [
+ "RootStack",
+ ]
+ }
+ />
+ <Screen
+ getComponent={[Function]}
+ listeners={
+ {
+ "focus": [Function],
+ }
+ }
+ name="WelcomeMeMiniApp"
+ options={
+ {
+ "animationTypeForReplace": "push",
+ "gestureEnabled": false,
+ "headerShown": false,
+ }
+ }
+ tags={
+ [
+ "RootStack",
+ ]
+ }
+ />
+ <Screen
+ getComponent={[Function]}
+ name="Core.PermissionsWelcome"
+ options={
+ {
+ "animationTypeForReplace": "push",
+ "gestureEnabled": false,
+ "headerShown": false,
+ }
+ }
+ tags={
+ [
+ "RootStack",
+ ]
+ }
+ />
+ <Screen
+ getComponent={[Function]}
+ name="Core.PermissionsLocation"
+ options={
+ {
+ "headerShown": false,
+ }
+ }
+ tags={
+ [
+ "RootStack",
+ ]
+ }
+ />
+ <Screen
+ getComponent={[Function]}
+ name="Core.PermissionsNotifications"
+ options={
+ {
+ "headerShown": false,
+ }
+ }
+ tags={
+ [
+ "RootStack",
+ ]
+ }
+ />
+ <Screen
+ getComponent={[Function]}
+ name="Core.CreatePINScreen"
+ options={
+ {
+ "header": [Function],
+ "headerShown": true,
+ "headerTintColor": "white",
+ "headerTransparent": true,
+ "title": "",
+ }
+ }
+ tags={
+ [
+ "RootStack",
+ ]
+ }
+ />
+ <Screen
+ getComponent={[Function]}
+ name="Core.PinAccessScreen"
+ options={
+ {
+ "animationTypeForReplace": "push",
+ "estureEnabled": false,
+ "headerShown": false,
+ }
+ }
+ tags={
+ [
+ "RootStack",
+ ]
+ }
+ />
+ <Screen
+ getComponent={[Function]}
+ name="Core.SideButtonStartup"
+ options={
+ {
+ "headerShown": false,
+ }
+ }
+ tags={
+ [
+ "RootStack",
+ ]
+ }
+ />
+ <Screen
+ getComponent={[Function]}
+ name="Core.SideButtonStartupSettings"
+ options={
+ {
+ "header": [Function],
+ "headerBackImage": [Function],
+ "headerShown": true,
+ }
+ }
+ tags={
+ [
+ "RootStack",
+ ]
+ }
+ />
+ <Screen
+ getComponent={[Function]}
+ name="Core.TermsOfUse"
+ options={
+ {
+ "animationTypeForReplace": "push",
+ "gestureEnabled": false,
+ }
+ }
+ tags={
+ [
+ "RootStack",
+ ]
+ }
+ />
<Screen
component={[Function]}
name="Core.Main"
--- jest.config.js
@@ -5,10 +5,10 @@ module.exports = {
coverageReporters: ['lcov', 'text'],
coverageThreshold: {
global: {
- statements: 90,
+ statements: 88,
branches: 85,
- functions: 80,
- lines: 90,
+ functions: 79,
+ lines: 88,
},
'./packages/me-at-walmart-common': {
statements: 5,
| fix: fixed coverage issue | fix: fixed coverage issue
|
5b8d1102b7607fdf4d300c8b20c38f26339b0375 | --- package-lock.json
@@ -52,9 +52,9 @@
"@walmart/gta-react-native-calendars": "0.0.16",
"@walmart/gtp-shared-components": "2.0.3",
"@walmart/impersonation-mini-app": "1.11.0",
- "@walmart/ims-print-services-ui": "1.2.2",
+ "@walmart/ims-print-services-ui": "2.0.6",
"@walmart/inbox-mini-app": "0.81.9",
- "@walmart/iteminfo-mini-app": "5.3.5",
+ "@walmart/iteminfo-mini-app": "7.1.0",
"@walmart/manager-approvals-miniapp": "0.2.1",
"@walmart/me-field-mini-app": "1.1.45",
"@walmart/metrics-mini-app": "0.9.42",
@@ -5172,9 +5172,9 @@
}
},
"node_modules/@walmart/ims-print-services-ui": {
- "version": "1.2.2",
- "resolved": "https://npme.walmart.com/@walmart/ims-print-services-ui/-/ims-print-services-ui-1.2.2.tgz",
- "integrity": "sha512-Mh3s0NI0QSMUtH5lkWqksw+QyROQIgz3tnb7Yn+sIAdJCo/sijB94t+dZLTdpIJcAQE0w7MGH8iSWnaGJ3gzrg==",
+ "version": "2.0.6",
+ "resolved": "https://npme.walmart.com/@walmart/ims-print-services-ui/-/ims-print-services-ui-2.0.6.tgz",
+ "integrity": "sha512-MUQJaZqIrX8GdPckD6/JsRbn/vXPEdfAa2431MG+/eUch/9J+WNo2WGlPDxqS7XEnty6O9rqOJPC2zKXBRY3RA==",
"peerDependencies": {
"@react-native-firebase/analytics": ">=10.5.1",
"@react-native-firebase/app": ">=10.5.0",
@@ -5185,10 +5185,10 @@
"@walmart/gtp-shared-components": ">=2.0.0",
"@walmart/react-native-logger": ">=1.17.0",
"@walmart/ui-components": ">=1.1.11",
- "i18next": "^19.7.0",
+ "i18next": "^22.0.1",
"moment": "^2.29.4",
"react": ">=16.11.0",
- "react-i18next": "^11.7.3",
+ "react-i18next": "^12.0.0",
"react-native": ">=0.62.2",
"react-native-radio-buttons-group": "2.2.5",
"react-native-segmented-control-tab": "4.0.0",
@@ -5214,9 +5214,9 @@
}
},
"node_modules/@walmart/iteminfo-mini-app": {
- "version": "5.3.5",
- "resolved": "https://npme.walmart.com/@walmart/iteminfo-mini-app/-/iteminfo-mini-app-5.3.5.tgz",
- "integrity": "sha512-786nix/xXHvAEPDEL7pJGEdUmH0aHt1FGBXjvzqqYsxFie6Zs2KSMxtS1eQQq/Vd9/hpn+trW88M2EmEzKDGpw==",
+ "version": "7.1.0",
+ "resolved": "https://npme.walmart.com/@walmart/iteminfo-mini-app/-/iteminfo-mini-app-7.1.0.tgz",
+ "integrity": "sha512-i5awmMBCVLsKqO6KzfBDPeSbYElfNZt/T0hJjwhGsCPXpRvaOdt9x/2vaBzLfpSzYIZDAVbALCDUn0zpBBy/lw==",
"peerDependencies": {
"@react-native-community/async-storage": ">=1.12.1",
"@react-native-community/netinfo": ">=9.3.6",
@@ -5235,12 +5235,12 @@
"@walmart/config-components": ">=1.0.8",
"@walmart/counts-component-miniapp": ">=0.0.21",
"@walmart/functional-components": ">=2.0.6",
- "@walmart/gtp-shared-components": ">=2.0.0",
- "@walmart/ims-print-services-ui": ">=1.2.0",
+ "@walmart/gtp-shared-components": ">=2.0.2",
+ "@walmart/ims-print-services-ui": ">=2.0.6",
"@walmart/price-changes-mini-app": ">=1.4.5",
"@walmart/react-native-env": ">=0.2.0",
"@walmart/react-native-logger": ">=1.29.0",
- "@walmart/react-native-scanner-3.0": ">=0.1.26",
+ "@walmart/react-native-scanner-3.0": ">=0.1.29",
"@walmart/react-native-store-map": ">=0.3.7",
"@walmart/redux-store": ">=3.1.2",
"@walmart/ui-components": ">=1.6.0",
@@ -25085,9 +25085,9 @@
"integrity": "sha512-jytXe4i0C9GXvPCm6nB26ILZVkcSsBmcdykmGmlFKB4Q/d5i9imtLmFHLfhd6gxU7ZeBoKMJvymF5tWQbI6QoQ=="
},
"@walmart/ims-print-services-ui": {
- "version": "1.2.2",
- "resolved": "https://npme.walmart.com/@walmart/ims-print-services-ui/-/ims-print-services-ui-1.2.2.tgz",
- "integrity": "sha512-Mh3s0NI0QSMUtH5lkWqksw+QyROQIgz3tnb7Yn+sIAdJCo/sijB94t+dZLTdpIJcAQE0w7MGH8iSWnaGJ3gzrg=="
+ "version": "2.0.6",
+ "resolved": "https://npme.walmart.com/@walmart/ims-print-services-ui/-/ims-print-services-ui-2.0.6.tgz",
+ "integrity": "sha512-MUQJaZqIrX8GdPckD6/JsRbn/vXPEdfAa2431MG+/eUch/9J+WNo2WGlPDxqS7XEnty6O9rqOJPC2zKXBRY3RA=="
},
"@walmart/inbox-mini-app": {
"version": "0.81.9",
@@ -25099,9 +25099,9 @@
}
},
"@walmart/iteminfo-mini-app": {
- "version": "5.3.5",
- "resolved": "https://npme.walmart.com/@walmart/iteminfo-mini-app/-/iteminfo-mini-app-5.3.5.tgz",
- "integrity": "sha512-786nix/xXHvAEPDEL7pJGEdUmH0aHt1FGBXjvzqqYsxFie6Zs2KSMxtS1eQQq/Vd9/hpn+trW88M2EmEzKDGpw=="
+ "version": "7.1.0",
+ "resolved": "https://npme.walmart.com/@walmart/iteminfo-mini-app/-/iteminfo-mini-app-7.1.0.tgz",
+ "integrity": "sha512-i5awmMBCVLsKqO6KzfBDPeSbYElfNZt/T0hJjwhGsCPXpRvaOdt9x/2vaBzLfpSzYIZDAVbALCDUn0zpBBy/lw=="
},
"@walmart/manager-approvals-miniapp": {
"version": "0.2.1",
--- package.json
@@ -94,9 +94,9 @@
"@walmart/gta-react-native-calendars": "0.0.16",
"@walmart/gtp-shared-components": "2.0.3",
"@walmart/impersonation-mini-app": "1.11.0",
- "@walmart/ims-print-services-ui": "1.2.2",
+ "@walmart/ims-print-services-ui": "2.0.6",
"@walmart/inbox-mini-app": "0.81.9",
- "@walmart/iteminfo-mini-app": "5.3.5",
+ "@walmart/iteminfo-mini-app": "7.1.0",
"@walmart/manager-approvals-miniapp": "0.2.1",
"@walmart/me-field-mini-app": "1.1.45",
"@walmart/metrics-mini-app": "0.9.42",
| iteminfo drop10 | iteminfo drop10
|
890ce2a1ecc52d2b85c116aa47d2f86910687e2f | --- packages/core-services/AppConfig/index.tsx
@@ -10,7 +10,6 @@ import {
ConfigState,
} from '@walmart/allspark-foundation/Config';
import { ConsumerChild } from '@walmart/allspark-utils';
-import { useContainerService } from '@walmart/allspark-foundation';
/**
* @deprecated The Config Service should **ONLY** be set and used by an `AllsparkContainer`.
@@ -149,7 +148,7 @@ export const getDeferredAppConfigContext = async () => ConfigService;
*
* const configData = useSelector(ConfigSelectors.getData); // Use Config Service data
*/
-export const useAppConfig = () => useContainerService('config');
+export const useAppConfig = () => ConfigService;
const getLegacyAppConfigState = createSelector(
[ConfigSelectors.getState],
--- packages/core-services/Auth/index.tsx
@@ -8,7 +8,6 @@ import {
AuthSelectors,
} from '@walmart/allspark-foundation/Auth';
import { ConsumerChild } from '@walmart/allspark-utils';
-import { useContainerService } from '@walmart/allspark-foundation';
/**
* @deprecated The Auth Service should **ONLY** be set and used by an `AllsparkContainer`.
@@ -148,7 +147,7 @@ export const getDeferredAuthContext = async () => AuthService;
*
* const authToken = useSelector(AuthSelectors.getAuthToken); // Use Auth Service data
*/
-export const useAuth = () => useContainerService('auth');
+export const useAuth = () => AuthService;
/**
* @deprecated use `AuthSelectors` from "@walmart/allspark-foundation/Auth" instead
--- packages/core-services/StoreConfig/index.tsx
@@ -5,7 +5,6 @@ import {
SiteService,
SiteSelectors,
} from '@walmart/allspark-foundation/Site';
-import { useContainerService } from '@walmart/allspark-foundation/Container';
import { ConsumerChild } from '@walmart/allspark-utils';
/**
@@ -37,8 +36,7 @@ export const StoreConfigProvider = forwardRef<AllsparkSiteService, any>(
/**
* @deprecated Site Service should only be set and used by an AllsparkContainer.
* Provide a site instance while creating an AllsparkContainer then access through
- * the useContainerService hook if in component context or AuthService if outside of a
- * component context.
+ * SiteService.
* @example
* // Define site for container
* const MyContainer = AllsparkContainer('my-container', {
@@ -47,12 +45,6 @@ export const StoreConfigProvider = forwardRef<AllsparkSiteService, any>(
* }
* });
*
- * // Within Component
- * import {useContainerService} from '@walmart/allspark-foundation/Container';
- * const site = useContainerService('site');
- * site.fetchWorkingSite(...); // <-- will update redux
- *
- * // Outside Component
* import {SiteService} from '@walmart/allspark-foundation/Site';
* SiteService.fetchWorkingSite(...); // <-- will update redux
*/
@@ -168,7 +160,7 @@ export const getDeferredStoreConfigContext = async () => SiteService;
*
* const workingSiteState = useSelector(SiteSelectors.getWorkingSiteState); // Use Site Service data
*/
-export const useStoreConfig = () => useContainerService('site');
+export const useStoreConfig = () => SiteService;
/**
* @deprecated use `SiteSelectors` from '@walmart/allspark-foundation/Site' instead
--- packages/core-services/User/index.tsx
@@ -3,7 +3,6 @@ import {
AllsparkUserService,
UserService,
} from '@walmart/allspark-foundation/User';
-import { useContainerService } from '@walmart/allspark-foundation/Container';
import { UserDomain as MeAtUserDomain } from '@walmart/me-at-walmart-common';
import { ConsumerChild } from '@walmart/allspark-utils';
export { useUserState } from './hooks';
@@ -37,8 +36,7 @@ export const UserProvider = forwardRef<AllsparkUserService, any>(
/**
* @deprecated User Service should only be set and used by an AllsparkContainer.
* Provide a user instance while creating an AllsparkContainer then access through
- * the useContainerService hook if in component context or AuthService if outside of a
- * component context.
+ * the UserService
* @example
* // Define user for container
* const MyContainer = AllsparkContainer('my-container', {
@@ -47,12 +45,6 @@ export const UserProvider = forwardRef<AllsparkUserService, any>(
* }
* });
*
- * // Within Component
- * import {useContainerService} from '@walmart/allspark-foundation/Container';
- * const user = useContainerService('user');
- * user.fetch(...); // <-- will update redux
- *
- * // Outside Component
* import {UserService} from '@walmart/allspark-foundation/User;
* UserService.fetch(...); // <-- will update redux
*/
@@ -168,7 +160,7 @@ export const getDeferredUserContext = async () => UserService;
*
* const userDomain = useSelector(UserSelectors.getDomain); // Use User Service data
*/
-export const useUser = () => useContainerService('user');
+export const useUser = () => UserService;
/**
* @deprecated use `AllsparkUserService` from '@walmart/allspark-foundation/User' instead
| chore: update legacy hooks to not use removed container service hook | chore: update legacy hooks to not use removed container service hook
|
7761f29758dea0e3faf0f13b006377e04678a959 | --- android/app/build.gradle
@@ -134,7 +134,7 @@ android {
applicationId "com.walmart.stores.allspark.beta"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 95
+ versionCode 96
versionName "1.0.7"
}
splits {
--- ios/AllSpark/Info.plist
@@ -34,7 +34,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
- <string>95</string>
+ <string>96</string>
<key>FirebaseAutomaticScreenReportingEnabled</key>
<false />
<key>LSApplicationQueriesSchemes</key>
| Incrementing build number | Incrementing build number
|
2d77c02e2fecd561c5c3fcbd4b97c4738923be96 | --- package-lock.json
@@ -66,7 +66,7 @@
"@walmart/payrollsolution_miniapp": "0.130.14",
"@walmart/price-changes-mini-app": "1.6.10",
"@walmart/profile-feature-app": "0.76.0",
- "@walmart/push-to-talk-mini-app": "1.9.7",
+ "@walmart/push-to-talk-mini-app": "1.9.8",
"@walmart/react-native-encrypted-storage": "1.1.3",
"@walmart/react-native-env": "0.2.0",
"@walmart/react-native-logger": "1.31.0-rc.1",
@@ -5734,9 +5734,9 @@
}
},
"node_modules/@walmart/push-to-talk-mini-app": {
- "version": "1.9.7",
- "resolved": "https://npme.walmart.com/@walmart/push-to-talk-mini-app/-/push-to-talk-mini-app-1.9.7.tgz",
- "integrity": "sha512-EnpaaZ58wU3skxTAdBbeijChWt3kS8mJzyBmXl+6FJP8x6FRXA4VN9vwhG/0DR/J7Ntg0G8F5WZT8RuI8wmeFA==",
+ "version": "1.9.8",
+ "resolved": "https://npme.walmart.com/@walmart/push-to-talk-mini-app/-/push-to-talk-mini-app-1.9.8.tgz",
+ "integrity": "sha512-gZV9w2Bny+yU63mtY+xMqbjsdwXJQlTikU0NAPSp5FUtU/ijXJ+ORBM9HeP9FLTKLoZNYJ6CCcDHTNIXXqwPxg==",
"license": "UNLICENSED",
"peerDependencies": {
"@react-native-community/async-storage": "^1.11.0",
@@ -5750,8 +5750,8 @@
"@walmart/react-native-logger": "^1.28.0",
"@walmart/react-native-shared-navigation": "^0.4.0",
"@walmart/react-native-sumo-sdk": "^2.1.0",
- "@walmart/redux-store": "^2.0.4",
- "@walmart/ui-components": "^1.1.72",
+ "@walmart/redux-store": "3.1.3",
+ "@walmart/ui-components": "1.5.0-rc.1",
"apisauce": "^1.1.2",
"javascript-time-ago": ">=2.3.4",
"lodash": "^4.17.19",
@@ -5780,7 +5780,7 @@
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0",
"reduxsauce": "^1.2.0",
- "reselect": "^4.1.0"
+ "reselect": "^4.0.0"
}
},
"node_modules/@walmart/react-native-encrypted-storage": {
@@ -25335,9 +25335,9 @@
"integrity": "sha512-P4fXm0HihY3jsOkUX7ZVICRiLOUIDo16FVOZHeie7o611ZmslNScFNWwuzEcFulKsLRq4jSU+XQKrOlUqQlW2g=="
},
"@walmart/push-to-talk-mini-app": {
- "version": "1.9.7",
- "resolved": "https://npme.walmart.com/@walmart/push-to-talk-mini-app/-/push-to-talk-mini-app-1.9.7.tgz",
- "integrity": "sha512-EnpaaZ58wU3skxTAdBbeijChWt3kS8mJzyBmXl+6FJP8x6FRXA4VN9vwhG/0DR/J7Ntg0G8F5WZT8RuI8wmeFA=="
+ "version": "1.9.8",
+ "resolved": "https://npme.walmart.com/@walmart/push-to-talk-mini-app/-/push-to-talk-mini-app-1.9.8.tgz",
+ "integrity": "sha512-gZV9w2Bny+yU63mtY+xMqbjsdwXJQlTikU0NAPSp5FUtU/ijXJ+ORBM9HeP9FLTKLoZNYJ6CCcDHTNIXXqwPxg=="
},
"@walmart/react-native-encrypted-storage": {
"version": "1.1.3",
--- package.json
@@ -108,7 +108,7 @@
"@walmart/payrollsolution_miniapp": "0.130.14",
"@walmart/price-changes-mini-app": "1.6.10",
"@walmart/profile-feature-app": "0.76.0",
- "@walmart/push-to-talk-mini-app": "1.9.7",
+ "@walmart/push-to-talk-mini-app": "1.9.8",
"@walmart/react-native-encrypted-storage": "1.1.3",
"@walmart/react-native-env": "0.2.0",
"@walmart/react-native-logger": "1.31.0-rc.1",
| update ptt to 1.9.8 | update ptt to 1.9.8
|
4c59fb4bb87b0000d4321d6c31194f9241f4d51a | --- lerna.json
@@ -22,6 +22,7 @@
],
"packages": [
"packages/allspark-authentication",
+ "packages/allspark-foundation",
"packages/allspark-http-client",
"packages/allspark-graphql-client",
"packages/allspark-redux-store",
| chore: add foundation back to packages | chore: add foundation back to packages
|
0d0118a69a7e8c00b1c2f8fe42428cd77e3f6eff | --- package-lock.json
@@ -74,7 +74,7 @@
"@walmart/react-native-shared-navigation": "1.0.2",
"@walmart/react-native-store-map": "0.3.7",
"@walmart/react-native-sumo-sdk": "2.5.1",
- "@walmart/receipt-check-miniapp": "1.9.14",
+ "@walmart/receipt-check-miniapp": "1.10.1",
"@walmart/redux-store": "3.1.3",
"@walmart/returns-mini-app": "0.12.0",
"@walmart/schedule-mini-app": "0.33.0",
@@ -5861,9 +5861,9 @@
}
},
"node_modules/@walmart/receipt-check-miniapp": {
- "version": "1.9.14",
- "resolved": "https://npme.walmart.com/@walmart/receipt-check-miniapp/-/receipt-check-miniapp-1.9.14.tgz",
- "integrity": "sha512-Jphki3mbYG0E1hr+l2PX6uAMlcbyIqoQGYUVJNCLnQUwnf0yJ3vNzB0qX06n7X+Ptb5kTdtiKQnabHXCuu22Nw==",
+ "version": "1.10.1",
+ "resolved": "https://npme.walmart.com/@walmart/receipt-check-miniapp/-/receipt-check-miniapp-1.10.1.tgz",
+ "integrity": "sha512-RLHsLphq5I6jRw+oBieCnGzwFD6gXKS1lFweEF6Nh25g7vKsXFl0pn79KEwPatciyjqVW99YMzZLjNNO4oURWA==",
"dependencies": {
"@walmart/tcnumber": "^2.3.3",
"@xstate/react": "^3.0.1",
@@ -25551,9 +25551,9 @@
"integrity": "sha512-CxtyZsPMfyN6081C10uIPoP93aWLl4gHGRgiI8p7bwhIJLl8NiuOl/bqdvE3N7pAZYTeKG7lSxtc88++uvJKWA=="
},
"@walmart/receipt-check-miniapp": {
- "version": "1.9.14",
- "resolved": "https://npme.walmart.com/@walmart/receipt-check-miniapp/-/receipt-check-miniapp-1.9.14.tgz",
- "integrity": "sha512-Jphki3mbYG0E1hr+l2PX6uAMlcbyIqoQGYUVJNCLnQUwnf0yJ3vNzB0qX06n7X+Ptb5kTdtiKQnabHXCuu22Nw==",
+ "version": "1.10.1",
+ "resolved": "https://npme.walmart.com/@walmart/receipt-check-miniapp/-/receipt-check-miniapp-1.10.1.tgz",
+ "integrity": "sha512-RLHsLphq5I6jRw+oBieCnGzwFD6gXKS1lFweEF6Nh25g7vKsXFl0pn79KEwPatciyjqVW99YMzZLjNNO4oURWA==",
"requires": {
"@walmart/tcnumber": "^2.3.3",
"@xstate/react": "^3.0.1",
--- package.json
@@ -116,7 +116,7 @@
"@walmart/react-native-shared-navigation": "1.0.2",
"@walmart/react-native-store-map": "0.3.7",
"@walmart/react-native-sumo-sdk": "2.5.1",
- "@walmart/receipt-check-miniapp": "1.9.14",
+ "@walmart/receipt-check-miniapp": "1.10.1",
"@walmart/redux-store": "3.1.3",
"@walmart/returns-mini-app": "0.12.0",
"@walmart/schedule-mini-app": "0.33.0",
| bump version number for spark shopper and item verify | bump version number for spark shopper and item verify
|
c22cdf20e27d5f2d872d7909edc449fad6e1e854 | --- __tests__/utils/blobs-test.js
@@ -1,11 +1,7 @@
import moment from 'moment-timezone';
import * as FileSystem from 'expo-file-system';
import {stat} from 'react-native-fs';
-import {
- purgeOldFiles,
- blobLocalStoragePath,
- isValidFileURI,
-} from '../../src/utils';
+import {purgeOldFiles, blobLocalStoragePath} from '../../src/utils';
const MOCK_FILES = {
'older/file/path': {
--- android/app/src/main/AndroidManifest.xml
@@ -39,8 +39,7 @@
android:allowBackup="false"
android:theme="@style/AppTheme"
tools:replace="android:allowBackup"
- android:extractNativeLibs="true"
- >
+ android:extractNativeLibs="true">
<!-- disables automatic screen tracking; removing for now due to an issue: https://github.com/firebase/firebase-android-sdk/issues/3240 -->
<!-- <meta-data
--- src/utils/blob.ts
@@ -2,7 +2,6 @@ import {Platform} from 'react-native';
import * as FileSystem from 'expo-file-system';
import {stat} from 'react-native-fs';
import moment from 'moment-timezone';
-import {isNil} from 'lodash';
// --- Local Blob Storage --- //
// Interaction with the local filesystem
--- __tests__/utils/blobs-test.js
@@ -1,11 +1,7 @@
import moment from 'moment-timezone';
import * as FileSystem from 'expo-file-system';
import {stat} from 'react-native-fs';
-import {
- purgeOldFiles,
- blobLocalStoragePath,
- isValidFileURI,
-} from '../../src/utils';
+import {purgeOldFiles, blobLocalStoragePath} from '../../src/utils';
const MOCK_FILES = {
'older/file/path': {
--- android/app/src/main/AndroidManifest.xml
@@ -39,8 +39,7 @@
android:allowBackup="false"
android:theme="@style/AppTheme"
tools:replace="android:allowBackup"
- android:extractNativeLibs="true"
- >
+ android:extractNativeLibs="true">
<!-- disables automatic screen tracking; removing for now due to an issue: https://github.com/firebase/firebase-android-sdk/issues/3240 -->
<!-- <meta-data
--- src/utils/blob.ts
@@ -2,7 +2,6 @@ import {Platform} from 'react-native';
import * as FileSystem from 'expo-file-system';
import {stat} from 'react-native-fs';
import moment from 'moment-timezone';
-import {isNil} from 'lodash';
// --- Local Blob Storage --- //
// Interaction with the local filesystem
| cleaning up PR | cleaning up PR
|
596ae664986f2a34852dd65b5a361be7e510c5a8 | --- __tests__/__mocks__/@walmart/refrigeration-alarms-mini-app.js
| Update mock for refrigeration app | Update mock for refrigeration app
|
3e2d605883be108deefa9273ce431a9a3706ce1a | --- targets/US/ios/Podfile.lock
@@ -1941,7 +1941,7 @@ PODS:
- React-Core
- react-native-safe-area-context (4.10.8):
- React-Core
- - react-native-scanner-3.0 (0.10.2):
+ - react-native-scanner-3.0 (0.10.1):
- Firebase/Analytics
- Osiris (= 0.8.3-rc.4)
- OsirisBarcode (= 0.8.3-rc.4)
@@ -2879,7 +2879,7 @@ SPEC CHECKSUMS:
react-native-pdf: 103940c90d62adfd259f63cca99c7c0c306b514c
react-native-render-html: 984dfe2294163d04bf5fe25d7c9f122e60e05ebe
react-native-safe-area-context: b7daa1a8df36095a032dff095a1ea8963cb48371
- react-native-scanner-3.0: 4f69b408149fa274a4ac5187a33c0fc8640ec99d
+ react-native-scanner-3.0: d7cd39fb50297265fe04fba5eb57fb33290ba52c
react-native-splash-screen: 4312f786b13a81b5169ef346d76d33bc0c6dc457
react-native-video: c26780b224543c62d5e1b2a7244a5cd1b50e8253
react-native-view-shot: 6b7ed61d77d88580fed10954d45fad0eb2d47688
@@ -2955,8 +2955,9 @@ SPEC CHECKSUMS:
walmart-react-native-sumo-sdk: 49d6a1873b29b2279433bd4346755206ac60e1fd
WebexSDK: 8a46648ec5992f1a10de5375e91df35750275445
wifi-store-locator: 501fca0a220c725ed93ab403635c0f246a8ce7e3
- Yoga: 47d399a73c0c0caa9ff824e5c657eae31215bfee
+ Yoga: c716aea2ee01df6258550c7505fa61b248145ced
+ zxing-cpp: c597ce11887c1f17576a71b449fae721900bc46b
-PODFILE CHECKSUM: e45caceff59820fc357600d6b2277634c8242734
+PODFILE CHECKSUM: f89f8fd084718a8459bfad1ed1081b9af51bc555
-COCOAPODS: 1.15.2
+COCOAPODS: 1.14.3
--- targets/US/package.json
@@ -131,7 +131,7 @@
"@walmart/react-native-encrypted-storage": "~1.1.3",
"@walmart/react-native-env": "~6.3.28",
"@walmart/react-native-logger": "1.35.0",
- "@walmart/react-native-scanner-3.0": "0.10.2",
+ "@walmart/react-native-scanner-3.0": "0.10.1",
"@walmart/react-native-shared-navigation": "~6.3.28",
"@walmart/react-native-store-map": "0.3.7",
"@walmart/react-native-sumo-sdk": "2.7.2-alpha.2",
--- yarn.lock
@@ -7047,7 +7047,7 @@ __metadata:
"@walmart/react-native-encrypted-storage": "npm:~1.1.3"
"@walmart/react-native-env": "npm:~6.3.28"
"@walmart/react-native-logger": "npm:1.35.0"
- "@walmart/react-native-scanner-3.0": "npm:0.10.2"
+ "@walmart/react-native-scanner-3.0": "npm:0.10.1"
"@walmart/react-native-shared-navigation": "npm:~6.3.28"
"@walmart/react-native-store-map": "npm:0.3.7"
"@walmart/react-native-sumo-sdk": "npm:2.7.2-alpha.2"
@@ -7626,12 +7626,12 @@ __metadata:
languageName: node
linkType: hard
-"@walmart/react-native-scanner-3.0@npm:0.10.2":
- version: 0.10.2
- resolution: "@walmart/react-native-scanner-3.0@npm:0.10.2"
+"@walmart/react-native-scanner-3.0@npm:0.10.1":
+ version: 0.10.1
+ resolution: "@walmart/react-native-scanner-3.0@npm:0.10.1"
peerDependencies:
react-native: ">=0.47.1"
- checksum: 10c0/7bf01ce3991d375e2c5a2ec88c81b5d7d3952e0480f2fe7dbe3e228a5f780c5721b2bcfab32db5611bcdf10ed081941421c4a7a58130333c2e6489f4bf6146b1
+ checksum: 10c0/48c777234afaf07d6f4628dbd880870fc3f64016447e26a55d472453d1c397d94d6f270b91e6340ff8f109207f3f6e0d1385369ea197a850cff142d41be45dbc
languageName: node
linkType: hard
| updating scanner verison to 0.10.1 | updating scanner verison to 0.10.1
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.