@salesforce/templates 66.10.3 → 66.10.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/lib/generators/uiBundleGenerator.d.ts +1 -0
  2. package/lib/generators/uiBundleGenerator.js +13 -0
  3. package/lib/generators/uiBundleGenerator.js.map +1 -1
  4. package/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/package-lock.json +257 -257
  5. package/lib/templates/project/reactinternalapp/CHANGELOG.md +65 -0
  6. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/package-lock.json +261 -261
  7. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/package.json +4 -4
  8. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/components/AgentforceConversationClient.tsx +13 -1
  9. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/pages/AccountObjectDetailPage.tsx +4 -2
  10. package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/src/types/conversation.ts +1 -0
  11. package/lib/templates/project/reactinternalapp/package.json +5 -1
  12. package/lib/templates/project/reactinternalapp/scripts/org-setup-config-schema.mjs +96 -0
  13. package/lib/templates/project/reactinternalapp/scripts/org-setup.mjs +408 -178
  14. package/lib/templates/project/reactinternalapp/scripts/validate-org-setup-config.mjs +38 -0
  15. package/lib/templates/uiBundles/angularbasic/.forceignore +15 -0
  16. package/lib/templates/uiBundles/angularbasic/.postcssrc.json +5 -0
  17. package/lib/templates/uiBundles/angularbasic/.prettierignore +8 -0
  18. package/lib/templates/uiBundles/angularbasic/.prettierrc +12 -0
  19. package/lib/templates/uiBundles/angularbasic/CHANGELOG.md +4 -0
  20. package/lib/templates/uiBundles/angularbasic/README.md +85 -0
  21. package/lib/templates/uiBundles/angularbasic/_uibundle.uibundle-meta.xml +7 -0
  22. package/lib/templates/uiBundles/angularbasic/angular.json +94 -0
  23. package/lib/templates/uiBundles/angularbasic/esbuild/api-version.mjs +17 -0
  24. package/lib/templates/uiBundles/angularbasic/eslint.config.js +56 -0
  25. package/lib/templates/uiBundles/angularbasic/middleware/html.mjs +3 -0
  26. package/lib/templates/uiBundles/angularbasic/middleware/proxy.mjs +12 -0
  27. package/lib/templates/uiBundles/angularbasic/package-lock.json +14070 -0
  28. package/lib/templates/uiBundles/angularbasic/package.json +52 -0
  29. package/lib/templates/uiBundles/angularbasic/playwright.config.ts +25 -0
  30. package/lib/templates/uiBundles/angularbasic/public/favicon.ico +0 -0
  31. package/lib/templates/uiBundles/angularbasic/scripts/rewrite-e2e-assets.mjs +30 -0
  32. package/lib/templates/uiBundles/angularbasic/src/app/api/graphql-client.service.spec.ts +154 -0
  33. package/lib/templates/uiBundles/angularbasic/src/app/api/graphql-client.service.ts +51 -0
  34. package/lib/templates/uiBundles/angularbasic/src/app/app.config.ts +8 -0
  35. package/lib/templates/uiBundles/angularbasic/src/app/app.css +0 -0
  36. package/lib/templates/uiBundles/angularbasic/src/app/app.html +1 -0
  37. package/lib/templates/uiBundles/angularbasic/src/app/app.routes.ts +21 -0
  38. package/lib/templates/uiBundles/angularbasic/src/app/app.spec.ts +18 -0
  39. package/lib/templates/uiBundles/angularbasic/src/app/app.ts +10 -0
  40. package/lib/templates/uiBundles/angularbasic/src/app/layout/app-layout.component.html +50 -0
  41. package/lib/templates/uiBundles/angularbasic/src/app/layout/app-layout.component.spec.ts +63 -0
  42. package/lib/templates/uiBundles/angularbasic/src/app/layout/app-layout.component.ts +21 -0
  43. package/lib/templates/uiBundles/angularbasic/src/app/pages/home/home.component.html +6 -0
  44. package/lib/templates/uiBundles/angularbasic/src/app/pages/home/home.component.spec.ts +23 -0
  45. package/lib/templates/uiBundles/angularbasic/src/app/pages/home/home.component.ts +7 -0
  46. package/lib/templates/uiBundles/angularbasic/src/app/pages/not-found/not-found.component.html +12 -0
  47. package/lib/templates/uiBundles/angularbasic/src/app/pages/not-found/not-found.component.spec.ts +33 -0
  48. package/lib/templates/uiBundles/angularbasic/src/app/pages/not-found/not-found.component.ts +9 -0
  49. package/lib/templates/uiBundles/angularbasic/src/index.html +13 -0
  50. package/lib/templates/uiBundles/angularbasic/src/main.ts +5 -0
  51. package/lib/templates/uiBundles/angularbasic/src/styles.css +12 -0
  52. package/lib/templates/uiBundles/angularbasic/src/types/sf-globals.d.ts +9 -0
  53. package/lib/templates/uiBundles/angularbasic/tsconfig.app.json +11 -0
  54. package/lib/templates/uiBundles/angularbasic/tsconfig.json +33 -0
  55. package/lib/templates/uiBundles/angularbasic/tsconfig.spec.json +10 -0
  56. package/lib/templates/uiBundles/angularbasic/ui-bundle.json +7 -0
  57. package/lib/templates/uiBundles/reactbasic/package-lock.json +261 -261
  58. package/lib/templates/uiBundles/reactbasic/package.json +4 -4
  59. package/package.json +5 -4
@@ -8,8 +8,8 @@
8
8
  "name": "base-react-app",
9
9
  "version": "1.59.0",
10
10
  "dependencies": {
11
- "@salesforce/platform-sdk": "^10.19.0",
12
- "@salesforce/ui-bundle": "^10.19.0",
11
+ "@salesforce/platform-sdk": "^10.24.0",
12
+ "@salesforce/ui-bundle": "^10.24.0",
13
13
  "@tailwindcss/vite": "^4.1.17",
14
14
  "class-variance-authority": "^0.7.1",
15
15
  "clsx": "^2.1.1",
@@ -34,8 +34,8 @@
34
34
  "@graphql-eslint/eslint-plugin": "^4.1.0",
35
35
  "@graphql-tools/utils": "^11.0.0",
36
36
  "@playwright/test": "^1.49.0",
37
- "@salesforce/graphiti": "^10.19.0",
38
- "@salesforce/vite-plugin-ui-bundle": "^10.19.0",
37
+ "@salesforce/graphiti": "^10.24.0",
38
+ "@salesforce/vite-plugin-ui-bundle": "^10.24.0",
39
39
  "@testing-library/jest-dom": "^6.6.3",
40
40
  "@testing-library/react": "^16.1.0",
41
41
  "@testing-library/user-event": "^14.5.2",
@@ -2154,13 +2154,13 @@
2154
2154
  }
2155
2155
  },
2156
2156
  "node_modules/@graphql-tools/apollo-engine-loader": {
2157
- "version": "8.0.30",
2158
- "resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.30.tgz",
2159
- "integrity": "sha512-hUydKGGECrWloERMmfoMzHZi12X99AM9geCGF5XVsv4iMRl/Iyuet24th4kC9bZ8MlAdCwAwtUsCyv9uRfYwSA==",
2157
+ "version": "8.0.31",
2158
+ "resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.31.tgz",
2159
+ "integrity": "sha512-ToqJ24QuNtGPG7XDQP7KWFMFacz7/Q7FtsNhWBNffljSloG6w6UrvAf85Ono+8d32OI5Es8tKhn2K1IBtzhj4Q==",
2160
2160
  "dev": true,
2161
2161
  "license": "MIT",
2162
2162
  "dependencies": {
2163
- "@graphql-tools/utils": "^11.1.0",
2163
+ "@graphql-tools/utils": "^11.1.1",
2164
2164
  "@whatwg-node/fetch": "^0.10.13",
2165
2165
  "sync-fetch": "0.6.0",
2166
2166
  "tslib": "^2.4.0"
@@ -2192,14 +2192,14 @@
2192
2192
  }
2193
2193
  },
2194
2194
  "node_modules/@graphql-tools/code-file-loader": {
2195
- "version": "8.1.32",
2196
- "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.1.32.tgz",
2197
- "integrity": "sha512-gR5mNQjn0BugDL8a4A+ovS2KEvU52RNOGnbwiq9oWAEHiSv7iqJu77bpWARTzlE1ZFPK5MSQe9218+1t5PbXmQ==",
2195
+ "version": "8.1.33",
2196
+ "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.1.33.tgz",
2197
+ "integrity": "sha512-FKMZ6ktSNeewLfjIkW96Kw73NBLkK37C6Gh1kv5QtJy/tumuZYt8uTq9bM3P1Y82OscGyVC6/4V12TVaEraYCw==",
2198
2198
  "dev": true,
2199
2199
  "license": "MIT",
2200
2200
  "dependencies": {
2201
- "@graphql-tools/graphql-tag-pluck": "8.3.31",
2202
- "@graphql-tools/utils": "^11.1.0",
2201
+ "@graphql-tools/graphql-tag-pluck": "8.3.32",
2202
+ "@graphql-tools/utils": "^11.1.1",
2203
2203
  "globby": "^11.0.3",
2204
2204
  "tslib": "^2.4.0",
2205
2205
  "unixify": "^1.0.0"
@@ -2252,13 +2252,13 @@
2252
2252
  }
2253
2253
  },
