diff --git a/nym-wallet/openspec/changes/node-families-real-ipc/design.md b/nym-wallet/openspec/changes/node-families-real-ipc/design.md index 95c4db3580..6e1d44d10c 100644 --- a/nym-wallet/openspec/changes/node-families-real-ipc/design.md +++ b/nym-wallet/openspec/changes/node-families-real-ipc/design.md @@ -26,8 +26,8 @@ Reuse the existing bonding/account node info the wallet already fetches (the ope **D4 — Generate contract types via ts-rs (`nym-wallet-types`) and reconcile with `src/types/families.ts`.** `src/types/families.ts` was hand-written for the mock. Prefer generating the canonical shapes from the contract Rust types (ts-rs, as other wallet types are) and reconciling field-by-field (cursors, paged envelope, membership, `FamilyTxResult`). Where the hand-written type and generated type diverge, the generated (contract-truth) shape wins; update the mock/types accordingly so mock and real stay parity. -**D5 — `get_family_config` maps to the contract config/state query.** -The signing trait has `update_node_families_config`; the read side is a contract config/state query (via the generic `query_node_families_contract` if no dedicated method). Wire `get_family_config` to it and shape it to the frontend `FamilyConfig` (e.g. `create_family_fee`). +**D5 — `get_family_config`: no smart query exists → read raw contract state.** +*Confirmed from the contract:* `QueryMsg` has **no** `GetConfig` variant (only `UpdateConfig { config }` execute + `config` in instantiate), and the validator-client query trait has no config getter. So `get_family_config` can't be a normal smart query. Options: (a) **raw contract-state read** of the `Config` `Item` via `query_contract_raw` at its storage key (no contract change; preferred); (b) hardcode/derive client-side (brittle); (c) add a `GetConfig` query to the contract (out of scope here). Plan: (a). The UI only uses `FamilyConfig` for cosmetic fee display, so if (a) proves awkward, `get_family_config` can degrade gracefully without blocking the journeys. **D6 — Sandbox e2e in two stages; writes are guarded and may stay partly manual.** (1) **Read smoke** (non-mutating): point a build at the real provider + sandbox, assert the Family page renders the known family/member — automatable and safe. (2) **Write flows**: require a *dedicated funded sandbox test account* (mnemonic via CI secret) and tolerate on-chain latency/fees; they mutate real state, so they must target only that account's family/nodes and clean up (disband/leave) at the end. Iterate until the owner/operator journeys pass. If headless account provisioning isn't available, the write tier stays a documented manual run while the read smoke gates CI. *This is the riskiest part and the one most likely to need iteration.* @@ -49,7 +49,8 @@ Additive: the commands don't exist today, so adding them only enables the alread ## Open Questions -- Is there a dedicated funded **sandbox test account** we can use headlessly (mnemonic in CI secrets), or does the write tier stay manual initially? -- Does any current view actually read `FamilyTxResult.family_events`, or is query-refresh sufficient (confirms D2)? -- `get_family_config` — dedicated contract query vs generic state read (confirm during impl). -- Should `src/types/families.ts` be replaced wholesale by ts-rs output, or kept and reconciled selectively? +- ~~Is there a dedicated funded sandbox test account we can use headlessly?~~ **RESOLVED:** yes — a dedicated **sandbox** account is provisioned. Address `n13jtj2unhhtryxllnuc8zkng3nl4xnnjvxe0tzv`, funded with ~101,000 NYM; mnemonic stored in vault as secret **`TAURI-WALLET-MNEMONIC`** (vault.nymte.ch item `95d3d842-90ad-4b6f-8b0c-10f5febce1c3`) — inject via CI secret, never commit it. Inspect with `nym-cli -c sandbox.env account balance `. Write flows (§5) target only this account; clean up (disband/leave) so it stays reusable. +- ~~Does any view read `FamilyTxResult.family_events`?~~ **RESOLVED:** no — only the type def + the mock/provider *produce* it; nothing reads it, so query-refresh is sufficient (confirms D2, no event parsing needed). +- ~~`get_family_config` mapping?~~ **RESOLVED:** the contract has no config query → read raw contract state (design D5); degrades gracefully (fee display is cosmetic). +- ~~`update_family` arg shape?~~ **RESOLVED:** contract is `UpdateFamily { updated_name, updated_description: Option }` — matches the frontend args + parent §9.5. +- **Still a decision (not a blocker):** replace `src/types/families.ts` wholesale with ts-rs output vs reconcile selectively. Default: reconcile selectively, contract-truth shape wins (design D4). diff --git a/nym-wallet/openspec/changes/node-families-real-ipc/tasks.md b/nym-wallet/openspec/changes/node-families-real-ipc/tasks.md index 2d1e4bb7b4..5f348f7a97 100644 --- a/nym-wallet/openspec/changes/node-families-real-ipc/tasks.md +++ b/nym-wallet/openspec/changes/node-families-real-ipc/tasks.md @@ -26,7 +26,7 @@ ## 5. Sandbox execute flows (guarded) + iterate to green -- [ ] 5.1 Provision/identify a **dedicated funded sandbox test account** (mnemonic via CI secret); confirm it can pay fees and is safe to mutate. +- [x] 5.1 **Sandbox test account provisioned + funded:** `n13jtj2unhhtryxllnuc8zkng3nl4xnnjvxe0tzv` (~101,000 NYM — ample for fees/repeat runs); mnemonic in vault secret `TAURI-WALLET-MNEMONIC` (item `95d3d842-90ad-4b6f-8b0c-10f5febce1c3`). Inject via CI secret only — never commit. Verify/inspect with `nym-cli -c sandbox.env account balance ` (also handy for pre/post-run state checks + cleanup). Tests target only this account and clean up after. - [ ] 5.2 Run the owner journey (create → invite → accept → kick → disband) against that account on sandbox through the real provider; handle on-chain latency (poll/refresh) and clean up state at the end. - [ ] 5.3 Run the operator journey (accept → leave, reject) against seeded invites for that account's nodes. - [ ] 5.4 Iterate (fix command/type/timing issues) until both journeys pass against sandbox; keep the write tier non-blocking/manual until headless provisioning is reliable. diff --git a/nym-wallet/openspec/changes/node-families-tauri-webdriver-e2e/design.md b/nym-wallet/openspec/changes/node-families-tauri-webdriver-e2e/design.md index 73a2df650e..aa81b4c6ae 100644 --- a/nym-wallet/openspec/changes/node-families-tauri-webdriver-e2e/design.md +++ b/nym-wallet/openspec/changes/node-families-tauri-webdriver-e2e/design.md @@ -84,4 +84,4 @@ All four prior open questions are now resolved: - **Sandbox smoke placement / family id** → documented manual step first, pinning the known sandbox family id; CI only once a headless test account exists (**D9**). - **Retire Storybook-iframe Playwright specs?** → yes; one suite, repointed at the dev server (**D10**). -Residual (a follow-up, not a blocker): provisioning a headless sandbox test account would let D9's smoke graduate from manual to CI. +Residual (a follow-up, not a blocker): provisioning a headless sandbox test account would let D9's smoke graduate from manual to CI. **Update:** that account now exists (sandbox `n13jtj2...e0tzv`, mnemonic in vault secret `TAURI-WALLET-MNEMONIC`) — the graduation is now actionable, tracked in the `node-families-real-ipc` change (§4–5). diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 181feda857..9546c0269a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -211,6 +211,7 @@ catalogs: specifier: ^8.3.4 version: 8.3.4 <<<<<<< HEAD +<<<<<<< HEAD ======= <<<<<<< HEAD '@types/ws': @@ -219,6 +220,8 @@ catalogs: ======= >>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@types/zxcvbn': specifier: ^4.4.1 version: 4.4.5 @@ -370,6 +373,7 @@ catalogs: specifier: ^7.2.1 version: 7.3.0 <<<<<<< HEAD +<<<<<<< HEAD ======= <<<<<<< HEAD glob: @@ -378,6 +382,8 @@ catalogs: ======= >>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) hex-rgb: specifier: ^4.3.0 version: 4.3.0 @@ -526,6 +532,7 @@ catalogs: specifier: ^3.5.2 version: 3.5.2 <<<<<<< HEAD +<<<<<<< HEAD ======= <<<<<<< HEAD tslib: @@ -534,6 +541,8 @@ catalogs: ======= >>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) tweetnacl: specifier: ^1.0.3 version: 1.0.3 @@ -1321,6 +1330,7 @@ importers: version: 9.27.2 webpack: specifier: 'catalog:' +<<<<<<< HEAD <<<<<<< HEAD version: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -1330,6 +1340,9 @@ importers: version: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + version: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) webpack-cli: specifier: 'catalog:' version: 4.10.0(webpack-dev-server@4.15.2)(webpack@5.106.2) @@ -1343,6 +1356,7 @@ importers: specifier: 'catalog:' version: 5.10.0 +<<<<<<< HEAD <<<<<<< HEAD ======= sdk/typescript/codegen/contract-clients: @@ -2342,6 +2356,8 @@ importers: version: 4.9.5 >>>>>>> dea01ef63 (NYM-1199: integrate OpenSpec AI for Node Families UI) +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) sdk/typescript/packages/mui-theme: dependencies: '@mui/material': @@ -2416,11 +2432,15 @@ importers: version: 3.0.2 ts-jest: specifier: 'catalog:' +<<<<<<< HEAD <<<<<<< HEAD version: 27.1.5(@babel/core@7.29.0)(babel-jest@27.5.1(@babel/core@7.29.0))(esbuild@0.25.12)(jest@27.5.1)(typescript@4.9.5) ======= version: 27.1.5(@babel/core@7.29.0)(@types/jest@27.5.2)(babel-jest@27.5.1(@babel/core@7.29.0))(jest@27.5.1)(typescript@4.9.5) >>>>>>> dea01ef63 (NYM-1199: integrate OpenSpec AI for Node Families UI) +======= + version: 27.1.5(@babel/core@7.29.0)(babel-jest@27.5.1(@babel/core@7.29.0))(jest@27.5.1)(typescript@4.9.5) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) typescript: specifier: ^4.6.2 version: 4.9.5 @@ -2490,6 +2510,7 @@ importers: version: 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@storybook/addon-docs': specifier: 'catalog:' +<<<<<<< HEAD <<<<<<< HEAD version: 6.5.16(@babel/core@7.29.0)(eslint@9.39.4)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)) '@storybook/addon-essentials': @@ -2502,12 +2523,17 @@ importers: specifier: 'catalog:' version: 6.5.16(@babel/core@7.29.0)(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(eslint@9.39.4)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.25.12)(postcss@8.5.14)) ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) version: 6.5.16(@babel/core@7.29.0)(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) '@storybook/addon-essentials': specifier: 'catalog:' version: 6.5.16(@babel/core@7.29.0)(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) +<<<<<<< HEAD >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@storybook/addon-interactions': specifier: 'catalog:' version: 6.5.16(@types/react@19.2.14)(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) @@ -2516,6 +2542,7 @@ importers: version: 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@storybook/builder-webpack5': specifier: 'catalog:' +<<<<<<< HEAD <<<<<<< HEAD version: 6.5.16(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) ======= @@ -2532,6 +2559,8 @@ importers: ======= version: 6.5.16(@babel/core@7.29.0)(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@swc/core@1.15.40(@swc/helpers@0.5.21))(@types/webpack@4.41.40)(encoding@0.1.13)(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(require-from-string@2.0.2)(type-fest@4.41.0)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.25.12)(postcss@8.5.14)))(webpack-hot-middleware@2.26.1) ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) version: 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) '@storybook/manager-webpack5': specifier: 'catalog:' @@ -2539,8 +2568,11 @@ importers: '@storybook/react': specifier: 'catalog:' version: 6.5.16(@babel/core@7.29.0)(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@swc/core@1.15.40(@swc/helpers@0.5.21))(@types/webpack@4.41.40)(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(require-from-string@2.0.2)(type-fest@4.41.0)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)))(webpack-hot-middleware@2.26.1) +<<<<<<< HEAD >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@storybook/testing-library': specifier: 'catalog:' version: 0.0.9(storybook@10.4.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@testing-library/dom@8.20.1)(@types/react@19.2.14)(prettier@2.8.8)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)) @@ -2567,7 +2599,11 @@ importers: version: 5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5) babel-loader: specifier: 'catalog:' +<<<<<<< HEAD version: 8.4.1(@babel/core@7.29.0)(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)) +======= + version: 8.4.1(@babel/core@7.29.0)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) babel-plugin-root-import: specifier: ^5.1.0 version: 5.1.0 @@ -2618,11 +2654,15 @@ importers: version: 3.0.2 ts-jest: specifier: 'catalog:' +<<<<<<< HEAD <<<<<<< HEAD version: 27.1.5(@babel/core@7.29.0)(babel-jest@27.5.1(@babel/core@7.29.0))(esbuild@0.25.12)(jest@27.5.1)(typescript@4.9.5) ======= version: 27.1.5(@babel/core@7.29.0)(@types/jest@27.5.2)(babel-jest@27.5.1(@babel/core@7.29.0))(jest@27.5.1)(typescript@4.9.5) >>>>>>> dea01ef63 (NYM-1199: integrate OpenSpec AI for Node Families UI) +======= + version: 27.1.5(@babel/core@7.29.0)(babel-jest@27.5.1(@babel/core@7.29.0))(jest@27.5.1)(typescript@4.9.5) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) tsconfig-paths-webpack-plugin: specifier: 'catalog:' version: 3.5.2 @@ -2756,11 +2796,15 @@ importers: version: 3.0.2 ts-jest: specifier: 'catalog:' +<<<<<<< HEAD <<<<<<< HEAD version: 27.1.5(@babel/core@7.29.0)(babel-jest@27.5.1(@babel/core@7.29.0))(esbuild@0.25.12)(jest@27.5.1)(typescript@4.9.5) ======= version: 27.1.5(@babel/core@7.29.0)(@types/jest@27.5.2)(babel-jest@27.5.1(@babel/core@7.29.0))(jest@27.5.1)(typescript@4.9.5) >>>>>>> dea01ef63 (NYM-1199: integrate OpenSpec AI for Node Families UI) +======= + version: 27.1.5(@babel/core@7.29.0)(babel-jest@27.5.1(@babel/core@7.29.0))(jest@27.5.1)(typescript@4.9.5) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) typescript: specifier: ^4.6.2 version: 4.9.5 @@ -3877,6 +3921,7 @@ packages: react: ^18.0.0 || ^19.0.0 react-dom: ^18.0.0 || ^19.0.0 +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -3890,10 +3935,11 @@ packages: resolution: {integrity: sha512-JYd2NB21eBL9SjZI/lFJrXUWrinfC9aQqP+E/HFrP2KbnP673Uj3SATg0jpLZ/BpUMV/UN2DSmultsQX938mIA==} hasBin: true ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@csstools/color-helpers@5.1.0': resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==} engines: {node: '>=18'} ->>>>>>> 75d3d25f4 ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) >>>>>>> 94f1568ac ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) '@csstools/color-helpers@6.0.2': @@ -4445,6 +4491,7 @@ packages: '@noble/hashes': optional: true +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -4452,6 +4499,8 @@ packages: resolution: {integrity: sha512-RTMvx6v3b4D9V9iXHTogYjHa5fCmcUR3Bu0pFreo+80v2tD+7MSJm24nR1P/SkeTCy+zHKC1JOFQa04fcWZozg==} engines: {node: '>=v14'} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@figma/code-connect@1.4.7': resolution: {integrity: sha512-iWolnm/X/LZVEvbt/D8AQ0IohnNskrTtDcdtGNEZKqUnBh+zDyQQ+m1HnM9+C00NveRbENfhs13QxrTYcOrvEA==} engines: {node: '>=18'} @@ -4460,7 +4509,6 @@ packages: '@fission-ai/openspec@1.3.1': resolution: {integrity: sha512-QnbJfq/lUNCRY+TTXo87fuIpGCCaOYt280tmbuI112B/1vF0feIneK0/qhoTZNslRDhwwg1YcYDX0suxq2h6tw==} engines: {node: '>=20.19.0'} ->>>>>>> 75d3d25f4 ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) hasBin: true >>>>>>> 94f1568ac ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) @@ -5688,6 +5736,247 @@ packages: '@octokit/types@9.3.2': resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} +<<<<<<< HEAD +======= + '@oxc-parser/binding-android-arm-eabi@0.127.0': + resolution: {integrity: sha512-0LC7ye4hvqbIKxAzThzvswgHLFu2AURKzYLeSVvLdu2TBOYWQDmHnTqPLeA597BcUCxiLqLsS4CJ5uoI5WYWCQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [android] + + '@oxc-parser/binding-android-arm64@0.127.0': + resolution: {integrity: sha512-b5jtVTH6AU5CJXHNdj7Jj9IEiR9yVjjnwHzPJhGyHGPdcsZSzBCkS9GBbV33niRMvKthDwQRFRJfI4a+k4PvYg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + + '@oxc-parser/binding-darwin-arm64@0.127.0': + resolution: {integrity: sha512-obCE8B7ISKkJidjlhv9xRGJPOSDG2Yu6PRga9Ruaz35uintHxbp1Ki/Yc71wx4rj3Edrm0a1kzG1TAwit0wFpg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + + '@oxc-parser/binding-darwin-x64@0.127.0': + resolution: {integrity: sha512-JL6Xb5IwPQT8rUzlpsX7E+AgfcdNklXNPFp8pjCQQ5MQOQo5rtEB2ui+3Hgg9Sn7Y9Egj6YOLLiHhLpdAe12Aw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + + '@oxc-parser/binding-freebsd-x64@0.127.0': + resolution: {integrity: sha512-SDQ/3MQFw58fqQz3Z1PhSKFF3JoCF4gmlNjziDm8X02tTahCw0qJbd7FGPDKw1i4VTBZene9JPyC3mHtSvi+wA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + + '@oxc-parser/binding-linux-arm-gnueabihf@0.127.0': + resolution: {integrity: sha512-Av+D1MIqzV0YMGPT9we2SIZaMKD7Cxs4CvXSx/yxaWHewZjYEjScpOf5igc8IILASViw4WTnjlwUdI1KzVtDHQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@oxc-parser/binding-linux-arm-musleabihf@0.127.0': + resolution: {integrity: sha512-Cs2fdJ8cPpFdeebj6p4dag8A4+56hPvZ0AhQQzlaLswGz1tz7bXt1nETLeorrM9+AMcWFFkqxcXwDGfTVidY8g==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@oxc-parser/binding-linux-arm64-gnu@0.127.0': + resolution: {integrity: sha512-qdOfTcT6SY8gsJrrV92uyEUyjqMGPpIB5JZUG6QN5dukYd+7/j0kX6MwK1DgQj39jtUYixxPiaRUiEN1+0CXgQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-arm64-musl@0.127.0': + resolution: {integrity: sha512-EoTCZneNFU/P2qrpEM+RHmQwt+CvDkyGESG6qhr7KaegXLZwePfbrkCDfAk8/rhxbDUVGsZILX+2tqPzFtoFWA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@oxc-parser/binding-linux-ppc64-gnu@0.127.0': + resolution: {integrity: sha512-zALjmZYgxFLHjXeudcDF0xFGNydTAtkAeXAr2EuC17ywCyFxcmQra4w0BMde0Yi/re4Bi4iwEoEXtYN7l6eBLQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-riscv64-gnu@0.127.0': + resolution: {integrity: sha512-fPP8M6zQLS7Jz7o9d5ArUSuAuSK3e+WCYVrCpdzeCOejidtZExJ9tjhDrAd3HEPqARBCPmdpqxESPFqy44vkBQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-riscv64-musl@0.127.0': + resolution: {integrity: sha512-7IcC4Ao02oGpfnjt+X/oF4U2mllo2qoSkw5xxiXNKL9MCTsTiAC6616beOuehdxGcnz1bRoPC1RQ2f1GQDdN+g==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [riscv64] + os: [linux] + libc: [musl] + + '@oxc-parser/binding-linux-s390x-gnu@0.127.0': + resolution: {integrity: sha512-pbXIhiNFHoqWeqDNLiJ9JkpHz1IM9k4DXa66x+1GTWMG7iLxtkXgE53iiuKSXwmk3zIYmaPVfBvgcAhS583K4Q==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-x64-gnu@0.127.0': + resolution: {integrity: sha512-MYCguB9RvBvlSd6gbuNI7QwiLoCCAlGnlRJFPrzLI6U1/9wkC/WK6LtBAUln55H1Ctqw45PWmqrobKoMhsYQzQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-x64-musl@0.127.0': + resolution: {integrity: sha512-5eY0B/bxf1xIUxb4NOTvOI3KWtBQfPWYyKAzgcrCt0mDibSZygVpO1Pz8bkeiSZ5Jj9+M09dkggG3H8I5d0Uyg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [musl] + + '@oxc-parser/binding-openharmony-arm64@0.127.0': + resolution: {integrity: sha512-Gld0ajrFTUXNtdw20fVBuTQx66FA75nIVg+//pPfR3sXkuABB4mTBhl3r9JNzrJpgW//qiwxf0nWXUWGJSL3UQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + + '@oxc-parser/binding-wasm32-wasi@0.127.0': + resolution: {integrity: sha512-T6KVD7rhLzFlwGRXMnxUFfkCZD8FHnb968wVXW1mXzgRFc5RNXOBY2mPPDZ77x5Ln76ltLMgtPg0cOkU1NSrEQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [wasm32] + + '@oxc-parser/binding-win32-arm64-msvc@0.127.0': + resolution: {integrity: sha512-Ujvw4X+LD1CCGULcsQcvb4YNVoBGqt+JHgNNzGGaCImELiZLk477ifUH53gIbE7EKd933NdTi25JWEr9K2HwXw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + + '@oxc-parser/binding-win32-ia32-msvc@0.127.0': + resolution: {integrity: sha512-0cwxKO7KHQQQfo4Uf4B2SQrhgm+cJaP9OvFFhx52Tkg4bezsacu83GB2/In5bC415Ueeym+kXdnge/57rbSfTw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ia32] + os: [win32] + + '@oxc-parser/binding-win32-x64-msvc@0.127.0': + resolution: {integrity: sha512-rOrnSQSCbhI2kowr9XxE7m9a8oQXnBHjnS6j95LxxAnEZ0+Fz20WlRXG4ondQb+ejjt2KOsa65sE6++L6kUd+w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + + '@oxc-project/types@0.127.0': + resolution: {integrity: sha512-aIYXQBo4lCbO4z0R3FHeucQHpF46l2LbMdxRvqvuRuW2OxdnSkcng5B8+K12spgLDj93rtN3+J2Vac/TIO+ciQ==} + + '@oxc-resolver/binding-android-arm-eabi@11.19.1': + resolution: {integrity: sha512-aUs47y+xyXHUKlbhqHUjBABjvycq6YSD7bpxSW7vplUmdzAlJ93yXY6ZR0c1o1x5A/QKbENCvs3+NlY8IpIVzg==} + cpu: [arm] + os: [android] + + '@oxc-resolver/binding-android-arm64@11.19.1': + resolution: {integrity: sha512-oolbkRX+m7Pq2LNjr/kKgYeC7bRDMVTWPgxBGMjSpZi/+UskVo4jsMU3MLheZV55jL6c3rNelPl4oD60ggYmqA==} + cpu: [arm64] + os: [android] + + '@oxc-resolver/binding-darwin-arm64@11.19.1': + resolution: {integrity: sha512-nUC6d2i3R5B12sUW4O646qD5cnMXf2oBGPLIIeaRfU9doJRORAbE2SGv4eW6rMqhD+G7nf2Y8TTJTLiiO3Q/dQ==} + cpu: [arm64] + os: [darwin] + + '@oxc-resolver/binding-darwin-x64@11.19.1': + resolution: {integrity: sha512-cV50vE5+uAgNcFa3QY1JOeKDSkM/9ReIcc/9wn4TavhW/itkDGrXhw9jaKnkQnGbjJ198Yh5nbX/Gr2mr4Z5jQ==} + cpu: [x64] + os: [darwin] + + '@oxc-resolver/binding-freebsd-x64@11.19.1': + resolution: {integrity: sha512-xZOQiYGFxtk48PBKff+Zwoym7ScPAIVp4c14lfLxizO2LTTTJe5sx9vQNGrBymrf/vatSPNMD4FgsaaRigPkqw==} + cpu: [x64] + os: [freebsd] + + '@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1': + resolution: {integrity: sha512-lXZYWAC6kaGe/ky2su94e9jN9t6M0/6c+GrSlCqL//XO1cxi5lpAhnJYdyrKfm0ZEr/c7RNyAx3P7FSBcBd5+A==} + cpu: [arm] + os: [linux] + + '@oxc-resolver/binding-linux-arm-musleabihf@11.19.1': + resolution: {integrity: sha512-veG1kKsuK5+t2IsO9q0DErYVSw2azvCVvWHnfTOS73WE0STdLLB7Q1bB9WR+yHPQM76ASkFyRbogWo1GR1+WbQ==} + cpu: [arm] + os: [linux] + + '@oxc-resolver/binding-linux-arm64-gnu@11.19.1': + resolution: {integrity: sha512-heV2+jmXyYnUrpUXSPugqWDRpnsQcDm2AX4wzTuvgdlZfoNYO0O3W2AVpJYaDn9AG4JdM6Kxom8+foE7/BcSig==} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@oxc-resolver/binding-linux-arm64-musl@11.19.1': + resolution: {integrity: sha512-jvo2Pjs1c9KPxMuMPIeQsgu0mOJF9rEb3y3TdpsrqwxRM+AN6/nDDwv45n5ZrUnQMsdBy5gIabioMKnQfWo9ew==} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@oxc-resolver/binding-linux-ppc64-gnu@11.19.1': + resolution: {integrity: sha512-vLmdNxWCdN7Uo5suays6A/+ywBby2PWBBPXctWPg5V0+eVuzsJxgAn6MMB4mPlshskYbppjpN2Zg83ArHze9gQ==} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@oxc-resolver/binding-linux-riscv64-gnu@11.19.1': + resolution: {integrity: sha512-/b+WgR+VTSBxzgOhDO7TlMXC1ufPIMR6Vj1zN+/x+MnyXGW7prTLzU9eW85Aj7Th7CCEG9ArCbTeqxCzFWdg2w==} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@oxc-resolver/binding-linux-riscv64-musl@11.19.1': + resolution: {integrity: sha512-YlRdeWb9j42p29ROh+h4eg/OQ3dTJlpHSa+84pUM9+p6i3djtPz1q55yLJhgW9XfDch7FN1pQ/Vd6YP+xfRIuw==} + cpu: [riscv64] + os: [linux] + libc: [musl] + + '@oxc-resolver/binding-linux-s390x-gnu@11.19.1': + resolution: {integrity: sha512-EDpafVOQWF8/MJynsjOGFThcqhRHy417sRyLfQmeiamJ8qVhSKAn2Dn2VVKUGCjVB9C46VGjhNo7nOPUi1x6uA==} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@oxc-resolver/binding-linux-x64-gnu@11.19.1': + resolution: {integrity: sha512-NxjZe+rqWhr+RT8/Ik+5ptA3oz7tUw361Wa5RWQXKnfqwSSHdHyrw6IdcTfYuml9dM856AlKWZIUXDmA9kkiBQ==} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@oxc-resolver/binding-linux-x64-musl@11.19.1': + resolution: {integrity: sha512-cM/hQwsO3ReJg5kR+SpI69DMfvNCp+A/eVR4b4YClE5bVZwz8rh2Nh05InhwI5HR/9cArbEkzMjcKgTHS6UaNw==} + cpu: [x64] + os: [linux] + libc: [musl] + + '@oxc-resolver/binding-openharmony-arm64@11.19.1': + resolution: {integrity: sha512-QF080IowFB0+9Rh6RcD19bdgh49BpQHUW5TajG1qvWHvmrQznTZZjYlgE2ltLXyKY+qs4F/v5xuX1XS7Is+3qA==} + cpu: [arm64] + os: [openharmony] + + '@oxc-resolver/binding-wasm32-wasi@11.19.1': + resolution: {integrity: sha512-w8UCKhX826cP/ZLokXDS6+milN8y4X7zidsAttEdWlVoamTNf6lhBJldaWr3ukTDiye7s4HRcuPEPOXNC432Vg==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@oxc-resolver/binding-win32-arm64-msvc@11.19.1': + resolution: {integrity: sha512-nJ4AsUVZrVKwnU/QRdzPCCrO0TrabBqgJ8pJhXITdZGYOV28TIYystV1VFLbQ7DtAcaBHpocT5/ZJnF78YJPtQ==} + cpu: [arm64] + os: [win32] + + '@oxc-resolver/binding-win32-ia32-msvc@11.19.1': + resolution: {integrity: sha512-EW+ND5q2Tl+a3pH81l1QbfgbF3HmqgwLfDfVithRFheac8OTcnbXt/JxqD2GbDkb7xYEqy1zNaVFRr3oeG8npA==} + cpu: [ia32] + os: [win32] + + '@oxc-resolver/binding-win32-x64-msvc@11.19.1': + resolution: {integrity: sha512-6hIU3RQu45B+VNTY4Ru8ppFwjVS/S5qwYyGhBotmjxfEKk41I2DlGtRfGJndZ5+6lneE2pwloqunlOyZuX/XAw==} + cpu: [x64] + os: [win32] + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@parcel/watcher@2.0.4': resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} engines: {node: '>= 10.0.0'} @@ -5769,6 +6058,7 @@ packages: '@protobufjs/utf8@1.1.1': resolution: {integrity: sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -5779,10 +6069,11 @@ packages: resolution: {integrity: sha512-+aSzXDLhMHOEdV2cJ7Tjg/9YenjHU5BCmClVygzwxJZ1R16NOfEn7lTAwVzb/2jivOSnhjHzMJbnSf8b6rd1zg==} engines: {node: '>=12.0.0'} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@puppeteer/browsers@2.13.2': resolution: {integrity: sha512-5EUZSUIc37H6aIXyWO0Z4y8NlF8NnjgmqeQgOGiswAU7pY0HOo16ho4+alIWmSfdZnjqBRawMsP3I5YqLSn6kw==} engines: {node: '>=18'} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) hasBin: true >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) @@ -7090,6 +7381,12 @@ packages: '@types/react@19.2.14': resolution: {integrity: sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==} +<<<<<<< HEAD +======= + '@types/resolve@1.20.6': + resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@types/retry@0.12.0': resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} @@ -7108,15 +7405,17 @@ packages: '@types/serve-static@1.15.10': resolution: {integrity: sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw==} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD '@types/shelljs@0.8.15': resolution: {integrity: sha512-vzmnCHl6hViPu9GNLQJ+DZFd6BQI2DBTUeOvYHqkWQLMfKAAQYMb/xAmZkTogZI/vqXHCWkqDRymDI5p0QTi5Q==} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@types/sinonjs__fake-timers@8.1.5': resolution: {integrity: sha512-mQkU2jY8jJEF7YHjHvsQO8+3ughTL1mcnn96igfhONmR+fUPSKIkefQYpSe8bsly2Ep7oQbn/6VG5/9/0qcArQ==} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@types/sockjs@0.3.36': @@ -8872,12 +9171,15 @@ packages: comma-separated-tokens@2.0.3: resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} +<<<<<<< HEAD <<<<<<< HEAD ======= commander@10.0.1: resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} engines: {node: '>=14'} +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) commander@11.1.0: resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} engines: {node: '>=16'} @@ -8913,6 +9215,13 @@ packages: resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} engines: {node: '>= 12'} +<<<<<<< HEAD +======= + commander@9.5.0: + resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} + engines: {node: ^12.20.0 || >=14} + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} @@ -9427,14 +9736,15 @@ packages: resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==} engines: {node: '>=10'} -<<<<<<< HEAD -======= decamelize@6.0.1: resolution: {integrity: sha512-G7Cqgaelq68XHJNGlZ7lrNQyhZGsFqpwtGFexqUv4IQdjKoSYF7ipZ9UuTJZUSQXFj/XaoBLuEVIVqr8EJngEQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} +<<<<<<< HEAD >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) decimal.js-light@2.5.1: resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==} @@ -9473,6 +9783,7 @@ packages: deep-object-diff@1.1.9: resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -9480,10 +9791,11 @@ packages: resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} engines: {node: '>=0.10.0'} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) deepmerge-ts@7.1.5: resolution: {integrity: sha512-HOJkrhaYsweh+W+e74Yn7YStZOilkoPb6fycpwNLKzSPtruFs48nYis0zy5yJz1+ktUhHxoRDJ27RQAWLIJVJw==} engines: {node: '>=16.0.0'} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) deepmerge@4.3.1: @@ -9618,6 +9930,7 @@ packages: resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} +<<<<<<< HEAD <<<<<<< HEAD <<<<<<< HEAD ======= @@ -9633,6 +9946,8 @@ packages: engines: {node: '>=0.3.1'} ======= ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) diff@5.2.2: resolution: {integrity: sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A==} engines: {node: '>=0.3.1'} @@ -9641,10 +9956,8 @@ packages: resolution: {integrity: sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==} engines: {node: '>=0.3.1'} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) diffable-html@4.1.0: resolution: {integrity: sha512-++kyNek+YBLH8cLXS+iTj/Hiy2s5qkRJEJ8kgu/WHbFrVY2vz9xPFUT+fii2zGF0m1CaojDlQJjkfrCt7YWM1g==} ->>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) diffie-hellman@5.0.3: @@ -9759,15 +10072,17 @@ packages: resolution: {integrity: sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==} engines: {node: '>=12'} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD dotenv@16.6.1: resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dotenv@17.4.2: resolution: {integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) engines: {node: '>=12'} >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) @@ -9963,25 +10278,30 @@ packages: resolution: {integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==} engines: {node: '>=0.4.0'} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD es6-iterator@2.0.3: resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) es6-error@4.1.1: resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} ->>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) es6-shim@0.35.8: resolution: {integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==} +<<<<<<< HEAD esbuild-register@3.6.0: resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==} peerDependencies: esbuild: '>=0.12 <1' +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) esbuild@0.25.12: resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==} engines: {node: '>=18'} @@ -10213,6 +10533,12 @@ packages: jiti: optional: true +<<<<<<< HEAD +======= + esm-env@1.2.2: + resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==} + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) espree@10.4.0: resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -10257,6 +10583,7 @@ packages: resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} engines: {node: '>= 0.6'} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -10267,10 +10594,11 @@ packages: event-emitter@0.3.5: resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) event-target-shim@5.0.1: resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} engines: {node: '>=6'} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) eventemitter3@4.0.7: @@ -10367,12 +10695,15 @@ packages: resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} engines: {node: '>=0.10.0'} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD fake-indexeddb@4.0.2: resolution: {integrity: sha512-SdTwEhnakbgazc7W3WUXOJfGmhH0YfG4d+dRPOFoYDRTL6U5t8tvrmkf2W/C3W1jk2ylV7Wrnj44RASqpX/lEw==} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) extract-zip@2.0.1: resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} engines: {node: '>= 10.17.0'} @@ -10380,7 +10711,6 @@ packages: fast-deep-equal@2.0.1: resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) fast-deep-equal@3.1.3: @@ -10529,12 +10859,15 @@ packages: resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} engines: {node: '>=8'} +<<<<<<< HEAD <<<<<<< HEAD ======= find-cache-dir@4.0.0: resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} engines: {node: '>=14.16'} +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) find-file-up@0.1.3: resolution: {integrity: sha512-mBxmNbVyjg1LQIIpgO8hN+ybWBgDQK8qjht+EbrTCGmmPV/sc7RF1i9stPTD6bpvXZywBdrwRYxhSdJv867L6A==} engines: {node: '>=0.10.0'} @@ -10657,6 +10990,7 @@ packages: vue-template-compiler: optional: true +<<<<<<< HEAD <<<<<<< HEAD ======= fork-ts-checker-webpack-plugin@8.0.0: @@ -10666,6 +11000,8 @@ packages: typescript: '>3.6.0' webpack: ^5.11.0 +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) fork-ts-checker-webpack-plugin@9.1.0: resolution: {integrity: sha512-mpafl89VFPJmhnJ1ssH+8wmM2b50n+Rew5x42NeI2U78aRWgtkEtGmctp7iT16UjquJTjorEmIfESj3DxdW84Q==} engines: {node: '>=14.21.3'} @@ -11409,6 +11745,7 @@ packages: inline-style-parser@0.2.7: resolution: {integrity: sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -11422,6 +11759,8 @@ packages: resolution: {integrity: sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==} engines: {node: '>=6.0.0'} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) inquirer@12.11.1: resolution: {integrity: sha512-9VF7mrY+3OmsAfjH3yKz/pLbJ5z22E23hENKw3/LNSaA/sAt3v49bDRY+Ygct1xwuKT+U+cBfTzjCPySna69Qw==} engines: {node: '>=18'} @@ -11430,7 +11769,6 @@ packages: peerDependenciesMeta: '@types/node': optional: true ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) inquirer@8.2.7: @@ -11636,6 +11974,14 @@ packages: is-in-browser@1.1.3: resolution: {integrity: sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g==} +<<<<<<< HEAD +======= + is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) is-interactive@1.0.0: resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} engines: {node: '>=8'} @@ -12522,6 +12868,7 @@ packages: lie@3.1.1: resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -12599,9 +12946,10 @@ packages: resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==} engines: {node: '>= 12.0.0'} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) lie@3.3.0: resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) lilconfig@2.1.0: @@ -12695,15 +13043,17 @@ packages: lodash.trimstart@4.5.1: resolution: {integrity: sha512-b/+D6La8tU76L/61/aN0jULWHkT0EeJCmVstPBn/K9MtD2qBW83AsBNrr63dKuWYwVMO7ucv13QNO/Ek/2RKaQ==} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD lodash.truncate@4.4.2: resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) lodash.union@4.6.0: resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) lodash.uniq@4.5.0: @@ -12783,6 +13133,12 @@ packages: resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} hasBin: true +<<<<<<< HEAD +======= + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) make-dir@2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} engines: {node: '>=6'} @@ -13222,6 +13578,13 @@ packages: resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} +<<<<<<< HEAD +======= + mute-stream@2.0.0: + resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==} + engines: {node: ^18.17.0 || >=20.5.0} + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) nan@2.27.0: resolution: {integrity: sha512-hC+0LidcL3XE4rp1C4H54KujgXKzbfyTngZTwBByQxsOxCEKZT0MPQ4hOKUH2jU1OYstqdDH4onyHPDzcV0XdQ==} @@ -13262,6 +13625,7 @@ packages: nested-error-stacks@2.1.1: resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -13271,10 +13635,11 @@ packages: next-tick@1.1.0: resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) netmask@2.1.1: resolution: {integrity: sha512-eonl3sLUha+S1GzTPxychyhnUzKyeQkZ7jLjKrBagJgPla13F+uQ71HgpFefyHgqrjEbCPkDArxYsjY8/+gLKA==} engines: {node: '>= 0.4.0'} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) next@14.2.35: @@ -13600,6 +13965,17 @@ packages: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} +<<<<<<< HEAD +======= + onetime@7.0.0: + resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} + engines: {node: '>=18'} + + open@10.2.0: + resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==} + engines: {node: '>=18'} + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) open@7.4.2: resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} engines: {node: '>=8'} @@ -13622,6 +13998,13 @@ packages: resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} engines: {node: '>=10'} +<<<<<<< HEAD +======= + ora@8.2.0: + resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==} + engines: {node: '>=18'} + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) os-browserify@0.3.0: resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==} @@ -13801,6 +14184,7 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} +<<<<<<< HEAD <<<<<<< HEAD <<<<<<< HEAD ======= @@ -13811,6 +14195,8 @@ packages: resolution: {integrity: sha512-kBeTUtcj+SkyfaW4+KBe0HtsloBJ/mKTPoxpVdA57GZiPerREsUWJOhVj9anXweFiJkm5y8FG1sxFZkZ0SN6wg==} ======= ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) parse-json@7.1.1: resolution: {integrity: sha512-SgOTCX/EZXtZxBE5eJ97P4yGM5n37BwRU+YMsH4vNzFqJV/oWFXXCmwFlgWUM4PrakybVOueJJ6pwHqSVhTFDw==} engines: {node: '>=16'} @@ -13819,11 +14205,9 @@ packages: resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==} engines: {node: '>=18'} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) parse-passwd@1.0.0: resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==} engines: {node: '>=0.10.0'} ->>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) parse-path@7.1.0: @@ -14024,12 +14408,15 @@ packages: resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} engines: {node: '>=10'} +<<<<<<< HEAD <<<<<<< HEAD ======= pkg-dir@7.0.0: resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} engines: {node: '>=14.16'} +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) playwright-core@1.60.0: resolution: {integrity: sha512-9bW6zvX/m0lEbgTKJ6YppOKx8H3VOPBMOCFh2irXFOT4BbHgrx5hPjwJYLT40Lu+4qtD36qKc/Hn56StUW57IA==} engines: {node: '>=18'} @@ -14290,6 +14677,18 @@ packages: resolution: {integrity: sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==} engines: {node: ^10 || ^12 || >=14} +<<<<<<< HEAD +======= + posthog-node@5.35.3: + resolution: {integrity: sha512-qQ76Rbmfzd7TBEFZtULEkg5pebUegwYJUun6zmXkK+6N64V/g39r18O5suHlQrZH83wKcBfSgAbaI3Sf/ya1Ew==} + engines: {node: ^20.20.0 || >=22.22.0} + peerDependencies: + rxjs: ^7.0.0 + peerDependenciesMeta: + rxjs: + optional: true + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} @@ -14778,12 +15177,15 @@ packages: resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} engines: {node: '>= 0.10'} +<<<<<<< HEAD <<<<<<< HEAD ======= rechoir@0.8.0: resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==} engines: {node: '>= 10.13.0'} +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) recursive-readdir@2.2.3: resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==} engines: {node: '>=6.0.0'} @@ -14837,6 +15239,7 @@ packages: resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} engines: {node: '>= 0.10'} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -14844,10 +15247,11 @@ packages: resolution: {integrity: sha512-zrS+A2p9QQYZCM6/G9ePRcn1KJJZ9Z2KvWhGjBfL8gsn+vMBP0floY5FmAzOyC8xVZGednF/419u/iOdw+JakQ==} hasBin: true ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) release-zalgo@1.0.0: resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} engines: {node: '>=4'} ->>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) remark-external-links@8.0.0: @@ -14957,6 +15361,7 @@ packages: engines: {node: '>= 0.4'} hasBin: true +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -14964,9 +15369,10 @@ packages: resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==} engines: {node: '>=4'} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) resq@1.11.0: resolution: {integrity: sha512-G10EBz+zAAy3zUd/CDoBbXRL6ia9kOo3xRHrMDsHljI0GDkhYlyjwoCx5+3eCC4swi1uCoZQhskuJkj7Gp57Bw==} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) restore-cursor@3.1.0: @@ -15026,6 +15432,7 @@ packages: robust-predicates@3.0.3: resolution: {integrity: sha512-NS3levdsRIUOmiJ8FZWCP7LG3QpJyrs/TE0Zpf1yvZu8cAJJ6QMW92H1c7kWpdIHo8RvmLxN/o2JXTKHp74lUA==} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -15068,12 +15475,13 @@ packages: engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) rrweb-cssom@0.7.1: resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==} rrweb-cssom@0.8.0: resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==} ->>>>>>> 75d3d25f4 ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) >>>>>>> 94f1568ac ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) rsvp@4.8.5: @@ -15203,6 +15611,7 @@ packages: resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==} engines: {node: '>= 0.8.0'} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -15210,10 +15619,11 @@ packages: resolution: {integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==} engines: {node: '>= 18'} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) serialize-error@12.0.0: resolution: {integrity: sha512-ZYkZLAvKTKQXWuh5XpBw7CdbSzagarX39WyZ2H07CDLC5/KfsRGlIXV8d4+tfqX1M7916mRqR1QfNHSij+c9Pw==} engines: {node: '>=18'} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) serialize-javascript@4.0.0: @@ -15341,6 +15751,7 @@ packages: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} +<<<<<<< HEAD <<<<<<< HEAD ======= slash@4.0.0: @@ -15352,10 +15763,11 @@ packages: resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} engines: {node: '>=10'} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) slash@5.1.0: resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} engines: {node: '>=14.16'} ->>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) smart-buffer@4.2.0: @@ -15965,6 +16377,7 @@ packages: resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==} engines: {node: '>=0.6.0'} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -15972,9 +16385,10 @@ packages: resolution: {integrity: sha512-wFH7+SEAcKfJpfLPkrgMPvvwnEtj8W4IurvEyrKsDleXnKLCDw71w8jltvfLa8Rm4qQxxT4jmDBYbJG/z7qoww==} engines: {node: '>=0.12'} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) tiny-inflate@1.0.3: resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==} ->>>>>>> 75d3d25f4 ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) >>>>>>> 94f1568ac ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) tiny-invariant@1.3.3: @@ -16014,6 +16428,12 @@ packages: resolution: {integrity: sha512-ELrFxuqsDdHUwoh0XxDbxuLD3Wnz49Z57IFvTtvWy1hJdcMZjXLIuonjilCiWHlT2GbE4Wlv1wKVTzDFnXH1aw==} hasBin: true +<<<<<<< HEAD +======= + tmcp@1.19.4: + resolution: {integrity: sha512-fMoUJ3Gef9iA0yKZNeW2SQCCKTluCwghUyOz/qxPS8XxrQk6Jlw4lgql3S+s6L//FteLeSJ7erKxMWl727mZoQ==} + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) tmp@0.2.5: resolution: {integrity: sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==} engines: {node: '>=14.14'} @@ -16173,6 +16593,7 @@ packages: ts-mixer@6.0.4: resolution: {integrity: sha512-ufKpbmrugz5Aou4wcr5Wc1UUFWOLhq+Fm6qa6P0w0K5Qw2yhaUoiWszhCVuNQyNwrlGiscHOmqYoAox1PtvgjA==} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -16188,9 +16609,10 @@ packages: engines: {node: '>=4.2.0'} hasBin: true ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) ts-morph@27.0.2: resolution: {integrity: sha512-fhUhgeljcrdZ+9DZND1De1029PrE+cMkIP7ooqkLRTrRLTqcki2AstsyJm0vRNbTbVCNJ0idGlbBrfqc7/nA8w==} ->>>>>>> 75d3d25f4 ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) >>>>>>> 94f1568ac ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) ts-pnp@1.2.0: @@ -16329,6 +16751,7 @@ packages: engines: {node: '>=14.17'} hasBin: true +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -16340,11 +16763,12 @@ packages: resolution: {integrity: sha512-6FTtyGr8ldU0pfbvW/eOZrEtEkczHRUtduBnA90Jh9kMPCiFNnXIon3vF41N0S4tV1HHQt4Hk1j4srpESziCaA==} engines: {node: '>=0.1.14'} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) typescript@6.0.3: resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==} engines: {node: '>=14.17'} hasBin: true ->>>>>>> 75d3d25f4 ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) >>>>>>> 94f1568ac ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) ufo@1.6.4: @@ -17106,6 +17530,13 @@ packages: utf-8-validate: optional: true +<<<<<<< HEAD +======= + wsl-utils@0.1.0: + resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==} + engines: {node: '>=18'} + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) x-default-browser@0.4.0: resolution: {integrity: sha512-7LKo7RtWfoFN/rHx1UELv/2zHGMx8MkZKDq1xENmOCTkfIqZJ0zZ26NEJX8czhnPXVcqS0ARjjfJB+eJ0/5Cvw==} hasBin: true @@ -17180,6 +17611,7 @@ packages: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} +<<<<<<< HEAD <<<<<<< HEAD <<<<<<< HEAD ======= @@ -17191,15 +17623,15 @@ packages: engines: {node: '>=10'} ======= ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) yargs-unparser@2.0.0: resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==} engines: {node: '>=10'} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) yargs@15.4.1: resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} engines: {node: '>=8'} ->>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) yargs@16.2.0: @@ -17210,6 +17642,7 @@ packages: resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} engines: {node: '>=12'} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -17217,9 +17650,10 @@ packages: resolution: {integrity: sha512-uTv8J/wiWTgUTg+9vLTi//leUl5vDQS6uii/emeTb2ssY7vl6QWf2fFbIIGjnhjvbdKlU0ed7QPgY1htTC86jQ==} engines: {node: '>=4'} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) yauzl@2.10.0: resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) yocto-queue@0.1.0: @@ -18895,6 +19329,7 @@ snapshots: - uploadthing - utf-8-validate +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -18947,8 +19382,9 @@ snapshots: - supports-color - utf-8-validate ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@csstools/color-helpers@5.1.0': {} ->>>>>>> 75d3d25f4 ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) >>>>>>> 94f1568ac ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) '@csstools/color-helpers@6.0.2': {} @@ -19310,6 +19746,7 @@ snapshots: '@esbuild/win32-x64@0.25.12': optional: true +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -19318,9 +19755,10 @@ snapshots: eslint: 7.32.0 eslint-visitor-keys: 3.4.3 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@esbuild/win32-x64@0.28.0': optional: true ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@eslint-community/eslint-utils@4.9.1(eslint@8.57.1)': @@ -19424,11 +19862,14 @@ snapshots: optionalDependencies: '@noble/hashes': 1.8.0 +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD '@favware/rollup-type-bundler@2.0.0': ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@figma/code-connect@1.4.7': dependencies: boxen: 5.1.1 @@ -19460,15 +19901,19 @@ snapshots: - utf-8-validate '@fission-ai/openspec@1.3.1(@types/node@22.19.19)(rxjs@7.8.2)': ->>>>>>> 75d3d25f4 ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) dependencies: - '@sapphire/utilities': 3.18.2 - colorette: 2.0.20 - commander: 9.5.0 - js-yaml: 4.1.1 - rollup: 3.30.0 - rollup-plugin-dts: 5.3.1(rollup@3.30.0)(typescript@4.9.5) - typescript: 4.9.5 + '@inquirer/core': 10.3.2(@types/node@22.19.19) + '@inquirer/prompts': 7.10.1(@types/node@22.19.19) + chalk: 5.6.2 + commander: 14.0.3 + fast-glob: 3.3.3 + ora: 8.2.0 + posthog-node: 5.35.3(rxjs@7.8.2) + yaml: 2.9.0 + zod: 4.4.3 + transitivePeerDependencies: + - '@types/node' + - rxjs >>>>>>> 94f1568ac ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) '@floating-ui/core@1.7.5': @@ -19529,6 +19974,7 @@ snapshots: debug: 4.4.3 ======= debug: 4.4.3(supports-color@8.1.1) +<<<<<<< HEAD <<<<<<< HEAD minimatch: 3.1.5 transitivePeerDependencies: @@ -19541,6 +19987,8 @@ snapshots: ======= >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) minimatch: 3.1.5 transitivePeerDependencies: - supports-color @@ -19628,8 +20076,6 @@ snapshots: '@img/sharp-win32-x64@0.33.5': optional: true -<<<<<<< HEAD -======= '@inquirer/ansi@1.0.2': {} '@inquirer/checkbox@4.3.2(@types/node@22.19.19)': @@ -19678,7 +20124,6 @@ snapshots: optionalDependencies: '@types/node': 22.19.19 ->>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) '@inquirer/external-editor@1.0.3(@types/node@22.19.19)': dependencies: chardet: 2.1.1 @@ -21100,6 +21545,140 @@ snapshots: dependencies: '@octokit/openapi-types': 18.1.1 +<<<<<<< HEAD +======= + '@oxc-parser/binding-android-arm-eabi@0.127.0': + optional: true + + '@oxc-parser/binding-android-arm64@0.127.0': + optional: true + + '@oxc-parser/binding-darwin-arm64@0.127.0': + optional: true + + '@oxc-parser/binding-darwin-x64@0.127.0': + optional: true + + '@oxc-parser/binding-freebsd-x64@0.127.0': + optional: true + + '@oxc-parser/binding-linux-arm-gnueabihf@0.127.0': + optional: true + + '@oxc-parser/binding-linux-arm-musleabihf@0.127.0': + optional: true + + '@oxc-parser/binding-linux-arm64-gnu@0.127.0': + optional: true + + '@oxc-parser/binding-linux-arm64-musl@0.127.0': + optional: true + + '@oxc-parser/binding-linux-ppc64-gnu@0.127.0': + optional: true + + '@oxc-parser/binding-linux-riscv64-gnu@0.127.0': + optional: true + + '@oxc-parser/binding-linux-riscv64-musl@0.127.0': + optional: true + + '@oxc-parser/binding-linux-s390x-gnu@0.127.0': + optional: true + + '@oxc-parser/binding-linux-x64-gnu@0.127.0': + optional: true + + '@oxc-parser/binding-linux-x64-musl@0.127.0': + optional: true + + '@oxc-parser/binding-openharmony-arm64@0.127.0': + optional: true + + '@oxc-parser/binding-wasm32-wasi@0.127.0': + dependencies: + '@emnapi/core': 1.9.2 + '@emnapi/runtime': 1.9.2 + '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2) + optional: true + + '@oxc-parser/binding-win32-arm64-msvc@0.127.0': + optional: true + + '@oxc-parser/binding-win32-ia32-msvc@0.127.0': + optional: true + + '@oxc-parser/binding-win32-x64-msvc@0.127.0': + optional: true + + '@oxc-project/types@0.127.0': {} + + '@oxc-resolver/binding-android-arm-eabi@11.19.1': + optional: true + + '@oxc-resolver/binding-android-arm64@11.19.1': + optional: true + + '@oxc-resolver/binding-darwin-arm64@11.19.1': + optional: true + + '@oxc-resolver/binding-darwin-x64@11.19.1': + optional: true + + '@oxc-resolver/binding-freebsd-x64@11.19.1': + optional: true + + '@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1': + optional: true + + '@oxc-resolver/binding-linux-arm-musleabihf@11.19.1': + optional: true + + '@oxc-resolver/binding-linux-arm64-gnu@11.19.1': + optional: true + + '@oxc-resolver/binding-linux-arm64-musl@11.19.1': + optional: true + + '@oxc-resolver/binding-linux-ppc64-gnu@11.19.1': + optional: true + + '@oxc-resolver/binding-linux-riscv64-gnu@11.19.1': + optional: true + + '@oxc-resolver/binding-linux-riscv64-musl@11.19.1': + optional: true + + '@oxc-resolver/binding-linux-s390x-gnu@11.19.1': + optional: true + + '@oxc-resolver/binding-linux-x64-gnu@11.19.1': + optional: true + + '@oxc-resolver/binding-linux-x64-musl@11.19.1': + optional: true + + '@oxc-resolver/binding-openharmony-arm64@11.19.1': + optional: true + + '@oxc-resolver/binding-wasm32-wasi@11.19.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)': + dependencies: + '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + transitivePeerDependencies: + - '@emnapi/core' + - '@emnapi/runtime' + optional: true + + '@oxc-resolver/binding-win32-arm64-msvc@11.19.1': + optional: true + + '@oxc-resolver/binding-win32-ia32-msvc@11.19.1': + optional: true + + '@oxc-resolver/binding-win32-x64-msvc@11.19.1': + optional: true + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@parcel/watcher@2.0.4': dependencies: node-addon-api: 3.2.1 @@ -21122,6 +21701,7 @@ snapshots: react-refresh: 0.10.0 schema-utils: 4.3.3 source-map: 0.7.6 +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -21131,13 +21711,20 @@ snapshots: webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) optionalDependencies: '@types/webpack': 4.41.40 type-fest: 4.41.0 webpack-dev-server: 4.15.2(webpack-cli@4.10.0)(webpack@5.106.2) webpack-hot-middleware: 2.26.1 +<<<<<<< HEAD '@pmmmwh/react-refresh-webpack-plugin@0.5.17(@types/webpack@4.41.40)(react-refresh@0.11.0)(type-fest@4.41.0)(webpack-dev-server@4.15.2(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)))(webpack-hot-middleware@2.26.1)(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14))': +======= + '@pmmmwh/react-refresh-webpack-plugin@0.5.17(@types/webpack@4.41.40)(react-refresh@0.11.0)(type-fest@4.41.0)(webpack-dev-server@4.15.2(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)))(webpack-hot-middleware@2.26.1)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14))': +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: ansi-html: 0.0.9 core-js-pure: 3.49.0 @@ -21147,11 +21734,19 @@ snapshots: react-refresh: 0.11.0 schema-utils: 4.3.3 source-map: 0.7.6 +<<<<<<< HEAD webpack: 5.106.2(esbuild@0.25.12)(postcss@8.5.14) optionalDependencies: '@types/webpack': 4.41.40 type-fest: 4.41.0 webpack-dev-server: 4.15.2(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14) + optionalDependencies: + '@types/webpack': 4.41.40 + type-fest: 4.41.0 + webpack-dev-server: 4.15.2(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) webpack-hot-middleware: 2.26.1 '@popperjs/core@2.11.8': {} @@ -21189,6 +21784,7 @@ snapshots: '@protobufjs/utf8@1.1.1': {} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -21215,6 +21811,8 @@ snapshots: mz: 2.7.0 prettier: 2.8.8 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@puppeteer/browsers@2.13.2': dependencies: debug: 4.4.3(supports-color@8.1.1) @@ -21229,7 +21827,6 @@ snapshots: - bare-buffer - react-native-b4a - supports-color ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@react-aria/listbox@3.16.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)': @@ -21416,6 +22013,7 @@ snapshots: react: 19.2.6 react-dom: 19.2.6(react@19.2.6) +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -21447,8 +22045,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@storybook/addon-controls@6.5.16(eslint@9.39.4)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@storybook/addon-controls@6.5.16(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@storybook/addons': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@storybook/api': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) @@ -21473,6 +22072,7 @@ snapshots: - webpack-cli - webpack-command +<<<<<<< HEAD <<<<<<< HEAD <<<<<<< HEAD '@storybook/addon-docs@6.5.16(@babel/core@7.29.0)(eslint@9.39.4)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14))': @@ -21481,8 +22081,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@storybook/addon-docs@6.5.16(@babel/core@7.29.0)(eslint@8.57.1)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14))': ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@storybook/addon-docs@10.4.1(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(esbuild@0.28.0)(storybook@10.4.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@testing-library/dom@10.4.1)(@types/react@19.2.14)(prettier@2.8.8)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(webpack@5.106.2)': ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@mdx-js/react': 3.1.1(@types/react@19.2.14)(react@19.2.6) '@storybook/csf-plugin': 10.4.1(esbuild@0.28.0)(storybook@10.4.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@testing-library/dom@10.4.1)(@types/react@19.2.14)(prettier@2.8.8)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(webpack@5.106.2) @@ -21510,11 +22111,7 @@ snapshots: '@storybook/addons': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@storybook/api': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@storybook/components': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) -<<<<<<< HEAD - '@storybook/core-common': 6.5.16(eslint@8.57.1)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) -======= '@storybook/core-common': 6.5.16(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) @@ -21548,6 +22145,7 @@ snapshots: - webpack-cli - webpack-command +<<<<<<< HEAD <<<<<<< HEAD '@storybook/addon-docs@6.5.16(@babel/core@7.29.0)(eslint@9.39.4)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.25.12)(postcss@8.5.14))': >>>>>>> dea01ef63 (NYM-1199: integrate OpenSpec AI for Node Families UI) @@ -21601,10 +22199,14 @@ snapshots: '@storybook/addon-essentials@6.5.16(@babel/core@7.29.0)(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14))': >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + '@storybook/addon-essentials@6.5.16(@babel/core@7.29.0)(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14))': +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: '@babel/core': 7.29.0 '@storybook/addon-actions': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@storybook/addon-backgrounds': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) +<<<<<<< HEAD <<<<<<< HEAD '@storybook/addon-controls': 6.5.16(eslint@9.39.4)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) <<<<<<< HEAD @@ -21616,6 +22218,10 @@ snapshots: '@storybook/addon-docs': 6.5.16(@babel/core@7.29.0)(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + '@storybook/addon-controls': 6.5.16(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) + '@storybook/addon-docs': 6.5.16(@babel/core@7.29.0)(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@storybook/addon-measure': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@storybook/addon-outline': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@storybook/addon-toolbars': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) @@ -21628,6 +22234,7 @@ snapshots: regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 optionalDependencies: +<<<<<<< HEAD <<<<<<< HEAD '@storybook/builder-webpack5': 6.5.16(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) ======= @@ -21669,8 +22276,9 @@ snapshots: optionalDependencies: '@storybook/builder-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@8.57.1)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@storybook/builder-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) react: 19.2.6 react-dom: 19.2.6(react@19.2.6) webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14) @@ -21683,6 +22291,7 @@ snapshots: - webpack-cli - webpack-command +<<<<<<< HEAD <<<<<<< HEAD '@storybook/addon-interactions@6.5.16(@types/react@19.2.14)(eslint@8.57.1)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': dependencies: @@ -21716,8 +22325,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@storybook/addon-interactions@6.5.16(@types/react@19.2.14)(eslint@9.39.4)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@storybook/addon-interactions@6.5.16(@types/react@19.2.14)(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@devtools-ds/object-inspector': 1.2.1(@types/react@19.2.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@storybook/addons': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) @@ -21884,6 +22494,7 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -21951,8 +22562,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@storybook/builder-webpack4@6.5.16(eslint@9.39.4)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@storybook/builder-webpack4@6.5.16(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@babel/core': 7.29.0 '@storybook/addons': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) @@ -21978,7 +22590,11 @@ snapshots: case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.49.0 css-loader: 3.6.0(webpack@4.47.0) +<<<<<<< HEAD file-loader: 6.2.0(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)) +======= + file-loader: 6.2.0(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) find-up: 5.0.0 fork-ts-checker-webpack-plugin: 4.1.6(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5)(webpack@4.47.0) glob: 7.2.3 @@ -22013,6 +22629,7 @@ snapshots: - webpack-cli - webpack-command +<<<<<<< HEAD <<<<<<< HEAD '@storybook/builder-webpack5@6.5.16(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ======= @@ -22022,6 +22639,9 @@ snapshots: '@storybook/builder-webpack5@10.4.1(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(storybook@10.4.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@testing-library/dom@10.4.1)(@types/react@19.2.14)(prettier@2.8.8)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(typescript@5.9.3)(webpack-cli@4.10.0)': >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + '@storybook/builder-webpack5@10.4.1(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(storybook@10.4.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@testing-library/dom@10.4.1)(@types/react@19.2.14)(prettier@2.8.8)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(typescript@5.9.3)(webpack-cli@4.10.0)': +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: '@storybook/core-webpack': 10.4.1(storybook@10.4.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@testing-library/dom@10.4.1)(@types/react@19.2.14)(prettier@2.8.8)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)) case-sensitive-paths-webpack-plugin: 2.4.0 @@ -22076,6 +22696,7 @@ snapshots: '@storybook/store': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@storybook/theming': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@types/node': 16.18.126 +<<<<<<< HEAD babel-loader: 8.4.1(@babel/core@7.29.0)(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)) babel-plugin-named-exports-order: 0.0.2 browser-assert: 1.2.1 @@ -22144,17 +22765,15 @@ snapshots: '@storybook/store': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@storybook/theming': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@types/node': 16.18.126 +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) babel-loader: 8.4.1(@babel/core@7.29.0)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) babel-plugin-named-exports-order: 0.0.2 browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.49.0 css-loader: 5.2.7(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) -<<<<<<< HEAD - fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.57.1)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) -======= fork-ts-checker-webpack-plugin: 6.5.3(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) glob: 7.2.3 glob-promise: 3.4.0(glob@7.2.3) html-webpack-plugin: 5.6.7(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) @@ -22293,6 +22912,7 @@ snapshots: optionalDependencies: typescript: 4.9.5 +<<<<<<< HEAD '@storybook/core-client@6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14))': dependencies: '@storybook/addons': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) @@ -22323,6 +22943,8 @@ snapshots: <<<<<<< HEAD ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@storybook/core-client@6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14))': dependencies: '@storybook/addons': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) @@ -22351,6 +22973,7 @@ snapshots: optionalDependencies: typescript: 4.9.5 +<<<<<<< HEAD <<<<<<< HEAD '@storybook/core-common@6.5.16(eslint@8.57.1)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': dependencies: @@ -22418,8 +23041,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@storybook/core-common@6.5.16(eslint@9.39.4)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@storybook/core-common@6.5.16(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@babel/core': 7.29.0 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.29.0) @@ -22486,6 +23110,7 @@ snapshots: dependencies: core-js: 3.49.0 +<<<<<<< HEAD <<<<<<< HEAD '@storybook/core-server@6.5.16(@storybook/builder-webpack5@6.5.16(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(encoding@0.1.13)(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(encoding@0.1.13)(eslint@9.39.4)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ======= @@ -22495,6 +23120,9 @@ snapshots: '@storybook/core-server@6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + '@storybook/core-server@6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: '@discoveryjs/json-ext': 0.5.7 '@storybook/builder-webpack4': 6.5.16(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) @@ -22544,6 +23172,7 @@ snapshots: ws: 8.20.1 x-default-browser: 0.4.0 optionalDependencies: +<<<<<<< HEAD <<<<<<< HEAD '@storybook/builder-webpack5': 6.5.16(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) '@storybook/manager-webpack5': 6.5.16(encoding@0.1.13)(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) @@ -22556,6 +23185,10 @@ snapshots: '@storybook/manager-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + '@storybook/builder-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) + '@storybook/manager-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) typescript: 4.9.5 transitivePeerDependencies: - '@storybook/mdx2-csf' @@ -22569,6 +23202,7 @@ snapshots: - webpack-cli - webpack-command +<<<<<<< HEAD '@storybook/core@6.5.16(@storybook/builder-webpack5@6.5.16(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(encoding@0.1.13)(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(encoding@0.1.13)(eslint@9.39.4)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14))': dependencies: '@storybook/core-client': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)) @@ -22595,53 +23229,28 @@ snapshots: - vue-template-compiler - webpack-cli - webpack-command - -<<<<<<< HEAD - '@storybook/core@6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(encoding@0.1.13)(eslint@9.39.4)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.25.12)(postcss@8.5.14))': - dependencies: - '@storybook/core-client': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.25.12)(postcss@8.5.14)) - '@storybook/core-server': 6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(encoding@0.1.13)(eslint@9.39.4)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) - react: 19.2.6 - react-dom: 19.2.6(react@19.2.6) - webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.25.12)(postcss@8.5.14) - optionalDependencies: - '@storybook/builder-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) - '@storybook/manager-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - '@storybook/mdx2-csf' - - bluebird - - bufferutil - - encoding - - eslint - - supports-color - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-command - - '@storybook/core@6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@8.57.1)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@8.57.1)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(encoding@0.1.13)(eslint@8.57.1)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14))': - dependencies: - '@storybook/core-client': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) - '@storybook/core-server': 6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@8.57.1)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@8.57.1)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(encoding@0.1.13)(eslint@8.57.1)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) ======= + '@storybook/core-webpack@10.4.1(storybook@10.4.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@testing-library/dom@10.4.1)(@types/react@19.2.14)(prettier@2.8.8)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))': + dependencies: + storybook: 10.4.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@testing-library/dom@10.4.1)(@types/react@19.2.14)(prettier@2.8.8)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + ts-dedent: 2.2.0 +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) + '@storybook/core@6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14))': dependencies: '@storybook/core-client': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) '@storybook/core-server': 6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) react: 19.2.6 react-dom: 19.2.6(react@19.2.6) webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14) optionalDependencies: -<<<<<<< HEAD - '@storybook/builder-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@8.57.1)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) - '@storybook/manager-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@8.57.1)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) -======= '@storybook/builder-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) '@storybook/manager-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) +<<<<<<< HEAD >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) typescript: 4.9.5 transitivePeerDependencies: - '@storybook/mdx2-csf' @@ -22655,11 +23264,7 @@ snapshots: - webpack-cli - webpack-command -<<<<<<< HEAD - '@storybook/core@8.6.18(prettier@2.8.8)(storybook@8.6.18(prettier@2.8.8))': -======= '@storybook/csf-plugin@10.4.1(esbuild@0.28.0)(storybook@10.4.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@testing-library/dom@10.4.1)(@types/react@19.2.14)(prettier@2.8.8)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(webpack@5.106.2)': ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: storybook: 10.4.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@testing-library/dom@10.4.1)(@types/react@19.2.14)(prettier@2.8.8)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) unplugin: 2.3.11 @@ -22732,6 +23337,7 @@ snapshots: '@vitest/utils': 2.1.9 storybook: 10.4.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@testing-library/dom@8.20.1)(@types/react@19.2.14)(prettier@2.8.8)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -22788,8 +23394,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@storybook/manager-webpack4@6.5.16(encoding@0.1.13)(eslint@9.39.4)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@storybook/manager-webpack4@6.5.16(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@babel/core': 7.29.0 '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.29.0) @@ -22839,6 +23446,7 @@ snapshots: - webpack-cli - webpack-command +<<<<<<< HEAD <<<<<<< HEAD '@storybook/manager-webpack5@6.5.16(encoding@0.1.13)(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ======= @@ -22909,19 +23517,16 @@ snapshots: '@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@8.57.1)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@babel/core': 7.29.0 '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.29.0) '@babel/preset-react': 7.28.5(@babel/core@7.29.0) '@storybook/addons': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@storybook/core-client': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) -<<<<<<< HEAD - '@storybook/core-common': 6.5.16(eslint@8.57.1)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) -======= '@storybook/core-common': 6.5.16(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@storybook/node-logger': 6.5.16 '@storybook/theming': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@storybook/ui': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) @@ -22974,6 +23579,16 @@ snapshots: - webpack-cli - webpack-command + '@storybook/mcp@0.7.0(typescript@5.9.3)': + dependencies: + '@tmcp/adapter-valibot': 0.1.6(tmcp@1.19.4(typescript@5.9.3))(valibot@1.2.0(typescript@5.9.3)) + '@tmcp/transport-http': 0.8.6(tmcp@1.19.4(typescript@5.9.3)) + tmcp: 1.19.4(typescript@5.9.3) + valibot: 1.2.0(typescript@5.9.3) + transitivePeerDependencies: + - '@tmcp/auth' + - typescript + '@storybook/mdx1-csf@0.0.1(@babel/core@7.29.0)': dependencies: '@babel/generator': 7.29.1 @@ -23056,6 +23671,7 @@ snapshots: unfetch: 4.2.0 util-deprecate: 1.0.2 +<<<<<<< HEAD '@storybook/react-docgen-typescript-plugin@1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14))': dependencies: debug: 4.4.3 @@ -23073,6 +23689,8 @@ snapshots: <<<<<<< HEAD '@storybook/react@6.5.16(@babel/core@7.29.0)(@storybook/builder-webpack5@6.5.16(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(encoding@0.1.13)(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@types/webpack@4.41.40)(encoding@0.1.13)(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(require-from-string@2.0.2)(type-fest@4.41.0)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)))(webpack-hot-middleware@2.26.1)': ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@storybook/react-docgen-typescript-plugin@1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14))': dependencies: debug: 4.4.3(supports-color@8.1.1) @@ -23087,9 +23705,6 @@ snapshots: transitivePeerDependencies: - supports-color -<<<<<<< HEAD - '@storybook/react@6.5.16(@babel/core@7.29.0)(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@swc/core@1.15.40(@swc/helpers@0.5.21))(@types/webpack@4.41.40)(encoding@0.1.13)(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(require-from-string@2.0.2)(type-fest@4.41.0)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.25.12)(postcss@8.5.14)))(webpack-hot-middleware@2.26.1)': -======= '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.9.3)(webpack@5.106.2)': dependencies: debug: 4.4.3(supports-color@8.1.1) @@ -23105,6 +23720,7 @@ snapshots: - supports-color '@storybook/react-dom-shim@10.4.1(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(storybook@10.4.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@testing-library/dom@10.4.1)(@types/react@19.2.14)(prettier@2.8.8)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))': +<<<<<<< HEAD >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: @@ -23157,6 +23773,13 @@ snapshots: '@storybook/manager-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(esbuild@0.25.12)(eslint@9.39.4)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) typescript: 4.9.5 ======= +======= + dependencies: + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + storybook: 10.4.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@testing-library/dom@10.4.1)(@types/react@19.2.14)(prettier@2.8.8)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + optionalDependencies: +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@types/react': 19.2.14 '@types/react-dom': 19.2.3(@types/react@19.2.14) @@ -23170,40 +23793,25 @@ snapshots: storybook: 10.4.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@testing-library/dom@10.4.1)(@types/react@19.2.14)(prettier@2.8.8)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) optionalDependencies: typescript: 5.9.3 ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) transitivePeerDependencies: - '@minify-html/node' - - '@storybook/mdx2-csf' + - '@rspack/core' - '@swc/core' - '@swc/css' - '@swc/html' - - '@types/webpack' - - bluebird - - bufferutil + - '@types/react' + - '@types/react-dom' - clean-css - cssnano - csso - - encoding - esbuild - - eslint - html-minifier-terser - lightningcss - postcss - - sockjs-client - supports-color - - type-fest - uglify-js - - utf-8-validate - - vue-template-compiler - webpack-cli - - webpack-command - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve -<<<<<<< HEAD - '@storybook/react@6.5.16(@babel/core@7.29.0)(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@8.57.1)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@8.57.1)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@swc/core@1.15.40(@swc/helpers@0.5.21))(@types/webpack@4.41.40)(encoding@0.1.13)(eslint@8.57.1)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(require-from-string@2.0.2)(type-fest@4.41.0)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)))(webpack-hot-middleware@2.26.1)': -======= '@storybook/react@10.4.1(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(storybook@10.4.1(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@testing-library/dom@10.4.1)(@types/react@19.2.14)(prettier@2.8.8)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(typescript@5.9.3)': dependencies: '@storybook/global': 5.0.0 @@ -23221,20 +23829,14 @@ snapshots: - supports-color '@storybook/react@6.5.16(@babel/core@7.29.0)(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@swc/core@1.15.40(@swc/helpers@0.5.21))(@types/webpack@4.41.40)(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(require-from-string@2.0.2)(type-fest@4.41.0)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)))(webpack-hot-middleware@2.26.1)': ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@babel/preset-flow': 7.27.1(@babel/core@7.29.0) '@babel/preset-react': 7.28.5(@babel/core@7.29.0) '@pmmmwh/react-refresh-webpack-plugin': 0.5.17(@types/webpack@4.41.40)(react-refresh@0.11.0)(type-fest@4.41.0)(webpack-dev-server@4.15.2(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)))(webpack-hot-middleware@2.26.1)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) '@storybook/addons': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@storybook/client-logger': 6.5.16 -<<<<<<< HEAD - '@storybook/core': 6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@8.57.1)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@8.57.1)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(encoding@0.1.13)(eslint@8.57.1)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) - '@storybook/core-common': 6.5.16(eslint@8.57.1)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) -======= '@storybook/core': 6.5.16(@storybook/builder-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(@storybook/manager-webpack5@6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) '@storybook/core-common': 6.5.16(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.16(react-dom@19.2.6(react@19.2.6))(react@19.2.6) '@storybook/node-logger': 6.5.16 @@ -23268,14 +23870,13 @@ snapshots: webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14) optionalDependencies: '@babel/core': 7.29.0 -<<<<<<< HEAD - '@storybook/builder-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@8.57.1)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) - '@storybook/manager-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@8.57.1)(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) -======= '@storybook/builder-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) '@storybook/manager-webpack5': 6.5.16(@swc/core@1.15.40(@swc/helpers@0.5.21))(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(postcss@8.5.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) +<<<<<<< HEAD >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) typescript: 4.9.5 transitivePeerDependencies: - '@minify-html/node' @@ -23357,6 +23958,7 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -23388,8 +23990,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@storybook/telemetry@6.5.16(encoding@0.1.13)(eslint@9.39.4)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@storybook/telemetry@6.5.16(encoding@0.1.13)(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5)': ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@storybook/client-logger': 6.5.16 '@storybook/core-common': 6.5.16(eslint@9.39.4(jiti@2.7.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@4.9.5) @@ -24099,6 +24702,11 @@ snapshots: dependencies: csstype: 3.2.3 +<<<<<<< HEAD +======= + '@types/resolve@1.20.6': {} + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@types/retry@0.12.0': {} '@types/semver@7.7.1': {} @@ -24122,6 +24730,7 @@ snapshots: '@types/node': 22.19.19 '@types/send': 0.17.6 +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -24130,8 +24739,9 @@ snapshots: '@types/glob': 7.2.0 '@types/node': 22.19.19 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@types/sinonjs__fake-timers@8.1.5': {} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@types/sockjs@0.3.36': @@ -24205,6 +24815,7 @@ snapshots: '@types/zxcvbn@4.4.5': {} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -24249,23 +24860,26 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4)(typescript@4.9.5))(eslint@9.39.4)(typescript@4.9.5)': ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5))(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5)': ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@eslint-community/regexpp': 4.12.2 '@typescript-eslint/parser': 5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5) '@typescript-eslint/scope-manager': 5.62.0 +<<<<<<< HEAD <<<<<<< HEAD '@typescript-eslint/type-utils': 5.62.0(eslint@9.39.4)(typescript@4.9.5) '@typescript-eslint/utils': 5.62.0(eslint@9.39.4)(typescript@4.9.5) debug: 4.4.3 eslint: 9.39.4 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@typescript-eslint/type-utils': 5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5) '@typescript-eslint/utils': 5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5) debug: 4.4.3(supports-color@8.1.1) eslint: 9.39.4(jiti@2.7.0) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) graphemer: 1.4.0 ignore: 5.3.2 natural-compare-lite: 1.4.0 @@ -24281,17 +24895,19 @@ snapshots: '@eslint-community/regexpp': 4.12.2 '@typescript-eslint/parser': 5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@5.9.3) '@typescript-eslint/scope-manager': 5.62.0 +<<<<<<< HEAD <<<<<<< HEAD '@typescript-eslint/type-utils': 5.62.0(eslint@9.39.4)(typescript@5.9.3) '@typescript-eslint/utils': 5.62.0(eslint@9.39.4)(typescript@5.9.3) debug: 4.4.3 eslint: 9.39.4 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@typescript-eslint/type-utils': 5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@5.9.3) '@typescript-eslint/utils': 5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@5.9.3) debug: 4.4.3(supports-color@8.1.1) eslint: 9.39.4(jiti@2.7.0) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) graphemer: 1.4.0 ignore: 5.3.2 natural-compare-lite: 1.4.0 @@ -24337,6 +24953,7 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -24351,8 +24968,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@typescript-eslint/experimental-utils@5.62.0(eslint@9.39.4)(typescript@4.9.5)': ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@typescript-eslint/experimental-utils@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5)': ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@typescript-eslint/utils': 5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5) eslint: 9.39.4(jiti@2.7.0) @@ -24368,6 +24986,7 @@ snapshots: - supports-color - typescript +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -24398,8 +25017,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) '@typescript-eslint/parser@5.62.0(eslint@9.39.4)(typescript@4.9.5)': ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@typescript-eslint/parser@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5)': ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 @@ -24409,11 +25029,13 @@ snapshots: ======= debug: 4.4.3(supports-color@8.1.1) <<<<<<< HEAD +<<<<<<< HEAD >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) eslint: 9.39.4 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) eslint: 9.39.4(jiti@2.7.0) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) optionalDependencies: typescript: 4.9.5 transitivePeerDependencies: @@ -24429,11 +25051,13 @@ snapshots: ======= debug: 4.4.3(supports-color@8.1.1) <<<<<<< HEAD +<<<<<<< HEAD >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) eslint: 9.39.4 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) eslint: 9.39.4(jiti@2.7.0) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) optionalDependencies: typescript: 5.9.3 transitivePeerDependencies: @@ -24486,6 +25110,7 @@ snapshots: dependencies: typescript: 5.9.3 +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -24521,13 +25146,14 @@ snapshots: debug: 4.4.3 eslint: 9.39.4 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@typescript-eslint/type-utils@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5)': dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) '@typescript-eslint/utils': 5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5) debug: 4.4.3(supports-color@8.1.1) eslint: 9.39.4(jiti@2.7.0) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) tsutils: 3.21.0(typescript@4.9.5) optionalDependencies: typescript: 4.9.5 @@ -24537,15 +25163,17 @@ snapshots: '@typescript-eslint/type-utils@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@5.9.3)': dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.3) +<<<<<<< HEAD <<<<<<< HEAD '@typescript-eslint/utils': 5.62.0(eslint@9.39.4)(typescript@5.9.3) debug: 4.4.3 eslint: 9.39.4 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) '@typescript-eslint/utils': 5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@5.9.3) debug: 4.4.3(supports-color@8.1.1) eslint: 9.39.4(jiti@2.7.0) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) tsutils: 3.21.0(typescript@5.9.3) optionalDependencies: typescript: 5.9.3 @@ -25301,6 +25929,7 @@ snapshots: '@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0)(webpack@5.106.2)': dependencies: +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -25310,6 +25939,9 @@ snapshots: webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) webpack-cli: 4.10.0(webpack-dev-server@4.15.2)(webpack@5.106.2) '@webpack-cli/info@1.5.0(webpack-cli@4.10.0)': @@ -25819,14 +26451,22 @@ snapshots: schema-utils: 2.7.1 webpack: 4.47.0 +<<<<<<< HEAD babel-loader@8.4.1(@babel/core@7.29.0)(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)): +======= + babel-loader@8.4.1(@babel/core@7.29.0)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)): +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: '@babel/core': 7.29.0 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 +<<<<<<< HEAD webpack: 5.106.2(esbuild@0.25.12)(postcss@8.5.14) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) babel-loader@8.4.1(@babel/core@7.29.0)(webpack@5.106.2): dependencies: @@ -25835,6 +26475,7 @@ snapshots: loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -25851,6 +26492,9 @@ snapshots: schema-utils: 4.3.3 webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)(webpack-cli@5.1.4) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) babel-plugin-add-react-displayname@0.0.5: {} @@ -26639,6 +27283,7 @@ snapshots: clean-webpack-plugin@4.0.0(webpack@5.106.2): dependencies: del: 4.1.1 +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -26648,6 +27293,9 @@ snapshots: webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) cli-boxes@2.2.1: {} @@ -26769,10 +27417,13 @@ snapshots: comma-separated-tokens@2.0.3: {} +<<<<<<< HEAD <<<<<<< HEAD ======= commander@10.0.1: {} +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) commander@11.1.0: {} commander@12.1.0: {} @@ -26792,6 +27443,11 @@ snapshots: commander@8.3.0: {} +<<<<<<< HEAD +======= + commander@9.5.0: {} + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) commondir@1.0.1: {} compare-func@2.0.0: @@ -27120,7 +27776,11 @@ snapshots: semver: 6.3.1 webpack: 4.47.0 +<<<<<<< HEAD css-loader@5.2.7(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)): +======= + css-loader@5.2.7(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)): +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: icss-utils: 5.1.0(postcss@8.5.14) loader-utils: 2.0.4 @@ -27132,7 +27792,11 @@ snapshots: postcss-value-parser: 4.2.0 schema-utils: 3.3.0 semver: 7.8.0 +<<<<<<< HEAD webpack: 5.106.2(esbuild@0.25.12)(postcss@8.5.14) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) css-loader@6.11.0(webpack@5.106.2): dependencies: @@ -27145,6 +27809,7 @@ snapshots: postcss-value-parser: 4.2.0 semver: 7.8.0 optionalDependencies: +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -27154,6 +27819,9 @@ snapshots: webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) css-loader@7.1.4(webpack@5.106.2): dependencies: @@ -27176,6 +27844,7 @@ snapshots: schema-utils: 4.3.3 serialize-javascript: 6.0.2 source-map: 0.6.1 +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -27197,6 +27866,11 @@ snapshots: serialize-javascript: 6.0.2 webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)(webpack-cli@5.1.4) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) + optionalDependencies: + esbuild: 0.28.0 +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) css-select@4.3.0: dependencies: @@ -27449,6 +28123,7 @@ snapshots: debug@3.2.7: dependencies: ms: 2.1.3 +<<<<<<< HEAD <<<<<<< HEAD debug@4.4.3: @@ -27461,17 +28136,13 @@ snapshots: ms: 2.1.3 optionalDependencies: supports-color: 5.5.0 +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) debug@4.4.3(supports-color@8.1.1): dependencies: ms: 2.1.3 optionalDependencies: -======= - debug@4.4.3(supports-color@8.1.1): - dependencies: - ms: 2.1.3 - optionalDependencies: ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) supports-color: 8.1.1 >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) @@ -27486,12 +28157,13 @@ snapshots: ======= decamelize@4.0.0: {} -<<<<<<< HEAD -======= decamelize@6.0.1: {} +<<<<<<< HEAD >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) decimal.js-light@2.5.1: {} decimal.js@10.6.0: {} @@ -27535,13 +28207,15 @@ snapshots: deep-object-diff@1.1.9: {} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD deepmerge@4.2.2: {} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) deepmerge-ts@7.1.5: {} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) deepmerge@4.3.1: {} @@ -27668,6 +28342,7 @@ snapshots: diff-sequences@29.6.3: {} +<<<<<<< HEAD <<<<<<< HEAD <<<<<<< HEAD ======= @@ -27679,15 +28354,15 @@ snapshots: diff@5.2.2: {} ======= ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) diff@5.2.2: {} diff@8.0.4: {} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) diffable-html@4.1.0: dependencies: htmlparser2: 3.10.1 ->>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) diffie-hellman@5.0.3: @@ -27811,6 +28486,7 @@ snapshots: dotenv-webpack@7.1.1(webpack@5.106.2): dependencies: dotenv-defaults: 2.0.2 +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) @@ -27820,21 +28496,13 @@ snapshots: <<<<<<< HEAD webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)(webpack-cli@4.10.0) ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) - - dotenv-webpack@8.1.1(webpack@5.106.2): - dependencies: - dotenv-defaults: 2.0.2 - webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)(webpack-cli@5.1.4) dotenv@16.3.2: {} -<<<<<<< HEAD - dotenv@16.6.1: {} -======= dotenv@17.4.2: {} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) dotenv@8.6.0: {} @@ -28107,6 +28775,7 @@ snapshots: es5-shim@4.6.7: {} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -28116,12 +28785,14 @@ snapshots: es5-ext: 0.10.64 es6-symbol: 3.1.4 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) es6-error@4.1.1: {} ->>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) es6-shim@0.35.8: {} +<<<<<<< HEAD esbuild-register@3.6.0(esbuild@0.25.12): dependencies: debug: 4.4.3 @@ -28129,6 +28800,8 @@ snapshots: transitivePeerDependencies: - supports-color +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) esbuild@0.25.12: optionalDependencies: '@esbuild/aix-ppc64': 0.25.12 @@ -28205,6 +28878,7 @@ snapshots: optionalDependencies: source-map: 0.6.1 +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -28229,8 +28903,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4)(typescript@4.9.5))(eslint@9.39.4))(eslint@9.39.4): ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5))(eslint@9.39.4(jiti@2.7.0)))(eslint@9.39.4(jiti@2.7.0)): ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: confusing-browser-globals: 1.0.11 eslint: 9.39.4(jiti@2.7.0) @@ -28257,6 +28932,7 @@ snapshots: object.entries: 1.1.9 semver: 6.3.1 +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -28279,8 +28955,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) eslint-config-airbnb-typescript@16.2.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4)(typescript@4.9.5))(eslint@9.39.4)(typescript@4.9.5))(@typescript-eslint/parser@5.62.0(eslint@9.39.4)(typescript@4.9.5))(eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4)(typescript@4.9.5))(eslint@9.39.4))(eslint@9.39.4): ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) eslint-config-airbnb-typescript@16.2.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5))(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5))(@typescript-eslint/parser@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5))(eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5))(eslint@9.39.4(jiti@2.7.0)))(eslint@9.39.4(jiti@2.7.0)): ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5))(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5) '@typescript-eslint/parser': 5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5) @@ -28304,6 +28981,7 @@ snapshots: eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.59.4(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1))(eslint@8.57.1) eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.59.4(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1) +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -28343,8 +29021,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) eslint-config-airbnb@19.0.4(eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4)(typescript@4.9.5))(eslint@9.39.4))(eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.4))(eslint-plugin-react-hooks@4.6.2(eslint@9.39.4))(eslint-plugin-react@7.37.5(eslint@9.39.4))(eslint@9.39.4): ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) eslint-config-airbnb@19.0.4(eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5))(eslint@9.39.4(jiti@2.7.0)))(eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.4(jiti@2.7.0)))(eslint-plugin-react-hooks@4.6.2(eslint@9.39.4(jiti@2.7.0)))(eslint-plugin-react@7.37.5(eslint@9.39.4(jiti@2.7.0)))(eslint@9.39.4(jiti@2.7.0)): ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: eslint: 9.39.4(jiti@2.7.0) eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5))(eslint@9.39.4(jiti@2.7.0)))(eslint@9.39.4(jiti@2.7.0)) @@ -28355,6 +29034,7 @@ snapshots: object.assign: 4.1.7 object.entries: 1.1.9 +<<<<<<< HEAD <<<<<<< HEAD <<<<<<< HEAD eslint-config-airbnb@19.0.4(eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4)(typescript@5.9.3))(eslint@9.39.4))(eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.4))(eslint-plugin-react-hooks@4.6.2(eslint@9.39.4))(eslint-plugin-react@7.37.5(eslint@9.39.4))(eslint@9.39.4): @@ -28377,6 +29057,8 @@ snapshots: eslint-config-airbnb@19.0.4(eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4)(typescript@6.0.3))(eslint@9.39.4))(eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.4))(eslint-plugin-react-hooks@4.6.2(eslint@9.39.4))(eslint-plugin-react@7.37.5(eslint@9.39.4))(eslint@9.39.4): >>>>>>> 94f1568ac ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) eslint-config-airbnb@19.0.4(eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3))(eslint@9.39.4(jiti@2.7.0)))(eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.4(jiti@2.7.0)))(eslint-plugin-react-hooks@4.6.2(eslint@9.39.4(jiti@2.7.0)))(eslint-plugin-react@7.37.5(eslint@9.39.4(jiti@2.7.0)))(eslint@9.39.4(jiti@2.7.0)): >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: @@ -28436,6 +29118,7 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -28451,8 +29134,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) eslint-import-resolver-root-import@1.0.4(babel-plugin-root-import@5.1.0)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4)(typescript@4.9.5))(eslint@9.39.4)): ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) eslint-import-resolver-root-import@1.0.4(babel-plugin-root-import@5.1.0)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5))(eslint@9.39.4(jiti@2.7.0))): ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: babel-plugin-root-import: 5.1.0 eslint-import-resolver-node: 0.3.10 @@ -28461,6 +29145,7 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD <<<<<<< HEAD <<<<<<< HEAD eslint-import-resolver-root-import@1.0.4(babel-plugin-root-import@6.6.0)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4)(typescript@5.9.3))(eslint@9.39.4)): @@ -28501,6 +29186,8 @@ snapshots: eslint-import-resolver-root-import@1.0.4(babel-plugin-root-import@6.6.0)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4)(typescript@6.0.3))(eslint@9.39.4)): >>>>>>> 94f1568ac ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) eslint-import-resolver-root-import@1.0.4(babel-plugin-root-import@6.6.0)(eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3))(eslint@9.39.4(jiti@2.7.0))): >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: @@ -28528,11 +29215,13 @@ snapshots: ======= debug: 4.4.3(supports-color@8.1.1) <<<<<<< HEAD +<<<<<<< HEAD >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) eslint: 9.39.4 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) eslint: 9.39.4(jiti@2.7.0) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) get-tsconfig: 4.14.0 is-bun-module: 2.0.0 stable-hash: 0.0.5 @@ -28549,6 +29238,7 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD <<<<<<< HEAD eslint-module-utils@2.12.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint@7.32.0): dependencies: @@ -28573,8 +29263,9 @@ snapshots: eslint-module-utils@2.12.1(@typescript-eslint/parser@5.62.0(eslint@9.39.4)(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4): ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) eslint-module-utils@2.12.1(@typescript-eslint/parser@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.7.0)): ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: debug: 3.2.7 optionalDependencies: @@ -28622,6 +29313,7 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -28686,8 +29378,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4)(typescript@4.9.5))(eslint@9.39.4): ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5))(eslint@9.39.4(jiti@2.7.0)): ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -28811,6 +29504,7 @@ snapshots: - eslint-import-resolver-webpack - supports-color +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -28839,8 +29533,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) eslint-plugin-jest@26.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4)(typescript@4.9.5))(eslint@9.39.4)(typescript@4.9.5))(eslint@9.39.4)(jest@27.5.1)(typescript@4.9.5): ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) eslint-plugin-jest@26.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5))(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5))(eslint@9.39.4(jiti@2.7.0))(jest@27.5.1)(typescript@4.9.5): ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@typescript-eslint/utils': 5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5) eslint: 9.39.4(jiti@2.7.0) @@ -28934,6 +29629,7 @@ snapshots: dependencies: eslint: 9.39.4(jiti@2.7.0) +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -28948,8 +29644,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) eslint-plugin-react-hooks@5.2.0(eslint@9.39.4): ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) eslint-plugin-react-hooks@5.2.0(eslint@9.39.4(jiti@2.7.0)): ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: eslint: 9.39.4(jiti@2.7.0) @@ -28997,6 +29694,7 @@ snapshots: string.prototype.matchall: 4.0.12 string.prototype.repeat: 1.0.0 +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -29013,8 +29711,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) eslint-plugin-storybook@0.5.13(eslint@9.39.4)(typescript@4.9.5): ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) eslint-plugin-storybook@0.5.13(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5): ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@storybook/csf': 0.0.1 '@typescript-eslint/experimental-utils': 5.62.0(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5) @@ -29153,6 +29852,11 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD +======= + esm-env@1.2.2: {} + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) espree@10.4.0: dependencies: acorn: 8.16.0 @@ -29193,6 +29897,7 @@ snapshots: etag@1.8.1: {} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -29209,8 +29914,9 @@ snapshots: d: 1.0.2 es5-ext: 0.10.64 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) event-target-shim@5.0.1: {} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) eventemitter3@4.0.7: {} @@ -29397,6 +30103,7 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -29404,6 +30111,8 @@ snapshots: dependencies: realistic-structured-clone: 3.0.0 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) extract-zip@2.0.1: dependencies: debug: 4.4.3(supports-color@8.1.1) @@ -29415,7 +30124,6 @@ snapshots: - supports-color fast-deep-equal@2.0.1: {} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) fast-deep-equal@3.1.3: {} @@ -29493,6 +30201,7 @@ snapshots: find-root: 1.1.0 parse-author: 2.0.0 parse5: 6.0.1 +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -29502,6 +30211,9 @@ snapshots: webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) optionalDependencies: html-webpack-plugin: 5.6.7(webpack@5.106.2) transitivePeerDependencies: @@ -29555,16 +30267,25 @@ snapshots: schema-utils: 3.3.0 webpack: 4.47.0 +<<<<<<< HEAD file-loader@6.2.0(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)): dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 webpack: 5.106.2(esbuild@0.25.12)(postcss@8.5.14) +======= + file-loader@6.2.0(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)): + dependencies: + loader-utils: 2.0.4 + schema-utils: 3.3.0 + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) file-loader@6.2.0(webpack@5.106.2): dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -29582,6 +30303,9 @@ snapshots: webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) file-system-cache@1.1.0: dependencies: @@ -29629,6 +30353,7 @@ snapshots: make-dir: 3.1.0 pkg-dir: 4.2.0 +<<<<<<< HEAD <<<<<<< HEAD ======= find-cache-dir@4.0.0: @@ -29636,6 +30361,8 @@ snapshots: common-path-prefix: 3.0.0 pkg-dir: 7.0.0 +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) find-file-up@0.1.3: dependencies: fs-exists-sync: 0.1.0 @@ -29720,6 +30447,7 @@ snapshots: cross-spawn: 7.0.6 signal-exit: 4.1.0 +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -29742,8 +30470,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) fork-ts-checker-webpack-plugin@4.1.6(eslint@9.39.4)(typescript@4.9.5)(webpack@4.47.0): ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) fork-ts-checker-webpack-plugin@4.1.6(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5)(webpack@4.47.0): ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: '@babel/code-frame': 7.29.0 chalk: 2.4.2 @@ -29759,10 +30488,14 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.1)(typescript@4.9.5)(webpack@4.47.0): +======= + fork-ts-checker-webpack-plugin@6.5.3(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5)(webpack@4.47.0): +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: '@babel/code-frame': 7.29.0 '@types/json-schema': 7.0.15 @@ -29780,9 +30513,9 @@ snapshots: typescript: 4.9.5 webpack: 4.47.0 optionalDependencies: - eslint: 8.57.1 + eslint: 9.39.4(jiti@2.7.0) - fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.1)(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)): + fork-ts-checker-webpack-plugin@6.5.3(eslint@9.39.4(jiti@2.7.0))(typescript@4.9.5)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)): dependencies: '@babel/code-frame': 7.29.0 '@types/json-schema': 7.0.15 @@ -29800,6 +30533,7 @@ snapshots: typescript: 4.9.5 webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14) optionalDependencies: +<<<<<<< HEAD eslint: 8.57.1 >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) @@ -29854,6 +30588,10 @@ snapshots: optionalDependencies: eslint: 9.39.4(jiti@2.7.0) +======= + eslint: 9.39.4(jiti@2.7.0) + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) fork-ts-checker-webpack-plugin@7.3.0(typescript@5.9.3)(webpack@5.106.2): dependencies: '@babel/code-frame': 7.29.0 @@ -29870,6 +30608,7 @@ snapshots: tapable: 2.3.3 typescript: 5.9.3 <<<<<<< HEAD +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -29877,8 +30616,9 @@ snapshots: >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)(webpack-cli@4.10.0) ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) fork-ts-checker-webpack-plugin@7.3.0(typescript@6.0.3)(webpack@5.106.2): dependencies: @@ -29897,6 +30637,7 @@ snapshots: typescript: 6.0.3 webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(webpack-cli@4.10.0) +<<<<<<< HEAD fork-ts-checker-webpack-plugin@8.0.0(typescript@4.9.5)(webpack@5.106.2): dependencies: '@babel/code-frame': 7.29.0 @@ -29915,6 +30656,8 @@ snapshots: webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)(webpack-cli@5.1.4) >>>>>>> 94f1568ac ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) fork-ts-checker-webpack-plugin@9.1.0(typescript@5.9.3)(webpack@5.106.2): dependencies: '@babel/code-frame': 7.29.0 @@ -30600,7 +31343,11 @@ snapshots: util.promisify: 1.0.0 webpack: 4.47.0 +<<<<<<< HEAD html-webpack-plugin@5.6.7(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)): +======= + html-webpack-plugin@5.6.7(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)): +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 @@ -30608,7 +31355,11 @@ snapshots: pretty-error: 4.0.0 tapable: 2.3.3 optionalDependencies: +<<<<<<< HEAD webpack: 5.106.2(esbuild@0.25.12)(postcss@8.5.14) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) html-webpack-plugin@5.6.7(webpack@5.106.2): dependencies: @@ -30618,12 +31369,15 @@ snapshots: pretty-error: 4.0.0 tapable: 2.3.3 optionalDependencies: +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= <<<<<<< HEAD webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)(webpack-cli@4.10.0) ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) htmlfy@0.8.1: {} @@ -30634,8 +31388,11 @@ snapshots: domhandler: 5.0.3 domutils: 3.2.2 entities: 7.0.1 +<<<<<<< HEAD >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) htmlparser2@3.10.1: dependencies: @@ -30851,6 +31608,7 @@ snapshots: inline-style-parser@0.2.7: {} +<<<<<<< HEAD <<<<<<< HEAD <<<<<<< HEAD ======= @@ -30900,6 +31658,8 @@ snapshots: strip-ansi: 5.2.0 through: 2.3.8 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) inquirer@12.11.1(@types/node@22.19.19): dependencies: '@inquirer/ansi': 1.0.2 @@ -30911,15 +31671,10 @@ snapshots: rxjs: 7.8.2 optionalDependencies: '@types/node': 22.19.19 ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) inquirer@8.2.7(@types/node@22.19.19): dependencies: -======= - inquirer@8.2.7(@types/node@22.19.19): - dependencies: ->>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) '@inquirer/external-editor': 1.0.3(@types/node@22.19.19) ansi-escapes: 4.3.2 chalk: 4.1.2 @@ -31122,6 +31877,13 @@ snapshots: is-in-browser@1.1.3: {} +<<<<<<< HEAD +======= + is-inside-container@1.0.0: + dependencies: + is-docker: 3.0.0 + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) is-interactive@1.0.0: {} is-interactive@2.0.0: {} @@ -32626,6 +33388,7 @@ snapshots: dependencies: immediate: 3.0.6 +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -32678,10 +33441,11 @@ snapshots: lightningcss-win32-arm64-msvc: 1.32.0 lightningcss-win32-x64-msvc: 1.32.0 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) lie@3.3.0: dependencies: immediate: 3.0.6 ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) lilconfig@2.1.0: {} @@ -32777,13 +33541,15 @@ snapshots: lodash.trimstart@4.5.1: {} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD lodash.truncate@4.4.2: {} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) lodash.union@4.6.0: {} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) lodash.uniq@4.5.0: {} @@ -32850,6 +33616,13 @@ snapshots: lz-string@1.5.0: {} +<<<<<<< HEAD +======= + magic-string@0.30.21: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) make-dir@2.1.0: dependencies: pify: 4.0.1 @@ -33329,6 +34102,7 @@ snapshots: dependencies: schema-utils: 4.3.3 tapable: 2.3.3 +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -33338,6 +34112,9 @@ snapshots: webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) minimalistic-assert@1.0.1: {} @@ -33491,6 +34268,11 @@ snapshots: mute-stream@1.0.0: {} +<<<<<<< HEAD +======= + mute-stream@2.0.0: {} + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) nan@2.27.0: {} nanoclone@0.2.1: {} @@ -33527,6 +34309,7 @@ snapshots: nested-error-stacks@2.1.1: {} +<<<<<<< HEAD <<<<<<< HEAD <<<<<<< HEAD ======= @@ -33541,11 +34324,11 @@ snapshots: next@14.2.35(babel-plugin-macros@3.1.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6): ======= ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) netmask@2.1.1: {} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) next@14.2.35(@playwright/test@1.60.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6): ->>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) dependencies: '@next/env': 14.2.35 '@swc/helpers': 0.5.5 @@ -34019,6 +34802,20 @@ snapshots: dependencies: mimic-fn: 2.1.0 +<<<<<<< HEAD +======= + onetime@7.0.0: + dependencies: + mimic-function: 5.0.1 + + open@10.2.0: + dependencies: + default-browser: 5.5.0 + define-lazy-prop: 3.0.0 + is-inside-container: 1.0.0 + wsl-utils: 0.1.0 + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) open@7.4.2: dependencies: is-docker: 2.2.1 @@ -34057,6 +34854,21 @@ snapshots: strip-ansi: 6.0.1 wcwidth: 1.0.1 +<<<<<<< HEAD +======= + ora@8.2.0: + dependencies: + chalk: 5.6.2 + cli-cursor: 5.0.0 + cli-spinners: 2.9.2 + is-interactive: 2.0.0 + is-unicode-supported: 2.1.0 + log-symbols: 6.0.0 + stdin-discarder: 0.2.2 + string-width: 7.2.0 + strip-ansi: 7.2.0 + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) os-browserify@0.3.0: {} os-homedir@1.0.2: {} @@ -34320,6 +35132,7 @@ snapshots: json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 +<<<<<<< HEAD <<<<<<< HEAD <<<<<<< HEAD ======= @@ -34329,6 +35142,8 @@ snapshots: parse-package-name@1.0.0: {} ======= ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) parse-json@7.1.1: dependencies: '@babel/code-frame': 7.29.0 @@ -34339,9 +35154,7 @@ snapshots: parse-ms@4.0.0: {} ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) parse-passwd@1.0.0: {} ->>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) parse-path@7.1.0: @@ -34517,12 +35330,15 @@ snapshots: dependencies: find-up: 5.0.0 +<<<<<<< HEAD <<<<<<< HEAD ======= pkg-dir@7.0.0: dependencies: find-up: 6.3.0 +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) playwright-core@1.60.0: {} playwright@1.60.0: @@ -34779,6 +35595,15 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 +<<<<<<< HEAD +======= + posthog-node@5.35.3(rxjs@7.8.2): + dependencies: + '@posthog/core': 1.29.10 + optionalDependencies: + rxjs: 7.8.2 + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) prelude-ls@1.2.1: {} prettier-linter-helpers@1.0.1: @@ -34836,6 +35661,7 @@ snapshots: process@0.11.10: {} +<<<<<<< HEAD <<<<<<< HEAD <<<<<<< HEAD ======= @@ -34854,6 +35680,10 @@ snapshots: >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + progress@2.0.3: {} + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) promise-inflight@1.0.1(bluebird@3.7.2): optionalDependencies: bluebird: 3.7.2 @@ -35407,12 +36237,15 @@ snapshots: dependencies: resolve: 1.22.12 +<<<<<<< HEAD <<<<<<< HEAD ======= rechoir@0.8.0: dependencies: resolve: 1.22.12 +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) recursive-readdir@2.2.3: dependencies: minimatch: 3.1.5 @@ -35483,6 +36316,7 @@ snapshots: relateurl@0.2.7: {} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -35501,10 +36335,11 @@ snapshots: - supports-color - utf-8-validate ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) release-zalgo@1.0.0: dependencies: es6-error: 4.1.1 ->>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) remark-external-links@8.0.0: @@ -35652,6 +36487,7 @@ snapshots: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -35660,10 +36496,11 @@ snapshots: onetime: 2.0.1 signal-exit: 3.0.7 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) resq@1.11.0: dependencies: fast-deep-equal: 2.0.1 ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) restore-cursor@3.1.0: @@ -35709,6 +36546,7 @@ snapshots: robust-predicates@3.0.3: {} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -35757,10 +36595,11 @@ snapshots: optionalDependencies: fsevents: 2.3.3 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) rrweb-cssom@0.7.1: {} rrweb-cssom@0.8.0: {} ->>>>>>> 75d3d25f4 ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) >>>>>>> 94f1568ac ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) rsvp@4.8.5: {} @@ -35910,6 +36749,7 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -35929,10 +36769,11 @@ snapshots: transitivePeerDependencies: - supports-color ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) serialize-error@12.0.0: dependencies: type-fest: 4.41.0 ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) serialize-javascript@4.0.0: @@ -36115,6 +36956,7 @@ snapshots: slash@3.0.0: {} +<<<<<<< HEAD <<<<<<< HEAD ======= slash@4.0.0: {} @@ -36126,8 +36968,9 @@ snapshots: astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) slash@5.1.0: {} ->>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) smart-buffer@4.2.0: {} @@ -36168,8 +37011,6 @@ snapshots: debug: 4.4.3 ======= debug: 4.4.3(supports-color@8.1.1) -<<<<<<< HEAD -======= socks: 2.8.9 transitivePeerDependencies: - supports-color @@ -36178,8 +37019,11 @@ snapshots: dependencies: agent-base: 7.1.4 debug: 4.4.3(supports-color@8.1.1) +<<<<<<< HEAD >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) socks: 2.8.9 transitivePeerDependencies: - supports-color @@ -36623,6 +37467,7 @@ snapshots: schema-utils: 2.7.1 webpack: 4.47.0 +<<<<<<< HEAD style-loader@2.0.0(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)): dependencies: loader-utils: 2.0.4 @@ -36640,6 +37485,17 @@ snapshots: webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + style-loader@2.0.0(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)): + dependencies: + loader-utils: 2.0.4 + schema-utils: 3.3.0 + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14) + + style-loader@3.3.4(webpack@5.106.2): + dependencies: + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) style-loader@4.0.0(webpack@5.106.2): dependencies: @@ -36845,6 +37701,7 @@ snapshots: transitivePeerDependencies: - bluebird +<<<<<<< HEAD <<<<<<< HEAD terser-webpack-plugin@5.6.0(esbuild@0.25.12)(postcss@8.5.14)(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)): ======= @@ -36854,11 +37711,15 @@ snapshots: terser-webpack-plugin@5.6.0(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack@5.106.2): >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + terser-webpack-plugin@5.6.0(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack@5.106.2): +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 schema-utils: 4.3.3 terser: 5.47.1 +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(esbuild@0.25.12)(postcss@8.5.14) optionalDependencies: @@ -36867,8 +37728,9 @@ snapshots: <<<<<<< HEAD webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.25.12)(postcss@8.5.14) ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) optionalDependencies: '@swc/core': 1.15.40(@swc/helpers@0.5.21) esbuild: 0.28.0 @@ -36885,13 +37747,23 @@ snapshots: optionalDependencies: postcss: 8.5.14 +<<<<<<< HEAD terser-webpack-plugin@5.6.0(webpack@5.106.2): +======= + terser-webpack-plugin@5.6.0(@swc/core@1.15.40(@swc/helpers@0.5.21))(webpack@5.106.2): +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 schema-utils: 4.3.3 terser: 5.47.1 +<<<<<<< HEAD webpack: 5.106.2(webpack-cli@4.10.0) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(webpack-cli@4.10.0) + optionalDependencies: + '@swc/core': 1.15.40(@swc/helpers@0.5.21) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) terser@4.8.1: dependencies: @@ -36930,6 +37802,7 @@ snapshots: loader-utils: 2.0.4 neo-async: 2.6.2 schema-utils: 3.3.0 +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -36947,6 +37820,9 @@ snapshots: schema-utils: 4.3.3 webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)(webpack-cli@5.1.4) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) thread-stream@0.15.2: dependencies: @@ -36967,6 +37843,7 @@ snapshots: dependencies: setimmediate: 1.0.5 +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -36975,8 +37852,9 @@ snapshots: es5-ext: 0.10.64 next-tick: 1.1.0 ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) tiny-inflate@1.0.3: {} ->>>>>>> 75d3d25f4 ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) >>>>>>> 94f1568ac ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) tiny-invariant@1.3.3: {} @@ -37010,6 +37888,19 @@ snapshots: dependencies: tldts-core: 7.0.30 +<<<<<<< HEAD +======= + tmcp@1.19.4(typescript@5.9.3): + dependencies: + '@standard-schema/spec': 1.1.0 + json-rpc-2.0: 1.7.1 + sqids: 0.3.0 + uri-template-matcher: 1.1.2 + valibot: 1.2.0(typescript@5.9.3) + transitivePeerDependencies: + - typescript + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) tmp@0.2.5: {} tmpl@1.0.5: {} @@ -37096,11 +37987,15 @@ snapshots: ts-dedent@2.2.0: {} +<<<<<<< HEAD <<<<<<< HEAD ts-jest@27.1.5(@babel/core@7.29.0)(babel-jest@27.5.1(@babel/core@7.29.0))(esbuild@0.25.12)(jest@27.5.1)(typescript@4.9.5): ======= ts-jest@27.1.5(@babel/core@7.29.0)(@types/jest@27.5.2)(babel-jest@27.5.1(@babel/core@7.29.0))(jest@27.5.1)(typescript@4.9.5): >>>>>>> dea01ef63 (NYM-1199: integrate OpenSpec AI for Node Families UI) +======= + ts-jest@27.1.5(@babel/core@7.29.0)(babel-jest@27.5.1(@babel/core@7.29.0))(jest@27.5.1)(typescript@4.9.5): +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -37116,6 +38011,7 @@ snapshots: '@babel/core': 7.29.0 babel-jest: 27.5.1(@babel/core@7.29.0) +<<<<<<< HEAD <<<<<<< HEAD <<<<<<< HEAD ======= @@ -37148,8 +38044,9 @@ snapshots: ts-jest@29.4.9(@babel/core@7.29.0)(@jest/transform@29.7.0)(@jest/types@30.4.1)(babel-jest@29.7.0(@babel/core@7.29.0))(esbuild@0.25.12)(jest-util@29.7.0)(jest@29.7.0(@types/node@22.19.19)(babel-plugin-macros@3.1.0))(typescript@5.9.3): >>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) ts-jest@29.4.9(@babel/core@7.29.0)(@jest/transform@29.7.0)(@jest/types@30.4.1)(babel-jest@29.7.0(@babel/core@7.29.0))(esbuild@0.28.0)(jest-util@30.4.1)(jest@29.7.0(@types/node@22.19.19)(babel-plugin-macros@3.1.0))(typescript@5.9.3): ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -37178,6 +38075,7 @@ snapshots: semver: 7.8.0 source-map: 0.7.6 typescript: 5.9.3 +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -37211,11 +38109,16 @@ snapshots: source-map-support: 0.5.21 yn: 2.0.0 ======= +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) + + ts-mixer@6.0.4: {} + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) ts-morph@27.0.2: dependencies: '@ts-morph/common': 0.28.1 code-block-writer: 13.0.3 ->>>>>>> 75d3d25f4 ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) >>>>>>> 94f1568ac ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) ts-pnp@1.2.0(typescript@4.9.5): @@ -37358,6 +38261,7 @@ snapshots: typescript@5.9.3: {} +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD @@ -37369,8 +38273,9 @@ snapshots: typeson@6.1.0: {} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) typescript@6.0.3: {} ->>>>>>> 75d3d25f4 ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) >>>>>>> 94f1568ac ([DEV] add Code Connect scaffold for FamilyPage (NYM-1199)) ufo@1.6.4: {} @@ -37611,13 +38516,18 @@ snapshots: schema-utils: 3.3.0 webpack: 4.47.0 optionalDependencies: +<<<<<<< HEAD file-loader: 6.2.0(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)) +======= + file-loader: 6.2.0(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) url-loader@4.1.1(file-loader@6.2.0(webpack@5.106.2))(webpack@5.106.2): dependencies: loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.3.0 +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -37627,6 +38537,9 @@ snapshots: webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) optionalDependencies: file-loader: 6.2.0(webpack@5.106.2) @@ -37917,6 +38830,7 @@ snapshots: import-local: 3.2.0 interpret: 2.2.0 rechoir: 0.7.1 +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -37926,6 +38840,9 @@ snapshots: webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) webpack-merge: 5.10.0 optionalDependencies: webpack-dev-server: 4.15.2(webpack-cli@4.10.0)(webpack@5.106.2) @@ -37939,7 +38856,11 @@ snapshots: webpack: 4.47.0 webpack-log: 2.0.0 +<<<<<<< HEAD webpack-dev-middleware@4.3.0(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)): +======= + webpack-dev-middleware@4.3.0(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)): +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: colorette: 1.4.0 mem: 8.1.1 @@ -37947,16 +38868,26 @@ snapshots: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 3.3.0 +<<<<<<< HEAD webpack: 5.106.2(esbuild@0.25.12)(postcss@8.5.14) webpack-dev-middleware@5.3.4(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)): +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14) + + webpack-dev-middleware@5.3.4(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)): +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: colorette: 2.0.20 memfs: 3.5.3 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.3.3 +<<<<<<< HEAD webpack: 5.106.2(esbuild@0.25.12)(postcss@8.5.14) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) optional: true webpack-dev-middleware@5.3.4(webpack@5.106.2): @@ -37966,6 +38897,7 @@ snapshots: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.3.3 +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -37975,6 +38907,9 @@ snapshots: webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) webpack-dev-middleware@6.1.3(webpack@5.106.2): dependencies: @@ -38019,6 +38954,7 @@ snapshots: webpack-dev-middleware: 5.3.4(webpack@5.106.2) ws: 8.20.1 optionalDependencies: +<<<<<<< HEAD <<<<<<< HEAD webpack: 5.106.2(postcss@8.5.14)(webpack-cli@4.10.0) ======= @@ -38028,6 +38964,9 @@ snapshots: webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) webpack-cli: 4.10.0(webpack-dev-server@4.15.2)(webpack@5.106.2) transitivePeerDependencies: - bufferutil @@ -38035,7 +38974,11 @@ snapshots: - supports-color - utf-8-validate +<<<<<<< HEAD webpack-dev-server@4.15.2(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)): +======= + webpack-dev-server@4.15.2(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)): +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 @@ -38065,10 +39008,17 @@ snapshots: serve-index: 1.9.2 sockjs: 0.3.24 spdy: 4.0.2 +<<<<<<< HEAD webpack-dev-middleware: 5.3.4(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)) ws: 8.20.1 optionalDependencies: webpack: 5.106.2(esbuild@0.25.12)(postcss@8.5.14) +======= + webpack-dev-middleware: 5.3.4(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) + ws: 8.20.1 + optionalDependencies: + webpack: 5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) transitivePeerDependencies: - bufferutil - debug @@ -38146,6 +39096,7 @@ snapshots: transitivePeerDependencies: - supports-color +<<<<<<< HEAD <<<<<<< HEAD webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14): ======= @@ -38155,6 +39106,9 @@ snapshots: webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0): >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack-cli@4.10.0): +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.9 @@ -38177,6 +39131,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 4.3.3 tapable: 2.3.3 +<<<<<<< HEAD <<<<<<< HEAD terser-webpack-plugin: 5.6.0(esbuild@0.25.12)(postcss@8.5.14)(webpack@5.106.2(esbuild@0.25.12)(postcss@8.5.14)) ======= @@ -38186,6 +39141,9 @@ snapshots: terser-webpack-plugin: 5.6.0(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack@5.106.2) >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= + terser-webpack-plugin: 5.6.0(@swc/core@1.15.40(@swc/helpers@0.5.21))(esbuild@0.28.0)(postcss@8.5.14)(webpack@5.106.2) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) watchpack: 2.5.1 webpack-sources: 3.4.1 optionalDependencies: @@ -38204,7 +39162,11 @@ snapshots: - postcss - uglify-js +<<<<<<< HEAD webpack@5.106.2(postcss@8.5.14)(webpack-cli@4.10.0): +======= + webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14): +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.9 @@ -38227,11 +39189,17 @@ snapshots: neo-async: 2.6.2 schema-utils: 4.3.3 tapable: 2.3.3 +<<<<<<< HEAD terser-webpack-plugin: 5.6.0(postcss@8.5.14)(webpack@5.106.2) watchpack: 2.5.1 webpack-sources: 3.4.1 optionalDependencies: webpack-cli: 4.10.0(webpack-dev-server@4.15.2)(webpack@5.106.2) +======= + terser-webpack-plugin: 5.6.0(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)(webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(postcss@8.5.14)) + watchpack: 2.5.1 + webpack-sources: 3.4.1 +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) transitivePeerDependencies: - '@minify-html/node' - '@swc/core' @@ -38246,7 +39214,11 @@ snapshots: - postcss - uglify-js +<<<<<<< HEAD webpack@5.106.2(webpack-cli@4.10.0): +======= + webpack@5.106.2(@swc/core@1.15.40(@swc/helpers@0.5.21))(webpack-cli@4.10.0): +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.9 @@ -38269,7 +39241,11 @@ snapshots: neo-async: 2.6.2 schema-utils: 4.3.3 tapable: 2.3.3 +<<<<<<< HEAD terser-webpack-plugin: 5.6.0(webpack@5.106.2) +======= + terser-webpack-plugin: 5.6.0(@swc/core@1.15.40(@swc/helpers@0.5.21))(webpack@5.106.2) +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) watchpack: 2.5.1 webpack-sources: 3.4.1 optionalDependencies: @@ -38483,6 +39459,13 @@ snapshots: ws@8.20.1: {} +<<<<<<< HEAD +======= + wsl-utils@0.1.0: + dependencies: + is-wsl: 3.1.1 + +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) x-default-browser@0.4.0: optionalDependencies: default-browser-id: 1.0.4 @@ -38534,6 +39517,7 @@ snapshots: yargs-parser@21.1.1: {} +<<<<<<< HEAD <<<<<<< HEAD <<<<<<< HEAD ======= @@ -38543,17 +39527,15 @@ snapshots: ======= >>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) yargs-unparser@2.0.0: dependencies: camelcase: 6.3.0 decamelize: 4.0.0 flat: 5.0.2 is-plain-obj: 2.1.0 -<<<<<<< HEAD -======= -======= ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) yargs@15.4.1: dependencies: cliui: 6.0.0 @@ -38567,7 +39549,6 @@ snapshots: which-module: 2.0.1 y18n: 4.0.3 yargs-parser: 18.1.3 ->>>>>>> a60b7c732 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) >>>>>>> d9b73f9d1 (NYM-1199: Add Node Families wallet feature with comprehensive UI and E2E tests) yargs@16.2.0: @@ -38590,16 +39571,18 @@ snapshots: y18n: 5.0.8 yargs-parser: 21.1.1 +<<<<<<< HEAD <<<<<<< HEAD ======= <<<<<<< HEAD yn@2.0.0: {} ======= +======= +>>>>>>> e21c28033 (NYM-1199: resolve open questions for node-families-real-ipc) yauzl@2.10.0: dependencies: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 ->>>>>>> 983d05778 (NYM-1199: Node Families E2E with mock app shell & native webview tests) >>>>>>> 495d4055b (NYM-1199: Node Families E2E with mock app shell & native webview tests) yocto-queue@0.1.0: {}