2254
2254
  "node_modules/@graphql-tools/executor": {
2255
- "version": "1.5.3",
2256
- "resolved": "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.5.3.tgz",
2257
- "integrity": "sha512-mgBFC0bsrZPZLu9EnydpMnAuQ8Iiq0CEbUcsmvXsm2/iYektGHDN/+bmb7hicA6dWZtdPfklYJmr21WD0GnOfA==",
2255
+ "version": "1.5.4",
2256
+ "resolved": "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.5.4.tgz",
2257
+ "integrity": "sha512-6CdAENBTtVIXmOoJWJvYNFpE0b8zzwAMZ+VGkyLY2QT5dRGCjZTnGpDIFtxQa8IvRjnPpY3iUptgPlqTLOw3VA==",
2258
2258
  "dev": true,
2259
2259
  "license": "MIT",
2260
2260
  "dependencies": {
2261
- "@graphql-tools/utils": "^11.1.0",
2261
+ "@graphql-tools/utils": "^11.1.1",
2262
2262
  "@graphql-typed-document-node/core": "^3.2.0",
2263
2263
  "@repeaterjs/repeater": "^3.0.4",
2264
2264
  "@whatwg-node/disposablestack": "^0.0.6",
@@ -2336,17 +2336,17 @@
2336
2336
  }
2337
2337
  },
2338
2338
  "node_modules/@graphql-tools/executor-legacy-ws": {
2339
- "version": "1.1.28",
2340
- "resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.1.28.tgz",
2341
- "integrity": "sha512-O4uj93GG9iUb3s32eyhUohvyfA8mLhN8FvGzEdK628hFQPhZN75yurtVFrR08DHex71mQ3wYCCFkErpwdJbDDQ==",
2339
+ "version": "1.1.29",
2340
+ "resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.1.29.tgz",
2341
+ "integrity": "sha512-Z8fBtK8Uyp1Lyt3UgRu6BPx1fL3wvnGiRS1Wbb+nWQuwGacXDS8Pfr2e5BmV3OCHG2prbkJMr+caVFMWCbt9ug==",
2342
2342
  "dev": true,
2343
2343
  "license": "MIT",
2344
2344
  "dependencies": {
2345
- "@graphql-tools/utils": "^11.1.0",
2345
+ "@graphql-tools/utils": "^11.1.1",
2346
2346
  "@types/ws": "^8.0.0",
2347
2347
  "isomorphic-ws": "^5.0.0",
2348
2348
  "tslib": "^2.4.0",
2349
- "ws": "^8.20.0"
2349
+ "ws": "^8.21.0"
2350
2350
  },
2351
2351
  "engines": {
2352
2352
  "node": ">=16.0.0"
@@ -2356,14 +2356,14 @@
2356
2356
  }
2357
2357
  },
2358
2358
  "node_modules/@graphql-tools/git-loader": {
2359
- "version": "8.0.36",
2360
- "resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-8.0.36.tgz",
2361
- "integrity": "sha512-PDDakesRu8FJYHJLf9/gkTweh8M19Bymz9i+vOlk9OTs9XmNcCqKM+1S610KX2AodvuBFz/xbesjTtTJIppLPg==",
2359
+ "version": "8.0.37",
2360
+ "resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-8.0.37.tgz",
2361
+ "integrity": "sha512-J1GNGyjb8inHWXt4F9n5flmaiwhYP9WcwTWBs/fSeXikppcz+yGOO4BM0xx9BOEROxKW5fDM6UT9MdRCcs++zw==",
2362
2362
  "dev": true,
2363
2363
  "license": "MIT",
2364
2364
  "dependencies": {
2365
- "@graphql-tools/graphql-tag-pluck": "8.3.31",
2366
- "@graphql-tools/utils": "^11.1.0",
2365
+ "@graphql-tools/graphql-tag-pluck": "8.3.32",
2366
+ "@graphql-tools/utils": "^11.1.1",
2367
2367
  "is-glob": "4.0.3",
2368
2368
  "micromatch": "^4.0.8",
2369
2369
  "tslib": "^2.4.0",
@@ -2377,15 +2377,15 @@
2377
2377
  }
2378
2378
  },
2379
2379
  "node_modules/@graphql-tools/github-loader": {
2380
- "version": "9.1.2",
2381
- "resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-9.1.2.tgz",
2382
- "integrity": "sha512-jhRJncj9Wkr1Cd8Mo3QI2oG6fTw5ILr1/OXcHIqx744NBj8pPwQBXmQzZqh7MXxbekl2EAcum7SJIjq1HpYcPA==",
2380
+ "version": "9.1.3",
2381
+ "resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-9.1.3.tgz",
2382
+ "integrity": "sha512-sKxjy4zZ12ci0y4Wd/rl7odyl7dN1EU6Ttx8nhHHZs+VXaaasNoAni2pOrll8IR1wlYWhAe0hLBQDWblp7gWiw==",
2383
2383
  "dev": true,
2384
2384
  "license": "MIT",
2385
2385
  "dependencies": {
2386
- "@graphql-tools/executor-http": "^3.2.1",
2387
- "@graphql-tools/graphql-tag-pluck": "^8.3.31",
2388
- "@graphql-tools/utils": "^11.1.0",
2386
+ "@graphql-tools/executor-http": "^3.3.0",
2387
+ "@graphql-tools/graphql-tag-pluck": "^8.3.32",
2388
+ "@graphql-tools/utils": "^11.1.1",
2389
2389
  "@whatwg-node/fetch": "^0.10.13",
2390
2390
  "@whatwg-node/promise-helpers": "^1.0.0",
2391
2391
  "sync-fetch": "0.6.0",
@@ -2399,14 +2399,14 @@
2399
2399
  }
2400
2400
  },
2401
2401
  "node_modules/@graphql-tools/graphql-file-loader": {
2402
- "version": "8.1.14",
2403
- "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.1.14.tgz",
2404
- "integrity": "sha512-CfAcsSEVkkHfEXLFzrd5rUYpcQEGWNV8lfc1Tb1p5m9HnYICzDDH08I5V33iMrEDza3GuujjjRBYqplBkqwIow==",
2402
+ "version": "8.1.15",
2403
+ "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.1.15.tgz",
2404
+ "integrity": "sha512-ehK6IuX1G2Rc1uVaEUE/M+D7JAGnBux+Ia/BPL92WNcTYBcvYZfFPuR9JA5Fn1wOxplRiRFyERzQEMltZF0nhg==",
2405
2405
  "dev": true,
2406
2406
  "license": "MIT",
2407
2407
  "dependencies": {
2408
- "@graphql-tools/import": "^7.1.14",
2409
- "@graphql-tools/utils": "^11.1.0",
2408
+ "@graphql-tools/import": "^7.1.15",
2409
+ "@graphql-tools/utils": "^11.1.1",
2410
2410
  "globby": "^11.0.3",
2411
2411
  "tslib": "^2.4.0",
2412
2412
  "unixify": "^1.0.0"
@@ -2419,18 +2419,18 @@
2419
2419
  }
2420
2420
  },
2421
2421
  "node_modules/@graphql-tools/graphql-tag-pluck": {
2422
- "version": "8.3.31",
2423
- "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.31.tgz",
2424
- "integrity": "sha512-ema2RRPZGj8TKruNElyDBHVCNFMxioGIVfLBuiA+GdfmRGt95b/i7Uksnj4EwItA6MCmhxokxZoa/fl6mJt3tw==",
2422
+ "version": "8.3.32",
2423
+ "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.32.tgz",
2424
+ "integrity": "sha512-5CuTW3kSv7fQ6gsaGS/A+tL3wXeLBN1vMQF5MDFhyv+GIpMYdOzbcaGrLIppxFam7IAu+ZUri8s6fxsdreL4Lw==",
2425
2425
  "dev": true,
2426
2426
  "license": "MIT",
2427
2427
  "dependencies": {
2428
- "@babel/core": "^7.28.6",
2429
- "@babel/parser": "^7.29.2",
2428
+ "@babel/core": "^7.29.7",
2429
+ "@babel/parser": "^7.29.3",
2430
2430
  "@babel/plugin-syntax-import-assertions": "^7.26.0",
2431
2431
  "@babel/traverse": "^7.26.10",
2432
2432
  "@babel/types": "^7.26.10",
2433
- "@graphql-tools/utils": "^11.1.0",
2433
+ "@graphql-tools/utils": "^11.1.1",
2434
2434
  "tslib": "^2.4.0"
2435
2435
  },
2436
2436
  "engines": {
@@ -2441,13 +2441,13 @@
2441
2441
  }
2442
2442
  },
2443
2443
  "node_modules/@graphql-tools/import": {
2444
- "version": "7.1.14",
2445
- "resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-7.1.14.tgz",
2446
- "integrity": "sha512-aqLcu04aEidszbXM6M0PWWL8bP17eX9sxXwjYWpglLvIRd4NFqb3C9QzBY8pleqXNMtWqXktlm9BQjevgSrirQ==",
2444
+ "version": "7.1.15",
2445
+ "resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-7.1.15.tgz",
2446
+ "integrity": "sha512-uzMakKZsbKzfiJhKIjf4Hk2kft5rQGch+VITNURVGTZ3t6S4nek++EqeGFlJAR7V2vc2/Lqwpw2vCTDFpx+oZA==",
2447
2447
  "dev": true,
2448
2448
  "license": "MIT",
2449
2449
  "dependencies": {
2450
- "@graphql-tools/utils": "^11.1.0",
2450
+ "@graphql-tools/utils": "^11.1.1",
2451
2451
  "resolve-from": "5.0.0",
2452
2452
  "tslib": "^2.4.0"
2453
2453
  },
@@ -2459,13 +2459,13 @@
2459
2459
  }
2460
2460
  },
2461
2461
  "node_modules/@graphql-tools/json-file-loader": {
2462
- "version": "8.0.28",
2463
- "resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.28.tgz",
2464
- "integrity": "sha512-qgCsSkPArnjlNkcYpgGKiXxCTNkrAT9E+l1LhR+Por2jTlKBBeZ8stortkQ/PNDDjuL0WPrLQmHKhNPHabnB3A==",
2462
+ "version": "8.0.29",
2463
+ "resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.29.tgz",
2464
+ "integrity": "sha512-2fZzOmffPOg/B0nCcGRS2MMR6d73Dh5vv9zC0xIoX9Ju3oXhXpdbvSCTvNXdt3ifXP++CjfAVunq0x9PL6Uekg==",
2465
2465
  "dev": true,
2466
2466
  "license": "MIT",
2467
2467
  "dependencies": {
2468
- "@graphql-tools/utils": "^11.1.0",
2468
+ "@graphql-tools/utils": "^11.1.1",
2469
2469
  "globby": "^11.0.3",
2470
2470
  "tslib": "^2.4.0",
2471
2471
  "unixify": "^1.0.0"
@@ -2478,14 +2478,14 @@
2478
2478
  }
2479
2479
  },
2480
2480
  "node_modules/@graphql-tools/load": {
2481
- "version": "8.1.10",
2482
- "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-8.1.10.tgz",
2483
- "integrity": "sha512-hjcvfEFtwtc8vGi46wtpmGWadNzfEhzbjqinyFIZuIZPlR4aYdWQtqWtY/RMM4Ew4t1USkMNm6xrqC2TH1vCSA==",
2481
+ "version": "8.1.11",
2482
+ "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-8.1.11.tgz",
2483
+ "integrity": "sha512-6J0PmYecHnUF6lI5QhtTXj7JYzyFi5gvgER7nS2wqLpjdOfOI+jsO1/gbXF3iS6i/ABulGBh7eyr0nmDNNwlyQ==",
2484
2484
  "dev": true,
2485
2485
  "license": "MIT",
2486
2486
  "dependencies": {
2487
- "@graphql-tools/schema": "^10.0.33",
2488
- "@graphql-tools/utils": "^11.1.0",
2487
+ "@graphql-tools/schema": "^10.0.34",
2488
+ "@graphql-tools/utils": "^11.1.1",
2489
2489
  "p-limit": "3.1.0",
2490
2490
  "tslib": "^2.4.0"
2491
2491
  },
@@ -2497,13 +2497,13 @@
2497
2497
  }
2498
2498
  },
2499
2499
  "node_modules/@graphql-tools/merge": {
2500
- "version": "9.1.9",
2501
- "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.1.9.tgz",
2502
- "integrity": "sha512-iHUWNjRHeQRYdgIMIuChThOwoKzA9vrzYeslgfBo5eUYEyHGZCoDPjAavssoYXLwstYt1dZj2J22jSzc2DrN0Q==",
2500
+ "version": "9.1.10",
2501
+ "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.1.10.tgz",
2502
+ "integrity": "sha512-CsUCcPXv/HMWpPZ/xoOioSWFuAaAsGGPIdqQbjDv9X1sHGs0muQRW5FK7vUBN4OH/D7aPqpiHvKmRsrHz+ScuQ==",
2503
2503
  "dev": true,
2504
2504
  "license": "MIT",
2505
2505
  "dependencies": {
2506
- "@graphql-tools/utils": "^11.1.0",
2506
+ "@graphql-tools/utils": "^11.1.1",
2507
2507
  "tslib": "^2.4.0"
2508
2508
  },
2509
2509
  "engines": {
@@ -2530,14 +2530,14 @@
2530
2530
  }
2531
2531
  },
2532
2532
  "node_modules/@graphql-tools/relay-operation-optimizer": {
2533
- "version": "7.1.4",
2534
- "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.1.4.tgz",
2535
- "integrity": "sha512-cwOD/GEo/R//1uGCP0/urIxsMFoUgzkJVyMt9BDM2HhQhU6rSgH5l6lFukAFTJyPJVdyeOdYm2i0Jj5vYWbHTw==",
2533
+ "version": "7.1.5",
2534
+ "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.1.5.tgz",
2535
+ "integrity": "sha512-B3nscUeWT3wYucrvbJcmU8sAVlkCp+WhZ5wVlK432AfnLjDYUNLobHYzQnnU7tT5NncMXusPiS8K4YG4iUPjrw==",
2536
2536
  "dev": true,
2537
2537
  "license": "MIT",
2538
2538
  "dependencies": {
2539
2539
  "@ardatan/relay-compiler": "^13.0.1",
2540
- "@graphql-tools/utils": "^11.1.0",
2540
+ "@graphql-tools/utils": "^11.1.1",
2541
2541
  "tslib": "^2.4.0"
2542
2542
  },
2543
2543
  "engines": {
@@ -2548,14 +2548,14 @@
2548
2548
  }
2549
2549
  },
2550
2550
  "node_modules/@graphql-tools/schema": {
2551
- "version": "10.0.33",
2552
- "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.33.tgz",
2553
- "integrity": "sha512-O6P3RIftO0jafnSsFAqpjurUuUxJ43s/AdPVLQsBkI6y4Ic/tKm4C1Qm1KKQsCDTOxXPJClh/v3g7k7yLKCFBQ==",
2551
+ "version": "10.0.34",
2552
+ "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.34.tgz",
2553
+ "integrity": "sha512-wGCiUuwqDtlXtDvQ00CI+4u0pd3yd/xGGYOiwc9L63KJZwSXdrUv8ajpJ5lMalawc0mpjcCB0ljEQSeUhajuag==",
2554
2554
  "dev": true,
2555
2555
  "license": "MIT",
2556
2556
  "dependencies": {
2557
- "@graphql-tools/merge": "^9.1.9",
2558
- "@graphql-tools/utils": "^11.1.0",
2557
+ "@graphql-tools/merge": "^9.1.10",
2558
+ "@graphql-tools/utils": "^11.1.1",
2559
2559
  "tslib": "^2.4.0"
2560
2560
  },
2561
2561
  "engines": {
@@ -2566,16 +2566,16 @@
2566
2566
  }
2567
2567
  },
2568
2568
  "node_modules/@graphql-tools/url-loader": {
2569
- "version": "9.1.2",
2570
- "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-9.1.2.tgz",
2571
- "integrity": "sha512-pVSiPrfWQKb3jq23Pl7EjbB2uv3tgZLnWo/axkmg4itAEZ5s/vV/jKa8P1HZzUnSVUTR+8tcEZVeNsUbzFCbkg==",
2569
+ "version": "9.1.3",
2570
+ "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-9.1.3.tgz",
2571
+ "integrity": "sha512-i8rZVsXzYe8klXbIUXxRkMK5bHloM9JyFnHzSYdzciRPxym8QzDnL3QY4eZjS4luDb2DdJ8Ak0G8ghJ0BSVTVw==",
2572
2572
  "dev": true,
2573
2573
  "license": "MIT",
2574
2574
  "dependencies": {
2575
2575
  "@graphql-tools/executor-graphql-ws": "^3.1.4",
2576
- "@graphql-tools/executor-http": "^3.2.1",
2577
- "@graphql-tools/executor-legacy-ws": "^1.1.28",
2578
- "@graphql-tools/utils": "^11.1.0",
2576
+ "@graphql-tools/executor-http": "^3.3.0",
2577
+ "@graphql-tools/executor-legacy-ws": "^1.1.29",
2578
+ "@graphql-tools/utils": "^11.1.1",
2579
2579
  "@graphql-tools/wrap": "^11.1.1",
2580
2580
  "@types/ws": "^8.0.0",
2581
2581
  "@whatwg-node/fetch": "^0.10.13",
@@ -2583,7 +2583,7 @@
2583
2583
  "isomorphic-ws": "^5.0.0",
2584
2584
  "sync-fetch": "0.6.0",
2585
2585
  "tslib": "^2.4.0",
2586
- "ws": "^8.20.0"
2586
+ "ws": "^8.21.0"
2587
2587
  },
2588
2588
  "engines": {
2589
2589
  "node": ">=20.0.0"
@@ -2593,9 +2593,9 @@
2593
2593
  }
2594
2594
  },
2595
2595
  "node_modules/@graphql-tools/utils": {
2596
- "version": "11.1.0",
2597
- "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-11.1.0.tgz",
2598
- "integrity": "sha512-PtFVG4r8Z2LEBSaPYQMusBiB3o6kjLVJyjCLbnWem/SpSuM21v6LTmgpkXfYU1qpBV2UGsFyuEnSJInl8fR1Ag==",
2596
+ "version": "11.1.1",
2597
+ "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-11.1.1.tgz",
2598
+ "integrity": "sha512-MuWwacINZZV6mX1ZSk6CcV4XVQLsbKBG/hLd0QPhe4GHxjqr2ATjKsnnwlB0TKI+QQvj2U8ewu8WeAzz9kC2Xg==",
2599
2599
  "dev": true,
2600
2600
  "license": "MIT",
2601
2601
  "dependencies": {
@@ -3115,9 +3115,9 @@
3115
3115
  }
3116
3116
  },
3117
3117
  "node_modules/@jsforce/jsforce-node": {
3118
- "version": "3.10.17",
3119
- "resolved": "https://registry.npmjs.org/@jsforce/jsforce-node/-/jsforce-node-3.10.17.tgz",
3120
- "integrity": "sha512-gYWiK0Y68dMUTdlPjkF+Bw3r7pmfTbqzs7/6ZChg2Md14NyzXk/usp+y8hHj6vc1SF3s7e6j5OUzUasYF5RJWQ==",
3118
+ "version": "3.10.18",
3119
+ "resolved": "https://registry.npmjs.org/@jsforce/jsforce-node/-/jsforce-node-3.10.18.tgz",
3120
+ "integrity": "sha512-3Nr7ykox18niSpjROR5orfLjuQ+SWoxycx4k6Bu6OTnwT8gjrLSOjkr6qC51ohDnvHGAG75q4h3VCnFrohXjJA==",
3121
3121
  "license": "MIT",
3122
3122
  "dependencies": {
3123
3123
  "@sindresorhus/is": "^4",
@@ -10527,9 +10527,9 @@
10527
10527
  }
10528
10528
  },
10529
10529
  "node_modules/@tailwindcss/node": {
10530
- "version": "4.3.1",
10531
- "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.1.tgz",
10532
- "integrity": "sha512-6NDaqRoAMSXD1mr/RXu0HBvNE9a2n5tHPsxu9XHLws8o4Twes5rBM2205SUUiJ9goAtadrN6xTGX0UDEwp/N4A==",
10530
+ "version": "4.3.2",
10531
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.2.tgz",
10532
+ "integrity": "sha512-yWP/sqEcBLaD8JuA6zNwxoYKr75qxTioYwlRwekj5Jr/I5GXnoJfjetH/psLUIv74cYTH2lBUEzBkinthoYcBg==",
10533
10533
  "license": "MIT",
10534
10534
  "dependencies": {
10535
10535
  "@jridgewell/remapping": "^2.3.5",
@@ -10538,36 +10538,36 @@
10538
10538
  "lightningcss": "1.32.0",
10539
10539
  "magic-string": "^0.30.21",
10540
10540
  "source-map-js": "^1.2.1",
10541
- "tailwindcss": "4.3.1"
10541
+ "tailwindcss": "4.3.2"
10542
10542
  }
10543
10543
  },
10544
10544
  "node_modules/@tailwindcss/oxide": {
10545
- "version": "4.3.1",
10546
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.1.tgz",
10547
- "integrity": "sha512-yVPyo8RNkabVr3O2EhHEE0Rewu7YKzc1DhIqfL46LKveFrmu9XbDazNOJY7/GRuvw1h6u3utWnR29H/p5JPlgA==",
10545
+ "version": "4.3.2",
10546
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.2.tgz",
10547
+ "integrity": "sha512-z8ZgnzX8gdNoWLBLqBPoh/sjnxkwvf9ZuWjnO0l0yIzbLa5/9S+eC5QxGZKRobVHIC3/1BoMWjHblqWjcgFgag==",
10548
10548
  "license": "MIT",
10549
10549
  "engines": {
10550
10550
  "node": ">= 20"
10551
10551
  },
10552
10552
  "optionalDependencies": {
10553
- "@tailwindcss/oxide-android-arm64": "4.3.1",
10554
- "@tailwindcss/oxide-darwin-arm64": "4.3.1",
10555
- "@tailwindcss/oxide-darwin-x64": "4.3.1",
10556
- "@tailwindcss/oxide-freebsd-x64": "4.3.1",
10557
- "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.1",
10558
- "@tailwindcss/oxide-linux-arm64-gnu": "4.3.1",
10559
- "@tailwindcss/oxide-linux-arm64-musl": "4.3.1",
10560
- "@tailwindcss/oxide-linux-x64-gnu": "4.3.1",
10561
- "@tailwindcss/oxide-linux-x64-musl": "4.3.1",
10562
- "@tailwindcss/oxide-wasm32-wasi": "4.3.1",
10563
- "@tailwindcss/oxide-win32-arm64-msvc": "4.3.1",
10564
- "@tailwindcss/oxide-win32-x64-msvc": "4.3.1"
10553
+ "@tailwindcss/oxide-android-arm64": "4.3.2",
10554
+ "@tailwindcss/oxide-darwin-arm64": "4.3.2",
10555
+ "@tailwindcss/oxide-darwin-x64": "4.3.2",
10556
+ "@tailwindcss/oxide-freebsd-x64": "4.3.2",
10557
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.2",
10558
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.3.2",
10559
+ "@tailwindcss/oxide-linux-arm64-musl": "4.3.2",
10560
+ "@tailwindcss/oxide-linux-x64-gnu": "4.3.2",
10561
+ "@tailwindcss/oxide-linux-x64-musl": "4.3.2",
10562
+ "@tailwindcss/oxide-wasm32-wasi": "4.3.2",
10563
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.3.2",
10564
+ "@tailwindcss/oxide-win32-x64-msvc": "4.3.2"
10565
10565
  }
10566
10566
  },
10567
10567
  "node_modules/@tailwindcss/oxide-android-arm64": {
10568
- "version": "4.3.1",
10569
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.1.tgz",
10570
- "integrity": "sha512-SVlyf61g374l5cHyg8x9kf5xmLcOaxvOTsbsqDnSsDJaKOEFZ7GCvi84VAVGpxojYOs1+3K6M0UjXfqPU8vmOQ==",
10568
+ "version": "4.3.2",
10569
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.2.tgz",
10570
+ "integrity": "sha512-WHxqIuHpvZ5VtdX6GTl1Ik/Vp2YuN42Et+0CdeaVd/frQ9jAvGmvR8vLT+jk3e8/Q3x8kECB9+R17pgpp2BulA==",
10571
10571
  "cpu": [
10572
10572
  "arm64"
10573
10573
  ],
@@ -10581,9 +10581,9 @@
10581
10581
  }
10582
10582
  },
10583
10583
  "node_modules/@tailwindcss/oxide-darwin-arm64": {
10584
- "version": "4.3.1",
10585
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.1.tgz",
10586
- "integrity": "sha512-hVnWLwv+e/l7c4WKyVtHVrIPvYdqWHjRB3MDIqARynzFtnQg85kmQEFCbV9Ja0VVx4xXTIiDWY60Y7iz/iNoDA==",
10584
+ "version": "4.3.2",
10585
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.2.tgz",
10586
+ "integrity": "sha512-GZypeUY/IDJW3877KeM+O67vbXr3MBnbtEL4aYhNErv/JWZhye2vGSWWG9tB6iiqR2MqRNkY8IOUy4NdSZV26w==",
10587
10587
  "cpu": [
10588
10588
  "arm64"
10589
10589
  ],
@@ -10597,9 +10597,9 @@
10597
10597
  }
10598
10598
  },
10599
10599
  "node_modules/@tailwindcss/oxide-darwin-x64": {
10600
- "version": "4.3.1",
10601
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.1.tgz",
10602
- "integrity": "sha512-Cf7abu0WVgbhU7ANgPUnSAvm7nCvMweusHb8FnaHlLfv/Caq4GYaEZg7ZImzzmjx4lIAfuS8q+eLIS7A7IzxIg==",
10600
+ "version": "4.3.2",
10601
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.2.tgz",
10602
+ "integrity": "sha512-UIIzmefR6KO1sDU7MzRqAxC8iBpft/VhkGjTjnhoS6k7Z3rQ9wEgA1ODSiyH/tcSYssulNm4Ci3hOeK1jH7ccQ==",
10603
10603
  "cpu": [
10604
10604
  "x64"
10605
10605
  ],
@@ -10613,9 +10613,9 @@
10613
10613
  }
10614
10614
  },
10615
10615
  "node_modules/@tailwindcss/oxide-freebsd-x64": {
10616
- "version": "4.3.1",
10617
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.1.tgz",
10618
- "integrity": "sha512-ZZqzX2Y+GXtXXfqSfpJhDm60OoZfvLHLCgm+J7NVqgHHJjG/m9ugZI77RwTsVd4fnBJuCFP6Ae6kTJb71UdS8g==",
10616
+ "version": "4.3.2",
10617
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.2.tgz",
10618
+ "integrity": "sha512-GN+uAmcI6DNspnCDwtOAZrTz6oukJnp337qZvxqCGLd3BHBzJpO0ZbTLRvJNdztOeAmTzewewGIMPb0tk2R4WA==",
10619
10619
  "cpu": [
10620
10620
  "x64"
10621
10621
  ],
@@ -10629,9 +10629,9 @@
10629
10629
  }
10630
10630
  },
10631
10631
  "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
10632
- "version": "4.3.1",
10633
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.1.tgz",
10634
- "integrity": "sha512-/Ah/xik0LaMYfv9DZ0S/t4pBlBNYOcqtRwusjgovHkvT8ixueWCLyJjsaF5kQIckjb4IT8Q6K6p/iPmZMixYgg==",
10632
+ "version": "4.3.2",
10633
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.2.tgz",
10634
+ "integrity": "sha512-4ABn7qSbdHRwTiDiuWNegCyb5+2FJ4vKIKc3DmKrvAFw7MU1Lm11dIkTPwUaFdTzc7IsOpDbqBrlh0x6y36U/w==",
10635
10635
  "cpu": [
10636
10636
  "arm"
10637
10637
  ],
@@ -10645,9 +10645,9 @@
10645
10645
  }
10646
10646
  },
10647
10647
  "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
10648
- "version": "4.3.1",
10649
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.1.tgz",
10650
- "integrity": "sha512-gqdFoVJlw444GvpnheZLHmvTzSxI/cOUUh2KSNejQjTcYkW062SVD+En0rUgD+QV91bz1XGIGtt1HJd48xUGbQ==",
10648
+ "version": "4.3.2",
10649
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.2.tgz",
10650
+ "integrity": "sha512-wDgEIGwoM8w8pufh9LVt1PahDgNdKXrLC2qfAnV3vAmococ9RWbxeAw4pxPttd/TsJfwjyLf90Dg1y9y8I6Emw==",
10651
10651
  "cpu": [
10652
10652
  "arm64"
10653
10653
  ],
@@ -10664,9 +10664,9 @@
10664
10664
  }
10665
10665
  },
10666
10666
  "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
10667
- "version": "4.3.1",
10668
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.1.tgz",
10669
- "integrity": "sha512-Bwv9KwOvE0VKa86xPFif9b9c3Y1NxOV1P0gLti/IYaWEsQYZXDlxfGEtA8mdDZ7SG3wyNXAWYT5SIn3giL57oA==",
10667
+ "version": "4.3.2",
10668
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.2.tgz",
10669
+ "integrity": "sha512-J5Nuk0uZQIiMTJj3LEx4sAA9tMFUoXQZFv1J6An+QGYe53HKRJuFDi0rpq/tuouCZeAbOBY3kQ6g8qeD4TUjtA==",
10670
10670
  "cpu": [
10671
10671
  "arm64"
10672
10672
  ],
@@ -10683,9 +10683,9 @@
10683
10683
  }
10684
10684
  },
10685
10685
  "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
10686
- "version": "4.3.1",
10687
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.1.tgz",
10688
- "integrity": "sha512-Ymi8O8T15HYQdOUWUtTI6ldN0neHP85FC+Qz32xTcZ7iJXtem/x8ITev0o1e9e5rkqj4lONZfTRLvkmin1+tKg==",
10686
+ "version": "4.3.2",
10687
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.2.tgz",
10688
+ "integrity": "sha512-kqCZpSKOBEJO4mz7OqWoofBZeXTAwaVGPj0ErAj7CojmhKpWVWVOnrt9dE8odoIraZq4oj3ausM37kXi+Tow8w==",
10689
10689
  "cpu": [
10690
10690
  "x64"
10691
10691
  ],
@@ -10702,9 +10702,9 @@
10702
10702
  }
10703
10703
  },
10704
10704
  "node_modules/@tailwindcss/oxide-linux-x64-musl": {
10705
- "version": "4.3.1",
10706
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.1.tgz",
10707
- "integrity": "sha512-M+P/91qJ6uILLw4k2G93GMDRAXj61SMvFQYt39AqvUqYgExXpLL5aepfns7sj4HiAQeolirQF9E0lzRvdf4zPQ==",
10705
+ "version": "4.3.2",
10706
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.2.tgz",
10707
+ "integrity": "sha512-cixpqbh2toJDmkuCRI68nXA8ZxNmdK9Y+9v5h3MC3ZQKy/0BO8AWzlkWyRM7JAFSGBlfig4YVTPsK6MVgqz1uw==",
10708
10708
  "cpu": [
10709
10709
  "x64"
10710
10710
  ],
@@ -10721,9 +10721,9 @@
10721
10721
  }
10722
10722
  },
10723
10723
  "node_modules/@tailwindcss/oxide-wasm32-wasi": {
10724
- "version": "4.3.1",
10725
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.1.tgz",
10726
- "integrity": "sha512-zsM8uOeqvVGHsAXsJxsT28ttosFahLJKCLOTUBqRAtKnVgGSRitds9T432QiT8b77Yga7JIBkulIRRlJPtYhRA==",
10724
+ "version": "4.3.2",
10725
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.2.tgz",
10726
+ "integrity": "sha512-4ec2Z/LOmRsAgU23CS4xeJfcJlmRg94A/XrbGRCF1gyU/zdDfRLYDVsS+ynSZCmGNxQ1jQriQOKMQeQxBA3Isw==",
10727
10727
  "bundleDependencies": [
10728
10728
  "@napi-rs/wasm-runtime",
10729
10729
  "@emnapi/core",
@@ -10738,9 +10738,9 @@
10738
10738
  "license": "MIT",
10739
10739
  "optional": true,
10740
10740
  "dependencies": {
10741
- "@emnapi/core": "^1.10.0",
10742
- "@emnapi/runtime": "^1.10.0",
10743
- "@emnapi/wasi-threads": "^1.2.1",
10741
+ "@emnapi/core": "^1.11.1",
10742
+ "@emnapi/runtime": "^1.11.1",
10743
+ "@emnapi/wasi-threads": "^1.2.2",
10744
10744
  "@napi-rs/wasm-runtime": "^1.1.4",
10745
10745
  "@tybys/wasm-util": "^0.10.2",
10746
10746
  "tslib": "^2.8.1"
@@ -10750,17 +10750,17 @@
10750
10750
  }
10751
10751
  },
10752
10752
  "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/core": {
10753
- "version": "1.10.0",
10753
+ "version": "1.11.1",
10754
10754
  "inBundle": true,
10755
10755
  "license": "MIT",
10756
10756
  "optional": true,
10757
10757
  "dependencies": {
10758
- "@emnapi/wasi-threads": "1.2.1",
10758
+ "@emnapi/wasi-threads": "1.2.2",
10759
10759
  "tslib": "^2.4.0"
10760
10760
  }
10761
10761
  },
10762
10762
  "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/runtime": {
10763
- "version": "1.10.0",
10763
+ "version": "1.11.1",
10764
10764
  "inBundle": true,
10765
10765
  "license": "MIT",
10766
10766
  "optional": true,
@@ -10769,7 +10769,7 @@
10769
10769
  }
10770
10770
  },
10771
10771
  "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/wasi-threads": {
10772
- "version": "1.2.1",
10772
+ "version": "1.2.2",
10773
10773
  "inBundle": true,
10774
10774
  "license": "MIT",
10775
10775
  "optional": true,
@@ -10810,9 +10810,9 @@
10810
10810
  "optional": true
10811
10811
  },
10812
10812
  "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
10813
- "version": "4.3.1",
10814
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.1.tgz",
10815
- "integrity": "sha512-aiNvSq9BsVk8V513lDKlrCFAgf8qBMPZTpgEhInL+NwQqs97mYmupVMrPrgBBSL8Pv/0zXu9MrMF9rMun1ZeNg==",
10813
+ "version": "4.3.2",
10814
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.2.tgz",
10815
+ "integrity": "sha512-Zyr/M0+XcYZu3bZrUytc7TXvrk0ftWfl8gN2MwekNDzhqhKRUucMPSeOzM0o0wH5AWOU49BsKRrfKxI2atCPMQ==",
10816
10816
  "cpu": [
10817
10817
  "arm64"
10818
10818
  ],
@@ -10826,9 +10826,9 @@
10826
10826
  }
10827
10827
  },
10828
10828
  "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
10829
- "version": "4.3.1",
10830
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.1.tgz",
10831
- "integrity": "sha512-xDEyu1rg290472FEGaKHnzyDyh5QH+AlWvsU5hMoMtPpzmKlRI0jaYKCgSHDYtaQWZOYbMaduSyCwFwY4n1HmA==",
10829
+ "version": "4.3.2",
10830
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.2.tgz",
10831
+ "integrity": "sha512-QI9BO7KlNZsp2GuO0jwAAj5jCDABOKXRkCk2XuKTSaNEFSdfzqswYVTtCHBNKHLsqyjFyFkqlDiwkNbTYSssMQ==",
10832
10832
  "cpu": [
10833
10833
  "x64"
10834
10834
  ],
@@ -10842,14 +10842,14 @@
10842
10842
  }
10843
10843
  },
10844
10844
  "node_modules/@tailwindcss/vite": {
10845
- "version": "4.3.1",
10846
- "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.1.tgz",
10847
- "integrity": "sha512-hItDHuIIlEV61R+faXu66s1K36aTurO/Qw0e45Vskz57gXl9pWOT6eg3zmcEui6CZXddbN7zd41bwmvag4JGwQ==",
10845
+ "version": "4.3.2",
10846
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.2.tgz",
10847
+ "integrity": "sha512-eHpMeX4JXfVNJDEcsouTeCBubJBTcTLigeaw/NTUW6PB5ATKKXdyonnXgTBX2VuRbjz1hjfz6C5XAhr52ImQXA==",
10848
10848
  "license": "MIT",
10849
10849
  "dependencies": {
10850
- "@tailwindcss/node": "4.3.1",
10851
- "@tailwindcss/oxide": "4.3.1",
10852
- "tailwindcss": "4.3.1"
10850
+ "@tailwindcss/node": "4.3.2",
10851
+ "@tailwindcss/oxide": "4.3.2",
10852
+ "tailwindcss": "4.3.2"
10853
10853
  },
10854
10854
  "peerDependencies": {
10855
10855
  "vite": "^5.2.0 || ^6 || ^7 || ^8"
@@ -10966,9 +10966,9 @@
10966
10966
  }
10967
10967
  },
10968
10968
  "node_modules/@ts-morph/common/node_modules/brace-expansion": {
10969
- "version": "5.0.6",
10970
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
10971
- "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
10969
+ "version": "5.0.7",
10970
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz",
10971
+ "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==",
10972
10972
  "license": "MIT",
10973
10973
  "dependencies": {
10974
10974
  "balanced-match": "^4.0.2"
@@ -11137,17 +11137,17 @@
11137
11137
  }
11138
11138
  },
11139
11139
  "node_modules/@typescript-eslint/eslint-plugin": {
11140
- "version": "8.62.0",
11141
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.62.0.tgz",
11142
- "integrity": "sha512-o+mpz7EYiMzXoySXiKmzlabIvTVqUuK5yLrAedRPRDA0IpPFMUV1IXt6OqljIxX/kumN6EjUYp41Hqelh6p/Dw==",
11140
+ "version": "8.62.1",
11141
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.62.1.tgz",
11142
+ "integrity": "sha512-4EQM77WgVNxj7OkL/5b/D/xZsw00G577+UriYTC7JF5opcF3T2AuoeY7ueLaZgSVjSgCS6yOAJB5bRGLPSJUzA==",
11143
11143
  "dev": true,
11144
11144
  "license": "MIT",
11145
11145
  "dependencies": {
11146
11146
  "@eslint-community/regexpp": "^4.12.2",
11147
- "@typescript-eslint/scope-manager": "8.62.0",
11148
- "@typescript-eslint/type-utils": "8.62.0",
11149
- "@typescript-eslint/utils": "8.62.0",
11150
- "@typescript-eslint/visitor-keys": "8.62.0",
11147
+ "@typescript-eslint/scope-manager": "8.62.1",
11148
+ "@typescript-eslint/type-utils": "8.62.1",
11149
+ "@typescript-eslint/utils": "8.62.1",
11150
+ "@typescript-eslint/visitor-keys": "8.62.1",
11151
11151
  "ignore": "^7.0.5",
11152
11152
  "natural-compare": "^1.4.0",
11153
11153
  "ts-api-utils": "^2.5.0"
@@ -11160,7 +11160,7 @@
11160
11160
  "url": "https://opencollective.com/typescript-eslint"
11161
11161
  },
11162
11162
  "peerDependencies": {
11163
- "@typescript-eslint/parser": "^8.62.0",
11163
+ "@typescript-eslint/parser": "^8.62.1",
11164
11164
  "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
11165
11165
  "typescript": ">=4.8.4 <6.1.0"
11166
11166
  }
@@ -11176,16 +11176,16 @@
11176
11176
  }
11177
11177
  },
11178
11178
  "node_modules/@typescript-eslint/parser": {
11179
- "version": "8.62.0",
11180
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.62.0.tgz",
11181
- "integrity": "sha512-dzHeT2gySzZtLDsuqxU9AkYgIsQoHAHtRBpOqM+Ofzx1Bwrd2RcCjQJ+6iQbsHOIR6NS33bF2W1k3blN1zLDrA==",
11179
+ "version": "8.62.1",
11180
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.62.1.tgz",
11181
+ "integrity": "sha512-sPhE4iHuJDSvoAiec+Ro8JyXw8f0ql13HFR82P99nCm9GwTEKG0KYLvDe6REk8BCXuit6vJAv/Yxg5ABaNS2rA==",
11182
11182
  "dev": true,
11183
11183
  "license": "MIT",
11184
11184
  "dependencies": {
11185
- "@typescript-eslint/scope-manager": "8.62.0",
11186
- "@typescript-eslint/types": "8.62.0",
11187
- "@typescript-eslint/typescript-estree": "8.62.0",
11188
- "@typescript-eslint/visitor-keys": "8.62.0",
11185
+ "@typescript-eslint/scope-manager": "8.62.1",
11186
+ "@typescript-eslint/types": "8.62.1",
11187
+ "@typescript-eslint/typescript-estree": "8.62.1",
11188
+ "@typescript-eslint/visitor-keys": "8.62.1",
11189
11189
  "debug": "^4.4.3"
11190
11190
  },
11191
11191
  "engines": {
@@ -11201,14 +11201,14 @@
11201
11201
  }
11202
11202
  },
11203
11203
  "node_modules/@typescript-eslint/project-service": {
11204
- "version": "8.62.0",
11205
- "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.62.0.tgz",
11206
- "integrity": "sha512-wexnCqiTg7BOGtbLDftYpRWlmLq4xfoMd7BKFR6Y75sZS3QmRKLdN3yWLhmIYgqMmP/OXWpj3H8odkb5nGURCQ==",
11204
+ "version": "8.62.1",
11205
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.62.1.tgz",
11206
+ "integrity": "sha512-yQ3RgY5RkSBpsNS1Bx/JQEcA24FOSdfGktoyprAr5u18390UQdtVcfnEv4nIrIshNnavlVyZBKxQwT1fIAE6cg==",
11207
11207
  "dev": true,
11208
11208
  "license": "MIT",
11209
11209
  "dependencies": {
11210
- "@typescript-eslint/tsconfig-utils": "^8.62.0",
11211
- "@typescript-eslint/types": "^8.62.0",
11210
+ "@typescript-eslint/tsconfig-utils": "^8.62.1",
11211
+ "@typescript-eslint/types": "^8.62.1",
11212
11212
  "debug": "^4.4.3"
11213
11213
  },
11214
11214
  "engines": {
@@ -11223,14 +11223,14 @@
11223
11223
  }
11224
11224
  },
11225
11225
  "node_modules/@typescript-eslint/scope-manager": {
11226
- "version": "8.62.0",
11227
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.62.0.tgz",
11228
- "integrity": "sha512-1lX38kNxXIRb8mEc3lbq5mdHq1Pf2+U0nFU65KfT18mtPxxl0fvjuEE92mHuXPuCtElJhOrddOpyMlM3Z0umEA==",
11226
+ "version": "8.62.1",
11227
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.62.1.tgz",
11228
+ "integrity": "sha512-r4d249KbQ1SFdpeStvob8Ih6aPPIzfqllPVOtvhve6ZcpuVcYo5/7zUWckKpHE7StASX4kTKZTLf0WQm/wPkcg==",
11229
11229
  "dev": true,
11230
11230
  "license": "MIT",
11231
11231
  "dependencies": {
11232
- "@typescript-eslint/types": "8.62.0",
11233
- "@typescript-eslint/visitor-keys": "8.62.0"
11232
+ "@typescript-eslint/types": "8.62.1",
11233
+ "@typescript-eslint/visitor-keys": "8.62.1"
11234
11234
  },
11235
11235
  "engines": {
11236
11236
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -11241,9 +11241,9 @@
11241
11241
  }
11242
11242
  },
11243
11243
  "node_modules/@typescript-eslint/tsconfig-utils": {
11244
- "version": "8.62.0",
11245
- "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.62.0.tgz",
11246
- "integrity": "sha512-y2GAdB6ykaXUvuspbYnizQc4oDDz0Tz/Yc7iWrXf9mx8vm/L/0vLHCe0tS2boG96Zy+DivnVDQ9ZUEWoHqqx1g==",
11244
+ "version": "8.62.1",
11245
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.62.1.tgz",
11246
+ "integrity": "sha512-xadytJqX9vJVQ2fdQjkcIVigwaOJNWkpjdLt6cEQ+xPnrI1fkp+/jZE/I97k9KUjqtpd25i0HeyZf3T6dutv2g==",
11247
11247
  "dev": true,
11248
11248
  "license": "MIT",
11249
11249
  "engines": {
@@ -11258,15 +11258,15 @@
11258
11258
  }
11259
11259
  },
11260
11260
  "node_modules/@typescript-eslint/type-utils": {
11261
- "version": "8.62.0",
11262
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.62.0.tgz",
11263
- "integrity": "sha512-+g5O3j0w2ldzC86Pv6fvbO/xhAonbJFIdf/MKQ1d30gndlsVzUOE83ldfSE15Qrl9fhFjK6AovHs5Wpp6vx86w==",
11261
+ "version": "8.62.1",
11262
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.62.1.tgz",
11263
+ "integrity": "sha512-aXM5xlqXiTxPibXB93cLAURfT3rlizf7uMXISCXy66Isr/9hISJx3yDsKl0L7lKa51b8JpFuNKby0/O0pEm9jg==",
11264
11264
  "dev": true,
11265
11265
  "license": "MIT",
11266
11266
  "dependencies": {
11267
- "@typescript-eslint/types": "8.62.0",
11268
- "@typescript-eslint/typescript-estree": "8.62.0",
11269
- "@typescript-eslint/utils": "8.62.0",
11267
+ "@typescript-eslint/types": "8.62.1",
11268
+ "@typescript-eslint/typescript-estree": "8.62.1",
11269
+ "@typescript-eslint/utils": "8.62.1",
11270
11270
  "debug": "^4.4.3",
11271
11271
  "ts-api-utils": "^2.5.0"
11272
11272
  },
@@ -11283,9 +11283,9 @@
11283
11283
  }
11284
11284
  },
11285
11285
  "node_modules/@typescript-eslint/types": {
11286
- "version": "8.62.0",
11287
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.62.0.tgz",
11288
- "integrity": "sha512-KvAclkktORPvM54TgLgA4z9HIV1M8zOgw9ZVNXl9f/8dLYfXYX1wkMXP7qmabpijQRV5bHJLOmoyGQbLMaUYeg==",
11286
+ "version": "8.62.1",
11287
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.62.1.tgz",
11288
+ "integrity": "sha512-ooCzJFaf+Hg+uG6fA3NRFGuFjlfNlDhBthbv4ZPU/0elCAFUfnyXUvf/WOpHz/jYwSmvU2GkR2LtyUfy1AxZ1Q==",
11289
11289
  "dev": true,
11290
11290
  "license": "MIT",
11291
11291
  "engines": {
@@ -11297,16 +11297,16 @@
11297
11297
  }
11298
11298
  },
11299
11299
  "node_modules/@typescript-eslint/typescript-estree": {
11300
- "version": "8.62.0",
11301
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.62.0.tgz",
11302
- "integrity": "sha512-+hVbNxtW64pIcZWDPGbyaKF7vp2IBTVY5ma1blwwksrjdsbdqqEKvJWMGbBofei4F6Dovx1M0RJgoFeNu2279A==",
11300
+ "version": "8.62.1",
11301
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.62.1.tgz",
11302
+ "integrity": "sha512-xMcW9oP9u7fAMXYs9A65CVmtLQe2r//oXINHfi8HV+oiqhih17sbLdhXr4540YWlgpDKQdY854OL5ZrdCiQsAA==",
11303
11303
  "dev": true,
11304
11304
  "license": "MIT",
11305
11305
  "dependencies": {
11306
- "@typescript-eslint/project-service": "8.62.0",
11307
- "@typescript-eslint/tsconfig-utils": "8.62.0",
11308
- "@typescript-eslint/types": "8.62.0",
11309
- "@typescript-eslint/visitor-keys": "8.62.0",
11306
+ "@typescript-eslint/project-service": "8.62.1",
11307
+ "@typescript-eslint/tsconfig-utils": "8.62.1",
11308
+ "@typescript-eslint/types": "8.62.1",
11309
+ "@typescript-eslint/visitor-keys": "8.62.1",
11310
11310
  "debug": "^4.4.3",
11311
11311
  "minimatch": "^10.2.2",
11312
11312
  "semver": "^7.7.3",
@@ -11335,9 +11335,9 @@
11335
11335
  }
11336
11336
  },
11337
11337
  "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
11338
- "version": "5.0.6",
11339
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
11340
- "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
11338
+ "version": "5.0.7",
11339
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz",
11340
+ "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==",
11341
11341
  "dev": true,
11342
11342
  "license": "MIT",
11343
11343
  "dependencies": {
@@ -11377,16 +11377,16 @@
11377
11377
  }
11378
11378
  },
11379
11379
  "node_modules/@typescript-eslint/utils": {
11380
- "version": "8.62.0",
11381
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.62.0.tgz",
11382
- "integrity": "sha512-82r66fi9zYwZ+mTq3vKgwjbZ1PVk/DJzrXFLpG6RnBbdvH8TEGVHIs9H4d2drhkOzf0syZuD/OZvvlu6GDbP4g==",
11380
+ "version": "8.62.1",
11381
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.62.1.tgz",
11382
+ "integrity": "sha512-sHtbPfuKNZCG+ih8SyjjucqRntSVmp8XgL5u6o9mAhiSn8ds5o/M/XdM0abweme2Tln3szOstOrZ9OXitvPh0g==",
11383
11383
  "dev": true,
11384
11384
  "license": "MIT",
11385
11385
  "dependencies": {
11386
11386
  "@eslint-community/eslint-utils": "^4.9.1",
11387
- "@typescript-eslint/scope-manager": "8.62.0",
11388
- "@typescript-eslint/types": "8.62.0",
11389
- "@typescript-eslint/typescript-estree": "8.62.0"
11387
+ "@typescript-eslint/scope-manager": "8.62.1",
11388
+ "@typescript-eslint/types": "8.62.1",
11389
+ "@typescript-eslint/typescript-estree": "8.62.1"
11390
11390
  },
11391
11391
  "engines": {
11392
11392
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -11401,13 +11401,13 @@
11401
11401
  }
11402
11402
  },
11403
11403
  "node_modules/@typescript-eslint/visitor-keys": {
11404
- "version": "8.62.0",
11405
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.62.0.tgz",
11406
- "integrity": "sha512-CY3uyFSRbcQv3nnSv8S0+lDftMVz6P963PoRlxrV7ew/Md564g9ut60PYzdLM5qW4jFn93GBF+Soi90ISAN+GQ==",
11404
+ "version": "8.62.1",
11405
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.62.1.tgz",
11406
+ "integrity": "sha512-4g3BLxfdTMy8iZG0MaBkadnlRrCJ74cQiFbyEVMrkwIoqdyaXXQM22cotDvrl4x28wgIZ9rEJRoM+mmhSJpJ1g==",
11407
11407
  "dev": true,
11408
11408
  "license": "MIT",
11409
11409
  "dependencies": {
11410
- "@typescript-eslint/types": "8.62.0",
11410
+ "@typescript-eslint/types": "8.62.1",
11411
11411
  "eslint-visitor-keys": "^5.0.0"
11412
11412
  },
11413
11413
  "engines": {
@@ -12520,9 +12520,9 @@
12520
12520
  }
12521
12521
  },
12522
12522
  "node_modules/caniuse-lite": {
12523
- "version": "1.0.30001799",
12524
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001799.tgz",
12525
- "integrity": "sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==",
12523
+ "version": "1.0.30001800",
12524
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001800.tgz",
12525
+ "integrity": "sha512-MMHtuAz9Ys840zAY5F4k6fV5GaivZ9sPk+nz0mY+GYVzRBnYkN0mpqkSR92oWRQ19yQWo4HvBV/FnC16AJX8MA==",
12526
12526
  "funding": [
12527
12527
  {
12528
12528
  "type": "opencollective",
@@ -13716,9 +13716,9 @@
13716
13716
  "license": "MIT"
13717
13717
  },
13718
13718
  "node_modules/electron-to-chromium": {
13719
- "version": "1.5.380",
13720
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.380.tgz",
13721
- "integrity": "sha512-W6d5AbuEoRayO447cqrg6lKJIlscgRnnxOZl/08kfV71BQDoEBC7Wwis68z87LjyK6f4kWyTaubuDbhHKrZkbA==",
13719
+ "version": "1.5.382",
13720
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.382.tgz",
13721
+ "integrity": "sha512-8ETaWbV6SZOrno+G93Ffd9ENsMtetqdnqj4nlfxFW90Sm5GgnuV28Kf62hqQVD6VUgzm7qFQKsTsAPmeUiU3Ug==",
13722
13722
  "license": "ISC"
13723
13723
  },
13724
13724
  "node_modules/emoji-regex": {
@@ -13962,9 +13962,9 @@
13962
13962
  }
13963
13963
  },
13964
13964
  "node_modules/es-module-lexer": {
13965
- "version": "2.1.0",
13966
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.1.0.tgz",
13967
- "integrity": "sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==",
13965
+ "version": "2.2.0",
13966
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.2.0.tgz",
13967
+ "integrity": "sha512-3lGxdTXCLfe1MYfTz1y2ksAAUM4NAOP6rPEjxGJVKO7TZ5+tvHCaQWGpC4Y3IXvW3ece0Cz1cIP4FWBxOnGCTQ==",
13968
13968
  "dev": true,
13969
13969
  "license": "MIT"
13970
13970
  },
@@ -14619,9 +14619,9 @@
14619
14619
  }
14620
14620
  },
14621
14621
  "node_modules/fast-uri": {
14622
- "version": "3.1.2",
14623
- "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz",
14624
- "integrity": "sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==",
14622
+ "version": "3.1.3",
14623
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.3.tgz",
14624
+ "integrity": "sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==",
14625
14625
  "funding": [
14626
14626
  {
14627
14627
  "type": "github",
@@ -14915,9 +14915,9 @@
14915
14915
  }
14916
14916
  },
14917
14917
  "node_modules/fs-extra": {
14918
- "version": "11.3.5",
14919
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.5.tgz",
14920
- "integrity": "sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg==",
14918
+ "version": "11.3.6",
14919
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.6.tgz",
14920
+ "integrity": "sha512-w8ZNZr2mKIc7qeNaQ9AVPT1+iFaI+Avd4xudVOvdDJ8VytREi1Ft5Ih7hd9jjehod8vAM5GMsfQ/TpPf4EyoEA==",
14921
14921
  "license": "MIT",
14922
14922
  "dependencies": {
14923
14923
  "graceful-fs": "^4.2.0",
@@ -15409,9 +15409,9 @@
15409
15409
  }
15410
15410
  },
15411
15411
  "node_modules/graphql-config/node_modules/brace-expansion": {
15412
- "version": "5.0.6",
15413
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
15414
- "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
15412
+ "version": "5.0.7",
15413
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz",
15414
+ "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==",
15415
15415
  "dev": true,
15416
15416
  "license": "MIT",
15417
15417
  "dependencies": {
@@ -15808,9 +15808,9 @@
15808
15808
  "license": "MIT"
15809
15809
  },
15810
15810
  "node_modules/immutable": {
15811
- "version": "5.1.8",
15812
- "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.8.tgz",
15813
- "integrity": "sha512-TM5YqrGeTsVIPPpILzeqZ8D2Zc2TvNgSDi88zPF2a4cyqQdWV/wVWBDRDbNzzrLeRWScrFcOX9lW2iX6GOtUDw==",
15811
+ "version": "5.1.9",
15812
+ "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.9.tgz",
15813
+ "integrity": "sha512-m8nVez3rwrgmWxtLMt1ZYXB2Lv7OKYn/disyxAlSDYAlKSlFoPPfIAmAM/M5xqL4m4C/wAPw7S2/CNaUii1Hxg==",
15814
15814
  "dev": true,
15815
15815
  "license": "MIT"
15816
15816
  },
@@ -18178,9 +18178,9 @@
18178
18178
  }
18179
18179
  },
18180
18180
  "node_modules/o11y_schema": {
18181
- "version": "264.91.0",
18182
- "resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.91.0.tgz",
18183
- "integrity": "sha512-MeemqnHi6pwSe605s64fiOCpeXhKq3gGAwqbIAU91HMkwUa2As6wMN6QWGnl7cAaaaHAbGhaxZ9PmG3wNb1yHg==",
18181
+ "version": "264.92.0",
18182
+ "resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.92.0.tgz",
18183
+ "integrity": "sha512-7y+P1PuVY4DCJqBz9JI069zInelPYZjuDeWlkmnSlV23tGWqU2HR43CejwlG8ut+Gf6PuRs9ALcU94R6ZwcIcg==",
18184
18184
  "license": "BSD-3-Clause",
18185
18185
  "peer": true
18186
18186
  },
@@ -19067,9 +19067,9 @@
19067
19067
  }
19068
19068
  },
19069
19069
  "node_modules/postcss": {
19070
- "version": "8.5.15",
19071
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
19072
- "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
19070
+ "version": "8.5.16",
19071
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.16.tgz",
19072
+ "integrity": "sha512-vuwillviilfKZsg0VGj5R/YwwcHx4SLsIOI/7K6mQkWx+l5cUHTjj5g0AasTBcyXsbfTgrwsUNmVUb5xVwyPwg==",
19073
19073
  "funding": [
19074
19074
  {
19075
19075
  "type": "opencollective",
@@ -19130,9 +19130,9 @@
19130
19130
  }
19131
19131
  },
19132
19132
  "node_modules/prettier": {
19133
- "version": "3.9.1",
19134
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.9.1.tgz",
19135
- "integrity": "sha512-ppiDo2CSwexck1eyZUwJHg/N3nf1+6IRCv7W/VJ5vaLnVCmB7+3CdRfMwoCHBBX6xTrREDTksZ4OZl5SSf4zXA==",
19133
+ "version": "3.9.4",
19134
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.9.4.tgz",
19135
+ "integrity": "sha512-yWG/o/4oJfo036EKAfK6ACAoDOfHeRHx4tuxkfBZiauURiaSmYwlpOr5LQqKtIkRD2z1PLteme2WoxEnj4tHTg==",
19136
19136
  "dev": true,
19137
19137
  "license": "MIT",
19138
19138
  "peer": true,
@@ -20018,9 +20018,9 @@
20018
20018
  }
20019
20019
  },
20020
20020
  "node_modules/react-router": {
20021
- "version": "7.18.0",
20022
- "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.18.0.tgz",
20023
- "integrity": "sha512-pTTGt8J+ji1NOmYnjzT+bAJy/1zD+Jp4ziO6cL7T3ZLvXKtusO7BpFqlRXitqpcPVqllsIXFHRMt+2/k3Xn6HQ==",
20021
+ "version": "7.18.1",
20022
+ "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.18.1.tgz",
20023
+ "integrity": "sha512-GDLgg3i3uM0aeJO3Fm+TCS+sDQ7gu12T6x0qdTEzcwqEfleci7JwugVNIF3U//0FWKnJT7ptG+20B2jfDqnZAg==",
20024
20024
  "license": "MIT",
20025
20025
  "dependencies": {
20026
20026
  "cookie": "^1.0.1",
@@ -21648,9 +21648,9 @@
21648
21648
  }
21649
21649
  },
21650
21650
  "node_modules/tailwindcss": {
21651
- "version": "4.3.1",
21652
- "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.1.tgz",
21653
- "integrity": "sha512-hk+TB1m+K8CYNrP6rjQaq/Y+4Zylwpa87mLYBKCunwnnQ9p+fHb7kmSfGqyEJoxF/O6CDyABWVFEafNSYKll+Q==",
21651
+ "version": "4.3.2",
21652
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.2.tgz",
21653
+ "integrity": "sha512-WtctNNSH8A9jlMIqxzuYumOHU5uGZyRv0Q5svQl+oEPy5w84YpBxdb7MdqyiSPQge5jTJ6zFQLq0PFygdccSBA==",
21654
21654
  "license": "MIT"
21655
21655
  },
21656
21656
  "node_modules/tapable": {
@@ -21789,21 +21789,21 @@
21789
21789
  }
21790
21790
  },
21791
21791
  "node_modules/tldts": {
21792
- "version": "7.4.4",
21793
- "resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.4.tgz",
21794
- "integrity": "sha512-kFXFK7O4WPextIUAOk8qtnw9dxR9UIXP9CjuH1cTBVBZMDeQcUPgr/IazGiw1B0Yiw5L75gHLWeW4iD793r90g==",
21792
+ "version": "7.4.5",
21793
+ "resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.5.tgz",
21794
+ "integrity": "sha512-RfEzKWcq5fHUOFq7J3rl3Oz6ylKGtcHqUznzj4EcXsxLSIjJcvpbXAQtWGeJQ0xKnimR5e0Cn+cn9TssfMzm+g==",
21795
21795
  "license": "MIT",
21796
21796
  "dependencies": {
21797
- "tldts-core": "^7.4.4"
21797
+ "tldts-core": "^7.4.5"
21798
21798
  },
21799
21799
  "bin": {
21800
21800
  "tldts": "bin/cli.js"
21801
21801
  }
21802
21802
  },
21803
21803
  "node_modules/tldts-core": {
21804
- "version": "7.4.4",
21805
- "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.4.tgz",
21806
- "integrity": "sha512-vwVLJVvvpslm7vqAH7+XNj/neA/Ynq7DT2EEcMuwc5YzN5XaMyRAqxwU+uX3azZ1FQtB2gvrvnLnAEkvYlVdfg==",
21804
+ "version": "7.4.5",
21805
+ "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.5.tgz",
21806
+ "integrity": "sha512-pGrwzZDvPwKe+7NNUqAunb6rqTfynr0VOUhCMdqbu5xlvNiszsAJygRzwvpVycdzejlbpY+SWJOn+s75Og7FEA==",
21807
21807
  "license": "MIT"
21808
21808
  },
21809
21809
  "node_modules/to-regex-range": {
@@ -22108,16 +22108,16 @@
22108
22108
  }
22109
22109
  },
22110
22110
  "node_modules/typescript-eslint": {
22111
- "version": "8.62.0",
22112
- "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.62.0.tgz",
22113
- "integrity": "sha512-8QxXi+ZACKX0kaqO4gY8kn0RSD9gFfaHDWwjqtEN48aWCBkX4MJaufWN+c3BzlrXLOxfywDL8CaoqUwcRq4j4Q==",
22111
+ "version": "8.62.1",
22112
+ "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.62.1.tgz",
22113
+ "integrity": "sha512-vymnnM5g0AKQDSAyfP12nMIBvgwgA42syg74kkuZ4x1VuTzwQKwc5h9rGxeShCjny5o+zWAb6OEoz7XLgrIkIw==",
22114
22114
  "dev": true,
22115
22115
  "license": "MIT",
22116
22116
  "dependencies": {
22117
- "@typescript-eslint/eslint-plugin": "8.62.0",
22118
- "@typescript-eslint/parser": "8.62.0",
22119
- "@typescript-eslint/typescript-estree": "8.62.0",
22120
- "@typescript-eslint/utils": "8.62.0"
22117
+ "@typescript-eslint/eslint-plugin": "8.62.1",
22118
+ "@typescript-eslint/parser": "8.62.1",
22119
+ "@typescript-eslint/typescript-estree": "8.62.1",
22120
+ "@typescript-eslint/utils": "8.62.1"
22121
22121
  },
22122
22122
  "engines": {
22123
22123
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"